@6thbridge/hexa 0.0.101 → 0.0.105
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.mts +10 -15
- package/dist/index.d.ts +10 -15
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +9 -5
- package/package.json +3 -3
- package/tsup.config.ts +11 -0
package/dist/output.css
CHANGED
|
@@ -838,6 +838,10 @@
|
|
|
838
838
|
min-width: 80px;
|
|
839
839
|
}
|
|
840
840
|
|
|
841
|
+
.\!max-w-full{
|
|
842
|
+
max-width: 100% !important;
|
|
843
|
+
}
|
|
844
|
+
|
|
841
845
|
.\!max-w-max{
|
|
842
846
|
max-width: -moz-max-content !important;
|
|
843
847
|
max-width: max-content !important;
|
|
@@ -1236,6 +1240,11 @@
|
|
|
1236
1240
|
border-bottom-left-radius: 0px !important;
|
|
1237
1241
|
}
|
|
1238
1242
|
|
|
1243
|
+
.\!rounded-r-none{
|
|
1244
|
+
border-top-right-radius: 0px !important;
|
|
1245
|
+
border-bottom-right-radius: 0px !important;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1239
1248
|
.\!rounded-s-none{
|
|
1240
1249
|
border-start-start-radius: 0px !important;
|
|
1241
1250
|
border-end-start-radius: 0px !important;
|
|
@@ -1281,11 +1290,6 @@
|
|
|
1281
1290
|
border-bottom-right-radius: 9999px;
|
|
1282
1291
|
}
|
|
1283
1292
|
|
|
1284
|
-
.rounded-r-none{
|
|
1285
|
-
border-top-right-radius: 0px;
|
|
1286
|
-
border-bottom-right-radius: 0px;
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
1293
|
.rounded-s-md{
|
|
1290
1294
|
border-start-start-radius: 0.375rem;
|
|
1291
1295
|
border-end-start-radius: 0.375rem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@6thbridge/hexa",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.105",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/DexlerNG/payfusion-component-library.git",
|
|
@@ -100,8 +100,8 @@
|
|
|
100
100
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
101
101
|
"build:style": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css",
|
|
102
102
|
"dev:style": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css --watch",
|
|
103
|
-
"build-fast": "tsup
|
|
104
|
-
"build": "tsup
|
|
103
|
+
"build-fast": "tsup --no-dts --watch",
|
|
104
|
+
"build": "tsup && pnpm run build:style",
|
|
105
105
|
"dev": "concurrently \"pnpm run build-fast\" \"pnpm run dev:style\"",
|
|
106
106
|
"pack:local": "rm -f 6thbridge-hexa-local.tgz && pnpm pack --pack-destination . && mv 6thbridge-hexa-*.tgz 6thbridge-hexa-local.tgz"
|
|
107
107
|
}
|