@cnamts/synapse 1.0.11 → 1.0.12
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/{DateFilter-QEfKOz0P.js → DateFilter-DoCcOfDW.js} +1 -1
- package/dist/{NumberFilter-C0h7gVzp.js → NumberFilter-9uR8uo6p.js} +1 -1
- package/dist/{PeriodFilter-8dVrKjju.js → PeriodFilter-CxN5ini7.js} +1 -1
- package/dist/{SelectFilter-BI3QGbqb.js → SelectFilter-bfxipgvt.js} +1 -1
- package/dist/{TextFilter-UOp1hcPp.js → TextFilter-yCnWcmW2.js} +1 -1
- package/dist/components/Amelipro/AmeliproAccordion/AmeliproAccordion.d.ts +6 -2
- package/dist/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.d.ts +2 -0
- package/dist/components/Amelipro/AmeliproAccordionResult/AmeliproAccordionResult.d.ts +6 -2
- package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +6 -6
- package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +6 -6
- package/dist/components/Amelipro/AmeliproTable/AmeliproTable.d.ts +4 -0
- package/dist/components/Amelipro/AmeliproTable/types.d.ts +11 -0
- package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +6 -6
- package/dist/components/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +14 -14
- package/dist/components/Customs/Selects/SySelect/SySelect.d.ts +3 -3
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +1 -1
- package/dist/components/DatePicker/CalendarMode/DatePicker.d.ts +40 -4
- package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +46 -4
- package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +5 -10
- package/dist/components/DatePicker/composables/useDatePickerViewMode.d.ts +2 -1
- package/dist/components/DatePicker/tests/setup.d.ts +368 -8
- package/dist/components/HeaderToolbar/HeaderToolbar.d.ts +6 -6
- package/dist/components/NirField/NirField.d.ts +4 -2
- package/dist/components/PeriodField/PeriodField.d.ts +80 -0
- package/dist/components/SearchListField/SearchListField.d.ts +3 -3
- package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +5 -8
- package/dist/components/Tables/SyTable/SyTable.d.ts +5 -8
- package/dist/components/Tables/common/SyTablePagination.d.ts +3 -3
- package/dist/components/Tables/common/types.d.ts +4 -0
- package/dist/components/Tables/common/usePagination.d.ts +3 -4
- package/dist/components/Tables/common/useTableCheckbox.d.ts +10 -6
- package/dist/design-system-v3.js +1 -1
- package/dist/design-system-v3.umd.cjs +127 -127
- package/dist/{main-DyEOPqqn.js → main-DMXtXK3y.js} +9984 -9855
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/overrides/_forms.scss +2 -0
- package/src/components/Amelipro/AmeliproAccordion/AmeliproAccordion.stories.ts +7 -4
- package/src/components/Amelipro/AmeliproAccordion/AmeliproAccordion.vue +2 -0
- package/src/components/Amelipro/AmeliproAccordionFrieze/AmeliproAccordionFrieze.vue +1 -0
- package/src/components/Amelipro/AmeliproAccordionFrieze/__tests__/__snapshots__/AmeliproAccordionFrieze.spec.ts.snap +574 -112
- package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.stories.ts +5 -2
- package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.vue +2 -1
- package/src/components/Amelipro/AmeliproAccordionResult/AmeliproAccordionResult.stories.ts +6 -3
- package/src/components/Amelipro/AmeliproAccordionResult/AmeliproAccordionResult.vue +2 -0
- package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.stories.ts +5 -2
- package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.vue +2 -1
- package/src/components/Amelipro/AmeliproCheckbox/__tests__/AmeliproCheckbox.spec.ts +175 -0
- package/src/components/Amelipro/AmeliproCheckbox/__tests__/__snapshots__/AmeliproCheckbox.spec.ts.snap +88 -0
- package/src/components/Amelipro/AmeliproCheckboxGroup/__tests__/AmeliproCheckboxGroup.spec.ts +423 -0
- package/src/components/Amelipro/AmeliproCheckboxGroup/{tests → __tests__}/__snapshots__/AmeliproCheckboxGroup.spec.ts.snap +112 -78
- package/src/components/Amelipro/AmeliproChips/__tests__/AmeliproChips.spec.ts +92 -0
- package/src/components/Amelipro/AmeliproChips/__tests__/__snapshots__/AmeliproChips.spec.ts.snap +81 -0
- package/src/components/Amelipro/AmeliproDialog/__tests__/AmeliproDialog.spec.ts +257 -0
- package/src/components/Amelipro/AmeliproDialog/__tests__/__snapshots__/AmeliproDialog.spec.ts.snap +61 -0
- package/src/components/Amelipro/AmeliproDisclosure/__tests__/AmeliproDisclosure.spec.ts +79 -0
- package/src/components/Amelipro/AmeliproDisclosure/__tests__/__snapshots__/AmeliproDisclosure.spec.ts.snap +89 -0
- package/src/components/Amelipro/AmeliproTable/AmeliproTable.stories.ts +81 -9
- package/src/components/Amelipro/AmeliproTable/AmeliproTable.vue +139 -61
- package/src/components/Amelipro/AmeliproTable/__tests__/AmeliproTable.spec.ts +10 -0
- package/src/components/Amelipro/AmeliproTable/__tests__/__snapshots__/AmeliproTable.spec.ts.snap +361 -187
- package/src/components/Amelipro/AmeliproTable/types.d.ts +11 -0
- package/src/components/Customs/SyTextField/SyTextField.vue +27 -5
- package/src/components/DatePicker/CalendarMode/DatePicker.vue +31 -8
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +44 -12
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.spec.ts +2 -2
- package/src/components/DatePicker/DateTextInput/DateTextInput.vue +7 -1
- package/src/components/DatePicker/composables/tests/useDatePickerViewMode.spec.ts +107 -72
- package/src/components/DatePicker/composables/tests/useMonthButtonCustomization.spec.ts +6 -6
- package/src/components/DatePicker/composables/useDatePickerViewMode.ts +57 -7
- package/src/components/DatePicker/composables/useMonthButtonCustomization.ts +14 -14
- package/src/components/DatePicker/tests/navigation.regression.spec.ts +74 -0
- package/src/components/DatePicker/tests/navigation.simple.spec.ts +137 -0
- package/src/components/NirField/NirField.stories.ts +11 -2
- package/src/components/NirField/NirField.vue +21 -9
- package/src/components/RangeField/tests/RangeField.spec.ts +0 -3
- package/src/components/Tables/SyServerTable/SyServerTable.mdx +15 -0
- package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +309 -0
- package/src/components/Tables/SyServerTable/SyServerTable.vue +18 -3
- package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +67 -0
- package/src/components/Tables/SyTable/SyTable.mdx +15 -0
- package/src/components/Tables/SyTable/SyTable.stories.ts +228 -0
- package/src/components/Tables/SyTable/SyTable.vue +18 -3
- package/src/components/Tables/SyTable/tests/SyTable.spec.ts +63 -0
- package/src/components/Tables/common/SyTablePagination.vue +10 -8
- package/src/components/Tables/common/types.ts +4 -0
- package/src/components/Tables/common/usePagination.ts +11 -20
- package/src/components/Tables/common/useTableCheckbox.ts +23 -11
- package/src/composables/validation/AvecVosComposants.mdx.old +1 -1
- package/src/composables/validation/FormValidation.stories.ts.old +5 -5
- package/src/stories/Accessibilite/Introduction.mdx +1 -1
- package/src/stories/Demarrer/EnrichirLeDesignSystem.mdx +43 -0
- package/src/stories/Demarrer/EnrichirLeDesignSystem.stories.ts +239 -0
- package/src/stories/Demarrer/SignalerUneAnomalie.mdx +39 -0
- package/src/stories/Demarrer/SignalerUneAnomalie.stories.ts +261 -0
- package/src/components/Amelipro/AmeliproCheckbox/tests/AmeliproCheckbox.spec.ts +0 -19
- package/src/components/Amelipro/AmeliproCheckbox/tests/__snapshots__/AmeliproCheckbox.spec.ts.snap +0 -40
- package/src/components/Amelipro/AmeliproCheckboxGroup/tests/AmeliproCheckboxGroup.spec.ts +0 -46
- package/src/components/Amelipro/AmeliproChips/tests/AmeliproChips.spec.ts +0 -16
- package/src/components/Amelipro/AmeliproChips/tests/__snapshots__/AmeliproChips.spec.ts.snap +0 -97
- package/src/components/Amelipro/AmeliproDialog/tests/AmeliproDialog.spec.ts +0 -24
- package/src/components/Amelipro/AmeliproDialog/tests/__snapshots__/AmeliproDialog.spec.ts.snap +0 -134
- package/src/components/Amelipro/AmeliproDisclosure/tests/AmeliproDisclosure.spec.ts +0 -19
- package/src/components/Amelipro/AmeliproDisclosure/tests/__snapshots__/AmeliproDisclosure.spec.ts.snap +0 -104
- package/src/components/BackBtn/tests/__snapshots__/BackBtn.spec.ts.snap +0 -45
- package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +0 -1270
- package/src/stories/Demarrer/CreerUneIssue.mdx +0 -67
- package/src/stories/Demarrer/components.stories.ts +0 -25
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as b, computed as D, createBlock as k, openBlock as p } from "vue";
|
|
2
|
-
import { u as C, D as F, _ as V } from "./main-
|
|
2
|
+
import { u as C, D as F, _ as V } from "./main-DMXtXK3y.js";
|
|
3
3
|
const v = /* @__PURE__ */ b({
|
|
4
4
|
__name: "DateFilter",
|
|
5
5
|
props: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as k, ref as h, watch as x, computed as T, createElementBlock as V, openBlock as F, createVNode as w } from "vue";
|
|
2
|
-
import { a as S, _ as D } from "./main-
|
|
2
|
+
import { a as S, _ as D } from "./main-DMXtXK3y.js";
|
|
3
3
|
const E = { class: "number-filter-container" }, B = /* @__PURE__ */ k({
|
|
4
4
|
__name: "NumberFilter",
|
|
5
5
|
props: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as b, computed as h, createBlock as p, openBlock as k } from "vue";
|
|
2
|
-
import { P as C, _ as F } from "./main-
|
|
2
|
+
import { P as C, _ as F } from "./main-DMXtXK3y.js";
|
|
3
3
|
const V = /* @__PURE__ */ b({
|
|
4
4
|
__name: "PeriodFilter",
|
|
5
5
|
props: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as C, computed as p, ref as F, createElementBlock as S, openBlock as A, createVNode as B } from "vue";
|
|
2
|
-
import { S as E, _ as D } from "./main-
|
|
2
|
+
import { S as E, _ as D } from "./main-DMXtXK3y.js";
|
|
3
3
|
const n = {
|
|
4
4
|
defaultOption: "- choisir -",
|
|
5
5
|
emptyValue: "(vide)"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as C, ref as b, watch as k, computed as T, createElementBlock as x, openBlock as w, createVNode as F } from "vue";
|
|
2
|
-
import { a as V, _ as E } from "./main-
|
|
2
|
+
import { a as V, _ as E } from "./main-DMXtXK3y.js";
|
|
3
3
|
const S = { class: "text-filter-container" }, B = /* @__PURE__ */ C({
|
|
4
4
|
__name: "TextFilter",
|
|
5
5
|
props: {
|
|
@@ -41,7 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
41
41
|
};
|
|
42
42
|
}>, {
|
|
43
43
|
openClose: () => void;
|
|
44
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
44
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
|
+
"open-close": (...args: any[]) => void;
|
|
46
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
45
47
|
accordionTitle: {
|
|
46
48
|
type: StringConstructor;
|
|
47
49
|
required: true;
|
|
@@ -82,7 +84,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
82
84
|
type: StringConstructor;
|
|
83
85
|
required: true;
|
|
84
86
|
};
|
|
85
|
-
}>> & Readonly<{
|
|
87
|
+
}>> & Readonly<{
|
|
88
|
+
"onOpen-close"?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
}>, {
|
|
86
90
|
isOpen: boolean;
|
|
87
91
|
bordered: boolean;
|
|
88
92
|
borderColor: string;
|
|
@@ -90,6 +90,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
90
90
|
openClose: (id: number) => void;
|
|
91
91
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
92
92
|
click: (...args: any[]) => void;
|
|
93
|
+
"open-close": (...args: any[]) => void;
|
|
93
94
|
"change:sort-select": (...args: any[]) => void;
|
|
94
95
|
"change:pagination-select": (...args: any[]) => void;
|
|
95
96
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -179,6 +180,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
179
180
|
};
|
|
180
181
|
}>> & Readonly<{
|
|
181
182
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
183
|
+
"onOpen-close"?: ((...args: any[]) => any) | undefined;
|
|
182
184
|
"onChange:sort-select"?: ((...args: any[]) => any) | undefined;
|
|
183
185
|
"onChange:pagination-select"?: ((...args: any[]) => any) | undefined;
|
|
184
186
|
}>, {
|
|
@@ -25,7 +25,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
25
25
|
};
|
|
26
26
|
}>, {
|
|
27
27
|
openClose: () => void;
|
|
28
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
"open-close": (...args: any[]) => void;
|
|
30
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
29
31
|
borderColor: {
|
|
30
32
|
type: StringConstructor;
|
|
31
33
|
default: string;
|
|
@@ -50,7 +52,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
50
52
|
type: StringConstructor;
|
|
51
53
|
required: true;
|
|
52
54
|
};
|
|
53
|
-
}>> & Readonly<{
|
|
55
|
+
}>> & Readonly<{
|
|
56
|
+
"onOpen-close"?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
}>, {
|
|
54
58
|
isOpen: boolean;
|
|
55
59
|
bordered: boolean;
|
|
56
60
|
borderColor: string;
|
|
@@ -323,7 +323,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
323
323
|
hint?: string | undefined;
|
|
324
324
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
325
325
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
326
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
326
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
327
327
|
bgColor?: string | undefined;
|
|
328
328
|
centerAffix?: boolean | undefined;
|
|
329
329
|
color?: string | undefined;
|
|
@@ -387,7 +387,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
387
387
|
mandatory: boolean;
|
|
388
388
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
389
389
|
returnObject: boolean;
|
|
390
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
390
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
391
391
|
baseColor?: string | undefined;
|
|
392
392
|
activeColor?: string | undefined;
|
|
393
393
|
activeClass?: string | undefined;
|
|
@@ -953,7 +953,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
953
953
|
hint?: string | undefined;
|
|
954
954
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
955
955
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
956
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
956
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
957
957
|
bgColor?: string | undefined;
|
|
958
958
|
centerAffix?: boolean | undefined;
|
|
959
959
|
color?: string | undefined;
|
|
@@ -1017,7 +1017,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1017
1017
|
mandatory: boolean;
|
|
1018
1018
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
1019
1019
|
returnObject: boolean;
|
|
1020
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
1020
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
1021
1021
|
baseColor?: string | undefined;
|
|
1022
1022
|
activeColor?: string | undefined;
|
|
1023
1023
|
activeClass?: string | undefined;
|
|
@@ -3862,7 +3862,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
3862
3862
|
hint?: string | undefined;
|
|
3863
3863
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3864
3864
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3865
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
3865
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
3866
3866
|
bgColor?: string | undefined;
|
|
3867
3867
|
centerAffix?: boolean | undefined;
|
|
3868
3868
|
color?: string | undefined;
|
|
@@ -3926,7 +3926,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
3926
3926
|
mandatory: boolean;
|
|
3927
3927
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
3928
3928
|
returnObject: boolean;
|
|
3929
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
3929
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
3930
3930
|
baseColor?: string | undefined;
|
|
3931
3931
|
activeColor?: string | undefined;
|
|
3932
3932
|
activeClass?: string | undefined;
|
|
@@ -329,7 +329,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
329
329
|
hint?: string | undefined;
|
|
330
330
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
331
331
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
332
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
332
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
333
333
|
bgColor?: string | undefined;
|
|
334
334
|
centerAffix?: boolean | undefined;
|
|
335
335
|
color?: string | undefined;
|
|
@@ -393,7 +393,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
393
393
|
mandatory: boolean;
|
|
394
394
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
395
395
|
returnObject: boolean;
|
|
396
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
396
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
397
397
|
baseColor?: string | undefined;
|
|
398
398
|
activeColor?: string | undefined;
|
|
399
399
|
activeClass?: string | undefined;
|
|
@@ -955,7 +955,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
955
955
|
hint?: string | undefined;
|
|
956
956
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
957
957
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
958
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
958
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
959
959
|
bgColor?: string | undefined;
|
|
960
960
|
centerAffix?: boolean | undefined;
|
|
961
961
|
color?: string | undefined;
|
|
@@ -1019,7 +1019,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1019
1019
|
mandatory: boolean;
|
|
1020
1020
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
1021
1021
|
returnObject: boolean;
|
|
1022
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
1022
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
1023
1023
|
baseColor?: string | undefined;
|
|
1024
1024
|
activeColor?: string | undefined;
|
|
1025
1025
|
activeClass?: string | undefined;
|
|
@@ -3851,7 +3851,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
3851
3851
|
hint?: string | undefined;
|
|
3852
3852
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3853
3853
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3854
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
3854
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
3855
3855
|
bgColor?: string | undefined;
|
|
3856
3856
|
centerAffix?: boolean | undefined;
|
|
3857
3857
|
color?: string | undefined;
|
|
@@ -3915,7 +3915,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
3915
3915
|
mandatory: boolean;
|
|
3916
3916
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
3917
3917
|
returnObject: boolean;
|
|
3918
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
3918
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
3919
3919
|
baseColor?: string | undefined;
|
|
3920
3920
|
activeColor?: string | undefined;
|
|
3921
3921
|
activeClass?: string | undefined;
|
|
@@ -83,6 +83,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
83
83
|
click: (...args: any[]) => void;
|
|
84
84
|
"change:sort-select": (...args: any[]) => void;
|
|
85
85
|
"change:pagination-select": (...args: any[]) => void;
|
|
86
|
+
"asc-sort": (...args: any[]) => void;
|
|
87
|
+
"desc-sort": (...args: any[]) => void;
|
|
86
88
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
87
89
|
counterLabel: {
|
|
88
90
|
type: StringConstructor;
|
|
@@ -164,6 +166,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
164
166
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
165
167
|
"onChange:sort-select"?: ((...args: any[]) => any) | undefined;
|
|
166
168
|
"onChange:pagination-select"?: ((...args: any[]) => any) | undefined;
|
|
169
|
+
"onAsc-sort"?: ((...args: any[]) => any) | undefined;
|
|
170
|
+
"onDesc-sort"?: ((...args: any[]) => any) | undefined;
|
|
167
171
|
}>, {
|
|
168
172
|
dataList: IDataListItem[];
|
|
169
173
|
headers: AmeliproTableHeader[];
|
|
@@ -14,6 +14,17 @@ export interface AmeliproTableHeader {
|
|
|
14
14
|
width: string
|
|
15
15
|
maxWidth: string
|
|
16
16
|
descriptionId?: string
|
|
17
|
+
sort?: IHeaderSort
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface ISortBtn {
|
|
21
|
+
label: string
|
|
22
|
+
disabled: boolean
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface IHeaderSort {
|
|
26
|
+
ascendant?: ISortBtn
|
|
27
|
+
descendant?: ISortBtn
|
|
17
28
|
}
|
|
18
29
|
|
|
19
30
|
export interface AmeliproCurrentPage {
|
|
@@ -385,7 +385,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
385
385
|
hint?: string | undefined;
|
|
386
386
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
387
387
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
388
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
388
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
389
389
|
bgColor?: string | undefined;
|
|
390
390
|
centerAffix?: boolean | undefined;
|
|
391
391
|
color?: string | undefined;
|
|
@@ -449,7 +449,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
449
449
|
mandatory: boolean;
|
|
450
450
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
451
451
|
returnObject: boolean;
|
|
452
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
452
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
453
453
|
baseColor?: string | undefined;
|
|
454
454
|
activeColor?: string | undefined;
|
|
455
455
|
activeClass?: string | undefined;
|
|
@@ -1011,7 +1011,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1011
1011
|
hint?: string | undefined;
|
|
1012
1012
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1013
1013
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1014
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
1014
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
1015
1015
|
bgColor?: string | undefined;
|
|
1016
1016
|
centerAffix?: boolean | undefined;
|
|
1017
1017
|
color?: string | undefined;
|
|
@@ -1075,7 +1075,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1075
1075
|
mandatory: boolean;
|
|
1076
1076
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
1077
1077
|
returnObject: boolean;
|
|
1078
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
1078
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
1079
1079
|
baseColor?: string | undefined;
|
|
1080
1080
|
activeColor?: string | undefined;
|
|
1081
1081
|
activeClass?: string | undefined;
|
|
@@ -3907,7 +3907,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
3907
3907
|
hint?: string | undefined;
|
|
3908
3908
|
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3909
3909
|
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3910
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
3910
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
3911
3911
|
bgColor?: string | undefined;
|
|
3912
3912
|
centerAffix?: boolean | undefined;
|
|
3913
3913
|
color?: string | undefined;
|
|
@@ -3971,7 +3971,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
3971
3971
|
mandatory: boolean;
|
|
3972
3972
|
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
3973
3973
|
returnObject: boolean;
|
|
3974
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
3974
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
3975
3975
|
baseColor?: string | undefined;
|
|
3976
3976
|
activeColor?: string | undefined;
|
|
3977
3977
|
activeClass?: string | undefined;
|
|
@@ -30,7 +30,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
30
30
|
keys?: string[] | undefined;
|
|
31
31
|
} | undefined;
|
|
32
32
|
readonly: boolean | null;
|
|
33
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
33
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
34
34
|
centerAffix: boolean;
|
|
35
35
|
glow: boolean;
|
|
36
36
|
hideSpinButtons: boolean;
|
|
@@ -56,7 +56,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
56
56
|
keys?: string[] | undefined;
|
|
57
57
|
};
|
|
58
58
|
readonly: boolean | null;
|
|
59
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
59
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
60
60
|
centerAffix: boolean;
|
|
61
61
|
glow: boolean;
|
|
62
62
|
hideSpinButtons: boolean;
|
|
@@ -138,7 +138,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
138
138
|
keys?: string[] | undefined;
|
|
139
139
|
};
|
|
140
140
|
readonly: boolean | null;
|
|
141
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
141
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
142
142
|
centerAffix: boolean;
|
|
143
143
|
glow: boolean;
|
|
144
144
|
hideSpinButtons: boolean;
|
|
@@ -439,7 +439,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
439
439
|
keys?: string[] | undefined;
|
|
440
440
|
} | undefined;
|
|
441
441
|
readonly: boolean | null;
|
|
442
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
442
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
443
443
|
centerAffix: boolean;
|
|
444
444
|
glow: boolean;
|
|
445
445
|
hideSpinButtons: boolean;
|
|
@@ -507,7 +507,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
507
507
|
keys?: string[] | undefined;
|
|
508
508
|
} | undefined;
|
|
509
509
|
readonly: boolean | null;
|
|
510
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
510
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
511
511
|
centerAffix: boolean;
|
|
512
512
|
glow: boolean;
|
|
513
513
|
hideSpinButtons: boolean;
|
|
@@ -533,7 +533,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
533
533
|
keys?: string[] | undefined;
|
|
534
534
|
};
|
|
535
535
|
readonly: boolean | null;
|
|
536
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
536
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
537
537
|
centerAffix: boolean;
|
|
538
538
|
glow: boolean;
|
|
539
539
|
hideSpinButtons: boolean;
|
|
@@ -835,7 +835,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
835
835
|
};
|
|
836
836
|
multiple: boolean | null;
|
|
837
837
|
readonly: boolean | null;
|
|
838
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
838
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
839
839
|
} & {
|
|
840
840
|
theme?: string | undefined;
|
|
841
841
|
class?: any;
|
|
@@ -902,7 +902,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
902
902
|
} | undefined;
|
|
903
903
|
multiple: boolean | null;
|
|
904
904
|
readonly: boolean | null;
|
|
905
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
905
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
906
906
|
}, true, {}, import('vue').SlotsType<Partial<{
|
|
907
907
|
default: (arg: {
|
|
908
908
|
backgroundColorClasses: import('vue').Ref<string[], string[]>;
|
|
@@ -940,7 +940,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
940
940
|
};
|
|
941
941
|
multiple: boolean | null;
|
|
942
942
|
readonly: boolean | null;
|
|
943
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
943
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
944
944
|
} & {
|
|
945
945
|
theme?: string | undefined;
|
|
946
946
|
class?: any;
|
|
@@ -1007,7 +1007,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1007
1007
|
} | undefined;
|
|
1008
1008
|
multiple: boolean | null;
|
|
1009
1009
|
readonly: boolean | null;
|
|
1010
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
1010
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
1011
1011
|
}> | null;
|
|
1012
1012
|
acceptRadioRef: import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
1013
1013
|
style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
@@ -1023,7 +1023,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1023
1023
|
};
|
|
1024
1024
|
multiple: boolean | null;
|
|
1025
1025
|
readonly: boolean | null;
|
|
1026
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
1026
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
1027
1027
|
} & {
|
|
1028
1028
|
theme?: string | undefined;
|
|
1029
1029
|
class?: any;
|
|
@@ -1090,7 +1090,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1090
1090
|
} | undefined;
|
|
1091
1091
|
multiple: boolean | null;
|
|
1092
1092
|
readonly: boolean | null;
|
|
1093
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
1093
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
1094
1094
|
}, true, {}, import('vue').SlotsType<Partial<{
|
|
1095
1095
|
default: (arg: {
|
|
1096
1096
|
backgroundColorClasses: import('vue').Ref<string[], string[]>;
|
|
@@ -1128,7 +1128,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1128
1128
|
};
|
|
1129
1129
|
multiple: boolean | null;
|
|
1130
1130
|
readonly: boolean | null;
|
|
1131
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
1131
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
1132
1132
|
} & {
|
|
1133
1133
|
theme?: string | undefined;
|
|
1134
1134
|
class?: any;
|
|
@@ -1195,7 +1195,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1195
1195
|
} | undefined;
|
|
1196
1196
|
multiple: boolean | null;
|
|
1197
1197
|
readonly: boolean | null;
|
|
1198
|
-
valueComparator: typeof import('vuetify/lib/util/
|
|
1198
|
+
valueComparator: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual;
|
|
1199
1199
|
}> | null;
|
|
1200
1200
|
}, HTMLDivElement>, any>;
|
|
1201
1201
|
export default _default;
|
|
@@ -296,7 +296,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
296
296
|
width?: string | number | undefined;
|
|
297
297
|
activeStrategy?: import('vuetify/lib/composables/nested/nested.mjs').ActiveStrategyProp | undefined;
|
|
298
298
|
activated?: any;
|
|
299
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
299
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
300
300
|
baseColor?: string | undefined;
|
|
301
301
|
activeColor?: string | undefined;
|
|
302
302
|
activeClass?: string | undefined;
|
|
@@ -419,7 +419,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
419
419
|
width?: string | number | undefined;
|
|
420
420
|
activeStrategy?: import('vuetify/lib/composables/nested/nested.mjs').ActiveStrategyProp | undefined;
|
|
421
421
|
activated?: any;
|
|
422
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
422
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
423
423
|
baseColor?: string | undefined;
|
|
424
424
|
activeColor?: string | undefined;
|
|
425
425
|
activeClass?: string | undefined;
|
|
@@ -610,7 +610,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
610
610
|
width?: string | number | undefined;
|
|
611
611
|
activeStrategy?: import('vuetify/lib/composables/nested/nested.mjs').ActiveStrategyProp | undefined;
|
|
612
612
|
activated?: any;
|
|
613
|
-
valueComparator?: typeof import('vuetify/lib/util/
|
|
613
|
+
valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
|
|
614
614
|
baseColor?: string | undefined;
|
|
615
615
|
activeColor?: string | undefined;
|
|
616
616
|
activeClass?: string | undefined;
|
|
@@ -436,7 +436,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
436
436
|
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
437
437
|
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
438
438
|
centerAffix: boolean;
|
|
439
|
-
glow: boolean;
|
|
439
|
+
glow: boolean; /** @type { [typeof __VLS_components.VTooltip, typeof __VLS_components.VTooltip, ] } */
|
|
440
440
|
hideSpinButtons: boolean;
|
|
441
441
|
persistentHint: boolean;
|
|
442
442
|
messages: string | readonly string[];
|