cnhis-design-vue 3.3.3-beta.74 → 3.3.3-beta.75
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/classification/index.d.ts +16 -258
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +16 -258
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +16 -258
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
- package/es/components/classification/src/index.vue.d.ts +16 -258
- 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/info-header/index.d.ts +9 -17
- package/es/components/info-header/src/InfoHeader.vue.d.ts +9 -17
- package/es/components/info-header/src/InfoHeader.vue2.js +2 -2
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +3 -2
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue2.js +1 -1
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +9 -17
- package/es/components/info-header/src/constants/index.d.ts +1 -1
- package/es/components/shortcut-provider/src/hooks/useShortcuts.js +1 -1
- package/es/components/shortcut-provider/src/types/index.d.ts +1 -0
- package/es/components/shortcut-provider/src/utils/index.d.ts +1 -1
- package/es/components/shortcut-provider/src/utils/index.js +3 -1
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +14 -258
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.d.ts +7 -129
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue2.js +107 -13
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +7 -129
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +7 -129
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +2 -8
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +14 -258
- package/es/components/table-filter/src/components/classify-filter/helpers/options.js +26 -1
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +16 -258
- package/es/components/table-filter/src/components/classify-filter/index.vue2.js +3 -1
- package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.js +16 -1
- package/es/components/table-filter/src/hooks/useAdvanced.js +1 -1
- package/es/components/table-filter/src/types/enums.d.ts +1 -0
- package/es/components/table-filter/src/types/enums.js +1 -0
- package/es/env.d.ts +25 -25
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -3
@@ -89,6 +89,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
89
89
|
class: string;
|
90
90
|
};
|
91
91
|
specialDateRange: string[];
|
92
|
+
specialCustomDateRange: string[];
|
92
93
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
93
94
|
actionList_prop: {
|
94
95
|
type: import("vue").PropType<import("../../../..").IClassifyListType>;
|
@@ -480,6 +481,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
480
481
|
label: string;
|
481
482
|
value: string;
|
482
483
|
}[];
|
484
|
+
widgetRangeOptions: {
|
485
|
+
label: string;
|
486
|
+
value: string;
|
487
|
+
}[];
|
488
|
+
startDateNum: import("vue").Ref<any>;
|
489
|
+
endDateNum: import("vue").Ref<any>;
|
483
490
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
484
491
|
filterType: {
|
485
492
|
type: StringConstructor;
|
@@ -512,135 +519,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
512
519
|
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
513
520
|
valueCp: import("vue").WritableComputedRef<any>;
|
514
521
|
presetValCp: import("vue").WritableComputedRef<string>;
|
515
|
-
|
516
|
-
updateUnchangedValue: {
|
517
|
-
type: BooleanConstructor;
|
518
|
-
};
|
519
|
-
onConfirm: {
|
520
|
-
type: FunctionConstructor;
|
521
|
-
};
|
522
|
-
formattedValue: {
|
523
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
524
|
-
};
|
525
|
-
placeholder: {
|
526
|
-
type: StringConstructor;
|
527
|
-
};
|
528
|
-
allowedInvalidValue: {
|
529
|
-
type: StringConstructor;
|
530
|
-
};
|
531
|
-
to: {
|
532
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
533
|
-
default: string;
|
534
|
-
};
|
535
|
-
holidays: {
|
536
|
-
type: import("vue").PropType<Date[]>;
|
537
|
-
default: () => never[];
|
538
|
-
};
|
539
|
-
type: {
|
540
|
-
type: StringConstructor;
|
541
|
-
default: string;
|
542
|
-
};
|
543
|
-
isDateDisabled: {
|
544
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
545
|
-
};
|
546
|
-
}, {
|
547
|
-
attrs: {
|
548
|
-
[x: string]: unknown;
|
549
|
-
};
|
550
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
551
|
-
updateUnchangedValue: {
|
552
|
-
type: BooleanConstructor;
|
553
|
-
};
|
554
|
-
onConfirm: {
|
555
|
-
type: FunctionConstructor;
|
556
|
-
};
|
557
|
-
formattedValue: {
|
558
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
559
|
-
};
|
560
|
-
placeholder: {
|
561
|
-
type: StringConstructor;
|
562
|
-
};
|
563
|
-
allowedInvalidValue: {
|
564
|
-
type: StringConstructor;
|
565
|
-
};
|
566
|
-
to: {
|
567
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
568
|
-
default: string;
|
569
|
-
};
|
570
|
-
holidays: {
|
571
|
-
type: import("vue").PropType<Date[]>;
|
572
|
-
default: () => never[];
|
573
|
-
};
|
574
|
-
type: {
|
575
|
-
type: StringConstructor;
|
576
|
-
default: string;
|
577
|
-
};
|
578
|
-
isDateDisabled: {
|
579
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
580
|
-
};
|
581
|
-
}>> & {
|
582
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
583
|
-
}>>;
|
584
|
-
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
585
|
-
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
586
|
-
panelInstRef: import("vue").Ref<null>;
|
587
|
-
placeholderRef: import("vue").Ref<any>;
|
588
|
-
oldValue: string;
|
589
|
-
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
590
|
-
isDateTime: import("vue").ComputedRef<boolean>;
|
591
|
-
formatRef: import("vue").ComputedRef<string>;
|
592
|
-
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
593
|
-
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
594
|
-
focus: () => any;
|
595
|
-
blur: () => any;
|
596
|
-
handleConfirm: (target: HTMLInputElement) => void;
|
597
|
-
onUpdateShow: (show: boolean) => Promise<void>;
|
598
|
-
watchers: import("../../../../../shared/types").AnyFn[];
|
599
|
-
stopWatcher: () => void;
|
600
|
-
setHoliday: (show: boolean) => Promise<void>;
|
601
|
-
onConfirm: (...args: any[]) => Promise<void>;
|
602
|
-
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
603
|
-
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
604
|
-
NDatePicker: any;
|
605
|
-
}, 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<{
|
606
|
-
updateUnchangedValue: {
|
607
|
-
type: BooleanConstructor;
|
608
|
-
};
|
609
|
-
onConfirm: {
|
610
|
-
type: FunctionConstructor;
|
611
|
-
};
|
612
|
-
formattedValue: {
|
613
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
614
|
-
};
|
615
|
-
placeholder: {
|
616
|
-
type: StringConstructor;
|
617
|
-
};
|
618
|
-
allowedInvalidValue: {
|
619
|
-
type: StringConstructor;
|
620
|
-
};
|
621
|
-
to: {
|
622
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
623
|
-
default: string;
|
624
|
-
};
|
625
|
-
holidays: {
|
626
|
-
type: import("vue").PropType<Date[]>;
|
627
|
-
default: () => never[];
|
628
|
-
};
|
629
|
-
type: {
|
630
|
-
type: StringConstructor;
|
631
|
-
default: string;
|
632
|
-
};
|
633
|
-
isDateDisabled: {
|
634
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
635
|
-
};
|
636
|
-
}>> & {
|
637
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
638
|
-
}, {
|
639
|
-
type: string;
|
640
|
-
updateUnchangedValue: boolean;
|
641
|
-
to: string | false | HTMLElement;
|
642
|
-
holidays: Date[];
|
643
|
-
}>>;
|
522
|
+
handleChange: (val: any, type: "start" | "end") => void;
|
644
523
|
NSelect: any;
|
645
524
|
NInputNumber: any;
|
646
525
|
}, 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<{
|
@@ -1435,6 +1314,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1435
1314
|
label: string;
|
1436
1315
|
value: string;
|
1437
1316
|
}[];
|
1317
|
+
widgetRangeOptions: {
|
1318
|
+
label: string;
|
1319
|
+
value: string;
|
1320
|
+
}[];
|
1321
|
+
startDateNum: import("vue").Ref<any>;
|
1322
|
+
endDateNum: import("vue").Ref<any>;
|
1438
1323
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1439
1324
|
filterType: {
|
1440
1325
|
type: StringConstructor;
|
@@ -1467,135 +1352,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1467
1352
|
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
1468
1353
|
valueCp: import("vue").WritableComputedRef<any>;
|
1469
1354
|
presetValCp: import("vue").WritableComputedRef<string>;
|
1470
|
-
|
1471
|
-
updateUnchangedValue: {
|
1472
|
-
type: BooleanConstructor;
|
1473
|
-
};
|
1474
|
-
onConfirm: {
|
1475
|
-
type: FunctionConstructor;
|
1476
|
-
};
|
1477
|
-
formattedValue: {
|
1478
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1479
|
-
};
|
1480
|
-
placeholder: {
|
1481
|
-
type: StringConstructor;
|
1482
|
-
};
|
1483
|
-
allowedInvalidValue: {
|
1484
|
-
type: StringConstructor;
|
1485
|
-
};
|
1486
|
-
to: {
|
1487
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
1488
|
-
default: string;
|
1489
|
-
};
|
1490
|
-
holidays: {
|
1491
|
-
type: import("vue").PropType<Date[]>;
|
1492
|
-
default: () => never[];
|
1493
|
-
};
|
1494
|
-
type: {
|
1495
|
-
type: StringConstructor;
|
1496
|
-
default: string;
|
1497
|
-
};
|
1498
|
-
isDateDisabled: {
|
1499
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1500
|
-
};
|
1501
|
-
}, {
|
1502
|
-
attrs: {
|
1503
|
-
[x: string]: unknown;
|
1504
|
-
};
|
1505
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1506
|
-
updateUnchangedValue: {
|
1507
|
-
type: BooleanConstructor;
|
1508
|
-
};
|
1509
|
-
onConfirm: {
|
1510
|
-
type: FunctionConstructor;
|
1511
|
-
};
|
1512
|
-
formattedValue: {
|
1513
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1514
|
-
};
|
1515
|
-
placeholder: {
|
1516
|
-
type: StringConstructor;
|
1517
|
-
};
|
1518
|
-
allowedInvalidValue: {
|
1519
|
-
type: StringConstructor;
|
1520
|
-
};
|
1521
|
-
to: {
|
1522
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
1523
|
-
default: string;
|
1524
|
-
};
|
1525
|
-
holidays: {
|
1526
|
-
type: import("vue").PropType<Date[]>;
|
1527
|
-
default: () => never[];
|
1528
|
-
};
|
1529
|
-
type: {
|
1530
|
-
type: StringConstructor;
|
1531
|
-
default: string;
|
1532
|
-
};
|
1533
|
-
isDateDisabled: {
|
1534
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1535
|
-
};
|
1536
|
-
}>> & {
|
1537
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1538
|
-
}>>;
|
1539
|
-
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
1540
|
-
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
1541
|
-
panelInstRef: import("vue").Ref<null>;
|
1542
|
-
placeholderRef: import("vue").Ref<any>;
|
1543
|
-
oldValue: string;
|
1544
|
-
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
1545
|
-
isDateTime: import("vue").ComputedRef<boolean>;
|
1546
|
-
formatRef: import("vue").ComputedRef<string>;
|
1547
|
-
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
1548
|
-
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
1549
|
-
focus: () => any;
|
1550
|
-
blur: () => any;
|
1551
|
-
handleConfirm: (target: HTMLInputElement) => void;
|
1552
|
-
onUpdateShow: (show: boolean) => Promise<void>;
|
1553
|
-
watchers: import("../../../../../shared/types").AnyFn[];
|
1554
|
-
stopWatcher: () => void;
|
1555
|
-
setHoliday: (show: boolean) => Promise<void>;
|
1556
|
-
onConfirm: (...args: any[]) => Promise<void>;
|
1557
|
-
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
1558
|
-
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
1559
|
-
NDatePicker: any;
|
1560
|
-
}, 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<{
|
1561
|
-
updateUnchangedValue: {
|
1562
|
-
type: BooleanConstructor;
|
1563
|
-
};
|
1564
|
-
onConfirm: {
|
1565
|
-
type: FunctionConstructor;
|
1566
|
-
};
|
1567
|
-
formattedValue: {
|
1568
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1569
|
-
};
|
1570
|
-
placeholder: {
|
1571
|
-
type: StringConstructor;
|
1572
|
-
};
|
1573
|
-
allowedInvalidValue: {
|
1574
|
-
type: StringConstructor;
|
1575
|
-
};
|
1576
|
-
to: {
|
1577
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
1578
|
-
default: string;
|
1579
|
-
};
|
1580
|
-
holidays: {
|
1581
|
-
type: import("vue").PropType<Date[]>;
|
1582
|
-
default: () => never[];
|
1583
|
-
};
|
1584
|
-
type: {
|
1585
|
-
type: StringConstructor;
|
1586
|
-
default: string;
|
1587
|
-
};
|
1588
|
-
isDateDisabled: {
|
1589
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1590
|
-
};
|
1591
|
-
}>> & {
|
1592
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1593
|
-
}, {
|
1594
|
-
type: string;
|
1595
|
-
updateUnchangedValue: boolean;
|
1596
|
-
to: string | false | HTMLElement;
|
1597
|
-
holidays: Date[];
|
1598
|
-
}>>;
|
1355
|
+
handleChange: (val: any, type: "start" | "end") => void;
|
1599
1356
|
NSelect: any;
|
1600
1357
|
NInputNumber: any;
|
1601
1358
|
}, 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<{
|
@@ -1857,6 +1614,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1857
1614
|
ConditionEnums: {
|
1858
1615
|
NULL: string;
|
1859
1616
|
EQUAL: string;
|
1617
|
+
CUSTOM_RANGE: string;
|
1860
1618
|
IN_THE_PAST: string;
|
1861
1619
|
IN_THE_FUTURE: string;
|
1862
1620
|
IN_THE_PAST_DI: string;
|
@@ -383,6 +383,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
383
383
|
class: string;
|
384
384
|
};
|
385
385
|
specialDateRange: string[];
|
386
|
+
specialCustomDateRange: string[];
|
386
387
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
387
388
|
actionList_prop: {
|
388
389
|
type: import("vue").PropType<IClassifyListType>;
|
@@ -774,6 +775,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
774
775
|
label: string;
|
775
776
|
value: string;
|
776
777
|
}[];
|
778
|
+
widgetRangeOptions: {
|
779
|
+
label: string;
|
780
|
+
value: string;
|
781
|
+
}[];
|
782
|
+
startDateNum: import("vue").Ref<any>;
|
783
|
+
endDateNum: import("vue").Ref<any>;
|
777
784
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
778
785
|
filterType: {
|
779
786
|
type: StringConstructor;
|
@@ -806,135 +813,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
806
813
|
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
807
814
|
valueCp: import("vue").WritableComputedRef<any>;
|
808
815
|
presetValCp: import("vue").WritableComputedRef<string>;
|
809
|
-
|
810
|
-
updateUnchangedValue: {
|
811
|
-
type: BooleanConstructor;
|
812
|
-
};
|
813
|
-
onConfirm: {
|
814
|
-
type: FunctionConstructor;
|
815
|
-
};
|
816
|
-
formattedValue: {
|
817
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
818
|
-
};
|
819
|
-
placeholder: {
|
820
|
-
type: StringConstructor;
|
821
|
-
};
|
822
|
-
allowedInvalidValue: {
|
823
|
-
type: StringConstructor;
|
824
|
-
};
|
825
|
-
to: {
|
826
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
827
|
-
default: string;
|
828
|
-
};
|
829
|
-
holidays: {
|
830
|
-
type: import("vue").PropType<Date[]>;
|
831
|
-
default: () => never[];
|
832
|
-
};
|
833
|
-
type: {
|
834
|
-
type: StringConstructor;
|
835
|
-
default: string;
|
836
|
-
};
|
837
|
-
isDateDisabled: {
|
838
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
839
|
-
};
|
840
|
-
}, {
|
841
|
-
attrs: {
|
842
|
-
[x: string]: unknown;
|
843
|
-
};
|
844
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
845
|
-
updateUnchangedValue: {
|
846
|
-
type: BooleanConstructor;
|
847
|
-
};
|
848
|
-
onConfirm: {
|
849
|
-
type: FunctionConstructor;
|
850
|
-
};
|
851
|
-
formattedValue: {
|
852
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
853
|
-
};
|
854
|
-
placeholder: {
|
855
|
-
type: StringConstructor;
|
856
|
-
};
|
857
|
-
allowedInvalidValue: {
|
858
|
-
type: StringConstructor;
|
859
|
-
};
|
860
|
-
to: {
|
861
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
862
|
-
default: string;
|
863
|
-
};
|
864
|
-
holidays: {
|
865
|
-
type: import("vue").PropType<Date[]>;
|
866
|
-
default: () => never[];
|
867
|
-
};
|
868
|
-
type: {
|
869
|
-
type: StringConstructor;
|
870
|
-
default: string;
|
871
|
-
};
|
872
|
-
isDateDisabled: {
|
873
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
874
|
-
};
|
875
|
-
}>> & {
|
876
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
877
|
-
}>>;
|
878
|
-
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
879
|
-
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
880
|
-
panelInstRef: import("vue").Ref<null>;
|
881
|
-
placeholderRef: import("vue").Ref<any>;
|
882
|
-
oldValue: string;
|
883
|
-
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
884
|
-
isDateTime: import("vue").ComputedRef<boolean>;
|
885
|
-
formatRef: import("vue").ComputedRef<string>;
|
886
|
-
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
887
|
-
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
888
|
-
focus: () => any;
|
889
|
-
blur: () => any;
|
890
|
-
handleConfirm: (target: HTMLInputElement) => void;
|
891
|
-
onUpdateShow: (show: boolean) => Promise<void>;
|
892
|
-
watchers: import("../../../../../shared/types").AnyFn[];
|
893
|
-
stopWatcher: () => void;
|
894
|
-
setHoliday: (show: boolean) => Promise<void>;
|
895
|
-
onConfirm: (...args: any[]) => Promise<void>;
|
896
|
-
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
897
|
-
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
898
|
-
NDatePicker: any;
|
899
|
-
}, 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<{
|
900
|
-
updateUnchangedValue: {
|
901
|
-
type: BooleanConstructor;
|
902
|
-
};
|
903
|
-
onConfirm: {
|
904
|
-
type: FunctionConstructor;
|
905
|
-
};
|
906
|
-
formattedValue: {
|
907
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
908
|
-
};
|
909
|
-
placeholder: {
|
910
|
-
type: StringConstructor;
|
911
|
-
};
|
912
|
-
allowedInvalidValue: {
|
913
|
-
type: StringConstructor;
|
914
|
-
};
|
915
|
-
to: {
|
916
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
917
|
-
default: string;
|
918
|
-
};
|
919
|
-
holidays: {
|
920
|
-
type: import("vue").PropType<Date[]>;
|
921
|
-
default: () => never[];
|
922
|
-
};
|
923
|
-
type: {
|
924
|
-
type: StringConstructor;
|
925
|
-
default: string;
|
926
|
-
};
|
927
|
-
isDateDisabled: {
|
928
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
929
|
-
};
|
930
|
-
}>> & {
|
931
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
932
|
-
}, {
|
933
|
-
type: string;
|
934
|
-
updateUnchangedValue: boolean;
|
935
|
-
to: string | false | HTMLElement;
|
936
|
-
holidays: Date[];
|
937
|
-
}>>;
|
816
|
+
handleChange: (val: any, type: "start" | "end") => void;
|
938
817
|
NSelect: any;
|
939
818
|
NInputNumber: any;
|
940
819
|
}, 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<{
|
@@ -1729,6 +1608,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1729
1608
|
label: string;
|
1730
1609
|
value: string;
|
1731
1610
|
}[];
|
1611
|
+
widgetRangeOptions: {
|
1612
|
+
label: string;
|
1613
|
+
value: string;
|
1614
|
+
}[];
|
1615
|
+
startDateNum: import("vue").Ref<any>;
|
1616
|
+
endDateNum: import("vue").Ref<any>;
|
1732
1617
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1733
1618
|
filterType: {
|
1734
1619
|
type: StringConstructor;
|
@@ -1761,135 +1646,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1761
1646
|
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
1762
1647
|
valueCp: import("vue").WritableComputedRef<any>;
|
1763
1648
|
presetValCp: import("vue").WritableComputedRef<string>;
|
1764
|
-
|
1765
|
-
updateUnchangedValue: {
|
1766
|
-
type: BooleanConstructor;
|
1767
|
-
};
|
1768
|
-
onConfirm: {
|
1769
|
-
type: FunctionConstructor;
|
1770
|
-
};
|
1771
|
-
formattedValue: {
|
1772
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1773
|
-
};
|
1774
|
-
placeholder: {
|
1775
|
-
type: StringConstructor;
|
1776
|
-
};
|
1777
|
-
allowedInvalidValue: {
|
1778
|
-
type: StringConstructor;
|
1779
|
-
};
|
1780
|
-
to: {
|
1781
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
1782
|
-
default: string;
|
1783
|
-
};
|
1784
|
-
holidays: {
|
1785
|
-
type: import("vue").PropType<Date[]>;
|
1786
|
-
default: () => never[];
|
1787
|
-
};
|
1788
|
-
type: {
|
1789
|
-
type: StringConstructor;
|
1790
|
-
default: string;
|
1791
|
-
};
|
1792
|
-
isDateDisabled: {
|
1793
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1794
|
-
};
|
1795
|
-
}, {
|
1796
|
-
attrs: {
|
1797
|
-
[x: string]: unknown;
|
1798
|
-
};
|
1799
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1800
|
-
updateUnchangedValue: {
|
1801
|
-
type: BooleanConstructor;
|
1802
|
-
};
|
1803
|
-
onConfirm: {
|
1804
|
-
type: FunctionConstructor;
|
1805
|
-
};
|
1806
|
-
formattedValue: {
|
1807
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1808
|
-
};
|
1809
|
-
placeholder: {
|
1810
|
-
type: StringConstructor;
|
1811
|
-
};
|
1812
|
-
allowedInvalidValue: {
|
1813
|
-
type: StringConstructor;
|
1814
|
-
};
|
1815
|
-
to: {
|
1816
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
1817
|
-
default: string;
|
1818
|
-
};
|
1819
|
-
holidays: {
|
1820
|
-
type: import("vue").PropType<Date[]>;
|
1821
|
-
default: () => never[];
|
1822
|
-
};
|
1823
|
-
type: {
|
1824
|
-
type: StringConstructor;
|
1825
|
-
default: string;
|
1826
|
-
};
|
1827
|
-
isDateDisabled: {
|
1828
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1829
|
-
};
|
1830
|
-
}>> & {
|
1831
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1832
|
-
}>>;
|
1833
|
-
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
1834
|
-
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
1835
|
-
panelInstRef: import("vue").Ref<null>;
|
1836
|
-
placeholderRef: import("vue").Ref<any>;
|
1837
|
-
oldValue: string;
|
1838
|
-
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
1839
|
-
isDateTime: import("vue").ComputedRef<boolean>;
|
1840
|
-
formatRef: import("vue").ComputedRef<string>;
|
1841
|
-
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
1842
|
-
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
1843
|
-
focus: () => any;
|
1844
|
-
blur: () => any;
|
1845
|
-
handleConfirm: (target: HTMLInputElement) => void;
|
1846
|
-
onUpdateShow: (show: boolean) => Promise<void>;
|
1847
|
-
watchers: import("../../../../../shared/types").AnyFn[];
|
1848
|
-
stopWatcher: () => void;
|
1849
|
-
setHoliday: (show: boolean) => Promise<void>;
|
1850
|
-
onConfirm: (...args: any[]) => Promise<void>;
|
1851
|
-
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
1852
|
-
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
1853
|
-
NDatePicker: any;
|
1854
|
-
}, 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<{
|
1855
|
-
updateUnchangedValue: {
|
1856
|
-
type: BooleanConstructor;
|
1857
|
-
};
|
1858
|
-
onConfirm: {
|
1859
|
-
type: FunctionConstructor;
|
1860
|
-
};
|
1861
|
-
formattedValue: {
|
1862
|
-
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1863
|
-
};
|
1864
|
-
placeholder: {
|
1865
|
-
type: StringConstructor;
|
1866
|
-
};
|
1867
|
-
allowedInvalidValue: {
|
1868
|
-
type: StringConstructor;
|
1869
|
-
};
|
1870
|
-
to: {
|
1871
|
-
type: import("vue").PropType<string | false | HTMLElement>;
|
1872
|
-
default: string;
|
1873
|
-
};
|
1874
|
-
holidays: {
|
1875
|
-
type: import("vue").PropType<Date[]>;
|
1876
|
-
default: () => never[];
|
1877
|
-
};
|
1878
|
-
type: {
|
1879
|
-
type: StringConstructor;
|
1880
|
-
default: string;
|
1881
|
-
};
|
1882
|
-
isDateDisabled: {
|
1883
|
-
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1884
|
-
};
|
1885
|
-
}>> & {
|
1886
|
-
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1887
|
-
}, {
|
1888
|
-
type: string;
|
1889
|
-
updateUnchangedValue: boolean;
|
1890
|
-
to: string | false | HTMLElement;
|
1891
|
-
holidays: Date[];
|
1892
|
-
}>>;
|
1649
|
+
handleChange: (val: any, type: "start" | "end") => void;
|
1893
1650
|
NSelect: any;
|
1894
1651
|
NInputNumber: any;
|
1895
1652
|
}, 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<{
|
@@ -2151,6 +1908,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2151
1908
|
ConditionEnums: {
|
2152
1909
|
NULL: string;
|
2153
1910
|
EQUAL: string;
|
1911
|
+
CUSTOM_RANGE: string;
|
2154
1912
|
IN_THE_PAST: string;
|
2155
1913
|
IN_THE_FUTURE: string;
|
2156
1914
|
IN_THE_PAST_DI: string;
|