cnhis-design-vue 3.3.3-beta.70 → 3.3.3-beta.73
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 +1 -8
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +1 -8
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +1 -8
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
- package/es/components/classification/src/index.vue.d.ts +1 -11
- package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +3 -1
- 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/form-render/src/components/renderer/date.d.ts +3 -1
- package/es/components/form-render/src/components/renderer/date.js +12 -10
- 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/index.js +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/index.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/helpers/options.js +47 -121
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +1 -8
- package/es/components/table-filter/src/components/classify-filter/index.vue2.js +3 -2
- package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.d.ts +1 -0
- package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.js +23 -2
- package/es/components/table-filter/src/hooks/useAdvanced.js +5 -4
- package/es/components/table-filter/src/types/enums.d.ts +0 -8
- package/es/components/table-filter/src/types/enums.js +0 -8
- package/es/env.d.ts +25 -25
- package/es/shared/hooks/useDateTime.js +1 -1
- package/es/shared/package.json.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
@@ -1,87 +1,87 @@
|
|
1
|
-
# 安装
|
2
|
-
|
3
|
-
```shell
|
4
|
-
npm i cnhis-design-vue@[版本号]
|
5
|
-
# or
|
6
|
-
yarn add cnhis-design-vue@[版本号] #推荐
|
7
|
-
```
|
8
|
-
|
9
|
-
## 1.全局引入
|
10
|
-
|
11
|
-
```typescript
|
12
|
-
// main.ts
|
13
|
-
import { createApp } from 'vue';
|
14
|
-
import App from './App.vue';
|
15
|
-
import 'cnhis-design-vue/es/packages/index.css';
|
16
|
-
import cui from 'cnhis-design-vue';
|
17
|
-
|
18
|
-
const app = createApp(App);
|
19
|
-
app.use(cui).mount('#app');
|
20
|
-
```
|
21
|
-
|
22
|
-
## 2. 按需引入
|
23
|
-
|
24
|
-
组件现在支持了自动按需引入, 但是样式文件需要额外的处理
|
25
|
-
|
26
|
-
### 2.1 样式处理方式1 (按需引入样式)
|
27
|
-
|
28
|
-
```shell
|
29
|
-
# 安装自动导入样式的插件
|
30
|
-
npm i -d vite-plugin-style-import
|
31
|
-
```
|
32
|
-
|
33
|
-
```typescript
|
34
|
-
// vite.config.ts
|
35
|
-
import { defineConfig } from 'vite';
|
36
|
-
import { createStyleImportPlugin } from 'vite-plugin-style-import';
|
37
|
-
|
38
|
-
export default defineConfig({
|
39
|
-
plugins: [
|
40
|
-
// ...otherPlugins
|
41
|
-
createStyleImportPlugin({
|
42
|
-
libs: [
|
43
|
-
{
|
44
|
-
libraryName: 'cnhis-design-vue',
|
45
|
-
esModule: true,
|
46
|
-
ensureStyleFile: true,
|
47
|
-
resolveStyle: name => {
|
48
|
-
return `cnhis-design-vue/es/components/${ name.slice(2) }/style/index.css`;
|
49
|
-
}
|
50
|
-
}
|
51
|
-
]
|
52
|
-
})
|
53
|
-
]
|
54
|
-
});
|
55
|
-
```
|
56
|
-
|
57
|
-
### 2.2 样式处理方式2 (全局引入样式)
|
58
|
-
|
59
|
-
```typescript
|
60
|
-
// main.ts
|
61
|
-
import 'cnhis-design-vue/es/components/index.css';
|
62
|
-
```
|
63
|
-
|
64
|
-
## 3.FAQ
|
65
|
-
|
66
|
-
### 3.1 项目打包后样式丢失
|
67
|
-
|
68
|
-
处理方法, 将 cnhis-design-vue 从 vendor 包中移除 (没有出现此问题则不需要)
|
69
|
-
|
70
|
-
```typescript
|
71
|
-
// vite.config.ts
|
72
|
-
import { defineConfig } from 'vite';
|
73
|
-
|
74
|
-
export default defineConfig({
|
75
|
-
build: {
|
76
|
-
rollupOptions: {
|
77
|
-
// ..otherOptions
|
78
|
-
output: {
|
79
|
-
dir: './dist',
|
80
|
-
manualChunks: {
|
81
|
-
'cnhis-vendor': ['cnhis-design-vue']
|
82
|
-
}
|
83
|
-
}
|
84
|
-
}
|
85
|
-
}
|
86
|
-
});
|
87
|
-
```
|
1
|
+
# 安装
|
2
|
+
|
3
|
+
```shell
|
4
|
+
npm i cnhis-design-vue@[版本号]
|
5
|
+
# or
|
6
|
+
yarn add cnhis-design-vue@[版本号] #推荐
|
7
|
+
```
|
8
|
+
|
9
|
+
## 1.全局引入
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
// main.ts
|
13
|
+
import { createApp } from 'vue';
|
14
|
+
import App from './App.vue';
|
15
|
+
import 'cnhis-design-vue/es/packages/index.css';
|
16
|
+
import cui from 'cnhis-design-vue';
|
17
|
+
|
18
|
+
const app = createApp(App);
|
19
|
+
app.use(cui).mount('#app');
|
20
|
+
```
|
21
|
+
|
22
|
+
## 2. 按需引入
|
23
|
+
|
24
|
+
组件现在支持了自动按需引入, 但是样式文件需要额外的处理
|
25
|
+
|
26
|
+
### 2.1 样式处理方式1 (按需引入样式)
|
27
|
+
|
28
|
+
```shell
|
29
|
+
# 安装自动导入样式的插件
|
30
|
+
npm i -d vite-plugin-style-import
|
31
|
+
```
|
32
|
+
|
33
|
+
```typescript
|
34
|
+
// vite.config.ts
|
35
|
+
import { defineConfig } from 'vite';
|
36
|
+
import { createStyleImportPlugin } from 'vite-plugin-style-import';
|
37
|
+
|
38
|
+
export default defineConfig({
|
39
|
+
plugins: [
|
40
|
+
// ...otherPlugins
|
41
|
+
createStyleImportPlugin({
|
42
|
+
libs: [
|
43
|
+
{
|
44
|
+
libraryName: 'cnhis-design-vue',
|
45
|
+
esModule: true,
|
46
|
+
ensureStyleFile: true,
|
47
|
+
resolveStyle: name => {
|
48
|
+
return `cnhis-design-vue/es/components/${ name.slice(2) }/style/index.css`;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
]
|
52
|
+
})
|
53
|
+
]
|
54
|
+
});
|
55
|
+
```
|
56
|
+
|
57
|
+
### 2.2 样式处理方式2 (全局引入样式)
|
58
|
+
|
59
|
+
```typescript
|
60
|
+
// main.ts
|
61
|
+
import 'cnhis-design-vue/es/components/index.css';
|
62
|
+
```
|
63
|
+
|
64
|
+
## 3.FAQ
|
65
|
+
|
66
|
+
### 3.1 项目打包后样式丢失
|
67
|
+
|
68
|
+
处理方法, 将 cnhis-design-vue 从 vendor 包中移除 (没有出现此问题则不需要)
|
69
|
+
|
70
|
+
```typescript
|
71
|
+
// vite.config.ts
|
72
|
+
import { defineConfig } from 'vite';
|
73
|
+
|
74
|
+
export default defineConfig({
|
75
|
+
build: {
|
76
|
+
rollupOptions: {
|
77
|
+
// ..otherOptions
|
78
|
+
output: {
|
79
|
+
dir: './dist',
|
80
|
+
manualChunks: {
|
81
|
+
'cnhis-vendor': ['cnhis-design-vue']
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
});
|
87
|
+
```
|
@@ -625,6 +625,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
625
625
|
menuProps: {
|
626
626
|
class: string;
|
627
627
|
};
|
628
|
+
specialDateRange: string[];
|
628
629
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
629
630
|
actionList_prop: {
|
630
631
|
type: import("vue").PropType<import("..").IClassifyListType>;
|
@@ -2393,14 +2394,6 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
2393
2394
|
ConditionEnums: {
|
2394
2395
|
NULL: string;
|
2395
2396
|
EQUAL: string;
|
2396
|
-
NOT_NULL: string;
|
2397
|
-
NEQ: string;
|
2398
|
-
BIG: string;
|
2399
|
-
LESS: string;
|
2400
|
-
BIGEQ: string;
|
2401
|
-
LESSEQ: string;
|
2402
|
-
L_: string;
|
2403
|
-
N_: string;
|
2404
2397
|
IN_THE_PAST: string;
|
2405
2398
|
IN_THE_FUTURE: string;
|
2406
2399
|
IN_THE_PAST_DI: string;
|
@@ -88,6 +88,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
88
88
|
menuProps: {
|
89
89
|
class: string;
|
90
90
|
};
|
91
|
+
specialDateRange: string[];
|
91
92
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
92
93
|
actionList_prop: {
|
93
94
|
type: import("vue").PropType<import("../../../..").IClassifyListType>;
|
@@ -1856,14 +1857,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
1856
1857
|
ConditionEnums: {
|
1857
1858
|
NULL: string;
|
1858
1859
|
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
1860
|
IN_THE_PAST: string;
|
1868
1861
|
IN_THE_FUTURE: string;
|
1869
1862
|
IN_THE_PAST_DI: string;
|
@@ -382,6 +382,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
382
382
|
menuProps: {
|
383
383
|
class: string;
|
384
384
|
};
|
385
|
+
specialDateRange: string[];
|
385
386
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
386
387
|
actionList_prop: {
|
387
388
|
type: import("vue").PropType<IClassifyListType>;
|
@@ -2150,14 +2151,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
2150
2151
|
ConditionEnums: {
|
2151
2152
|
NULL: string;
|
2152
2153
|
EQUAL: string;
|
2153
|
-
NOT_NULL: string;
|
2154
|
-
NEQ: string;
|
2155
|
-
BIG: string;
|
2156
|
-
LESS: string;
|
2157
|
-
BIGEQ: string;
|
2158
|
-
LESSEQ: string;
|
2159
|
-
L_: string;
|
2160
|
-
N_: string;
|
2161
2154
|
IN_THE_PAST: string;
|
2162
2155
|
IN_THE_FUTURE: string;
|
2163
2156
|
IN_THE_PAST_DI: string;
|
@@ -627,6 +627,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
627
627
|
menuProps: {
|
628
628
|
class: string;
|
629
629
|
};
|
630
|
+
specialDateRange: string[];
|
630
631
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
631
632
|
actionList_prop: {
|
632
633
|
type: PropType<IClassifyListType>;
|
@@ -708,9 +709,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
708
709
|
}[];
|
709
710
|
handleEditDisplayCategory: (item: import("../../../components/table-filter/src/types").ICategoryItemType) => void;
|
710
711
|
handleDisplayCategoryAddState: () => void;
|
711
|
-
/**
|
712
|
-
* 改变展示方式
|
713
|
-
*/
|
714
712
|
findConditionByDisplayCategory: (sid: string) => unknown;
|
715
713
|
handleDisplayCategorySelectProxy: (item: import("../../../components/table-filter/src/types").ICategoryItemType) => void;
|
716
714
|
clearFormData: () => void;
|
@@ -2398,14 +2396,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
2398
2396
|
ConditionEnums: {
|
2399
2397
|
NULL: string;
|
2400
2398
|
EQUAL: string;
|
2401
|
-
NOT_NULL: string;
|
2402
|
-
NEQ: string;
|
2403
|
-
BIG: string;
|
2404
|
-
LESS: string;
|
2405
|
-
BIGEQ: string;
|
2406
|
-
LESSEQ: string;
|
2407
|
-
L_: string;
|
2408
|
-
N_: string;
|
2409
2399
|
IN_THE_PAST: string;
|
2410
2400
|
IN_THE_FUTURE: string;
|
2411
2401
|
IN_THE_PAST_DI: string;
|
@@ -858,6 +858,7 @@ function useBirthProcess(canvas, propItems, emits, pointTipProps, pointMenuProps
|
|
858
858
|
position = "center",
|
859
859
|
spaceGridNumber = 1,
|
860
860
|
showNumber = true,
|
861
|
+
showPositiveSign = false,
|
861
862
|
showMaxMinNumber = true,
|
862
863
|
showName = true
|
863
864
|
} = item;
|
@@ -876,7 +877,8 @@ function useBirthProcess(canvas, propItems, emits, pointTipProps, pointMenuProps
|
|
876
877
|
const top = i === 0 ? endY - 8 : i === list.length - 1 && padding[0] && (!originYCervix || key === "FHR") ? originY + 8 : baseTop;
|
877
878
|
const isMaxMinNumber = i === 0 || i === listLen - 1;
|
878
879
|
if (showNumber && (!isMaxMinNumber || showMaxMinNumber)) {
|
879
|
-
|
880
|
+
const numVaule = showPositiveSign && +num > 0 ? "+" + num : String(num);
|
881
|
+
textList.push(drawScaleNumber(numVaule, item, textLeft, top));
|
880
882
|
}
|
881
883
|
lineList.push(...drawScaleLine(item, i, lineXMain, lineXSub, baseTop, yCellHeight, originY, listLen, 1));
|
882
884
|
});
|
@@ -539,12 +539,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
539
539
|
}>;
|
540
540
|
developMode: boolean;
|
541
541
|
draggable: boolean;
|
542
|
-
|
543
|
-
isFieldSet: boolean;
|
544
|
-
hideExpressionOption: AnyObject[];
|
542
|
+
isHighlightRow: boolean;
|
545
543
|
idx: number;
|
546
544
|
isHighlight: boolean;
|
547
|
-
|
545
|
+
isFieldSet: boolean;
|
546
|
+
fieldDescribeMode: "column" | "tooltip";
|
547
|
+
hideExpressionOption: AnyObject[];
|
548
548
|
}>;
|
549
549
|
EditDialog: import("vue").DefineComponent<{
|
550
550
|
visible: {
|
@@ -568,12 +568,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
568
568
|
}>;
|
569
569
|
developMode: boolean;
|
570
570
|
draggable: boolean;
|
571
|
-
|
572
|
-
isFieldSet: boolean;
|
573
|
-
hideExpressionOption: AnyObject[];
|
571
|
+
isHighlightRow: boolean;
|
574
572
|
idx: number;
|
575
573
|
isHighlight: boolean;
|
576
|
-
|
574
|
+
isFieldSet: boolean;
|
575
|
+
fieldDescribeMode: "column" | "tooltip";
|
576
|
+
hideExpressionOption: AnyObject[];
|
577
577
|
}>;
|
578
578
|
setStyle: typeof setStyle;
|
579
579
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "save" | "reset")[], "close" | "save" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
@@ -759,12 +759,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
759
759
|
}>;
|
760
760
|
developMode: boolean;
|
761
761
|
draggable: boolean;
|
762
|
-
|
763
|
-
isFieldSet: boolean;
|
764
|
-
hideExpressionOption: AnyObject[];
|
762
|
+
isHighlightRow: boolean;
|
765
763
|
idx: number;
|
766
764
|
isHighlight: boolean;
|
767
|
-
|
765
|
+
isFieldSet: boolean;
|
766
|
+
fieldDescribeMode: "column" | "tooltip";
|
767
|
+
hideExpressionOption: AnyObject[];
|
768
768
|
}>;
|
769
769
|
isArray: {
|
770
770
|
(value?: any): value is any[];
|
@@ -904,9 +904,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
904
904
|
showSeq: boolean;
|
905
905
|
developMode: boolean;
|
906
906
|
footerFlag: boolean;
|
907
|
+
fieldDescribeMode: "column" | "tooltip";
|
907
908
|
customColumns: FieldSetColumnItem[];
|
908
909
|
showSortPriority: boolean;
|
909
910
|
showHeadFilter: boolean;
|
910
|
-
fieldDescribeMode: "column" | "tooltip";
|
911
911
|
}>;
|
912
912
|
export default _default;
|
@@ -384,11 +384,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
384
384
|
}>;
|
385
385
|
developMode: boolean;
|
386
386
|
draggable: boolean;
|
387
|
-
|
388
|
-
isFieldSet: boolean;
|
389
|
-
hideExpressionOption: AnyObject[];
|
387
|
+
isHighlightRow: boolean;
|
390
388
|
idx: number;
|
391
389
|
isHighlight: boolean;
|
392
|
-
|
390
|
+
isFieldSet: boolean;
|
391
|
+
fieldDescribeMode: "column" | "tooltip";
|
392
|
+
hideExpressionOption: AnyObject[];
|
393
393
|
}>;
|
394
394
|
export default _default;
|
@@ -283,14 +283,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
283
283
|
compareMap?: {
|
284
284
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
285
285
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
286
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
287
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
288
286
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
289
287
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
290
288
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
291
289
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
292
290
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
293
291
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
292
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
293
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
294
294
|
} | undefined;
|
295
295
|
isRestoreDefault?: boolean | undefined;
|
296
296
|
sqlExpression?: string | undefined;
|
@@ -1946,14 +1946,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
1946
1946
|
compareMap?: {
|
1947
1947
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1948
1948
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1949
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1950
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1951
1949
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
1952
1950
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
1953
1951
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1954
1952
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1955
1953
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
1956
1954
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
1955
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1956
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1957
1957
|
} | undefined;
|
1958
1958
|
}[] | undefined;
|
1959
1959
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -2225,14 +2225,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
2225
2225
|
compareMap?: {
|
2226
2226
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2227
2227
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2228
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2229
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2230
2228
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2231
2229
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2232
2230
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2233
2231
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2234
2232
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2235
2233
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2234
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2235
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2236
2236
|
} | undefined;
|
2237
2237
|
}[] | undefined;
|
2238
2238
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -2494,14 +2494,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
2494
2494
|
compareMap?: {
|
2495
2495
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2496
2496
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2497
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2498
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2499
2497
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2500
2498
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2501
2499
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2502
2500
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2503
2501
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2504
2502
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2503
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2504
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2505
2505
|
} | undefined;
|
2506
2506
|
}[] | undefined;
|
2507
2507
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -2771,14 +2771,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
2771
2771
|
compareMap?: {
|
2772
2772
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2773
2773
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2774
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2775
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2776
2774
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2777
2775
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2778
2776
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2779
2777
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2780
2778
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2781
2779
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2780
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2781
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2782
2782
|
} | undefined;
|
2783
2783
|
}[] | undefined;
|
2784
2784
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -4058,14 +4058,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
4058
4058
|
compareMap?: {
|
4059
4059
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4060
4060
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4061
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4062
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4063
4061
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
4064
4062
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
4065
4063
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4066
4064
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4067
4065
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
4068
4066
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
4067
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4068
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4069
4069
|
} | undefined;
|
4070
4070
|
isRestoreDefault?: boolean | undefined;
|
4071
4071
|
sqlExpression?: string | undefined;
|
@@ -286,14 +286,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
286
286
|
compareMap?: {
|
287
287
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
288
288
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
289
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
290
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
291
289
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
292
290
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
293
291
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
294
292
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
295
293
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
296
294
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
295
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
296
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
297
297
|
} | undefined;
|
298
298
|
isRestoreDefault?: boolean | undefined;
|
299
299
|
sqlExpression?: string | undefined;
|
@@ -1949,14 +1949,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
1949
1949
|
compareMap?: {
|
1950
1950
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1951
1951
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1952
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1953
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1954
1952
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
1955
1953
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
1956
1954
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1957
1955
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1958
1956
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
1959
1957
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
1958
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1959
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1960
1960
|
} | undefined;
|
1961
1961
|
}[] | undefined;
|
1962
1962
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -2228,14 +2228,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
2228
2228
|
compareMap?: {
|
2229
2229
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2230
2230
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2231
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2232
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2233
2231
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2234
2232
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2235
2233
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2236
2234
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2237
2235
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2238
2236
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2237
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2238
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2239
2239
|
} | undefined;
|
2240
2240
|
}[] | undefined;
|
2241
2241
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -2497,14 +2497,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
2497
2497
|
compareMap?: {
|
2498
2498
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2499
2499
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2500
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2501
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2502
2500
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2503
2501
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2504
2502
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2505
2503
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2506
2504
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2507
2505
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2506
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2507
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2508
2508
|
} | undefined;
|
2509
2509
|
}[] | undefined;
|
2510
2510
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -2774,14 +2774,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
2774
2774
|
compareMap?: {
|
2775
2775
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2776
2776
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2777
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2778
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2779
2777
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2780
2778
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2781
2779
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2782
2780
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2783
2781
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2784
2782
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2783
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2784
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2785
2785
|
} | undefined;
|
2786
2786
|
}[] | undefined;
|
2787
2787
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -4061,14 +4061,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
4061
4061
|
compareMap?: {
|
4062
4062
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4063
4063
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4064
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4065
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4066
4064
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
4067
4065
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
4068
4066
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4069
4067
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4070
4068
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
4071
4069
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
4070
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4071
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4072
4072
|
} | undefined;
|
4073
4073
|
isRestoreDefault?: boolean | undefined;
|
4074
4074
|
sqlExpression?: string | undefined;
|