@citruslime/ui 2.2.2-beta.3 → 2.2.2-beta.5
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/citrus-lime-ui.es.js +2083 -2088
- package/dist/citrus-lime-ui.umd.js +2 -2
- package/dist/components/accordion/cl-ui-accordion.d.ts +1 -1
- package/dist/components/accordion/header/cl-ui-accordion-header.d.ts +1 -1
- package/dist/components/accordion/item/cl-ui-accordion-item.d.ts +1 -1
- package/dist/components/app/cl-ui-app.d.ts +1 -1
- package/dist/components/button/cl-ui-button.d.ts +2 -4
- package/dist/components/calendar/cl-ui-calendar.d.ts +2 -37
- package/dist/components/card/cl-ui-card.d.ts +1 -1
- package/dist/components/combo-box/cl-ui-combo-box.d.ts +2 -4
- package/dist/components/combo-box/search-container/cl-ui-combo-box-search.d.ts +1 -1
- package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.d.ts +1 -1
- package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.d.ts +1 -1
- package/dist/components/footer/cl-ui-footer.d.ts +1 -1
- package/dist/components/grid/action-row/cl-ui-grid-action-row.d.ts +10 -2
- package/dist/components/grid/body/cl-ui-grid-body.d.ts +1 -1
- package/dist/components/grid/body/cl-ui-grid-cell-value.d.ts +1 -1
- package/dist/components/grid/body/cl-ui-grid-cell.d.ts +1 -1
- package/dist/components/grid/body/cl-ui-grid-row.d.ts +1 -1
- package/dist/components/grid/cl-ui-grid.d.ts +1 -1
- package/dist/components/grid/footer/cl-ui-grid-footer.d.ts +1 -1
- package/dist/components/grid/header/cl-ui-grid-filter.d.ts +1 -1
- package/dist/components/grid/header/cl-ui-grid-header.d.ts +1 -1
- package/dist/components/grid/header/cl-ui-grid-method-selector.d.ts +1 -1
- package/dist/components/grid/types.d.ts +1 -0
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.d.ts +1 -1
- package/dist/components/header/cl-ui-header.d.ts +1 -1
- package/dist/components/header/menu/cl-ui-header-menu.d.ts +12 -1
- package/dist/components/header/menu/types.d.ts +2 -0
- package/dist/components/input/cl-ui-input.d.ts +5 -7
- package/dist/components/language-switcher/cl-ui-language-switcher.d.ts +1 -1
- package/dist/components/loading-spinner/cl-ui-loading-spinner.d.ts +1 -1
- package/dist/components/login/cl-ui-login.d.ts +1 -1
- package/dist/components/modal/cl-ui-modal.d.ts +1 -1
- package/dist/components/navigation/cl-ui-navigation.d.ts +16 -2
- package/dist/components/navigation/group/cl-ui-navigation-group.d.ts +1 -1
- package/dist/components/navigation/icon/cl-ui-navigation-icon.d.ts +13 -1
- package/dist/components/navigation/item/cl-ui-navigation-item.d.ts +1 -1
- package/dist/components/navigation/section/cl-ui-navigation-section.d.ts +1 -1
- package/dist/components/navigation/types.d.ts +2 -0
- package/dist/components/notification/cl-ui-notification.d.ts +1 -1
- package/dist/components/slider/cl-ui-slider.d.ts +2 -4
- package/dist/components/tab/cl-ui-tab.d.ts +1 -1
- package/dist/components/tab/content/cl-ui-tab-content.d.ts +1 -1
- package/dist/components/tab/header/cl-ui-tab-header.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/utils/i18n/types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
3
|
export default _default;
|
|
@@ -20,9 +20,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
20
20
|
required: false;
|
|
21
21
|
default: boolean;
|
|
22
22
|
};
|
|
23
|
-
}, {
|
|
24
|
-
focus(): void;
|
|
25
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
23
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
26
24
|
colour: {
|
|
27
25
|
type: __PropType<"default" | "primary" | "secondary" | "danger" | "blue" | "orange" | undefined>;
|
|
28
26
|
required: false;
|
|
@@ -48,5 +46,5 @@ declare const _sfc_main: DefineComponent<{
|
|
|
48
46
|
colour: "default" | "primary" | "secondary" | "danger" | "blue" | "orange" | undefined;
|
|
49
47
|
size: "small" | "medium" | "large" | undefined;
|
|
50
48
|
loading: boolean | undefined;
|
|
51
|
-
}>;
|
|
49
|
+
}, {}>;
|
|
52
50
|
export default _sfc_main;
|
|
@@ -5,21 +5,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
5
5
|
required: false;
|
|
6
6
|
default: null;
|
|
7
7
|
};
|
|
8
|
-
datePlaceholder: {
|
|
9
|
-
type: __PropType<string | undefined>;
|
|
10
|
-
required: false;
|
|
11
|
-
default: string;
|
|
12
|
-
};
|
|
13
|
-
dateTimePlaceholder: {
|
|
14
|
-
type: __PropType<string | undefined>;
|
|
15
|
-
required: false;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
timePlaceholder: {
|
|
19
|
-
type: __PropType<string | undefined>;
|
|
20
|
-
required: false;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
8
|
type: {
|
|
24
9
|
type: __PropType<"date" | "datetime" | "time" | undefined>;
|
|
25
10
|
required: false;
|
|
@@ -40,9 +25,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
40
25
|
required: false;
|
|
41
26
|
default: string;
|
|
42
27
|
};
|
|
43
|
-
}, {
|
|
44
|
-
focus(): void;
|
|
45
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
28
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
46
29
|
'update:date': null;
|
|
47
30
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
48
31
|
date: {
|
|
@@ -50,21 +33,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
50
33
|
required: false;
|
|
51
34
|
default: null;
|
|
52
35
|
};
|
|
53
|
-
datePlaceholder: {
|
|
54
|
-
type: __PropType<string | undefined>;
|
|
55
|
-
required: false;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
dateTimePlaceholder: {
|
|
59
|
-
type: __PropType<string | undefined>;
|
|
60
|
-
required: false;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
timePlaceholder: {
|
|
64
|
-
type: __PropType<string | undefined>;
|
|
65
|
-
required: false;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
36
|
type: {
|
|
69
37
|
type: __PropType<"date" | "datetime" | "time" | undefined>;
|
|
70
38
|
required: false;
|
|
@@ -93,8 +61,5 @@ declare const _sfc_main: DefineComponent<{
|
|
|
93
61
|
date: Date | null | undefined;
|
|
94
62
|
min: string | undefined;
|
|
95
63
|
max: string | undefined;
|
|
96
|
-
|
|
97
|
-
dateTimePlaceholder: string | undefined;
|
|
98
|
-
timePlaceholder: string | undefined;
|
|
99
|
-
}>;
|
|
64
|
+
}, {}>;
|
|
100
65
|
export default _sfc_main;
|
|
@@ -64,9 +64,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
64
64
|
type: __PropType<ComboBoxItem | null>;
|
|
65
65
|
required: true;
|
|
66
66
|
};
|
|
67
|
-
}, {
|
|
68
|
-
focus(): void;
|
|
69
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
67
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
70
68
|
focus: null;
|
|
71
69
|
search: null;
|
|
72
70
|
'search-parent': null;
|
|
@@ -156,5 +154,5 @@ declare const _sfc_main: DefineComponent<{
|
|
|
156
154
|
parentObjectCreatedResponse: ComboBoxCreateResponse | null | undefined;
|
|
157
155
|
results: ComboBoxItem[] | undefined;
|
|
158
156
|
parentResults: ComboBoxItem[] | undefined;
|
|
159
|
-
}>;
|
|
157
|
+
}, {}>;
|
|
160
158
|
export default _sfc_main;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
3
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
import type { GridColumn, GridConfig } from '../types';
|
|
2
|
+
import type { FilterRequest, GridColumn, GridConfig } from '../types';
|
|
3
3
|
declare const _sfc_main: DefineComponent<{
|
|
4
4
|
editMode: {
|
|
5
5
|
type: __PropType<boolean>;
|
|
@@ -17,6 +17,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
17
17
|
type: __PropType<Partial<GridConfig>>;
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
|
+
request: {
|
|
21
|
+
type: __PropType<FilterRequest>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
20
24
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:edit-mode" | "update:filterPanelOpen" | "clear-filters")[], "update:edit-mode" | "update:filterPanelOpen" | "clear-filters", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
21
25
|
editMode: {
|
|
22
26
|
type: __PropType<boolean>;
|
|
@@ -34,9 +38,13 @@ declare const _sfc_main: DefineComponent<{
|
|
|
34
38
|
type: __PropType<Partial<GridConfig>>;
|
|
35
39
|
required: true;
|
|
36
40
|
};
|
|
41
|
+
request: {
|
|
42
|
+
type: __PropType<FilterRequest>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
37
45
|
}>> & {
|
|
38
46
|
"onUpdate:edit-mode"?: ((...args: any[]) => any) | undefined;
|
|
39
47
|
"onUpdate:filterPanelOpen"?: ((...args: any[]) => any) | undefined;
|
|
40
48
|
"onClear-filters"?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
}, {}>;
|
|
49
|
+
}, {}, {}>;
|
|
42
50
|
export default _sfc_main;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
2
|
declare const _sfc_main: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "open-click"[], "open-click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>> & {
|
|
3
3
|
"onOpen-click"?: ((...args: any[]) => any) | undefined;
|
|
4
|
-
}, {}>;
|
|
4
|
+
}, {}, {}>;
|
|
5
5
|
export default _sfc_main;
|
|
@@ -19,6 +19,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
19
19
|
type: __PropType<boolean>;
|
|
20
20
|
required: true;
|
|
21
21
|
};
|
|
22
|
+
colour: {
|
|
23
|
+
type: __PropType<"default" | "secondary" | undefined>;
|
|
24
|
+
required: false;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
22
27
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:is-open"[], "update:is-open", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
23
28
|
username: {
|
|
24
29
|
type: __PropType<string | undefined>;
|
|
@@ -39,11 +44,17 @@ declare const _sfc_main: DefineComponent<{
|
|
|
39
44
|
type: __PropType<boolean>;
|
|
40
45
|
required: true;
|
|
41
46
|
};
|
|
47
|
+
colour: {
|
|
48
|
+
type: __PropType<"default" | "secondary" | undefined>;
|
|
49
|
+
required: false;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
42
52
|
}>> & {
|
|
43
53
|
"onUpdate:is-open"?: ((...args: any[]) => any) | undefined;
|
|
44
54
|
}, {
|
|
55
|
+
colour: "default" | "secondary" | undefined;
|
|
45
56
|
username: string | undefined;
|
|
46
57
|
group: string | undefined;
|
|
47
58
|
image: string | undefined;
|
|
48
|
-
}>;
|
|
59
|
+
}, {}>;
|
|
49
60
|
export default _sfc_main;
|
|
@@ -2,7 +2,7 @@ import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedCompone
|
|
|
2
2
|
import type { InputValidationState, InputValueType } from './types';
|
|
3
3
|
declare const _sfc_main: DefineComponent<{
|
|
4
4
|
inputType: {
|
|
5
|
-
type: __PropType<"number" | "search" | "date" | "datetime" | "button" | "checkbox" | "
|
|
5
|
+
type: __PropType<"number" | "color" | "search" | "date" | "datetime" | "button" | "checkbox" | "email" | "file" | "password" | "radio" | "range" | "reset" | "submit" | "tel" | "text" | "time" | "url">;
|
|
6
6
|
required: true;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
@@ -121,11 +121,9 @@ declare const _sfc_main: DefineComponent<{
|
|
|
121
121
|
required: false;
|
|
122
122
|
default: boolean;
|
|
123
123
|
};
|
|
124
|
-
}, {
|
|
125
|
-
focus(): void;
|
|
126
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "input" | "change" | "update:model-value" | "click" | "validated")[], "focus" | "input" | "change" | "update:model-value" | "click" | "validated", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
124
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "input" | "change" | "update:model-value" | "click" | "validated")[], "focus" | "input" | "change" | "update:model-value" | "click" | "validated", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
127
125
|
inputType: {
|
|
128
|
-
type: __PropType<"number" | "search" | "date" | "datetime" | "button" | "checkbox" | "
|
|
126
|
+
type: __PropType<"number" | "color" | "search" | "date" | "datetime" | "button" | "checkbox" | "email" | "file" | "password" | "radio" | "range" | "reset" | "submit" | "tel" | "text" | "time" | "url">;
|
|
129
127
|
required: true;
|
|
130
128
|
default: string;
|
|
131
129
|
};
|
|
@@ -254,7 +252,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
254
252
|
}, {
|
|
255
253
|
disabled: boolean | undefined;
|
|
256
254
|
group: string | undefined;
|
|
257
|
-
inputType: "number" | "search" | "date" | "datetime" | "button" | "checkbox" | "
|
|
255
|
+
inputType: "number" | "color" | "search" | "date" | "datetime" | "button" | "checkbox" | "email" | "file" | "password" | "radio" | "range" | "reset" | "submit" | "tel" | "text" | "time" | "url";
|
|
258
256
|
modelValue: InputValueType;
|
|
259
257
|
label: string | undefined;
|
|
260
258
|
isRequired: boolean | undefined;
|
|
@@ -276,5 +274,5 @@ declare const _sfc_main: DefineComponent<{
|
|
|
276
274
|
messageWhenValid: string | undefined;
|
|
277
275
|
inputSpecificClasses: string | undefined;
|
|
278
276
|
showValidationMessages: boolean | undefined;
|
|
279
|
-
}>;
|
|
277
|
+
}, {}>;
|
|
280
278
|
export default _sfc_main;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
3
|
export default _default;
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
1
|
+
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: DefineComponent<{
|
|
3
|
+
colour: {
|
|
4
|
+
type: __PropType<"default" | "secondary" | undefined>;
|
|
5
|
+
required: false;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
9
|
+
colour: {
|
|
10
|
+
type: __PropType<"default" | "secondary" | undefined>;
|
|
11
|
+
required: false;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
}>>, {
|
|
15
|
+
colour: "default" | "secondary" | undefined;
|
|
16
|
+
}, {}>;
|
|
3
17
|
export default _sfc_main;
|
|
@@ -8,6 +8,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
8
8
|
type: __PropType<boolean>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
+
colour: {
|
|
12
|
+
type: __PropType<string | undefined>;
|
|
13
|
+
required: false;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
11
16
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
12
17
|
iconValue: {
|
|
13
18
|
type: __PropType<string>;
|
|
@@ -17,5 +22,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
17
22
|
type: __PropType<boolean>;
|
|
18
23
|
required: true;
|
|
19
24
|
};
|
|
20
|
-
|
|
25
|
+
colour: {
|
|
26
|
+
type: __PropType<string | undefined>;
|
|
27
|
+
required: false;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}>>, {
|
|
31
|
+
colour: string | undefined;
|
|
32
|
+
}, {}>;
|
|
21
33
|
export default _sfc_main;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
3
|
export default _default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
3
|
export default _default;
|
|
@@ -32,9 +32,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
32
32
|
required: false;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
-
}, {
|
|
36
|
-
focus(): void;
|
|
37
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
35
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
38
36
|
'update:value': null;
|
|
39
37
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
40
38
|
value: {
|
|
@@ -76,5 +74,5 @@ declare const _sfc_main: DefineComponent<{
|
|
|
76
74
|
step: number | undefined;
|
|
77
75
|
enforceStep: boolean | undefined;
|
|
78
76
|
showNumericInput: boolean | undefined;
|
|
79
|
-
}>;
|
|
77
|
+
}, {}>;
|
|
80
78
|
export default _sfc_main;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
3
|
export default _default;
|