recur-tw 0.10.5 → 0.10.6

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.cjs CHANGED
@@ -476,6 +476,7 @@ var init_skeleton_loader = __esm({
476
476
  <style>
477
477
  :host {
478
478
  display: block;
479
+ width: 100%;
479
480
  container-type: inline-size; /* Enable container queries */
480
481
  }
481
482
 
package/dist/index.js CHANGED
@@ -470,6 +470,7 @@ var init_skeleton_loader = __esm({
470
470
  <style>
471
471
  :host {
472
472
  display: block;
473
+ width: 100%;
473
474
  container-type: inline-size; /* Enable container queries */
474
475
  }
475
476
 
package/dist/recur.umd.js CHANGED
@@ -255,6 +255,7 @@
255
255
  <style>
256
256
  :host {
257
257
  display: block;
258
+ width: 100%;
258
259
  container-type: inline-size; /* Enable container queries */
259
260
  }
260
261
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recur-tw",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "description": "React & Vanilla JS SDK for embedding subscription checkout flows (Taiwan / PAYUNi)",
5
5
  "type": "module",
6
6
  "private": false,
@@ -23,6 +23,14 @@
23
23
  "bugs": {
24
24
  "email": "support@recur.tw"
25
25
  },
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "dev": "tsup --watch",
29
+ "lint": "eslint .",
30
+ "lint:fix": "eslint . --fix",
31
+ "type-check": "tsc --noEmit",
32
+ "examples": "npx http-server . -p 8080 -o /examples/"
33
+ },
26
34
  "main": "./dist/index.js",
27
35
  "module": "./dist/index.js",
28
36
  "types": "./dist/index.d.ts",
@@ -71,6 +79,7 @@
71
79
  "@types/node": "^20.19.9",
72
80
  "@types/react": "^19.1.9",
73
81
  "@types/react-dom": "^19.1.7",
82
+ "@workspace/typescript-config": "workspace:*",
74
83
  "autoprefixer": "^10.4.22",
75
84
  "eslint": "^9",
76
85
  "eslint-plugin-react": "^7.37.5",
@@ -81,18 +90,9 @@
81
90
  "tailwindcss": "^4.1.11",
82
91
  "tsup": "^8.3.5",
83
92
  "typescript": "^5.9.2",
84
- "typescript-eslint": "^8.47.0",
85
- "@workspace/typescript-config": "0.0.0"
93
+ "typescript-eslint": "^8.47.0"
86
94
  },
87
95
  "dependencies": {
88
96
  "lit-html": "^3.3.1"
89
- },
90
- "scripts": {
91
- "build": "tsup",
92
- "dev": "tsup --watch",
93
- "lint": "eslint .",
94
- "lint:fix": "eslint . --fix",
95
- "type-check": "tsc --noEmit",
96
- "examples": "npx http-server . -p 8080 -o /examples/"
97
97
  }
98
- }
98
+ }