@citruslime/ui 2.2.2-beta.8 → 2.3.0-beta.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/README.md +2 -2
- package/dist/citrus-lime-ui.es.js +1828 -2334
- package/dist/citrus-lime-ui.umd.js +2 -2
- package/dist/components/accordion/cl-ui-accordion.vue.d.ts +52 -0
- package/dist/components/accordion/header/cl-ui-accordion-header.vue.d.ts +9 -0
- package/dist/components/accordion/index.d.ts +3 -3
- package/dist/components/accordion/item/cl-ui-accordion-item.vue.d.ts +43 -0
- package/dist/components/app/cl-ui-app.vue.d.ts +38 -0
- package/dist/components/app/index.d.ts +1 -1
- package/dist/components/button/cl-ui-button.vue.d.ts +53 -0
- package/dist/components/button/index.d.ts +1 -1
- package/dist/components/calendar/cl-ui-calendar.vue.d.ts +63 -0
- package/dist/components/calendar/index.d.ts +1 -1
- package/dist/components/card/cl-ui-card.vue.d.ts +44 -0
- package/dist/components/card/index.d.ts +1 -1
- package/dist/components/combo-box/cl-ui-combo-box.vue.d.ts +100 -0
- package/dist/components/combo-box/index.d.ts +1 -1
- package/dist/components/combo-box/search-container/cl-ui-combo-box-search.vue.d.ts +79 -0
- package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.vue.d.ts +43 -0
- package/dist/components/combo-box/search-container/header/index.d.ts +1 -0
- package/dist/components/combo-box/search-container/index.d.ts +1 -0
- package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.vue.d.ts +55 -0
- package/dist/components/combo-box/search-container/selectable/index.d.ts +1 -0
- package/dist/components/footer/cl-ui-footer.vue.d.ts +11 -0
- package/dist/components/footer/index.d.ts +1 -1
- package/dist/components/grid/action-row/cl-ui-grid-action-row.vue.d.ts +39 -0
- package/dist/components/grid/body/cl-ui-grid-body.vue.d.ts +61 -0
- package/dist/components/grid/body/cl-ui-grid-cell-value.vue.d.ts +23 -0
- package/dist/components/grid/body/cl-ui-grid-cell.vue.d.ts +59 -0
- package/dist/components/grid/body/cl-ui-grid-row.vue.d.ts +63 -0
- package/dist/components/grid/cl-ui-grid.vue.d.ts +67 -0
- package/dist/components/grid/footer/cl-ui-grid-footer.vue.d.ts +36 -0
- package/dist/components/grid/header/cl-ui-grid-filter.vue.d.ts +38 -0
- package/dist/components/grid/header/cl-ui-grid-header.vue.d.ts +28 -0
- package/dist/components/grid/header/cl-ui-grid-method-selector.vue.d.ts +40 -0
- package/dist/components/grid/index.d.ts +1 -1
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.vue.d.ts +20 -0
- package/dist/components/grid/view-manager/index.d.ts +1 -0
- package/dist/components/header/cl-ui-header.vue.d.ts +15 -0
- package/dist/components/header/index.d.ts +1 -1
- package/dist/components/header/menu/cl-ui-header-menu.vue.d.ts +57 -0
- package/dist/components/header/menu/index.d.ts +1 -1
- package/dist/components/input/cl-ui-input.vue.d.ts +456 -0
- package/dist/components/input/index.d.ts +1 -1
- package/dist/components/input/types.d.ts +2 -2
- package/dist/components/input/utils.d.ts +1 -8
- package/dist/components/language-switcher/cl-ui-language-switcher.vue.d.ts +41 -0
- package/dist/components/language-switcher/index.d.ts +1 -1
- package/dist/components/loading-spinner/cl-ui-loading-spinner.vue.d.ts +2 -0
- package/dist/components/loading-spinner/index.d.ts +1 -1
- package/dist/components/login/cl-ui-login.vue.d.ts +49 -0
- package/dist/components/login/index.d.ts +1 -1
- package/dist/components/modal/cl-ui-modal.vue.d.ts +63 -0
- package/dist/components/modal/index.d.ts +1 -1
- package/dist/components/navigation/cl-ui-navigation.vue.d.ts +56 -0
- package/dist/components/navigation/group/cl-ui-navigation-group.vue.d.ts +23 -0
- package/dist/components/navigation/icon/cl-ui-navigation-icon.vue.d.ts +33 -0
- package/dist/components/navigation/index.d.ts +5 -5
- package/dist/components/navigation/item/cl-ui-navigation-item.vue.d.ts +9 -0
- package/dist/components/navigation/section/cl-ui-navigation-section.vue.d.ts +10 -0
- package/dist/components/notification/cl-ui-notification.vue.d.ts +34 -0
- package/dist/components/notification/index.d.ts +1 -1
- package/dist/components/slider/cl-ui-slider.vue.d.ts +56 -0
- package/dist/components/slider/index.d.ts +1 -1
- package/dist/components/tab/cl-ui-tab.vue.d.ts +62 -0
- package/dist/components/tab/content/cl-ui-tab-content.vue.d.ts +9 -0
- package/dist/components/tab/header/cl-ui-tab-header.vue.d.ts +49 -0
- package/dist/components/tab/index.d.ts +3 -3
- package/dist/composables/notification.d.ts +1 -2
- package/dist/main.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/utils/i18n/config.d.ts +1 -2
- package/dist/utils/validation.d.ts +3 -3
- package/package.json +8 -5
- package/dist/components/accordion/cl-ui-accordion.d.ts +0 -17
- package/dist/components/accordion/header/cl-ui-accordion-header.d.ts +0 -3
- package/dist/components/accordion/item/cl-ui-accordion-item.d.ts +0 -29
- package/dist/components/app/cl-ui-app.d.ts +0 -17
- package/dist/components/button/cl-ui-button.d.ts +0 -50
- package/dist/components/calendar/cl-ui-calendar.d.ts +0 -65
- package/dist/components/calendar/utils.d.ts +0 -38
- package/dist/components/card/cl-ui-card.d.ts +0 -28
- package/dist/components/combo-box/cl-ui-combo-box.d.ts +0 -158
- package/dist/components/combo-box/search-container/cl-ui-combo-box-search.d.ts +0 -115
- package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.d.ts +0 -43
- package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.d.ts +0 -67
- package/dist/components/footer/cl-ui-footer.d.ts +0 -3
- package/dist/components/grid/action-row/cl-ui-grid-action-row.d.ts +0 -50
- package/dist/components/grid/body/cl-ui-grid-body.d.ts +0 -65
- package/dist/components/grid/body/cl-ui-grid-cell-value.d.ts +0 -22
- package/dist/components/grid/body/cl-ui-grid-cell.d.ts +0 -38
- package/dist/components/grid/body/cl-ui-grid-row.d.ts +0 -48
- package/dist/components/grid/cl-ui-grid.d.ts +0 -61
- package/dist/components/grid/footer/cl-ui-grid-footer.d.ts +0 -30
- package/dist/components/grid/header/cl-ui-grid-filter.d.ts +0 -36
- package/dist/components/grid/header/cl-ui-grid-header.d.ts +0 -41
- package/dist/components/grid/header/cl-ui-grid-method-selector.d.ts +0 -44
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.d.ts +0 -16
- package/dist/components/header/cl-ui-header.d.ts +0 -5
- package/dist/components/header/menu/cl-ui-header-menu.d.ts +0 -60
- package/dist/components/input/cl-ui-input.d.ts +0 -278
- package/dist/components/language-switcher/cl-ui-language-switcher.d.ts +0 -39
- package/dist/components/loading-spinner/cl-ui-loading-spinner.d.ts +0 -3
- package/dist/components/login/cl-ui-login.d.ts +0 -34
- package/dist/components/modal/cl-ui-modal.d.ts +0 -39
- package/dist/components/navigation/cl-ui-navigation.d.ts +0 -17
- package/dist/components/navigation/group/cl-ui-navigation-group.d.ts +0 -13
- package/dist/components/navigation/icon/cl-ui-navigation-icon.d.ts +0 -33
- package/dist/components/navigation/item/cl-ui-navigation-item.d.ts +0 -3
- package/dist/components/navigation/section/cl-ui-navigation-section.d.ts +0 -3
- package/dist/components/notification/cl-ui-notification.d.ts +0 -28
- package/dist/components/slider/cl-ui-slider.d.ts +0 -78
- package/dist/components/tab/cl-ui-tab.d.ts +0 -39
- package/dist/components/tab/content/cl-ui-tab-content.d.ts +0 -3
- package/dist/components/tab/header/cl-ui-tab-header.d.ts +0 -48
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
headerColour: {
|
|
4
|
-
type: __PropType<string | undefined>;
|
|
5
|
-
required: false;
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
8
|
-
preventClose: {
|
|
9
|
-
type: __PropType<boolean | undefined>;
|
|
10
|
-
required: false;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
size: {
|
|
14
|
-
type: __PropType<"small" | "medium" | "large" | "x-small" | undefined>;
|
|
15
|
-
required: false;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
19
|
-
headerColour: {
|
|
20
|
-
type: __PropType<string | undefined>;
|
|
21
|
-
required: false;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
preventClose: {
|
|
25
|
-
type: __PropType<boolean | undefined>;
|
|
26
|
-
required: false;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
size: {
|
|
30
|
-
type: __PropType<"small" | "medium" | "large" | "x-small" | undefined>;
|
|
31
|
-
required: false;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
}>>, {
|
|
35
|
-
size: "small" | "medium" | "large" | "x-small" | undefined;
|
|
36
|
-
headerColour: string | undefined;
|
|
37
|
-
preventClose: boolean | undefined;
|
|
38
|
-
}, {}>;
|
|
39
|
-
export default _sfc_main;
|
|
@@ -1,17 +0,0 @@
|
|
|
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
|
-
}, {}>;
|
|
17
|
-
export default _sfc_main;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
open: {
|
|
4
|
-
type: __PropType<boolean>;
|
|
5
|
-
required: true;
|
|
6
|
-
};
|
|
7
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
8
|
-
open: {
|
|
9
|
-
type: __PropType<boolean>;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
}>>, {}, {}>;
|
|
13
|
-
export default _sfc_main;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
iconValue: {
|
|
4
|
-
type: __PropType<string>;
|
|
5
|
-
required: true;
|
|
6
|
-
};
|
|
7
|
-
open: {
|
|
8
|
-
type: __PropType<boolean>;
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
colour: {
|
|
12
|
-
type: __PropType<string | undefined>;
|
|
13
|
-
required: false;
|
|
14
|
-
default: string;
|
|
15
|
-
};
|
|
16
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
17
|
-
iconValue: {
|
|
18
|
-
type: __PropType<string>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
open: {
|
|
22
|
-
type: __PropType<boolean>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
colour: {
|
|
26
|
-
type: __PropType<string | undefined>;
|
|
27
|
-
required: false;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
}>>, {
|
|
31
|
-
colour: string | undefined;
|
|
32
|
-
}, {}>;
|
|
33
|
-
export default _sfc_main;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
|
-
export default _default;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
container: {
|
|
4
|
-
type: __PropType<string | undefined>;
|
|
5
|
-
required: false;
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
8
|
-
position: {
|
|
9
|
-
type: __PropType<"top-left" | "top-centre" | "top-right" | "bottom-left" | "bottom-centre" | "bottom-right" | undefined>;
|
|
10
|
-
required: false;
|
|
11
|
-
default: string;
|
|
12
|
-
};
|
|
13
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
14
|
-
container: {
|
|
15
|
-
type: __PropType<string | undefined>;
|
|
16
|
-
required: false;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
position: {
|
|
20
|
-
type: __PropType<"top-left" | "top-centre" | "top-right" | "bottom-left" | "bottom-centre" | "bottom-right" | undefined>;
|
|
21
|
-
required: false;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
}>>, {
|
|
25
|
-
container: string | undefined;
|
|
26
|
-
position: "top-left" | "top-centre" | "top-right" | "bottom-left" | "bottom-centre" | "bottom-right" | undefined;
|
|
27
|
-
}, {}>;
|
|
28
|
-
export default _sfc_main;
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
value: {
|
|
4
|
-
type: __PropType<number>;
|
|
5
|
-
required: true;
|
|
6
|
-
};
|
|
7
|
-
min: {
|
|
8
|
-
type: __PropType<number>;
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
max: {
|
|
12
|
-
type: __PropType<number>;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
step: {
|
|
16
|
-
type: __PropType<number | undefined>;
|
|
17
|
-
required: false;
|
|
18
|
-
default: number;
|
|
19
|
-
};
|
|
20
|
-
enforceStep: {
|
|
21
|
-
type: __PropType<boolean | undefined>;
|
|
22
|
-
required: false;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
disabled: {
|
|
26
|
-
type: __PropType<boolean | undefined>;
|
|
27
|
-
required: false;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
showNumericInput: {
|
|
31
|
-
type: __PropType<boolean | undefined>;
|
|
32
|
-
required: false;
|
|
33
|
-
default: boolean;
|
|
34
|
-
};
|
|
35
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
36
|
-
'update:value': null;
|
|
37
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
38
|
-
value: {
|
|
39
|
-
type: __PropType<number>;
|
|
40
|
-
required: true;
|
|
41
|
-
};
|
|
42
|
-
min: {
|
|
43
|
-
type: __PropType<number>;
|
|
44
|
-
required: true;
|
|
45
|
-
};
|
|
46
|
-
max: {
|
|
47
|
-
type: __PropType<number>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
step: {
|
|
51
|
-
type: __PropType<number | undefined>;
|
|
52
|
-
required: false;
|
|
53
|
-
default: number;
|
|
54
|
-
};
|
|
55
|
-
enforceStep: {
|
|
56
|
-
type: __PropType<boolean | undefined>;
|
|
57
|
-
required: false;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
disabled: {
|
|
61
|
-
type: __PropType<boolean | undefined>;
|
|
62
|
-
required: false;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
showNumericInput: {
|
|
66
|
-
type: __PropType<boolean | undefined>;
|
|
67
|
-
required: false;
|
|
68
|
-
default: boolean;
|
|
69
|
-
};
|
|
70
|
-
}>> & {
|
|
71
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
72
|
-
}, {
|
|
73
|
-
disabled: boolean | undefined;
|
|
74
|
-
step: number | undefined;
|
|
75
|
-
enforceStep: boolean | undefined;
|
|
76
|
-
showNumericInput: boolean | undefined;
|
|
77
|
-
}, {}>;
|
|
78
|
-
export default _sfc_main;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
currentTab: {
|
|
4
|
-
type: __PropType<number | undefined>;
|
|
5
|
-
required: false;
|
|
6
|
-
default: number;
|
|
7
|
-
};
|
|
8
|
-
disabled: {
|
|
9
|
-
type: __PropType<boolean | undefined>;
|
|
10
|
-
required: false;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
colour: {
|
|
14
|
-
type: __PropType<"default" | "primary" | "secondary" | "danger" | "blue" | undefined>;
|
|
15
|
-
required: false;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
19
|
-
currentTab: {
|
|
20
|
-
type: __PropType<number | undefined>;
|
|
21
|
-
required: false;
|
|
22
|
-
default: number;
|
|
23
|
-
};
|
|
24
|
-
disabled: {
|
|
25
|
-
type: __PropType<boolean | undefined>;
|
|
26
|
-
required: false;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
colour: {
|
|
30
|
-
type: __PropType<"default" | "primary" | "secondary" | "danger" | "blue" | undefined>;
|
|
31
|
-
required: false;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
}>>, {
|
|
35
|
-
disabled: boolean | undefined;
|
|
36
|
-
colour: "default" | "primary" | "secondary" | "danger" | "blue" | undefined;
|
|
37
|
-
currentTab: number | undefined;
|
|
38
|
-
}, {}>;
|
|
39
|
-
export default _sfc_main;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3
|
-
export default _default;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType as __PropType } from 'vue';
|
|
2
|
-
declare const _sfc_main: DefineComponent<{
|
|
3
|
-
id: {
|
|
4
|
-
type: __PropType<number>;
|
|
5
|
-
required: true;
|
|
6
|
-
};
|
|
7
|
-
currentTab: {
|
|
8
|
-
type: __PropType<number>;
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
disabled: {
|
|
12
|
-
type: __PropType<boolean | undefined>;
|
|
13
|
-
required: false;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
|
-
colour: {
|
|
17
|
-
type: __PropType<"default" | "primary" | "secondary" | "danger" | "blue" | undefined>;
|
|
18
|
-
required: false;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
22
|
-
'update:currentTab': null;
|
|
23
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
24
|
-
id: {
|
|
25
|
-
type: __PropType<number>;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
currentTab: {
|
|
29
|
-
type: __PropType<number>;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
disabled: {
|
|
33
|
-
type: __PropType<boolean | undefined>;
|
|
34
|
-
required: false;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
colour: {
|
|
38
|
-
type: __PropType<"default" | "primary" | "secondary" | "danger" | "blue" | undefined>;
|
|
39
|
-
required: false;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
}>> & {
|
|
43
|
-
"onUpdate:currentTab"?: ((...args: any[]) => any) | undefined;
|
|
44
|
-
}, {
|
|
45
|
-
disabled: boolean | undefined;
|
|
46
|
-
colour: "default" | "primary" | "secondary" | "danger" | "blue" | undefined;
|
|
47
|
-
}, {}>;
|
|
48
|
-
export default _sfc_main;
|