@univerjs-pro/bases-ui 0.25.0-insiders.20260608-e4336f7
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 +3 -0
- package/lib/cjs/facade.js +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/locale/ar-SA.js +1 -0
- package/lib/cjs/locale/ca-ES.js +1 -0
- package/lib/cjs/locale/de-DE.js +1 -0
- package/lib/cjs/locale/en-US.js +1 -0
- package/lib/cjs/locale/es-ES.js +1 -0
- package/lib/cjs/locale/fa-IR.js +1 -0
- package/lib/cjs/locale/fr-FR.js +1 -0
- package/lib/cjs/locale/id-ID.js +1 -0
- package/lib/cjs/locale/it-IT.js +1 -0
- package/lib/cjs/locale/ja-JP.js +1 -0
- package/lib/cjs/locale/ko-KR.js +1 -0
- package/lib/cjs/locale/pl-PL.js +1 -0
- package/lib/cjs/locale/pt-BR.js +1 -0
- package/lib/cjs/locale/ru-RU.js +1 -0
- package/lib/cjs/locale/sk-SK.js +1 -0
- package/lib/cjs/locale/vi-VN.js +1 -0
- package/lib/cjs/locale/zh-CN.js +1 -0
- package/lib/cjs/locale/zh-HK.js +1 -0
- package/lib/cjs/locale/zh-TW.js +1 -0
- package/lib/es/facade.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/es/locale/ar-SA.js +1 -0
- package/lib/es/locale/ca-ES.js +1 -0
- package/lib/es/locale/de-DE.js +1 -0
- package/lib/es/locale/en-US.js +1 -0
- package/lib/es/locale/es-ES.js +1 -0
- package/lib/es/locale/fa-IR.js +1 -0
- package/lib/es/locale/fr-FR.js +1 -0
- package/lib/es/locale/id-ID.js +1 -0
- package/lib/es/locale/it-IT.js +1 -0
- package/lib/es/locale/ja-JP.js +1 -0
- package/lib/es/locale/ko-KR.js +1 -0
- package/lib/es/locale/pl-PL.js +1 -0
- package/lib/es/locale/pt-BR.js +1 -0
- package/lib/es/locale/ru-RU.js +1 -0
- package/lib/es/locale/sk-SK.js +1 -0
- package/lib/es/locale/vi-VN.js +1 -0
- package/lib/es/locale/zh-CN.js +1 -0
- package/lib/es/locale/zh-HK.js +1 -0
- package/lib/es/locale/zh-TW.js +1 -0
- package/lib/facade.js +1 -0
- package/lib/index.css +2533 -0
- package/lib/index.js +1 -0
- package/lib/locale/ar-SA.js +1 -0
- package/lib/locale/ca-ES.js +1 -0
- package/lib/locale/de-DE.js +1 -0
- package/lib/locale/en-US.js +1 -0
- package/lib/locale/es-ES.js +1 -0
- package/lib/locale/fa-IR.js +1 -0
- package/lib/locale/fr-FR.js +1 -0
- package/lib/locale/id-ID.js +1 -0
- package/lib/locale/it-IT.js +1 -0
- package/lib/locale/ja-JP.js +1 -0
- package/lib/locale/ko-KR.js +1 -0
- package/lib/locale/pl-PL.js +1 -0
- package/lib/locale/pt-BR.js +1 -0
- package/lib/locale/ru-RU.js +1 -0
- package/lib/locale/sk-SK.js +1 -0
- package/lib/locale/vi-VN.js +1 -0
- package/lib/locale/zh-CN.js +1 -0
- package/lib/locale/zh-HK.js +1 -0
- package/lib/locale/zh-TW.js +1 -0
- package/lib/types/commands/operations/activate-table.operation.d.ts +6 -0
- package/lib/types/commands/operations/activate-view.operation.d.ts +6 -0
- package/lib/types/commands/operations/editing.operation.d.ts +9 -0
- package/lib/types/commands/operations/keyboard.operation.d.ts +9 -0
- package/lib/types/commands/operations/scroll.operation.d.ts +7 -0
- package/lib/types/commands/operations/set-selection.operation.d.ts +5 -0
- package/lib/types/commands/operations/toolbar-menu.operation.d.ts +37 -0
- package/lib/types/commands/operations/zoom.operation.d.ts +6 -0
- package/lib/types/components/AddRecordButton.d.ts +6 -0
- package/lib/types/components/BaseAttachmentPreview.d.ts +9 -0
- package/lib/types/components/BaseCellEditors.d.ts +78 -0
- package/lib/types/components/BaseCollaborationStatus.d.ts +24 -0
- package/lib/types/components/BaseColorPalette.d.ts +13 -0
- package/lib/types/components/BaseConfirmDialog.d.ts +12 -0
- package/lib/types/components/BaseIcons.d.ts +19 -0
- package/lib/types/components/BaseMenus.d.ts +593 -0
- package/lib/types/components/BaseNumberInput.d.ts +14 -0
- package/lib/types/components/BaseStandaloneShell.d.ts +139 -0
- package/lib/types/components/BaseToolbar.d.ts +49 -0
- package/lib/types/components/CardCustomizePanel.d.ts +1 -0
- package/lib/types/components/FieldConfigPanel.d.ts +1 -0
- package/lib/types/components/FieldMenu.d.ts +44 -0
- package/lib/types/components/RecordDetailPanel.d.ts +88 -0
- package/lib/types/components/ViewTabs.d.ts +36 -0
- package/lib/types/components/base-formula-library.d.ts +25 -0
- package/lib/types/config/config.d.ts +46 -0
- package/lib/types/controllers/base-keyboard.shortcut.d.ts +9 -0
- package/lib/types/controllers/base-render.controller.d.ts +172 -0
- package/lib/types/controllers/base-theme.controller.d.ts +7 -0
- package/lib/types/controllers/base-ui.controller.d.ts +27 -0
- package/lib/types/controllers/menu.d.ts +3 -0
- package/lib/types/facade/f-base-rendered-view.d.ts +13 -0
- package/lib/types/facade/f-base-ui.d.ts +41 -0
- package/lib/types/facade/f-univer.d.ts +12 -0
- package/lib/types/facade/index.d.ts +3 -0
- package/lib/types/fields/editors/attachment.editor.d.ts +2 -0
- package/lib/types/fields/editors/date.editor.d.ts +2 -0
- package/lib/types/fields/editors/number.editor.d.ts +5 -0
- package/lib/types/fields/editors/person.editor.d.ts +2 -0
- package/lib/types/fields/editors/select.editor.d.ts +3 -0
- package/lib/types/fields/editors/text.editor.d.ts +2 -0
- package/lib/types/fields/field-ui-plugin.d.ts +63 -0
- package/lib/types/fields/renderers/attachment.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/checkbox.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/date.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/number.renderer.d.ts +5 -0
- package/lib/types/fields/renderers/select.renderer.d.ts +3 -0
- package/lib/types/fields/renderers/text.renderer.d.ts +2 -0
- package/lib/types/index.d.ts +67 -0
- package/lib/types/internal.d.ts +11 -0
- package/lib/types/locale/ar-SA.d.ts +3 -0
- package/lib/types/locale/ca-ES.d.ts +3 -0
- package/lib/types/locale/de-DE.d.ts +3 -0
- package/lib/types/locale/en-US.d.ts +1163 -0
- package/lib/types/locale/es-ES.d.ts +3 -0
- package/lib/types/locale/fa-IR.d.ts +3 -0
- package/lib/types/locale/formula/ar-SA.d.ts +1 -0
- package/lib/types/locale/formula/ca-ES.d.ts +1 -0
- package/lib/types/locale/formula/de-DE.d.ts +1 -0
- package/lib/types/locale/formula/en-US.d.ts +707 -0
- package/lib/types/locale/formula/es-ES.d.ts +1 -0
- package/lib/types/locale/formula/fa-IR.d.ts +1 -0
- package/lib/types/locale/formula/fr-FR.d.ts +1 -0
- package/lib/types/locale/formula/id-ID.d.ts +1 -0
- package/lib/types/locale/formula/it-IT.d.ts +1 -0
- package/lib/types/locale/formula/ja-JP.d.ts +1 -0
- package/lib/types/locale/formula/ko-KR.d.ts +1 -0
- package/lib/types/locale/formula/pl-PL.d.ts +1 -0
- package/lib/types/locale/formula/pt-BR.d.ts +1 -0
- package/lib/types/locale/formula/ru-RU.d.ts +1 -0
- package/lib/types/locale/formula/sk-SK.d.ts +1 -0
- package/lib/types/locale/formula/vi-VN.d.ts +1 -0
- package/lib/types/locale/formula/zh-CN.d.ts +707 -0
- package/lib/types/locale/formula/zh-HK.d.ts +1 -0
- package/lib/types/locale/formula/zh-TW.d.ts +1 -0
- package/lib/types/locale/fr-FR.d.ts +3 -0
- package/lib/types/locale/id-ID.d.ts +3 -0
- package/lib/types/locale/it-IT.d.ts +3 -0
- package/lib/types/locale/ja-JP.d.ts +3 -0
- package/lib/types/locale/ko-KR.d.ts +3 -0
- package/lib/types/locale/pl-PL.d.ts +3 -0
- package/lib/types/locale/pt-BR.d.ts +3 -0
- package/lib/types/locale/ru-RU.d.ts +3 -0
- package/lib/types/locale/sk-SK.d.ts +3 -0
- package/lib/types/locale/vi-VN.d.ts +3 -0
- package/lib/types/locale/zh-CN.d.ts +3 -0
- package/lib/types/locale/zh-HK.d.ts +3 -0
- package/lib/types/locale/zh-TW.d.ts +3 -0
- package/lib/types/menu/schema.d.ts +16 -0
- package/lib/types/plugin.d.ts +18 -0
- package/lib/types/render/base-canvas-render-component.d.ts +19 -0
- package/lib/types/render/base-render-manager.d.ts +17 -0
- package/lib/types/render/base-scene.d.ts +239 -0
- package/lib/types/render/base-view-render-controller.d.ts +285 -0
- package/lib/types/render/canvas-draw-command.d.ts +178 -0
- package/lib/types/render/layers/body.layer.d.ts +2 -0
- package/lib/types/render/layers/drag.layer.d.ts +2 -0
- package/lib/types/render/layers/editor-overlay.layer.d.ts +2 -0
- package/lib/types/render/layers/header.layer.d.ts +2 -0
- package/lib/types/render/layers/selection.layer.d.ts +2 -0
- package/lib/types/search/base-view-search.d.ts +13 -0
- package/lib/types/services/base-attachment-io.service.d.ts +21 -0
- package/lib/types/services/base-clipboard.service.d.ts +21 -0
- package/lib/types/services/base-drag.service.d.ts +19 -0
- package/lib/types/services/base-editor.service.d.ts +20 -0
- package/lib/types/services/base-field-ui-registry.service.d.ts +15 -0
- package/lib/types/services/base-formula-progress.service.d.ts +20 -0
- package/lib/types/services/base-layout.service.d.ts +30 -0
- package/lib/types/services/base-render.service.d.ts +10 -0
- package/lib/types/services/base-selection.service.d.ts +14 -0
- package/lib/types/services/base-ui-popup.service.d.ts +27 -0
- package/lib/types/services/base-ui-state.service.d.ts +156 -0
- package/lib/types/services/base-view-ui-registry.service.d.ts +15 -0
- package/lib/types/services/base-workbench-render.service.d.ts +15 -0
- package/lib/types/views/base-canvas-render-utils.d.ts +258 -0
- package/lib/types/views/base-container/BaseContainer.d.ts +30 -0
- package/lib/types/views/calendar/calendar-layout.d.ts +88 -0
- package/lib/types/views/calendar/calendar-render-controller.d.ts +7 -0
- package/lib/types/views/calendar/calendar-settings-panel.d.ts +1 -0
- package/lib/types/views/gallery/gallery-render-controller.d.ts +7 -0
- package/lib/types/views/gallery/gallery-settings-panel.d.ts +1 -0
- package/lib/types/views/gantt/gantt-layout.d.ts +91 -0
- package/lib/types/views/gantt/gantt-render-controller.d.ts +7 -0
- package/lib/types/views/gantt/gantt-settings-panel.d.ts +1 -0
- package/lib/types/views/grid/grid-render-controller.d.ts +7 -0
- package/lib/types/views/grid/grid-settings-panel.d.ts +1 -0
- package/lib/types/views/kanban/kanban-render-controller.d.ts +7 -0
- package/lib/types/views/kanban/kanban-settings-panel.d.ts +1 -0
- package/lib/types/views/view-ui-plugin.d.ts +26 -0
- package/lib/umd/facade.js +1 -0
- package/lib/umd/index.js +1 -0
- package/lib/umd/locale/ar-SA.js +1 -0
- package/lib/umd/locale/ca-ES.js +1 -0
- package/lib/umd/locale/de-DE.js +1 -0
- package/lib/umd/locale/en-US.js +1 -0
- package/lib/umd/locale/es-ES.js +1 -0
- package/lib/umd/locale/fa-IR.js +1 -0
- package/lib/umd/locale/fr-FR.js +1 -0
- package/lib/umd/locale/id-ID.js +1 -0
- package/lib/umd/locale/it-IT.js +1 -0
- package/lib/umd/locale/ja-JP.js +1 -0
- package/lib/umd/locale/ko-KR.js +1 -0
- package/lib/umd/locale/pl-PL.js +1 -0
- package/lib/umd/locale/pt-BR.js +1 -0
- package/lib/umd/locale/ru-RU.js +1 -0
- package/lib/umd/locale/sk-SK.js +1 -0
- package/lib/umd/locale/vi-VN.js +1 -0
- package/lib/umd/locale/zh-CN.js +1 -0
- package/lib/umd/locale/zh-HK.js +1 -0
- package/lib/umd/locale/zh-TW.js +1 -0
- package/package.json +98 -0
|
@@ -0,0 +1,707 @@
|
|
|
1
|
+
declare const formulaLocale: {
|
|
2
|
+
categories: {
|
|
3
|
+
math: string;
|
|
4
|
+
statistical: string;
|
|
5
|
+
text: string;
|
|
6
|
+
logical: string;
|
|
7
|
+
date: string;
|
|
8
|
+
information: string;
|
|
9
|
+
array: string;
|
|
10
|
+
compatibility: string;
|
|
11
|
+
cube: string;
|
|
12
|
+
database: string;
|
|
13
|
+
engineering: string;
|
|
14
|
+
financial: string;
|
|
15
|
+
lookup: string;
|
|
16
|
+
web: string;
|
|
17
|
+
};
|
|
18
|
+
functions: {
|
|
19
|
+
SUM: {
|
|
20
|
+
abstract: string;
|
|
21
|
+
description: string;
|
|
22
|
+
parameters: {
|
|
23
|
+
number1: {
|
|
24
|
+
name: string;
|
|
25
|
+
detail: string;
|
|
26
|
+
};
|
|
27
|
+
number2: {
|
|
28
|
+
name: string;
|
|
29
|
+
detail: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
AVERAGE: {
|
|
34
|
+
abstract: string;
|
|
35
|
+
description: string;
|
|
36
|
+
parameters: {
|
|
37
|
+
number1: {
|
|
38
|
+
name: string;
|
|
39
|
+
detail: string;
|
|
40
|
+
};
|
|
41
|
+
number2: {
|
|
42
|
+
name: string;
|
|
43
|
+
detail: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
MIN: {
|
|
48
|
+
abstract: string;
|
|
49
|
+
description: string;
|
|
50
|
+
parameters: {
|
|
51
|
+
number1: {
|
|
52
|
+
name: string;
|
|
53
|
+
detail: string;
|
|
54
|
+
};
|
|
55
|
+
number2: {
|
|
56
|
+
name: string;
|
|
57
|
+
detail: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
MAX: {
|
|
62
|
+
abstract: string;
|
|
63
|
+
description: string;
|
|
64
|
+
parameters: {
|
|
65
|
+
number1: {
|
|
66
|
+
name: string;
|
|
67
|
+
detail: string;
|
|
68
|
+
};
|
|
69
|
+
number2: {
|
|
70
|
+
name: string;
|
|
71
|
+
detail: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
COUNT: {
|
|
76
|
+
abstract: string;
|
|
77
|
+
description: string;
|
|
78
|
+
parameters: {
|
|
79
|
+
value1: {
|
|
80
|
+
name: string;
|
|
81
|
+
detail: string;
|
|
82
|
+
};
|
|
83
|
+
value2: {
|
|
84
|
+
name: string;
|
|
85
|
+
detail: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
COUNTA: {
|
|
90
|
+
abstract: string;
|
|
91
|
+
description: string;
|
|
92
|
+
parameters: {
|
|
93
|
+
value1: {
|
|
94
|
+
name: string;
|
|
95
|
+
detail: string;
|
|
96
|
+
};
|
|
97
|
+
value2: {
|
|
98
|
+
name: string;
|
|
99
|
+
detail: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
MEDIAN: {
|
|
104
|
+
abstract: string;
|
|
105
|
+
description: string;
|
|
106
|
+
parameters: {
|
|
107
|
+
number1: {
|
|
108
|
+
name: string;
|
|
109
|
+
detail: string;
|
|
110
|
+
};
|
|
111
|
+
number2: {
|
|
112
|
+
name: string;
|
|
113
|
+
detail: string;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
ROUND: {
|
|
118
|
+
abstract: string;
|
|
119
|
+
description: string;
|
|
120
|
+
parameters: {
|
|
121
|
+
number: {
|
|
122
|
+
name: string;
|
|
123
|
+
detail: string;
|
|
124
|
+
};
|
|
125
|
+
num_digits: {
|
|
126
|
+
name: string;
|
|
127
|
+
detail: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
ROUNDUP: {
|
|
132
|
+
abstract: string;
|
|
133
|
+
description: string;
|
|
134
|
+
parameters: {
|
|
135
|
+
number: {
|
|
136
|
+
name: string;
|
|
137
|
+
detail: string;
|
|
138
|
+
};
|
|
139
|
+
num_digits: {
|
|
140
|
+
name: string;
|
|
141
|
+
detail: string;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
ROUNDDOWN: {
|
|
146
|
+
abstract: string;
|
|
147
|
+
description: string;
|
|
148
|
+
parameters: {
|
|
149
|
+
number: {
|
|
150
|
+
name: string;
|
|
151
|
+
detail: string;
|
|
152
|
+
};
|
|
153
|
+
num_digits: {
|
|
154
|
+
name: string;
|
|
155
|
+
detail: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
ABS: {
|
|
160
|
+
abstract: string;
|
|
161
|
+
description: string;
|
|
162
|
+
parameters: {
|
|
163
|
+
number: {
|
|
164
|
+
name: string;
|
|
165
|
+
detail: string;
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
INT: {
|
|
170
|
+
abstract: string;
|
|
171
|
+
description: string;
|
|
172
|
+
parameters: {
|
|
173
|
+
number: {
|
|
174
|
+
name: string;
|
|
175
|
+
detail: string;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
MOD: {
|
|
180
|
+
abstract: string;
|
|
181
|
+
description: string;
|
|
182
|
+
parameters: {
|
|
183
|
+
number: {
|
|
184
|
+
name: string;
|
|
185
|
+
detail: string;
|
|
186
|
+
};
|
|
187
|
+
divisor: {
|
|
188
|
+
name: string;
|
|
189
|
+
detail: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
POWER: {
|
|
194
|
+
abstract: string;
|
|
195
|
+
description: string;
|
|
196
|
+
parameters: {
|
|
197
|
+
number: {
|
|
198
|
+
name: string;
|
|
199
|
+
detail: string;
|
|
200
|
+
};
|
|
201
|
+
power: {
|
|
202
|
+
name: string;
|
|
203
|
+
detail: string;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
SQRT: {
|
|
208
|
+
abstract: string;
|
|
209
|
+
description: string;
|
|
210
|
+
parameters: {
|
|
211
|
+
number: {
|
|
212
|
+
name: string;
|
|
213
|
+
detail: string;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
PRODUCT: {
|
|
218
|
+
abstract: string;
|
|
219
|
+
description: string;
|
|
220
|
+
parameters: {
|
|
221
|
+
number1: {
|
|
222
|
+
name: string;
|
|
223
|
+
detail: string;
|
|
224
|
+
};
|
|
225
|
+
number2: {
|
|
226
|
+
name: string;
|
|
227
|
+
detail: string;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
IF: {
|
|
232
|
+
abstract: string;
|
|
233
|
+
description: string;
|
|
234
|
+
parameters: {
|
|
235
|
+
logical_test: {
|
|
236
|
+
name: string;
|
|
237
|
+
detail: string;
|
|
238
|
+
};
|
|
239
|
+
value_if_true: {
|
|
240
|
+
name: string;
|
|
241
|
+
detail: string;
|
|
242
|
+
};
|
|
243
|
+
value_if_false: {
|
|
244
|
+
name: string;
|
|
245
|
+
detail: string;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
IFS: {
|
|
250
|
+
abstract: string;
|
|
251
|
+
description: string;
|
|
252
|
+
parameters: {
|
|
253
|
+
logical_test1: {
|
|
254
|
+
name: string;
|
|
255
|
+
detail: string;
|
|
256
|
+
};
|
|
257
|
+
value_if_true1: {
|
|
258
|
+
name: string;
|
|
259
|
+
detail: string;
|
|
260
|
+
};
|
|
261
|
+
logical_test2: {
|
|
262
|
+
name: string;
|
|
263
|
+
detail: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
IFERROR: {
|
|
268
|
+
abstract: string;
|
|
269
|
+
description: string;
|
|
270
|
+
parameters: {
|
|
271
|
+
value: {
|
|
272
|
+
name: string;
|
|
273
|
+
detail: string;
|
|
274
|
+
};
|
|
275
|
+
value_if_error: {
|
|
276
|
+
name: string;
|
|
277
|
+
detail: string;
|
|
278
|
+
};
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
AND: {
|
|
282
|
+
abstract: string;
|
|
283
|
+
description: string;
|
|
284
|
+
parameters: {
|
|
285
|
+
logical1: {
|
|
286
|
+
name: string;
|
|
287
|
+
detail: string;
|
|
288
|
+
};
|
|
289
|
+
logical2: {
|
|
290
|
+
name: string;
|
|
291
|
+
detail: string;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
OR: {
|
|
296
|
+
abstract: string;
|
|
297
|
+
description: string;
|
|
298
|
+
parameters: {
|
|
299
|
+
logical1: {
|
|
300
|
+
name: string;
|
|
301
|
+
detail: string;
|
|
302
|
+
};
|
|
303
|
+
logical2: {
|
|
304
|
+
name: string;
|
|
305
|
+
detail: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
NOT: {
|
|
310
|
+
abstract: string;
|
|
311
|
+
description: string;
|
|
312
|
+
parameters: {
|
|
313
|
+
logical: {
|
|
314
|
+
name: string;
|
|
315
|
+
detail: string;
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
};
|
|
319
|
+
TRUE: {
|
|
320
|
+
abstract: string;
|
|
321
|
+
description: string;
|
|
322
|
+
parameters: {};
|
|
323
|
+
};
|
|
324
|
+
FALSE: {
|
|
325
|
+
abstract: string;
|
|
326
|
+
description: string;
|
|
327
|
+
parameters: {};
|
|
328
|
+
};
|
|
329
|
+
CONCAT: {
|
|
330
|
+
abstract: string;
|
|
331
|
+
description: string;
|
|
332
|
+
parameters: {
|
|
333
|
+
text1: {
|
|
334
|
+
name: string;
|
|
335
|
+
detail: string;
|
|
336
|
+
};
|
|
337
|
+
text2: {
|
|
338
|
+
name: string;
|
|
339
|
+
detail: string;
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
TEXTJOIN: {
|
|
344
|
+
abstract: string;
|
|
345
|
+
description: string;
|
|
346
|
+
parameters: {
|
|
347
|
+
delimiter: {
|
|
348
|
+
name: string;
|
|
349
|
+
detail: string;
|
|
350
|
+
};
|
|
351
|
+
ignore_empty: {
|
|
352
|
+
name: string;
|
|
353
|
+
detail: string;
|
|
354
|
+
};
|
|
355
|
+
text1: {
|
|
356
|
+
name: string;
|
|
357
|
+
detail: string;
|
|
358
|
+
};
|
|
359
|
+
text2: {
|
|
360
|
+
name: string;
|
|
361
|
+
detail: string;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
};
|
|
365
|
+
LEN: {
|
|
366
|
+
abstract: string;
|
|
367
|
+
description: string;
|
|
368
|
+
parameters: {
|
|
369
|
+
text: {
|
|
370
|
+
name: string;
|
|
371
|
+
detail: string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
LEFT: {
|
|
376
|
+
abstract: string;
|
|
377
|
+
description: string;
|
|
378
|
+
parameters: {
|
|
379
|
+
text: {
|
|
380
|
+
name: string;
|
|
381
|
+
detail: string;
|
|
382
|
+
};
|
|
383
|
+
num_chars: {
|
|
384
|
+
name: string;
|
|
385
|
+
detail: string;
|
|
386
|
+
};
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
RIGHT: {
|
|
390
|
+
abstract: string;
|
|
391
|
+
description: string;
|
|
392
|
+
parameters: {
|
|
393
|
+
text: {
|
|
394
|
+
name: string;
|
|
395
|
+
detail: string;
|
|
396
|
+
};
|
|
397
|
+
num_chars: {
|
|
398
|
+
name: string;
|
|
399
|
+
detail: string;
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
MID: {
|
|
404
|
+
abstract: string;
|
|
405
|
+
description: string;
|
|
406
|
+
parameters: {
|
|
407
|
+
text: {
|
|
408
|
+
name: string;
|
|
409
|
+
detail: string;
|
|
410
|
+
};
|
|
411
|
+
start_num: {
|
|
412
|
+
name: string;
|
|
413
|
+
detail: string;
|
|
414
|
+
};
|
|
415
|
+
num_chars: {
|
|
416
|
+
name: string;
|
|
417
|
+
detail: string;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
UPPER: {
|
|
422
|
+
abstract: string;
|
|
423
|
+
description: string;
|
|
424
|
+
parameters: {
|
|
425
|
+
text: {
|
|
426
|
+
name: string;
|
|
427
|
+
detail: string;
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
};
|
|
431
|
+
LOWER: {
|
|
432
|
+
abstract: string;
|
|
433
|
+
description: string;
|
|
434
|
+
parameters: {
|
|
435
|
+
text: {
|
|
436
|
+
name: string;
|
|
437
|
+
detail: string;
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
};
|
|
441
|
+
TRIM: {
|
|
442
|
+
abstract: string;
|
|
443
|
+
description: string;
|
|
444
|
+
parameters: {
|
|
445
|
+
text: {
|
|
446
|
+
name: string;
|
|
447
|
+
detail: string;
|
|
448
|
+
};
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
FIND: {
|
|
452
|
+
abstract: string;
|
|
453
|
+
description: string;
|
|
454
|
+
parameters: {
|
|
455
|
+
find_text: {
|
|
456
|
+
name: string;
|
|
457
|
+
detail: string;
|
|
458
|
+
};
|
|
459
|
+
within_text: {
|
|
460
|
+
name: string;
|
|
461
|
+
detail: string;
|
|
462
|
+
};
|
|
463
|
+
start_num: {
|
|
464
|
+
name: string;
|
|
465
|
+
detail: string;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
SEARCH: {
|
|
470
|
+
abstract: string;
|
|
471
|
+
description: string;
|
|
472
|
+
parameters: {
|
|
473
|
+
find_text: {
|
|
474
|
+
name: string;
|
|
475
|
+
detail: string;
|
|
476
|
+
};
|
|
477
|
+
within_text: {
|
|
478
|
+
name: string;
|
|
479
|
+
detail: string;
|
|
480
|
+
};
|
|
481
|
+
start_num: {
|
|
482
|
+
name: string;
|
|
483
|
+
detail: string;
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
SUBSTITUTE: {
|
|
488
|
+
abstract: string;
|
|
489
|
+
description: string;
|
|
490
|
+
parameters: {
|
|
491
|
+
text: {
|
|
492
|
+
name: string;
|
|
493
|
+
detail: string;
|
|
494
|
+
};
|
|
495
|
+
old_text: {
|
|
496
|
+
name: string;
|
|
497
|
+
detail: string;
|
|
498
|
+
};
|
|
499
|
+
new_text: {
|
|
500
|
+
name: string;
|
|
501
|
+
detail: string;
|
|
502
|
+
};
|
|
503
|
+
instance_num: {
|
|
504
|
+
name: string;
|
|
505
|
+
detail: string;
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
REPLACE: {
|
|
510
|
+
abstract: string;
|
|
511
|
+
description: string;
|
|
512
|
+
parameters: {
|
|
513
|
+
old_text: {
|
|
514
|
+
name: string;
|
|
515
|
+
detail: string;
|
|
516
|
+
};
|
|
517
|
+
start_num: {
|
|
518
|
+
name: string;
|
|
519
|
+
detail: string;
|
|
520
|
+
};
|
|
521
|
+
num_chars: {
|
|
522
|
+
name: string;
|
|
523
|
+
detail: string;
|
|
524
|
+
};
|
|
525
|
+
new_text: {
|
|
526
|
+
name: string;
|
|
527
|
+
detail: string;
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
};
|
|
531
|
+
TEXT: {
|
|
532
|
+
abstract: string;
|
|
533
|
+
description: string;
|
|
534
|
+
parameters: {
|
|
535
|
+
value: {
|
|
536
|
+
name: string;
|
|
537
|
+
detail: string;
|
|
538
|
+
};
|
|
539
|
+
format_text: {
|
|
540
|
+
name: string;
|
|
541
|
+
detail: string;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
VALUE: {
|
|
546
|
+
abstract: string;
|
|
547
|
+
description: string;
|
|
548
|
+
parameters: {
|
|
549
|
+
text: {
|
|
550
|
+
name: string;
|
|
551
|
+
detail: string;
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
TODAY: {
|
|
556
|
+
abstract: string;
|
|
557
|
+
description: string;
|
|
558
|
+
parameters: {};
|
|
559
|
+
};
|
|
560
|
+
NOW: {
|
|
561
|
+
abstract: string;
|
|
562
|
+
description: string;
|
|
563
|
+
parameters: {};
|
|
564
|
+
};
|
|
565
|
+
DATE: {
|
|
566
|
+
abstract: string;
|
|
567
|
+
description: string;
|
|
568
|
+
parameters: {
|
|
569
|
+
year: {
|
|
570
|
+
name: string;
|
|
571
|
+
detail: string;
|
|
572
|
+
};
|
|
573
|
+
month: {
|
|
574
|
+
name: string;
|
|
575
|
+
detail: string;
|
|
576
|
+
};
|
|
577
|
+
day: {
|
|
578
|
+
name: string;
|
|
579
|
+
detail: string;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
YEAR: {
|
|
584
|
+
abstract: string;
|
|
585
|
+
description: string;
|
|
586
|
+
parameters: {
|
|
587
|
+
serialNumber: {
|
|
588
|
+
name: string;
|
|
589
|
+
detail: string;
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
MONTH: {
|
|
594
|
+
abstract: string;
|
|
595
|
+
description: string;
|
|
596
|
+
parameters: {
|
|
597
|
+
serialNumber: {
|
|
598
|
+
name: string;
|
|
599
|
+
detail: string;
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
};
|
|
603
|
+
DAY: {
|
|
604
|
+
abstract: string;
|
|
605
|
+
description: string;
|
|
606
|
+
parameters: {
|
|
607
|
+
serialNumber: {
|
|
608
|
+
name: string;
|
|
609
|
+
detail: string;
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
};
|
|
613
|
+
HOUR: {
|
|
614
|
+
abstract: string;
|
|
615
|
+
description: string;
|
|
616
|
+
parameters: {
|
|
617
|
+
serialNumber: {
|
|
618
|
+
name: string;
|
|
619
|
+
detail: string;
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
};
|
|
623
|
+
MINUTE: {
|
|
624
|
+
abstract: string;
|
|
625
|
+
description: string;
|
|
626
|
+
parameters: {
|
|
627
|
+
serialNumber: {
|
|
628
|
+
name: string;
|
|
629
|
+
detail: string;
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
SECOND: {
|
|
634
|
+
abstract: string;
|
|
635
|
+
description: string;
|
|
636
|
+
parameters: {
|
|
637
|
+
serialNumber: {
|
|
638
|
+
name: string;
|
|
639
|
+
detail: string;
|
|
640
|
+
};
|
|
641
|
+
};
|
|
642
|
+
};
|
|
643
|
+
DAYS: {
|
|
644
|
+
abstract: string;
|
|
645
|
+
description: string;
|
|
646
|
+
parameters: {
|
|
647
|
+
end_date: {
|
|
648
|
+
name: string;
|
|
649
|
+
detail: string;
|
|
650
|
+
};
|
|
651
|
+
start_date: {
|
|
652
|
+
name: string;
|
|
653
|
+
detail: string;
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
};
|
|
657
|
+
ISBLANK: {
|
|
658
|
+
abstract: string;
|
|
659
|
+
description: string;
|
|
660
|
+
parameters: {
|
|
661
|
+
value: {
|
|
662
|
+
name: string;
|
|
663
|
+
detail: string;
|
|
664
|
+
};
|
|
665
|
+
};
|
|
666
|
+
};
|
|
667
|
+
ISNUMBER: {
|
|
668
|
+
abstract: string;
|
|
669
|
+
description: string;
|
|
670
|
+
parameters: {
|
|
671
|
+
value: {
|
|
672
|
+
name: string;
|
|
673
|
+
detail: string;
|
|
674
|
+
};
|
|
675
|
+
};
|
|
676
|
+
};
|
|
677
|
+
ISTEXT: {
|
|
678
|
+
abstract: string;
|
|
679
|
+
description: string;
|
|
680
|
+
parameters: {
|
|
681
|
+
value: {
|
|
682
|
+
name: string;
|
|
683
|
+
detail: string;
|
|
684
|
+
};
|
|
685
|
+
};
|
|
686
|
+
};
|
|
687
|
+
ISERROR: {
|
|
688
|
+
abstract: string;
|
|
689
|
+
description: string;
|
|
690
|
+
parameters: {
|
|
691
|
+
value: {
|
|
692
|
+
name: string;
|
|
693
|
+
detail: string;
|
|
694
|
+
};
|
|
695
|
+
};
|
|
696
|
+
};
|
|
697
|
+
};
|
|
698
|
+
generic: {
|
|
699
|
+
engineAbstract: string;
|
|
700
|
+
engineDescription: string;
|
|
701
|
+
argument: {
|
|
702
|
+
name: string;
|
|
703
|
+
detail: string;
|
|
704
|
+
};
|
|
705
|
+
};
|
|
706
|
+
};
|
|
707
|
+
export default formulaLocale;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './zh-CN';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './zh-CN';
|