@toife/vue 3.1.3 → 3.1.4

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 (100) hide show
  1. package/package.json +1 -1
  2. package/src/components/app/app.type.ts +6 -0
  3. package/src/components/app/app.vue +7 -1
  4. package/src/components/avatar/avatar.scss +3 -2
  5. package/src/components/button/button.scss +9 -6
  6. package/src/components/button/button.type.ts +3 -1
  7. package/src/components/card/card/card.scss +3 -1
  8. package/src/components/checkbox/checkbox.scss +9 -14
  9. package/src/components/checkbox/checkbox.type.ts +4 -0
  10. package/src/components/checkbox/checkbox.vue +2 -0
  11. package/src/components/decision-modal/decision-modal.scss +3 -1
  12. package/src/components/dropdown/dropdown.scss +5 -2
  13. package/src/components/dropdown/dropdown.type.ts +4 -1
  14. package/src/components/dropdown/dropdown.vue +4 -0
  15. package/src/components/field/field.type.ts +2 -2
  16. package/src/components/field/outline/outline.scss +9 -8
  17. package/src/components/gesture-indicator/gesture-indicator.scss +3 -1
  18. package/src/components/index.ts +1 -0
  19. package/src/components/layout/flex/flex.scss +0 -2
  20. package/src/components/layout/flex-item/flex-item.html +1 -0
  21. package/src/components/layout/flex-item/flex-item.scss +48 -0
  22. package/src/components/layout/flex-item/flex-item.type.ts +11 -0
  23. package/src/components/layout/flex-item/flex-item.vue +27 -0
  24. package/src/components/layout/flex-item/index.ts +2 -0
  25. package/src/components/layout/grid/grid.scss +0 -2
  26. package/src/components/layout/grid-item/grid-item.html +1 -0
  27. package/src/components/layout/grid-item/grid-item.scss +49 -0
  28. package/src/components/layout/grid-item/grid-item.type.ts +14 -0
  29. package/src/components/layout/grid-item/grid-item.vue +27 -0
  30. package/src/components/layout/grid-item/index.ts +2 -0
  31. package/src/components/layout/index.ts +2 -1
  32. package/src/components/modal/modal.scss +3 -1
  33. package/src/components/radio/radio/radio.scss +7 -5
  34. package/src/components/radio/radio/radio.type.ts +4 -0
  35. package/src/components/radio/radio/radio.vue +2 -0
  36. package/src/components/refresher/refresher.html +4 -4
  37. package/src/components/refresher/refresher.scss +10 -4
  38. package/src/components/refresher/refresher.vue +3 -3
  39. package/src/components/skeleton/skeleton.scss +3 -1
  40. package/src/components/slide-range/index.ts +2 -0
  41. package/src/components/slide-range/slide-range.html +20 -0
  42. package/src/components/slide-range/slide-range.scss +161 -0
  43. package/src/components/slide-range/slide-range.type.ts +16 -0
  44. package/src/components/slide-range/slide-range.vue +229 -0
  45. package/src/components/switch/switch.scss +11 -22
  46. package/src/components/switch/switch.type.ts +5 -0
  47. package/src/components/switch/switch.vue +2 -0
  48. package/src/components/tabs/tabs/tabs.scss +135 -95
  49. package/src/components/tabs/tabs/tabs.type.ts +0 -1
  50. package/src/components/tabs/tabs/tabs.vue +6 -10
  51. package/src/components/toast/toast-content/toast-content.scss +3 -2
  52. package/src/components/toolbar/toolbar.scss +1 -1
  53. package/src/components/toolbar/toolbar.type.ts +1 -1
  54. package/src/components/toolbar/toolbar.vue +2 -2
  55. package/src/factory.ts +6 -2
  56. package/src/index.ts +1 -1
  57. package/src/components/action/action.md +0 -115
  58. package/src/components/app/app.md +0 -77
  59. package/src/components/avatar/avatar.md +0 -64
  60. package/src/components/button/button.md +0 -66
  61. package/src/components/cable/cable.md +0 -57
  62. package/src/components/card/card/card.md +0 -57
  63. package/src/components/card/card-body/card-body.md +0 -34
  64. package/src/components/card/card-footer/card-footer.md +0 -42
  65. package/src/components/card/card-header/card-header.md +0 -44
  66. package/src/components/checkbox/checkbox.md +0 -60
  67. package/src/components/collapse/collapse.md +0 -59
  68. package/src/components/container/container.md +0 -38
  69. package/src/components/decision-modal/decision-modal.md +0 -79
  70. package/src/components/divider/divider.md +0 -42
  71. package/src/components/field/field.md +0 -68
  72. package/src/components/field/outline/outline-field.md +0 -44
  73. package/src/components/form-group/form-group.md +0 -41
  74. package/src/components/gesture-indicator/gesture-indicator.md +0 -42
  75. package/src/components/image/image.md +0 -41
  76. package/src/components/layout/cell/cell.html +0 -1
  77. package/src/components/layout/cell/cell.md +0 -47
  78. package/src/components/layout/cell/cell.scss +0 -54
  79. package/src/components/layout/cell/cell.type.ts +0 -19
  80. package/src/components/layout/cell/cell.vue +0 -35
  81. package/src/components/layout/cell/index.ts +0 -2
  82. package/src/components/layout/grid/grid.md +0 -50
  83. package/src/components/modal/modal.md +0 -65
  84. package/src/components/page/page.md +0 -39
  85. package/src/components/present/present.md +0 -60
  86. package/src/components/radio/radio/radio.md +0 -53
  87. package/src/components/radio/radio-group/radio-group.md +0 -62
  88. package/src/components/refresher/refresher.md +0 -53
  89. package/src/components/route/route-navigator/route-navigator.md +0 -50
  90. package/src/components/route/route-outlet/route-outlet.md +0 -30
  91. package/src/components/route/route-provider/route-provider.md +0 -46
  92. package/src/components/route/route-wrapper/route-wrapper.md +0 -45
  93. package/src/components/segmented-field/segmented-field.md +0 -58
  94. package/src/components/skeleton/skeleton.md +0 -47
  95. package/src/components/switch/switch.md +0 -57
  96. package/src/components/tabs/tab/tab.md +0 -52
  97. package/src/components/tabs/tabs/tabs.md +0 -59
  98. package/src/components/toast/toast/toast.md +0 -56
  99. package/src/components/toast/toast-content/toast-content.md +0 -41
  100. package/src/components/toolbar/toolbar.md +0 -54
@@ -1,64 +0,0 @@
1
- # `<t-avatar>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Displays an avatar image as a CSS `background-image` inside a themed frame (shape/role from app when omitted).
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ------------------------------------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` recommended for default `role` / `shape`. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-avatar src="/user.png" size="40px" />
20
- ```
21
-
22
- ## Props
23
-
24
- | Prop | Type | Default | Description |
25
- | ------- | ------------------ | -------- | ------------------------------------- |
26
- | `shape` | `string` | — | Shape override; default from `t-app`. |
27
- | `size` | `string \| number` | `"22px"` | Size (number is treated as px). |
28
- | `src` | `string` | `""` | Image URL for background. |
29
-
30
- **Type source:** `src/components/avatar/avatar.type.ts`
31
-
32
- ## Events (emits)
33
-
34
- _None._
35
-
36
- ## Slots
37
-
38
- | Slot | Description |
39
- | --------- | ------------------------------ |
40
- | `default` | Optional inner content (rare). |
41
-
42
- ## `v-model`
43
-
44
- No.
45
-
46
- ## Provide / inject
47
-
48
- Injects `AppProviderState` for `role` / `shape`.
49
-
50
- ## Expose
51
-
52
- Nothing.
53
-
54
- ## Accessibility (a11y)
55
-
56
- Decorative background image — add `aria-label` on a parent if a name must be announced.
57
-
58
- ## Style / class notes
59
-
60
- CSS variable `--<prefix>-width` via `property("width")`.
61
-
62
- ## See also
63
-
64
- - Source: `src/components/avatar`
@@ -1,66 +0,0 @@
1
- # `<t-button>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Button with variants, sizes, loading state, and theming from `t-app`.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ---------------------------------------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` recommended for `shape` / `role` / `shadow`. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-button variant="fill" @click="save">Save</t-button>
20
- <t-button loading>Loading</t-button>
21
- ```
22
-
23
- ## Props
24
-
25
- | Prop | Type | Default | Description |
26
- | --------- | ---------------------------------- | ------------ | ---------------------------------------- |
27
- | `role` | `string` | — | Theme role; default from app. |
28
- | `size` | `"small" \| "standard" \| "large"` | `"standard"` | Size. |
29
- | `shape` | `string` | — | Shape; default from app. |
30
- | `block` | `boolean` | `false` | Full-width button. |
31
- | `loading` | `boolean` | `false` | Hides label, shows `loading` slot. |
32
- | `variant` | `ButtonVariant` | `"fill"` | `fill` \| `outline` \| `text` \| `link`. |
33
- | `shadow` | `boolean` | — | Default from app if unset. |
34
-
35
- **Type source:** `src/components/button/button.type.ts`
36
-
37
- ## Events (emits)
38
-
39
- _No declared emits_ — use native DOM listeners (`@click`).
40
-
41
- ## Slots
42
-
43
- | Slot | Description |
44
- | --------- | ------------------------------------- |
45
- | `default` | Button label (hidden when `loading`). |
46
- | `loading` | Content when `loading`. |
47
-
48
- ## `v-model`
49
-
50
- No.
51
-
52
- ## Provide / inject
53
-
54
- Injects theme from `t-app`.
55
-
56
- ## Expose
57
-
58
- Nothing.
59
-
60
- ## Accessibility (a11y)
61
-
62
- Native `<button>`; focus/blur styling handled internally.
63
-
64
- ## See also
65
-
66
- - Source: `src/components/button`
@@ -1,57 +0,0 @@
1
- # `<t-cable>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Layout region for dock-style UI; provides `placement` to descendants (e.g. `Toolbar`) via inject.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ---------------------------------------------------- |
13
- | Vue | ^3.5 |
14
- | Other | Toolbar is often placed inside to inherit placement. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-cable placement="bottom">
20
- <t-toolbar><t-button>Home</t-button></t-toolbar>
21
- </t-cable>
22
- ```
23
-
24
- ## Props
25
-
26
- | Prop | Type | Default | Description |
27
- | ----------- | --------- | ---------- | --------------------------------------- |
28
- | `keyboard` | `boolean` | `false` | Reserved for keyboard-related behavior. |
29
- | `placement` | `string` | `"bottom"` | Cable placement (class on root). |
30
-
31
- **Type source:** `src/components/cable/cable.type.ts`
32
-
33
- ## Events (emits)
34
-
35
- _None._
36
-
37
- ## Slots
38
-
39
- | Slot | Description |
40
- | --------- | ------------------------------ |
41
- | `default` | Content (toolbar, buttons, …). |
42
-
43
- ## Provide / inject
44
-
45
- `provide(CABLE_PROVIDER_STATE_KEY)`: `{ placement }` — `Toolbar` injects it for placement classes.
46
-
47
- ## Expose
48
-
49
- Nothing.
50
-
51
- ## Style / class notes
52
-
53
- Classes: `layer`, `base`, `cable`, plus placement.
54
-
55
- ## See also
56
-
57
- - Source: `src/components/cable`
@@ -1,57 +0,0 @@
1
- # `<t-card>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Card surface with optional divider; provides context for `CardHeader` / `CardBody` / `CardFooter`.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | -------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` recommended. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-card>
20
- <t-card-header>Title</t-card-header>
21
- <t-card-body>Content</t-card-body>
22
- <t-card-footer>Footer</t-card-footer>
23
- </t-card>
24
- ```
25
-
26
- ## Props
27
-
28
- | Prop | Type | Default | Description |
29
- | --------- | --------- | ------- | ----------------------------------- |
30
- | `role` | `string` | — | Default from app. |
31
- | `shape` | `string` | — | Default from app. |
32
- | `divider` | `boolean` | — | Section dividers; default from app. |
33
-
34
- **Type source:** `src/components/card/card/card.type.ts`
35
-
36
- ## Events (emits)
37
-
38
- _None._
39
-
40
- ## Slots
41
-
42
- | Slot | Description |
43
- | --------- | ----------------- |
44
- | `default` | Entire card body. |
45
-
46
- ## Provide / inject
47
-
48
- `provide(CARD_PROVIDER_STATE_KEY)`: `{ role, shape, divider }` for header/footer.
49
-
50
- ## Expose
51
-
52
- Nothing.
53
-
54
- ## See also
55
-
56
- - Source: `src/components/card/card`
57
- - [card-header.md](../card-header/card-header.md), [card-body.md](../card-body/card-body.md), [card-footer.md](../card-footer/card-footer.md)
@@ -1,34 +0,0 @@
1
- # `<t-card-body>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Main content region of a card.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ------------------------ |
13
- | Vue | ^3.5 |
14
- | Other | Usually inside `t-card`. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-card-body>Main content</t-card-body>
20
- ```
21
-
22
- ## Props
23
-
24
- _None._
25
-
26
- ## Slots
27
-
28
- | Slot | Description |
29
- | --------- | ----------- |
30
- | `default` | Content. |
31
-
32
- ## See also
33
-
34
- - Source: `src/components/card/card-body`
@@ -1,42 +0,0 @@
1
- # `<t-card-footer>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Card footer region; divider follows `t-card` context.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | --------------------------------------------- |
13
- | Vue | ^3.5 |
14
- | Other | Should be inside `t-card` for correct inject. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-card>
20
- <t-card-footer>
21
- <t-button>OK</t-button>
22
- </t-card-footer>
23
- </t-card>
24
- ```
25
-
26
- ## Props
27
-
28
- _None._
29
-
30
- ## Slots
31
-
32
- | Slot | Description |
33
- | --------- | --------------- |
34
- | `default` | Footer content. |
35
-
36
- ## Provide / inject
37
-
38
- Injects `CardProviderState` from `t-card`.
39
-
40
- ## See also
41
-
42
- - Source: `src/components/card/card-footer`
@@ -1,44 +0,0 @@
1
- # `<t-card-header>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Card header region; divider follows context from `t-card`.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ------------------------------------------------------------ |
13
- | Vue | ^3.5 |
14
- | Other | Must be inside `t-card` (injects `CARD_PROVIDER_STATE_KEY`). |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-card>
20
- <t-card-header>Title</t-card-header>
21
- </t-card>
22
- ```
23
-
24
- ## Props
25
-
26
- _No own props._
27
-
28
- ## Events (emits)
29
-
30
- _None._
31
-
32
- ## Slots
33
-
34
- | Slot | Description |
35
- | --------- | --------------- |
36
- | `default` | Header content. |
37
-
38
- ## Provide / inject
39
-
40
- Injects `CardProviderState` from `t-card`.
41
-
42
- ## See also
43
-
44
- - Source: `src/components/card/card-header`
@@ -1,60 +0,0 @@
1
- # `<t-checkbox>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Custom boolean checkbox (not a native `<input type="checkbox">`), with `v-model` and readonly/disabled states.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | -------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` recommended. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-checkbox v-model="checked">I agree</t-checkbox>
20
- ```
21
-
22
- ## Props
23
-
24
- | Prop | Type | Default | Description |
25
- | ------------ | --------------------- | -------- | ------------------------ |
26
- | `modelValue` | `boolean` | `false` | Value (`v-model`). |
27
- | `role` | `string` | — | Theme; default from app. |
28
- | `shape` | `string` | — | Shape; default from app. |
29
- | `variant` | `"fill" \| "outline"` | `"fill"` | Visual variant. |
30
- | `readonly` | `boolean` | `false` | Read-only. |
31
- | `disabled` | `boolean` | `false` | Disabled. |
32
- | `shadow` | `boolean` | — | Default from app. |
33
-
34
- **Type source:** `src/components/checkbox/checkbox.type.ts`
35
-
36
- ## Events (emits)
37
-
38
- | Event | Payload | Description |
39
- | ------------------- | --------- | ------------------------------------- |
40
- | `update:modelValue` | `boolean` | Updates `v-model`. |
41
- | `focus` | — | When focused (not disabled/readonly). |
42
- | `blur` | — | When blurred. |
43
-
44
- ## Slots
45
-
46
- | Slot | Description |
47
- | --------- | ----------------------- |
48
- | `default` | Label next to the icon. |
49
-
50
- ## `v-model`
51
-
52
- `modelValue` / `update:modelValue`.
53
-
54
- ## Accessibility (a11y)
55
-
56
- `role="checkbox"`, `aria-checked`, `tabindex` 0 or -1; Space/Enter toggles.
57
-
58
- ## See also
59
-
60
- - Source: `src/components/checkbox`
@@ -1,59 +0,0 @@
1
- # `<t-collapse>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Expand/collapse panel with height animation; separate slots for trigger and content.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | -------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` recommended. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-collapse v-model="open">
20
- <template #trigger>Expand</template>
21
- <p>Hidden content</p>
22
- </t-collapse>
23
- ```
24
-
25
- ## Props
26
-
27
- | Prop | Type | Default | Description |
28
- | ------------ | --------- | ------- | -------------------------------------------------- |
29
- | `modelValue` | `boolean` | `false` | Open (`true`) / closed. |
30
- | `duration` | `number` | — | Transition duration (ms), mapped to CSS variables. |
31
- | `role` | `string` | — | Theme role. |
32
- | `disabled` | `boolean` | `false` | Disables toggling. |
33
-
34
- **Type source:** `src/components/collapse/collapse.type.ts`
35
-
36
- ## Events (emits)
37
-
38
- | Event | Payload | Description |
39
- | ------------------- | --------- | ------------- |
40
- | `update:modelValue` | `boolean` | After toggle. |
41
-
42
- ## Slots
43
-
44
- | Slot | Description |
45
- | --------- | ----------------------------------- |
46
- | `trigger` | Clickable header (`role="button"`). |
47
- | `default` | Collapsible content. |
48
-
49
- ## `v-model`
50
-
51
- `modelValue` / `update:modelValue`.
52
-
53
- ## Accessibility (a11y)
54
-
55
- Trigger: `role="button"`, `aria-expanded`, `aria-disabled`; Enter/Space toggles.
56
-
57
- ## See also
58
-
59
- - Source: `src/components/collapse`
@@ -1,38 +0,0 @@
1
- # `<t-container>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Base layout block (`layer` + `container`) wrapping page content.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ----- |
13
- | Vue | ^3.5 |
14
- | Other | None. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-page>
20
- <t-container>
21
- <p>Content</p>
22
- </t-container>
23
- </t-page>
24
- ```
25
-
26
- ## Props
27
-
28
- _No props._
29
-
30
- ## Slots
31
-
32
- | Slot | Description |
33
- | --------- | ----------- |
34
- | `default` | Content. |
35
-
36
- ## See also
37
-
38
- - Source: `src/components/container`
@@ -1,79 +0,0 @@
1
- # `<t-decision-modal>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Confirmation dialog (title, message, actions) inside `Present`. Often driven with `useDecisionModal()` from `t-app`.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ---------------------------------------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` recommended; depends on `Present`, `Button`. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-decision-modal
20
- :visible="show"
21
- title="Confirm"
22
- message="Are you sure?"
23
- :actions="[
24
- { text: 'Cancel', variant: 'text', handler: () => (show = false) },
25
- { text: 'Delete', variant: 'fill', handler: onDelete },
26
- ]"
27
- :dismiss="['backdrop']"
28
- @close="show = false"
29
- />
30
- ```
31
-
32
- Composable:
33
-
34
- ```ts
35
- const modal = useDecisionModal();
36
- modal.open({
37
- message: "…",
38
- actions: […],
39
- onClose: () => {},
40
- onChoose: (btn) => {},
41
- });
42
- ```
43
-
44
- ## Props
45
-
46
- | Prop | Type | Default | Description |
47
- | ----------- | ----------------------- | ------------ | ---------------------------------- |
48
- | `visible` | `boolean` | `false` | Visibility. |
49
- | `title` | `string` | — | Title (`header` slot overrides). |
50
- | `message` | `string` | _(required)_ | Main copy (`body` slot overrides). |
51
- | `actions` | `DecisionModalButton[]` | _(required)_ | Footer buttons. |
52
- | `dismiss` | `string[]` | — | Close reasons that emit `close`. |
53
- | `placement` | `string` | `"center"` | `Present` placement. |
54
- | `role` | `string` | — | Theme. |
55
- | `shape` | `string` | — | Shape. |
56
- | `divider` | `boolean` | — | Divider; default from app. |
57
- | `flow` | `"row" \| "column"` | `"row"` | Footer button layout. |
58
-
59
- **Type source:** `src/components/decision-modal/decision-modal.type.ts`
60
-
61
- ## Events (emits)
62
-
63
- | Event | Payload | Description |
64
- | -------- | -------------------------- | -------------------------------- |
65
- | `close` | `type?: string` | Valid dismiss (per `dismiss`). |
66
- | `choose` | `btn: DecisionModalButton` | Button chosen (after `handler`). |
67
-
68
- ## Slots
69
-
70
- | Slot | Description |
71
- | -------- | ---------------------------------------- |
72
- | `header` | Replaces header (default shows `title`). |
73
- | `body` | Replaces `message`. |
74
- | `footer` | Replaces default button row. |
75
-
76
- ## See also
77
-
78
- - Source: `src/components/decision-modal`
79
- - `decision-modal.composable.ts`
@@ -1,42 +0,0 @@
1
- # `<t-divider>`
2
-
3
- > Default prefix is `t-` — change via `createToife({ prefix: "..." })`.
4
-
5
- ## Description
6
-
7
- Horizontal or vertical divider line following theme.
8
-
9
- ## Requirements / dependencies
10
-
11
- | Item | Notes |
12
- | ----- | ------------------- |
13
- | Vue | ^3.5 |
14
- | Other | `t-app` for `role`. |
15
-
16
- ## Basic usage
17
-
18
- ```vue
19
- <t-divider direction="horizontal" />
20
- <t-divider direction="vertical" />
21
- ```
22
-
23
- ## Props
24
-
25
- | Prop | Type | Default | Description |
26
- | ----------- | ---------------------------- | -------------- | ------------------------------- |
27
- | `direction` | `"horizontal" \| "vertical"` | `"horizontal"` | Divider direction. |
28
- | `role` | `string` | — | Theme stroke; default from app. |
29
-
30
- **Type source:** `src/components/divider/divider.type.ts`
31
-
32
- ## Events (emits)
33
-
34
- _None._
35
-
36
- ## Slots
37
-
38
- _None._
39
-
40
- ## See also
41
-
42
- - Source: `src/components/divider`