design-system-silkhaus 2.16.2-beta.buttonfix → 2.16.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 +28 -28
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1756 -1752
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -331,6 +331,14 @@ declare interface DateRangePickerProps {
|
|
|
331
331
|
_mobileDaySize?: number;
|
|
332
332
|
mobileBreakPoint?: number;
|
|
333
333
|
isAdjustHeightForViewport?: boolean;
|
|
334
|
+
/**
|
|
335
|
+
* @default 'button'
|
|
336
|
+
*/
|
|
337
|
+
primaryBtnType?: 'button' | 'submit' | 'reset';
|
|
338
|
+
/**
|
|
339
|
+
* @default 'button'
|
|
340
|
+
*/
|
|
341
|
+
secondaryBtnType?: 'button' | 'submit' | 'reset';
|
|
334
342
|
}
|
|
335
343
|
|
|
336
344
|
export declare const DeleteIcon: FC<{
|