@stenajs-webui/panels 17.34.0 → 18.0.0
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.md +13 -0
- package/dist/components/notifications/Notification.d.ts +3 -13
- package/dist/components/notifications/NotificationHeader.d.ts +21 -0
- package/dist/components/notifications/Toast.d.ts +10 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +556 -518
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/storybook-helpers/storybook-controls.d.ts +25 -0
- package/package.json +7 -7
- package/dist/components/notifications/NotificationTheme.d.ts +0 -7
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare const colorListControl: {
|
|
2
|
+
control: {
|
|
3
|
+
type: string;
|
|
4
|
+
options: string[];
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
export declare const widthControl: {
|
|
8
|
+
control: {
|
|
9
|
+
type: string;
|
|
10
|
+
min: number;
|
|
11
|
+
max: number;
|
|
12
|
+
step: number;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export declare const textControl: {
|
|
16
|
+
control: string;
|
|
17
|
+
};
|
|
18
|
+
export declare const hideControl: {
|
|
19
|
+
control: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const hideArg: {
|
|
22
|
+
table: {
|
|
23
|
+
disable: boolean;
|
|
24
|
+
};
|
|
25
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stenajs-webui/panels",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "mattias800",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"deploy": "gh-pages -d example/build"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@stenajs-webui/core": "
|
|
30
|
-
"@stenajs-webui/elements": "
|
|
31
|
-
"@stenajs-webui/forms": "
|
|
32
|
-
"@stenajs-webui/theme": "
|
|
33
|
-
"@stenajs-webui/tooltip": "
|
|
29
|
+
"@stenajs-webui/core": "18.0.0",
|
|
30
|
+
"@stenajs-webui/elements": "18.0.0",
|
|
31
|
+
"@stenajs-webui/forms": "18.0.0",
|
|
32
|
+
"@stenajs-webui/theme": "18.0.0",
|
|
33
|
+
"@stenajs-webui/tooltip": "18.0.0",
|
|
34
34
|
"classnames": "^2.3.1",
|
|
35
35
|
"date-fns": "2.26.0",
|
|
36
36
|
"react-transition-group": "^4.3.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"files": [
|
|
65
65
|
"dist"
|
|
66
66
|
],
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "c13bc3814f766ce1140c1c295d937ec6916ae0b2"
|
|
68
68
|
}
|