@meistrari/tela-build 1.0.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.
Files changed (295) hide show
  1. package/README.md +75 -0
  2. package/app.config.ts +73 -0
  3. package/components/tela/animated/animated-calculating-number.vue +16 -0
  4. package/components/tela/animated/animated-number.mdx +248 -0
  5. package/components/tela/animated/animated-number.stories.ts +52 -0
  6. package/components/tela/animated/animated-number.vue +23 -0
  7. package/components/tela/animated/animated-text.vue +124 -0
  8. package/components/tela/animated/animated-value.vue +68 -0
  9. package/components/tela/avatar/avatar.mdx +117 -0
  10. package/components/tela/avatar/avatar.stories.ts +62 -0
  11. package/components/tela/avatar/avatar.vue +71 -0
  12. package/components/tela/avatar/group/avatar-group.stories.ts +78 -0
  13. package/components/tela/avatar/group/avatar-group.vue +46 -0
  14. package/components/tela/badge/badge.mdx +154 -0
  15. package/components/tela/badge/badge.stories.ts +82 -0
  16. package/components/tela/badge/badge.vue +41 -0
  17. package/components/tela/button/button.mdx +155 -0
  18. package/components/tela/button/button.stories.ts +202 -0
  19. package/components/tela/button/button.vue +107 -0
  20. package/components/tela/card.vue +30 -0
  21. package/components/tela/chart/chart-bar.vue +58 -0
  22. package/components/tela/chat/chat.mdx +268 -0
  23. package/components/tela/chat/chat.stories.ts +253 -0
  24. package/components/tela/chat/command/index.vue +41 -0
  25. package/components/tela/chat/command/mention/index.vue +138 -0
  26. package/components/tela/chat/index.vue +112 -0
  27. package/components/tela/chat/pure-text-input/chat-text-input.vue +190 -0
  28. package/components/tela/chat/text-input/chat-text-input.stories.ts +128 -0
  29. package/components/tela/chat/text-input/index.vue +217 -0
  30. package/components/tela/chat/text-message/chat-text-message.stories.ts +138 -0
  31. package/components/tela/chat/text-message/index.vue +355 -0
  32. package/components/tela/chat/types.ts +19 -0
  33. package/components/tela/checkbox/checkbox-card.vue +30 -0
  34. package/components/tela/checkbox/checkbox.mdx +164 -0
  35. package/components/tela/checkbox/checkbox.stories.ts +104 -0
  36. package/components/tela/checkbox/checkbox.vue +43 -0
  37. package/components/tela/collapsible/Collapsible.vue +15 -0
  38. package/components/tela/collapsible/CollapsibleContent.vue +59 -0
  39. package/components/tela/collapsible/CollapsibleTrigger.vue +12 -0
  40. package/components/tela/collapsible/collapsible.mdx +157 -0
  41. package/components/tela/collapsible-section/collapsible-section.mdx +180 -0
  42. package/components/tela/collapsible-section/collapsible-section.stories.ts +53 -0
  43. package/components/tela/collapsible-section/collapsible-section.vue +51 -0
  44. package/components/tela/collapsible-section-with-actions.vue +98 -0
  45. package/components/tela/combobox/combobox-anchor.vue +24 -0
  46. package/components/tela/combobox/combobox-empty.vue +19 -0
  47. package/components/tela/combobox/combobox-group.vue +24 -0
  48. package/components/tela/combobox/combobox-indicator.vue +22 -0
  49. package/components/tela/combobox/combobox-input.vue +31 -0
  50. package/components/tela/combobox/combobox-item.vue +28 -0
  51. package/components/tela/combobox/combobox-label.vue +24 -0
  52. package/components/tela/combobox/combobox-list.vue +90 -0
  53. package/components/tela/combobox/combobox-module-selector.vue +366 -0
  54. package/components/tela/combobox/combobox-root.vue +15 -0
  55. package/components/tela/combobox/combobox-trigger.vue +12 -0
  56. package/components/tela/combobox/combobox.mdx +285 -0
  57. package/components/tela/combobox/combobox.stories.ts +232 -0
  58. package/components/tela/combobox/combobox.vue +497 -0
  59. package/components/tela/command/command-dialog.vue +22 -0
  60. package/components/tela/command/command-empty.vue +25 -0
  61. package/components/tela/command/command-group.vue +46 -0
  62. package/components/tela/command/command-input.vue +38 -0
  63. package/components/tela/command/command-item.vue +78 -0
  64. package/components/tela/command/command-list.vue +78 -0
  65. package/components/tela/command/command-separator.vue +23 -0
  66. package/components/tela/command/command-shortcut.vue +13 -0
  67. package/components/tela/command/command.vue +88 -0
  68. package/components/tela/command/dialog-base.vue +15 -0
  69. package/components/tela/command/dialog-content.vue +50 -0
  70. package/components/tela/command/utils.ts +15 -0
  71. package/components/tela/complex-table/complex-table-cell.stories.ts +145 -0
  72. package/components/tela/complex-table/complex-table-cell.vue +45 -0
  73. package/components/tela/complex-table/complex-table-header-cell.stories.ts +103 -0
  74. package/components/tela/complex-table/complex-table-header-cell.vue +48 -0
  75. package/components/tela/complex-table/complex-table-header.stories.ts +89 -0
  76. package/components/tela/complex-table/complex-table-header.vue +70 -0
  77. package/components/tela/complex-table/complex-table-row.vue +199 -0
  78. package/components/tela/complex-table/complex-table-virtualized.vue +326 -0
  79. package/components/tela/complex-table/complex-table.stories.ts +358 -0
  80. package/components/tela/complex-table/complex-table.vue +237 -0
  81. package/components/tela/complex-table/composables/table-common.ts +93 -0
  82. package/components/tela/complex-table/composables/table-selection.ts +87 -0
  83. package/components/tela/complex-table/composables/virtual-scroll.ts +252 -0
  84. package/components/tela/complex-table/styles/table-shared.css +170 -0
  85. package/components/tela/complex-table/types.ts +63 -0
  86. package/components/tela/complex-table/utils.ts +35 -0
  87. package/components/tela/confirm-button/confirm-button.vue +137 -0
  88. package/components/tela/confirmation-modal/confirmation-modal.vue +72 -0
  89. package/components/tela/copy-button.vue +86 -0
  90. package/components/tela/date-range-picker.vue +221 -0
  91. package/components/tela/dialog/dialog.mdx +170 -0
  92. package/components/tela/dialog/dialog.vue +182 -0
  93. package/components/tela/disabled-area.vue +16 -0
  94. package/components/tela/disclaimer/disclaimer.mdx +238 -0
  95. package/components/tela/disclaimer/disclaimer.stories.ts +196 -0
  96. package/components/tela/disclaimer/disclaimer.vue +125 -0
  97. package/components/tela/dropdown-menu/DropdownMenu.vue +121 -0
  98. package/components/tela/dropdown-menu/DropdownMenuCheckboxItem.vue +40 -0
  99. package/components/tela/dropdown-menu/DropdownMenuContent.vue +75 -0
  100. package/components/tela/dropdown-menu/DropdownMenuGroup.vue +12 -0
  101. package/components/tela/dropdown-menu/DropdownMenuItem.vue +137 -0
  102. package/components/tela/dropdown-menu/DropdownMenuLabel.vue +26 -0
  103. package/components/tela/dropdown-menu/DropdownMenuRadioGroup.vue +18 -0
  104. package/components/tela/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
  105. package/components/tela/dropdown-menu/DropdownMenuRoot.vue +15 -0
  106. package/components/tela/dropdown-menu/DropdownMenuSeparator.vue +21 -0
  107. package/components/tela/dropdown-menu/DropdownMenuShortcut.vue +14 -0
  108. package/components/tela/dropdown-menu/DropdownMenuSub.vue +18 -0
  109. package/components/tela/dropdown-menu/DropdownMenuSubContent.vue +30 -0
  110. package/components/tela/dropdown-menu/DropdownMenuSubTrigger.vue +35 -0
  111. package/components/tela/dropdown-menu/DropdownMenuTrigger.vue +14 -0
  112. package/components/tela/dropdown-menu/dropdown-menu.mdx +265 -0
  113. package/components/tela/dropdown-menu/dropdown-menu.stories.ts +156 -0
  114. package/components/tela/expandable-input.vue +96 -0
  115. package/components/tela/file-drop.vue +37 -0
  116. package/components/tela/file-upload/file-upload.mdx +189 -0
  117. package/components/tela/file-upload/file-upload.stories.ts +48 -0
  118. package/components/tela/file-upload/file-upload.vue +205 -0
  119. package/components/tela/filters/checkbox-filter.stories.ts +218 -0
  120. package/components/tela/filters/checkbox-filter.vue +165 -0
  121. package/components/tela/filters/date-filter.stories.ts +258 -0
  122. package/components/tela/filters/date-filter.vue +200 -0
  123. package/components/tela/filters/user-filter.stories.ts +344 -0
  124. package/components/tela/filters/user-filter.vue +271 -0
  125. package/components/tela/hover-card/hover-card.mdx +221 -0
  126. package/components/tela/hover-card/hover-card.stories.ts +87 -0
  127. package/components/tela/hover-card/hover-card.vue +61 -0
  128. package/components/tela/icon/custom.vue +319 -0
  129. package/components/tela/icon/spinner.vue +12 -0
  130. package/components/tela/icon-button/icon-button.vue +114 -0
  131. package/components/tela/icon.vue +37 -0
  132. package/components/tela/initials.vue +28 -0
  133. package/components/tela/inline-input.vue +77 -0
  134. package/components/tela/input/input.mdx +182 -0
  135. package/components/tela/input/input.stories.ts +153 -0
  136. package/components/tela/input/tela-input.vue +240 -0
  137. package/components/tela/kbd/kbd-return.vue +6 -0
  138. package/components/tela/kbd/kbd.mdx +238 -0
  139. package/components/tela/kbd/kbd.vue +18 -0
  140. package/components/tela/label/label.mdx +121 -0
  141. package/components/tela/label/label.stories.ts +37 -0
  142. package/components/tela/label/label.vue +25 -0
  143. package/components/tela/link-decoration/link-decoration.vue +19 -0
  144. package/components/tela/live-label.vue +32 -0
  145. package/components/tela/long-press-button.vue +98 -0
  146. package/components/tela/menubar/menubar-content.vue +77 -0
  147. package/components/tela/menubar/menubar-item.vue +32 -0
  148. package/components/tela/menubar/menubar-label.vue +14 -0
  149. package/components/tela/menubar/menubar-menu.vue +12 -0
  150. package/components/tela/menubar/menubar-root.vue +30 -0
  151. package/components/tela/menubar/menubar-separator.vue +17 -0
  152. package/components/tela/menubar/menubar-shortcut.vue +14 -0
  153. package/components/tela/menubar/menubar-sub-content.vue +36 -0
  154. package/components/tela/menubar/menubar-sub-trigger.vue +28 -0
  155. package/components/tela/menubar/menubar-sub.vue +20 -0
  156. package/components/tela/menubar/menubar-trigger.vue +27 -0
  157. package/components/tela/menubar/menubar.vue +298 -0
  158. package/components/tela/modal/modal.mdx +145 -0
  159. package/components/tela/modal/modal.vue +242 -0
  160. package/components/tela/multiple-select/multiple-select.mdx +274 -0
  161. package/components/tela/multiple-select/multiple-select.stories.ts +325 -0
  162. package/components/tela/multiple-select/multiple-select.vue +666 -0
  163. package/components/tela/pane.vue +110 -0
  164. package/components/tela/popover/popover-content.vue +48 -0
  165. package/components/tela/popover/popover-trigger.vue +12 -0
  166. package/components/tela/popover/popover.mdx +239 -0
  167. package/components/tela/popover/popover.stories.ts +150 -0
  168. package/components/tela/popover/popover.vue +15 -0
  169. package/components/tela/popover-list/popover-list-nested.vue +104 -0
  170. package/components/tela/popover-list/popover-list.stories.ts +330 -0
  171. package/components/tela/popover-list/popover-list.vue +191 -0
  172. package/components/tela/radio-button.vue +66 -0
  173. package/components/tela/radio-group/radio-group-item.vue +40 -0
  174. package/components/tela/radio-group/radio-group-root.vue +26 -0
  175. package/components/tela/radio-group/radio-group.mdx +78 -0
  176. package/components/tela/radio-group/radio-group.stories.ts +106 -0
  177. package/components/tela/radio-group/radio-group.vue +23 -0
  178. package/components/tela/range-calendar.stories.ts +110 -0
  179. package/components/tela/range-calendar.vue +109 -0
  180. package/components/tela/scroll-area/scroll-area.mdx +183 -0
  181. package/components/tela/scroll-area/scroll-area.vue +30 -0
  182. package/components/tela/scroll-area/scroll-bar.vue +31 -0
  183. package/components/tela/segment-toggle.stories.ts +114 -0
  184. package/components/tela/segment-toggle.vue +66 -0
  185. package/components/tela/select-menu/select-menu-content.vue +106 -0
  186. package/components/tela/select-menu/select-menu-down-button.vue +20 -0
  187. package/components/tela/select-menu/select-menu-group.vue +16 -0
  188. package/components/tela/select-menu/select-menu-item.vue +40 -0
  189. package/components/tela/select-menu/select-menu-root.vue +15 -0
  190. package/components/tela/select-menu/select-menu-trigger.vue +34 -0
  191. package/components/tela/select-menu/select-menu-up-button.vue +20 -0
  192. package/components/tela/select-menu/select-menu-value.vue +12 -0
  193. package/components/tela/select-menu/select-menu.mdx +221 -0
  194. package/components/tela/select-menu/select-menu.stories.ts +91 -0
  195. package/components/tela/select-menu/select-menu.vue +165 -0
  196. package/components/tela/selector/selector.vue +47 -0
  197. package/components/tela/sheet/sheet-close.vue +12 -0
  198. package/components/tela/sheet/sheet-content.vue +57 -0
  199. package/components/tela/sheet/sheet-description.vue +23 -0
  200. package/components/tela/sheet/sheet-footer.vue +18 -0
  201. package/components/tela/sheet/sheet-header.vue +15 -0
  202. package/components/tela/sheet/sheet-root.vue +18 -0
  203. package/components/tela/sheet/sheet-title.vue +23 -0
  204. package/components/tela/sheet/sheet-trigger.vue +12 -0
  205. package/components/tela/sheet/sheet.client.vue +150 -0
  206. package/components/tela/sheet/sheet.mdx +176 -0
  207. package/components/tela/sheet/sheet.stories.ts +201 -0
  208. package/components/tela/sheet/variants.ts +22 -0
  209. package/components/tela/side-sheet/side-sheet.mdx +131 -0
  210. package/components/tela/side-sheet/side-sheet.stories.ts +134 -0
  211. package/components/tela/side-sheet/side-sheet.vue +106 -0
  212. package/components/tela/skeleton/skeleton.mdx +165 -0
  213. package/components/tela/skeleton/skeleton.stories.ts +35 -0
  214. package/components/tela/skeleton/skeleton.vue +45 -0
  215. package/components/tela/skeleton-icon.vue +24 -0
  216. package/components/tela/span.vue +24 -0
  217. package/components/tela/star-button.vue +70 -0
  218. package/components/tela/status/status-lean.vue +30 -0
  219. package/components/tela/status/status.mdx +187 -0
  220. package/components/tela/status/status.stories.ts +160 -0
  221. package/components/tela/status/status.vue +420 -0
  222. package/components/tela/status-bar/status-bar.mdx +178 -0
  223. package/components/tela/status-bar/status-bar.stories.ts +64 -0
  224. package/components/tela/status-bar/status-bar.vue +56 -0
  225. package/components/tela/status-bar/types.ts +5 -0
  226. package/components/tela/switch/switch.mdx +118 -0
  227. package/components/tela/switch/switch.stories.ts +80 -0
  228. package/components/tela/switch/switch.vue +56 -0
  229. package/components/tela/table/table-body.vue +13 -0
  230. package/components/tela/table/table-caption.vue +13 -0
  231. package/components/tela/table/table-cell.vue +20 -0
  232. package/components/tela/table/table-empty.vue +37 -0
  233. package/components/tela/table/table-footer.vue +13 -0
  234. package/components/tela/table/table-head.vue +13 -0
  235. package/components/tela/table/table-header.vue +13 -0
  236. package/components/tela/table/table-row.vue +13 -0
  237. package/components/tela/table/table.mdx +230 -0
  238. package/components/tela/table/table.stories.ts +384 -0
  239. package/components/tela/table/table.vue +15 -0
  240. package/components/tela/tabs/tabs-content.vue +20 -0
  241. package/components/tela/tabs/tabs-indicator.vue +22 -0
  242. package/components/tela/tabs/tabs-list.vue +23 -0
  243. package/components/tela/tabs/tabs-root.vue +15 -0
  244. package/components/tela/tabs/tabs-trigger.vue +27 -0
  245. package/components/tela/tabs/tabs.mdx +138 -0
  246. package/components/tela/tabs/tabs.stories.ts +72 -0
  247. package/components/tela/tabs/tabs.vue +61 -0
  248. package/components/tela/tags/tags-select.mdx +318 -0
  249. package/components/tela/tags/tags-select.stories.ts +47 -0
  250. package/components/tela/tags/tags-select.vue +637 -0
  251. package/components/tela/tags/tags.mdx +151 -0
  252. package/components/tela/tags/tags.stories.ts +118 -0
  253. package/components/tela/tags/tags.vue +112 -0
  254. package/components/tela/textarea/textarea.mdx +102 -0
  255. package/components/tela/textarea/textarea.stories.ts +50 -0
  256. package/components/tela/textarea/textarea.vue +34 -0
  257. package/components/tela/toggle-group.vue +91 -0
  258. package/components/tela/tooltip/tooltip-content.vue +45 -0
  259. package/components/tela/tooltip/tooltip-provider.vue +12 -0
  260. package/components/tela/tooltip/tooltip-root.vue +15 -0
  261. package/components/tela/tooltip/tooltip-trigger.vue +12 -0
  262. package/components/tela/tooltip/tooltip.mdx +196 -0
  263. package/components/tela/tooltip/tooltip.stories.ts +200 -0
  264. package/components/tela/tooltip/tooltip.vue +91 -0
  265. package/components/tela/tooltip-group/tooltip-group-trigger.vue +92 -0
  266. package/components/tela/tooltip-group/tooltip-group.mdx +236 -0
  267. package/components/tela/tooltip-group/tooltip-group.stories.ts +465 -0
  268. package/components/tela/tooltip-group/tooltip-group.vue +35 -0
  269. package/components/tela/transparent-input.vue +151 -0
  270. package/components/tela/variable-icon.vue +28 -0
  271. package/components/tela/variable-input.vue +77 -0
  272. package/components/tela/wide-button/wide-button.vue +40 -0
  273. package/components.json +18 -0
  274. package/composables/status-toast.ts +67 -0
  275. package/css/reset.css +386 -0
  276. package/css/text.css +22 -0
  277. package/lib/doc-generator.ts +903 -0
  278. package/lib/extractors/volar-extract.ts +186 -0
  279. package/lib/type-resolver.ts +402 -0
  280. package/lib/utils.ts +6 -0
  281. package/modules/tela-build-docs/index.ts +139 -0
  282. package/nuxt.config.ts +80 -0
  283. package/package.json +84 -0
  284. package/plugins/test-id.ts +7 -0
  285. package/tsconfig.json +7 -0
  286. package/types/custom-icon.ts +1 -0
  287. package/types/index.ts +2 -0
  288. package/types/status.ts +1 -0
  289. package/unocss.config.ts +89 -0
  290. package/utils/component-utils.ts +30 -0
  291. package/utils/design-tokens.ts +431 -0
  292. package/utils/fold.ts +8 -0
  293. package/utils/select-menu.ts +10 -0
  294. package/utils/status.ts +1 -0
  295. package/utils/without-keys.ts +34 -0
@@ -0,0 +1,77 @@
1
+ <script setup lang="ts">
2
+ import type { Variable } from 'tela-shared'
3
+ import { useI18n } from 'vue-i18n'
4
+
5
+ defineProps<{
6
+ variable: Variable
7
+ tabindex?: number
8
+ error?: boolean
9
+ }>()
10
+ const content = defineModel<string>()
11
+ const markdownContent = defineModel<string>('markdownContent')
12
+
13
+ const { t } = useI18n()
14
+ </script>
15
+
16
+ <template>
17
+ <div mb-8px>
18
+ <div flex items-center justify-between mb-8px>
19
+ <div flex items-center>
20
+ <img src="/icons/variable.svg" w-16px h-16px mr-7px>
21
+ <p body-12-semibold text-gray-800 mr-3px>
22
+ {{ variable.name }}{{ variable.required ? "*" : "" }}
23
+ </p>
24
+ <p body-12-regular text-gray-400>
25
+ ({{ variable.processingOptions?.allowMultimodal ? t('canvas.variableTypes.multimodal') : t(`canvas.variableTypes.${variable.type}`) }})
26
+ </p>
27
+ </div>
28
+ <p v-if="variable.required" body-12-regular text-gray-400>
29
+ * {{ t('canvas.required') }}
30
+ </p>
31
+ <slot name="actions" />
32
+ </div>
33
+ <div
34
+ relative
35
+ rounded-10px
36
+ :b="error ? '0.5px red-500' : '0.5px gray-300'"
37
+ class="focus-within-b-#527182 focus-within-ring-2 focus-within-ring-#C7D1D7"
38
+ >
39
+ <Editor
40
+ :key="variable.name + (variable.processingOptions?.allowMultimodal ?? '')"
41
+ v-model:markdown-content="markdownContent"
42
+ v-model="content"
43
+ basic
44
+ :placeholder="t('canvas.variablePlaceholder')"
45
+ text="12px textcolor/90"
46
+ leading-1.4em tracking--0.01em
47
+ :multimodal="variable.processingOptions?.allowMultimodal"
48
+ :variable-name="variable.name"
49
+ :keyboard-shortcuts="{
50
+ 'Cmd-Enter': () => {
51
+ return true
52
+ },
53
+ 'Ctrl-Enter': () => {
54
+ return true
55
+ },
56
+ }"
57
+ />
58
+ </div>
59
+ </div>
60
+ </template>
61
+
62
+ <style scoped>
63
+ :deep(.tiptap.ProseMirror) {
64
+ padding: 6px 12px;
65
+ }
66
+
67
+ .dashed-background {
68
+ background: white ;
69
+ background-image: radial-gradient(#DFDEDF 1px, transparent 0);
70
+ background-size: 16px 16px;
71
+ background-position: 0px 0px;
72
+ }
73
+
74
+ :deep(.tiptap p) {
75
+ font-size: 14px !important;
76
+ }
77
+ </style>
@@ -0,0 +1,40 @@
1
+ <script setup lang="ts">
2
+ defineProps<{
3
+ icon?: string
4
+ loading?: boolean
5
+ disabled?: boolean
6
+ }>()
7
+
8
+ const emit = defineEmits(['click'])
9
+ </script>
10
+
11
+ <template>
12
+ <button
13
+ w-full h-full flex flex-col items-center justify-center
14
+ cursor-pointer rounded-lg class="hover:bg-#F8F9F9 group" :disabled="loading || disabled"
15
+ hover:bg="black/04" transition ease
16
+ :class="[
17
+ disabled || loading && 'bg-black/04 text-gray-600',
18
+ loading && 'cursor-wait',
19
+ disabled && 'cursor-not-allowed',
20
+ ]"
21
+ @click="emit('click')"
22
+ >
23
+ <TelaIcon
24
+ v-if="loading"
25
+ name="i-ph-circle-notch"
26
+ animate-spin
27
+ />
28
+ <TelaIcon
29
+ v-else-if="icon"
30
+ :name="icon"
31
+ :class="{ 'text-gray-400': disabled }"
32
+ />
33
+ <p
34
+ font-semibold text="13px textcolor" mt-6px
35
+ :class="{ 'text-gray-400': disabled }"
36
+ >
37
+ <slot />
38
+ </p>
39
+ </button>
40
+ </template>
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://shadcn-vue.com/schema.json",
3
+ "style": "default",
4
+ "typescript": true,
5
+ "tsConfigPath": ".nuxt/tsconfig.json",
6
+ "tailwind": {
7
+ "config": "tailwind.config.ts",
8
+ "css": "assets/css/tailwind.css",
9
+ "baseColor": "slate",
10
+ "cssVariables": true,
11
+ "prefix": ""
12
+ },
13
+ "framework": "nuxt",
14
+ "aliases": {
15
+ "components": "@/components",
16
+ "utils": "@/lib/utils"
17
+ }
18
+ }
@@ -0,0 +1,67 @@
1
+ export function useStatusToast() {
2
+ const state = useState<StatusToast>('status-toast-state', () => ({
3
+ text: '',
4
+ loading: false,
5
+ visible: false,
6
+ progress: null,
7
+ icon: null,
8
+ actions: [],
9
+ }))
10
+ const lastTimeout = useState('status-toast-last-timeout', () => 0)
11
+
12
+ function update(options: {
13
+ text: string
14
+ loading?: boolean
15
+ progress?: number
16
+ timeout?: number | null
17
+ icon?: string
18
+ actions?: Action[]
19
+ }) {
20
+ if (state.value.visible)
21
+ window.clearTimeout(lastTimeout.value)
22
+
23
+ state.value.text = options.text
24
+ state.value.loading = options.loading ?? false
25
+ state.value.progress = options.progress ?? null
26
+ state.value.icon = options.icon ?? null
27
+ state.value.actions = options.actions ?? []
28
+
29
+ if ((typeof options.timeout === 'number' && options.timeout > 0) || options.timeout === undefined) {
30
+ lastTimeout.value = window.setTimeout(clear, options.timeout ?? 2000)
31
+ }
32
+
33
+ state.value.visible = true
34
+ }
35
+
36
+ function clear() {
37
+ state.value.visible = false
38
+ state.value.progress = null
39
+ state.value.icon = null
40
+ state.value.actions = []
41
+ }
42
+
43
+ return {
44
+ update,
45
+ clear,
46
+ text: computed(() => state.value.text),
47
+ loading: computed(() => state.value.loading),
48
+ visible: computed(() => state.value.visible),
49
+ progress: computed(() => state.value.progress),
50
+ icon: computed(() => state.value.icon),
51
+ actions: computed(() => state.value.actions),
52
+ }
53
+ }
54
+
55
+ type Action = {
56
+ label: string
57
+ onClick: (event?: MouseEvent) => void
58
+ }
59
+
60
+ type StatusToast = {
61
+ text: string
62
+ loading: boolean
63
+ visible: boolean
64
+ icon: string | null
65
+ progress: number | null
66
+ actions: Action[]
67
+ }
package/css/reset.css ADDED
@@ -0,0 +1,386 @@
1
+ /*
2
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
3
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
4
+ 2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
5
+ */
6
+
7
+ *,
8
+ ::before,
9
+ ::after {
10
+ box-sizing: border-box; /* 1 */
11
+ border-width: 0; /* 2 */
12
+ border-style: solid; /* 2 */
13
+ border-color: var(--un-default-border-color, #e5e7eb); /* 2 */
14
+ }
15
+
16
+ ::before,
17
+ ::after {
18
+ --un-content: '';
19
+ }
20
+
21
+ /*
22
+ 1. Use a consistent sensible line-height in all browsers.
23
+ 2. Prevent adjustments of font size after orientation changes in iOS.
24
+ 3. Use a more readable tab size.
25
+ 4. Use the user's configured `sans` font-family by default.
26
+ 5. Use the user's configured `sans` font-feature-settings by default.
27
+ 6. Use the user's configured `sans` font-variation-settings by default.
28
+ 7. Disable tap highlights on iOS.
29
+ */
30
+
31
+ html,
32
+ :host {
33
+ line-height: 1.5; /* 1 */
34
+ -webkit-text-size-adjust: 100%; /* 2 */
35
+ -moz-tab-size: 4; /* 3 */
36
+ tab-size: 4; /* 3 */
37
+ font-family: Inter, sans-serif;
38
+ font-feature-settings: normal; /* 5 */
39
+ font-variation-settings: normal; /* 6 */
40
+ -webkit-tap-highlight-color: transparent; /* 7 */
41
+ -webkit-font-smoothing: antialiased;
42
+ -moz-osx-font-smoothing: grayscale;
43
+ font-smooth: always;
44
+ }
45
+
46
+ /*
47
+ 1. Remove the margin in all browsers.
48
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
49
+ */
50
+
51
+ body {
52
+ margin: 0; /* 1 */
53
+ line-height: inherit; /* 2 */
54
+ overflow-x: hidden;
55
+ }
56
+
57
+ /*
58
+ 1. Add the correct height in Firefox.
59
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
60
+ 3. Ensure horizontal rules are visible by default.
61
+ */
62
+
63
+ hr {
64
+ height: 0; /* 1 */
65
+ color: inherit; /* 2 */
66
+ border-top-width: 1px; /* 3 */
67
+ }
68
+
69
+ /*
70
+ Add the correct text decoration in Chrome, Edge, and Safari.
71
+ */
72
+
73
+ abbr:where([title]) {
74
+ text-decoration: underline dotted;
75
+ }
76
+
77
+
78
+ /*
79
+ Reset links to optimize for opt-in styling instead of opt-out.
80
+ */
81
+
82
+ a {
83
+ color: inherit;
84
+ text-decoration: inherit;
85
+ }
86
+
87
+ /*
88
+ Add the correct font weight in Edge and Safari.
89
+ */
90
+
91
+ b,
92
+ strong {
93
+ font-weight: bolder;
94
+ }
95
+
96
+ /*
97
+ 1. Use the user's configured `mono` font-family by default.
98
+ 2. Use the user's configured `mono` font-feature-settings by default.
99
+ 3. Use the user's configured `mono` font-variation-settings by default.
100
+ 4. Correct the odd `em` font sizing in all browsers.
101
+ */
102
+
103
+ code,
104
+ kbd,
105
+ samp,
106
+ pre {
107
+ font-family: Inter, sans-serif;
108
+ font-feature-settings: normal; /* 2 */
109
+ font-variation-settings: normal; /* 3 */
110
+ font-size: 1em; /* 4 */
111
+ }
112
+
113
+ /*
114
+ Add the correct font size in all browsers.
115
+ */
116
+
117
+ small {
118
+ font-size: 80%;
119
+ }
120
+
121
+ /*
122
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
123
+ */
124
+
125
+ sub,
126
+ sup {
127
+ font-size: 75%;
128
+ line-height: 0;
129
+ position: relative;
130
+ vertical-align: baseline;
131
+ }
132
+
133
+ sub {
134
+ bottom: -0.25em;
135
+ }
136
+
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
141
+ /*
142
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
143
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
144
+ 3. Remove gaps between table borders by default.
145
+ */
146
+
147
+ table {
148
+ text-indent: 0; /* 1 */
149
+ border-color: inherit; /* 2 */
150
+ border-collapse: collapse; /* 3 */
151
+ }
152
+
153
+ /*
154
+ 1. Change the font styles in all browsers.
155
+ 2. Remove the margin in Firefox and Safari.
156
+ 3. Remove default padding in all browsers.
157
+ */
158
+
159
+ button,
160
+ input,
161
+ optgroup,
162
+ select,
163
+ textarea {
164
+ font-family: Inter, sans-serif;
165
+ font-feature-settings: inherit; /* 1 */
166
+ font-variation-settings: inherit; /* 1 */
167
+ font-size: 100%; /* 1 */
168
+ font-weight: inherit; /* 1 */
169
+ line-height: inherit; /* 1 */
170
+ color: inherit; /* 1 */
171
+ margin: 0; /* 2 */
172
+ padding: 0; /* 3 */
173
+ }
174
+
175
+ /*
176
+ Remove the inheritance of text transform in Edge and Firefox.
177
+ */
178
+
179
+ button,
180
+ select {
181
+ text-transform: none;
182
+ }
183
+
184
+ /*
185
+ 1. Correct the inability to style clickable types in iOS and Safari.
186
+ 2. Remove default button styles.
187
+ */
188
+
189
+ button,
190
+ [type='button'],
191
+ [type='reset'],
192
+ [type='submit'] {
193
+ -webkit-appearance: button; /* 1 */
194
+ background-color: transparent; /* 2 */
195
+ background-image: none; /* 2 */
196
+ }
197
+
198
+ /*
199
+ Use the modern Firefox focus style for all focusable elements.
200
+ */
201
+
202
+ :-moz-focusring {
203
+ outline: auto;
204
+ }
205
+
206
+ /*
207
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
208
+ */
209
+
210
+ :-moz-ui-invalid {
211
+ box-shadow: none;
212
+ }
213
+
214
+ /*
215
+ Add the correct vertical alignment in Chrome and Firefox.
216
+ */
217
+
218
+ progress {
219
+ vertical-align: baseline;
220
+ }
221
+
222
+ /*
223
+ Correct the cursor style of increment and decrement buttons in Safari.
224
+ */
225
+
226
+ ::-webkit-inner-spin-button,
227
+ ::-webkit-outer-spin-button {
228
+ height: auto;
229
+ }
230
+
231
+ /*
232
+ 1. Correct the odd appearance in Chrome and Safari.
233
+ 2. Correct the outline style in Safari.
234
+ */
235
+
236
+ [type='search'] {
237
+ -webkit-appearance: textfield; /* 1 */
238
+ outline-offset: -2px; /* 2 */
239
+ }
240
+
241
+ /*
242
+ Remove the inner padding in Chrome and Safari on macOS.
243
+ */
244
+
245
+ ::-webkit-search-decoration {
246
+ -webkit-appearance: none;
247
+ }
248
+
249
+ /*
250
+ 1. Correct the inability to style clickable types in iOS and Safari.
251
+ 2. Change font properties to `inherit` in Safari.
252
+ */
253
+
254
+ ::-webkit-file-upload-button {
255
+ -webkit-appearance: button; /* 1 */
256
+ font: inherit; /* 2 */
257
+ }
258
+
259
+ /*
260
+ Add the correct display in Chrome and Safari.
261
+ */
262
+
263
+ summary {
264
+ display: list-item;
265
+ }
266
+
267
+ /*
268
+ Removes the default spacing for appropriate elements.
269
+ */
270
+
271
+ blockquote,
272
+ dl,
273
+ dd,
274
+ h1,
275
+ h2,
276
+ h3,
277
+ h4,
278
+ h5,
279
+ h6,
280
+ hr,
281
+ figure,
282
+ p,
283
+ pre {
284
+ margin: 0;
285
+ }
286
+
287
+ fieldset {
288
+ margin: 0;
289
+ padding: 0;
290
+ }
291
+
292
+ legend {
293
+ padding: 0;
294
+ }
295
+
296
+ ol,
297
+ ul,
298
+ menu {
299
+ list-style: none;
300
+ margin: 0;
301
+ padding: 0;
302
+ }
303
+
304
+ dialog {
305
+ padding: 0;
306
+ }
307
+
308
+ /*
309
+ Prevent resizing textareas horizontally by default.
310
+ */
311
+
312
+ textarea {
313
+ resize: vertical;
314
+ }
315
+
316
+ /*
317
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
318
+ 2. Set the default placeholder color to the user's configured gray 400 color.
319
+ */
320
+
321
+ input::placeholder,
322
+ textarea::placeholder {
323
+ opacity: 1; /* 1 */
324
+ color: #9ca3af; /* 2 */
325
+ }
326
+
327
+ /*
328
+ Set the default cursor for buttons.
329
+ */
330
+
331
+ button,
332
+ [role="button"] {
333
+ cursor: pointer;
334
+ }
335
+
336
+ /*
337
+ Make sure disabled buttons don't get the pointer cursor.
338
+ */
339
+
340
+ :disabled {
341
+ cursor: default;
342
+ }
343
+
344
+ /*
345
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
346
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
347
+ This can trigger a poorly considered lint error in some tools but is included by design.
348
+ */
349
+
350
+ img,
351
+ svg,
352
+ video,
353
+ canvas,
354
+ audio,
355
+ iframe,
356
+ embed,
357
+ object {
358
+ display: block; /* 1 */
359
+ vertical-align: middle; /* 2 */
360
+ }
361
+
362
+ /*
363
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
364
+ */
365
+
366
+ img,
367
+ video {
368
+ max-width: 100%;
369
+ height: auto;
370
+ }
371
+
372
+ /*
373
+ Make elements with the HTML hidden attribute stay hidden by default.
374
+ */
375
+
376
+ [hidden]:where(:not([hidden="until-found"])) {
377
+ display: none;
378
+ }
379
+
380
+ /*
381
+ Make all headers have regular font weight by default
382
+ */
383
+
384
+ h1, h1, h2, h3, h4, h5, h6 {
385
+ --at-apply: 'font-regular'
386
+ }
package/css/text.css ADDED
@@ -0,0 +1,22 @@
1
+ html {
2
+ font-family: Inter, sans-serif;
3
+ }
4
+
5
+ h1 {
6
+ --at-apply: 'text-h1 text-gray-950';
7
+ }
8
+ h2 {
9
+ --at-apply: 'text-h2 text-gray-950';
10
+ }
11
+ h3 {
12
+ --at-apply: 'text-h3 text-gray-950';
13
+ }
14
+ h4 {
15
+ --at-apply: 'text-h4 text-gray-950';
16
+ }
17
+ h5 {
18
+ --at-apply: 'text-h5 text-gray-950';
19
+ }
20
+ h6 {
21
+ --at-apply: 'text-h6 text-gray-950';
22
+ }