@dcodegroup-au/dsg-vue 0.1.28 → 0.1.29
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/Elements/DsgBarcodeScanner.vue.d.ts +2 -6
- package/dist/components/Elements/DsgDropdown.vue.d.ts +6 -12
- package/dist/components/Table/DsgTable.vue.d.ts +2 -6
- package/dist/dsg-vue.cjs +12 -12
- package/dist/dsg-vue.css +1 -1
- package/dist/dsg-vue.esm.js +1890 -1834
- package/dist/main.d.ts +5 -15
- package/dist/table.d.ts +2 -6
- package/package.json +10 -10
|
@@ -54,9 +54,7 @@ declare function __VLS_template(): {
|
|
|
54
54
|
readonly "onSecondary-button-clicked"?: (() => any) | undefined;
|
|
55
55
|
readonly "onPrimary-button-clicked"?: (() => any) | undefined;
|
|
56
56
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
57
|
-
$attrs:
|
|
58
|
-
[x: string]: unknown;
|
|
59
|
-
};
|
|
57
|
+
$attrs: import('vue').Attrs;
|
|
60
58
|
$refs: {
|
|
61
59
|
[x: string]: unknown;
|
|
62
60
|
};
|
|
@@ -162,9 +160,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
162
160
|
readonly "onSecondary-button-clicked"?: (() => any) | undefined;
|
|
163
161
|
readonly "onPrimary-button-clicked"?: (() => any) | undefined;
|
|
164
162
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
165
|
-
$attrs:
|
|
166
|
-
[x: string]: unknown;
|
|
167
|
-
};
|
|
163
|
+
$attrs: import('vue').Attrs;
|
|
168
164
|
$refs: {
|
|
169
165
|
[x: string]: unknown;
|
|
170
166
|
};
|
|
@@ -24,6 +24,8 @@ export interface DsgDropdownMenuItem {
|
|
|
24
24
|
hotkeyPreventDefault?: boolean;
|
|
25
25
|
uri?: string;
|
|
26
26
|
uriTarget?: "_blank" | "_self" | "_parent" | "_top" | "framename" | undefined;
|
|
27
|
+
/** Whether the menu item is disabled and should not be displayed */
|
|
28
|
+
disabled?: boolean;
|
|
27
29
|
}
|
|
28
30
|
export interface DsgDropdownProps {
|
|
29
31
|
label?: string;
|
|
@@ -585,9 +587,7 @@ declare function __VLS_template(): {
|
|
|
585
587
|
readonly "onBefore-change-status"?: ((oldStatus: boolean, newStatus: boolean) => any) | undefined;
|
|
586
588
|
readonly "onAfter-change-status"?: ((status: boolean) => any) | undefined;
|
|
587
589
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
588
|
-
$attrs:
|
|
589
|
-
[x: string]: unknown;
|
|
590
|
-
};
|
|
590
|
+
$attrs: import('vue').Attrs;
|
|
591
591
|
$refs: {
|
|
592
592
|
[x: string]: unknown;
|
|
593
593
|
} & {
|
|
@@ -666,9 +666,7 @@ declare function __VLS_template(): {
|
|
|
666
666
|
readonly preventDefault?: boolean | undefined;
|
|
667
667
|
readonly "onButton-clicked"?: ((clickEvent: Event) => any) | undefined;
|
|
668
668
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
669
|
-
$attrs:
|
|
670
|
-
[x: string]: unknown;
|
|
671
|
-
};
|
|
669
|
+
$attrs: import('vue').Attrs;
|
|
672
670
|
$refs: {
|
|
673
671
|
[x: string]: unknown;
|
|
674
672
|
} & {
|
|
@@ -1259,9 +1257,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgDropdownProps, {
|
|
|
1259
1257
|
readonly "onBefore-change-status"?: ((oldStatus: boolean, newStatus: boolean) => any) | undefined;
|
|
1260
1258
|
readonly "onAfter-change-status"?: ((status: boolean) => any) | undefined;
|
|
1261
1259
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1262
|
-
$attrs:
|
|
1263
|
-
[x: string]: unknown;
|
|
1264
|
-
};
|
|
1260
|
+
$attrs: import('vue').Attrs;
|
|
1265
1261
|
$refs: {
|
|
1266
1262
|
[x: string]: unknown;
|
|
1267
1263
|
} & {
|
|
@@ -1340,9 +1336,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgDropdownProps, {
|
|
|
1340
1336
|
readonly preventDefault?: boolean | undefined;
|
|
1341
1337
|
readonly "onButton-clicked"?: ((clickEvent: Event) => any) | undefined;
|
|
1342
1338
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1343
|
-
$attrs:
|
|
1344
|
-
[x: string]: unknown;
|
|
1345
|
-
};
|
|
1339
|
+
$attrs: import('vue').Attrs;
|
|
1346
1340
|
$refs: {
|
|
1347
1341
|
[x: string]: unknown;
|
|
1348
1342
|
} & {
|
|
@@ -181,9 +181,7 @@ declare function __VLS_template(): {
|
|
|
181
181
|
readonly "onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
182
182
|
readonly "onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
183
183
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
184
|
-
$attrs:
|
|
185
|
-
[x: string]: unknown;
|
|
186
|
-
};
|
|
184
|
+
$attrs: import('vue').Attrs;
|
|
187
185
|
$refs: {
|
|
188
186
|
[x: string]: unknown;
|
|
189
187
|
} & {
|
|
@@ -446,9 +444,7 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
|
|
|
446
444
|
readonly "onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
447
445
|
readonly "onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
448
446
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
449
|
-
$attrs:
|
|
450
|
-
[x: string]: unknown;
|
|
451
|
-
};
|
|
447
|
+
$attrs: import('vue').Attrs;
|
|
452
448
|
$refs: {
|
|
453
449
|
[x: string]: unknown;
|
|
454
450
|
} & {
|