Skip to content

Commit

Permalink
Merge branch 'dev' of https:/Mahmoud-zino/skeleton into b…
Browse files Browse the repository at this point in the history
…ugfix/modal-top-scroll
  • Loading branch information
Mahmoud-zino committed Jul 7, 2023
2 parents a042f83 + 1226d90 commit a977d11
Show file tree
Hide file tree
Showing 72 changed files with 1,397 additions and 280 deletions.
5 changes: 0 additions & 5 deletions .changeset/fast-apricots-sing.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/silent-bikes-count.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/skeleton": minor
---

feat: Added `Tree` component.
5 changes: 5 additions & 0 deletions .changeset/tall-days-shop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/skeleton": patch
---

bugfix: `Popup` content is not interactable when closed.
5 changes: 0 additions & 5 deletions .changeset/wet-bugs-guess.md

This file was deleted.

1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
"Vercel",
"vite",
"Vitest",
"Wakanda",
"wght",
"Wonka",
"xmark",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
"cspell": "^6.31.1",
"shelljs": "^0.8.5"
},
"packageManager": "[email protected].0",
"packageManager": "[email protected].3",
"engines": {
"pnpm": ">=8.6.0"
"pnpm": ">=8.6.3"
},
"type": "module"
}
4 changes: 3 additions & 1 deletion packages/skeleton/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ module.exports = {
],

'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': ['error', { allow: ['arrowFunctions'] }]
'@typescript-eslint/no-empty-function': ['error', { allow: ['arrowFunctions'] }],

'@typescript-eslint/ban-types': ['error', { types: { '{}': false }, extendDefaults: true }]
}
};
22 changes: 22 additions & 0 deletions packages/skeleton/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @skeletonlabs/skeleton

## 1.9.0

### Minor Changes

- feat: Adds support for Svelte 4 ([#1690](https:/skeletonlabs/skeleton/pull/1690))

### Patch Changes

- bugfix: Enhanced types for the `clipboard` action ([#1692](https:/skeletonlabs/skeleton/pull/1692))

- bugfix: resolved a spacing issue when using the vertical `radio group` setting ([#1696](https:/skeletonlabs/skeleton/pull/1696))

- bugfix: resolved an issue when the drawer position suddenly changes sides ([#1679](https:/skeletonlabs/skeleton/pull/1679))

- bugfix: paginator buttons now include accessible ARIA label props ([#1709](https:/skeletonlabs/skeleton/pull/1709))

- bugfix: fixed `scroll` event type in `AppShell` ([#1715](https:/skeletonlabs/skeleton/pull/1715))

- bugfix: Enhanced types for the `filter` action ([#1693](https:/skeletonlabs/skeleton/pull/1693))

- bugfix: `InputChips` can now handle `undefined` values ([#1678](https:/skeletonlabs/skeleton/pull/1678))

## 1.8.0

### Minor Changes
Expand Down
19 changes: 11 additions & 8 deletions packages/skeleton/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skeletonlabs/skeleton",
"version": "1.8.0",
"version": "1.9.0",
"description": "A SvelteKit component library.",
"author": "endigo9740 <[email protected]>",
"scripts": {
Expand Down Expand Up @@ -42,25 +42,26 @@
"homepage": "https://skeleton.dev/",
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/kit": "1.20.2",
"@sveltejs/package": "2.0.2",
"@sveltejs/kit": "1.20.5",
"@sveltejs/package": "^2.1.0",
"@testing-library/dom": "9.3.0",
"@testing-library/svelte": "3.2.2",
"@testing-library/svelte": "4.0.1",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@vitest/coverage-c8": "0.32.0",
"autoprefixer": "10.4.14",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-svelte": "^2.30.0",
"eslint-plugin-svelte": "^2.31.0",
"jsdom": "21.1.1",
"postcss": "8.4.24",
"postcss-import": "15.1.0",
"postcss-js": "4.0.1",
"postcss-load-config": "4.0.1",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.1",
"svelte-check": "3.4.3",
"svelte": "4.0.0",
"svelte-check": "^3.4.4",
"tailwindcss": "3.3.2",
"tslib": "2.5.3",
"typescript": "5.0.3",
Expand All @@ -69,8 +70,10 @@
},
"type": "module",
"dependencies": {
"esm-env": "1.0.0",
"svelte": "3.58.0"
"esm-env": "1.0.0"
},
"peerDependencies": {
"svelte": "^3.56.0 || ^4.0.0"
},
"publishConfig": {
"types": "./dist/index.d.ts",
Expand Down
Loading

0 comments on commit a977d11

Please sign in to comment.