@bethinkpl/design-system 22.0.1 → 22.0.2
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/dist/design-system.umd.js +24 -27
- package/dist/design-system.umd.js.map +1 -1
- package/dist/lib/js/components/Drawer/DrawerContent/DrawerContent.vue.d.ts +3 -4
- package/dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts +3 -20
- package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +3 -8
- package/dist/lib/js/components/SelectList/SelectListItemTile/SelectListItemTile.vue.d.ts +3 -62
- package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +3 -58
- package/dist/lib/js/components/SelectList/SelectListSectionTitle/SelectListSectionTitle.vue.d.ts +3 -14
- package/docs/iframe.html +1 -1
- package/docs/main.6d41ae2b.iframe.bundle.js +1 -0
- package/docs/project.json +1 -1
- package/lib/js/components/PopOver/PopOver.vue +3 -5
- package/package.json +1 -1
- package/docs/main.3376b2f2.iframe.bundle.js +0 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
export default _default;
|
|
1
|
+
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
components: {
|
|
5
|
-
DsDivider: typeof Divider;
|
|
6
|
-
};
|
|
7
|
-
props: {
|
|
8
|
-
prominence: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
default: string;
|
|
11
|
-
validator: (value: string) => boolean;
|
|
12
|
-
};
|
|
13
|
-
size: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
default: string;
|
|
16
|
-
validator: (value: string) => boolean;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
export default _default;
|
|
1
|
+
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
components: {
|
|
5
|
-
Divider: typeof Divider;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
1
|
+
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
|
@@ -1,62 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
components: {
|
|
5
|
-
DsTile: typeof Tile;
|
|
6
|
-
};
|
|
7
|
-
props: {
|
|
8
|
-
interactive: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
iconLeft: {
|
|
13
|
-
type: ObjectConstructor;
|
|
14
|
-
default: null;
|
|
15
|
-
validator(iconLeft: any): boolean;
|
|
16
|
-
};
|
|
17
|
-
iconRight: {
|
|
18
|
-
type: ObjectConstructor;
|
|
19
|
-
default: null;
|
|
20
|
-
validator(iconRight: any): boolean;
|
|
21
|
-
};
|
|
22
|
-
text: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
required: boolean;
|
|
25
|
-
};
|
|
26
|
-
eyebrowText: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: null;
|
|
29
|
-
};
|
|
30
|
-
additionalText: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: null;
|
|
33
|
-
};
|
|
34
|
-
color: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: "neutral";
|
|
37
|
-
validator(color: any): boolean;
|
|
38
|
-
};
|
|
39
|
-
isEyebrowTextUppercase: {
|
|
40
|
-
type: BooleanConstructor;
|
|
41
|
-
default: boolean;
|
|
42
|
-
};
|
|
43
|
-
state: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
default: "default";
|
|
46
|
-
validator(value: import("../../../utils/type.utils").Value<{
|
|
47
|
-
readonly DEFAULT: "default";
|
|
48
|
-
readonly DISABLED: "disabled";
|
|
49
|
-
readonly LOADING: "loading";
|
|
50
|
-
}>): boolean;
|
|
51
|
-
};
|
|
52
|
-
eyebrowEllipsis: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
|
-
textEllipsis: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
export default _default;
|
|
1
|
+
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts
CHANGED
|
@@ -1,58 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
name: string;
|
|
5
|
-
components: {
|
|
6
|
-
SelectListItem: typeof SelectListItem;
|
|
7
|
-
};
|
|
8
|
-
props: {
|
|
9
|
-
iconOff: {
|
|
10
|
-
type: ObjectConstructor;
|
|
11
|
-
default: null;
|
|
12
|
-
validator(icon: any): boolean;
|
|
13
|
-
};
|
|
14
|
-
iconOn: {
|
|
15
|
-
type: ObjectConstructor;
|
|
16
|
-
default: null;
|
|
17
|
-
validator(icon: any): boolean;
|
|
18
|
-
};
|
|
19
|
-
isOn: {
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
labelOff: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
required: boolean;
|
|
26
|
-
};
|
|
27
|
-
labelOn: {
|
|
28
|
-
type: StringConstructor;
|
|
29
|
-
required: boolean;
|
|
30
|
-
};
|
|
31
|
-
size: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
validator(size: any): boolean;
|
|
35
|
-
};
|
|
36
|
-
state: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
validator(size: any): boolean;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
data(): {
|
|
43
|
-
SELECT_LIST_ITEM_SELECTION_MODE: Readonly<{
|
|
44
|
-
SELECT_ONLY: string;
|
|
45
|
-
TOGGLE: string;
|
|
46
|
-
}>;
|
|
47
|
-
SELECT_LIST_ITEM_STATES: Readonly<{
|
|
48
|
-
DEFAULT: string;
|
|
49
|
-
LOADING: string;
|
|
50
|
-
DISABLED: string;
|
|
51
|
-
}>;
|
|
52
|
-
};
|
|
53
|
-
computed: {
|
|
54
|
-
icon(): IconItem | null;
|
|
55
|
-
label(): string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
export default _default;
|
|
1
|
+
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
package/dist/lib/js/components/SelectList/SelectListSectionTitle/SelectListSectionTitle.vue.d.ts
CHANGED
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
label: {
|
|
5
|
-
type: StringConstructor;
|
|
6
|
-
required: boolean;
|
|
7
|
-
};
|
|
8
|
-
isUppercase: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
export default _default;
|
|
1
|
+
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>;
|
package/docs/iframe.html
CHANGED
|
@@ -361,4 +361,4 @@
|
|
|
361
361
|
|
|
362
362
|
|
|
363
363
|
|
|
364
|
-
window['STORIES'] = [{"titlePrefix":"","directory":"./lib","files":"**/*.stories.@(js|mdx|ts)","importPathMatcher":"^\\.[\\\\/](?:lib(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(js|mdx|ts))$"}];</script><script src="runtime~main.b2826aa6.iframe.bundle.js"></script><script src="3.9151d012.iframe.bundle.js"></script><script src="main.
|
|
364
|
+
window['STORIES'] = [{"titlePrefix":"","directory":"./lib","files":"**/*.stories.@(js|mdx|ts)","importPathMatcher":"^\\.[\\\\/](?:lib(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(js|mdx|ts))$"}];</script><script src="runtime~main.b2826aa6.iframe.bundle.js"></script><script src="3.9151d012.iframe.bundle.js"></script><script src="main.6d41ae2b.iframe.bundle.js"></script></body></html>
|