design-system-silkhaus 2.16.1-beta.fixes → 2.16.2-beta.buttonfix.1
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 +4 -0
- package/dist/index.js +1769 -1761
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ export declare interface ActionFooterProps {
|
|
|
53
53
|
secondaryBtnDisabled?: boolean;
|
|
54
54
|
primaryBtnTxt: string | default_2.ReactNode;
|
|
55
55
|
secondaryBtnTxt?: string | default_2.ReactNode;
|
|
56
|
+
primaryBtnType?: 'button' | 'submit' | 'reset';
|
|
57
|
+
secondaryBtnType?: 'button' | 'submit' | 'reset';
|
|
56
58
|
thirdColumn?: default_2.ReactNode;
|
|
57
59
|
}
|
|
58
60
|
|
|
@@ -329,6 +331,8 @@ declare interface DateRangePickerProps {
|
|
|
329
331
|
_mobileDaySize?: number;
|
|
330
332
|
mobileBreakPoint?: number;
|
|
331
333
|
isAdjustHeightForViewport?: boolean;
|
|
334
|
+
primaryBtnType?: 'button' | 'submit' | 'reset';
|
|
335
|
+
secondaryBtnType?: 'button' | 'submit' | 'reset';
|
|
332
336
|
}
|
|
333
337
|
|
|
334
338
|
export declare const DeleteIcon: FC<{
|