lucent-ui 0.16.0 → 0.17.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/index.cjs +23 -23
- package/dist/index.d.ts +2 -2
- package/dist/index.js +433 -388
- package/dist-cli/cli/entry.js +0 -0
- package/dist-cli/cli/index.js +0 -0
- package/dist-server/server/index.js +0 -0
- package/dist-server/src/manifest/examples/button.manifest.js +32 -6
- package/package.json +14 -16
- package/dist-server/src/manifest/validate.test.js +0 -28
package/dist/index.d.ts
CHANGED
|
@@ -126,9 +126,9 @@ export declare interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElem
|
|
|
126
126
|
bordered?: boolean;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
export declare type ButtonSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
129
|
+
export declare type ButtonSize = '2xs' | 'xs' | 'sm' | 'md' | 'lg';
|
|
130
130
|
|
|
131
|
-
export declare type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
|
|
131
|
+
export declare type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger' | 'danger-outline' | 'danger-ghost';
|
|
132
132
|
|
|
133
133
|
export declare function Card({ variant, header, footer, children, padding, shadow, radius, style, onClick, href, target, rel, disabled, status, selected, media, }: CardProps): JSX_2.Element;
|
|
134
134
|
|