@okshaun/components 0.4.5 → 0.4.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.d.ts +8 -0
- package/dist/index.js +384 -0
- package/dist/index.js.map +1 -1
- package/dist/panda.buildinfo.json +67 -2
- package/dist/preset.js +260 -0
- package/dist/preset.js.map +1 -1
- package/dist/sprite.symbol.html +1 -1
- package/package.json +5 -2
package/dist/sprite.symbol.html
CHANGED
|
@@ -3526,7 +3526,7 @@ embedded above. They may be styled via CSS.
|
|
|
3526
3526
|
|
|
3527
3527
|
<footer>
|
|
3528
3528
|
<p>
|
|
3529
|
-
Generated <span class="date">Sun, 14 Dec 2025
|
|
3529
|
+
Generated <span class="date">Sun, 14 Dec 2025 20:46:40 GMT</span> using
|
|
3530
3530
|
<a href="https://github.com/svg-sprite/svg-sprite" target="_blank" rel="noopener noreferrer">svg-sprite</a>.
|
|
3531
3531
|
</p>
|
|
3532
3532
|
</footer>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okshaun/components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.6",
|
|
5
5
|
"description": "A comprehensive React component library with Panda CSS theming",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -19,7 +19,10 @@
|
|
|
19
19
|
"storybook": "storybook dev -p 6006",
|
|
20
20
|
"build-storybook": "storybook build",
|
|
21
21
|
"generate-sprite": "node src/utils/generate-sprite.js",
|
|
22
|
-
"prepublishOnly": "npm run build"
|
|
22
|
+
"prepublishOnly": "npm run build",
|
|
23
|
+
"publish-patch": "npm version patch && npm publish",
|
|
24
|
+
"publish-minor": "npm version minor && npm publish",
|
|
25
|
+
"publish-major": "npm version major && npm publish"
|
|
23
26
|
},
|
|
24
27
|
"files": [
|
|
25
28
|
"dist",
|