@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
|
@@ -15,7 +15,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
15
|
default: string;
|
|
16
16
|
};
|
|
17
17
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
-
'clear-object':
|
|
18
|
+
'clear-object': null;
|
|
19
19
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
20
|
showClearButton: {
|
|
21
21
|
type: BooleanConstructor;
|
|
@@ -33,7 +33,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
33
33
|
default: string;
|
|
34
34
|
};
|
|
35
35
|
}>> & {
|
|
36
|
-
"onClear-object"?: ((...args: any[]) => any) |
|
|
36
|
+
"onClear-object"?: ((...args: any[]) => any) | undefined;
|
|
37
37
|
}, {
|
|
38
38
|
text: string;
|
|
39
39
|
showClearButton: boolean;
|
package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.vue.d.ts
CHANGED
|
@@ -16,9 +16,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
18
|
option: {
|
|
19
|
-
type:
|
|
19
|
+
type: null;
|
|
20
20
|
required: false;
|
|
21
|
-
default:
|
|
21
|
+
default: null;
|
|
22
22
|
};
|
|
23
23
|
index: {
|
|
24
24
|
type: NumberConstructor;
|
|
@@ -32,7 +32,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
32
32
|
option: ComboBoxItem | null;
|
|
33
33
|
index: number;
|
|
34
34
|
};
|
|
35
|
-
emit: ((event: "create-object", ...args:
|
|
35
|
+
emit: ((event: "create-object", ...args: any[]) => void) & ((event: "select-object", ...args: any[]) => void) & ((event: "option-highlighted", ...args: any[]) => void);
|
|
36
36
|
displayedText: import("vue").ComputedRef<string>;
|
|
37
37
|
displayedParent: import("vue").ComputedRef<string>;
|
|
38
38
|
isHighlighted: import("vue").Ref<boolean>;
|
|
@@ -40,9 +40,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
40
|
onHover: (hovered: boolean) => void;
|
|
41
41
|
updateHighlight: () => void;
|
|
42
42
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
43
|
-
'create-object':
|
|
44
|
-
'select-object':
|
|
45
|
-
'option-highlighted':
|
|
43
|
+
'create-object': null;
|
|
44
|
+
'select-object': null;
|
|
45
|
+
'option-highlighted': null;
|
|
46
46
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
47
|
isCreateNewOption: {
|
|
48
48
|
type: BooleanConstructor;
|
|
@@ -60,18 +60,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
60
60
|
default: string;
|
|
61
61
|
};
|
|
62
62
|
option: {
|
|
63
|
-
type:
|
|
63
|
+
type: null;
|
|
64
64
|
required: false;
|
|
65
|
-
default:
|
|
65
|
+
default: null;
|
|
66
66
|
};
|
|
67
67
|
index: {
|
|
68
68
|
type: NumberConstructor;
|
|
69
69
|
required: true;
|
|
70
70
|
};
|
|
71
71
|
}>> & {
|
|
72
|
-
"onCreate-object"?: ((...args: any[]) => any) |
|
|
73
|
-
"onSelect-object"?: ((...args: any[]) => any) |
|
|
74
|
-
"onOption-highlighted"?: ((...args: any[]) => any) |
|
|
72
|
+
"onCreate-object"?: ((...args: any[]) => any) | undefined;
|
|
73
|
+
"onSelect-object"?: ((...args: any[]) => any) | undefined;
|
|
74
|
+
"onOption-highlighted"?: ((...args: any[]) => any) | undefined;
|
|
75
75
|
}, {
|
|
76
76
|
text: string;
|
|
77
77
|
isCreateNewOption: boolean;
|