@bronzelabs/oakma-ui 0.0.4 → 0.0.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/chunk-2S26OQ7A.js +2 -0
- package/dist/chunk-5CZMFZ6I.js +2 -0
- package/dist/chunk-7KFEINOL.js +2 -0
- package/dist/chunk-AERZTKI2.js +2 -0
- package/dist/chunk-COIYH42M.js +2 -0
- package/dist/chunk-ECQDULOI.js +2 -0
- package/dist/chunk-ETBWQWG5.js +2 -0
- package/dist/chunk-FNGWB2KT.js +2 -0
- package/dist/chunk-HDP66ZRA.js +2 -0
- package/dist/chunk-HGSFGBM6.js +2 -0
- package/dist/chunk-IOIICV6R.js +2 -0
- package/dist/chunk-LILYIQ5G.js +2 -0
- package/dist/chunk-MM52HAHJ.js +2 -0
- package/dist/chunk-OAFI6CS3.js +2 -0
- package/dist/chunk-RPWJBMXA.js +2 -0
- package/dist/chunk-SCGB3NVF.js +2 -0
- package/dist/chunk-U6FPHBLH.js +2 -0
- package/dist/chunk-VMAZIGOS.js +2 -0
- package/dist/components/Button/index.d.ts +58 -0
- package/dist/components/Button/index.js +2 -0
- package/dist/components/Checkbox/index.d.ts +19 -0
- package/dist/components/Checkbox/index.js +2 -0
- package/dist/components/Chip/index.d.ts +17 -0
- package/dist/components/Chip/index.js +2 -0
- package/dist/components/Drawer/index.d.ts +33 -0
- package/dist/components/Drawer/index.js +2 -0
- package/dist/components/Dropdown/index.d.ts +44 -0
- package/dist/components/Dropdown/index.js +2 -0
- package/dist/components/Logo/index.d.ts +9 -0
- package/dist/components/Logo/index.js +2 -0
- package/dist/components/Modal/index.d.ts +40 -0
- package/dist/components/Modal/index.js +2 -0
- package/dist/components/MultiSelect/index.d.ts +17 -0
- package/dist/components/MultiSelect/index.js +2 -0
- package/dist/components/Notification/index.d.ts +21 -0
- package/dist/components/Notification/index.js +2 -0
- package/dist/components/Notifications/index.d.ts +25 -0
- package/dist/components/Notifications/index.js +2 -0
- package/dist/components/Select/index.d.ts +21 -0
- package/dist/components/Select/index.js +2 -0
- package/dist/components/Spinner/index.d.ts +17 -0
- package/dist/components/Spinner/index.js +2 -0
- package/dist/components/TextArea/index.d.ts +25 -0
- package/dist/components/TextArea/index.js +2 -0
- package/dist/components/TextField/index.d.ts +73 -0
- package/dist/components/TextField/index.js +2 -0
- package/dist/components/TextInput/index.d.ts +35 -0
- package/dist/components/TextInput/index.js +2 -0
- package/dist/components/Toggle/index.d.ts +13 -0
- package/dist/components/Toggle/index.js +2 -0
- package/dist/index.d.ts +20 -345
- package/dist/index.js +1 -1
- package/dist/types-CKb67Dtj.d.ts +6 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const TEXT_FIELD_SIZES: readonly ["sm", "md"];
|
|
2
|
+
type TextFieldSize = (typeof TEXT_FIELD_SIZES)[number];
|
|
3
|
+
declare const TEXT_FIELD_VARIANTS: readonly ["dark", "light"];
|
|
4
|
+
type TextFieldVariant = (typeof TEXT_FIELD_VARIANTS)[number];
|
|
5
|
+
|
|
6
|
+
export { TEXT_FIELD_SIZES as T, TEXT_FIELD_VARIANTS as a, type TextFieldSize as b, type TextFieldVariant as c };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bronzelabs/oakma-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Oakma's component system for the web.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"lint:fix": "eslint . --fix",
|
|
29
29
|
"storybook": "storybook dev -p 6006",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
|
-
"release": "
|
|
31
|
+
"release": "npm run build && bash ./scripts/release.sh"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"clsx": "^2.1.1"
|