@seeqdev/qomponents 0.0.168 → 0.0.170
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 +135 -135
- package/dist/FontCustom.woff +0 -0
- package/dist/FontCustom.woff2 +0 -0
- package/dist/example/.eslintrc.cjs +14 -14
- package/dist/example/README.md +33 -33
- package/dist/example/index.html +13 -13
- package/dist/example/package.json +32 -32
- package/dist/example/src/ComplexSelectExample.tsx +81 -81
- package/dist/example/src/Example.tsx +638 -638
- package/dist/example/src/index.css +103 -103
- package/dist/example/src/main.tsx +10 -10
- package/dist/example/src/vite-env.d.ts +1 -1
- package/dist/example/tsconfig.json +33 -33
- package/dist/example/tsconfig.node.json +12 -12
- package/dist/example/vite.config.ts +13 -13
- package/dist/index.esm.js +17 -16
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17 -16
- package/dist/index.js.map +1 -1
- package/dist/src/Button/Button.stories.d.ts +1 -0
- package/dist/src/Button/Button.types.d.ts +1 -1
- package/dist/styles.css +3872 -3848
- package/package.json +89 -89
|
@@ -6,3 +6,4 @@ export declare const AllButtonVariants: () => import("react/jsx-runtime").JSX.El
|
|
|
6
6
|
export declare const ButtonWithTooltip: () => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export declare const ButtonWithIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export declare const DisabledButton: () => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const ButtonSizes: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,7 +2,7 @@ import { TooltipProps } from '../Tooltip/Tooltip.types';
|
|
|
2
2
|
import { IconType } from '../Icon/Icon.types';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
export declare const buttonTypes: readonly ["button", "reset", "submit", "link"];
|
|
5
|
-
export declare const buttonSizes: readonly ["sm", "lg"];
|
|
5
|
+
export declare const buttonSizes: readonly ["xs", "sm", "lg"];
|
|
6
6
|
export declare const buttonVariants: readonly ["outline", "theme", "theme-light", "warning", "danger", "no-border"];
|
|
7
7
|
export declare const iconPositions: string[];
|
|
8
8
|
export type ButtonType = (typeof buttonTypes)[number];
|