@texturehq/edges 1.25.2 → 1.26.0
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/{RichTextEditor-BGQenUvv.d.cts → RichTextEditor-BhX77nTp.d.cts} +16 -2
- package/dist/{RichTextEditor-BGQenUvv.d.ts → RichTextEditor-BhX77nTp.d.ts} +16 -2
- package/dist/{TimeField-p31z8xSR.d.cts → TimeField-DT3apBHn.d.cts} +49 -6
- package/dist/{TimeField-Blk2Ci2M.d.ts → TimeField-TmPbBV-t.d.ts} +49 -6
- package/dist/{colors-Bw6dREwE.d.ts → colors-BER6l3p0.d.ts} +11 -3
- package/dist/{colors-nZbxzpnU.d.cts → colors-DdsCnLrp.d.cts} +11 -3
- package/dist/components.manifest.json +5 -5
- package/dist/form/index.cjs +1 -1
- package/dist/form/index.cjs.map +1 -1
- package/dist/form/index.d.cts +1 -1
- package/dist/form/index.d.ts +1 -1
- package/dist/form/index.js +1 -1
- package/dist/form/index.js.map +1 -1
- package/dist/{index-DKA9NMRw.d.ts → index-Dkhk7IbI.d.cts} +5 -1
- package/dist/{index-DKA9NMRw.d.cts → index-Dkhk7IbI.d.ts} +5 -1
- package/dist/index.cjs +20 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +74 -13
- package/dist/index.d.ts +74 -13
- package/dist/index.js +20 -14
- package/dist/index.js.map +1 -1
- package/dist/rhf/index.cjs +1 -1
- package/dist/rhf/index.cjs.map +1 -1
- package/dist/rhf/index.d.cts +2 -2
- package/dist/rhf/index.d.ts +2 -2
- package/dist/rhf/index.js +1 -1
- package/dist/rhf/index.js.map +1 -1
- package/dist/server.cjs +2 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +2 -2
- package/dist/server.d.ts +2 -2
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/dist/styles/utilities.css +13 -2
- package/dist/styles.css +46 -18
- package/dist/utilities.manifest.json +1 -1
- package/package.json +1 -1
- package/scripts/setup-cursor-rules.js +4 -4
|
@@ -57,6 +57,10 @@ interface DialogFooterConfig {
|
|
|
57
57
|
* Secondary action button configuration
|
|
58
58
|
*/
|
|
59
59
|
secondaryAction?: DialogAction;
|
|
60
|
+
/**
|
|
61
|
+
* Tertiary action button configuration (typically left-aligned destructive action)
|
|
62
|
+
*/
|
|
63
|
+
tertiaryAction?: DialogAction;
|
|
60
64
|
/**
|
|
61
65
|
* Custom footer content above the action buttons
|
|
62
66
|
*/
|
|
@@ -160,7 +164,7 @@ interface DialogProps extends Omit<DialogHeaderConfig, "onClose">, DialogFooterC
|
|
|
160
164
|
* </Dialog>
|
|
161
165
|
* ```
|
|
162
166
|
*/
|
|
163
|
-
declare function Dialog({ isOpen, onClose, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, children, primaryAction, secondaryAction, footerContent, transparentOverlay, maxWidth, minWidth, maxHeight, height, mobileMaxHeight, mobileHeight, contentPadding, className, }: DialogProps): react_jsx_runtime.JSX.Element | null;
|
|
167
|
+
declare function Dialog({ isOpen, onClose, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, children, primaryAction, secondaryAction, tertiaryAction, footerContent, transparentOverlay, maxWidth, minWidth, maxHeight, height, mobileMaxHeight, mobileHeight, contentPadding, className, }: DialogProps): react_jsx_runtime.JSX.Element | null;
|
|
164
168
|
|
|
165
169
|
interface DrawerProps extends DialogHeaderConfig, DialogFooterConfig {
|
|
166
170
|
/**
|
|
@@ -57,6 +57,10 @@ interface DialogFooterConfig {
|
|
|
57
57
|
* Secondary action button configuration
|
|
58
58
|
*/
|
|
59
59
|
secondaryAction?: DialogAction;
|
|
60
|
+
/**
|
|
61
|
+
* Tertiary action button configuration (typically left-aligned destructive action)
|
|
62
|
+
*/
|
|
63
|
+
tertiaryAction?: DialogAction;
|
|
60
64
|
/**
|
|
61
65
|
* Custom footer content above the action buttons
|
|
62
66
|
*/
|
|
@@ -160,7 +164,7 @@ interface DialogProps extends Omit<DialogHeaderConfig, "onClose">, DialogFooterC
|
|
|
160
164
|
* </Dialog>
|
|
161
165
|
* ```
|
|
162
166
|
*/
|
|
163
|
-
declare function Dialog({ isOpen, onClose, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, children, primaryAction, secondaryAction, footerContent, transparentOverlay, maxWidth, minWidth, maxHeight, height, mobileMaxHeight, mobileHeight, contentPadding, className, }: DialogProps): react_jsx_runtime.JSX.Element | null;
|
|
167
|
+
declare function Dialog({ isOpen, onClose, title, headerContent, titleAlign, hideCloseIcon, hasBackArrow, onBack, children, primaryAction, secondaryAction, tertiaryAction, footerContent, transparentOverlay, maxWidth, minWidth, maxHeight, height, mobileMaxHeight, mobileHeight, contentPadding, className, }: DialogProps): react_jsx_runtime.JSX.Element | null;
|
|
164
168
|
|
|
165
169
|
interface DrawerProps extends DialogHeaderConfig, DialogFooterConfig {
|
|
166
170
|
/**
|