cnhis-design-vue 3.1.54-beta.20 → 3.1.54-beta.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/chat-sdk/src/chatSDK.d.ts +12 -0
- package/es/components/chat-sdk/src/chatSDK.js +1 -1
- package/es/components/classification/index.d.ts +498 -1
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +485 -1
- package/es/components/classification/src/components/search-filter/index.vue2.js +1 -1
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +485 -1
- package/es/components/classification/src/index.vue.d.ts +498 -1
- package/es/components/classification/src/index.vue2.js +1 -1
- package/es/components/classification/style/index.css +1 -1
- package/es/components/form-config/index.d.ts +45 -45
- package/es/components/form-config/src/FormConfig.vue.d.ts +45 -45
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +15 -15
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +5 -5
- package/es/components/index.css +1 -1
- package/es/components/quick-search/style/index.css +1 -1
- package/es/components/shortcut-setter/index.d.ts +5 -5
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +332 -0
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue2.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +127 -0
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue2.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/InputFilter.vue.d.ts +41 -0
- package/es/components/table-filter/src/components/bi-filter/components/InputFilter.vue.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/InputFilter.vue2.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/InputNumber.vue.d.ts +28 -0
- package/es/components/table-filter/src/components/bi-filter/components/InputNumber.vue.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/InputNumber.vue2.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/SelectFilter.vue.d.ts +51 -0
- package/es/components/table-filter/src/components/bi-filter/components/SelectFilter.vue.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/SelectFilter.vue2.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +244 -0
- package/es/components/table-filter/src/components/bi-filter/components/index.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/helpers/options.d.ts +14 -0
- package/es/components/table-filter/src/components/bi-filter/helpers/options.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/hooks/useBiConditions.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/hooks/useBiConditions.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +486 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue.js +1 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue2.js +1 -0
- package/es/components/table-filter/src/constants/index.d.ts +1 -0
- package/es/components/table-filter/src/constants/index.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +3 -2
|
@@ -356,6 +356,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
356
356
|
}>;
|
|
357
357
|
conditionApiRef: any;
|
|
358
358
|
filterTimer: any;
|
|
359
|
+
classifyfilterType: String;
|
|
359
360
|
init: () => void;
|
|
360
361
|
clearTimer: () => void;
|
|
361
362
|
handleInitConditions: () => void;
|
|
@@ -367,7 +368,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
367
368
|
NModal: any;
|
|
368
369
|
NCard: any;
|
|
369
370
|
NButton: any;
|
|
370
|
-
|
|
371
|
+
ClassifyFilterConditionByApi: import("vue").DefineComponent<{
|
|
371
372
|
actionList_prop: {
|
|
372
373
|
type: import("vue").PropType<IClassifyListType>;
|
|
373
374
|
default: () => {};
|
|
@@ -1474,6 +1475,489 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1474
1475
|
showItemName: boolean;
|
|
1475
1476
|
hideAddBtn: boolean;
|
|
1476
1477
|
}>;
|
|
1478
|
+
BiFilterConditionByApi: import("vue").DefineComponent<{
|
|
1479
|
+
actionList_prop: {
|
|
1480
|
+
type: import("vue").PropType<IClassifyListType>;
|
|
1481
|
+
default: () => {};
|
|
1482
|
+
};
|
|
1483
|
+
conditionList: {
|
|
1484
|
+
type: ArrayConstructor;
|
|
1485
|
+
default: () => never[];
|
|
1486
|
+
};
|
|
1487
|
+
tableId: {
|
|
1488
|
+
type: StringConstructor;
|
|
1489
|
+
default: string;
|
|
1490
|
+
};
|
|
1491
|
+
searchFieldList: {
|
|
1492
|
+
type: ArrayConstructor;
|
|
1493
|
+
default: () => never[];
|
|
1494
|
+
};
|
|
1495
|
+
showItemName: {
|
|
1496
|
+
type: BooleanConstructor;
|
|
1497
|
+
default: boolean;
|
|
1498
|
+
};
|
|
1499
|
+
hideAddBtn: {
|
|
1500
|
+
type: BooleanConstructor;
|
|
1501
|
+
default: boolean;
|
|
1502
|
+
};
|
|
1503
|
+
}, {
|
|
1504
|
+
$message: import("naive-ui").MessageApi;
|
|
1505
|
+
menuProps: {
|
|
1506
|
+
class: string;
|
|
1507
|
+
};
|
|
1508
|
+
dateCons: string[];
|
|
1509
|
+
textCons: string[];
|
|
1510
|
+
numberCons: string[];
|
|
1511
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1512
|
+
actionList_prop: {
|
|
1513
|
+
type: import("vue").PropType<IClassifyListType>;
|
|
1514
|
+
default: () => {};
|
|
1515
|
+
};
|
|
1516
|
+
conditionList: {
|
|
1517
|
+
type: ArrayConstructor;
|
|
1518
|
+
default: () => never[];
|
|
1519
|
+
};
|
|
1520
|
+
tableId: {
|
|
1521
|
+
type: StringConstructor;
|
|
1522
|
+
default: string;
|
|
1523
|
+
};
|
|
1524
|
+
searchFieldList: {
|
|
1525
|
+
type: ArrayConstructor;
|
|
1526
|
+
default: () => never[];
|
|
1527
|
+
};
|
|
1528
|
+
showItemName: {
|
|
1529
|
+
type: BooleanConstructor;
|
|
1530
|
+
default: boolean;
|
|
1531
|
+
};
|
|
1532
|
+
hideAddBtn: {
|
|
1533
|
+
type: BooleanConstructor;
|
|
1534
|
+
default: boolean;
|
|
1535
|
+
};
|
|
1536
|
+
}>> & {
|
|
1537
|
+
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
1538
|
+
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
1539
|
+
}>>;
|
|
1540
|
+
emit: (event: "cancelSaveAdd" | "saveAdd", ...args: any[]) => void;
|
|
1541
|
+
$attrs: {
|
|
1542
|
+
[x: string]: unknown;
|
|
1543
|
+
};
|
|
1544
|
+
FormState: any;
|
|
1545
|
+
loading: import("vue").Ref<boolean>;
|
|
1546
|
+
parentInputRef: import("vue").Ref<any>;
|
|
1547
|
+
parentInputAddRef: import("vue").Ref<any>;
|
|
1548
|
+
sqlExpression: any;
|
|
1549
|
+
DisplayCategoryState: {
|
|
1550
|
+
addDisplayCategory: string;
|
|
1551
|
+
displayCategories: {
|
|
1552
|
+
disabled: boolean;
|
|
1553
|
+
value: string;
|
|
1554
|
+
}[];
|
|
1555
|
+
displayCategoryOriginLen: number;
|
|
1556
|
+
showAdd: boolean;
|
|
1557
|
+
};
|
|
1558
|
+
isEnableAddDisplayCategory: import("vue").ComputedRef<boolean>;
|
|
1559
|
+
editDisplayCategory: (item: import("../../../../../../es/components/table-filter/src/types").ICategoryItemType, cb?: any) => void;
|
|
1560
|
+
handleDisplayCategorySelect: (item: import("../../../../../../es/components/table-filter/src/types").ICategoryItemType) => void;
|
|
1561
|
+
handleDisplayCategoryRemove: (index: number, item: import("../../../../../../es/components/table-filter/src/types").ICategoryItemType) => void;
|
|
1562
|
+
handleDisplayCategoryAdd: (cb?: any) => void;
|
|
1563
|
+
handlerBlur: () => void;
|
|
1564
|
+
initDisplayCategories: (rawDataDisplayCategories: any, displayCategory: any) => void;
|
|
1565
|
+
FilterConditionsState: any;
|
|
1566
|
+
paramOptions: import("vue").ComputedRef<any>;
|
|
1567
|
+
addFilterCondition: () => void;
|
|
1568
|
+
delFilterCondition: (index: number) => void;
|
|
1569
|
+
updateKey: (index: number, val: any) => void;
|
|
1570
|
+
updateCondition: (index: number, val: any) => void;
|
|
1571
|
+
getParamCfg: (key: string) => any;
|
|
1572
|
+
initFilterConditions: (tableId: string, rawConditions: import("../../../../../../es/components/table-filter/src/types").ISearchConfigType[]) => Promise<void>;
|
|
1573
|
+
getRawFilterConditions: () => any;
|
|
1574
|
+
isShowValueCfg: (con: string) => boolean;
|
|
1575
|
+
handleEditDisplayCategory: (item: import("../../../../../../es/components/table-filter/src/types").ICategoryItemType) => void;
|
|
1576
|
+
handleDisplayCategoryAddState: () => void;
|
|
1577
|
+
findConditionByDisplayCategory: (sid: string) => unknown;
|
|
1578
|
+
handleDisplayCategorySelectProxy: (item: import("../../../../../../es/components/table-filter/src/types").ICategoryItemType) => void;
|
|
1579
|
+
clearFormData: () => void;
|
|
1580
|
+
handleInitConditions: () => Promise<void>;
|
|
1581
|
+
validate: () => Promise<unknown>;
|
|
1582
|
+
saveAdd: () => void;
|
|
1583
|
+
cancelSaveAdd: () => void;
|
|
1584
|
+
checkActionList: () => any;
|
|
1585
|
+
NSpin: any;
|
|
1586
|
+
NIcon: any;
|
|
1587
|
+
NInput: any;
|
|
1588
|
+
NButton: any;
|
|
1589
|
+
NTooltip: any;
|
|
1590
|
+
NSelect: any;
|
|
1591
|
+
AddOutline: 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<{}>>, {}>;
|
|
1592
|
+
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<{}>>, {}>;
|
|
1593
|
+
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<{}>>, {}>;
|
|
1594
|
+
ValueCfg: import("vue").DefineComponent<{
|
|
1595
|
+
paramCfg: {
|
|
1596
|
+
type: ObjectConstructor;
|
|
1597
|
+
default: null;
|
|
1598
|
+
};
|
|
1599
|
+
modelValue: {
|
|
1600
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1601
|
+
default: null;
|
|
1602
|
+
};
|
|
1603
|
+
presetVal: {
|
|
1604
|
+
type: StringConstructor;
|
|
1605
|
+
default: null;
|
|
1606
|
+
};
|
|
1607
|
+
isAccurate: {
|
|
1608
|
+
type: BooleanConstructor;
|
|
1609
|
+
};
|
|
1610
|
+
}, {
|
|
1611
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1612
|
+
paramCfg: {
|
|
1613
|
+
type: ObjectConstructor;
|
|
1614
|
+
default: null;
|
|
1615
|
+
};
|
|
1616
|
+
modelValue: {
|
|
1617
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1618
|
+
default: null;
|
|
1619
|
+
};
|
|
1620
|
+
presetVal: {
|
|
1621
|
+
type: StringConstructor;
|
|
1622
|
+
default: null;
|
|
1623
|
+
};
|
|
1624
|
+
isAccurate: {
|
|
1625
|
+
type: BooleanConstructor;
|
|
1626
|
+
};
|
|
1627
|
+
}>> & {
|
|
1628
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1629
|
+
"onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
|
|
1630
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
|
1631
|
+
}>>;
|
|
1632
|
+
emit: (event: "update:modelValue" | "update:isAccurate" | "update:presetVal", ...args: any[]) => void;
|
|
1633
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1634
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
|
1635
|
+
isAccurateCp: import("vue").WritableComputedRef<boolean>;
|
|
1636
|
+
isSelectMode: import("vue").ComputedRef<boolean>;
|
|
1637
|
+
biType: import("vue").ComputedRef<any>;
|
|
1638
|
+
Date: import("vue").DefineComponent<{
|
|
1639
|
+
componentCfg: {
|
|
1640
|
+
type: ObjectConstructor;
|
|
1641
|
+
};
|
|
1642
|
+
paramCfg: {
|
|
1643
|
+
type: ObjectConstructor;
|
|
1644
|
+
default: null;
|
|
1645
|
+
};
|
|
1646
|
+
modelValue: {
|
|
1647
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1648
|
+
default: null;
|
|
1649
|
+
};
|
|
1650
|
+
}, {
|
|
1651
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1652
|
+
componentCfg: {
|
|
1653
|
+
type: ObjectConstructor;
|
|
1654
|
+
};
|
|
1655
|
+
paramCfg: {
|
|
1656
|
+
type: ObjectConstructor;
|
|
1657
|
+
default: null;
|
|
1658
|
+
};
|
|
1659
|
+
modelValue: {
|
|
1660
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1661
|
+
default: null;
|
|
1662
|
+
};
|
|
1663
|
+
}>> & {
|
|
1664
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1665
|
+
}>>;
|
|
1666
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
1667
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1668
|
+
dateType: any;
|
|
1669
|
+
valueFormat: import("vue").ComputedRef<string>;
|
|
1670
|
+
compType: import("vue").ComputedRef<any>;
|
|
1671
|
+
CDatePicker: import("../../../..").SFCWithInstall<import("vue").DefineComponent<{
|
|
1672
|
+
updateUnchangedValue: {
|
|
1673
|
+
type: BooleanConstructor;
|
|
1674
|
+
};
|
|
1675
|
+
onConfirm: {
|
|
1676
|
+
type: FunctionConstructor;
|
|
1677
|
+
};
|
|
1678
|
+
formattedValue: {
|
|
1679
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1680
|
+
};
|
|
1681
|
+
placeholder: {
|
|
1682
|
+
type: StringConstructor;
|
|
1683
|
+
};
|
|
1684
|
+
allowedInvalidValue: {
|
|
1685
|
+
type: StringConstructor;
|
|
1686
|
+
};
|
|
1687
|
+
}, {
|
|
1688
|
+
attrs: {
|
|
1689
|
+
[x: string]: unknown;
|
|
1690
|
+
};
|
|
1691
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1692
|
+
updateUnchangedValue: {
|
|
1693
|
+
type: BooleanConstructor;
|
|
1694
|
+
};
|
|
1695
|
+
onConfirm: {
|
|
1696
|
+
type: FunctionConstructor;
|
|
1697
|
+
};
|
|
1698
|
+
formattedValue: {
|
|
1699
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1700
|
+
};
|
|
1701
|
+
placeholder: {
|
|
1702
|
+
type: StringConstructor;
|
|
1703
|
+
};
|
|
1704
|
+
allowedInvalidValue: {
|
|
1705
|
+
type: StringConstructor;
|
|
1706
|
+
};
|
|
1707
|
+
}>> & {
|
|
1708
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1709
|
+
}>>;
|
|
1710
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
1711
|
+
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
1712
|
+
panelInstRef: import("vue").Ref<null>;
|
|
1713
|
+
placeholderRef: import("vue").Ref<any>;
|
|
1714
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
1715
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1716
|
+
formatRef: import("vue").ComputedRef<string>;
|
|
1717
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
1718
|
+
focus: () => any;
|
|
1719
|
+
blur: () => any;
|
|
1720
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
|
1721
|
+
onUpdateShow: (show: boolean) => void;
|
|
1722
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
|
1723
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
1724
|
+
NDatePicker: any;
|
|
1725
|
+
}, 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<{
|
|
1726
|
+
updateUnchangedValue: {
|
|
1727
|
+
type: BooleanConstructor;
|
|
1728
|
+
};
|
|
1729
|
+
onConfirm: {
|
|
1730
|
+
type: FunctionConstructor;
|
|
1731
|
+
};
|
|
1732
|
+
formattedValue: {
|
|
1733
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1734
|
+
};
|
|
1735
|
+
placeholder: {
|
|
1736
|
+
type: StringConstructor;
|
|
1737
|
+
};
|
|
1738
|
+
allowedInvalidValue: {
|
|
1739
|
+
type: StringConstructor;
|
|
1740
|
+
};
|
|
1741
|
+
}>> & {
|
|
1742
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1743
|
+
}, {
|
|
1744
|
+
updateUnchangedValue: boolean;
|
|
1745
|
+
}>>;
|
|
1746
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1747
|
+
componentCfg: {
|
|
1748
|
+
type: ObjectConstructor;
|
|
1749
|
+
};
|
|
1750
|
+
paramCfg: {
|
|
1751
|
+
type: ObjectConstructor;
|
|
1752
|
+
default: null;
|
|
1753
|
+
};
|
|
1754
|
+
modelValue: {
|
|
1755
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1756
|
+
default: null;
|
|
1757
|
+
};
|
|
1758
|
+
}>> & {
|
|
1759
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1760
|
+
}, {
|
|
1761
|
+
modelValue: string | number | unknown[];
|
|
1762
|
+
paramCfg: Record<string, any>;
|
|
1763
|
+
}>;
|
|
1764
|
+
InputFilter: import("vue").DefineComponent<{
|
|
1765
|
+
paramCfg: {
|
|
1766
|
+
type: ObjectConstructor;
|
|
1767
|
+
default: null;
|
|
1768
|
+
};
|
|
1769
|
+
modelValue: {
|
|
1770
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1771
|
+
default: null;
|
|
1772
|
+
};
|
|
1773
|
+
}, {
|
|
1774
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1775
|
+
paramCfg: {
|
|
1776
|
+
type: ObjectConstructor;
|
|
1777
|
+
default: null;
|
|
1778
|
+
};
|
|
1779
|
+
modelValue: {
|
|
1780
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1781
|
+
default: null;
|
|
1782
|
+
};
|
|
1783
|
+
}>> & {
|
|
1784
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1785
|
+
}>>;
|
|
1786
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
1787
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1788
|
+
NInput: any;
|
|
1789
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1790
|
+
paramCfg: {
|
|
1791
|
+
type: ObjectConstructor;
|
|
1792
|
+
default: null;
|
|
1793
|
+
};
|
|
1794
|
+
modelValue: {
|
|
1795
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1796
|
+
default: null;
|
|
1797
|
+
};
|
|
1798
|
+
}>> & {
|
|
1799
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1800
|
+
}, {
|
|
1801
|
+
modelValue: string | number | unknown[];
|
|
1802
|
+
paramCfg: Record<string, any>;
|
|
1803
|
+
}>;
|
|
1804
|
+
InputNumber: import("vue").DefineComponent<{
|
|
1805
|
+
modelValue: {
|
|
1806
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1807
|
+
default: null;
|
|
1808
|
+
};
|
|
1809
|
+
}, {
|
|
1810
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1811
|
+
modelValue: {
|
|
1812
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1813
|
+
default: null;
|
|
1814
|
+
};
|
|
1815
|
+
}>> & {
|
|
1816
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1817
|
+
}>>;
|
|
1818
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
1819
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1820
|
+
NInputNumber: any;
|
|
1821
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1822
|
+
modelValue: {
|
|
1823
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1824
|
+
default: null;
|
|
1825
|
+
};
|
|
1826
|
+
}>> & {
|
|
1827
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1828
|
+
}, {
|
|
1829
|
+
modelValue: string | number | unknown[];
|
|
1830
|
+
}>;
|
|
1831
|
+
SelectFilter: import("vue").DefineComponent<{
|
|
1832
|
+
paramCfg: {
|
|
1833
|
+
type: ObjectConstructor;
|
|
1834
|
+
default: null;
|
|
1835
|
+
};
|
|
1836
|
+
modelValue: {
|
|
1837
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1838
|
+
default: null;
|
|
1839
|
+
};
|
|
1840
|
+
}, {
|
|
1841
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1842
|
+
paramCfg: {
|
|
1843
|
+
type: ObjectConstructor;
|
|
1844
|
+
default: null;
|
|
1845
|
+
};
|
|
1846
|
+
modelValue: {
|
|
1847
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1848
|
+
default: null;
|
|
1849
|
+
};
|
|
1850
|
+
}>> & {
|
|
1851
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1852
|
+
}>>;
|
|
1853
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
1854
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1855
|
+
optionSetting: import("vue").ComputedRef<any>;
|
|
1856
|
+
widgetOptions: import("vue").ComputedRef<any>;
|
|
1857
|
+
NSelect: any;
|
|
1858
|
+
WidgetOptionEnums: {
|
|
1859
|
+
RADIO: string;
|
|
1860
|
+
MULTIPLE: string;
|
|
1861
|
+
ALL: string;
|
|
1862
|
+
SELECT_TIME: string;
|
|
1863
|
+
PAST_TIME: string;
|
|
1864
|
+
FUTURE_TIME: string;
|
|
1865
|
+
};
|
|
1866
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1867
|
+
paramCfg: {
|
|
1868
|
+
type: ObjectConstructor;
|
|
1869
|
+
default: null;
|
|
1870
|
+
};
|
|
1871
|
+
modelValue: {
|
|
1872
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1873
|
+
default: null;
|
|
1874
|
+
};
|
|
1875
|
+
}>> & {
|
|
1876
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1877
|
+
}, {
|
|
1878
|
+
modelValue: string | number | unknown[];
|
|
1879
|
+
paramCfg: Record<string, any>;
|
|
1880
|
+
}>;
|
|
1881
|
+
WidgetTypeEnums: {
|
|
1882
|
+
INPUT_NUMBER: string;
|
|
1883
|
+
INPUT: string;
|
|
1884
|
+
SELECT: string;
|
|
1885
|
+
DATE: string;
|
|
1886
|
+
DATE_OUT: string;
|
|
1887
|
+
DATE_TIME: string;
|
|
1888
|
+
DATETIME_OUT: string;
|
|
1889
|
+
CHECKBOX_GROUP: string;
|
|
1890
|
+
INPUTNUMBER_RANGE: string;
|
|
1891
|
+
DATE_RANGE_OUT: string;
|
|
1892
|
+
DATE_RANGE_INNER: string;
|
|
1893
|
+
DATETIME_RANGE_OUT: string;
|
|
1894
|
+
DATETIME_RANGE_INNER: string;
|
|
1895
|
+
LABEL: string;
|
|
1896
|
+
SELECTLABEL: string;
|
|
1897
|
+
SELECTDYNAMIC: string;
|
|
1898
|
+
};
|
|
1899
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurate" | "update:presetVal")[], "update:modelValue" | "update:isAccurate" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1900
|
+
paramCfg: {
|
|
1901
|
+
type: ObjectConstructor;
|
|
1902
|
+
default: null;
|
|
1903
|
+
};
|
|
1904
|
+
modelValue: {
|
|
1905
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1906
|
+
default: null;
|
|
1907
|
+
};
|
|
1908
|
+
presetVal: {
|
|
1909
|
+
type: StringConstructor;
|
|
1910
|
+
default: null;
|
|
1911
|
+
};
|
|
1912
|
+
isAccurate: {
|
|
1913
|
+
type: BooleanConstructor;
|
|
1914
|
+
};
|
|
1915
|
+
}>> & {
|
|
1916
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1917
|
+
"onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
|
|
1918
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
|
1919
|
+
}, {
|
|
1920
|
+
modelValue: string | number | unknown[];
|
|
1921
|
+
paramCfg: Record<string, any>;
|
|
1922
|
+
presetVal: string;
|
|
1923
|
+
isAccurate: boolean;
|
|
1924
|
+
}>;
|
|
1925
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancelSaveAdd" | "saveAdd")[], "cancelSaveAdd" | "saveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1926
|
+
actionList_prop: {
|
|
1927
|
+
type: import("vue").PropType<IClassifyListType>;
|
|
1928
|
+
default: () => {};
|
|
1929
|
+
};
|
|
1930
|
+
conditionList: {
|
|
1931
|
+
type: ArrayConstructor;
|
|
1932
|
+
default: () => never[];
|
|
1933
|
+
};
|
|
1934
|
+
tableId: {
|
|
1935
|
+
type: StringConstructor;
|
|
1936
|
+
default: string;
|
|
1937
|
+
};
|
|
1938
|
+
searchFieldList: {
|
|
1939
|
+
type: ArrayConstructor;
|
|
1940
|
+
default: () => never[];
|
|
1941
|
+
};
|
|
1942
|
+
showItemName: {
|
|
1943
|
+
type: BooleanConstructor;
|
|
1944
|
+
default: boolean;
|
|
1945
|
+
};
|
|
1946
|
+
hideAddBtn: {
|
|
1947
|
+
type: BooleanConstructor;
|
|
1948
|
+
default: boolean;
|
|
1949
|
+
};
|
|
1950
|
+
}>> & {
|
|
1951
|
+
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
1952
|
+
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
1953
|
+
}, {
|
|
1954
|
+
searchFieldList: unknown[];
|
|
1955
|
+
tableId: string;
|
|
1956
|
+
conditionList: unknown[];
|
|
1957
|
+
actionList_prop: IClassifyListType;
|
|
1958
|
+
showItemName: boolean;
|
|
1959
|
+
hideAddBtn: boolean;
|
|
1960
|
+
}>;
|
|
1477
1961
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "cancelSaveAdd"[], "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1478
1962
|
visible: {
|
|
1479
1963
|
type: BooleanConstructor;
|