@citruslime/ui 2.0.1-beta.0 → 2.0.1-beta.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/dist/components/accordion/item/cl-ui-accordion-item.vue.d.ts +3 -3
- package/dist/components/app/cl-ui-app.vue.d.ts +2 -2
- package/dist/components/button/cl-ui-button.vue.d.ts +4 -4
- package/dist/components/calendar/cl-ui-calendar.vue.d.ts +1 -2266
- package/dist/components/card/cl-ui-card.vue.d.ts +2 -2
- package/dist/components/combo-box/cl-ui-combo-box.vue.d.ts +72 -5448
- package/dist/components/combo-box/search-container/cl-ui-combo-box-search.vue.d.ts +30 -2728
- package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.vue.d.ts +2 -2
- package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.vue.d.ts +11 -11
- package/dist/components/grid/cell/cl-ui-grid-cell.vue.d.ts +10 -2710
- package/dist/components/grid/cl-ui-grid.vue.d.ts +179 -10931
- package/dist/components/grid/filter/cl-ui-grid-filter.vue.d.ts +11 -2700
- package/dist/components/grid/footer/cl-ui-grid-footer.vue.d.ts +10 -2698
- package/dist/components/grid/header/cl-ui-grid-header.vue.d.ts +22 -2710
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.vue.d.ts +8 -2696
- package/dist/components/input/cl-ui-input.vue.d.ts +1 -2692
- package/dist/components/language-switcher/cl-ui-language-switcher.vue.d.ts +1 -1
- package/dist/components/login/cl-ui-login.vue.d.ts +13 -2713
- package/dist/components/modal/cl-ui-modal.vue.d.ts +4 -4
- package/dist/components/notification/cl-ui-notification.vue.d.ts +2 -2
- package/dist/components/slider/cl-ui-slider.vue.d.ts +3 -3
- package/dist/components/tab/cl-ui-tab.vue.d.ts +3 -3
- package/dist/components/tab/header/cl-ui-tab-header.vue.d.ts +7 -7
- package/package.json +3 -3
|
@@ -13,10 +13,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
open: boolean;
|
|
14
14
|
disabled: boolean;
|
|
15
15
|
};
|
|
16
|
-
emit: (
|
|
16
|
+
emit: (event: "toggle", ...args: any[]) => void;
|
|
17
17
|
toggle: () => void;
|
|
18
18
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
toggle:
|
|
19
|
+
toggle: null;
|
|
20
20
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
21
|
open: {
|
|
22
22
|
type: BooleanConstructor;
|
|
@@ -28,7 +28,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
30
|
}>> & {
|
|
31
|
-
onToggle?: ((...args: any[]) => any) |
|
|
31
|
+
onToggle?: ((...args: any[]) => any) | undefined;
|
|
32
32
|
}, {
|
|
33
33
|
disabled: boolean;
|
|
34
34
|
}>;
|
|
@@ -12,7 +12,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
12
12
|
default: string;
|
|
13
13
|
};
|
|
14
14
|
position: {
|
|
15
|
-
type:
|
|
15
|
+
type: null;
|
|
16
16
|
required: false;
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
@@ -31,7 +31,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
33
|
position: {
|
|
34
|
-
type:
|
|
34
|
+
type: null;
|
|
35
35
|
required: false;
|
|
36
36
|
default: string;
|
|
37
37
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
2
|
colour: {
|
|
3
|
-
type:
|
|
3
|
+
type: null;
|
|
4
4
|
required: false;
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
7
|
size: {
|
|
8
|
-
type:
|
|
8
|
+
type: null;
|
|
9
9
|
required: false;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
@@ -23,12 +23,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
23
23
|
ClUiLoadingSpinner: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
24
24
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
25
|
colour: {
|
|
26
|
-
type:
|
|
26
|
+
type: null;
|
|
27
27
|
required: false;
|
|
28
28
|
default: string;
|
|
29
29
|
};
|
|
30
30
|
size: {
|
|
31
|
-
type:
|
|
31
|
+
type: null;
|
|
32
32
|
required: false;
|
|
33
33
|
default: string;
|
|
34
34
|
};
|