@koide-labs/ui 0.0.6 → 0.0.7
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/README.md +3 -0
- package/dist/components/accordion/index.js +1 -1
- package/dist/components/alert-dialog/index.js +1 -1
- package/dist/components/anchor/index.js +1 -1
- package/dist/components/avatar/index.js +1 -1
- package/dist/components/badge/index.js +1 -1
- package/dist/components/button/index.js +1 -1
- package/dist/components/checkbox/index.js +1 -1
- package/dist/components/code/index.js +1203 -8
- package/dist/components/collapse/index.js +1 -1
- package/dist/components/command/index.js +2 -2
- package/dist/components/context-menu/index.js +2 -2
- package/dist/components/heading/index.js +1 -1
- package/dist/components/icon/index.js +1 -1
- package/dist/components/icon-button/index.js +1 -1
- package/dist/components/inline-code/index.js +1 -1
- package/dist/components/meter/index.js +1 -1
- package/dist/components/number-input/index.js +2 -2
- package/dist/components/password-input/index.js +1 -1
- package/dist/components/pill/index.js +1 -1
- package/dist/components/popover/index.js +1 -1
- package/dist/components/preview-card/index.js +1 -1
- package/dist/components/radio/index.js +1 -1
- package/dist/components/search-bar/index.js +1 -1
- package/dist/components/select/index.js +1 -1
- package/dist/components/separator/index.js +1 -1
- package/dist/components/slider/index.js +1 -1
- package/dist/components/spinner/index.js +1 -1
- package/dist/components/stacked-avatars/index.js +1 -1
- package/dist/components/status-banner/index.js +1 -1
- package/dist/components/surface/index.js +1 -1
- package/dist/components/switch/index.js +1 -1
- package/dist/components/tabs/index.js +2 -2
- package/dist/components/text/index.js +1 -1
- package/dist/components/timestamp/index.js +1 -1
- package/dist/components/view/index.js +1 -1
- package/dist/{index-FMoPxlJ2.js → index-DVjyPAD4.js} +1 -1
- package/dist/index.js +2 -2
- package/dist/index10.css +1 -1
- package/dist/index11.css +1 -1
- package/dist/index12.css +1 -1
- package/dist/index13.css +1 -1
- package/dist/index14.css +1 -1
- package/dist/index15.css +1 -1
- package/dist/index16.css +1 -1
- package/dist/index17.css +1 -1
- package/dist/index18.css +1 -1
- package/dist/index19.css +1 -1
- package/dist/index2.css +1 -1
- package/dist/index20.css +1 -1
- package/dist/index21.css +1 -1
- package/dist/index22.css +1 -1
- package/dist/index23.css +1 -1
- package/dist/index24.css +1 -1
- package/dist/index25.css +1 -1
- package/dist/index26.css +1 -1
- package/dist/index27.css +1 -1
- package/dist/index28.css +1 -1
- package/dist/index29.css +1 -1
- package/dist/index3.css +1 -1
- package/dist/index30.css +1 -1
- package/dist/index31.css +1 -1
- package/dist/index32.css +1 -1
- package/dist/index33.css +1 -1
- package/dist/index34.css +1 -1
- package/dist/index35.css +1 -1
- package/dist/index36.css +1 -1
- package/dist/index37.css +1 -1
- package/dist/index4.css +1 -1
- package/dist/index5.css +1 -1
- package/dist/index6.css +1 -1
- package/dist/index7.css +1 -1
- package/dist/index8.css +1 -1
- package/dist/index9.css +1 -1
- package/dist/integrations/react-markdown/index.js +73 -6819
- package/package.json +8 -3
- package/dist/index-BX1XbbRk.js +0 -1206
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koide-labs/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -57,13 +57,18 @@
|
|
|
57
57
|
"prismjs": "^1.30.0",
|
|
58
58
|
"react": "^19.2.0",
|
|
59
59
|
"react-dom": "^19.2.0",
|
|
60
|
-
"react-markdown": "^10.1.0",
|
|
61
60
|
"remixicon": "^4.8.0"
|
|
62
61
|
},
|
|
63
62
|
"peerDependencies": {
|
|
64
63
|
"react": "^19.2.0",
|
|
65
64
|
"react-dom": "^19.2.0",
|
|
66
|
-
"remixicon": "^4.8.0"
|
|
65
|
+
"remixicon": "^4.8.0",
|
|
66
|
+
"react-markdown": "^10.1.0"
|
|
67
|
+
},
|
|
68
|
+
"peerDependenciesMeta": {
|
|
69
|
+
"react-markdown": {
|
|
70
|
+
"optional": true
|
|
71
|
+
}
|
|
67
72
|
},
|
|
68
73
|
"devDependencies": {
|
|
69
74
|
"@chromatic-com/storybook": "^4.1.3",
|