@mainframework/dropzone 1.0.23 → 1.0.24
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/dist/index.js +201 -39
- package/dist/index.js.map +1 -1
- package/package.json +11 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mainframework/dropzone",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "A file selection package, without all of the re-rendering issues that come with other dropzone packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"homepage": "https://github.com/TerrySlack/mainframework-dropzone#readme",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build:css:dev": "npx @tailwindcss/cli -i ./src/index.css -o ./src/shared/components/FileSelector/tailwind.css --watch",
|
|
24
|
-
"build:css:prod": "npx @tailwindcss/cli -i ./src/index.css -o ./src/shared/components/FileSelector/tailwind.css --minify",
|
|
24
|
+
"build:css:prod": "npx @tailwindcss/cli -i ./src/index.css -o ./src/shared/components/FileSelector/tailwind.css --minify && npx postcss ./src/shared/components/FileSelector/tailwind.css -o ./src/shared/components/FileSelector/tailwind.css",
|
|
25
25
|
"husky": "husky",
|
|
26
26
|
"clean": "rimraf dist",
|
|
27
27
|
"lint": "eslint --ext 'ts,tsx' --max-warnings=0 --fix",
|
|
@@ -40,6 +40,9 @@
|
|
|
40
40
|
"optional": false
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
+
"sideEffects": [
|
|
44
|
+
"*.css"
|
|
45
|
+
],
|
|
43
46
|
"files": [
|
|
44
47
|
"dist",
|
|
45
48
|
"LICENSE",
|
|
@@ -70,7 +73,7 @@
|
|
|
70
73
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
71
74
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
72
75
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
73
|
-
"@tailwindcss/cli": "^4.
|
|
76
|
+
"@tailwindcss/cli": "^4.2.0",
|
|
74
77
|
"@tailwindcss/forms": "^0.5.11",
|
|
75
78
|
"@testing-library/dom": "^10.4.1",
|
|
76
79
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -91,15 +94,17 @@
|
|
|
91
94
|
"jest-environment-jsdom": "^30.2.0",
|
|
92
95
|
"lint-staged": "^16.2.7",
|
|
93
96
|
"postcss": "^8.5.6",
|
|
97
|
+
"postcss-cli": "^11.0.1",
|
|
98
|
+
"postcss-prefix-selector": "^2.1.1",
|
|
94
99
|
"prettier": "^3.8.1",
|
|
95
100
|
"react": "^19.2.4",
|
|
96
101
|
"react-dom": "^19.2.4",
|
|
97
102
|
"rimraf": "^6.1.3",
|
|
98
|
-
"rollup": "^4.
|
|
103
|
+
"rollup": "^4.58.0",
|
|
99
104
|
"rollup-plugin-dts": "^6.3.0",
|
|
100
105
|
"rollup-plugin-postcss": "^4.0.2",
|
|
101
|
-
"tailwind-merge": "^3.
|
|
102
|
-
"tailwindcss": "^4.
|
|
106
|
+
"tailwind-merge": "^3.5.0",
|
|
107
|
+
"tailwindcss": "^4.2.0",
|
|
103
108
|
"ts-jest": "^29.4.6",
|
|
104
109
|
"tslib": "^2.8.1",
|
|
105
110
|
"typescript": "^5.9.3",
|