@uploadcare/file-uploader 1.5.3-alpha.3 → 1.5.3-alpha.4
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/package.json +4 -3
- package/symbiote.js +2 -3
- package/web/file-uploader.iife.min.js +4 -4
- package/web/file-uploader.min.js +4 -4
- package/web/uc-cloud-image-editor.min.js +4 -4
- package/web/uc-file-uploader-inline.min.js +4 -4
- package/web/uc-file-uploader-minimal.min.js +3 -3
- package/web/uc-file-uploader-regular.min.js +4 -4
- package/web/uc-img.min.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uploadcare/file-uploader",
|
|
3
|
-
"version": "1.5.3-alpha.
|
|
3
|
+
"version": "1.5.3-alpha.4",
|
|
4
4
|
"description": "Building blocks for Uploadcare products integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web components",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"type": "module",
|
|
38
38
|
"sideEffects": [
|
|
39
|
-
"*.css"
|
|
39
|
+
"*.css",
|
|
40
|
+
"./symbiote.js"
|
|
40
41
|
],
|
|
41
42
|
"module": "./index.js",
|
|
42
43
|
"exports": {
|
|
@@ -138,7 +139,7 @@
|
|
|
138
139
|
"author": "Uploadcare Inc.",
|
|
139
140
|
"license": "MIT",
|
|
140
141
|
"dependencies": {
|
|
141
|
-
"@symbiotejs/symbiote": "^2.4.1-alpha.
|
|
142
|
+
"@symbiotejs/symbiote": "^2.4.1-alpha.1",
|
|
142
143
|
"@uploadcare/image-shrink": "^6.14.1",
|
|
143
144
|
"@uploadcare/upload-client": "^6.14.1",
|
|
144
145
|
"keyux": "^0.7.1"
|
package/symbiote.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { assignDict } from '@symbiotejs/symbiote';
|
|
2
2
|
export {
|
|
3
3
|
Symbiote,
|
|
4
4
|
Symbiote as BaseComponent,
|
|
@@ -8,11 +8,10 @@ export {
|
|
|
8
8
|
html,
|
|
9
9
|
create,
|
|
10
10
|
applyStyles,
|
|
11
|
-
DICT,
|
|
12
11
|
} from '@symbiotejs/symbiote';
|
|
13
12
|
export { slotProcessor } from '@symbiotejs/symbiote/core/slotProcessor.js';
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
export const DICT = assignDict({
|
|
16
15
|
BIND_ATTR: 'set',
|
|
17
16
|
CTX_NAME_ATTR: 'ctx-name',
|
|
18
17
|
CSS_CTX_PROP: '--ctx-name',
|