cnhis-design-vue 3.1.54-beta.20 → 3.1.54-beta.21
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/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 +500 -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 +2 -2
|
@@ -43,6 +43,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
43
43
|
type: ObjectConstructor;
|
|
44
44
|
default: () => {};
|
|
45
45
|
};
|
|
46
|
+
filterType: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
46
50
|
}, {
|
|
47
51
|
handleGetConfigApi: (params: any, key: string, config: {} | undefined, filterApiConfigVal: any) => Promise<any>;
|
|
48
52
|
transformClassifyChild: (conObjList: any, searchFieldList: any[]) => {};
|
|
@@ -92,6 +96,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
92
96
|
type: ObjectConstructor;
|
|
93
97
|
default: () => {};
|
|
94
98
|
};
|
|
99
|
+
filterType: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
95
103
|
}>> & {
|
|
96
104
|
onChangeSearch?: ((...args: any[]) => any) | undefined;
|
|
97
105
|
onSetClassificationIndex?: ((...args: any[]) => any) | undefined;
|
|
@@ -569,6 +577,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
569
577
|
}>;
|
|
570
578
|
conditionApiRef: any;
|
|
571
579
|
filterTimer: any;
|
|
580
|
+
classifyfilterType: String;
|
|
572
581
|
init: () => void;
|
|
573
582
|
clearTimer: () => void;
|
|
574
583
|
handleInitConditions: () => void;
|
|
@@ -580,7 +589,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
580
589
|
NModal: any;
|
|
581
590
|
NCard: any;
|
|
582
591
|
NButton: any;
|
|
583
|
-
|
|
592
|
+
ClassifyFilterConditionByApi: import("vue").DefineComponent<{
|
|
584
593
|
actionList_prop: {
|
|
585
594
|
type: import("vue").PropType<import("..").IClassifyListType>;
|
|
586
595
|
default: () => {};
|
|
@@ -1687,6 +1696,489 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1687
1696
|
showItemName: boolean;
|
|
1688
1697
|
hideAddBtn: boolean;
|
|
1689
1698
|
}>;
|
|
1699
|
+
BiFilterConditionByApi: import("vue").DefineComponent<{
|
|
1700
|
+
actionList_prop: {
|
|
1701
|
+
type: import("vue").PropType<import("..").IClassifyListType>;
|
|
1702
|
+
default: () => {};
|
|
1703
|
+
};
|
|
1704
|
+
conditionList: {
|
|
1705
|
+
type: ArrayConstructor;
|
|
1706
|
+
default: () => never[];
|
|
1707
|
+
};
|
|
1708
|
+
tableId: {
|
|
1709
|
+
type: StringConstructor;
|
|
1710
|
+
default: string;
|
|
1711
|
+
};
|
|
1712
|
+
searchFieldList: {
|
|
1713
|
+
type: ArrayConstructor;
|
|
1714
|
+
default: () => never[];
|
|
1715
|
+
};
|
|
1716
|
+
showItemName: {
|
|
1717
|
+
type: BooleanConstructor;
|
|
1718
|
+
default: boolean;
|
|
1719
|
+
};
|
|
1720
|
+
hideAddBtn: {
|
|
1721
|
+
type: BooleanConstructor;
|
|
1722
|
+
default: boolean;
|
|
1723
|
+
};
|
|
1724
|
+
}, {
|
|
1725
|
+
$message: import("naive-ui").MessageApi;
|
|
1726
|
+
menuProps: {
|
|
1727
|
+
class: string;
|
|
1728
|
+
};
|
|
1729
|
+
dateCons: string[];
|
|
1730
|
+
textCons: string[];
|
|
1731
|
+
numberCons: string[];
|
|
1732
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1733
|
+
actionList_prop: {
|
|
1734
|
+
type: import("vue").PropType<import("..").IClassifyListType>;
|
|
1735
|
+
default: () => {};
|
|
1736
|
+
};
|
|
1737
|
+
conditionList: {
|
|
1738
|
+
type: ArrayConstructor;
|
|
1739
|
+
default: () => never[];
|
|
1740
|
+
};
|
|
1741
|
+
tableId: {
|
|
1742
|
+
type: StringConstructor;
|
|
1743
|
+
default: string;
|
|
1744
|
+
};
|
|
1745
|
+
searchFieldList: {
|
|
1746
|
+
type: ArrayConstructor;
|
|
1747
|
+
default: () => never[];
|
|
1748
|
+
};
|
|
1749
|
+
showItemName: {
|
|
1750
|
+
type: BooleanConstructor;
|
|
1751
|
+
default: boolean;
|
|
1752
|
+
};
|
|
1753
|
+
hideAddBtn: {
|
|
1754
|
+
type: BooleanConstructor;
|
|
1755
|
+
default: boolean;
|
|
1756
|
+
};
|
|
1757
|
+
}>> & {
|
|
1758
|
+
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
1759
|
+
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
1760
|
+
}>>;
|
|
1761
|
+
emit: (event: "cancelSaveAdd" | "saveAdd", ...args: any[]) => void;
|
|
1762
|
+
$attrs: {
|
|
1763
|
+
[x: string]: unknown;
|
|
1764
|
+
};
|
|
1765
|
+
FormState: any;
|
|
1766
|
+
loading: import("vue").Ref<boolean>;
|
|
1767
|
+
parentInputRef: import("vue").Ref<any>;
|
|
1768
|
+
parentInputAddRef: import("vue").Ref<any>;
|
|
1769
|
+
sqlExpression: any;
|
|
1770
|
+
DisplayCategoryState: {
|
|
1771
|
+
addDisplayCategory: string;
|
|
1772
|
+
displayCategories: {
|
|
1773
|
+
disabled: boolean;
|
|
1774
|
+
value: string;
|
|
1775
|
+
}[];
|
|
1776
|
+
displayCategoryOriginLen: number;
|
|
1777
|
+
showAdd: boolean;
|
|
1778
|
+
};
|
|
1779
|
+
isEnableAddDisplayCategory: import("vue").ComputedRef<boolean>;
|
|
1780
|
+
editDisplayCategory: (item: import("..").ICategoryItemType, cb?: any) => void;
|
|
1781
|
+
handleDisplayCategorySelect: (item: import("..").ICategoryItemType) => void;
|
|
1782
|
+
handleDisplayCategoryRemove: (index: number, item: import("..").ICategoryItemType) => void;
|
|
1783
|
+
handleDisplayCategoryAdd: (cb?: any) => void;
|
|
1784
|
+
handlerBlur: () => void;
|
|
1785
|
+
initDisplayCategories: (rawDataDisplayCategories: any, displayCategory: any) => void;
|
|
1786
|
+
FilterConditionsState: any;
|
|
1787
|
+
paramOptions: import("vue").ComputedRef<any>;
|
|
1788
|
+
addFilterCondition: () => void;
|
|
1789
|
+
delFilterCondition: (index: number) => void;
|
|
1790
|
+
updateKey: (index: number, val: any) => void;
|
|
1791
|
+
updateCondition: (index: number, val: any) => void;
|
|
1792
|
+
getParamCfg: (key: string) => any;
|
|
1793
|
+
initFilterConditions: (tableId: string, rawConditions: import("..").ISearchConfigType[]) => Promise<void>;
|
|
1794
|
+
getRawFilterConditions: () => any;
|
|
1795
|
+
isShowValueCfg: (con: string) => boolean;
|
|
1796
|
+
handleEditDisplayCategory: (item: import("..").ICategoryItemType) => void;
|
|
1797
|
+
handleDisplayCategoryAddState: () => void;
|
|
1798
|
+
findConditionByDisplayCategory: (sid: string) => unknown;
|
|
1799
|
+
handleDisplayCategorySelectProxy: (item: import("..").ICategoryItemType) => void;
|
|
1800
|
+
clearFormData: () => void;
|
|
1801
|
+
handleInitConditions: () => Promise<void>;
|
|
1802
|
+
validate: () => Promise<unknown>;
|
|
1803
|
+
saveAdd: () => void;
|
|
1804
|
+
cancelSaveAdd: () => void;
|
|
1805
|
+
checkActionList: () => any;
|
|
1806
|
+
NSpin: any;
|
|
1807
|
+
NIcon: any;
|
|
1808
|
+
NInput: any;
|
|
1809
|
+
NButton: any;
|
|
1810
|
+
NTooltip: any;
|
|
1811
|
+
NSelect: any;
|
|
1812
|
+
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<{}>>, {}>;
|
|
1813
|
+
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<{}>>, {}>;
|
|
1814
|
+
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<{}>>, {}>;
|
|
1815
|
+
ValueCfg: import("vue").DefineComponent<{
|
|
1816
|
+
paramCfg: {
|
|
1817
|
+
type: ObjectConstructor;
|
|
1818
|
+
default: null;
|
|
1819
|
+
};
|
|
1820
|
+
modelValue: {
|
|
1821
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1822
|
+
default: null;
|
|
1823
|
+
};
|
|
1824
|
+
presetVal: {
|
|
1825
|
+
type: StringConstructor;
|
|
1826
|
+
default: null;
|
|
1827
|
+
};
|
|
1828
|
+
isAccurate: {
|
|
1829
|
+
type: BooleanConstructor;
|
|
1830
|
+
};
|
|
1831
|
+
}, {
|
|
1832
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1833
|
+
paramCfg: {
|
|
1834
|
+
type: ObjectConstructor;
|
|
1835
|
+
default: null;
|
|
1836
|
+
};
|
|
1837
|
+
modelValue: {
|
|
1838
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1839
|
+
default: null;
|
|
1840
|
+
};
|
|
1841
|
+
presetVal: {
|
|
1842
|
+
type: StringConstructor;
|
|
1843
|
+
default: null;
|
|
1844
|
+
};
|
|
1845
|
+
isAccurate: {
|
|
1846
|
+
type: BooleanConstructor;
|
|
1847
|
+
};
|
|
1848
|
+
}>> & {
|
|
1849
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1850
|
+
"onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
|
|
1851
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
|
1852
|
+
}>>;
|
|
1853
|
+
emit: (event: "update:modelValue" | "update:isAccurate" | "update:presetVal", ...args: any[]) => void;
|
|
1854
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1855
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
|
1856
|
+
isAccurateCp: import("vue").WritableComputedRef<boolean>;
|
|
1857
|
+
isSelectMode: import("vue").ComputedRef<boolean>;
|
|
1858
|
+
biType: import("vue").ComputedRef<any>;
|
|
1859
|
+
Date: import("vue").DefineComponent<{
|
|
1860
|
+
componentCfg: {
|
|
1861
|
+
type: ObjectConstructor;
|
|
1862
|
+
};
|
|
1863
|
+
paramCfg: {
|
|
1864
|
+
type: ObjectConstructor;
|
|
1865
|
+
default: null;
|
|
1866
|
+
};
|
|
1867
|
+
modelValue: {
|
|
1868
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1869
|
+
default: null;
|
|
1870
|
+
};
|
|
1871
|
+
}, {
|
|
1872
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1873
|
+
componentCfg: {
|
|
1874
|
+
type: ObjectConstructor;
|
|
1875
|
+
};
|
|
1876
|
+
paramCfg: {
|
|
1877
|
+
type: ObjectConstructor;
|
|
1878
|
+
default: null;
|
|
1879
|
+
};
|
|
1880
|
+
modelValue: {
|
|
1881
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1882
|
+
default: null;
|
|
1883
|
+
};
|
|
1884
|
+
}>> & {
|
|
1885
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1886
|
+
}>>;
|
|
1887
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
1888
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
1889
|
+
dateType: any;
|
|
1890
|
+
valueFormat: import("vue").ComputedRef<string>;
|
|
1891
|
+
compType: import("vue").ComputedRef<any>;
|
|
1892
|
+
CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
|
1893
|
+
updateUnchangedValue: {
|
|
1894
|
+
type: BooleanConstructor;
|
|
1895
|
+
};
|
|
1896
|
+
onConfirm: {
|
|
1897
|
+
type: FunctionConstructor;
|
|
1898
|
+
};
|
|
1899
|
+
formattedValue: {
|
|
1900
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1901
|
+
};
|
|
1902
|
+
placeholder: {
|
|
1903
|
+
type: StringConstructor;
|
|
1904
|
+
};
|
|
1905
|
+
allowedInvalidValue: {
|
|
1906
|
+
type: StringConstructor;
|
|
1907
|
+
};
|
|
1908
|
+
}, {
|
|
1909
|
+
attrs: {
|
|
1910
|
+
[x: string]: unknown;
|
|
1911
|
+
};
|
|
1912
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1913
|
+
updateUnchangedValue: {
|
|
1914
|
+
type: BooleanConstructor;
|
|
1915
|
+
};
|
|
1916
|
+
onConfirm: {
|
|
1917
|
+
type: FunctionConstructor;
|
|
1918
|
+
};
|
|
1919
|
+
formattedValue: {
|
|
1920
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1921
|
+
};
|
|
1922
|
+
placeholder: {
|
|
1923
|
+
type: StringConstructor;
|
|
1924
|
+
};
|
|
1925
|
+
allowedInvalidValue: {
|
|
1926
|
+
type: StringConstructor;
|
|
1927
|
+
};
|
|
1928
|
+
}>> & {
|
|
1929
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1930
|
+
}>>;
|
|
1931
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
1932
|
+
datePickerRef: import("vue").Ref<import("../../../es/shared/types").AnyObject | null>;
|
|
1933
|
+
panelInstRef: import("vue").Ref<null>;
|
|
1934
|
+
placeholderRef: import("vue").Ref<any>;
|
|
1935
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
1936
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1937
|
+
formatRef: import("vue").ComputedRef<string>;
|
|
1938
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
1939
|
+
focus: () => any;
|
|
1940
|
+
blur: () => any;
|
|
1941
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
|
1942
|
+
onUpdateShow: (show: boolean) => void;
|
|
1943
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
|
1944
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
1945
|
+
NDatePicker: any;
|
|
1946
|
+
}, 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<{
|
|
1947
|
+
updateUnchangedValue: {
|
|
1948
|
+
type: BooleanConstructor;
|
|
1949
|
+
};
|
|
1950
|
+
onConfirm: {
|
|
1951
|
+
type: FunctionConstructor;
|
|
1952
|
+
};
|
|
1953
|
+
formattedValue: {
|
|
1954
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1955
|
+
};
|
|
1956
|
+
placeholder: {
|
|
1957
|
+
type: StringConstructor;
|
|
1958
|
+
};
|
|
1959
|
+
allowedInvalidValue: {
|
|
1960
|
+
type: StringConstructor;
|
|
1961
|
+
};
|
|
1962
|
+
}>> & {
|
|
1963
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1964
|
+
}, {
|
|
1965
|
+
updateUnchangedValue: boolean;
|
|
1966
|
+
}>>;
|
|
1967
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1968
|
+
componentCfg: {
|
|
1969
|
+
type: ObjectConstructor;
|
|
1970
|
+
};
|
|
1971
|
+
paramCfg: {
|
|
1972
|
+
type: ObjectConstructor;
|
|
1973
|
+
default: null;
|
|
1974
|
+
};
|
|
1975
|
+
modelValue: {
|
|
1976
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1977
|
+
default: null;
|
|
1978
|
+
};
|
|
1979
|
+
}>> & {
|
|
1980
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1981
|
+
}, {
|
|
1982
|
+
modelValue: string | number | unknown[];
|
|
1983
|
+
paramCfg: Record<string, any>;
|
|
1984
|
+
}>;
|
|
1985
|
+
InputFilter: import("vue").DefineComponent<{
|
|
1986
|
+
paramCfg: {
|
|
1987
|
+
type: ObjectConstructor;
|
|
1988
|
+
default: null;
|
|
1989
|
+
};
|
|
1990
|
+
modelValue: {
|
|
1991
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
1992
|
+
default: null;
|
|
1993
|
+
};
|
|
1994
|
+
}, {
|
|
1995
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1996
|
+
paramCfg: {
|
|
1997
|
+
type: ObjectConstructor;
|
|
1998
|
+
default: null;
|
|
1999
|
+
};
|
|
2000
|
+
modelValue: {
|
|
2001
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2002
|
+
default: null;
|
|
2003
|
+
};
|
|
2004
|
+
}>> & {
|
|
2005
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2006
|
+
}>>;
|
|
2007
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
2008
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
2009
|
+
NInput: any;
|
|
2010
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2011
|
+
paramCfg: {
|
|
2012
|
+
type: ObjectConstructor;
|
|
2013
|
+
default: null;
|
|
2014
|
+
};
|
|
2015
|
+
modelValue: {
|
|
2016
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2017
|
+
default: null;
|
|
2018
|
+
};
|
|
2019
|
+
}>> & {
|
|
2020
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2021
|
+
}, {
|
|
2022
|
+
modelValue: string | number | unknown[];
|
|
2023
|
+
paramCfg: Record<string, any>;
|
|
2024
|
+
}>;
|
|
2025
|
+
InputNumber: import("vue").DefineComponent<{
|
|
2026
|
+
modelValue: {
|
|
2027
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2028
|
+
default: null;
|
|
2029
|
+
};
|
|
2030
|
+
}, {
|
|
2031
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2032
|
+
modelValue: {
|
|
2033
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2034
|
+
default: null;
|
|
2035
|
+
};
|
|
2036
|
+
}>> & {
|
|
2037
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2038
|
+
}>>;
|
|
2039
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
2040
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
2041
|
+
NInputNumber: any;
|
|
2042
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2043
|
+
modelValue: {
|
|
2044
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2045
|
+
default: null;
|
|
2046
|
+
};
|
|
2047
|
+
}>> & {
|
|
2048
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2049
|
+
}, {
|
|
2050
|
+
modelValue: string | number | unknown[];
|
|
2051
|
+
}>;
|
|
2052
|
+
SelectFilter: import("vue").DefineComponent<{
|
|
2053
|
+
paramCfg: {
|
|
2054
|
+
type: ObjectConstructor;
|
|
2055
|
+
default: null;
|
|
2056
|
+
};
|
|
2057
|
+
modelValue: {
|
|
2058
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2059
|
+
default: null;
|
|
2060
|
+
};
|
|
2061
|
+
}, {
|
|
2062
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2063
|
+
paramCfg: {
|
|
2064
|
+
type: ObjectConstructor;
|
|
2065
|
+
default: null;
|
|
2066
|
+
};
|
|
2067
|
+
modelValue: {
|
|
2068
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2069
|
+
default: null;
|
|
2070
|
+
};
|
|
2071
|
+
}>> & {
|
|
2072
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2073
|
+
}>>;
|
|
2074
|
+
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
2075
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
|
2076
|
+
optionSetting: import("vue").ComputedRef<any>;
|
|
2077
|
+
widgetOptions: import("vue").ComputedRef<any>;
|
|
2078
|
+
NSelect: any;
|
|
2079
|
+
WidgetOptionEnums: {
|
|
2080
|
+
RADIO: string;
|
|
2081
|
+
MULTIPLE: string;
|
|
2082
|
+
ALL: string;
|
|
2083
|
+
SELECT_TIME: string;
|
|
2084
|
+
PAST_TIME: string;
|
|
2085
|
+
FUTURE_TIME: string;
|
|
2086
|
+
};
|
|
2087
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2088
|
+
paramCfg: {
|
|
2089
|
+
type: ObjectConstructor;
|
|
2090
|
+
default: null;
|
|
2091
|
+
};
|
|
2092
|
+
modelValue: {
|
|
2093
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2094
|
+
default: null;
|
|
2095
|
+
};
|
|
2096
|
+
}>> & {
|
|
2097
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2098
|
+
}, {
|
|
2099
|
+
modelValue: string | number | unknown[];
|
|
2100
|
+
paramCfg: Record<string, any>;
|
|
2101
|
+
}>;
|
|
2102
|
+
WidgetTypeEnums: {
|
|
2103
|
+
INPUT_NUMBER: string;
|
|
2104
|
+
INPUT: string;
|
|
2105
|
+
SELECT: string;
|
|
2106
|
+
DATE: string;
|
|
2107
|
+
DATE_OUT: string;
|
|
2108
|
+
DATE_TIME: string;
|
|
2109
|
+
DATETIME_OUT: string;
|
|
2110
|
+
CHECKBOX_GROUP: string;
|
|
2111
|
+
INPUTNUMBER_RANGE: string;
|
|
2112
|
+
DATE_RANGE_OUT: string;
|
|
2113
|
+
DATE_RANGE_INNER: string;
|
|
2114
|
+
DATETIME_RANGE_OUT: string;
|
|
2115
|
+
DATETIME_RANGE_INNER: string;
|
|
2116
|
+
LABEL: string;
|
|
2117
|
+
SELECTLABEL: string;
|
|
2118
|
+
SELECTDYNAMIC: string;
|
|
2119
|
+
};
|
|
2120
|
+
}, 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<{
|
|
2121
|
+
paramCfg: {
|
|
2122
|
+
type: ObjectConstructor;
|
|
2123
|
+
default: null;
|
|
2124
|
+
};
|
|
2125
|
+
modelValue: {
|
|
2126
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
2127
|
+
default: null;
|
|
2128
|
+
};
|
|
2129
|
+
presetVal: {
|
|
2130
|
+
type: StringConstructor;
|
|
2131
|
+
default: null;
|
|
2132
|
+
};
|
|
2133
|
+
isAccurate: {
|
|
2134
|
+
type: BooleanConstructor;
|
|
2135
|
+
};
|
|
2136
|
+
}>> & {
|
|
2137
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2138
|
+
"onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
|
|
2139
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
|
2140
|
+
}, {
|
|
2141
|
+
modelValue: string | number | unknown[];
|
|
2142
|
+
paramCfg: Record<string, any>;
|
|
2143
|
+
presetVal: string;
|
|
2144
|
+
isAccurate: boolean;
|
|
2145
|
+
}>;
|
|
2146
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancelSaveAdd" | "saveAdd")[], "cancelSaveAdd" | "saveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2147
|
+
actionList_prop: {
|
|
2148
|
+
type: import("vue").PropType<import("..").IClassifyListType>;
|
|
2149
|
+
default: () => {};
|
|
2150
|
+
};
|
|
2151
|
+
conditionList: {
|
|
2152
|
+
type: ArrayConstructor;
|
|
2153
|
+
default: () => never[];
|
|
2154
|
+
};
|
|
2155
|
+
tableId: {
|
|
2156
|
+
type: StringConstructor;
|
|
2157
|
+
default: string;
|
|
2158
|
+
};
|
|
2159
|
+
searchFieldList: {
|
|
2160
|
+
type: ArrayConstructor;
|
|
2161
|
+
default: () => never[];
|
|
2162
|
+
};
|
|
2163
|
+
showItemName: {
|
|
2164
|
+
type: BooleanConstructor;
|
|
2165
|
+
default: boolean;
|
|
2166
|
+
};
|
|
2167
|
+
hideAddBtn: {
|
|
2168
|
+
type: BooleanConstructor;
|
|
2169
|
+
default: boolean;
|
|
2170
|
+
};
|
|
2171
|
+
}>> & {
|
|
2172
|
+
onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
2173
|
+
onSaveAdd?: ((...args: any[]) => any) | undefined;
|
|
2174
|
+
}, {
|
|
2175
|
+
searchFieldList: unknown[];
|
|
2176
|
+
tableId: string;
|
|
2177
|
+
conditionList: unknown[];
|
|
2178
|
+
actionList_prop: import("..").IClassifyListType;
|
|
2179
|
+
showItemName: boolean;
|
|
2180
|
+
hideAddBtn: boolean;
|
|
2181
|
+
}>;
|
|
1690
2182
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "cancelSaveAdd"[], "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1691
2183
|
visible: {
|
|
1692
2184
|
type: BooleanConstructor;
|
|
@@ -1783,6 +2275,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1783
2275
|
type: ObjectConstructor;
|
|
1784
2276
|
default: () => {};
|
|
1785
2277
|
};
|
|
2278
|
+
filterType: {
|
|
2279
|
+
type: StringConstructor;
|
|
2280
|
+
default: string;
|
|
2281
|
+
};
|
|
1786
2282
|
}>> & {
|
|
1787
2283
|
onChangeSearch?: ((...args: any[]) => any) | undefined;
|
|
1788
2284
|
onSetClassificationIndex?: ((...args: any[]) => any) | undefined;
|
|
@@ -1798,5 +2294,6 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1798
2294
|
hideConditionChangeSetting: number;
|
|
1799
2295
|
hideClearConditionChange: number;
|
|
1800
2296
|
isShowResetButton: boolean;
|
|
2297
|
+
filterType: string;
|
|
1801
2298
|
}>>;
|
|
1802
2299
|
export default CClassification;
|