@telepix-lab/telepix-ui 0.4.11 → 0.5.0
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/cjs/button/types.d.ts +3 -0
- package/dist/cjs/client.js +355 -259
- package/dist/cjs/index.js +68 -18
- package/dist/cjs/input/index.d.ts +3 -0
- package/dist/cjs/switch/index.d.ts +3 -0
- package/dist/cjs/switch/types.d.ts +1 -0
- package/dist/cjs/tag/index.d.ts +1 -0
- package/dist/client.d.ts +5 -1
- package/dist/color.css +1 -1
- package/dist/esm/button/types.d.ts +3 -0
- package/dist/esm/client.js +356 -260
- package/dist/esm/index.js +68 -18
- package/dist/esm/input/index.d.ts +3 -0
- package/dist/esm/switch/index.d.ts +3 -0
- package/dist/esm/switch/types.d.ts +1 -0
- package/dist/esm/tag/index.d.ts +1 -0
- package/dist/index.d.ts +9 -1
- package/dist/styles.css +9 -9
- package/dist/theme.css +7 -0
- package/package.json +7 -8
|
@@ -8,5 +8,8 @@ export declare const BUTTON_VARIANTS: {
|
|
|
8
8
|
readonly ACCENT: "accent";
|
|
9
9
|
readonly OUTLINE: "outline";
|
|
10
10
|
readonly GHOST: "ghost";
|
|
11
|
+
readonly THUMBNAIL_GHOST: "thumbnail_ghost";
|
|
12
|
+
readonly SUBTLE_FILLED: "subtle_filled";
|
|
13
|
+
readonly ACCENT_GHOST: "accent_ghost";
|
|
11
14
|
};
|
|
12
15
|
export type ButtonVariant = (typeof BUTTON_VARIANTS)[keyof typeof BUTTON_VARIANTS];
|