@ouestfrance/sipa-bms-ui 8.10.0 → 8.11.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/dist/components/button/BmsButton.vue.d.ts +2 -1
- package/dist/components/button/BmsIconButton.vue.d.ts +3 -1
- package/dist/components/button/UiButton.vue.d.ts +4 -2
- package/dist/components/button/UiButtonLink.vue.d.ts +1 -0
- package/dist/components/feedback/BmsTooltip.vue.d.ts +1 -1
- package/dist/components/feedback/UiTooltip.vue.d.ts +1 -1
- package/dist/components/form/BmsInputText.vue.d.ts +2 -0
- package/dist/components/form/BmsSearch.vue.d.ts +4 -0
- package/dist/components/form/RawAutocomplete.vue.d.ts +2 -0
- package/dist/components/layout/BmsHeaderTitle.vue.d.ts +1 -1
- package/dist/components/layout/UiPopoverMenu.vue.d.ts +1 -1
- package/dist/components/navigation/BmsBreadcrumb.vue.d.ts +1 -1
- package/dist/components/navigation/BmsShortLinkMenu.vue.d.ts +2 -2
- package/dist/components/navigation/UiTenantSwitcher.vue.d.ts +4 -0
- package/dist/components/table/BmsTableFilters.vue.d.ts +4 -0
- package/dist/components/utils/BmsCocarde.vue.d.ts +1 -1
- package/dist/mockServiceWorker.js +2 -1
- package/dist/plugins/field/FieldComponent.vue.d.ts +3 -0
- package/dist/plugins/field/SkeletonField.vue.d.ts +2 -0
- package/dist/plugins/field/field-component.model.d.ts +2 -0
- package/dist/plugins/router-history/router-history.composable.d.ts +1 -1
- package/dist/sipa-bms-ui.css +105 -65
- package/dist/sipa-bms-ui.es.js +4099 -4008
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +4106 -4015
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +19 -18
- package/src/components/button/BmsButton.stories.js +26 -0
- package/src/components/button/BmsButton.vue +2 -0
- package/src/components/button/BmsIconButton.stories.js +4 -0
- package/src/components/button/BmsIconButton.vue +10 -1
- package/src/components/button/UiButton.vue +2 -0
- package/src/components/button/UiButtonLink.vue +13 -6
- package/src/components/feedback/UiTooltip.vue +1 -0
- package/src/components/form/BmsAutocomplete.stories.js +12 -0
- package/src/components/form/BmsAutocomplete.vue +1 -0
- package/src/components/form/BmsInputText.stories.js +8 -0
- package/src/components/form/BmsInputToggle.stories.js +27 -0
- package/src/components/form/BmsInputToggle.vue +16 -2
- package/src/components/form/BmsMultiSelect.vue +6 -1
- package/src/components/form/BmsSelect.stories.js +9 -0
- package/src/components/form/BmsSelect.vue +4 -2
- package/src/components/form/BmsServerAutocomplete.stories.js +25 -2
- package/src/components/form/BmsServerAutocomplete.vue +1 -0
- package/src/components/form/BmsTextArea.vue +1 -1
- package/src/components/form/UiBmsSwitch.vue +1 -0
- package/src/components/layout/BmsModal.stories.js +1 -1
- package/src/components/table/BmsServerTable.vue +2 -4
- package/src/plugins/field/FieldComponent.spec.ts +2 -1
- package/src/plugins/field/FieldComponent.stories.js +18 -1
- package/src/plugins/field/FieldComponent.vue +24 -4
- package/src/plugins/field/SkeletonField.stories.js +21 -0
- package/src/plugins/field/SkeletonField.vue +27 -0
- package/src/plugins/field/field-component.model.ts +2 -0
- package/src/showroom/App.vue +5 -0
- package/src/showroom/pages/loading-form.vue +78 -0
|
@@ -5,10 +5,11 @@ interface Props {
|
|
|
5
5
|
to?: RouteLocationRaw | null;
|
|
6
6
|
mode?: StatusType.Danger | StatusType.Default;
|
|
7
7
|
submit?: boolean;
|
|
8
|
+
small?: boolean;
|
|
8
9
|
}
|
|
9
10
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
10
11
|
submit: boolean;
|
|
11
|
-
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | null;
|
|
12
|
+
to: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric | null;
|
|
12
13
|
type: "primary" | "secondary" | "tertiary";
|
|
13
14
|
mode: StatusType.Danger | StatusType.Default;
|
|
14
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
@@ -7,9 +7,11 @@ interface Props {
|
|
|
7
7
|
mode?: StatusType.Danger | StatusType.Information;
|
|
8
8
|
tooltipText?: string;
|
|
9
9
|
tooltipDirection?: TooltipDirection;
|
|
10
|
+
small?: boolean;
|
|
10
11
|
}
|
|
11
12
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
12
|
-
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | null;
|
|
13
|
+
to: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric | null;
|
|
14
|
+
small: boolean;
|
|
13
15
|
mode: StatusType.Danger | StatusType.Information;
|
|
14
16
|
tooltipText: string;
|
|
15
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
@@ -6,12 +6,14 @@ interface Props {
|
|
|
6
6
|
color?: StatusType;
|
|
7
7
|
mode?: 'fill' | 'ghost' | 'outline';
|
|
8
8
|
icon?: boolean;
|
|
9
|
+
small?: boolean;
|
|
9
10
|
}
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
11
|
-
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | null;
|
|
12
|
+
to: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric | null;
|
|
13
|
+
small: boolean;
|
|
12
14
|
type: "submit" | "button";
|
|
13
15
|
color: StatusType;
|
|
14
|
-
mode: "fill" | "
|
|
16
|
+
mode: "fill" | "outline" | "ghost";
|
|
15
17
|
icon: boolean;
|
|
16
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
17
19
|
start?(_: {}): any;
|
|
@@ -6,6 +6,7 @@ interface Props {
|
|
|
6
6
|
target?: string;
|
|
7
7
|
color: StatusType;
|
|
8
8
|
mode: 'fill' | 'ghost' | 'outline';
|
|
9
|
+
small: boolean;
|
|
9
10
|
icon: boolean;
|
|
10
11
|
}
|
|
11
12
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
@@ -10,8 +10,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
10
10
|
toggle: typeof toggleTooltip;
|
|
11
11
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
12
|
focus: boolean;
|
|
13
|
-
tooltipText: string;
|
|
14
13
|
direction: TooltipDirection;
|
|
14
|
+
tooltipText: string;
|
|
15
15
|
activated: boolean;
|
|
16
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
17
17
|
tooltipAnchor: HTMLDivElement;
|
|
@@ -12,8 +12,8 @@ type __VLS_Props = {
|
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
|
-
direction: TooltipDirection;
|
|
16
15
|
visible: boolean;
|
|
16
|
+
direction: TooltipDirection;
|
|
17
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
18
|
tooltipElement: HTMLDivElement;
|
|
19
19
|
}, any>, {
|
|
@@ -38,6 +38,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Pr
|
|
|
38
38
|
readonly maxlength?: number | undefined;
|
|
39
39
|
readonly type?: InputType | undefined;
|
|
40
40
|
readonly label?: string | undefined;
|
|
41
|
+
readonly loading?: boolean | undefined;
|
|
41
42
|
readonly required?: boolean | undefined;
|
|
42
43
|
readonly optional?: boolean | undefined;
|
|
43
44
|
readonly helperText?: string | undefined;
|
|
@@ -45,6 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Pr
|
|
|
45
46
|
readonly captions?: (string | Caption)[] | undefined;
|
|
46
47
|
readonly disabled?: boolean | undefined;
|
|
47
48
|
readonly small?: boolean | undefined;
|
|
49
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
48
50
|
readonly onBlur?: (() => any) | undefined;
|
|
49
51
|
readonly onClick?: (() => any) | undefined;
|
|
50
52
|
readonly onFocus?: (() => any) | undefined;
|
|
@@ -26,6 +26,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
26
26
|
readonly minlength?: number | undefined;
|
|
27
27
|
readonly maxlength?: number | undefined;
|
|
28
28
|
readonly label?: string | undefined;
|
|
29
|
+
readonly loading?: boolean | undefined;
|
|
29
30
|
readonly required?: boolean | undefined;
|
|
30
31
|
readonly optional?: boolean | undefined;
|
|
31
32
|
readonly helperText?: string | undefined;
|
|
@@ -33,6 +34,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
33
34
|
readonly captions?: (string | Caption)[] | undefined;
|
|
34
35
|
readonly disabled?: boolean | undefined;
|
|
35
36
|
readonly small?: boolean | undefined;
|
|
37
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
36
38
|
readonly onBlur?: (() => any) | undefined;
|
|
37
39
|
readonly onFocus?: (() => any) | undefined;
|
|
38
40
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -56,6 +58,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
56
58
|
readonly maxlength?: number | undefined;
|
|
57
59
|
readonly type?: import('../..').InputType | undefined;
|
|
58
60
|
readonly label?: string | undefined;
|
|
61
|
+
readonly loading?: boolean | undefined;
|
|
59
62
|
readonly required?: boolean | undefined;
|
|
60
63
|
readonly optional?: boolean | undefined;
|
|
61
64
|
readonly helperText?: string | undefined;
|
|
@@ -63,6 +66,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
63
66
|
readonly captions?: (string | Caption)[] | undefined;
|
|
64
67
|
readonly disabled?: boolean | undefined;
|
|
65
68
|
readonly small?: boolean | undefined;
|
|
69
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
66
70
|
readonly onBlur?: (() => any) | undefined;
|
|
67
71
|
readonly onClick?: (() => any) | undefined;
|
|
68
72
|
readonly onFocus?: (() => any) | undefined;
|
|
@@ -40,6 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
40
40
|
readonly maxlength?: number | undefined;
|
|
41
41
|
readonly type?: InputType | undefined;
|
|
42
42
|
readonly label?: string | undefined;
|
|
43
|
+
readonly loading?: boolean | undefined;
|
|
43
44
|
readonly required?: boolean | undefined;
|
|
44
45
|
readonly optional?: boolean | undefined;
|
|
45
46
|
readonly helperText?: string | undefined;
|
|
@@ -47,6 +48,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
47
48
|
readonly captions?: (string | import('../../models').Caption)[] | undefined;
|
|
48
49
|
readonly disabled?: boolean | undefined;
|
|
49
50
|
readonly small?: boolean | undefined;
|
|
51
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
50
52
|
readonly onBlur?: (() => any) | undefined;
|
|
51
53
|
readonly onClick?: (() => any) | undefined;
|
|
52
54
|
readonly onFocus?: (() => any) | undefined;
|
|
@@ -7,7 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
};
|
|
8
8
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
9
|
documentationUrl: string | null;
|
|
10
|
-
activityUrl: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | null;
|
|
10
|
+
activityUrl: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric | null;
|
|
11
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
12
12
|
logo?(_: {}): any;
|
|
13
13
|
afterTitle?(_: {}): any;
|
|
@@ -6,9 +6,9 @@ type __VLS_Props = {
|
|
|
6
6
|
y?: string;
|
|
7
7
|
};
|
|
8
8
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
|
+
visible: boolean;
|
|
9
10
|
x: string;
|
|
10
11
|
y: string;
|
|
11
|
-
visible: boolean;
|
|
12
12
|
matchWidth: boolean;
|
|
13
13
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
14
14
|
menuElement: HTMLDivElement;
|
|
@@ -7,6 +7,6 @@ type __VLS_Props = {
|
|
|
7
7
|
};
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
9
|
separator: string;
|
|
10
|
-
homeLocation: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
10
|
+
homeLocation: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric;
|
|
11
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -6,8 +6,8 @@ type __VLS_Props = {
|
|
|
6
6
|
};
|
|
7
7
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
8
|
outline: boolean;
|
|
9
|
-
helpLink: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | null;
|
|
10
|
-
activityLink: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | null;
|
|
9
|
+
helpLink: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric | null;
|
|
10
|
+
activityLink: string | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsRelativeGeneric | import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationAsPathGeneric | null;
|
|
11
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
12
12
|
documentationIcon?(_: {}): any;
|
|
13
13
|
activityIcon?(_: {}): any;
|
|
@@ -27,6 +27,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
27
27
|
readonly minlength?: number | undefined;
|
|
28
28
|
readonly maxlength?: number | undefined;
|
|
29
29
|
readonly label?: string | undefined;
|
|
30
|
+
readonly loading?: boolean | undefined;
|
|
30
31
|
readonly required?: boolean | undefined;
|
|
31
32
|
readonly optional?: boolean | undefined;
|
|
32
33
|
readonly helperText?: string | undefined;
|
|
@@ -34,6 +35,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
34
35
|
readonly captions?: (string | import('../../models').Caption)[] | undefined;
|
|
35
36
|
readonly disabled?: boolean | undefined;
|
|
36
37
|
readonly small?: boolean | undefined;
|
|
38
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
37
39
|
readonly onBlur?: (() => any) | undefined;
|
|
38
40
|
readonly onFocus?: (() => any) | undefined;
|
|
39
41
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -57,6 +59,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
57
59
|
readonly maxlength?: number | undefined;
|
|
58
60
|
readonly type?: import('../../models').InputType | undefined;
|
|
59
61
|
readonly label?: string | undefined;
|
|
62
|
+
readonly loading?: boolean | undefined;
|
|
60
63
|
readonly required?: boolean | undefined;
|
|
61
64
|
readonly optional?: boolean | undefined;
|
|
62
65
|
readonly helperText?: string | undefined;
|
|
@@ -64,6 +67,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
64
67
|
readonly captions?: (string | import('../../models').Caption)[] | undefined;
|
|
65
68
|
readonly disabled?: boolean | undefined;
|
|
66
69
|
readonly small?: boolean | undefined;
|
|
70
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
67
71
|
readonly onBlur?: (() => any) | undefined;
|
|
68
72
|
readonly onClick?: (() => any) | undefined;
|
|
69
73
|
readonly onFocus?: (() => any) | undefined;
|
|
@@ -45,6 +45,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
45
45
|
readonly minlength?: number | undefined;
|
|
46
46
|
readonly maxlength?: number | undefined;
|
|
47
47
|
readonly label?: string | undefined;
|
|
48
|
+
readonly loading?: boolean | undefined;
|
|
48
49
|
readonly required?: boolean | undefined;
|
|
49
50
|
readonly optional?: boolean | undefined;
|
|
50
51
|
readonly helperText?: string | undefined;
|
|
@@ -52,6 +53,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
52
53
|
readonly captions?: (string | import('../../models').Caption)[] | undefined;
|
|
53
54
|
readonly disabled?: boolean | undefined;
|
|
54
55
|
readonly small?: boolean | undefined;
|
|
56
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
55
57
|
readonly onBlur?: (() => any) | undefined;
|
|
56
58
|
readonly onFocus?: (() => any) | undefined;
|
|
57
59
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -75,6 +77,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
75
77
|
readonly maxlength?: number | undefined;
|
|
76
78
|
readonly type?: import('../../models').InputType | undefined;
|
|
77
79
|
readonly label?: string | undefined;
|
|
80
|
+
readonly loading?: boolean | undefined;
|
|
78
81
|
readonly required?: boolean | undefined;
|
|
79
82
|
readonly optional?: boolean | undefined;
|
|
80
83
|
readonly helperText?: string | undefined;
|
|
@@ -82,6 +85,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
82
85
|
readonly captions?: (string | import('../../models').Caption)[] | undefined;
|
|
83
86
|
readonly disabled?: boolean | undefined;
|
|
84
87
|
readonly small?: boolean | undefined;
|
|
88
|
+
readonly ellipsisLabel?: boolean | undefined;
|
|
85
89
|
readonly onBlur?: (() => any) | undefined;
|
|
86
90
|
readonly onClick?: (() => any) | undefined;
|
|
87
91
|
readonly onFocus?: (() => any) | undefined;
|
|
@@ -5,7 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
border?: CocardeBorder;
|
|
6
6
|
};
|
|
7
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
|
-
size: "small" | "medium" | "large" | "x-large";
|
|
9
8
|
border: CocardeBorder;
|
|
9
|
+
size: "small" | "medium" | "large" | "x-large";
|
|
10
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
11
11
|
export default _default;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* - Please do NOT modify this file.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
const PACKAGE_VERSION = '2.11.
|
|
10
|
+
const PACKAGE_VERSION = '2.11.5'
|
|
11
11
|
const INTEGRITY_CHECKSUM = '4db4a41e972cec1b64cc569c66952d82'
|
|
12
12
|
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
|
|
13
13
|
const activeClientIds = new Set()
|
|
@@ -205,6 +205,7 @@ async function resolveMainClient(event) {
|
|
|
205
205
|
* @param {FetchEvent} event
|
|
206
206
|
* @param {Client | undefined} client
|
|
207
207
|
* @param {string} requestId
|
|
208
|
+
* @param {number} requestInterceptedAt
|
|
208
209
|
* @returns {Promise<Response>}
|
|
209
210
|
*/
|
|
210
211
|
async function getResponse(event, client, requestId, requestInterceptedAt) {
|
|
@@ -2,8 +2,11 @@ import { FieldComponentProps } from './field-component.model';
|
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<FieldComponentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FieldComponentProps> & Readonly<{}>, {
|
|
3
3
|
label: string;
|
|
4
4
|
small: boolean;
|
|
5
|
+
loading: boolean;
|
|
5
6
|
optional: boolean;
|
|
7
|
+
ellipsisLabel: boolean;
|
|
6
8
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
9
|
+
parentElement: HTMLDivElement;
|
|
7
10
|
datalist: HTMLSpanElement;
|
|
8
11
|
}, HTMLDivElement>, {
|
|
9
12
|
default?(_: {}): any;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Caption } from '../../models';
|
|
2
2
|
export interface FieldComponentProps {
|
|
3
3
|
label?: string;
|
|
4
|
+
loading?: boolean;
|
|
4
5
|
required?: boolean;
|
|
5
6
|
optional?: boolean;
|
|
6
7
|
helperText?: string;
|
|
@@ -8,4 +9,5 @@ export interface FieldComponentProps {
|
|
|
8
9
|
captions?: (string | Caption)[];
|
|
9
10
|
disabled?: boolean;
|
|
10
11
|
small?: boolean;
|
|
12
|
+
ellipsisLabel?: boolean;
|
|
11
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { RouteLocationNormalizedLoaded, RouteLocationRaw } from 'vue-router';
|
|
3
3
|
export declare const useRouterHistory: () => {
|
|
4
|
-
historyRoutes: Ref<import('vue-router').RouteLocationNormalizedLoadedGeneric[], import('vue-router').RouteLocationNormalizedLoadedGeneric[]>;
|
|
4
|
+
historyRoutes: Ref<import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationNormalizedLoadedGeneric[], import('vue-router/dist/router-CXzcRfJt.mjs').RouteLocationNormalizedLoadedGeneric[]>;
|
|
5
5
|
addHistoryRoute: (route: RouteLocationNormalizedLoaded) => void;
|
|
6
6
|
goBack: (fallback?: RouteLocationRaw) => Promise<void>;
|
|
7
7
|
};
|