@altimateai/ui-components 0.0.6-beta.1 → 0.0.6
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/CoachForm.js +3667 -3759
- package/dist/Label.js +23 -0
- package/dist/NativeSelect.js +1359 -1600
- package/dist/Tooltip.js +1747 -1536
- package/dist/assets/icons/index.js +1 -1
- package/dist/index.js +24 -24
- package/dist/index2.js +4 -4
- package/dist/lineage/index.d.ts +7 -3
- package/dist/lineage/index.js +1494 -1413
- package/dist/main.js +144 -144
- package/dist/redux-toolkit.modern.js +1078 -986
- package/dist/shadcn/index.d.ts +1 -10
- package/dist/shadcn/index.js +1412 -1428
- package/package.json +2 -2
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -224,19 +224,10 @@ declare const Tooltip: ({ children, title, ...props }: TooltipPrimitive.TooltipP
|
|
|
224
224
|
|
|
225
225
|
declare const badgeVariants: (props?: ({
|
|
226
226
|
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
227
|
-
interactive?: boolean | null | undefined;
|
|
228
227
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
229
228
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
230
|
-
/**
|
|
231
|
-
* If true, the badge will be focusable and handle keyboard events
|
|
232
|
-
*/
|
|
233
|
-
interactive?: boolean;
|
|
234
|
-
/**
|
|
235
|
-
* Optional click handler for interactive badges
|
|
236
|
-
*/
|
|
237
|
-
onAction?: () => void;
|
|
238
229
|
}
|
|
239
|
-
declare function Badge({ className, variant,
|
|
230
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
240
231
|
|
|
241
232
|
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
242
233
|
declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|