@winkintel/bootstrap-svelte 1.0.6 → 1.0.7
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/README.md +1 -1
- package/dist/common/css.d.ts +3 -1
- package/dist/common/css.js +1 -1
- package/package.json +21 -21
package/README.md
CHANGED
|
@@ -174,7 +174,7 @@ Interactive components are implemented as Svelte components rather than requirin
|
|
|
174
174
|
|
|
175
175
|
## Status and feedback
|
|
176
176
|
|
|
177
|
-
This package is published as `1.0.
|
|
177
|
+
This package is published as `1.0.7`, but feedback from Svelte developers is still very welcome. Useful feedback includes:
|
|
178
178
|
|
|
179
179
|
- Component API ergonomics
|
|
180
180
|
- Svelte 5 idioms and runes compatibility
|
package/dist/common/css.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import BezierEasing from 'bezier-easing';
|
|
2
2
|
import type clsx from 'clsx';
|
|
3
|
+
type EasingFunction = ReturnType<typeof BezierEasing>;
|
|
3
4
|
/**
|
|
4
5
|
* This easing function will match the CSS `ease-in-out` easing function using a cubic Bezier curve defined by the points (0.25, 0.1, 0.25, 1).
|
|
5
6
|
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function#ease
|
|
@@ -69,3 +70,4 @@ export declare function toStyle(styleObj: CSSProperties): string;
|
|
|
69
70
|
* console.log(styleObj); // { backgroundColor: 'red', fontSize: '16px', marginTop: '10px' }
|
|
70
71
|
*/
|
|
71
72
|
export declare function fromStyle(cssString: string | null | undefined): CSSProperties;
|
|
73
|
+
export {};
|
package/dist/common/css.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Wink, Inc.",
|
|
3
3
|
"name": "@winkintel/bootstrap-svelte",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.7",
|
|
5
5
|
"description": "Bootstrap components for Svelte 5 with TypeScript support.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -59,43 +59,43 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@popperjs/core": "~2.11.8",
|
|
62
|
-
"bezier-easing": "~3.0.
|
|
62
|
+
"bezier-easing": "~3.0.1",
|
|
63
63
|
"clsx": "~2.1.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@eslint/compat": "~2.1.0",
|
|
67
67
|
"@eslint/js": "~10.0.1",
|
|
68
|
-
"@sveltejs/adapter-static": "
|
|
69
|
-
"@sveltejs/kit": "~2.
|
|
70
|
-
"@sveltejs/package": "~2.5.
|
|
71
|
-
"@sveltejs/vite-plugin-svelte": "~7.
|
|
68
|
+
"@sveltejs/adapter-static": "~3.0.10",
|
|
69
|
+
"@sveltejs/kit": "~2.69.2",
|
|
70
|
+
"@sveltejs/package": "~2.5.8",
|
|
71
|
+
"@sveltejs/vite-plugin-svelte": "~7.2.0",
|
|
72
72
|
"@testing-library/dom": "~10.4.1",
|
|
73
73
|
"@testing-library/jest-dom": "~6.9.1",
|
|
74
|
-
"@testing-library/svelte": "~5.
|
|
74
|
+
"@testing-library/svelte": "~5.4.2",
|
|
75
75
|
"@testing-library/user-event": "~14.6.1",
|
|
76
|
-
"@types/bootstrap": "~5.2.
|
|
77
|
-
"@types/node": "^25.9.
|
|
78
|
-
"@vitest/coverage-v8": "~4.1.
|
|
79
|
-
"eslint": "~10.
|
|
76
|
+
"@types/bootstrap": "~5.2.11",
|
|
77
|
+
"@types/node": "^25.9.5",
|
|
78
|
+
"@vitest/coverage-v8": "~4.1.10",
|
|
79
|
+
"eslint": "~10.6.0",
|
|
80
80
|
"eslint-config-prettier": "~10.1.8",
|
|
81
|
-
"eslint-plugin-svelte": "~3.
|
|
82
|
-
"globals": "~17.
|
|
81
|
+
"eslint-plugin-svelte": "~3.20.0",
|
|
82
|
+
"globals": "~17.7.0",
|
|
83
83
|
"highlight.js": "~11.11.1",
|
|
84
84
|
"jsdom": "~29.1.1",
|
|
85
|
-
"prettier": "~3.
|
|
86
|
-
"prettier-plugin-svelte": "~4.1.
|
|
85
|
+
"prettier": "~3.9.4",
|
|
86
|
+
"prettier-plugin-svelte": "~4.1.1",
|
|
87
87
|
"publint": "~0.3.21",
|
|
88
88
|
"rimraf": "~6.1.3",
|
|
89
89
|
"sass": "1.77.6",
|
|
90
|
-
"svelte": "~5.56.
|
|
91
|
-
"svelte-check": "~4.
|
|
90
|
+
"svelte": "~5.56.4",
|
|
91
|
+
"svelte-check": "~4.7.2",
|
|
92
92
|
"svelte-doctor": "~0.3.1",
|
|
93
|
-
"svelte-highlight": "~7.
|
|
93
|
+
"svelte-highlight": "~7.14.1",
|
|
94
94
|
"svelte-preprocess": "~6.0.5",
|
|
95
95
|
"typescript": "~6.0.3",
|
|
96
|
-
"typescript-eslint": "~8.
|
|
97
|
-
"vite": "~8.
|
|
98
|
-
"vitest": "~4.1.
|
|
96
|
+
"typescript-eslint": "~8.63.0",
|
|
97
|
+
"vite": "~8.1.4",
|
|
98
|
+
"vitest": "~4.1.10"
|
|
99
99
|
},
|
|
100
100
|
"keywords": [
|
|
101
101
|
"bootstrap",
|