@kws3/ui 4.3.0 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.mdx +5 -1
- package/package.json +6 -2
package/CHANGELOG.mdx
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
## 4.3.1
|
|
2
|
+
- Include bulma 0.9 as peer dependency
|
|
3
|
+
- Include svelte 4 as peer dependency
|
|
4
|
+
|
|
1
5
|
## 4.3.0
|
|
2
6
|
- `StickyColumnsTableWrapper` now includes a box shadow to compensate for the inner table's drop shadow being hidden due to overflow clipping.
|
|
3
|
-
- **[BREAKING]** `GridView` component now transitions each `GridCell` independently, previously used to transition each `GridRow`. This means all content in `GridCell`
|
|
7
|
+
- **[BREAKING]** `GridView` component now transitions each `GridCell` independently, previously used to transition each `GridRow`. This means all content in `GridCell` now includes an additional wrapper element for handling the transitions. This matches the behaviour in `TileView`.
|
|
4
8
|
|
|
5
9
|
## 4.2.5
|
|
6
10
|
- Fix z-index for sticky columns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kws3/ui",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "UI components for use with Svelte v3 applications.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"svelte": "index.js",
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
27
|
"types": "./index.d.ts",
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"bulma": "^0.9.3",
|
|
30
|
+
"svelte": "^4.2.10"
|
|
31
|
+
},
|
|
28
32
|
"dependencies": {
|
|
29
33
|
"@kws3/text-mask-core": "^5.1.3",
|
|
30
34
|
"apexcharts": "3.33.2",
|
|
@@ -35,5 +39,5 @@
|
|
|
35
39
|
"devDependencies": {
|
|
36
40
|
"typescript": "^5.2.2"
|
|
37
41
|
},
|
|
38
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "e21174fbfbe5370abdfcf4862b3978cffc35659f"
|
|
39
43
|
}
|