windmill-components 1.406.1 → 1.406.3
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare let customIcon: {
|
|
2
|
-
normal
|
|
3
|
-
white
|
|
4
|
-
}
|
|
2
|
+
normal?: string;
|
|
3
|
+
white?: string;
|
|
4
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export let customIcon =
|
|
1
|
+
export let customIcon = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "windmill-components",
|
|
3
|
-
"version": "1.406.
|
|
3
|
+
"version": "1.406.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build",
|
|
@@ -300,9 +300,9 @@
|
|
|
300
300
|
"types": "./package/utils.d.ts",
|
|
301
301
|
"default": "./package/utils.js"
|
|
302
302
|
},
|
|
303
|
-
"./icons/store": {
|
|
304
|
-
"types": "./package/icons/store.d.ts",
|
|
305
|
-
"default": "./package/icons/store.js"
|
|
303
|
+
"./components/icons/store": {
|
|
304
|
+
"types": "./package/components/icons/store.d.ts",
|
|
305
|
+
"default": "./package/components/icons/store.js"
|
|
306
306
|
},
|
|
307
307
|
"./script_helpers": {
|
|
308
308
|
"types": "./package/script_helpers.d.ts",
|
|
@@ -481,8 +481,8 @@
|
|
|
481
481
|
"script_helpers": [
|
|
482
482
|
"./package/script_helpers.d.ts"
|
|
483
483
|
],
|
|
484
|
-
"icons/store": [
|
|
485
|
-
"./package/icons/store.d.ts"
|
|
484
|
+
"components/icons/store": [
|
|
485
|
+
"./package/components/icons/store.d.ts"
|
|
486
486
|
]
|
|
487
487
|
}
|
|
488
488
|
},
|