@dcodegroup-au/dsg-vue 0.1.20 → 0.1.22
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/{DsgLabel.vue_vue_type_style_index_0_lang-BXePb1IV.js → DsgLabel.vue_vue_type_style_index_0_lang-BYL1w85l.js} +2 -2
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-BIxdsbw_.js → DsgTablePerPage.vue_vue_type_style_index_0_lang-COiqcr11.js} +6473 -6432
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-DU5GAN6E.cjs → DsgTablePerPage.vue_vue_type_style_index_0_lang-VdqoCHmU.cjs} +1197 -1197
- package/dist/components/Elements/DsgBarcodeScanner.vue.d.ts +8 -6
- package/dist/components/Elements/DsgInputSelect.vue.d.ts +64 -1
- package/dist/components/Table/DsgTable.vue.d.ts +8 -0
- package/dist/components/Table/DsgTableComponent.vue.d.ts +2 -0
- package/dist/dsg-vue.cjs +10 -10
- package/dist/dsg-vue.css +1 -1
- package/dist/dsg-vue.editor.esm.js +10 -10
- package/dist/dsg-vue.esm.js +956 -944
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +592 -552
- package/dist/main.d.ts +238 -92
- package/dist/table.d.ts +4 -0
- package/package.json +15 -15
package/dist/main.d.ts
CHANGED
|
@@ -1185,10 +1185,104 @@ export declare const DsgInput: {
|
|
|
1185
1185
|
'dsg-input--tooltip-content'?(_: {}): any;
|
|
1186
1186
|
};
|
|
1187
1187
|
});
|
|
1188
|
-
export declare const DsgInputSelect:
|
|
1188
|
+
export declare const DsgInputSelect: {
|
|
1189
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1190
|
+
modelValue?: any;
|
|
1191
|
+
single?: any;
|
|
1192
|
+
} & import('./main').DsgInputSelectProps> & Readonly<{
|
|
1193
|
+
onSelect?: ((value: any, id: string | number) => any) | undefined;
|
|
1194
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1195
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
1196
|
+
"onSearch-change"?: ((queryTerm: string) => any) | undefined;
|
|
1197
|
+
onTag?: ((label: any, id: string | number) => any) | undefined;
|
|
1198
|
+
onOpen?: ((id: string | number) => any) | undefined;
|
|
1199
|
+
onClose?: ((value: any, id: string | number) => any) | undefined;
|
|
1200
|
+
onRemove?: ((value: any, id: string | number) => any) | undefined;
|
|
1201
|
+
"onUpdate:single"?: ((value: any) => any) | undefined;
|
|
1202
|
+
}>, {
|
|
1203
|
+
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
1204
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1205
|
+
"update:modelValue": (value: any) => any;
|
|
1206
|
+
"update:single": (value: any) => any;
|
|
1207
|
+
} & {
|
|
1208
|
+
select: (value: any, id: string | number) => any;
|
|
1209
|
+
"update:modelValue": (value: any) => any;
|
|
1210
|
+
"update:model-value": (value: any) => any;
|
|
1211
|
+
"search-change": (queryTerm: string) => any;
|
|
1212
|
+
tag: (label: any, id: string | number) => any;
|
|
1213
|
+
open: (id: string | number) => any;
|
|
1214
|
+
close: (value: any, id: string | number) => any;
|
|
1215
|
+
remove: (value: any, id: string | number) => any;
|
|
1216
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1217
|
+
dsgInputSelectEl: HTMLDivElement;
|
|
1218
|
+
multiselectEl: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue-multiselect').ComponentProps>, {}, {}, {}, {
|
|
1219
|
+
activate(): void;
|
|
1220
|
+
deactivate(): void;
|
|
1221
|
+
}, import('vue').DefineComponent<import('vue-multiselect').MultiselectMixinProps> | import('vue').DefineComponent<import('vue-multiselect').PointerMixinProps>, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1222
|
+
P: Readonly<import('vue-multiselect').MultiselectMixinProps>;
|
|
1223
|
+
B: {};
|
|
1224
|
+
D: {};
|
|
1225
|
+
C: import('vue').ComputedOptions;
|
|
1226
|
+
M: import('vue').MethodOptions;
|
|
1227
|
+
Defaults: {};
|
|
1228
|
+
} & {
|
|
1229
|
+
P: {};
|
|
1230
|
+
B: {};
|
|
1231
|
+
D: {};
|
|
1232
|
+
C: {};
|
|
1233
|
+
M: {};
|
|
1234
|
+
Defaults: {};
|
|
1235
|
+
} & {
|
|
1236
|
+
P: Readonly<import('vue-multiselect').PointerMixinProps>;
|
|
1237
|
+
B: {};
|
|
1238
|
+
D: {};
|
|
1239
|
+
C: import('vue').ComputedOptions;
|
|
1240
|
+
M: import('vue').MethodOptions;
|
|
1241
|
+
Defaults: {};
|
|
1242
|
+
}, Readonly<import('vue-multiselect').MultiselectMixinProps> & Readonly<import('vue-multiselect').PointerMixinProps> & Readonly<import('vue-multiselect').ComponentProps>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions & {
|
|
1243
|
+
activate(): void;
|
|
1244
|
+
deactivate(): void;
|
|
1245
|
+
}, {} & {} & {}> | null;
|
|
1246
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1247
|
+
P: {};
|
|
1248
|
+
B: {};
|
|
1249
|
+
D: {};
|
|
1250
|
+
C: {};
|
|
1251
|
+
M: {};
|
|
1252
|
+
Defaults: {};
|
|
1253
|
+
}, Readonly<{
|
|
1254
|
+
modelValue?: any;
|
|
1255
|
+
single?: any;
|
|
1256
|
+
} & import('./main').DsgInputSelectProps> & Readonly<{
|
|
1257
|
+
onSelect?: ((value: any, id: string | number) => any) | undefined;
|
|
1258
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1259
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
1260
|
+
"onSearch-change"?: ((queryTerm: string) => any) | undefined;
|
|
1261
|
+
onTag?: ((label: any, id: string | number) => any) | undefined;
|
|
1262
|
+
onOpen?: ((id: string | number) => any) | undefined;
|
|
1263
|
+
onClose?: ((value: any, id: string | number) => any) | undefined;
|
|
1264
|
+
onRemove?: ((value: any, id: string | number) => any) | undefined;
|
|
1265
|
+
"onUpdate:single"?: ((value: any) => any) | undefined;
|
|
1266
|
+
}>, {
|
|
1267
|
+
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
1268
|
+
}, {}, {}, {}, {}>;
|
|
1269
|
+
__isFragment?: never;
|
|
1270
|
+
__isTeleport?: never;
|
|
1271
|
+
__isSuspense?: never;
|
|
1272
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
1189
1273
|
modelValue?: any;
|
|
1190
1274
|
single?: any;
|
|
1191
|
-
} & import('./main').DsgInputSelectProps
|
|
1275
|
+
} & import('./main').DsgInputSelectProps> & Readonly<{
|
|
1276
|
+
onSelect?: ((value: any, id: string | number) => any) | undefined;
|
|
1277
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1278
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
1279
|
+
"onSearch-change"?: ((queryTerm: string) => any) | undefined;
|
|
1280
|
+
onTag?: ((label: any, id: string | number) => any) | undefined;
|
|
1281
|
+
onOpen?: ((id: string | number) => any) | undefined;
|
|
1282
|
+
onClose?: ((value: any, id: string | number) => any) | undefined;
|
|
1283
|
+
onRemove?: ((value: any, id: string | number) => any) | undefined;
|
|
1284
|
+
"onUpdate:single"?: ((value: any) => any) | undefined;
|
|
1285
|
+
}>, {
|
|
1192
1286
|
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
1193
1287
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1194
1288
|
"update:modelValue": (value: any) => any;
|
|
@@ -1202,50 +1296,29 @@ export declare const DsgInputSelect: import('vue').DefineComponent<{
|
|
|
1202
1296
|
open: (id: string | number) => any;
|
|
1203
1297
|
close: (value: any, id: string | number) => any;
|
|
1204
1298
|
remove: (value: any, id: string | number) => any;
|
|
1205
|
-
}, string, import('vue').
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
M: import('vue').MethodOptions;
|
|
1229
|
-
Defaults: {};
|
|
1230
|
-
} & {
|
|
1231
|
-
P: {};
|
|
1232
|
-
B: {};
|
|
1233
|
-
D: {};
|
|
1234
|
-
C: {};
|
|
1235
|
-
M: {};
|
|
1236
|
-
Defaults: {};
|
|
1237
|
-
} & {
|
|
1238
|
-
P: Readonly<import('vue-multiselect').PointerMixinProps>;
|
|
1239
|
-
B: {};
|
|
1240
|
-
D: {};
|
|
1241
|
-
C: import('vue').ComputedOptions;
|
|
1242
|
-
M: import('vue').MethodOptions;
|
|
1243
|
-
Defaults: {};
|
|
1244
|
-
}, Readonly<import('vue-multiselect').MultiselectMixinProps> & Readonly<import('vue-multiselect').PointerMixinProps> & Readonly<import('vue-multiselect').ComponentProps>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions & {
|
|
1245
|
-
activate(): void;
|
|
1246
|
-
deactivate(): void;
|
|
1247
|
-
}, {} & {} & {}> | null;
|
|
1248
|
-
}, HTMLDivElement>;
|
|
1299
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1300
|
+
$slots: Readonly<{
|
|
1301
|
+
singleLabel: {
|
|
1302
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
1303
|
+
};
|
|
1304
|
+
option: {
|
|
1305
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
1306
|
+
};
|
|
1307
|
+
caret: {
|
|
1308
|
+
toggle: () => void;
|
|
1309
|
+
};
|
|
1310
|
+
}> & {
|
|
1311
|
+
singleLabel: {
|
|
1312
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
1313
|
+
};
|
|
1314
|
+
option: {
|
|
1315
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
1316
|
+
};
|
|
1317
|
+
caret: {
|
|
1318
|
+
toggle: () => void;
|
|
1319
|
+
};
|
|
1320
|
+
};
|
|
1321
|
+
});
|
|
1249
1322
|
export declare const DsgInputDropdown: import('vue').DefineComponent<{
|
|
1250
1323
|
modelValue?: string;
|
|
1251
1324
|
} & import('./main').DsgInputDropdownProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -3486,10 +3559,104 @@ declare const _default: {
|
|
|
3486
3559
|
'dsg-input--tooltip-content'?(_: {}): any;
|
|
3487
3560
|
};
|
|
3488
3561
|
});
|
|
3489
|
-
DsgInputSelect:
|
|
3562
|
+
DsgInputSelect: {
|
|
3563
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3564
|
+
modelValue?: any;
|
|
3565
|
+
single?: any;
|
|
3566
|
+
} & import('./main').DsgInputSelectProps> & Readonly<{
|
|
3567
|
+
onSelect?: ((value: any, id: string | number) => any) | undefined;
|
|
3568
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
3569
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
3570
|
+
"onSearch-change"?: ((queryTerm: string) => any) | undefined;
|
|
3571
|
+
onTag?: ((label: any, id: string | number) => any) | undefined;
|
|
3572
|
+
onOpen?: ((id: string | number) => any) | undefined;
|
|
3573
|
+
onClose?: ((value: any, id: string | number) => any) | undefined;
|
|
3574
|
+
onRemove?: ((value: any, id: string | number) => any) | undefined;
|
|
3575
|
+
"onUpdate:single"?: ((value: any) => any) | undefined;
|
|
3576
|
+
}>, {
|
|
3577
|
+
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
3578
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3579
|
+
"update:modelValue": (value: any) => any;
|
|
3580
|
+
"update:single": (value: any) => any;
|
|
3581
|
+
} & {
|
|
3582
|
+
select: (value: any, id: string | number) => any;
|
|
3583
|
+
"update:modelValue": (value: any) => any;
|
|
3584
|
+
"update:model-value": (value: any) => any;
|
|
3585
|
+
"search-change": (queryTerm: string) => any;
|
|
3586
|
+
tag: (label: any, id: string | number) => any;
|
|
3587
|
+
open: (id: string | number) => any;
|
|
3588
|
+
close: (value: any, id: string | number) => any;
|
|
3589
|
+
remove: (value: any, id: string | number) => any;
|
|
3590
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
3591
|
+
dsgInputSelectEl: HTMLDivElement;
|
|
3592
|
+
multiselectEl: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue-multiselect').ComponentProps>, {}, {}, {}, {
|
|
3593
|
+
activate(): void;
|
|
3594
|
+
deactivate(): void;
|
|
3595
|
+
}, import('vue').DefineComponent<import('vue-multiselect').MultiselectMixinProps> | import('vue').DefineComponent<import('vue-multiselect').PointerMixinProps>, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
3596
|
+
P: Readonly<import('vue-multiselect').MultiselectMixinProps>;
|
|
3597
|
+
B: {};
|
|
3598
|
+
D: {};
|
|
3599
|
+
C: import('vue').ComputedOptions;
|
|
3600
|
+
M: import('vue').MethodOptions;
|
|
3601
|
+
Defaults: {};
|
|
3602
|
+
} & {
|
|
3603
|
+
P: {};
|
|
3604
|
+
B: {};
|
|
3605
|
+
D: {};
|
|
3606
|
+
C: {};
|
|
3607
|
+
M: {};
|
|
3608
|
+
Defaults: {};
|
|
3609
|
+
} & {
|
|
3610
|
+
P: Readonly<import('vue-multiselect').PointerMixinProps>;
|
|
3611
|
+
B: {};
|
|
3612
|
+
D: {};
|
|
3613
|
+
C: import('vue').ComputedOptions;
|
|
3614
|
+
M: import('vue').MethodOptions;
|
|
3615
|
+
Defaults: {};
|
|
3616
|
+
}, Readonly<import('vue-multiselect').MultiselectMixinProps> & Readonly<import('vue-multiselect').PointerMixinProps> & Readonly<import('vue-multiselect').ComponentProps>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions & {
|
|
3617
|
+
activate(): void;
|
|
3618
|
+
deactivate(): void;
|
|
3619
|
+
}, {} & {} & {}> | null;
|
|
3620
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
3621
|
+
P: {};
|
|
3622
|
+
B: {};
|
|
3623
|
+
D: {};
|
|
3624
|
+
C: {};
|
|
3625
|
+
M: {};
|
|
3626
|
+
Defaults: {};
|
|
3627
|
+
}, Readonly<{
|
|
3628
|
+
modelValue?: any;
|
|
3629
|
+
single?: any;
|
|
3630
|
+
} & import('./main').DsgInputSelectProps> & Readonly<{
|
|
3631
|
+
onSelect?: ((value: any, id: string | number) => any) | undefined;
|
|
3632
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
3633
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
3634
|
+
"onSearch-change"?: ((queryTerm: string) => any) | undefined;
|
|
3635
|
+
onTag?: ((label: any, id: string | number) => any) | undefined;
|
|
3636
|
+
onOpen?: ((id: string | number) => any) | undefined;
|
|
3637
|
+
onClose?: ((value: any, id: string | number) => any) | undefined;
|
|
3638
|
+
onRemove?: ((value: any, id: string | number) => any) | undefined;
|
|
3639
|
+
"onUpdate:single"?: ((value: any) => any) | undefined;
|
|
3640
|
+
}>, {
|
|
3641
|
+
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
3642
|
+
}, {}, {}, {}, {}>;
|
|
3643
|
+
__isFragment?: never;
|
|
3644
|
+
__isTeleport?: never;
|
|
3645
|
+
__isSuspense?: never;
|
|
3646
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
3490
3647
|
modelValue?: any;
|
|
3491
3648
|
single?: any;
|
|
3492
|
-
} & import('./main').DsgInputSelectProps
|
|
3649
|
+
} & import('./main').DsgInputSelectProps> & Readonly<{
|
|
3650
|
+
onSelect?: ((value: any, id: string | number) => any) | undefined;
|
|
3651
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
3652
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
3653
|
+
"onSearch-change"?: ((queryTerm: string) => any) | undefined;
|
|
3654
|
+
onTag?: ((label: any, id: string | number) => any) | undefined;
|
|
3655
|
+
onOpen?: ((id: string | number) => any) | undefined;
|
|
3656
|
+
onClose?: ((value: any, id: string | number) => any) | undefined;
|
|
3657
|
+
onRemove?: ((value: any, id: string | number) => any) | undefined;
|
|
3658
|
+
"onUpdate:single"?: ((value: any) => any) | undefined;
|
|
3659
|
+
}>, {
|
|
3493
3660
|
getInstance: () => typeof import('vue-multiselect').Multiselect | undefined | null;
|
|
3494
3661
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3495
3662
|
"update:modelValue": (value: any) => any;
|
|
@@ -3503,50 +3670,29 @@ declare const _default: {
|
|
|
3503
3670
|
open: (id: string | number) => any;
|
|
3504
3671
|
close: (value: any, id: string | number) => any;
|
|
3505
3672
|
remove: (value: any, id: string | number) => any;
|
|
3506
|
-
}, string, import('vue').
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
M: import('vue').MethodOptions;
|
|
3530
|
-
Defaults: {};
|
|
3531
|
-
} & {
|
|
3532
|
-
P: {};
|
|
3533
|
-
B: {};
|
|
3534
|
-
D: {};
|
|
3535
|
-
C: {};
|
|
3536
|
-
M: {};
|
|
3537
|
-
Defaults: {};
|
|
3538
|
-
} & {
|
|
3539
|
-
P: Readonly<import('vue-multiselect').PointerMixinProps>;
|
|
3540
|
-
B: {};
|
|
3541
|
-
D: {};
|
|
3542
|
-
C: import('vue').ComputedOptions;
|
|
3543
|
-
M: import('vue').MethodOptions;
|
|
3544
|
-
Defaults: {};
|
|
3545
|
-
}, Readonly<import('vue-multiselect').MultiselectMixinProps> & Readonly<import('vue-multiselect').PointerMixinProps> & Readonly<import('vue-multiselect').ComponentProps>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions & {
|
|
3546
|
-
activate(): void;
|
|
3547
|
-
deactivate(): void;
|
|
3548
|
-
}, {} & {} & {}> | null;
|
|
3549
|
-
}, HTMLDivElement>;
|
|
3673
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
3674
|
+
$slots: Readonly<{
|
|
3675
|
+
singleLabel: {
|
|
3676
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
3677
|
+
};
|
|
3678
|
+
option: {
|
|
3679
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
3680
|
+
};
|
|
3681
|
+
caret: {
|
|
3682
|
+
toggle: () => void;
|
|
3683
|
+
};
|
|
3684
|
+
}> & {
|
|
3685
|
+
singleLabel: {
|
|
3686
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
3687
|
+
};
|
|
3688
|
+
option: {
|
|
3689
|
+
option?: import('./main').DsgInputSelectOption | null;
|
|
3690
|
+
};
|
|
3691
|
+
caret: {
|
|
3692
|
+
toggle: () => void;
|
|
3693
|
+
};
|
|
3694
|
+
};
|
|
3695
|
+
});
|
|
3550
3696
|
DsgInputDropdown: import('vue').DefineComponent<{
|
|
3551
3697
|
modelValue?: string;
|
|
3552
3698
|
} & import('./main').DsgInputDropdownProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
package/dist/table.d.ts
CHANGED
|
@@ -98,6 +98,8 @@ export declare const DsgTable: {
|
|
|
98
98
|
readonly fieldPrefix?: string | undefined;
|
|
99
99
|
readonly eventPrefix?: string | undefined;
|
|
100
100
|
readonly selectable?: boolean | undefined;
|
|
101
|
+
readonly replaceState?: boolean | undefined;
|
|
102
|
+
readonly replaceStrategy?: "window" | "inertia" | undefined;
|
|
101
103
|
readonly "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
|
|
102
104
|
readonly "onDsg-table:loaded"?: (() => any) | undefined;
|
|
103
105
|
readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
|
|
@@ -1632,6 +1634,8 @@ declare const _default: {
|
|
|
1632
1634
|
readonly fieldPrefix?: string | undefined;
|
|
1633
1635
|
readonly eventPrefix?: string | undefined;
|
|
1634
1636
|
readonly selectable?: boolean | undefined;
|
|
1637
|
+
readonly replaceState?: boolean | undefined;
|
|
1638
|
+
readonly replaceStrategy?: "window" | "inertia" | undefined;
|
|
1635
1639
|
readonly "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
|
|
1636
1640
|
readonly "onDsg-table:loaded"?: (() => any) | undefined;
|
|
1637
1641
|
readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcodegroup-au/dsg-vue",
|
|
3
3
|
"description": "Front-end Vue/Tailwind DSG for UntitledUI.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.22",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"preinstall": "npx only-allow pnpm",
|
|
@@ -103,10 +103,10 @@
|
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@eslint/eslintrc": "^3.3.3",
|
|
106
|
-
"@eslint/js": "^9.39.
|
|
106
|
+
"@eslint/js": "^9.39.2",
|
|
107
107
|
"@testing-library/vue": "^8.1.0",
|
|
108
108
|
"@types/eslint": "^9.6.1",
|
|
109
|
-
"@types/node": "^22.19.
|
|
109
|
+
"@types/node": "^22.19.7",
|
|
110
110
|
"@types/uuid": "^10.0.0",
|
|
111
111
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
112
112
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
@@ -115,14 +115,14 @@
|
|
|
115
115
|
"@vueuse/components": "^13.9.0",
|
|
116
116
|
"@vueuse/core": "^13.9.0",
|
|
117
117
|
"@vueuse/integrations": "^13.9.0",
|
|
118
|
-
"axios": "^1.13.
|
|
119
|
-
"card-validator": "^10.0.
|
|
118
|
+
"axios": "^1.13.4",
|
|
119
|
+
"card-validator": "^10.0.4",
|
|
120
120
|
"date-fns": "^4.1.0",
|
|
121
|
-
"eslint": "^9.39.
|
|
121
|
+
"eslint": "^9.39.2",
|
|
122
122
|
"eslint-config-prettier": "^10.1.8",
|
|
123
|
-
"eslint-plugin-prettier": "^5.5.
|
|
123
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
124
124
|
"eslint-plugin-storybook": "^0.12.0",
|
|
125
|
-
"eslint-plugin-vue": "^10.
|
|
125
|
+
"eslint-plugin-vue": "^10.7.0",
|
|
126
126
|
"floating-vue": "^5.2.2",
|
|
127
127
|
"globals": "^16.5.0",
|
|
128
128
|
"hotkeys-js": "^3.13.15",
|
|
@@ -130,15 +130,15 @@
|
|
|
130
130
|
"jiti": "^2.6.1",
|
|
131
131
|
"jsdom": "^26.1.0",
|
|
132
132
|
"only-allow": "^1.2.2",
|
|
133
|
-
"phone": "^3.1.
|
|
134
|
-
"prettier": "^3.
|
|
135
|
-
"sass": "^1.
|
|
133
|
+
"phone": "^3.1.70",
|
|
134
|
+
"prettier": "^3.8.1",
|
|
135
|
+
"sass": "^1.97.3",
|
|
136
136
|
"semantic-release": "^24.2.9",
|
|
137
|
-
"storybook": "^8.6.
|
|
137
|
+
"storybook": "^8.6.15",
|
|
138
138
|
"tailwindcss": "^3.4.19",
|
|
139
139
|
"typescript": "^5.9.3",
|
|
140
|
-
"typescript-eslint": "^8.
|
|
141
|
-
"ua-parser-js": "^2.0.
|
|
140
|
+
"typescript-eslint": "^8.54.0",
|
|
141
|
+
"ua-parser-js": "^2.0.8",
|
|
142
142
|
"uuid": "^11.1.0",
|
|
143
143
|
"vditor": "^3.11.2",
|
|
144
144
|
"vite": "^6.4.1",
|
|
@@ -158,4 +158,4 @@
|
|
|
158
158
|
"plugin:storybook/recommended"
|
|
159
159
|
]
|
|
160
160
|
}
|
|
161
|
-
}
|
|
161
|
+
}
|