@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.
- package/dist/agent.json +1 -1
- package/dist/{alert-Br9DAAuo.d.ts → alert-BQdon-PF.d.ts} +2 -2
- package/dist/alert-center.d.ts +1 -1
- package/dist/alert-center.js +1 -1
- package/dist/{alert-qJqF7CzB.js → alert-cszhDIVl.js} +1 -1
- package/dist/alert-dialog.d.ts +1 -2
- package/dist/alert-dialog.js +1 -1
- package/dist/alert.d.ts +1 -1
- package/dist/alert.js +1 -1
- package/dist/area-chart.js +1 -1
- package/dist/bar-chart.js +1 -1
- package/dist/breadcrumb.d.ts +333 -7
- package/dist/breadcrumb.js +1 -1
- package/dist/{button-dgVCHb8N.js → button-Bc0lEOJ2.js} +1 -1
- package/dist/{button-CXW1RQoo.d.ts → button-BsfLZ42S.d.ts} +2 -2
- package/dist/{button-CCkGqE1t.js → button-CNg69RsV.js} +1 -1
- package/dist/button-DiDlvAOp.js +1 -0
- package/dist/{button-DRr-6YHc.d.ts → button-DjsmeoJ2.d.ts} +30 -2
- package/dist/{button-DJ7AAgII.d.ts → button-DkUUma3k.d.ts} +35 -20
- package/dist/button.d.ts +4 -5
- package/dist/button.js +1 -1
- package/dist/calendar.js +1 -1
- package/dist/{chart-DorYMICt.js → chart-G2pIR4uW.js} +1 -1
- package/dist/{code-block-CZWPrV4k.d.ts → code-block-D5eDP379.d.ts} +1 -1
- package/dist/{code-block-CIE0F2fu.js → code-block-Dj9otiLi.js} +2 -2
- package/dist/code-block.d.ts +1 -1
- package/dist/code-block.js +1 -1
- package/dist/code-block_highlight-utils.d.ts +1 -1
- package/dist/code-block_highlight-utils.js +1 -1
- package/dist/command.d.ts +1 -1
- package/dist/command.js +1 -1
- package/dist/data-table.d.ts +5 -5
- package/dist/data-table.js +1 -1
- package/dist/{dialog-32Hq6w6P.js → dialog-BYILOABg.js} +1 -1
- package/dist/{dialog-B6h1BCDL.d.ts → dialog-DJ6jSRyj.d.ts} +4 -4
- package/dist/dialog.d.ts +1 -1
- package/dist/dialog.js +1 -1
- package/dist/field.d.ts +3 -4
- package/dist/field.js +1 -1
- package/dist/line-chart.js +1 -1
- package/dist/llms.txt +1 -1
- package/dist/pagination.d.ts +1 -1
- package/dist/pagination.js +1 -1
- package/dist/sandbar.d.ts +1 -1
- package/dist/sandbar.js +1 -1
- package/dist/scatter-plot.js +1 -1
- package/dist/{sheet-BOSknSN9.js → sheet-CfFXVAzz.js} +1 -1
- package/dist/sheet.d.ts +4 -4
- package/dist/sheet.js +1 -1
- package/dist/sidebar.d.ts +5 -5
- package/dist/sidebar.js +1 -1
- package/dist/split-button.d.ts +2 -2
- package/dist/split-button.js +1 -1
- package/dist/text-area.js +1 -1
- package/dist/theme-switcher.d.ts +1 -1
- package/dist/theme-switcher.js +1 -1
- package/package.json +1 -1
- package/dist/button-BLDjW1u9.js +0 -1
- 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 };
|