cnhis-design-vue 3.3.3-beta.65 → 3.3.3-beta.67
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/README.md +87 -87
- package/es/components/button-print/src/components/NewPrintComponent.vue2.js +7 -1
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +7 -1
- package/es/components/button-print/src/utils/print.d.ts +3 -3
- package/es/components/button-print/src/utils/print.js +11 -0
- package/es/components/classification/index.d.ts +506 -4
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +506 -4
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +506 -4
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
- package/es/components/classification/src/index.vue.d.ts +509 -4
- package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +3 -2
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +3 -2
- package/es/components/field-set/src/FieldColor.vue.d.ts +4 -4
- package/es/components/field-set/src/FieldFilter.vue.d.ts +4 -4
- package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
- package/es/components/field-set/src/components/table-row.vue.d.ts +4 -4
- package/es/components/form-config/index.d.ts +12 -12
- package/es/components/form-config/src/FormConfig.vue.d.ts +12 -12
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +8 -8
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +2 -2
- package/es/components/iho-chat/index.d.ts +1 -1
- package/es/components/iho-chat/src/Index.vue.d.ts +1 -1
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/Video.vue.d.ts +1 -1
- package/es/components/shortcut-setter/index.d.ts +2 -2
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +2 -2
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +489 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue2.js +8 -2
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.d.ts +226 -0
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.js +6 -0
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue2.js +156 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +238 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue2.js +43 -4
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +238 -0
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +45 -4
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +476 -0
- package/es/components/table-filter/src/components/classify-filter/helpers/options.d.ts +5 -1
- package/es/components/table-filter/src/components/classify-filter/helpers/options.js +123 -2
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +506 -4
- package/es/components/table-filter/src/components/classify-filter/index.vue2.js +11 -5
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +3 -3
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +3 -3
- package/es/components/table-filter/src/types/enums.d.ts +12 -0
- package/es/components/table-filter/src/types/enums.js +13 -1
- package/es/env.d.ts +25 -25
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
@@ -162,6 +162,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
162
162
|
getParamCfg: (key: string) => any;
|
163
163
|
initFilterConditions: (tableId: string, rawConditions: import("../../../..").ISearchConfigType) => Promise<void>;
|
164
164
|
getRawFilterConditions: () => any[];
|
165
|
+
dateTypeList: string[];
|
166
|
+
getOptions: (key: string) => {
|
167
|
+
label: string;
|
168
|
+
value: string;
|
169
|
+
}[];
|
165
170
|
handleEditDisplayCategory: (item: import("../../../..").ICategoryItemType) => void;
|
166
171
|
handleDisplayCategoryAddState: () => void;
|
167
172
|
findConditionByDisplayCategory: (sid: string) => unknown;
|
@@ -182,6 +187,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
182
187
|
AddCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
183
188
|
CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
184
189
|
ValueCfg: import("vue").DefineComponent<{
|
190
|
+
item: {
|
191
|
+
type: ObjectConstructor;
|
192
|
+
default: null;
|
193
|
+
};
|
185
194
|
paramCfg: {
|
186
195
|
type: ObjectConstructor;
|
187
196
|
default: null;
|
@@ -203,6 +212,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
203
212
|
};
|
204
213
|
}, {
|
205
214
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
215
|
+
item: {
|
216
|
+
type: ObjectConstructor;
|
217
|
+
default: null;
|
218
|
+
};
|
206
219
|
paramCfg: {
|
207
220
|
type: ObjectConstructor;
|
208
221
|
default: null;
|
@@ -238,6 +251,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
238
251
|
componentCfg: {
|
239
252
|
type: ObjectConstructor;
|
240
253
|
};
|
254
|
+
item: {
|
255
|
+
type: ObjectConstructor;
|
256
|
+
required: true;
|
257
|
+
};
|
241
258
|
paramCfg: {
|
242
259
|
type: ObjectConstructor;
|
243
260
|
default: null;
|
@@ -259,6 +276,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
259
276
|
componentCfg: {
|
260
277
|
type: ObjectConstructor;
|
261
278
|
};
|
279
|
+
item: {
|
280
|
+
type: ObjectConstructor;
|
281
|
+
required: true;
|
282
|
+
};
|
262
283
|
paramCfg: {
|
263
284
|
type: ObjectConstructor;
|
264
285
|
default: null;
|
@@ -281,6 +302,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
281
302
|
"onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
|
282
303
|
}>>;
|
283
304
|
emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
|
305
|
+
filterType: import("vue").ComputedRef<"1" | "2" | "3">;
|
284
306
|
valueCp: import("vue").WritableComputedRef<any>;
|
285
307
|
presetValCp: import("vue").WritableComputedRef<string>;
|
286
308
|
dateType: any;
|
@@ -427,6 +449,231 @@ declare const _default: import("vue").DefineComponent<{
|
|
427
449
|
holidays: Date[];
|
428
450
|
}>>;
|
429
451
|
NSelect: any;
|
452
|
+
DateOption: import("vue").DefineComponent<{
|
453
|
+
filterType: {
|
454
|
+
type: StringConstructor;
|
455
|
+
required: true;
|
456
|
+
};
|
457
|
+
modelValue: {
|
458
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
459
|
+
default: null;
|
460
|
+
};
|
461
|
+
presetVal: {
|
462
|
+
type: StringConstructor;
|
463
|
+
default: null;
|
464
|
+
};
|
465
|
+
dateType: {
|
466
|
+
type: StringConstructor;
|
467
|
+
};
|
468
|
+
isDateDisabled: {
|
469
|
+
type: FunctionConstructor;
|
470
|
+
};
|
471
|
+
timeDisabled: {
|
472
|
+
type: FunctionConstructor;
|
473
|
+
};
|
474
|
+
valueFormat: {
|
475
|
+
type: StringConstructor;
|
476
|
+
};
|
477
|
+
}, {
|
478
|
+
widgetOptions: {
|
479
|
+
label: string;
|
480
|
+
value: string;
|
481
|
+
}[];
|
482
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
483
|
+
filterType: {
|
484
|
+
type: StringConstructor;
|
485
|
+
required: true;
|
486
|
+
};
|
487
|
+
modelValue: {
|
488
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
489
|
+
default: null;
|
490
|
+
};
|
491
|
+
presetVal: {
|
492
|
+
type: StringConstructor;
|
493
|
+
default: null;
|
494
|
+
};
|
495
|
+
dateType: {
|
496
|
+
type: StringConstructor;
|
497
|
+
};
|
498
|
+
isDateDisabled: {
|
499
|
+
type: FunctionConstructor;
|
500
|
+
};
|
501
|
+
timeDisabled: {
|
502
|
+
type: FunctionConstructor;
|
503
|
+
};
|
504
|
+
valueFormat: {
|
505
|
+
type: StringConstructor;
|
506
|
+
};
|
507
|
+
}>> & {
|
508
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
509
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
510
|
+
}>>;
|
511
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
512
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
513
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
514
|
+
CDatePicker: import("../../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
515
|
+
updateUnchangedValue: {
|
516
|
+
type: BooleanConstructor;
|
517
|
+
};
|
518
|
+
onConfirm: {
|
519
|
+
type: FunctionConstructor;
|
520
|
+
};
|
521
|
+
formattedValue: {
|
522
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
523
|
+
};
|
524
|
+
placeholder: {
|
525
|
+
type: StringConstructor;
|
526
|
+
};
|
527
|
+
allowedInvalidValue: {
|
528
|
+
type: StringConstructor;
|
529
|
+
};
|
530
|
+
to: {
|
531
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
532
|
+
default: string;
|
533
|
+
};
|
534
|
+
holidays: {
|
535
|
+
type: import("vue").PropType<Date[]>;
|
536
|
+
default: () => never[];
|
537
|
+
};
|
538
|
+
type: {
|
539
|
+
type: StringConstructor;
|
540
|
+
default: string;
|
541
|
+
};
|
542
|
+
isDateDisabled: {
|
543
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
544
|
+
};
|
545
|
+
}, {
|
546
|
+
attrs: {
|
547
|
+
[x: string]: unknown;
|
548
|
+
};
|
549
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
550
|
+
updateUnchangedValue: {
|
551
|
+
type: BooleanConstructor;
|
552
|
+
};
|
553
|
+
onConfirm: {
|
554
|
+
type: FunctionConstructor;
|
555
|
+
};
|
556
|
+
formattedValue: {
|
557
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
558
|
+
};
|
559
|
+
placeholder: {
|
560
|
+
type: StringConstructor;
|
561
|
+
};
|
562
|
+
allowedInvalidValue: {
|
563
|
+
type: StringConstructor;
|
564
|
+
};
|
565
|
+
to: {
|
566
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
567
|
+
default: string;
|
568
|
+
};
|
569
|
+
holidays: {
|
570
|
+
type: import("vue").PropType<Date[]>;
|
571
|
+
default: () => never[];
|
572
|
+
};
|
573
|
+
type: {
|
574
|
+
type: StringConstructor;
|
575
|
+
default: string;
|
576
|
+
};
|
577
|
+
isDateDisabled: {
|
578
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
579
|
+
};
|
580
|
+
}>> & {
|
581
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
582
|
+
}>>;
|
583
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
584
|
+
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
585
|
+
panelInstRef: import("vue").Ref<null>;
|
586
|
+
placeholderRef: import("vue").Ref<any>;
|
587
|
+
oldValue: string;
|
588
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
589
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
590
|
+
formatRef: import("vue").ComputedRef<string>;
|
591
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
592
|
+
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
593
|
+
focus: () => any;
|
594
|
+
blur: () => any;
|
595
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
596
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
597
|
+
watchers: import("../../../../../shared/types").AnyFn[];
|
598
|
+
stopWatcher: () => void;
|
599
|
+
setHoliday: (show: boolean) => Promise<void>;
|
600
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
601
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
602
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
603
|
+
NDatePicker: any;
|
604
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
605
|
+
updateUnchangedValue: {
|
606
|
+
type: BooleanConstructor;
|
607
|
+
};
|
608
|
+
onConfirm: {
|
609
|
+
type: FunctionConstructor;
|
610
|
+
};
|
611
|
+
formattedValue: {
|
612
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
613
|
+
};
|
614
|
+
placeholder: {
|
615
|
+
type: StringConstructor;
|
616
|
+
};
|
617
|
+
allowedInvalidValue: {
|
618
|
+
type: StringConstructor;
|
619
|
+
};
|
620
|
+
to: {
|
621
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
622
|
+
default: string;
|
623
|
+
};
|
624
|
+
holidays: {
|
625
|
+
type: import("vue").PropType<Date[]>;
|
626
|
+
default: () => never[];
|
627
|
+
};
|
628
|
+
type: {
|
629
|
+
type: StringConstructor;
|
630
|
+
default: string;
|
631
|
+
};
|
632
|
+
isDateDisabled: {
|
633
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
634
|
+
};
|
635
|
+
}>> & {
|
636
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
637
|
+
}, {
|
638
|
+
type: string;
|
639
|
+
updateUnchangedValue: boolean;
|
640
|
+
to: string | false | HTMLElement;
|
641
|
+
holidays: Date[];
|
642
|
+
}>>;
|
643
|
+
NSelect: any;
|
644
|
+
NInputNumber: any;
|
645
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
646
|
+
filterType: {
|
647
|
+
type: StringConstructor;
|
648
|
+
required: true;
|
649
|
+
};
|
650
|
+
modelValue: {
|
651
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
652
|
+
default: null;
|
653
|
+
};
|
654
|
+
presetVal: {
|
655
|
+
type: StringConstructor;
|
656
|
+
default: null;
|
657
|
+
};
|
658
|
+
dateType: {
|
659
|
+
type: StringConstructor;
|
660
|
+
};
|
661
|
+
isDateDisabled: {
|
662
|
+
type: FunctionConstructor;
|
663
|
+
};
|
664
|
+
timeDisabled: {
|
665
|
+
type: FunctionConstructor;
|
666
|
+
};
|
667
|
+
valueFormat: {
|
668
|
+
type: StringConstructor;
|
669
|
+
};
|
670
|
+
}>> & {
|
671
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
672
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
673
|
+
}, {
|
674
|
+
modelValue: string | number | unknown[];
|
675
|
+
presetVal: string;
|
676
|
+
}>;
|
430
677
|
WidgetValEnums: {
|
431
678
|
CUSTOM: string;
|
432
679
|
FIRST_VAL: string;
|
@@ -462,6 +709,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
462
709
|
componentCfg: {
|
463
710
|
type: ObjectConstructor;
|
464
711
|
};
|
712
|
+
item: {
|
713
|
+
type: ObjectConstructor;
|
714
|
+
required: true;
|
715
|
+
};
|
465
716
|
paramCfg: {
|
466
717
|
type: ObjectConstructor;
|
467
718
|
default: null;
|
@@ -939,6 +1190,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
939
1190
|
paramCfg: Record<string, any>;
|
940
1191
|
}>;
|
941
1192
|
DateRange: import("vue").DefineComponent<{
|
1193
|
+
item: {
|
1194
|
+
type: ObjectConstructor;
|
1195
|
+
required: true;
|
1196
|
+
};
|
942
1197
|
paramCfg: {
|
943
1198
|
type: ObjectConstructor;
|
944
1199
|
default: null;
|
@@ -957,6 +1212,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
957
1212
|
};
|
958
1213
|
}, {
|
959
1214
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1215
|
+
item: {
|
1216
|
+
type: ObjectConstructor;
|
1217
|
+
required: true;
|
1218
|
+
};
|
960
1219
|
paramCfg: {
|
961
1220
|
type: ObjectConstructor;
|
962
1221
|
default: null;
|
@@ -981,6 +1240,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
981
1240
|
emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
|
982
1241
|
startDate: import("vue").Ref<any>;
|
983
1242
|
endDate: import("vue").Ref<any>;
|
1243
|
+
filterType: import("vue").ComputedRef<"1" | "2" | "3">;
|
984
1244
|
valueFormat: import("vue").ComputedRef<string>;
|
985
1245
|
dateFormat: import("vue").ComputedRef<string>;
|
986
1246
|
compType: import("vue").ComputedRef<any>;
|
@@ -1144,6 +1404,231 @@ declare const _default: import("vue").DefineComponent<{
|
|
1144
1404
|
to: string | false | HTMLElement;
|
1145
1405
|
holidays: Date[];
|
1146
1406
|
}>>;
|
1407
|
+
DateOption: import("vue").DefineComponent<{
|
1408
|
+
filterType: {
|
1409
|
+
type: StringConstructor;
|
1410
|
+
required: true;
|
1411
|
+
};
|
1412
|
+
modelValue: {
|
1413
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1414
|
+
default: null;
|
1415
|
+
};
|
1416
|
+
presetVal: {
|
1417
|
+
type: StringConstructor;
|
1418
|
+
default: null;
|
1419
|
+
};
|
1420
|
+
dateType: {
|
1421
|
+
type: StringConstructor;
|
1422
|
+
};
|
1423
|
+
isDateDisabled: {
|
1424
|
+
type: FunctionConstructor;
|
1425
|
+
};
|
1426
|
+
timeDisabled: {
|
1427
|
+
type: FunctionConstructor;
|
1428
|
+
};
|
1429
|
+
valueFormat: {
|
1430
|
+
type: StringConstructor;
|
1431
|
+
};
|
1432
|
+
}, {
|
1433
|
+
widgetOptions: {
|
1434
|
+
label: string;
|
1435
|
+
value: string;
|
1436
|
+
}[];
|
1437
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1438
|
+
filterType: {
|
1439
|
+
type: StringConstructor;
|
1440
|
+
required: true;
|
1441
|
+
};
|
1442
|
+
modelValue: {
|
1443
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1444
|
+
default: null;
|
1445
|
+
};
|
1446
|
+
presetVal: {
|
1447
|
+
type: StringConstructor;
|
1448
|
+
default: null;
|
1449
|
+
};
|
1450
|
+
dateType: {
|
1451
|
+
type: StringConstructor;
|
1452
|
+
};
|
1453
|
+
isDateDisabled: {
|
1454
|
+
type: FunctionConstructor;
|
1455
|
+
};
|
1456
|
+
timeDisabled: {
|
1457
|
+
type: FunctionConstructor;
|
1458
|
+
};
|
1459
|
+
valueFormat: {
|
1460
|
+
type: StringConstructor;
|
1461
|
+
};
|
1462
|
+
}>> & {
|
1463
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1464
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
1465
|
+
}>>;
|
1466
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
1467
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
1468
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
1469
|
+
CDatePicker: import("../../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
1470
|
+
updateUnchangedValue: {
|
1471
|
+
type: BooleanConstructor;
|
1472
|
+
};
|
1473
|
+
onConfirm: {
|
1474
|
+
type: FunctionConstructor;
|
1475
|
+
};
|
1476
|
+
formattedValue: {
|
1477
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1478
|
+
};
|
1479
|
+
placeholder: {
|
1480
|
+
type: StringConstructor;
|
1481
|
+
};
|
1482
|
+
allowedInvalidValue: {
|
1483
|
+
type: StringConstructor;
|
1484
|
+
};
|
1485
|
+
to: {
|
1486
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1487
|
+
default: string;
|
1488
|
+
};
|
1489
|
+
holidays: {
|
1490
|
+
type: import("vue").PropType<Date[]>;
|
1491
|
+
default: () => never[];
|
1492
|
+
};
|
1493
|
+
type: {
|
1494
|
+
type: StringConstructor;
|
1495
|
+
default: string;
|
1496
|
+
};
|
1497
|
+
isDateDisabled: {
|
1498
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1499
|
+
};
|
1500
|
+
}, {
|
1501
|
+
attrs: {
|
1502
|
+
[x: string]: unknown;
|
1503
|
+
};
|
1504
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1505
|
+
updateUnchangedValue: {
|
1506
|
+
type: BooleanConstructor;
|
1507
|
+
};
|
1508
|
+
onConfirm: {
|
1509
|
+
type: FunctionConstructor;
|
1510
|
+
};
|
1511
|
+
formattedValue: {
|
1512
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1513
|
+
};
|
1514
|
+
placeholder: {
|
1515
|
+
type: StringConstructor;
|
1516
|
+
};
|
1517
|
+
allowedInvalidValue: {
|
1518
|
+
type: StringConstructor;
|
1519
|
+
};
|
1520
|
+
to: {
|
1521
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1522
|
+
default: string;
|
1523
|
+
};
|
1524
|
+
holidays: {
|
1525
|
+
type: import("vue").PropType<Date[]>;
|
1526
|
+
default: () => never[];
|
1527
|
+
};
|
1528
|
+
type: {
|
1529
|
+
type: StringConstructor;
|
1530
|
+
default: string;
|
1531
|
+
};
|
1532
|
+
isDateDisabled: {
|
1533
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1534
|
+
};
|
1535
|
+
}>> & {
|
1536
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1537
|
+
}>>;
|
1538
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
1539
|
+
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
1540
|
+
panelInstRef: import("vue").Ref<null>;
|
1541
|
+
placeholderRef: import("vue").Ref<any>;
|
1542
|
+
oldValue: string;
|
1543
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
1544
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
1545
|
+
formatRef: import("vue").ComputedRef<string>;
|
1546
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
1547
|
+
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
1548
|
+
focus: () => any;
|
1549
|
+
blur: () => any;
|
1550
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
1551
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
1552
|
+
watchers: import("../../../../../shared/types").AnyFn[];
|
1553
|
+
stopWatcher: () => void;
|
1554
|
+
setHoliday: (show: boolean) => Promise<void>;
|
1555
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
1556
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
1557
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
1558
|
+
NDatePicker: any;
|
1559
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1560
|
+
updateUnchangedValue: {
|
1561
|
+
type: BooleanConstructor;
|
1562
|
+
};
|
1563
|
+
onConfirm: {
|
1564
|
+
type: FunctionConstructor;
|
1565
|
+
};
|
1566
|
+
formattedValue: {
|
1567
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1568
|
+
};
|
1569
|
+
placeholder: {
|
1570
|
+
type: StringConstructor;
|
1571
|
+
};
|
1572
|
+
allowedInvalidValue: {
|
1573
|
+
type: StringConstructor;
|
1574
|
+
};
|
1575
|
+
to: {
|
1576
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1577
|
+
default: string;
|
1578
|
+
};
|
1579
|
+
holidays: {
|
1580
|
+
type: import("vue").PropType<Date[]>;
|
1581
|
+
default: () => never[];
|
1582
|
+
};
|
1583
|
+
type: {
|
1584
|
+
type: StringConstructor;
|
1585
|
+
default: string;
|
1586
|
+
};
|
1587
|
+
isDateDisabled: {
|
1588
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1589
|
+
};
|
1590
|
+
}>> & {
|
1591
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1592
|
+
}, {
|
1593
|
+
type: string;
|
1594
|
+
updateUnchangedValue: boolean;
|
1595
|
+
to: string | false | HTMLElement;
|
1596
|
+
holidays: Date[];
|
1597
|
+
}>>;
|
1598
|
+
NSelect: any;
|
1599
|
+
NInputNumber: any;
|
1600
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1601
|
+
filterType: {
|
1602
|
+
type: StringConstructor;
|
1603
|
+
required: true;
|
1604
|
+
};
|
1605
|
+
modelValue: {
|
1606
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1607
|
+
default: null;
|
1608
|
+
};
|
1609
|
+
presetVal: {
|
1610
|
+
type: StringConstructor;
|
1611
|
+
default: null;
|
1612
|
+
};
|
1613
|
+
dateType: {
|
1614
|
+
type: StringConstructor;
|
1615
|
+
};
|
1616
|
+
isDateDisabled: {
|
1617
|
+
type: FunctionConstructor;
|
1618
|
+
};
|
1619
|
+
timeDisabled: {
|
1620
|
+
type: FunctionConstructor;
|
1621
|
+
};
|
1622
|
+
valueFormat: {
|
1623
|
+
type: StringConstructor;
|
1624
|
+
};
|
1625
|
+
}>> & {
|
1626
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1627
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
1628
|
+
}, {
|
1629
|
+
modelValue: string | number | unknown[];
|
1630
|
+
presetVal: string;
|
1631
|
+
}>;
|
1147
1632
|
WidgetValEnums: {
|
1148
1633
|
CUSTOM: string;
|
1149
1634
|
FIRST_VAL: string;
|
@@ -1176,6 +1661,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1176
1661
|
LAST_YEAR: string;
|
1177
1662
|
};
|
1178
1663
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal" | "update:customDate")[], "update:modelValue" | "update:presetVal" | "update:customDate", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1664
|
+
item: {
|
1665
|
+
type: ObjectConstructor;
|
1666
|
+
required: true;
|
1667
|
+
};
|
1179
1668
|
paramCfg: {
|
1180
1669
|
type: ObjectConstructor;
|
1181
1670
|
default: null;
|
@@ -1328,6 +1817,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1328
1817
|
SELECTTREEDYNAMIC: string;
|
1329
1818
|
};
|
1330
1819
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurate" | "update:presetVal" | "update:customDate")[], "update:modelValue" | "update:isAccurate" | "update:presetVal" | "update:customDate", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1820
|
+
item: {
|
1821
|
+
type: ObjectConstructor;
|
1822
|
+
default: null;
|
1823
|
+
};
|
1331
1824
|
paramCfg: {
|
1332
1825
|
type: ObjectConstructor;
|
1333
1826
|
default: null;
|
@@ -1354,6 +1847,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1354
1847
|
"onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
|
1355
1848
|
}, {
|
1356
1849
|
modelValue: string | number | unknown[];
|
1850
|
+
item: Record<string, any>;
|
1357
1851
|
paramCfg: Record<string, any>;
|
1358
1852
|
presetVal: string;
|
1359
1853
|
isAccurate: boolean;
|
@@ -1362,11 +1856,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
1362
1856
|
ConditionEnums: {
|
1363
1857
|
NULL: string;
|
1364
1858
|
EQUAL: string;
|
1859
|
+
NOT_NULL: string;
|
1860
|
+
NEQ: string;
|
1861
|
+
BIG: string;
|
1862
|
+
LESS: string;
|
1863
|
+
BIGEQ: string;
|
1864
|
+
LESSEQ: string;
|
1865
|
+
L_: string;
|
1866
|
+
N_: string;
|
1867
|
+
IN_THE_PAST: string;
|
1868
|
+
IN_THE_FUTURE: string;
|
1869
|
+
IN_THE_PAST_DI: string;
|
1870
|
+
IN_THE_FUTURE_DI: string;
|
1365
1871
|
};
|
1366
|
-
conditionOptions: {
|
1367
|
-
label: string;
|
1368
|
-
value: string;
|
1369
|
-
}[];
|
1370
1872
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancelSaveAdd" | "saveAdd")[], "cancelSaveAdd" | "saveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1371
1873
|
actionList_prop: {
|
1372
1874
|
type: import("vue").PropType<import("../../../..").IClassifyListType>;
|