@simpoobusiness/sdk 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/cjs/index.js +1 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/embed.d.ts +4 -0
- package/dist/esm/index.js +1 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/simpoo-sdk.js +131 -0
- package/dist/simpoo-sdk.js.map +1 -0
- package/dist/styles.css +18 -0
- package/package.json +9 -5
package/dist/styles.css
CHANGED
|
@@ -215,6 +215,24 @@
|
|
|
215
215
|
.z-50 {
|
|
216
216
|
z-index: 50;
|
|
217
217
|
}
|
|
218
|
+
.container {
|
|
219
|
+
width: 100%;
|
|
220
|
+
@media (width >= 40rem) {
|
|
221
|
+
max-width: 40rem;
|
|
222
|
+
}
|
|
223
|
+
@media (width >= 48rem) {
|
|
224
|
+
max-width: 48rem;
|
|
225
|
+
}
|
|
226
|
+
@media (width >= 64rem) {
|
|
227
|
+
max-width: 64rem;
|
|
228
|
+
}
|
|
229
|
+
@media (width >= 80rem) {
|
|
230
|
+
max-width: 80rem;
|
|
231
|
+
}
|
|
232
|
+
@media (width >= 96rem) {
|
|
233
|
+
max-width: 96rem;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
218
236
|
.-mx-1 {
|
|
219
237
|
margin-inline: calc(var(--spacing) * -1);
|
|
220
238
|
}
|
package/package.json
CHANGED
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"main": "dist/cjs/index.js",
|
|
8
8
|
"module": "dist/esm/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
|
+
"unpkg": "dist/simpoo-sdk.js",
|
|
11
|
+
"jsdelivr": "dist/simpoo-sdk.js",
|
|
10
12
|
"files": [
|
|
11
13
|
"dist"
|
|
12
14
|
],
|
|
@@ -16,10 +18,7 @@
|
|
|
16
18
|
"build": "npm run clean && npm run build:css && npm run build:types && rollup -c --bundleConfigAsCjs",
|
|
17
19
|
"build:types": "tsc -p tsconfig.build.json",
|
|
18
20
|
"build:css": "postcss src/styles/tailwind.css -o dist/styles.css",
|
|
19
|
-
"dev": "npm run build:watch & npm run yalc:watch",
|
|
20
21
|
"build:watch": "rollup -c --watch --bundleConfigAsCjs",
|
|
21
|
-
"yalc:publish": "yalc publish",
|
|
22
|
-
"yalc:watch": "yalc push --watch",
|
|
23
22
|
"prepare": "npm run build",
|
|
24
23
|
"publish:npm": "npm run build && npm publish --access public"
|
|
25
24
|
},
|
|
@@ -40,21 +39,26 @@
|
|
|
40
39
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
41
40
|
"@rollup/plugin-json": "^6.1.0",
|
|
42
41
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
42
|
+
"@rollup/plugin-replace": "^6.0.2",
|
|
43
43
|
"@rollup/plugin-strip": "^3.0.4",
|
|
44
44
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
45
45
|
"@rollup/plugin-url": "^8.0.2",
|
|
46
46
|
"@svgr/rollup": "^8.1.0",
|
|
47
47
|
"@types/axios": "^0.9.36",
|
|
48
|
-
"@types/react": "^19.1.
|
|
48
|
+
"@types/react": "^19.1.9",
|
|
49
|
+
"@types/react-dom": "^19.1.7",
|
|
49
50
|
"autoprefixer": "^10.4.21",
|
|
50
51
|
"postcss": "^8.5.6",
|
|
51
52
|
"postcss-cli": "^11.0.1",
|
|
53
|
+
"react": "^19.1.1",
|
|
54
|
+
"react-dom": "^19.1.1",
|
|
52
55
|
"rimraf": "^5.0.10",
|
|
53
56
|
"rollup": "^4.45.1",
|
|
54
57
|
"rollup-plugin-copy": "^3.5.0",
|
|
55
58
|
"rollup-plugin-dts": "^6.2.1",
|
|
56
59
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
57
60
|
"rollup-plugin-postcss": "^4.0.2",
|
|
61
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
58
62
|
"tailwindcss": "^4.1.11",
|
|
59
63
|
"typedoc": "^0.28.7",
|
|
60
64
|
"typedoc-plugin-markdown": "^4.7.1",
|