@anzusystems/common-admin 0.0.43 → 0.0.45
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/common-admin.es.d.ts +53 -39
- package/dist/common-admin.es.js +624 -614
- package/dist/common-admin.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +7 -7
|
@@ -3143,25 +3143,26 @@ export declare const ATableCopyIdButton: DefineComponent<{
|
|
|
3143
3143
|
}>;
|
|
3144
3144
|
|
|
3145
3145
|
export declare const ATableDetailButton: DefineComponent<{
|
|
3146
|
-
recordId: {
|
|
3147
|
-
type: PropType<string | number>;
|
|
3148
|
-
required: true;
|
|
3149
|
-
};
|
|
3150
3146
|
routeName: {
|
|
3151
3147
|
type: PropType<string>;
|
|
3152
3148
|
required: true;
|
|
3153
3149
|
};
|
|
3154
|
-
|
|
3155
|
-
type: PropType<string | undefined>;
|
|
3150
|
+
recordId: {
|
|
3151
|
+
type: PropType<string | number | undefined>;
|
|
3156
3152
|
required: false;
|
|
3157
|
-
default:
|
|
3153
|
+
default: undefined;
|
|
3158
3154
|
};
|
|
3159
|
-
|
|
3155
|
+
routeParams: {
|
|
3156
|
+
type: PropType<any>;
|
|
3157
|
+
required: false;
|
|
3158
|
+
default: undefined;
|
|
3159
|
+
};
|
|
3160
|
+
buttonT: {
|
|
3160
3161
|
type: PropType<string | undefined>;
|
|
3161
3162
|
required: false;
|
|
3162
3163
|
default: string;
|
|
3163
3164
|
};
|
|
3164
|
-
|
|
3165
|
+
buttonClass: {
|
|
3165
3166
|
type: PropType<string | undefined>;
|
|
3166
3167
|
required: false;
|
|
3167
3168
|
default: string;
|
|
@@ -3172,25 +3173,26 @@ export declare const ATableDetailButton: DefineComponent<{
|
|
|
3172
3173
|
default: string;
|
|
3173
3174
|
};
|
|
3174
3175
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
3175
|
-
recordId: {
|
|
3176
|
-
type: PropType<string | number>;
|
|
3177
|
-
required: true;
|
|
3178
|
-
};
|
|
3179
3176
|
routeName: {
|
|
3180
3177
|
type: PropType<string>;
|
|
3181
3178
|
required: true;
|
|
3182
3179
|
};
|
|
3183
|
-
|
|
3184
|
-
type: PropType<string | undefined>;
|
|
3180
|
+
recordId: {
|
|
3181
|
+
type: PropType<string | number | undefined>;
|
|
3185
3182
|
required: false;
|
|
3186
|
-
default:
|
|
3183
|
+
default: undefined;
|
|
3187
3184
|
};
|
|
3188
|
-
|
|
3185
|
+
routeParams: {
|
|
3186
|
+
type: PropType<any>;
|
|
3187
|
+
required: false;
|
|
3188
|
+
default: undefined;
|
|
3189
|
+
};
|
|
3190
|
+
buttonT: {
|
|
3189
3191
|
type: PropType<string | undefined>;
|
|
3190
3192
|
required: false;
|
|
3191
3193
|
default: string;
|
|
3192
3194
|
};
|
|
3193
|
-
|
|
3195
|
+
buttonClass: {
|
|
3194
3196
|
type: PropType<string | undefined>;
|
|
3195
3197
|
required: false;
|
|
3196
3198
|
default: string;
|
|
@@ -3204,29 +3206,31 @@ export declare const ATableDetailButton: DefineComponent<{
|
|
|
3204
3206
|
dataCy: string | undefined;
|
|
3205
3207
|
buttonT: string | undefined;
|
|
3206
3208
|
buttonClass: string | undefined;
|
|
3207
|
-
|
|
3209
|
+
recordId: string | number | undefined;
|
|
3210
|
+
routeParams: any;
|
|
3208
3211
|
}>;
|
|
3209
3212
|
|
|
3210
3213
|
export declare const ATableEditButton: DefineComponent<{
|
|
3211
|
-
recordId: {
|
|
3212
|
-
type: PropType<string | number>;
|
|
3213
|
-
required: true;
|
|
3214
|
-
};
|
|
3215
3214
|
routeName: {
|
|
3216
3215
|
type: PropType<string>;
|
|
3217
3216
|
required: true;
|
|
3218
3217
|
};
|
|
3219
|
-
|
|
3220
|
-
type: PropType<string | undefined>;
|
|
3218
|
+
recordId: {
|
|
3219
|
+
type: PropType<string | number | undefined>;
|
|
3221
3220
|
required: false;
|
|
3222
|
-
default:
|
|
3221
|
+
default: undefined;
|
|
3223
3222
|
};
|
|
3224
|
-
|
|
3223
|
+
routeParams: {
|
|
3224
|
+
type: PropType<any>;
|
|
3225
|
+
required: false;
|
|
3226
|
+
default: undefined;
|
|
3227
|
+
};
|
|
3228
|
+
buttonT: {
|
|
3225
3229
|
type: PropType<string | undefined>;
|
|
3226
3230
|
required: false;
|
|
3227
3231
|
default: string;
|
|
3228
3232
|
};
|
|
3229
|
-
|
|
3233
|
+
buttonClass: {
|
|
3230
3234
|
type: PropType<string | undefined>;
|
|
3231
3235
|
required: false;
|
|
3232
3236
|
default: string;
|
|
@@ -3237,25 +3241,26 @@ export declare const ATableEditButton: DefineComponent<{
|
|
|
3237
3241
|
default: string;
|
|
3238
3242
|
};
|
|
3239
3243
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
3240
|
-
recordId: {
|
|
3241
|
-
type: PropType<string | number>;
|
|
3242
|
-
required: true;
|
|
3243
|
-
};
|
|
3244
3244
|
routeName: {
|
|
3245
3245
|
type: PropType<string>;
|
|
3246
3246
|
required: true;
|
|
3247
3247
|
};
|
|
3248
|
-
|
|
3249
|
-
type: PropType<string | undefined>;
|
|
3248
|
+
recordId: {
|
|
3249
|
+
type: PropType<string | number | undefined>;
|
|
3250
3250
|
required: false;
|
|
3251
|
-
default:
|
|
3251
|
+
default: undefined;
|
|
3252
3252
|
};
|
|
3253
|
-
|
|
3253
|
+
routeParams: {
|
|
3254
|
+
type: PropType<any>;
|
|
3255
|
+
required: false;
|
|
3256
|
+
default: undefined;
|
|
3257
|
+
};
|
|
3258
|
+
buttonT: {
|
|
3254
3259
|
type: PropType<string | undefined>;
|
|
3255
3260
|
required: false;
|
|
3256
3261
|
default: string;
|
|
3257
3262
|
};
|
|
3258
|
-
|
|
3263
|
+
buttonClass: {
|
|
3259
3264
|
type: PropType<string | undefined>;
|
|
3260
3265
|
required: false;
|
|
3261
3266
|
default: string;
|
|
@@ -3269,7 +3274,8 @@ export declare const ATableEditButton: DefineComponent<{
|
|
|
3269
3274
|
dataCy: string | undefined;
|
|
3270
3275
|
buttonT: string | undefined;
|
|
3271
3276
|
buttonClass: string | undefined;
|
|
3272
|
-
|
|
3277
|
+
recordId: string | number | undefined;
|
|
3278
|
+
routeParams: any;
|
|
3273
3279
|
}>;
|
|
3274
3280
|
|
|
3275
3281
|
export declare const AThemeSelect: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
@@ -4587,13 +4593,21 @@ export declare const stringToSlug: (value: string) => string;
|
|
|
4587
4593
|
export declare const stringTrimLength: (value: string, maxLength?: number) => string;
|
|
4588
4594
|
|
|
4589
4595
|
/**
|
|
4590
|
-
* Converts colon parameters to real values.
|
|
4596
|
+
* Converts colon parameters to real values from params.
|
|
4591
4597
|
*
|
|
4592
4598
|
* @param template url containing colon parameters, example: '/:id/edit'
|
|
4593
4599
|
* @param params object containing real values to be replaced, example: { id:5 }
|
|
4594
4600
|
*/
|
|
4595
4601
|
export declare const stringUrlTemplateReplace: (template: string, params: UrlParams) => string;
|
|
4596
4602
|
|
|
4603
|
+
/**
|
|
4604
|
+
* Converts colon parameters to real values from params. Same as above but it additionally supports vue router regexp.
|
|
4605
|
+
*
|
|
4606
|
+
* @param template url containing colon parameters, example: '/:id(\\d+)/edit'
|
|
4607
|
+
* @param params object containing real values to be replaced, example: { id:5 }
|
|
4608
|
+
*/
|
|
4609
|
+
export declare const stringUrlTemplateReplaceVueRouter: (template: string, params: UrlParams) => string;
|
|
4610
|
+
|
|
4597
4611
|
export declare const SubjectScopeSymbol: InjectionKey<string>;
|
|
4598
4612
|
|
|
4599
4613
|
export declare const SystemScopeSymbol: InjectionKey<string>;
|