@postxl/ui-components 1.0.0 → 1.0.2
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/LICENSE +50 -0
- package/dist/index.d.ts +738 -388
- package/dist/index.js +762 -355
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postxl/ui-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "PostXL UI component library - Radix UI primitives with Tailwind CSS styling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,19 +39,6 @@
|
|
|
39
39
|
"src/styles",
|
|
40
40
|
"src/data-grid/styles.css"
|
|
41
41
|
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "tsdown",
|
|
44
|
-
"build:watch": "tsdown --watch",
|
|
45
|
-
"lint": "eslint .",
|
|
46
|
-
"prettier:check": "prettier --check \"**/*.{ts,tsx}\" --config ../../prettier.config.js --ignore-path ../../.prettierignore",
|
|
47
|
-
"test": "vitest run",
|
|
48
|
-
"test:unit": "vitest run --project=unit",
|
|
49
|
-
"test:storybook": "vitest run --project=storybook",
|
|
50
|
-
"test:coverage": "vitest run --coverage",
|
|
51
|
-
"test:types": "tsc --noEmit",
|
|
52
|
-
"storybook:start": "storybook dev -p 6007",
|
|
53
|
-
"storybook:build": "storybook build"
|
|
54
|
-
},
|
|
55
42
|
"repository": {
|
|
56
43
|
"type": "git",
|
|
57
44
|
"url": "https://github.com/postxl/pxl",
|
|
@@ -127,5 +114,18 @@
|
|
|
127
114
|
"typescript": "~5.8.3",
|
|
128
115
|
"vite": "7.1.12",
|
|
129
116
|
"vitest": "3.2.4"
|
|
117
|
+
},
|
|
118
|
+
"scripts": {
|
|
119
|
+
"build": "tsdown",
|
|
120
|
+
"build:watch": "tsdown --watch",
|
|
121
|
+
"lint": "eslint .",
|
|
122
|
+
"prettier:check": "prettier --check \"**/*.{ts,tsx}\" --config ../../prettier.config.js --ignore-path ../../.prettierignore",
|
|
123
|
+
"test": "vitest run",
|
|
124
|
+
"test:unit": "vitest run --project=unit",
|
|
125
|
+
"test:storybook": "vitest run --project=storybook",
|
|
126
|
+
"test:coverage": "vitest run --coverage",
|
|
127
|
+
"test:types": "tsc --noEmit",
|
|
128
|
+
"storybook:start": "storybook dev -p 6007",
|
|
129
|
+
"storybook:build": "storybook build"
|
|
130
130
|
}
|
|
131
|
-
}
|
|
131
|
+
}
|