@univerjs/sheets-data-validation-ui 0.7.0-nightly.202505211607 → 0.7.0-nightly.202505231607
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.
@@ -1,3 +1,195 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/**
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
3
|
+
*
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
* you may not use this file except in compliance with the License.
|
6
|
+
* You may obtain a copy of the License at
|
7
|
+
*
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
*
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
* See the License for the specific language governing permissions and
|
14
|
+
* limitations under the License.
|
15
|
+
*/
|
16
|
+
declare const locale: {
|
17
|
+
dataValidation: {
|
18
|
+
title: string;
|
19
|
+
validFail: {
|
20
|
+
value: string;
|
21
|
+
common: string;
|
22
|
+
number: string;
|
23
|
+
formula: string;
|
24
|
+
integer: string;
|
25
|
+
date: string;
|
26
|
+
list: string;
|
27
|
+
listInvalid: string;
|
28
|
+
checkboxEqual: string;
|
29
|
+
formulaError: string;
|
30
|
+
listIntersects: string;
|
31
|
+
primitive: string;
|
32
|
+
};
|
33
|
+
panel: {
|
34
|
+
title: string;
|
35
|
+
addTitle: string;
|
36
|
+
removeAll: string;
|
37
|
+
add: string;
|
38
|
+
range: string;
|
39
|
+
type: string;
|
40
|
+
options: string;
|
41
|
+
operator: string;
|
42
|
+
removeRule: string;
|
43
|
+
done: string;
|
44
|
+
formulaPlaceholder: string;
|
45
|
+
valuePlaceholder: string;
|
46
|
+
formulaAnd: string;
|
47
|
+
invalid: string;
|
48
|
+
showWarning: string;
|
49
|
+
rejectInput: string;
|
50
|
+
messageInfo: string;
|
51
|
+
showInfo: string;
|
52
|
+
rangeError: string;
|
53
|
+
allowBlank: string;
|
54
|
+
};
|
55
|
+
operators: {
|
56
|
+
between: string;
|
57
|
+
greaterThan: string;
|
58
|
+
greaterThanOrEqual: string;
|
59
|
+
lessThan: string;
|
60
|
+
lessThanOrEqual: string;
|
61
|
+
equal: string;
|
62
|
+
notEqual: string;
|
63
|
+
notBetween: string;
|
64
|
+
legal: string;
|
65
|
+
};
|
66
|
+
ruleName: {
|
67
|
+
between: string;
|
68
|
+
greaterThan: string;
|
69
|
+
greaterThanOrEqual: string;
|
70
|
+
lessThan: string;
|
71
|
+
lessThanOrEqual: string;
|
72
|
+
equal: string;
|
73
|
+
notEqual: string;
|
74
|
+
notBetween: string;
|
75
|
+
legal: string;
|
76
|
+
};
|
77
|
+
errorMsg: {
|
78
|
+
between: string;
|
79
|
+
greaterThan: string;
|
80
|
+
greaterThanOrEqual: string;
|
81
|
+
lessThan: string;
|
82
|
+
lessThanOrEqual: string;
|
83
|
+
equal: string;
|
84
|
+
notEqual: string;
|
85
|
+
notBetween: string;
|
86
|
+
legal: string;
|
87
|
+
};
|
88
|
+
any: {
|
89
|
+
title: string;
|
90
|
+
error: string;
|
91
|
+
};
|
92
|
+
date: {
|
93
|
+
title: string;
|
94
|
+
operators: {
|
95
|
+
between: string;
|
96
|
+
greaterThan: string;
|
97
|
+
greaterThanOrEqual: string;
|
98
|
+
lessThan: string;
|
99
|
+
lessThanOrEqual: string;
|
100
|
+
equal: string;
|
101
|
+
notEqual: string;
|
102
|
+
notBetween: string;
|
103
|
+
legal: string;
|
104
|
+
};
|
105
|
+
ruleName: {
|
106
|
+
between: string;
|
107
|
+
greaterThan: string;
|
108
|
+
greaterThanOrEqual: string;
|
109
|
+
lessThan: string;
|
110
|
+
lessThanOrEqual: string;
|
111
|
+
equal: string;
|
112
|
+
notEqual: string;
|
113
|
+
notBetween: string;
|
114
|
+
legal: string;
|
115
|
+
};
|
116
|
+
errorMsg: {
|
117
|
+
between: string;
|
118
|
+
greaterThan: string;
|
119
|
+
greaterThanOrEqual: string;
|
120
|
+
lessThan: string;
|
121
|
+
lessThanOrEqual: string;
|
122
|
+
equal: string;
|
123
|
+
notEqual: string;
|
124
|
+
notBetween: string;
|
125
|
+
legal: string;
|
126
|
+
};
|
127
|
+
};
|
128
|
+
list: {
|
129
|
+
title: string;
|
130
|
+
name: string;
|
131
|
+
error: string;
|
132
|
+
emptyError: string;
|
133
|
+
add: string;
|
134
|
+
dropdown: string;
|
135
|
+
options: string;
|
136
|
+
customOptions: string;
|
137
|
+
refOptions: string;
|
138
|
+
formulaError: string;
|
139
|
+
edit: string;
|
140
|
+
};
|
141
|
+
listMultiple: {
|
142
|
+
title: string;
|
143
|
+
dropdown: string;
|
144
|
+
};
|
145
|
+
textLength: {
|
146
|
+
title: string;
|
147
|
+
errorMsg: {
|
148
|
+
between: string;
|
149
|
+
greaterThan: string;
|
150
|
+
greaterThanOrEqual: string;
|
151
|
+
lessThan: string;
|
152
|
+
lessThanOrEqual: string;
|
153
|
+
equal: string;
|
154
|
+
notEqual: string;
|
155
|
+
notBetween: string;
|
156
|
+
};
|
157
|
+
};
|
158
|
+
decimal: {
|
159
|
+
title: string;
|
160
|
+
};
|
161
|
+
whole: {
|
162
|
+
title: string;
|
163
|
+
};
|
164
|
+
checkbox: {
|
165
|
+
title: string;
|
166
|
+
error: string;
|
167
|
+
tips: string;
|
168
|
+
checked: string;
|
169
|
+
unchecked: string;
|
170
|
+
};
|
171
|
+
custom: {
|
172
|
+
title: string;
|
173
|
+
error: string;
|
174
|
+
validFail: string;
|
175
|
+
ruleName: string;
|
176
|
+
};
|
177
|
+
alert: {
|
178
|
+
title: string;
|
179
|
+
ok: string;
|
180
|
+
};
|
181
|
+
error: {
|
182
|
+
title: string;
|
183
|
+
};
|
184
|
+
renderMode: {
|
185
|
+
arrow: string;
|
186
|
+
chip: string;
|
187
|
+
text: string;
|
188
|
+
label: string;
|
189
|
+
};
|
190
|
+
showTime: {
|
191
|
+
label: string;
|
192
|
+
};
|
193
|
+
};
|
194
|
+
};
|
3
195
|
export default locale;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import { default as
|
2
|
-
declare const locale: typeof
|
1
|
+
import { default as enUS } from './en-US';
|
2
|
+
declare const locale: typeof enUS;
|
3
3
|
export default locale;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import { default as
|
2
|
-
declare const locale: typeof
|
1
|
+
import { default as enUS } from './en-US';
|
2
|
+
declare const locale: typeof enUS;
|
3
3
|
export default locale;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import { default as
|
2
|
-
declare const locale: typeof
|
1
|
+
import { default as enUS } from './en-US';
|
2
|
+
declare const locale: typeof enUS;
|
3
3
|
export default locale;
|
@@ -1,195 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
*
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
* you may not use this file except in compliance with the License.
|
6
|
-
* You may obtain a copy of the License at
|
7
|
-
*
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
*
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
* See the License for the specific language governing permissions and
|
14
|
-
* limitations under the License.
|
15
|
-
*/
|
16
|
-
declare const locale: {
|
17
|
-
dataValidation: {
|
18
|
-
title: string;
|
19
|
-
validFail: {
|
20
|
-
value: string;
|
21
|
-
common: string;
|
22
|
-
number: string;
|
23
|
-
formula: string;
|
24
|
-
integer: string;
|
25
|
-
date: string;
|
26
|
-
list: string;
|
27
|
-
listInvalid: string;
|
28
|
-
checkboxEqual: string;
|
29
|
-
formulaError: string;
|
30
|
-
listIntersects: string;
|
31
|
-
primitive: string;
|
32
|
-
};
|
33
|
-
panel: {
|
34
|
-
title: string;
|
35
|
-
addTitle: string;
|
36
|
-
removeAll: string;
|
37
|
-
add: string;
|
38
|
-
range: string;
|
39
|
-
rangeError: string;
|
40
|
-
type: string;
|
41
|
-
options: string;
|
42
|
-
operator: string;
|
43
|
-
removeRule: string;
|
44
|
-
done: string;
|
45
|
-
formulaPlaceholder: string;
|
46
|
-
valuePlaceholder: string;
|
47
|
-
formulaAnd: string;
|
48
|
-
invalid: string;
|
49
|
-
showWarning: string;
|
50
|
-
rejectInput: string;
|
51
|
-
messageInfo: string;
|
52
|
-
showInfo: string;
|
53
|
-
allowBlank: string;
|
54
|
-
};
|
55
|
-
operators: {
|
56
|
-
between: string;
|
57
|
-
greaterThan: string;
|
58
|
-
greaterThanOrEqual: string;
|
59
|
-
lessThan: string;
|
60
|
-
lessThanOrEqual: string;
|
61
|
-
equal: string;
|
62
|
-
notEqual: string;
|
63
|
-
notBetween: string;
|
64
|
-
legal: string;
|
65
|
-
};
|
66
|
-
ruleName: {
|
67
|
-
between: string;
|
68
|
-
greaterThan: string;
|
69
|
-
greaterThanOrEqual: string;
|
70
|
-
lessThan: string;
|
71
|
-
lessThanOrEqual: string;
|
72
|
-
equal: string;
|
73
|
-
notEqual: string;
|
74
|
-
notBetween: string;
|
75
|
-
legal: string;
|
76
|
-
};
|
77
|
-
errorMsg: {
|
78
|
-
between: string;
|
79
|
-
greaterThan: string;
|
80
|
-
greaterThanOrEqual: string;
|
81
|
-
lessThan: string;
|
82
|
-
lessThanOrEqual: string;
|
83
|
-
equal: string;
|
84
|
-
notEqual: string;
|
85
|
-
notBetween: string;
|
86
|
-
legal: string;
|
87
|
-
};
|
88
|
-
any: {
|
89
|
-
title: string;
|
90
|
-
error: string;
|
91
|
-
};
|
92
|
-
date: {
|
93
|
-
title: string;
|
94
|
-
operators: {
|
95
|
-
between: string;
|
96
|
-
greaterThan: string;
|
97
|
-
greaterThanOrEqual: string;
|
98
|
-
lessThan: string;
|
99
|
-
lessThanOrEqual: string;
|
100
|
-
equal: string;
|
101
|
-
notEqual: string;
|
102
|
-
notBetween: string;
|
103
|
-
legal: string;
|
104
|
-
};
|
105
|
-
ruleName: {
|
106
|
-
between: string;
|
107
|
-
greaterThan: string;
|
108
|
-
greaterThanOrEqual: string;
|
109
|
-
lessThan: string;
|
110
|
-
lessThanOrEqual: string;
|
111
|
-
equal: string;
|
112
|
-
notEqual: string;
|
113
|
-
notBetween: string;
|
114
|
-
legal: string;
|
115
|
-
};
|
116
|
-
errorMsg: {
|
117
|
-
between: string;
|
118
|
-
greaterThan: string;
|
119
|
-
greaterThanOrEqual: string;
|
120
|
-
lessThan: string;
|
121
|
-
lessThanOrEqual: string;
|
122
|
-
equal: string;
|
123
|
-
notEqual: string;
|
124
|
-
notBetween: string;
|
125
|
-
legal: string;
|
126
|
-
};
|
127
|
-
};
|
128
|
-
list: {
|
129
|
-
title: string;
|
130
|
-
name: string;
|
131
|
-
error: string;
|
132
|
-
emptyError: string;
|
133
|
-
add: string;
|
134
|
-
dropdown: string;
|
135
|
-
options: string;
|
136
|
-
customOptions: string;
|
137
|
-
refOptions: string;
|
138
|
-
formulaError: string;
|
139
|
-
edit: string;
|
140
|
-
};
|
141
|
-
listMultiple: {
|
142
|
-
title: string;
|
143
|
-
dropdown: string;
|
144
|
-
};
|
145
|
-
textLength: {
|
146
|
-
title: string;
|
147
|
-
errorMsg: {
|
148
|
-
between: string;
|
149
|
-
greaterThan: string;
|
150
|
-
greaterThanOrEqual: string;
|
151
|
-
lessThan: string;
|
152
|
-
lessThanOrEqual: string;
|
153
|
-
equal: string;
|
154
|
-
notEqual: string;
|
155
|
-
notBetween: string;
|
156
|
-
};
|
157
|
-
};
|
158
|
-
decimal: {
|
159
|
-
title: string;
|
160
|
-
};
|
161
|
-
whole: {
|
162
|
-
title: string;
|
163
|
-
};
|
164
|
-
checkbox: {
|
165
|
-
title: string;
|
166
|
-
error: string;
|
167
|
-
tips: string;
|
168
|
-
checked: string;
|
169
|
-
unchecked: string;
|
170
|
-
};
|
171
|
-
custom: {
|
172
|
-
title: string;
|
173
|
-
error: string;
|
174
|
-
validFail: string;
|
175
|
-
ruleName: string;
|
176
|
-
};
|
177
|
-
alert: {
|
178
|
-
title: string;
|
179
|
-
ok: string;
|
180
|
-
};
|
181
|
-
error: {
|
182
|
-
title: string;
|
183
|
-
};
|
184
|
-
renderMode: {
|
185
|
-
arrow: string;
|
186
|
-
chip: string;
|
187
|
-
text: string;
|
188
|
-
label: string;
|
189
|
-
};
|
190
|
-
showTime: {
|
191
|
-
label: string;
|
192
|
-
};
|
193
|
-
};
|
194
|
-
};
|
1
|
+
import { default as enUS } from './en-US';
|
2
|
+
declare const locale: typeof enUS;
|
195
3
|
export default locale;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import { default as
|
2
|
-
declare const locale: typeof
|
1
|
+
import { default as enUS } from './en-US';
|
2
|
+
declare const locale: typeof enUS;
|
3
3
|
export default locale;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@univerjs/sheets-data-validation-ui",
|
3
|
-
"version": "0.7.0-nightly.
|
3
|
+
"version": "0.7.0-nightly.202505231607",
|
4
4
|
"private": false,
|
5
5
|
"description": "Data validation UI for Univer Sheets",
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
@@ -56,17 +56,17 @@
|
|
56
56
|
"dependencies": {
|
57
57
|
"@flatten-js/interval-tree": "^1.1.3",
|
58
58
|
"@univerjs/icons": "^0.3.24",
|
59
|
-
"@univerjs/core": "0.7.0-nightly.
|
60
|
-
"@univerjs/
|
61
|
-
"@univerjs/design": "0.7.0-nightly.
|
62
|
-
"@univerjs/
|
63
|
-
"@univerjs/engine-render": "0.7.0-nightly.
|
64
|
-
"@univerjs/sheets": "0.7.0-nightly.
|
65
|
-
"@univerjs/
|
66
|
-
"@univerjs/sheets-
|
67
|
-
"@univerjs/sheets-
|
68
|
-
"@univerjs/sheets-ui": "0.7.0-nightly.
|
69
|
-
"@univerjs/ui": "0.7.0-nightly.
|
59
|
+
"@univerjs/core": "0.7.0-nightly.202505231607",
|
60
|
+
"@univerjs/engine-formula": "0.7.0-nightly.202505231607",
|
61
|
+
"@univerjs/design": "0.7.0-nightly.202505231607",
|
62
|
+
"@univerjs/sheets": "0.7.0-nightly.202505231607",
|
63
|
+
"@univerjs/engine-render": "0.7.0-nightly.202505231607",
|
64
|
+
"@univerjs/sheets-formula-ui": "0.7.0-nightly.202505231607",
|
65
|
+
"@univerjs/data-validation": "0.7.0-nightly.202505231607",
|
66
|
+
"@univerjs/sheets-data-validation": "0.7.0-nightly.202505231607",
|
67
|
+
"@univerjs/sheets-numfmt": "0.7.0-nightly.202505231607",
|
68
|
+
"@univerjs/sheets-ui": "0.7.0-nightly.202505231607",
|
69
|
+
"@univerjs/ui": "0.7.0-nightly.202505231607"
|
70
70
|
},
|
71
71
|
"devDependencies": {
|
72
72
|
"postcss": "^8.5.3",
|
@@ -75,7 +75,7 @@
|
|
75
75
|
"tailwindcss": "^3.4.17",
|
76
76
|
"typescript": "^5.8.3",
|
77
77
|
"vite": "^6.3.5",
|
78
|
-
"vitest": "^3.1.
|
78
|
+
"vitest": "^3.1.4",
|
79
79
|
"@univerjs-infra/shared": "0.7.0"
|
80
80
|
},
|
81
81
|
"scripts": {
|