@ngrok/mantle 0.83.4 → 0.83.6

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 (59) hide show
  1. package/dist/agent.json +1 -1
  2. package/dist/{alert-Br9DAAuo.d.ts → alert-BQdon-PF.d.ts} +2 -2
  3. package/dist/alert-center.d.ts +1 -1
  4. package/dist/alert-center.js +1 -1
  5. package/dist/{alert-qJqF7CzB.js → alert-cszhDIVl.js} +1 -1
  6. package/dist/alert-dialog.d.ts +1 -2
  7. package/dist/alert-dialog.js +1 -1
  8. package/dist/alert.d.ts +1 -1
  9. package/dist/alert.js +1 -1
  10. package/dist/area-chart.js +1 -1
  11. package/dist/bar-chart.js +1 -1
  12. package/dist/breadcrumb.d.ts +333 -7
  13. package/dist/breadcrumb.js +1 -1
  14. package/dist/{button-dgVCHb8N.js → button-Bc0lEOJ2.js} +1 -1
  15. package/dist/{button-CXW1RQoo.d.ts → button-BsfLZ42S.d.ts} +2 -2
  16. package/dist/{button-CCkGqE1t.js → button-CNg69RsV.js} +1 -1
  17. package/dist/button-DiDlvAOp.js +1 -0
  18. package/dist/{button-DRr-6YHc.d.ts → button-DjsmeoJ2.d.ts} +30 -2
  19. package/dist/{button-DJ7AAgII.d.ts → button-DkUUma3k.d.ts} +35 -20
  20. package/dist/button.d.ts +4 -5
  21. package/dist/button.js +1 -1
  22. package/dist/calendar.js +1 -1
  23. package/dist/{chart-DorYMICt.js → chart-G2pIR4uW.js} +1 -1
  24. package/dist/{code-block-CZWPrV4k.d.ts → code-block-D5eDP379.d.ts} +1 -1
  25. package/dist/{code-block-CIE0F2fu.js → code-block-Dj9otiLi.js} +2 -2
  26. package/dist/code-block.d.ts +1 -1
  27. package/dist/code-block.js +1 -1
  28. package/dist/code-block_highlight-utils.d.ts +1 -1
  29. package/dist/code-block_highlight-utils.js +1 -1
  30. package/dist/command.d.ts +1 -1
  31. package/dist/command.js +1 -1
  32. package/dist/data-table.d.ts +5 -5
  33. package/dist/data-table.js +1 -1
  34. package/dist/{dialog-32Hq6w6P.js → dialog-BYILOABg.js} +1 -1
  35. package/dist/{dialog-B6h1BCDL.d.ts → dialog-DJ6jSRyj.d.ts} +4 -4
  36. package/dist/dialog.d.ts +1 -1
  37. package/dist/dialog.js +1 -1
  38. package/dist/field.d.ts +3 -4
  39. package/dist/field.js +1 -1
  40. package/dist/line-chart.js +1 -1
  41. package/dist/llms.txt +1 -1
  42. package/dist/pagination.d.ts +1 -1
  43. package/dist/pagination.js +1 -1
  44. package/dist/sandbar.d.ts +1 -1
  45. package/dist/sandbar.js +1 -1
  46. package/dist/scatter-plot.js +1 -1
  47. package/dist/{sheet-BOSknSN9.js → sheet-CfFXVAzz.js} +1 -1
  48. package/dist/sheet.d.ts +4 -4
  49. package/dist/sheet.js +1 -1
  50. package/dist/sidebar.d.ts +5 -5
  51. package/dist/sidebar.js +1 -1
  52. package/dist/split-button.d.ts +2 -2
  53. package/dist/split-button.js +1 -1
  54. package/dist/text-area.js +1 -1
  55. package/dist/theme-switcher.d.ts +1 -1
  56. package/dist/theme-switcher.js +1 -1
  57. package/package.json +1 -1
  58. package/dist/button-BLDjW1u9.js +0 -1
  59. package/dist/button-DdSKSj1c.d.ts +0 -28
@@ -1,28 +0,0 @@
1
- //#region src/components/button/intents.d.ts
2
- /**
3
- * The tone axis shared by the button family (`Button` and `IconButton`) —
4
- * the purpose a button's color communicates to the user:
5
- *
6
- * - `"neutral"` — the workhorse tone: routine and secondary actions, and the
7
- * default primary action (`appearance="filled" intent="neutral"`)
8
- * - `"accent"` — deliberate brand emphasis, colored with the accent tokens
9
- * (e.g. `bg-filled-accent`, `text-accent-600`); reach for it when an
10
- * action should carry the brand color, not as the routine primary
11
- * - `"danger"` — a destructive or irreversible action
12
- *
13
- * There is no default: `intent` is a required prop on the button family so
14
- * every call site states the tone it means.
15
- *
16
- * See `decisions/2026-07-13-button-size-and-intent-api.md`.
17
- *
18
- * @example
19
- * ```tsx
20
- * <Button appearance="filled" intent="neutral">Save</Button>
21
- * <Button appearance="outlined" intent="neutral">Cancel</Button>
22
- * <Button appearance="filled" intent="danger">Delete</Button>
23
- * <Button appearance="filled" intent="accent">Upgrade to Pro</Button>
24
- * ```
25
- */
26
- type ButtonIntent = "accent" | "danger" | "neutral";
27
- //#endregion
28
- export { ButtonIntent as t };