@dcodegroup-au/dsg-vue 0.1.2 → 0.1.4
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/{DsgTablePerPage.vue_vue_type_style_index_0_lang-0tHi6h4J.cjs → DsgTablePerPage.vue_vue_type_style_index_0_lang-DEG12JOR.cjs} +146 -146
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-Ui9JRdZP.js → DsgTablePerPage.vue_vue_type_style_index_0_lang-Dj3jH6bn.js} +41 -5
- package/dist/components/Elements/DsgDatepicker.vue.d.ts +1 -0
- package/dist/components/Elements/DsgDropdown.vue.d.ts +2 -0
- package/dist/components/Elements/DsgInput.vue.d.ts +43 -3
- package/dist/components/Table/DsgTable.vue.d.ts +51 -7
- package/dist/components/Table/DsgTableComponent.vue.d.ts +6 -0
- package/dist/dsg-vue.cjs +10 -10
- package/dist/dsg-vue.esm.js +727 -714
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +364 -359
- package/dist/main.d.ts +214 -14
- package/dist/table.d.ts +150 -24
- package/package.json +10 -10
package/dist/main.d.ts
CHANGED
|
@@ -955,16 +955,56 @@ export declare const DsgInput: {
|
|
|
955
955
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
956
956
|
modelValue?: any;
|
|
957
957
|
} & import('./main').DsgInputProps> & Readonly<{
|
|
958
|
-
|
|
958
|
+
"onUpdate:modelValue"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
959
|
+
"onUpdate:model-value"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
960
|
+
"onOn-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
961
|
+
"onOn-suffix-icon-clicked"?: ((value: string) => any) | undefined;
|
|
962
|
+
"onOn-before-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
963
|
+
"onOn-before-off-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
964
|
+
"onOff-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
965
|
+
"onOn-before-copy"?: ((value: string) => any) | undefined;
|
|
966
|
+
"onOn-copy"?: ((value: string) => any) | undefined;
|
|
967
|
+
"onOn-before-clear"?: ((value: string) => any) | undefined;
|
|
968
|
+
"onOn-clear"?: ((oldValue: string) => any) | undefined;
|
|
969
|
+
"onOn-before-format"?: ((oldValue: string, newValue: string) => any) | undefined;
|
|
970
|
+
"onOn-format"?: ((value: string) => any) | undefined;
|
|
971
|
+
"onOn-before-validate"?: ((value: string) => any) | undefined;
|
|
972
|
+
"onOn-validate"?: ((inputErrors: string[]) => any) | undefined;
|
|
973
|
+
"onOn-card-detected"?: ((detectedType: string | false) => any) | undefined;
|
|
974
|
+
"onEnter-pressed"?: ((value: string) => any) | undefined;
|
|
975
|
+
"onOn-keydown"?: ((char: string, value: string) => any) | undefined;
|
|
976
|
+
"onOn-keyup"?: ((char: string, value: string) => any) | undefined;
|
|
977
|
+
"onOn-keypress"?: ((char: string, value: string) => any) | undefined;
|
|
978
|
+
"onIcon-clicked"?: ((value: string) => any) | undefined;
|
|
959
979
|
}>, {
|
|
960
980
|
focus: (isFocused?: boolean) => void;
|
|
961
981
|
validate: () => void;
|
|
962
982
|
callbackValidation: (callback: Function) => void;
|
|
963
983
|
setErrors: (errors: string[]) => void;
|
|
964
984
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
965
|
-
|
|
985
|
+
"update:modelValue": (value: any) => any;
|
|
966
986
|
} & {
|
|
967
|
-
|
|
987
|
+
"update:modelValue": (newValue: string, oldValue: string) => any;
|
|
988
|
+
"update:model-value": (newValue: string, oldValue: string) => any;
|
|
989
|
+
"on-focus": (el: HTMLElement) => any;
|
|
990
|
+
"on-suffix-icon-clicked": (value: string) => any;
|
|
991
|
+
"on-before-focus": (el: HTMLElement) => any;
|
|
992
|
+
"on-before-off-focus": (el: HTMLElement) => any;
|
|
993
|
+
"off-focus": (el: HTMLElement) => any;
|
|
994
|
+
"on-before-copy": (value: string) => any;
|
|
995
|
+
"on-copy": (value: string) => any;
|
|
996
|
+
"on-before-clear": (value: string) => any;
|
|
997
|
+
"on-clear": (oldValue: string) => any;
|
|
998
|
+
"on-before-format": (oldValue: string, newValue: string) => any;
|
|
999
|
+
"on-format": (value: string) => any;
|
|
1000
|
+
"on-before-validate": (value: string) => any;
|
|
1001
|
+
"on-validate": (inputErrors: string[]) => any;
|
|
1002
|
+
"on-card-detected": (detectedType: string | false) => any;
|
|
1003
|
+
"enter-pressed": (value: string) => any;
|
|
1004
|
+
"on-keydown": (char: string, value: string) => any;
|
|
1005
|
+
"on-keyup": (char: string, value: string) => any;
|
|
1006
|
+
"on-keypress": (char: string, value: string) => any;
|
|
1007
|
+
"icon-clicked": (value: string) => any;
|
|
968
1008
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
969
1009
|
themeInputWrapper: HTMLDivElement;
|
|
970
1010
|
creditCardIcon: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./main').DsgCreditCardIconProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -988,7 +1028,27 @@ export declare const DsgInput: {
|
|
|
988
1028
|
}, Readonly<{
|
|
989
1029
|
modelValue?: any;
|
|
990
1030
|
} & import('./main').DsgInputProps> & Readonly<{
|
|
991
|
-
|
|
1031
|
+
"onUpdate:modelValue"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
1032
|
+
"onUpdate:model-value"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
1033
|
+
"onOn-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1034
|
+
"onOn-suffix-icon-clicked"?: ((value: string) => any) | undefined;
|
|
1035
|
+
"onOn-before-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1036
|
+
"onOn-before-off-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1037
|
+
"onOff-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1038
|
+
"onOn-before-copy"?: ((value: string) => any) | undefined;
|
|
1039
|
+
"onOn-copy"?: ((value: string) => any) | undefined;
|
|
1040
|
+
"onOn-before-clear"?: ((value: string) => any) | undefined;
|
|
1041
|
+
"onOn-clear"?: ((oldValue: string) => any) | undefined;
|
|
1042
|
+
"onOn-before-format"?: ((oldValue: string, newValue: string) => any) | undefined;
|
|
1043
|
+
"onOn-format"?: ((value: string) => any) | undefined;
|
|
1044
|
+
"onOn-before-validate"?: ((value: string) => any) | undefined;
|
|
1045
|
+
"onOn-validate"?: ((inputErrors: string[]) => any) | undefined;
|
|
1046
|
+
"onOn-card-detected"?: ((detectedType: string | false) => any) | undefined;
|
|
1047
|
+
"onEnter-pressed"?: ((value: string) => any) | undefined;
|
|
1048
|
+
"onOn-keydown"?: ((char: string, value: string) => any) | undefined;
|
|
1049
|
+
"onOn-keyup"?: ((char: string, value: string) => any) | undefined;
|
|
1050
|
+
"onOn-keypress"?: ((char: string, value: string) => any) | undefined;
|
|
1051
|
+
"onIcon-clicked"?: ((value: string) => any) | undefined;
|
|
992
1052
|
}>, {
|
|
993
1053
|
focus: (isFocused?: boolean) => void;
|
|
994
1054
|
validate: () => void;
|
|
@@ -1001,16 +1061,56 @@ export declare const DsgInput: {
|
|
|
1001
1061
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
1002
1062
|
modelValue?: any;
|
|
1003
1063
|
} & import('./main').DsgInputProps> & Readonly<{
|
|
1004
|
-
|
|
1064
|
+
"onUpdate:modelValue"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
1065
|
+
"onUpdate:model-value"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
1066
|
+
"onOn-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1067
|
+
"onOn-suffix-icon-clicked"?: ((value: string) => any) | undefined;
|
|
1068
|
+
"onOn-before-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1069
|
+
"onOn-before-off-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1070
|
+
"onOff-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
1071
|
+
"onOn-before-copy"?: ((value: string) => any) | undefined;
|
|
1072
|
+
"onOn-copy"?: ((value: string) => any) | undefined;
|
|
1073
|
+
"onOn-before-clear"?: ((value: string) => any) | undefined;
|
|
1074
|
+
"onOn-clear"?: ((oldValue: string) => any) | undefined;
|
|
1075
|
+
"onOn-before-format"?: ((oldValue: string, newValue: string) => any) | undefined;
|
|
1076
|
+
"onOn-format"?: ((value: string) => any) | undefined;
|
|
1077
|
+
"onOn-before-validate"?: ((value: string) => any) | undefined;
|
|
1078
|
+
"onOn-validate"?: ((inputErrors: string[]) => any) | undefined;
|
|
1079
|
+
"onOn-card-detected"?: ((detectedType: string | false) => any) | undefined;
|
|
1080
|
+
"onEnter-pressed"?: ((value: string) => any) | undefined;
|
|
1081
|
+
"onOn-keydown"?: ((char: string, value: string) => any) | undefined;
|
|
1082
|
+
"onOn-keyup"?: ((char: string, value: string) => any) | undefined;
|
|
1083
|
+
"onOn-keypress"?: ((char: string, value: string) => any) | undefined;
|
|
1084
|
+
"onIcon-clicked"?: ((value: string) => any) | undefined;
|
|
1005
1085
|
}>, {
|
|
1006
1086
|
focus: (isFocused?: boolean) => void;
|
|
1007
1087
|
validate: () => void;
|
|
1008
1088
|
callbackValidation: (callback: Function) => void;
|
|
1009
1089
|
setErrors: (errors: string[]) => void;
|
|
1010
1090
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1011
|
-
|
|
1091
|
+
"update:modelValue": (value: any) => any;
|
|
1012
1092
|
} & {
|
|
1013
|
-
|
|
1093
|
+
"update:modelValue": (newValue: string, oldValue: string) => any;
|
|
1094
|
+
"update:model-value": (newValue: string, oldValue: string) => any;
|
|
1095
|
+
"on-focus": (el: HTMLElement) => any;
|
|
1096
|
+
"on-suffix-icon-clicked": (value: string) => any;
|
|
1097
|
+
"on-before-focus": (el: HTMLElement) => any;
|
|
1098
|
+
"on-before-off-focus": (el: HTMLElement) => any;
|
|
1099
|
+
"off-focus": (el: HTMLElement) => any;
|
|
1100
|
+
"on-before-copy": (value: string) => any;
|
|
1101
|
+
"on-copy": (value: string) => any;
|
|
1102
|
+
"on-before-clear": (value: string) => any;
|
|
1103
|
+
"on-clear": (oldValue: string) => any;
|
|
1104
|
+
"on-before-format": (oldValue: string, newValue: string) => any;
|
|
1105
|
+
"on-format": (value: string) => any;
|
|
1106
|
+
"on-before-validate": (value: string) => any;
|
|
1107
|
+
"on-validate": (inputErrors: string[]) => any;
|
|
1108
|
+
"on-card-detected": (detectedType: string | false) => any;
|
|
1109
|
+
"enter-pressed": (value: string) => any;
|
|
1110
|
+
"on-keydown": (char: string, value: string) => any;
|
|
1111
|
+
"on-keyup": (char: string, value: string) => any;
|
|
1112
|
+
"on-keypress": (char: string, value: string) => any;
|
|
1113
|
+
"icon-clicked": (value: string) => any;
|
|
1014
1114
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1015
1115
|
$slots: {
|
|
1016
1116
|
'dsg-input--tooltip-content'?(_: {}): any;
|
|
@@ -3153,16 +3253,56 @@ declare const _default: {
|
|
|
3153
3253
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3154
3254
|
modelValue?: any;
|
|
3155
3255
|
} & import('./main').DsgInputProps> & Readonly<{
|
|
3156
|
-
|
|
3256
|
+
"onUpdate:modelValue"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
3257
|
+
"onUpdate:model-value"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
3258
|
+
"onOn-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3259
|
+
"onOn-suffix-icon-clicked"?: ((value: string) => any) | undefined;
|
|
3260
|
+
"onOn-before-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3261
|
+
"onOn-before-off-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3262
|
+
"onOff-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3263
|
+
"onOn-before-copy"?: ((value: string) => any) | undefined;
|
|
3264
|
+
"onOn-copy"?: ((value: string) => any) | undefined;
|
|
3265
|
+
"onOn-before-clear"?: ((value: string) => any) | undefined;
|
|
3266
|
+
"onOn-clear"?: ((oldValue: string) => any) | undefined;
|
|
3267
|
+
"onOn-before-format"?: ((oldValue: string, newValue: string) => any) | undefined;
|
|
3268
|
+
"onOn-format"?: ((value: string) => any) | undefined;
|
|
3269
|
+
"onOn-before-validate"?: ((value: string) => any) | undefined;
|
|
3270
|
+
"onOn-validate"?: ((inputErrors: string[]) => any) | undefined;
|
|
3271
|
+
"onOn-card-detected"?: ((detectedType: string | false) => any) | undefined;
|
|
3272
|
+
"onEnter-pressed"?: ((value: string) => any) | undefined;
|
|
3273
|
+
"onOn-keydown"?: ((char: string, value: string) => any) | undefined;
|
|
3274
|
+
"onOn-keyup"?: ((char: string, value: string) => any) | undefined;
|
|
3275
|
+
"onOn-keypress"?: ((char: string, value: string) => any) | undefined;
|
|
3276
|
+
"onIcon-clicked"?: ((value: string) => any) | undefined;
|
|
3157
3277
|
}>, {
|
|
3158
3278
|
focus: (isFocused?: boolean) => void;
|
|
3159
3279
|
validate: () => void;
|
|
3160
3280
|
callbackValidation: (callback: Function) => void;
|
|
3161
3281
|
setErrors: (errors: string[]) => void;
|
|
3162
3282
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3163
|
-
|
|
3283
|
+
"update:modelValue": (value: any) => any;
|
|
3164
3284
|
} & {
|
|
3165
|
-
|
|
3285
|
+
"update:modelValue": (newValue: string, oldValue: string) => any;
|
|
3286
|
+
"update:model-value": (newValue: string, oldValue: string) => any;
|
|
3287
|
+
"on-focus": (el: HTMLElement) => any;
|
|
3288
|
+
"on-suffix-icon-clicked": (value: string) => any;
|
|
3289
|
+
"on-before-focus": (el: HTMLElement) => any;
|
|
3290
|
+
"on-before-off-focus": (el: HTMLElement) => any;
|
|
3291
|
+
"off-focus": (el: HTMLElement) => any;
|
|
3292
|
+
"on-before-copy": (value: string) => any;
|
|
3293
|
+
"on-copy": (value: string) => any;
|
|
3294
|
+
"on-before-clear": (value: string) => any;
|
|
3295
|
+
"on-clear": (oldValue: string) => any;
|
|
3296
|
+
"on-before-format": (oldValue: string, newValue: string) => any;
|
|
3297
|
+
"on-format": (value: string) => any;
|
|
3298
|
+
"on-before-validate": (value: string) => any;
|
|
3299
|
+
"on-validate": (inputErrors: string[]) => any;
|
|
3300
|
+
"on-card-detected": (detectedType: string | false) => any;
|
|
3301
|
+
"enter-pressed": (value: string) => any;
|
|
3302
|
+
"on-keydown": (char: string, value: string) => any;
|
|
3303
|
+
"on-keyup": (char: string, value: string) => any;
|
|
3304
|
+
"on-keypress": (char: string, value: string) => any;
|
|
3305
|
+
"icon-clicked": (value: string) => any;
|
|
3166
3306
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
3167
3307
|
themeInputWrapper: HTMLDivElement;
|
|
3168
3308
|
creditCardIcon: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./main').DsgCreditCardIconProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -3186,7 +3326,27 @@ declare const _default: {
|
|
|
3186
3326
|
}, Readonly<{
|
|
3187
3327
|
modelValue?: any;
|
|
3188
3328
|
} & import('./main').DsgInputProps> & Readonly<{
|
|
3189
|
-
|
|
3329
|
+
"onUpdate:modelValue"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
3330
|
+
"onUpdate:model-value"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
3331
|
+
"onOn-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3332
|
+
"onOn-suffix-icon-clicked"?: ((value: string) => any) | undefined;
|
|
3333
|
+
"onOn-before-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3334
|
+
"onOn-before-off-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3335
|
+
"onOff-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3336
|
+
"onOn-before-copy"?: ((value: string) => any) | undefined;
|
|
3337
|
+
"onOn-copy"?: ((value: string) => any) | undefined;
|
|
3338
|
+
"onOn-before-clear"?: ((value: string) => any) | undefined;
|
|
3339
|
+
"onOn-clear"?: ((oldValue: string) => any) | undefined;
|
|
3340
|
+
"onOn-before-format"?: ((oldValue: string, newValue: string) => any) | undefined;
|
|
3341
|
+
"onOn-format"?: ((value: string) => any) | undefined;
|
|
3342
|
+
"onOn-before-validate"?: ((value: string) => any) | undefined;
|
|
3343
|
+
"onOn-validate"?: ((inputErrors: string[]) => any) | undefined;
|
|
3344
|
+
"onOn-card-detected"?: ((detectedType: string | false) => any) | undefined;
|
|
3345
|
+
"onEnter-pressed"?: ((value: string) => any) | undefined;
|
|
3346
|
+
"onOn-keydown"?: ((char: string, value: string) => any) | undefined;
|
|
3347
|
+
"onOn-keyup"?: ((char: string, value: string) => any) | undefined;
|
|
3348
|
+
"onOn-keypress"?: ((char: string, value: string) => any) | undefined;
|
|
3349
|
+
"onIcon-clicked"?: ((value: string) => any) | undefined;
|
|
3190
3350
|
}>, {
|
|
3191
3351
|
focus: (isFocused?: boolean) => void;
|
|
3192
3352
|
validate: () => void;
|
|
@@ -3199,16 +3359,56 @@ declare const _default: {
|
|
|
3199
3359
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
3200
3360
|
modelValue?: any;
|
|
3201
3361
|
} & import('./main').DsgInputProps> & Readonly<{
|
|
3202
|
-
|
|
3362
|
+
"onUpdate:modelValue"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
3363
|
+
"onUpdate:model-value"?: ((newValue: string, oldValue: string) => any) | undefined;
|
|
3364
|
+
"onOn-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3365
|
+
"onOn-suffix-icon-clicked"?: ((value: string) => any) | undefined;
|
|
3366
|
+
"onOn-before-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3367
|
+
"onOn-before-off-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3368
|
+
"onOff-focus"?: ((el: HTMLElement) => any) | undefined;
|
|
3369
|
+
"onOn-before-copy"?: ((value: string) => any) | undefined;
|
|
3370
|
+
"onOn-copy"?: ((value: string) => any) | undefined;
|
|
3371
|
+
"onOn-before-clear"?: ((value: string) => any) | undefined;
|
|
3372
|
+
"onOn-clear"?: ((oldValue: string) => any) | undefined;
|
|
3373
|
+
"onOn-before-format"?: ((oldValue: string, newValue: string) => any) | undefined;
|
|
3374
|
+
"onOn-format"?: ((value: string) => any) | undefined;
|
|
3375
|
+
"onOn-before-validate"?: ((value: string) => any) | undefined;
|
|
3376
|
+
"onOn-validate"?: ((inputErrors: string[]) => any) | undefined;
|
|
3377
|
+
"onOn-card-detected"?: ((detectedType: string | false) => any) | undefined;
|
|
3378
|
+
"onEnter-pressed"?: ((value: string) => any) | undefined;
|
|
3379
|
+
"onOn-keydown"?: ((char: string, value: string) => any) | undefined;
|
|
3380
|
+
"onOn-keyup"?: ((char: string, value: string) => any) | undefined;
|
|
3381
|
+
"onOn-keypress"?: ((char: string, value: string) => any) | undefined;
|
|
3382
|
+
"onIcon-clicked"?: ((value: string) => any) | undefined;
|
|
3203
3383
|
}>, {
|
|
3204
3384
|
focus: (isFocused?: boolean) => void;
|
|
3205
3385
|
validate: () => void;
|
|
3206
3386
|
callbackValidation: (callback: Function) => void;
|
|
3207
3387
|
setErrors: (errors: string[]) => void;
|
|
3208
3388
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3209
|
-
|
|
3389
|
+
"update:modelValue": (value: any) => any;
|
|
3210
3390
|
} & {
|
|
3211
|
-
|
|
3391
|
+
"update:modelValue": (newValue: string, oldValue: string) => any;
|
|
3392
|
+
"update:model-value": (newValue: string, oldValue: string) => any;
|
|
3393
|
+
"on-focus": (el: HTMLElement) => any;
|
|
3394
|
+
"on-suffix-icon-clicked": (value: string) => any;
|
|
3395
|
+
"on-before-focus": (el: HTMLElement) => any;
|
|
3396
|
+
"on-before-off-focus": (el: HTMLElement) => any;
|
|
3397
|
+
"off-focus": (el: HTMLElement) => any;
|
|
3398
|
+
"on-before-copy": (value: string) => any;
|
|
3399
|
+
"on-copy": (value: string) => any;
|
|
3400
|
+
"on-before-clear": (value: string) => any;
|
|
3401
|
+
"on-clear": (oldValue: string) => any;
|
|
3402
|
+
"on-before-format": (oldValue: string, newValue: string) => any;
|
|
3403
|
+
"on-format": (value: string) => any;
|
|
3404
|
+
"on-before-validate": (value: string) => any;
|
|
3405
|
+
"on-validate": (inputErrors: string[]) => any;
|
|
3406
|
+
"on-card-detected": (detectedType: string | false) => any;
|
|
3407
|
+
"enter-pressed": (value: string) => any;
|
|
3408
|
+
"on-keydown": (char: string, value: string) => any;
|
|
3409
|
+
"on-keyup": (char: string, value: string) => any;
|
|
3410
|
+
"on-keypress": (char: string, value: string) => any;
|
|
3411
|
+
"icon-clicked": (value: string) => any;
|
|
3212
3412
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
3213
3413
|
$slots: {
|
|
3214
3414
|
'dsg-input--tooltip-content'?(_: {}): any;
|
package/dist/table.d.ts
CHANGED
|
@@ -10,16 +10,36 @@
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const DsgTable: {
|
|
12
12
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./components/Table/DsgTable.vue').DsgTableProps> & Readonly<{
|
|
13
|
-
|
|
13
|
+
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
14
|
+
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
15
|
+
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
16
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
17
|
+
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
18
|
+
"onDsg-table:term-changed"?: ((term: string | null) => any) | undefined;
|
|
19
|
+
"onDsg-table:filter-updated"?: ((params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any) | undefined;
|
|
20
|
+
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
21
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
22
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
23
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
24
|
+
"onDsg-table:data-loaded"?: ((data: any) => any) | undefined;
|
|
14
25
|
}>, {
|
|
15
26
|
reloadTable: () => void;
|
|
16
27
|
updateRowTable: (rowData: any) => void;
|
|
17
28
|
termChanged: (term: string | null) => void;
|
|
18
29
|
setFilters: (filters: any) => void;
|
|
19
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
30
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
31
|
+
"dsg-table:action-edit": (ev: Event, rowData: Record<string, any>) => any;
|
|
32
|
+
"dsg-table:action-view": (ev: Event, rowData: Record<string, any>) => any;
|
|
33
|
+
"dsg-table:action-delete": (ev: Event, rowData: Record<string, any>) => any;
|
|
34
|
+
"dsg-table:action-archive": (ev: Event, rowData: Record<string, any>) => any;
|
|
35
|
+
"dsg-table:link-clicked": (ev: Event, actionId: string | number, rowData: Record<string, any>) => any;
|
|
36
|
+
"dsg-table:term-changed": (term: string | null) => any;
|
|
37
|
+
"dsg-table:filter-updated": (params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any;
|
|
38
|
+
"dsg-table:rows-selected": (rows: any) => any;
|
|
39
|
+
"dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
40
|
+
"dsg-table:row-hover": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
41
|
+
"dsg-table:row-dblclick": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
42
|
+
"dsg-table:data-loaded": (data: any) => any;
|
|
23
43
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
24
44
|
dsgTableSearchHeaderEl: HTMLDivElement;
|
|
25
45
|
dsgTable: ({
|
|
@@ -75,6 +95,9 @@ export declare const DsgTable: {
|
|
|
75
95
|
readonly "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
|
|
76
96
|
readonly "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
|
|
77
97
|
readonly "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
98
|
+
readonly "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
99
|
+
readonly "onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
100
|
+
readonly "onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
78
101
|
readonly "onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
79
102
|
readonly "onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
80
103
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
@@ -92,7 +115,7 @@ export declare const DsgTable: {
|
|
|
92
115
|
$root: import('vue').ComponentPublicInstance | null;
|
|
93
116
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
94
117
|
$host: Element | null;
|
|
95
|
-
$emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
|
|
118
|
+
$emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "dsg-table:row-clicked", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-hover", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-dblclick", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
|
|
96
119
|
$el: HTMLDivElement;
|
|
97
120
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
98
121
|
filterParams?: any;
|
|
@@ -104,6 +127,9 @@ export declare const DsgTable: {
|
|
|
104
127
|
"onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
|
|
105
128
|
"onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
|
|
106
129
|
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
130
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
131
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
132
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
107
133
|
"onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
108
134
|
"onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
109
135
|
}>, {
|
|
@@ -119,6 +145,9 @@ export declare const DsgTable: {
|
|
|
119
145
|
"dsg-table:load-error": (response: import('axios').AxiosResponse<any, any>) => any;
|
|
120
146
|
"dsg-table:pagination-data": (paginationData: any) => any;
|
|
121
147
|
"dsg-table:rows-selected": (rows: any) => any;
|
|
148
|
+
"dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
149
|
+
"dsg-table:row-hover": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
150
|
+
"dsg-table:row-dblclick": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
122
151
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
123
152
|
beforeCreate?: (() => void) | (() => void)[];
|
|
124
153
|
created?: (() => void) | (() => void)[];
|
|
@@ -149,6 +178,9 @@ export declare const DsgTable: {
|
|
|
149
178
|
"onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
|
|
150
179
|
"onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
|
|
151
180
|
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
181
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
182
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
183
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
152
184
|
"onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
153
185
|
"onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
154
186
|
}>, "changePage" | "reload"> & import('vue').ShallowUnwrapRef<{
|
|
@@ -229,7 +261,18 @@ export declare const DsgTable: {
|
|
|
229
261
|
M: {};
|
|
230
262
|
Defaults: {};
|
|
231
263
|
}, Readonly<import('./components/Table/DsgTable.vue').DsgTableProps> & Readonly<{
|
|
232
|
-
|
|
264
|
+
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
265
|
+
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
266
|
+
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
267
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
268
|
+
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
269
|
+
"onDsg-table:term-changed"?: ((term: string | null) => any) | undefined;
|
|
270
|
+
"onDsg-table:filter-updated"?: ((params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any) | undefined;
|
|
271
|
+
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
272
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
273
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
274
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
275
|
+
"onDsg-table:data-loaded"?: ((data: any) => any) | undefined;
|
|
233
276
|
}>, {
|
|
234
277
|
reloadTable: () => void;
|
|
235
278
|
updateRowTable: (rowData: any) => void;
|
|
@@ -240,16 +283,36 @@ export declare const DsgTable: {
|
|
|
240
283
|
__isTeleport?: never;
|
|
241
284
|
__isSuspense?: never;
|
|
242
285
|
} & import('vue').ComponentOptionsBase<Readonly<import('./components/Table/DsgTable.vue').DsgTableProps> & Readonly<{
|
|
243
|
-
|
|
286
|
+
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
287
|
+
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
288
|
+
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
289
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
290
|
+
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
291
|
+
"onDsg-table:term-changed"?: ((term: string | null) => any) | undefined;
|
|
292
|
+
"onDsg-table:filter-updated"?: ((params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any) | undefined;
|
|
293
|
+
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
294
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
295
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
296
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
297
|
+
"onDsg-table:data-loaded"?: ((data: any) => any) | undefined;
|
|
244
298
|
}>, {
|
|
245
299
|
reloadTable: () => void;
|
|
246
300
|
updateRowTable: (rowData: any) => void;
|
|
247
301
|
termChanged: (term: string | null) => void;
|
|
248
302
|
setFilters: (filters: any) => void;
|
|
249
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
303
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
304
|
+
"dsg-table:action-edit": (ev: Event, rowData: Record<string, any>) => any;
|
|
305
|
+
"dsg-table:action-view": (ev: Event, rowData: Record<string, any>) => any;
|
|
306
|
+
"dsg-table:action-delete": (ev: Event, rowData: Record<string, any>) => any;
|
|
307
|
+
"dsg-table:action-archive": (ev: Event, rowData: Record<string, any>) => any;
|
|
308
|
+
"dsg-table:link-clicked": (ev: Event, actionId: string | number, rowData: Record<string, any>) => any;
|
|
309
|
+
"dsg-table:term-changed": (term: string | null) => any;
|
|
310
|
+
"dsg-table:filter-updated": (params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any;
|
|
311
|
+
"dsg-table:rows-selected": (rows: any) => any;
|
|
312
|
+
"dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
313
|
+
"dsg-table:row-hover": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
314
|
+
"dsg-table:row-dblclick": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
315
|
+
"dsg-table:data-loaded": (data: any) => any;
|
|
253
316
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
254
317
|
$slots: Partial<Record<string, (_: {
|
|
255
318
|
rowData: any;
|
|
@@ -1448,16 +1511,36 @@ export type { DsgTableField, DsgTableCustomCss, DsgTableComponentQueryParams, Ds
|
|
|
1448
1511
|
declare const _default: {
|
|
1449
1512
|
DsgTable: {
|
|
1450
1513
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./components/Table/DsgTable.vue').DsgTableProps> & Readonly<{
|
|
1451
|
-
|
|
1514
|
+
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1515
|
+
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1516
|
+
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1517
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1518
|
+
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
1519
|
+
"onDsg-table:term-changed"?: ((term: string | null) => any) | undefined;
|
|
1520
|
+
"onDsg-table:filter-updated"?: ((params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any) | undefined;
|
|
1521
|
+
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
1522
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1523
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1524
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1525
|
+
"onDsg-table:data-loaded"?: ((data: any) => any) | undefined;
|
|
1452
1526
|
}>, {
|
|
1453
1527
|
reloadTable: () => void;
|
|
1454
1528
|
updateRowTable: (rowData: any) => void;
|
|
1455
1529
|
termChanged: (term: string | null) => void;
|
|
1456
1530
|
setFilters: (filters: any) => void;
|
|
1457
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1531
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
1532
|
+
"dsg-table:action-edit": (ev: Event, rowData: Record<string, any>) => any;
|
|
1533
|
+
"dsg-table:action-view": (ev: Event, rowData: Record<string, any>) => any;
|
|
1534
|
+
"dsg-table:action-delete": (ev: Event, rowData: Record<string, any>) => any;
|
|
1535
|
+
"dsg-table:action-archive": (ev: Event, rowData: Record<string, any>) => any;
|
|
1536
|
+
"dsg-table:link-clicked": (ev: Event, actionId: string | number, rowData: Record<string, any>) => any;
|
|
1537
|
+
"dsg-table:term-changed": (term: string | null) => any;
|
|
1538
|
+
"dsg-table:filter-updated": (params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any;
|
|
1539
|
+
"dsg-table:rows-selected": (rows: any) => any;
|
|
1540
|
+
"dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1541
|
+
"dsg-table:row-hover": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1542
|
+
"dsg-table:row-dblclick": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1543
|
+
"dsg-table:data-loaded": (data: any) => any;
|
|
1461
1544
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1462
1545
|
dsgTableSearchHeaderEl: HTMLDivElement;
|
|
1463
1546
|
dsgTable: ({
|
|
@@ -1513,6 +1596,9 @@ declare const _default: {
|
|
|
1513
1596
|
readonly "onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
|
|
1514
1597
|
readonly "onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
|
|
1515
1598
|
readonly "onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
1599
|
+
readonly "onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1600
|
+
readonly "onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1601
|
+
readonly "onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1516
1602
|
readonly "onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
1517
1603
|
readonly "onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
1518
1604
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
@@ -1530,7 +1616,7 @@ declare const _default: {
|
|
|
1530
1616
|
$root: import('vue').ComponentPublicInstance | null;
|
|
1531
1617
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
1532
1618
|
$host: Element | null;
|
|
1533
|
-
$emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
|
|
1619
|
+
$emit: ((event: "dsg-table:loading", loading: boolean) => void) & ((event: "dsg-table:loaded") => void) & ((event: "dsg-table:load-success", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:load-error", response: import('axios').AxiosResponse<any, any>) => void) & ((event: "dsg-table:pagination-data", paginationData: any) => void) & ((event: "dsg-table:rows-selected", rows: any) => void) & ((event: "dsg-table:row-clicked", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-hover", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "dsg-table:row-dblclick", ev: Event, rowIndex: number, rowData: Record<string, any>) => void) & ((event: "update:filterParams", value: any) => void) & ((event: "update:perPage", value: any) => void);
|
|
1534
1620
|
$el: HTMLDivElement;
|
|
1535
1621
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1536
1622
|
filterParams?: any;
|
|
@@ -1542,6 +1628,9 @@ declare const _default: {
|
|
|
1542
1628
|
"onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
|
|
1543
1629
|
"onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
|
|
1544
1630
|
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
1631
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1632
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1633
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1545
1634
|
"onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
1546
1635
|
"onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
1547
1636
|
}>, {
|
|
@@ -1557,6 +1646,9 @@ declare const _default: {
|
|
|
1557
1646
|
"dsg-table:load-error": (response: import('axios').AxiosResponse<any, any>) => any;
|
|
1558
1647
|
"dsg-table:pagination-data": (paginationData: any) => any;
|
|
1559
1648
|
"dsg-table:rows-selected": (rows: any) => any;
|
|
1649
|
+
"dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1650
|
+
"dsg-table:row-hover": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1651
|
+
"dsg-table:row-dblclick": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1560
1652
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1561
1653
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1562
1654
|
created?: (() => void) | (() => void)[];
|
|
@@ -1587,6 +1679,9 @@ declare const _default: {
|
|
|
1587
1679
|
"onDsg-table:load-error"?: ((response: import('axios').AxiosResponse<any, any>) => any) | undefined;
|
|
1588
1680
|
"onDsg-table:pagination-data"?: ((paginationData: any) => any) | undefined;
|
|
1589
1681
|
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
1682
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1683
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1684
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1590
1685
|
"onUpdate:filterParams"?: ((value: any) => any) | undefined;
|
|
1591
1686
|
"onUpdate:perPage"?: ((value: any) => any) | undefined;
|
|
1592
1687
|
}>, "changePage" | "reload"> & import('vue').ShallowUnwrapRef<{
|
|
@@ -1667,7 +1762,18 @@ declare const _default: {
|
|
|
1667
1762
|
M: {};
|
|
1668
1763
|
Defaults: {};
|
|
1669
1764
|
}, Readonly<import('./components/Table/DsgTable.vue').DsgTableProps> & Readonly<{
|
|
1670
|
-
|
|
1765
|
+
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1766
|
+
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1767
|
+
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1768
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1769
|
+
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
1770
|
+
"onDsg-table:term-changed"?: ((term: string | null) => any) | undefined;
|
|
1771
|
+
"onDsg-table:filter-updated"?: ((params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any) | undefined;
|
|
1772
|
+
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
1773
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1774
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1775
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1776
|
+
"onDsg-table:data-loaded"?: ((data: any) => any) | undefined;
|
|
1671
1777
|
}>, {
|
|
1672
1778
|
reloadTable: () => void;
|
|
1673
1779
|
updateRowTable: (rowData: any) => void;
|
|
@@ -1678,16 +1784,36 @@ declare const _default: {
|
|
|
1678
1784
|
__isTeleport?: never;
|
|
1679
1785
|
__isSuspense?: never;
|
|
1680
1786
|
} & import('vue').ComponentOptionsBase<Readonly<import('./components/Table/DsgTable.vue').DsgTableProps> & Readonly<{
|
|
1681
|
-
|
|
1787
|
+
"onDsg-table:action-edit"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1788
|
+
"onDsg-table:action-view"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1789
|
+
"onDsg-table:action-delete"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1790
|
+
"onDsg-table:action-archive"?: ((ev: Event, rowData: Record<string, any>) => any) | undefined;
|
|
1791
|
+
"onDsg-table:link-clicked"?: ((ev: Event, actionId: string | number, rowData: Record<string, any>) => any) | undefined;
|
|
1792
|
+
"onDsg-table:term-changed"?: ((term: string | null) => any) | undefined;
|
|
1793
|
+
"onDsg-table:filter-updated"?: ((params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any) | undefined;
|
|
1794
|
+
"onDsg-table:rows-selected"?: ((rows: any) => any) | undefined;
|
|
1795
|
+
"onDsg-table:row-clicked"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1796
|
+
"onDsg-table:row-hover"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1797
|
+
"onDsg-table:row-dblclick"?: ((ev: Event, rowIndex: number, rowData: Record<string, any>) => any) | undefined;
|
|
1798
|
+
"onDsg-table:data-loaded"?: ((data: any) => any) | undefined;
|
|
1682
1799
|
}>, {
|
|
1683
1800
|
reloadTable: () => void;
|
|
1684
1801
|
updateRowTable: (rowData: any) => void;
|
|
1685
1802
|
termChanged: (term: string | null) => void;
|
|
1686
1803
|
setFilters: (filters: any) => void;
|
|
1687
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1804
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
1805
|
+
"dsg-table:action-edit": (ev: Event, rowData: Record<string, any>) => any;
|
|
1806
|
+
"dsg-table:action-view": (ev: Event, rowData: Record<string, any>) => any;
|
|
1807
|
+
"dsg-table:action-delete": (ev: Event, rowData: Record<string, any>) => any;
|
|
1808
|
+
"dsg-table:action-archive": (ev: Event, rowData: Record<string, any>) => any;
|
|
1809
|
+
"dsg-table:link-clicked": (ev: Event, actionId: string | number, rowData: Record<string, any>) => any;
|
|
1810
|
+
"dsg-table:term-changed": (term: string | null) => any;
|
|
1811
|
+
"dsg-table:filter-updated": (params: any, payload: any, activeFacet: import('./main').DsgSearchFacet | null | undefined) => any;
|
|
1812
|
+
"dsg-table:rows-selected": (rows: any) => any;
|
|
1813
|
+
"dsg-table:row-clicked": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1814
|
+
"dsg-table:row-hover": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1815
|
+
"dsg-table:row-dblclick": (ev: Event, rowIndex: number, rowData: Record<string, any>) => any;
|
|
1816
|
+
"dsg-table:data-loaded": (data: any) => any;
|
|
1691
1817
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1692
1818
|
$slots: Partial<Record<string, (_: {
|
|
1693
1819
|
rowData: any;
|