atomos_next_genesis 1.0.2 → 1.0.3
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 +5733 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -6
- package/dist/index.d.ts +3 -6
- package/dist/index.js +5758 -19
- package/dist/index.js.map +1 -1
- package/package.json +26 -37
package/dist/index.d.cts
CHANGED
|
@@ -143,15 +143,12 @@ declare const CardAction: React.FC<CardActionProps>;
|
|
|
143
143
|
declare const CardContent: React.FC<CardContentProps>;
|
|
144
144
|
declare const CardFooter: React.FC<CardFooterProps>;
|
|
145
145
|
|
|
146
|
-
interface CheckboxProps extends Omit<HTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof checkboxVariant> {
|
|
147
|
-
size?: "sm" | "lg" | "xl";
|
|
148
|
-
disabled?: boolean;
|
|
149
|
-
checked?: boolean;
|
|
150
|
-
children?: never;
|
|
151
|
-
}
|
|
152
146
|
declare const checkboxVariant: (props?: ({
|
|
153
147
|
size?: "sm" | "lg" | "xl" | null | undefined;
|
|
154
148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
149
|
+
interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof checkboxVariant> {
|
|
150
|
+
size?: "sm" | "lg" | "xl";
|
|
151
|
+
}
|
|
155
152
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
156
153
|
|
|
157
154
|
interface ChipProps extends HTMLAttributes<HTMLSpanElement>, VariantProps<typeof chipVariants> {
|
package/dist/index.d.ts
CHANGED
|
@@ -143,15 +143,12 @@ declare const CardAction: React.FC<CardActionProps>;
|
|
|
143
143
|
declare const CardContent: React.FC<CardContentProps>;
|
|
144
144
|
declare const CardFooter: React.FC<CardFooterProps>;
|
|
145
145
|
|
|
146
|
-
interface CheckboxProps extends Omit<HTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof checkboxVariant> {
|
|
147
|
-
size?: "sm" | "lg" | "xl";
|
|
148
|
-
disabled?: boolean;
|
|
149
|
-
checked?: boolean;
|
|
150
|
-
children?: never;
|
|
151
|
-
}
|
|
152
146
|
declare const checkboxVariant: (props?: ({
|
|
153
147
|
size?: "sm" | "lg" | "xl" | null | undefined;
|
|
154
148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
149
|
+
interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof checkboxVariant> {
|
|
150
|
+
size?: "sm" | "lg" | "xl";
|
|
151
|
+
}
|
|
155
152
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
156
153
|
|
|
157
154
|
interface ChipProps extends HTMLAttributes<HTMLSpanElement>, VariantProps<typeof chipVariants> {
|