@univerjs/sheets-conditional-formatting-ui 0.4.0-alpha.0 → 0.4.0-alpha.2

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.
@@ -151,7 +151,8 @@
151
151
  },
152
152
  "errorMessage": {
153
153
  "notBlank": "Condition can not be empty",
154
- "formulaError": "Wrong formula"
154
+ "formulaError": "Wrong formula",
155
+ "rangeError": "Bad selection"
155
156
  }
156
157
  }
157
158
  }
@@ -151,7 +151,8 @@
151
151
  },
152
152
  "errorMessage": {
153
153
  "notBlank": "شرط نمی‌تواند خالی باشد",
154
- "formulaError": "فرمول اشتباه"
154
+ "formulaError": "فرمول اشتباه",
155
+ "rangeError": "Bad selection"
155
156
  }
156
157
  }
157
158
  }
@@ -151,7 +151,8 @@
151
151
  },
152
152
  "errorMessage": {
153
153
  "notBlank": "Условие не может быть пустым",
154
- "formulaError": "Ошибка формулы"
154
+ "formulaError": "Ошибка формулы",
155
+ "rangeError": "Bad selection"
155
156
  }
156
157
  }
157
158
  }
@@ -151,7 +151,8 @@
151
151
  },
152
152
  "errorMessage": {
153
153
  "notBlank": "Điều kiện không được để trống",
154
- "formulaError": "Lỗi công thức"
154
+ "formulaError": "Lỗi công thức",
155
+ "rangeError": "Bad selection"
155
156
  }
156
157
  }
157
158
  }
@@ -151,6 +151,7 @@
151
151
  },
152
152
  "errorMessage": {
153
153
  "notBlank": "条件不能为空",
154
+ "rangeError": "选区错误",
154
155
  "formulaError": "公式错误"
155
156
  }
156
157
  }
@@ -151,6 +151,7 @@
151
151
  },
152
152
  "errorMessage": {
153
153
  "notBlank": "條件不能為空",
154
+ "rangeError": "選區錯誤",
154
155
  "formulaError": "公式錯誤"
155
156
  }
156
157
  }
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { IConditionFormattingRule } from '@univerjs/sheets-conditional-formatting';
2
+ import { default as React } from 'react';
3
3
  interface IRuleEditProps {
4
4
  rule?: IConditionFormattingRule;
5
5
  onCancel: () => void;
@@ -166,6 +166,7 @@ declare const locale: {
166
166
  };
167
167
  errorMessage: {
168
168
  notBlank: string;
169
+ rangeError: string;
169
170
  formulaError: string;
170
171
  };
171
172
  };