assui 3.2.20 → 3.2.21
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/es/img-crop/index.js
CHANGED
|
@@ -176,7 +176,7 @@ var ImgCrop = function ImgCrop(props) {
|
|
|
176
176
|
_c = props.grid,
|
|
177
177
|
grid = _c === void 0 ? false : _c,
|
|
178
178
|
_d = props.quality,
|
|
179
|
-
quality = _d === void 0 ?
|
|
179
|
+
quality = _d === void 0 ? 1 : _d,
|
|
180
180
|
_e = props.zoom,
|
|
181
181
|
zoom = _e === void 0 ? true : _e,
|
|
182
182
|
_f = props.rotate,
|
|
@@ -69,6 +69,7 @@ var defaultInit = {
|
|
|
69
69
|
toolbar: defaultToolbar,
|
|
70
70
|
content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }',
|
|
71
71
|
font_size_input_default_unit: 'px',
|
|
72
|
+
skin: false,
|
|
72
73
|
font_size_formats: '10px 12px 14px 16px 18px 20px 22px 24px 26px 28px 30px 32px 34px 36px'
|
|
73
74
|
};
|
|
74
75
|
var RichTextEditor = function RichTextEditor(props) {
|
package/lib/img-crop/index.js
CHANGED
|
@@ -219,7 +219,7 @@ var ImgCrop = function ImgCrop(props) {
|
|
|
219
219
|
_c = props.grid,
|
|
220
220
|
grid = _c === void 0 ? false : _c,
|
|
221
221
|
_d = props.quality,
|
|
222
|
-
quality = _d === void 0 ?
|
|
222
|
+
quality = _d === void 0 ? 1 : _d,
|
|
223
223
|
_e = props.zoom,
|
|
224
224
|
zoom = _e === void 0 ? true : _e,
|
|
225
225
|
_f = props.rotate,
|
|
@@ -82,6 +82,7 @@ var defaultInit = {
|
|
|
82
82
|
toolbar: defaultToolbar,
|
|
83
83
|
content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }',
|
|
84
84
|
font_size_input_default_unit: 'px',
|
|
85
|
+
skin: false,
|
|
85
86
|
font_size_formats: '10px 12px 14px 16px 18px 20px 22px 24px 26px 28px 30px 32px 34px 36px'
|
|
86
87
|
};
|
|
87
88
|
var RichTextEditor = function RichTextEditor(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assui",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.21",
|
|
4
4
|
"description": "react ui library",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@types/react-beautiful-dnd": "^13.1.2",
|
|
36
36
|
"@types/react-color": "^3.0.6",
|
|
37
37
|
"@types/react-resizable": "^3.0.0",
|
|
38
|
-
"a-icons": "^1.2.
|
|
38
|
+
"a-icons": "^1.2.17",
|
|
39
39
|
"aa-utils": "^2.1.29",
|
|
40
40
|
"ahooks": "^3.0.8",
|
|
41
41
|
"bignumber.js": "^9.0.1",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"node": ">=10.0.0"
|
|
83
83
|
},
|
|
84
84
|
"license": "MIT",
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "8069a3e334356f15f3a1b9bf03e8015caab1174a"
|
|
86
86
|
}
|