@texturehq/edges 1.25.1 → 1.25.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.
Files changed (34) hide show
  1. package/dist/{RichTextEditor-BGQenUvv.d.cts → RichTextEditor-BhX77nTp.d.cts} +16 -2
  2. package/dist/{RichTextEditor-BGQenUvv.d.ts → RichTextEditor-BhX77nTp.d.ts} +16 -2
  3. package/dist/{TimeField-Blk2Ci2M.d.ts → TimeField-C2O3KVaW.d.ts} +43 -5
  4. package/dist/{TimeField-p31z8xSR.d.cts → TimeField-DC3iyts9.d.cts} +43 -5
  5. package/dist/{colors-Bw6dREwE.d.ts → colors-DCUq7Ywi.d.ts} +1 -1
  6. package/dist/{colors-nZbxzpnU.d.cts → colors-DVn78Aex.d.cts} +1 -1
  7. package/dist/components.manifest.json +5 -5
  8. package/dist/form/index.cjs +1 -1
  9. package/dist/form/index.cjs.map +1 -1
  10. package/dist/form/index.d.cts +1 -1
  11. package/dist/form/index.d.ts +1 -1
  12. package/dist/form/index.js +1 -1
  13. package/dist/form/index.js.map +1 -1
  14. package/dist/{index-DKA9NMRw.d.ts → index-Dkhk7IbI.d.cts} +5 -1
  15. package/dist/{index-DKA9NMRw.d.cts → index-Dkhk7IbI.d.ts} +5 -1
  16. package/dist/index.cjs +9 -9
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.d.cts +24 -13
  19. package/dist/index.d.ts +24 -13
  20. package/dist/index.js +9 -9
  21. package/dist/index.js.map +1 -1
  22. package/dist/rhf/index.cjs +1 -1
  23. package/dist/rhf/index.cjs.map +1 -1
  24. package/dist/rhf/index.d.cts +2 -2
  25. package/dist/rhf/index.d.ts +2 -2
  26. package/dist/rhf/index.js +1 -1
  27. package/dist/rhf/index.js.map +1 -1
  28. package/dist/server.d.cts +2 -2
  29. package/dist/server.d.ts +2 -2
  30. package/dist/styles/utilities.css +15 -2
  31. package/dist/styles.css +62 -2
  32. package/dist/utilities.manifest.json +1 -1
  33. package/package.json +1 -1
  34. 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
  /**