@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/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.101",
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 src/index.ts --format=esm,cjs --no-dts --watch",
104
- "build": "tsup src/index.ts --format=esm,cjs --dts --clean --minify --sourcemap && pnpm run build:style",
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
  }
package/tsup.config.ts ADDED
@@ -0,0 +1,11 @@
1
+ import { defineConfig } from "tsup";
2
+
3
+ export default defineConfig({
4
+ entry: ["src/index.ts"],
5
+ format: ["cjs", "esm"],
6
+ dts: true,
7
+ clean: true,
8
+ minify: true,
9
+ sourcemap: true,
10
+ noExternal: ["vaul"],
11
+ });