@hexure/ui 1.9.0 → 1.9.2
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/index.js +12 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Modal/Modal.d.ts +3 -1
- package/dist/esm/index.js +12 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Modal/Modal.d.ts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -16,8 +16,10 @@ export interface ModalProps extends AccessibleProps {
|
|
|
16
16
|
secondaryButton?: ButtonProps;
|
|
17
17
|
/** Defines a button to be displayed on the far left of the bottom button bar */
|
|
18
18
|
tertiaryButton?: ButtonProps;
|
|
19
|
-
/** Overrides the default max width of the modal (
|
|
19
|
+
/** Overrides the default max width of the modal (900px) */
|
|
20
20
|
maxWidth?: string;
|
|
21
|
+
/** Ignore all width/height configuration and display the modal over the entire window with a 40px padding around the edges */
|
|
22
|
+
fullscreen?: boolean;
|
|
21
23
|
/** It is used to pass child nodes, string values and number as child components. */
|
|
22
24
|
children: ReactNode;
|
|
23
25
|
/** It is used to give title. */
|
package/dist/index.d.ts
CHANGED
|
@@ -382,8 +382,10 @@ interface ModalProps extends AccessibleProps {
|
|
|
382
382
|
secondaryButton?: ButtonProps;
|
|
383
383
|
/** Defines a button to be displayed on the far left of the bottom button bar */
|
|
384
384
|
tertiaryButton?: ButtonProps;
|
|
385
|
-
/** Overrides the default max width of the modal (
|
|
385
|
+
/** Overrides the default max width of the modal (900px) */
|
|
386
386
|
maxWidth?: string;
|
|
387
|
+
/** Ignore all width/height configuration and display the modal over the entire window with a 40px padding around the edges */
|
|
388
|
+
fullscreen?: boolean;
|
|
387
389
|
/** It is used to pass child nodes, string values and number as child components. */
|
|
388
390
|
children: ReactNode;
|
|
389
391
|
/** It is used to give title. */
|