design-system-silkhaus 2.3.0-beta.monthly-payment.2 → 2.3.0-beta.monthly-payment.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.cjs +32 -32
- package/dist/index.d.ts +5 -0
- package/dist/index.js +3171 -3162
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CalendarDayShape } from 'react-dates';
|
|
2
2
|
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
+
import { ClassValue } from 'clsx';
|
|
3
4
|
import { default as default_2 } from 'react';
|
|
4
5
|
import { FC } from 'react';
|
|
5
6
|
import { ForwardRefExoticComponent } from 'react';
|
|
@@ -212,6 +213,8 @@ export declare const CloseIcon: FC<{
|
|
|
212
213
|
className?: string;
|
|
213
214
|
}>;
|
|
214
215
|
|
|
216
|
+
export declare function cn(...inputs: ClassValue[]): string;
|
|
217
|
+
|
|
215
218
|
export declare const DateRangePicker: default_2.ForwardRefExoticComponent<DateRangePickerProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
216
219
|
|
|
217
220
|
declare interface DateRangePickerProps {
|
|
@@ -262,6 +265,8 @@ export declare const FilterIcon: FC<{
|
|
|
262
265
|
className?: string;
|
|
263
266
|
}>;
|
|
264
267
|
|
|
268
|
+
export declare const formatCurrency: (val: number, currency?: string) => string;
|
|
269
|
+
|
|
265
270
|
export declare const Grid: React_2.ForwardRefExoticComponent<GridProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
266
271
|
|
|
267
272
|
export declare interface GridProps extends React_2.HTMLAttributes<HTMLDivElement>, Omit<GridVariantProps, 'optional'> {
|