@select-org/select-post-builder 1.0.5 → 1.0.7
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.d.ts +19 -19
- package/dist/post-builder.cjs.js +30300 -0
- package/dist/post-builder.css +5264 -1
- package/dist/post-builder.js +25593 -42137
- package/package.json +21 -21
- package/dist/post-builder.cjs +0 -526
- package/dist/post-builder.umd.cjs +0 -526
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@select-org/select-post-builder",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A reusable, extensible
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "A reusable, extensible Post Builder widget for the Select platform and beyond.",
|
|
5
|
+
"main": "./dist/post-builder.cjs.js",
|
|
6
|
+
"module": "./dist/post-builder.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/post-builder.js",
|
|
12
|
+
"require": "./dist/post-builder.cjs.js",
|
|
13
|
+
"default": "./dist/post-builder.js"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/post-builder.css"
|
|
8
16
|
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"license": "ISC",
|
|
14
|
-
"author": "",
|
|
15
|
-
"private": false,
|
|
16
|
-
"type": "module",
|
|
17
|
-
"main": "dist/post-builder.cjs",
|
|
18
|
-
"module": "dist/post-builder.js",
|
|
19
|
-
"umd:main": "dist/post-builder.umd.cjs",
|
|
20
|
-
"types": "dist/index.d.ts",
|
|
17
|
+
"sideEffects": [
|
|
18
|
+
"*.css",
|
|
19
|
+
"./dist/post-builder.css"
|
|
20
|
+
],
|
|
21
21
|
"files": [
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"preview": "vite preview",
|
|
30
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
31
|
},
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"react": "^17.0.2 || ^18.0.0",
|
|
34
|
+
"react-dom": "^17.0.2 || ^18.0.0"
|
|
35
|
+
},
|
|
32
36
|
"dependencies": {
|
|
33
37
|
"@fontsource-variable/montserrat": "^5.2.8",
|
|
34
38
|
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
@@ -113,9 +117,5 @@
|
|
|
113
117
|
"typescript-eslint": "^8.44.1",
|
|
114
118
|
"vite": "^7.1.7",
|
|
115
119
|
"vite-plugin-dts": "^4.5.4"
|
|
116
|
-
},
|
|
117
|
-
"peerDependencies": {
|
|
118
|
-
"react": "^17 || ^18 || ^19",
|
|
119
|
-
"react-dom": "^17 || ^18 || ^19"
|
|
120
120
|
}
|
|
121
121
|
}
|