@parasutcom/fds 0.1.18 → 0.1.20
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.d.ts +6 -3
- package/dist/index.js +1724 -1726
- package/dist/styles.css +1 -1
- package/dist/tanstack-table.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ import { Select as Select_2 } from '@base-ui/react/select';
|
|
|
25
25
|
import { Separator as Separator_2 } from '@base-ui/react/separator';
|
|
26
26
|
import { Switch as Switch_2 } from '@base-ui/react/switch';
|
|
27
27
|
import { Tabs as Tabs_2 } from '@base-ui/react/tabs';
|
|
28
|
+
import { toast } from 'sonner';
|
|
28
29
|
import { ToasterProps } from 'sonner';
|
|
29
30
|
import { Toggle as Toggle_2 } from '@base-ui/react/toggle';
|
|
30
31
|
import { Tooltip as Tooltip_2 } from '@base-ui/react/tooltip';
|
|
@@ -205,7 +206,7 @@ export declare function ChartTooltipContent({ active, payload, className, indica
|
|
|
205
206
|
labelKey?: string;
|
|
206
207
|
}): JSX.Element | null;
|
|
207
208
|
|
|
208
|
-
export declare function Checkbox({ className, ...props }: Checkbox_2.Root.Props): JSX.Element;
|
|
209
|
+
export declare function Checkbox({ className, indeterminate, ...props }: Checkbox_2.Root.Props): JSX.Element;
|
|
209
210
|
|
|
210
211
|
export declare function cn(...inputs: ClassValue[]): string;
|
|
211
212
|
|
|
@@ -802,6 +803,8 @@ declare const THEMES: {
|
|
|
802
803
|
readonly dark: ".dark";
|
|
803
804
|
};
|
|
804
805
|
|
|
806
|
+
export { toast }
|
|
807
|
+
|
|
805
808
|
export declare const Toaster: ({ ...props }: ToasterProps) => JSX.Element;
|
|
806
809
|
|
|
807
810
|
export declare function Toggle({ className, variant, size, ...props }: Toggle_2.Props & VariantProps<typeof toggleVariants>): JSX.Element;
|
|
@@ -832,7 +835,7 @@ declare module '@tanstack/react-table' {
|
|
|
832
835
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
833
836
|
/** Cell and header content alignment */
|
|
834
837
|
align?: 'left' | 'right' | 'center';
|
|
835
|
-
/** Additional className applied to the
|
|
836
|
-
|
|
838
|
+
/** Additional className applied to both <th> and <td> elements of the column (e.g., 'w-20') */
|
|
839
|
+
className?: string;
|
|
837
840
|
}
|
|
838
841
|
}
|