@uploadcare/file-uploader 1.5.3-alpha.2 → 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 +8 -6
- 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",
|
|
@@ -35,7 +35,10 @@
|
|
|
35
35
|
"MIT"
|
|
36
36
|
],
|
|
37
37
|
"type": "module",
|
|
38
|
-
"sideEffects": [
|
|
38
|
+
"sideEffects": [
|
|
39
|
+
"*.css",
|
|
40
|
+
"./symbiote.js"
|
|
41
|
+
],
|
|
39
42
|
"module": "./index.js",
|
|
40
43
|
"exports": {
|
|
41
44
|
".": {
|
|
@@ -130,16 +133,15 @@
|
|
|
130
133
|
"stylelint-order": "^6.0.3",
|
|
131
134
|
"svg-sprite": "^2.0.4",
|
|
132
135
|
"tsd": "^0.31.1",
|
|
133
|
-
"typescript": "^5.5.4"
|
|
136
|
+
"typescript": "^5.5.4",
|
|
137
|
+
"@types/sinon": "^17.0.3"
|
|
134
138
|
},
|
|
135
139
|
"author": "Uploadcare Inc.",
|
|
136
140
|
"license": "MIT",
|
|
137
141
|
"dependencies": {
|
|
138
|
-
"@symbiotejs/symbiote": "^2.
|
|
139
|
-
"@types/sinon": "^17.0.3",
|
|
142
|
+
"@symbiotejs/symbiote": "^2.4.1-alpha.1",
|
|
140
143
|
"@uploadcare/image-shrink": "^6.14.1",
|
|
141
144
|
"@uploadcare/upload-client": "^6.14.1",
|
|
142
|
-
"D": "^1.0.0",
|
|
143
145
|
"keyux": "^0.7.1"
|
|
144
146
|
}
|
|
145
147
|
}
|
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',
|