@mlw-packages/react-components 1.8.3 → 1.8.4
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.css +11 -0
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +516 -516
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -735,6 +735,9 @@ body {
|
|
|
735
735
|
.ml-auto {
|
|
736
736
|
margin-left: auto;
|
|
737
737
|
}
|
|
738
|
+
.mr-0\.5 {
|
|
739
|
+
margin-right: 0.125rem;
|
|
740
|
+
}
|
|
738
741
|
.mr-1 {
|
|
739
742
|
margin-right: 0.25rem;
|
|
740
743
|
}
|
|
@@ -869,6 +872,10 @@ body {
|
|
|
869
872
|
width: 2.25rem;
|
|
870
873
|
height: 2.25rem;
|
|
871
874
|
}
|
|
875
|
+
.size-\[0\.75em\] {
|
|
876
|
+
width: 0.75em;
|
|
877
|
+
height: 0.75em;
|
|
878
|
+
}
|
|
872
879
|
.size-full {
|
|
873
880
|
width: 100%;
|
|
874
881
|
height: 100%;
|
|
@@ -2696,6 +2703,10 @@ body {
|
|
|
2696
2703
|
padding-left: 24rem;
|
|
2697
2704
|
padding-right: 24rem;
|
|
2698
2705
|
}
|
|
2706
|
+
.px-\[0\.5em\] {
|
|
2707
|
+
padding-left: 0.5em;
|
|
2708
|
+
padding-right: 0.5em;
|
|
2709
|
+
}
|
|
2699
2710
|
.py-0 {
|
|
2700
2711
|
padding-top: 0px;
|
|
2701
2712
|
padding-bottom: 0px;
|
package/dist/index.d.mts
CHANGED
|
@@ -270,18 +270,18 @@ declare const buttonVariantsBase: (props?: ({
|
|
|
270
270
|
variant?: "select" | "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
271
271
|
size?: "select" | "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
272
272
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
273
|
-
interface ButtonProps extends
|
|
273
|
+
interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariantsBase> {
|
|
274
274
|
asChild?: boolean;
|
|
275
275
|
testid?: string;
|
|
276
276
|
isLoading?: boolean;
|
|
277
|
-
tooltip?:
|
|
277
|
+
tooltip?: React__default.ReactNode;
|
|
278
278
|
}
|
|
279
|
-
declare const ButtonBase:
|
|
280
|
-
interface ButtonGroupProps extends
|
|
281
|
-
children:
|
|
279
|
+
declare const ButtonBase: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
280
|
+
interface ButtonGroupProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
281
|
+
children: React__default.ReactNode;
|
|
282
282
|
orientation?: "horizontal" | "vertical";
|
|
283
283
|
}
|
|
284
|
-
declare const ButtonGroupBase:
|
|
284
|
+
declare const ButtonGroupBase: React__default.ForwardRefExoticComponent<ButtonGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
285
285
|
|
|
286
286
|
declare const CheckboxBase: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
287
287
|
testid?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -270,18 +270,18 @@ declare const buttonVariantsBase: (props?: ({
|
|
|
270
270
|
variant?: "select" | "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
271
271
|
size?: "select" | "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
272
272
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
273
|
-
interface ButtonProps extends
|
|
273
|
+
interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariantsBase> {
|
|
274
274
|
asChild?: boolean;
|
|
275
275
|
testid?: string;
|
|
276
276
|
isLoading?: boolean;
|
|
277
|
-
tooltip?:
|
|
277
|
+
tooltip?: React__default.ReactNode;
|
|
278
278
|
}
|
|
279
|
-
declare const ButtonBase:
|
|
280
|
-
interface ButtonGroupProps extends
|
|
281
|
-
children:
|
|
279
|
+
declare const ButtonBase: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
280
|
+
interface ButtonGroupProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
281
|
+
children: React__default.ReactNode;
|
|
282
282
|
orientation?: "horizontal" | "vertical";
|
|
283
283
|
}
|
|
284
|
-
declare const ButtonGroupBase:
|
|
284
|
+
declare const ButtonGroupBase: React__default.ForwardRefExoticComponent<ButtonGroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
285
285
|
|
|
286
286
|
declare const CheckboxBase: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
287
287
|
testid?: string;
|