@delightui/components 0.1.80 → 0.1.81
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/cjs/components/molecules/Modal/ModalFooter/ModalFooter.types.d.ts +6 -0
- package/dist/cjs/library.css +74 -38
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/molecules/Modal/ModalFooter/ModalFooter.types.d.ts +6 -0
- package/dist/esm/library.css +74 -38
- package/dist/esm/library.js +1 -1
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1455,6 +1455,7 @@ declare const Modal: (props: ModalProps) => react_jsx_runtime.JSX.Element;
|
|
|
1455
1455
|
* @default "1Button"
|
|
1456
1456
|
*/
|
|
1457
1457
|
type ModalFooterTypeEnum = "1Button" | "2Buttons";
|
|
1458
|
+
type ModalFooterStyleEnum = "NoStroke" | "WithStroke";
|
|
1458
1459
|
/**
|
|
1459
1460
|
* Props for the ModalFooter component.
|
|
1460
1461
|
*/
|
|
@@ -1464,6 +1465,11 @@ type ModalFooterProps = Omit<HTMLAttributes<HTMLDivElement>, 'style'> & {
|
|
|
1464
1465
|
* @default "1Button"
|
|
1465
1466
|
*/
|
|
1466
1467
|
type?: ModalFooterTypeEnum;
|
|
1468
|
+
/**
|
|
1469
|
+
* Determines the style of the footer.
|
|
1470
|
+
* @default "NoStroke"
|
|
1471
|
+
*/
|
|
1472
|
+
style?: ModalFooterStyleEnum;
|
|
1467
1473
|
/**
|
|
1468
1474
|
* The primary button element.
|
|
1469
1475
|
*/
|