assui 2.1.4 → 2.1.8

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.
Files changed (39) hide show
  1. package/es/index.d.ts +0 -2
  2. package/es/index.js +1 -2
  3. package/es/label-customize-range-picker/index.d.ts +4 -1
  4. package/es/label-customize-range-picker/index.js +33 -13
  5. package/es/label-customize-range-picker/style/index.d.ts +1 -0
  6. package/es/label-customize-range-picker/style/index.js +1 -0
  7. package/es/label-range-picker/index.js +8 -12
  8. package/es/rich-text-editor/index.d.ts +11 -1
  9. package/es/rich-text-editor/index.js +17 -8
  10. package/es/rich-text-editor/lang/zh_CN.d.ts +55 -111
  11. package/es/rich-text-editor/lang/zh_CN.js +108 -165
  12. package/lib/index.d.ts +0 -2
  13. package/lib/index.js +1 -10
  14. package/lib/label-customize-range-picker/index.d.ts +4 -1
  15. package/lib/label-customize-range-picker/index.js +35 -13
  16. package/lib/label-customize-range-picker/style/index.d.ts +1 -0
  17. package/lib/label-customize-range-picker/style/index.js +2 -0
  18. package/lib/label-range-picker/index.js +9 -12
  19. package/lib/rich-text-editor/index.d.ts +11 -1
  20. package/lib/rich-text-editor/index.js +27 -8
  21. package/lib/rich-text-editor/lang/zh_CN.d.ts +55 -111
  22. package/lib/rich-text-editor/lang/zh_CN.js +108 -166
  23. package/package.json +5 -5
  24. package/es/customize-range-picker/defaultRadioList.d.ts +0 -24
  25. package/es/customize-range-picker/defaultRadioList.js +0 -79
  26. package/es/customize-range-picker/index.d.ts +0 -15
  27. package/es/customize-range-picker/index.js +0 -172
  28. package/es/customize-range-picker/style/index.css +0 -1821
  29. package/es/customize-range-picker/style/index.d.ts +0 -1
  30. package/es/customize-range-picker/style/index.js +0 -1
  31. package/es/customize-range-picker/style/index.less +0 -46
  32. package/lib/customize-range-picker/defaultRadioList.d.ts +0 -24
  33. package/lib/customize-range-picker/defaultRadioList.js +0 -93
  34. package/lib/customize-range-picker/index.d.ts +0 -15
  35. package/lib/customize-range-picker/index.js +0 -228
  36. package/lib/customize-range-picker/style/index.css +0 -1821
  37. package/lib/customize-range-picker/style/index.d.ts +0 -1
  38. package/lib/customize-range-picker/style/index.js +0 -7
  39. package/lib/customize-range-picker/style/index.less +0 -46
package/es/index.d.ts CHANGED
@@ -57,5 +57,3 @@ export { default as LabelCustomizeRangePicker } from './label-customize-range-pi
57
57
  export type { RichTextEditorProps } from './rich-text-editor';
58
58
  export { default as RichTextEditor } from './rich-text-editor';
59
59
  export { default as beautifulDnd } from './beautiful-dnd';
60
- export type { CustomizeRangePickerProps } from './customize-range-picker';
61
- export { default as CustomizeRangePicker } from './customize-range-picker';
package/es/index.js CHANGED
@@ -28,5 +28,4 @@ export { default as LabelConditionInput } from './label-condition-input';
28
28
  export { default as LabelTreeSelect } from './label-tree-select';
29
29
  export { default as LabelCustomizeRangePicker } from './label-customize-range-picker';
30
30
  export { default as RichTextEditor } from './rich-text-editor';
31
- export { default as beautifulDnd } from './beautiful-dnd';
32
- export { default as CustomizeRangePicker } from './customize-range-picker';
31
+ export { default as beautifulDnd } from './beautiful-dnd';
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import type { Moment } from 'moment';
2
3
  import type { dateTypeEnum } from './defaultRadioList';
3
4
  import type { LabelRangePickerProps } from '../label-range-picker';
@@ -6,9 +7,11 @@ export declare type RadioListType = {
6
7
  text: string;
7
8
  value: [Moment, Moment];
8
9
  };
9
- export interface LabelCustomizeRangePickerProps extends LabelRangePickerProps {
10
+ export interface LabelCustomizeRangePickerProps extends Omit<LabelRangePickerProps, 'label'> {
10
11
  radioList?: RadioListType[];
11
12
  customizeTimeList?: dateTypeEnum[];
13
+ rangePickerType?: 'label' | 'origin';
14
+ label?: React.ReactNode;
12
15
  }
13
16
  declare const LabelCustomizeRangePicker: (props: LabelCustomizeRangePickerProps) => JSX.Element;
14
17
  export default LabelCustomizeRangePicker;
@@ -57,26 +57,35 @@ var __read = this && this.__read || function (o, n) {
57
57
  import React, { useState, useEffect } from 'react';
58
58
  import Radio from 'antd/lib/radio';
59
59
  import Checkbox from 'antd/lib/checkbox';
60
+ import DatePicker from 'antd/lib/date-picker';
60
61
  import useControllableValue from 'ahooks/lib/useControllableValue';
61
62
  import defaultRadioList from './defaultRadioList';
62
63
  import LabelRangePicker from '../label-range-picker';
64
+ var RangePicker = DatePicker.RangePicker;
63
65
 
64
66
  var LabelCustomizeRangePicker = function LabelCustomizeRangePicker(props) {
65
67
  var customizeTimeList = props.customizeTimeList,
66
68
  radioList = props.radioList,
67
- options = __rest(props, ["customizeTimeList", "radioList"]);
69
+ _a = props.rangePickerType,
70
+ rangePickerType = _a === void 0 ? 'label' : _a,
71
+ label = props.label,
72
+ options = __rest(props, ["customizeTimeList", "radioList", "rangePickerType", "label"]);
68
73
 
69
- var _a = __read(useControllableValue(props), 2),
70
- date = _a[0],
71
- setDate = _a[1];
74
+ var _b = __read(useControllableValue(props), 2),
75
+ date = _b[0],
76
+ setDate = _b[1];
72
77
 
73
- var _b = __read(useState(false), 2),
74
- isVisiblePanel = _b[0],
75
- setIsVisiblePanel = _b[1];
78
+ var _c = __read(useState(false), 2),
79
+ isVisiblePanel = _c[0],
80
+ setIsVisiblePanel = _c[1];
76
81
 
77
- var _c = __read(useState(), 2),
78
- radioKey = _c[0],
79
- setRadioKey = _c[1];
82
+ var _d = __read(useState(), 2),
83
+ radioKey = _d[0],
84
+ setRadioKey = _d[1];
85
+
86
+ var _e = __read(useState(false), 2),
87
+ open = _e[0],
88
+ setOpen = _e[1];
80
89
 
81
90
  var dataSource = radioList !== null && radioList !== void 0 ? radioList : defaultRadioList;
82
91
  useEffect(function () {
@@ -117,6 +126,7 @@ var LabelCustomizeRangePicker = function LabelCustomizeRangePicker(props) {
117
126
  return item.key === value;
118
127
  });
119
128
  setDate(selectRadioInfo === null || selectRadioInfo === void 0 ? void 0 : selectRadioInfo.value);
129
+ setOpen(false);
120
130
  };
121
131
 
122
132
  var list = radioList !== null && radioList !== void 0 ? radioList : defaultRadioList.filter(function (item) {
@@ -152,11 +162,21 @@ var LabelCustomizeRangePicker = function LabelCustomizeRangePicker(props) {
152
162
  }))));
153
163
  };
154
164
 
155
- return /*#__PURE__*/React.createElement(LabelRangePicker, __assign({
165
+ var onOpenChange = function onOpenChange(nextOpen) {
166
+ setOpen(nextOpen);
167
+ };
168
+
169
+ var baseOptions = {
156
170
  value: date,
157
171
  onChange: onDateChange,
158
- panelRender: panelRender
159
- }, options));
172
+ open: open,
173
+ onOpenChange: onOpenChange,
174
+ panelRender: panelRender,
175
+ allowClear: false
176
+ };
177
+ return rangePickerType === 'label' ? /*#__PURE__*/React.createElement(LabelRangePicker, __assign({
178
+ label: label
179
+ }, baseOptions, options)) : /*#__PURE__*/React.createElement(RangePicker, __assign({}, baseOptions, options));
160
180
  };
161
181
 
162
182
  export default LabelCustomizeRangePicker;
@@ -1,4 +1,5 @@
1
1
  import 'antd/lib/date-picker/style';
2
2
  import 'antd/lib/checkbox/style';
3
+ import 'antd/lib/radio/style';
3
4
  import './index.less';
4
5
  import '../../label-range-picker/style/index';
@@ -1,4 +1,5 @@
1
1
  import 'antd/lib/date-picker/style';
2
2
  import 'antd/lib/checkbox/style';
3
+ import 'antd/lib/radio/style';
3
4
  import './index.less';
4
5
  import '../../label-range-picker/style/index';
@@ -45,6 +45,7 @@ import React from 'react';
45
45
  import useControllableValue from 'ahooks/lib/useControllableValue';
46
46
  import DatePicker from 'antd/lib/date-picker';
47
47
  import classNames from 'classnames';
48
+ import omit from 'lodash/omit';
48
49
  import CalendarOutlined from 'a-icons/lib/CalendarOutlined';
49
50
  var RangePicker = DatePicker.RangePicker;
50
51
 
@@ -55,10 +56,10 @@ var LabelDatePicker = function LabelDatePicker(props) {
55
56
 
56
57
  var _a = __read(useControllableValue(props, {
57
58
  valuePropName: 'open',
58
- trigger: 'setOpen'
59
+ trigger: 'onOpenChange'
59
60
  }), 2),
60
61
  open = _a[0],
61
- setOpen = _a[1];
62
+ onOpenChange = _a[1];
62
63
 
63
64
  var _b = __read(useControllableValue(props), 2),
64
65
  value = _b[0],
@@ -72,18 +73,14 @@ var LabelDatePicker = function LabelDatePicker(props) {
72
73
  var _a;
73
74
 
74
75
  if (!open) {
75
- setOpen(!open);
76
+ onOpenChange(!open);
76
77
  }
77
78
 
78
79
  (_a = datePickerRef.current) === null || _a === void 0 ? void 0 : _a.focus();
79
80
  };
80
81
 
81
- var onBlur = function onBlur() {
82
- setOpen(false);
83
- };
84
-
85
- var onOpenChange = function onOpenChange(nextOpen) {
86
- setOpen(nextOpen);
82
+ var handleOpenChange = function handleOpenChange(nextOpen) {
83
+ onOpenChange(nextOpen);
87
84
  };
88
85
 
89
86
  return /*#__PURE__*/React.createElement("div", {
@@ -94,13 +91,12 @@ var LabelDatePicker = function LabelDatePicker(props) {
94
91
  }, /*#__PURE__*/React.createElement(RangePicker, __assign({
95
92
  format: "YYYY.MM.DD",
96
93
  allowEmpty: [true, true]
97
- }, props, {
94
+ }, omit(props, 'onOpenChange'), {
98
95
  separator: "\u2013",
99
96
  open: open,
100
97
  onChange: handleChange,
101
98
  ref: datePickerRef,
102
- onOpenChange: onOpenChange,
103
- onBlur: onBlur,
99
+ onOpenChange: handleOpenChange,
104
100
  suffixIcon: /*#__PURE__*/React.createElement(CalendarOutlined, null)
105
101
  })), /*#__PURE__*/React.createElement("label", {
106
102
  className: "label-range-picker-text",
@@ -1,5 +1,6 @@
1
1
  import type { IAllProps } from '@tinymce/tinymce-react';
2
2
  import 'tinymce/themes/silver';
3
+ import 'tinymce/models/dom';
3
4
  import 'tinymce/icons/default';
4
5
  import 'tinymce/skins/ui/oxide/skin.min.css';
5
6
  import 'tinymce/plugins/advlist';
@@ -8,7 +9,6 @@ import 'tinymce/plugins/link';
8
9
  import 'tinymce/plugins/image';
9
10
  import 'tinymce/plugins/lists';
10
11
  import 'tinymce/plugins/charmap';
11
- import 'tinymce/plugins/hr';
12
12
  import 'tinymce/plugins/anchor';
13
13
  import 'tinymce/plugins/searchreplace';
14
14
  import 'tinymce/plugins/wordcount';
@@ -19,6 +19,16 @@ import 'tinymce/plugins/nonbreaking';
19
19
  import 'tinymce/plugins/table';
20
20
  import 'tinymce/plugins/template';
21
21
  import 'tinymce/plugins/help';
22
+ import 'tinymce/plugins/quickbars';
23
+ import 'tinymce/plugins/autosave';
24
+ import 'tinymce/plugins/directionality';
25
+ import 'tinymce/plugins/preview';
26
+ import 'tinymce/plugins/save';
27
+ import 'tinymce/plugins/visualblocks';
28
+ import 'tinymce/plugins/autoresize';
29
+ import 'tinymce/plugins/emoticons';
30
+ import 'tinymce/plugins/importcss';
31
+ import 'tinymce/plugins/pagebreak';
22
32
  export declare type RichTextEditorProps = IAllProps;
23
33
  declare const defaultPlugins: string[];
24
34
  declare const defaultToolbar: string;
@@ -31,8 +31,8 @@ import React from 'react';
31
31
  import { Editor } from '@tinymce/tinymce-react';
32
32
  import tinymce from 'tinymce/tinymce';
33
33
  import 'tinymce/themes/silver';
34
- import 'tinymce/icons/default'; // Editor styles
35
-
34
+ import 'tinymce/models/dom';
35
+ import 'tinymce/icons/default';
36
36
  import 'tinymce/skins/ui/oxide/skin.min.css'; // importing the plugin js.
37
37
 
38
38
  import 'tinymce/plugins/advlist';
@@ -41,7 +41,6 @@ import 'tinymce/plugins/link';
41
41
  import 'tinymce/plugins/image';
42
42
  import 'tinymce/plugins/lists';
43
43
  import 'tinymce/plugins/charmap';
44
- import 'tinymce/plugins/hr';
45
44
  import 'tinymce/plugins/anchor';
46
45
  import 'tinymce/plugins/searchreplace';
47
46
  import 'tinymce/plugins/wordcount'; // import 'tinymce/plugins/code';
@@ -53,17 +52,27 @@ import 'tinymce/plugins/nonbreaking';
53
52
  import 'tinymce/plugins/table';
54
53
  import 'tinymce/plugins/template';
55
54
  import 'tinymce/plugins/help';
55
+ import 'tinymce/plugins/quickbars';
56
+ import 'tinymce/plugins/autosave';
57
+ import 'tinymce/plugins/directionality';
58
+ import 'tinymce/plugins/preview';
59
+ import 'tinymce/plugins/save';
60
+ import 'tinymce/plugins/visualblocks';
61
+ import 'tinymce/plugins/autoresize';
62
+ import 'tinymce/plugins/emoticons';
63
+ import 'tinymce/plugins/importcss';
64
+ import 'tinymce/plugins/pagebreak';
56
65
  import initCodePlugin from './plugins/code';
57
66
  import zhCN from './lang/zh_CN';
58
- tinymce.addI18n('zh_CN', zhCN);
67
+ tinymce.addI18n('zh-Hans', zhCN);
59
68
  initCodePlugin();
60
- var defaultPlugins = ['autolink lists link image charmap anchor', 'searchreplace code fullscreen', 'insertdatetime media table help wordcount'];
61
- var defaultToolbar = 'undo redo | formatselect | ' + 'code bold italic color fontcolor backcolor | alignleft aligncenter ' + 'alignright alignjustify table | image bullist numlist outdent indent | ' + 'removeformat | help';
69
+ var defaultPlugins = ['advlist', 'autolink', 'lists', 'link', 'image', 'charmap', 'anchor', 'searchreplace', 'visualblocks', 'code', 'fullscreen', 'insertdatetime', 'media', 'table', 'preview', 'help', 'wordcount'];
70
+ var defaultToolbar = 'undo redo | blocks fontsize | ' + 'bold italic underline forecolor backcolor charmap | ' + 'alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | ' + 'removeformat | help';
62
71
  var defaultInit = {
63
72
  height: 300,
64
- language: 'zh_CN',
73
+ language: 'zh-Hans',
65
74
  menubar: false,
66
- images_upload_handler: function images_upload_handler() {},
75
+ // images_upload_handler() {},
67
76
  plugins: defaultPlugins,
68
77
  toolbar: defaultToolbar,
69
78
  content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }'
@@ -16,9 +16,11 @@ declare const _default: {
16
16
  Superscript: string;
17
17
  Subscript: string;
18
18
  'Clear formatting': string;
19
+ Remove: string;
19
20
  'Align left': string;
20
21
  'Align center': string;
21
22
  'Align right': string;
23
+ 'No alignment': string;
22
24
  Justify: string;
23
25
  'Bullet list': string;
24
26
  'Numbered list': string;
@@ -27,13 +29,6 @@ declare const _default: {
27
29
  Close: string;
28
30
  Formats: string;
29
31
  "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": string;
30
- Headers: string;
31
- 'Header 1': string;
32
- 'Header 2': string;
33
- 'Header 3': string;
34
- 'Header 4': string;
35
- 'Header 5': string;
36
- 'Header 6': string;
37
32
  Headings: string;
38
33
  'Heading 1': string;
39
34
  'Heading 2': string;
@@ -51,12 +46,13 @@ declare const _default: {
51
46
  Blocks: string;
52
47
  'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.': string;
53
48
  Fonts: string;
54
- 'Font Sizes': string;
49
+ 'Font sizes': string;
55
50
  Class: string;
56
51
  'Browse for an image': string;
57
52
  OR: string;
58
53
  'Drop an image here': string;
59
54
  Upload: string;
55
+ 'Uploading image': string;
60
56
  Block: string;
61
57
  Align: string;
62
58
  Default: string;
@@ -69,31 +65,21 @@ declare const _default: {
69
65
  'Upper Alpha': string;
70
66
  'Upper Roman': string;
71
67
  'Anchor...': string;
68
+ Anchor: string;
72
69
  Name: string;
73
- Id: string;
74
- 'Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.': string;
70
+ ID: string;
71
+ 'ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.': string;
75
72
  'You have unsaved changes are you sure you want to navigate away?': string;
76
73
  'Restore last draft': string;
77
74
  'Special character...': string;
75
+ 'Special Character': string;
78
76
  'Source code': string;
79
77
  'Insert/Edit code sample': string;
80
78
  Language: string;
81
79
  'Code sample...': string;
82
- 'Color Picker': string;
83
- R: string;
84
- G: string;
85
- B: string;
86
80
  'Left to right': string;
87
81
  'Right to left': string;
88
- Emoticons: string;
89
- 'Emoticons...': string;
90
- 'Metadata and Document Properties': string;
91
82
  Title: string;
92
- Keywords: string;
93
- Description: string;
94
- Robots: string;
95
- Author: string;
96
- Encoding: string;
97
83
  Fullscreen: string;
98
84
  Action: string;
99
85
  Shortcut: string;
@@ -129,25 +115,7 @@ declare const _default: {
129
115
  'Insert image': string;
130
116
  'Image...': string;
131
117
  'Image list': string;
132
- 'Rotate counterclockwise': string;
133
- 'Rotate clockwise': string;
134
- 'Flip vertically': string;
135
- 'Flip horizontally': string;
136
- 'Edit image': string;
137
- 'Image options': string;
138
- 'Zoom in': string;
139
- 'Zoom out': string;
140
- Crop: string;
141
118
  Resize: string;
142
- Orientation: string;
143
- Brightness: string;
144
- Sharpen: string;
145
- Contrast: string;
146
- 'Color levels': string;
147
- Gamma: string;
148
- Invert: string;
149
- Apply: string;
150
- Back: string;
151
119
  'Insert date/time': string;
152
120
  'Date/time': string;
153
121
  'Insert/edit link': string;
@@ -179,6 +147,7 @@ declare const _default: {
179
147
  'Page break': string;
180
148
  'Paste as text': string;
181
149
  Preview: string;
150
+ Print: string;
182
151
  'Print...': string;
183
152
  Save: string;
184
153
  Find: string;
@@ -193,13 +162,6 @@ declare const _default: {
193
162
  'Match case': string;
194
163
  'Find whole words only': string;
195
164
  'Find in selection': string;
196
- Spellcheck: string;
197
- 'Spellcheck Language': string;
198
- 'No misspellings found.': string;
199
- Ignore: string;
200
- 'Ignore all': string;
201
- Finish: string;
202
- 'Add to Dictionary': string;
203
165
  'Insert table': string;
204
166
  'Table properties': string;
205
167
  'Delete table': string;
@@ -214,9 +176,13 @@ declare const _default: {
214
176
  'Delete row': string;
215
177
  'Row properties': string;
216
178
  'Cut row': string;
179
+ 'Cut column': string;
217
180
  'Copy row': string;
181
+ 'Copy column': string;
218
182
  'Paste row before': string;
183
+ 'Paste column before': string;
219
184
  'Paste row after': string;
185
+ 'Paste column after': string;
220
186
  'Insert column before': string;
221
187
  'Insert column after': string;
222
188
  'Delete column': string;
@@ -226,6 +192,13 @@ declare const _default: {
226
192
  Height: string;
227
193
  'Cell spacing': string;
228
194
  'Cell padding': string;
195
+ 'Row clipboard actions': string;
196
+ 'Column clipboard actions': string;
197
+ 'Table styles': string;
198
+ 'Cell styles': string;
199
+ 'Column header': string;
200
+ 'Row header': string;
201
+ 'Table caption': string;
229
202
  Caption: string;
230
203
  'Show caption': string;
231
204
  Left: string;
@@ -234,8 +207,8 @@ declare const _default: {
234
207
  'Cell type': string;
235
208
  Scope: string;
236
209
  Alignment: string;
237
- 'H Align': string;
238
- 'V Align': string;
210
+ 'Horizontal align': string;
211
+ 'Vertical align': string;
239
212
  Top: string;
240
213
  Middle: string;
241
214
  Bottom: string;
@@ -247,16 +220,25 @@ declare const _default: {
247
220
  Body: string;
248
221
  Footer: string;
249
222
  'Border color': string;
223
+ Solid: string;
224
+ Dotted: string;
225
+ Dashed: string;
226
+ Double: string;
227
+ Groove: string;
228
+ Ridge: string;
229
+ Inset: string;
230
+ Outset: string;
231
+ Hidden: string;
250
232
  'Insert template...': string;
251
233
  Templates: string;
252
234
  Template: string;
235
+ 'Insert Template': string;
253
236
  'Text color': string;
254
237
  'Background color': string;
255
238
  'Custom...': string;
256
239
  'Custom color': string;
257
240
  'No color': string;
258
241
  'Remove color': string;
259
- 'Table of Contents': string;
260
242
  'Show blocks': string;
261
243
  'Show invisible characters': string;
262
244
  'Word count': string;
@@ -282,6 +264,7 @@ declare const _default: {
282
264
  Warn: string;
283
265
  Valid: string;
284
266
  'To open the popup, press Shift+Enter': string;
267
+ 'Rich Text Area': string;
285
268
  'Rich Text Area. Press ALT-0 for help.': string;
286
269
  'System Font': string;
287
270
  'Failed to upload image: {0}': string;
@@ -334,8 +317,10 @@ declare const _default: {
334
317
  'yuan character': string;
335
318
  'yuan character, in hong kong and taiwan': string;
336
319
  'yen/yuan character variant one': string;
337
- 'Loading emoticons...': string;
338
- 'Could not load emoticons': string;
320
+ Emojis: string;
321
+ 'Emojis...': string;
322
+ 'Loading emojis...': string;
323
+ 'Could not load emojis': string;
339
324
  People: string;
340
325
  'Animals and Nature': string;
341
326
  'Food and Drink': string;
@@ -348,8 +333,19 @@ declare const _default: {
348
333
  '{0} characters': string;
349
334
  'Error: Form submit field collision.': string;
350
335
  'Error: No form element found.': string;
351
- Update: string;
352
336
  'Color swatch': string;
337
+ 'Color Picker': string;
338
+ 'Invalid hex color code: {0}': string;
339
+ 'Invalid input': string;
340
+ R: string;
341
+ 'Red component': string;
342
+ G: string;
343
+ 'Green component': string;
344
+ B: string;
345
+ 'Blue component': string;
346
+ '#': string;
347
+ 'Hex color code': string;
348
+ 'Range 0 to 255': string;
353
349
  Turquoise: string;
354
350
  Green: string;
355
351
  Blue: string;
@@ -401,63 +397,11 @@ declare const _default: {
401
397
  'List properties...': string;
402
398
  'Start list at number': string;
403
399
  'Line height': string;
404
- comments: string;
405
- 'Format Painter': string;
406
- 'Insert/edit iframe': string;
407
- Capitalization: string;
408
- lowercase: string;
409
- UPPERCASE: string;
410
- 'Title Case': string;
411
- 'permanent pen': string;
412
- 'Permanent Pen Properties': string;
413
- 'Permanent pen properties...': string;
414
- 'case change': string;
415
- 'page embed': string;
416
- 'Advanced sort...': string;
417
- 'Advanced Sort': string;
418
- 'Sort table by column ascending': string;
419
- 'Sort table by column descending': string;
420
- Sort: string;
421
- Order: string;
422
- 'Sort by': string;
423
- Ascending: string;
424
- Descending: string;
425
- 'Column {0}': string;
426
- 'Row {0}': string;
427
- 'Spellcheck...': string;
428
- 'Misspelled word': string;
429
- Suggestions: string;
430
- Change: string;
431
- 'Finding word suggestions': string;
432
- Success: string;
433
- Repair: string;
434
- 'Issue {0} of {1}': string;
435
- 'Images must be marked as decorative or have an alternative text description': string;
436
- 'Images must have an alternative text description. Decorative images are not allowed.': string;
437
- 'Or provide alternative text:': string;
438
- 'Make image decorative:': string;
439
- 'ID attribute must be unique': string;
440
- 'Make ID unique': string;
441
- 'Keep this ID and remove all others': string;
442
- 'Remove this ID': string;
443
- 'Remove all IDs': string;
444
- Checklist: string;
445
- Anchor: string;
446
- 'Special character': string;
447
- 'Code sample': string;
448
- Color: string;
449
- 'Document properties': string;
450
- 'Image description': string;
451
- Image: string;
452
- 'Insert link': string;
453
- Target: string;
454
- Link: string;
455
- Poster: string;
456
- Media: string;
457
- Print: string;
458
- Prev: string;
459
- 'Find and replace': string;
460
- 'Whole words': string;
461
- 'Insert template': string;
400
+ 'Dropped file type is not supported': string;
401
+ 'Loading...': string;
402
+ 'ImageProxy HTTP error: Rejected request': string;
403
+ 'ImageProxy HTTP error: Could not find Image Proxy': string;
404
+ 'ImageProxy HTTP error: Incorrect Image Proxy URL': string;
405
+ 'ImageProxy HTTP error: Unknown ImageProxy error': string;
462
406
  };
463
407
  export default _default;