mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-06 04:21:15 +00:00
Merge branch 'master' into dev
This commit is contained in:
@@ -1,5 +1,13 @@
|
|||||||
# @skeletonlabs/tw-plugin
|
# @skeletonlabs/tw-plugin
|
||||||
|
|
||||||
|
## 0.2.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- bugfix: Separated light/dark classes for input validation variants ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
|
- bugfix: Resolved an issue where the Ring design token would generate invalid CSS when using the important modifier `!` ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
## 0.2.1
|
## 0.2.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@skeletonlabs/tw-plugin",
|
"name": "@skeletonlabs/tw-plugin",
|
||||||
"version": "0.2.1",
|
"version": "0.2.2",
|
||||||
"description": "Core plugin for Skeleton.",
|
"description": "Core plugin for Skeleton.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsx ./scripts/generate-jss.ts && tsup",
|
"build": "tsx ./scripts/generate-jss.ts && tsup",
|
||||||
|
|||||||
@@ -1,5 +1,36 @@
|
|||||||
# @skeletonlabs/skeleton
|
# @skeletonlabs/skeleton
|
||||||
|
|
||||||
|
## 2.3.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- - feat: File Dropzone and File Button now include a `fileInput` prop to reference to the input element. ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
- feat: File Dropzone now forwards the `on:focus`, `on:focusin`, and `on:focusout` events.
|
||||||
|
|
||||||
|
- feat: Added `input-chip-interface` and `input-chip-wrapper` region classes to Input Chips. ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
|
- feat: Multiple revisions to the Tree View component: ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
|
- Enhanced and properly named non-recursive Tree View events.
|
||||||
|
- Separated the recursive Tree View under the new component RecursiveTreeView.
|
||||||
|
- RecursiveTreeView now utilizes the `relational` prop to enable relational checking.
|
||||||
|
- RecursiveTreeView is now using ID arrays with 2-way binding to control the Tree View state, including:
|
||||||
|
- `expandedNodes`
|
||||||
|
- `disabledNodes`
|
||||||
|
- `checkedNodes`
|
||||||
|
- `indeterminateNodes` (affects only multiple relational mode)
|
||||||
|
- TreeViewNode now requires a unique ID to support the new checking system.
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- bugfix: Resolved an issue that allowed focusTrap to escape hidden inputs ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
|
- feat: Added a `strokeLinecap` property to to Progress Radials, enabling rounded styling ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
|
- chore: Accordion now has RTL compatibility via the use of the `text-start` class ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
|
- bugfix: Added `title` prop to Lightswitch component for better i18n support ([#2130](https://github.com/skeletonlabs/skeleton/pull/2130))
|
||||||
|
|
||||||
## 2.2.0
|
## 2.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@skeletonlabs/skeleton",
|
"name": "@skeletonlabs/skeleton",
|
||||||
"version": "2.2.0",
|
"version": "2.3.0",
|
||||||
"description": "A SvelteKit component library.",
|
"description": "A SvelteKit component library.",
|
||||||
"author": "endigo9740 <chris@skeletonlabs.dev>",
|
"author": "endigo9740 <chris@skeletonlabs.dev>",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -61,6 +61,8 @@
|
|||||||
"regionCaret",
|
"regionCaret",
|
||||||
"regionCell",
|
"regionCell",
|
||||||
"regionChildren",
|
"regionChildren",
|
||||||
|
"regionChipList",
|
||||||
|
"regionChipWrapper",
|
||||||
"regionCone",
|
"regionCone",
|
||||||
"regionContent",
|
"regionContent",
|
||||||
"regionControl",
|
"regionControl",
|
||||||
@@ -73,6 +75,7 @@
|
|||||||
"regionHeadCell",
|
"regionHeadCell",
|
||||||
"regionHeader",
|
"regionHeader",
|
||||||
"regionIcon",
|
"regionIcon",
|
||||||
|
"regionInput",
|
||||||
"regionInterface",
|
"regionInterface",
|
||||||
"regionInterfaceText",
|
"regionInterfaceText",
|
||||||
"regionLabel",
|
"regionLabel",
|
||||||
|
|||||||
Reference in New Issue
Block a user