tera-system-ui 0.1.64 → 0.1.67

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 (361) hide show
  1. package/dist/COMPONENT_API.md +2 -539
  2. package/dist/components/accordion/Accordion.d.ts +24 -0
  3. package/dist/components/accordion/Accordion.js +4 -0
  4. package/dist/components/accordion/components/Accordion.svelte +2 -8
  5. package/dist/components/accordion/components/AccordionContent.svelte +5 -12
  6. package/dist/components/accordion/components/AccordionItem.svelte +3 -9
  7. package/dist/components/accordion/components/AccordionTrigger.svelte +5 -15
  8. package/dist/components/ai/ChatBubble.svelte +35 -0
  9. package/dist/components/ai/ChatBubble.svelte.d.ts +12 -0
  10. package/dist/components/ai/PromptInput.svelte +58 -0
  11. package/dist/components/ai/PromptInput.svelte.d.ts +13 -0
  12. package/dist/components/ai/StreamText.svelte +41 -0
  13. package/dist/components/ai/StreamText.svelte.d.ts +11 -0
  14. package/dist/components/ai/SuggestionChips.svelte +34 -0
  15. package/dist/components/ai/SuggestionChips.svelte.d.ts +10 -0
  16. package/dist/components/ai/ThinkingLoader.svelte +34 -0
  17. package/dist/components/ai/ThinkingLoader.svelte.d.ts +11 -0
  18. package/dist/components/ai/index.d.ts +5 -0
  19. package/dist/components/ai/index.js +5 -0
  20. package/dist/components/alert/Alert.svelte +47 -0
  21. package/dist/components/alert/Alert.svelte.d.ts +15 -0
  22. package/dist/components/alert/index.d.ts +1 -0
  23. package/dist/components/alert/index.js +1 -0
  24. package/dist/components/avatar/Avatar.svelte +9 -25
  25. package/dist/components/badge/Badge.d.ts +52 -0
  26. package/dist/components/badge/Badge.js +22 -0
  27. package/dist/components/badge/Badge.svelte +22 -0
  28. package/dist/components/badge/Badge.svelte.d.ts +4 -0
  29. package/dist/components/badge/index.d.ts +2 -0
  30. package/dist/components/badge/index.js +1 -0
  31. package/dist/components/brand-logo/BrandLogo.svelte +12 -10
  32. package/dist/components/button/Button.d.ts +2 -2
  33. package/dist/components/button/Button.js +12 -12
  34. package/dist/components/button/Button.svelte +7 -34
  35. package/dist/components/card/Card.d.ts +68 -0
  36. package/dist/components/card/Card.js +28 -0
  37. package/dist/components/card/Card.svelte +33 -0
  38. package/dist/components/card/Card.svelte.d.ts +4 -0
  39. package/dist/components/card/index.d.ts +2 -0
  40. package/dist/components/card/index.js +1 -0
  41. package/dist/components/checkbox/Checkbox.d.ts +25 -4
  42. package/dist/components/checkbox/Checkbox.js +4 -0
  43. package/dist/components/checkbox/Checkbox.svelte +13 -16
  44. package/dist/components/checkbox/Checkbox.svelte.d.ts +2 -2
  45. package/dist/components/combobox/Combobox.d.ts +45 -9
  46. package/dist/components/combobox/Combobox.js +5 -7
  47. package/dist/components/combobox/Combobox.svelte +226 -8
  48. package/dist/components/combobox/Combobox.svelte.d.ts +2 -2
  49. package/dist/components/combobox/index.d.ts +1 -1
  50. package/dist/components/command/components/command-empty.svelte +3 -8
  51. package/dist/components/command/components/command-group.svelte +3 -13
  52. package/dist/components/command/components/command-input.svelte +5 -13
  53. package/dist/components/command/components/command-item.svelte +3 -9
  54. package/dist/components/command/components/command-link-item.svelte +3 -8
  55. package/dist/components/command/components/command-list.svelte +3 -8
  56. package/dist/components/command/components/command-separator.svelte +3 -8
  57. package/dist/components/command/components/command-shortcut.svelte +2 -10
  58. package/dist/components/command/components/command.svelte +29 -42
  59. package/dist/components/date-range-picker/DateRangePicker.svelte +490 -0
  60. package/dist/components/date-range-picker/DateRangePicker.svelte.d.ts +4 -0
  61. package/dist/components/date-range-picker/DateRangePicker.types.d.ts +38 -0
  62. package/dist/components/date-range-picker/DateRangePicker.types.js +1 -0
  63. package/dist/components/date-range-picker/index.d.ts +2 -0
  64. package/dist/components/date-range-picker/index.js +1 -0
  65. package/dist/components/dialog/Dialog.d.ts +43 -121
  66. package/dist/components/dialog/Dialog.js +1 -39
  67. package/dist/components/dialog/Dialog.svelte +103 -113
  68. package/dist/components/dialog/Dialog.svelte.d.ts +1 -2
  69. package/dist/components/dialog/dialog.scss +21 -24
  70. package/dist/components/drawer/Drawer.svelte +63 -0
  71. package/dist/components/drawer/Drawer.svelte.d.ts +16 -0
  72. package/dist/components/drawer/index.d.ts +1 -0
  73. package/dist/components/drawer/index.js +1 -0
  74. package/dist/components/dropdown-menu/DropdownMenu.d.ts +51 -24
  75. package/dist/components/dropdown-menu/DropdownMenu.js +1 -15
  76. package/dist/components/dropdown-menu/components/DropdownMenu.svelte +36 -34
  77. package/dist/components/dropdown-menu/components/DropdownMenu.svelte.d.ts +1 -1
  78. package/dist/components/dropdown-menu/components/DropdownMenuGroup.svelte +8 -12
  79. package/dist/components/dropdown-menu/components/DropdownMenuGroup.svelte.d.ts +2 -4
  80. package/dist/components/dropdown-menu/components/DropdownMenuHeader.svelte +11 -12
  81. package/dist/components/dropdown-menu/components/DropdownMenuHeader.svelte.d.ts +2 -4
  82. package/dist/components/dropdown-menu/components/DropdownMenuItem.svelte +27 -30
  83. package/dist/components/dropdown-menu/components/DropdownMenuItem.svelte.d.ts +1 -1
  84. package/dist/components/dropdown-menu/components/DropdownMenuSeparator.svelte +9 -11
  85. package/dist/components/dropdown-menu/components/DropdownMenuSeparator.svelte.d.ts +2 -4
  86. package/dist/components/fonts/TeraFontMono.svelte +4 -4
  87. package/dist/components/fonts/TeraFontMono.svelte.d.ts +1 -0
  88. package/dist/components/fonts/TeraFontSansSerif.svelte +4 -4
  89. package/dist/components/fonts/TeraFontSansSerif.svelte.d.ts +1 -1
  90. package/dist/components/header/Header.svelte +6 -9
  91. package/dist/components/header/header.scss +1 -1
  92. package/dist/components/icons/IconArrowBigRightFilled.svelte +3 -7
  93. package/dist/components/icons/IconBook.svelte +3 -6
  94. package/dist/components/icons/IconBookmarkPlus.svelte +3 -6
  95. package/dist/components/icons/IconCalculator.svelte +3 -6
  96. package/dist/components/icons/IconCheck.svelte +3 -6
  97. package/dist/components/icons/IconChevronDown.svelte +3 -6
  98. package/dist/components/icons/IconCoin.svelte +3 -6
  99. package/dist/components/icons/IconCoinConvert.svelte +2 -5
  100. package/dist/components/icons/IconCopy.svelte +3 -6
  101. package/dist/components/icons/IconCopyCheckFilled.svelte +3 -6
  102. package/dist/components/icons/IconHamburger.svelte +3 -6
  103. package/dist/components/icons/IconLanguage.svelte +3 -6
  104. package/dist/components/icons/IconLoader2.svelte +3 -6
  105. package/dist/components/icons/IconLogout.svelte +3 -6
  106. package/dist/components/icons/IconMoon.svelte +3 -6
  107. package/dist/components/icons/IconPointFilled.svelte +3 -6
  108. package/dist/components/icons/IconSearch.svelte +3 -6
  109. package/dist/components/icons/IconSettings.svelte +3 -6
  110. package/dist/components/icons/IconSun.svelte +3 -6
  111. package/dist/components/icons/IconSwitchHorizontal.svelte +3 -6
  112. package/dist/components/icons/IconSwitchVertical.svelte +3 -6
  113. package/dist/components/icons/IconTransform.svelte +3 -6
  114. package/dist/components/icons/IconX.svelte +3 -6
  115. package/dist/components/input/Input.d.ts +2 -2
  116. package/dist/components/input/Input.js +10 -10
  117. package/dist/components/input/Input.svelte +10 -26
  118. package/dist/components/label/Label.d.ts +2 -2
  119. package/dist/components/label/Label.js +2 -2
  120. package/dist/components/label/Label.svelte +4 -12
  121. package/dist/components/language-picker-button/LanguagePickerButton.svelte +23 -42
  122. package/dist/components/light-dark-toggle/LightDarkToggle.svelte +21 -26
  123. package/dist/components/marketing/FeatureCard.svelte +37 -0
  124. package/dist/components/marketing/FeatureCard.svelte.d.ts +13 -0
  125. package/dist/components/marketing/PricingCard.svelte +48 -0
  126. package/dist/components/marketing/PricingCard.svelte.d.ts +15 -0
  127. package/dist/components/marketing/StatBlock.svelte +14 -0
  128. package/dist/components/marketing/StatBlock.svelte.d.ts +10 -0
  129. package/dist/components/marketing/TestimonialCard.svelte +24 -0
  130. package/dist/components/marketing/TestimonialCard.svelte.d.ts +12 -0
  131. package/dist/components/marketing/index.d.ts +4 -0
  132. package/dist/components/marketing/index.js +4 -0
  133. package/dist/components/popover/Popover.d.ts +32 -13
  134. package/dist/components/popover/Popover.js +1 -7
  135. package/dist/components/popover/Popover.svelte +40 -158
  136. package/dist/components/popover/Popover.svelte.d.ts +2 -2
  137. package/dist/components/popover-responsive/PopoverResponsive.d.ts +18 -7
  138. package/dist/components/popover-responsive/PopoverResponsive.js +1 -7
  139. package/dist/components/popover-responsive/PopoverResponsive.svelte +25 -87
  140. package/dist/components/popover-responsive/PopoverResponsive.svelte.d.ts +2 -11
  141. package/dist/components/select/Select.d.ts +60 -23
  142. package/dist/components/select/Select.js +14 -35
  143. package/dist/components/select/Select.svelte +157 -28
  144. package/dist/components/select/Select.svelte.d.ts +2 -3
  145. package/dist/components/select/index.d.ts +1 -1
  146. package/dist/components/side-navigation/SideNavigation.svelte +73 -96
  147. package/dist/components/side-navigation/SideNavigationItem.svelte +2 -2
  148. package/dist/components/side-navigation/SideNavigationLayout.svelte +3 -5
  149. package/dist/components/side-navigation/sidenav.scss +17 -13
  150. package/dist/components/skeleton/Skeleton.svelte +48 -0
  151. package/dist/components/skeleton/Skeleton.svelte.d.ts +12 -0
  152. package/dist/components/skeleton/index.d.ts +1 -0
  153. package/dist/components/skeleton/index.js +1 -0
  154. package/dist/components/slider/Slider.d.ts +25 -15
  155. package/dist/components/slider/Slider.js +1 -7
  156. package/dist/components/slider/Slider.svelte +38 -164
  157. package/dist/components/slider/Slider.svelte.d.ts +1 -1
  158. package/dist/components/spinner/Spinner.svelte +39 -0
  159. package/dist/components/spinner/Spinner.svelte.d.ts +10 -0
  160. package/dist/components/spinner/index.d.ts +1 -0
  161. package/dist/components/spinner/index.js +1 -0
  162. package/dist/components/star-rating/StarRating.svelte +33 -49
  163. package/dist/components/switch/Switch.d.ts +19 -4
  164. package/dist/components/switch/Switch.js +4 -0
  165. package/dist/components/switch/Switch.svelte +13 -17
  166. package/dist/components/switch/Switch.svelte.d.ts +2 -2
  167. package/dist/components/table/Table.svelte +68 -0
  168. package/dist/components/table/Table.svelte.d.ts +40 -0
  169. package/dist/components/table/index.d.ts +1 -0
  170. package/dist/components/table/index.js +1 -0
  171. package/dist/components/tabs/Tabs.svelte.d.ts +45 -16
  172. package/dist/components/tabs/Tabs.svelte.js +8 -18
  173. package/dist/components/tabs/components/Tabs.svelte +27 -33
  174. package/dist/components/tabs/components/Tabs.svelte.d.ts +1 -1
  175. package/dist/components/tabs/components/TabsContent.svelte +13 -36
  176. package/dist/components/tabs/components/TabsContent.svelte.d.ts +2 -5
  177. package/dist/components/tabs/components/TabsItem.svelte +43 -32
  178. package/dist/components/tabs/components/TabsItem.svelte.d.ts +2 -5
  179. package/dist/components/tabs/components/TabsList.svelte +90 -58
  180. package/dist/components/tabs/components/TabsList.svelte.d.ts +2 -4
  181. package/dist/components/tera-ui-context/TeraUiContext.svelte +13 -26
  182. package/dist/components/text-area/TextArea.d.ts +2 -2
  183. package/dist/components/text-area/TextArea.js +9 -9
  184. package/dist/components/text-area/TextArea.svelte +41 -65
  185. package/dist/components/toast/ToastContainer.svelte +50 -0
  186. package/dist/components/toast/ToastContainer.svelte.d.ts +18 -0
  187. package/dist/components/toast/index.d.ts +3 -0
  188. package/dist/components/toast/index.js +2 -0
  189. package/dist/components/toast/toast.svelte.d.ts +22 -0
  190. package/dist/components/toast/toast.svelte.js +18 -0
  191. package/dist/components/tooltip/Tooltip.d.ts +23 -0
  192. package/dist/components/tooltip/Tooltip.js +1 -0
  193. package/dist/components/tooltip/Tooltip.svelte +30 -0
  194. package/dist/components/tooltip/Tooltip.svelte.d.ts +4 -0
  195. package/dist/components/tooltip/index.d.ts +2 -0
  196. package/dist/components/tooltip/index.js +1 -0
  197. package/dist/components/user-avatar-with-menu/UserAvatarWithMenu.svelte +48 -69
  198. package/dist/index.d.ts +19 -2
  199. package/dist/index.js +12 -0
  200. package/dist/llms/accordion.md +90 -0
  201. package/dist/llms/ai.md +110 -0
  202. package/dist/llms/alert.md +29 -0
  203. package/dist/llms/avatar.md +34 -0
  204. package/dist/llms/badge.md +31 -0
  205. package/dist/llms/brand-logo.md +30 -0
  206. package/dist/llms/button.md +37 -0
  207. package/dist/llms/card.md +32 -0
  208. package/dist/llms/checkbox.md +35 -0
  209. package/dist/llms/colors.md +161 -0
  210. package/dist/llms/combobox.md +40 -0
  211. package/dist/llms/command.md +7 -0
  212. package/dist/llms/date-range-picker.md +36 -0
  213. package/dist/llms/dialog.md +45 -0
  214. package/dist/llms/drawer.md +30 -0
  215. package/dist/llms/dropdown-menu.md +112 -0
  216. package/dist/llms/fonts.md +7 -0
  217. package/dist/llms/header.md +26 -0
  218. package/dist/llms/icons.md +43 -0
  219. package/dist/llms/index.md +65 -0
  220. package/dist/llms/input.md +37 -0
  221. package/dist/llms/label.md +30 -0
  222. package/dist/llms/language-picker-button.md +30 -0
  223. package/dist/llms/light-dark-toggle.md +26 -0
  224. package/dist/llms/marketing.md +95 -0
  225. package/dist/llms/popover-responsive.md +32 -0
  226. package/dist/llms/popover.md +40 -0
  227. package/dist/llms/select.md +44 -0
  228. package/dist/llms/side-navigation.md +30 -0
  229. package/dist/llms/skeleton.md +28 -0
  230. package/dist/llms/slider.md +36 -0
  231. package/dist/llms/spinner.md +25 -0
  232. package/dist/llms/star-rating.md +31 -0
  233. package/dist/llms/switch.md +33 -0
  234. package/dist/llms/table.md +30 -0
  235. package/dist/llms/tabs.md +92 -0
  236. package/dist/llms/tera-ui-context.md +30 -0
  237. package/dist/llms/text-area.md +39 -0
  238. package/dist/llms/toast.md +7 -0
  239. package/dist/llms/tooltip.md +32 -0
  240. package/dist/llms/user-avatar-with-menu.md +28 -0
  241. package/dist/paraglide/README.md +72 -3
  242. package/dist/paraglide/messages/_index.d.ts +105 -7
  243. package/dist/paraglide/messages/_index.js +437 -7
  244. package/dist/paraglide/messages/ar.d.ts +23 -0
  245. package/dist/paraglide/messages/ar.js +38 -0
  246. package/dist/paraglide/messages/bg.d.ts +23 -0
  247. package/dist/paraglide/messages/bg.js +38 -0
  248. package/dist/paraglide/messages/bn.d.ts +23 -0
  249. package/dist/paraglide/messages/bn.js +38 -0
  250. package/dist/paraglide/messages/ca.d.ts +23 -0
  251. package/dist/paraglide/messages/ca.js +38 -0
  252. package/dist/paraglide/messages/cs.d.ts +23 -0
  253. package/dist/paraglide/messages/cs.js +38 -0
  254. package/dist/paraglide/messages/da.d.ts +23 -0
  255. package/dist/paraglide/messages/da.js +38 -0
  256. package/dist/paraglide/messages/de.d.ts +23 -0
  257. package/dist/paraglide/messages/de.js +38 -0
  258. package/dist/paraglide/messages/el.d.ts +23 -0
  259. package/dist/paraglide/messages/el.js +38 -0
  260. package/dist/paraglide/messages/en.d.ts +23 -0
  261. package/dist/paraglide/messages/en.js +38 -0
  262. package/dist/paraglide/messages/es.d.ts +23 -0
  263. package/dist/paraglide/messages/es.js +38 -0
  264. package/dist/paraglide/messages/fi.d.ts +23 -0
  265. package/dist/paraglide/messages/fi.js +38 -0
  266. package/dist/paraglide/messages/fr.d.ts +23 -0
  267. package/dist/paraglide/messages/fr.js +38 -0
  268. package/dist/paraglide/messages/he.d.ts +23 -0
  269. package/dist/paraglide/messages/he.js +38 -0
  270. package/dist/paraglide/messages/hi.d.ts +23 -0
  271. package/dist/paraglide/messages/hi.js +38 -0
  272. package/dist/paraglide/messages/hu.d.ts +23 -0
  273. package/dist/paraglide/messages/hu.js +38 -0
  274. package/dist/paraglide/messages/id.d.ts +23 -0
  275. package/dist/paraglide/messages/id.js +38 -0
  276. package/dist/paraglide/messages/it.d.ts +23 -0
  277. package/dist/paraglide/messages/it.js +38 -0
  278. package/dist/paraglide/messages/ja.d.ts +23 -0
  279. package/dist/paraglide/messages/ja.js +38 -0
  280. package/dist/paraglide/messages/ko.d.ts +23 -0
  281. package/dist/paraglide/messages/ko.js +38 -0
  282. package/dist/paraglide/messages/lt.d.ts +23 -0
  283. package/dist/paraglide/messages/lt.js +38 -0
  284. package/dist/paraglide/messages/lv.d.ts +23 -0
  285. package/dist/paraglide/messages/lv.js +38 -0
  286. package/dist/paraglide/messages/ms.d.ts +23 -0
  287. package/dist/paraglide/messages/ms.js +38 -0
  288. package/dist/paraglide/messages/nl.d.ts +23 -0
  289. package/dist/paraglide/messages/nl.js +38 -0
  290. package/dist/paraglide/messages/no.d.ts +23 -0
  291. package/dist/paraglide/messages/no.js +38 -0
  292. package/dist/paraglide/messages/pl.d.ts +23 -0
  293. package/dist/paraglide/messages/pl.js +38 -0
  294. package/dist/paraglide/messages/pt.d.ts +23 -0
  295. package/dist/paraglide/messages/pt.js +38 -0
  296. package/dist/paraglide/messages/ro.d.ts +23 -0
  297. package/dist/paraglide/messages/ro.js +38 -0
  298. package/dist/paraglide/messages/ru.d.ts +23 -0
  299. package/dist/paraglide/messages/ru.js +38 -0
  300. package/dist/paraglide/messages/sk.d.ts +23 -0
  301. package/dist/paraglide/messages/sk.js +38 -0
  302. package/dist/paraglide/messages/sl.d.ts +23 -0
  303. package/dist/paraglide/messages/sl.js +38 -0
  304. package/dist/paraglide/messages/sq.d.ts +23 -0
  305. package/dist/paraglide/messages/sq.js +38 -0
  306. package/dist/paraglide/messages/sr.d.ts +23 -0
  307. package/dist/paraglide/messages/sr.js +38 -0
  308. package/dist/paraglide/messages/sv.d.ts +23 -0
  309. package/dist/paraglide/messages/sv.js +38 -0
  310. package/dist/paraglide/messages/sw.d.ts +23 -0
  311. package/dist/paraglide/messages/sw.js +38 -0
  312. package/dist/paraglide/messages/ta.d.ts +23 -0
  313. package/dist/paraglide/messages/ta.js +38 -0
  314. package/dist/paraglide/messages/te.d.ts +23 -0
  315. package/dist/paraglide/messages/te.js +38 -0
  316. package/dist/paraglide/messages/th.d.ts +23 -0
  317. package/dist/paraglide/messages/th.js +38 -0
  318. package/dist/paraglide/messages/tl.d.ts +23 -0
  319. package/dist/paraglide/messages/tl.js +38 -0
  320. package/dist/paraglide/messages/tr.d.ts +23 -0
  321. package/dist/paraglide/messages/tr.js +38 -0
  322. package/dist/paraglide/messages/uk.d.ts +23 -0
  323. package/dist/paraglide/messages/uk.js +38 -0
  324. package/dist/paraglide/messages/vi.d.ts +23 -0
  325. package/dist/paraglide/messages/vi.js +38 -0
  326. package/dist/paraglide/messages/zh-CN.d.ts +23 -0
  327. package/dist/paraglide/messages/zh-CN.js +38 -0
  328. package/dist/paraglide/messages/zh-TW.d.ts +23 -0
  329. package/dist/paraglide/messages/zh-TW.js +38 -0
  330. package/dist/paraglide/registry.d.ts +13 -0
  331. package/dist/paraglide/registry.js +15 -0
  332. package/dist/paraglide/runtime.d.ts +243 -126
  333. package/dist/paraglide/runtime.js +473 -148
  334. package/dist/paraglide/server.d.ts +13 -20
  335. package/dist/paraglide/server.js +92 -40
  336. package/dist/stories/ComponentOverview.stories.svelte +533 -0
  337. package/dist/stories/ComponentOverview.stories.svelte.d.ts +6 -0
  338. package/dist/themes/tera-ui-base.css +664 -470
  339. package/dist/themes/theme-ai.css +100 -0
  340. package/dist/themes/theme-marketing.css +91 -0
  341. package/dist/themes/theme-professional.css +41 -0
  342. package/package.json +35 -29
  343. package/dist/paraglide/messages/text_account_settings.d.ts +0 -4
  344. package/dist/paraglide/messages/text_account_settings.js +0 -239
  345. package/dist/paraglide/messages/text_calces_documentation.d.ts +0 -4
  346. package/dist/paraglide/messages/text_calces_documentation.js +0 -239
  347. package/dist/paraglide/messages/text_calces_scientific_calculator.d.ts +0 -4
  348. package/dist/paraglide/messages/text_calces_scientific_calculator.js +0 -239
  349. package/dist/paraglide/messages/text_currency_converter.d.ts +0 -4
  350. package/dist/paraglide/messages/text_currency_converter.js +0 -239
  351. package/dist/paraglide/messages/text_logout.d.ts +0 -4
  352. package/dist/paraglide/messages/text_logout.js +0 -239
  353. package/dist/paraglide/messages/text_select_language.d.ts +0 -4
  354. package/dist/paraglide/messages/text_select_language.js +0 -239
  355. package/dist/paraglide/messages/text_unit_converter.d.ts +0 -4
  356. package/dist/paraglide/messages/text_unit_converter.js +0 -239
  357. package/dist/tera-i18n/projects/tera-system-ui/project.inlang/.meta.json +0 -3
  358. package/dist/tera-i18n/projects/tera-system-ui/project.inlang/README.md +0 -103
  359. package/dist/tera-i18n/projects/tera-system-ui/project.inlang/project_id +0 -1
  360. package/dist/themes/tw-preset.cjs +0 -160
  361. package/dist/themes/tw-preset.d.cts +0 -157
@@ -1,239 +0,0 @@
1
- /* eslint-disable */
2
- import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer, experimentalStaticLocale } from '../runtime.js';
3
- /** @typedef {import('../runtime.js').LocalizedString} LocalizedString */
4
-
5
- const ar_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
6
- return /** @type {LocalizedString} */ (`محول العملات`)
7
- };
8
-
9
- const bg_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
10
- return /** @type {LocalizedString} */ (`Конвертор на валута`)
11
- };
12
-
13
- const bn_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
14
- return /** @type {LocalizedString} */ (`মুদ্রা রূপান্তরকারী`)
15
- };
16
-
17
- const ca_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
18
- return /** @type {LocalizedString} */ (`Convertidor de moneda`)
19
- };
20
-
21
- const cs_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
22
- return /** @type {LocalizedString} */ (`Převodník měn`)
23
- };
24
-
25
- const da_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
26
- return /** @type {LocalizedString} */ (`Valutakonverter`)
27
- };
28
-
29
- const de_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
30
- return /** @type {LocalizedString} */ (`Währungsrechner`)
31
- };
32
-
33
- const el_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
34
- return /** @type {LocalizedString} */ (`Μετατροπέας νομισμάτων`)
35
- };
36
-
37
- const en_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
38
- return /** @type {LocalizedString} */ (`Currency Converter`)
39
- };
40
-
41
- const es_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
42
- return /** @type {LocalizedString} */ (`Convertidor de Divisas`)
43
- };
44
-
45
- const fi_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
46
- return /** @type {LocalizedString} */ (`Valuuttamuunnin`)
47
- };
48
-
49
- const fr_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
50
- return /** @type {LocalizedString} */ (`Convertisseur de Devises`)
51
- };
52
-
53
- const he_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
54
- return /** @type {LocalizedString} */ (`ממיר מטבעות`)
55
- };
56
-
57
- const hi_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
58
- return /** @type {LocalizedString} */ (`मुद्रा परिवर्तक`)
59
- };
60
-
61
- const hu_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
62
- return /** @type {LocalizedString} */ (`Pénznem Átváltó`)
63
- };
64
-
65
- const id_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
66
- return /** @type {LocalizedString} */ (`Pengonversi Mata Uang`)
67
- };
68
-
69
- const it_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
70
- return /** @type {LocalizedString} */ (`Convertitore di Valuta`)
71
- };
72
-
73
- const ja_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
74
- return /** @type {LocalizedString} */ (`通貨換算`)
75
- };
76
-
77
- const ko_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
78
- return /** @type {LocalizedString} */ (`환율 변환기`)
79
- };
80
-
81
- const lt_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
82
- return /** @type {LocalizedString} */ (`Valiutų keitiklis`)
83
- };
84
-
85
- const lv_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
86
- return /** @type {LocalizedString} */ (`Valūtas konvertētājs`)
87
- };
88
-
89
- const ms_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
90
- return /** @type {LocalizedString} */ (`Penukar Mata Wang`)
91
- };
92
-
93
- const nl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
94
- return /** @type {LocalizedString} */ (`Valuta Converter`)
95
- };
96
-
97
- const no_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
98
- return /** @type {LocalizedString} */ (`Valutaomregner`)
99
- };
100
-
101
- const pl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
102
- return /** @type {LocalizedString} */ (`Konwerter walut`)
103
- };
104
-
105
- const pt_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
106
- return /** @type {LocalizedString} */ (`Conversor de Moedas`)
107
- };
108
-
109
- const ro_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
110
- return /** @type {LocalizedString} */ (`Convertor valutar`)
111
- };
112
-
113
- const ru_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
114
- return /** @type {LocalizedString} */ (`Конвертер валют`)
115
- };
116
-
117
- const sk_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
118
- return /** @type {LocalizedString} */ (`Konvertor mien`)
119
- };
120
-
121
- const sl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
122
- return /** @type {LocalizedString} */ (`Pretvornik valut`)
123
- };
124
-
125
- const sq_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
126
- return /** @type {LocalizedString} */ (`Konvertues Valutash`)
127
- };
128
-
129
- const sr_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
130
- return /** @type {LocalizedString} */ (`Konverter valuta`)
131
- };
132
-
133
- const sv_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
134
- return /** @type {LocalizedString} */ (`Valutaomvandlare`)
135
- };
136
-
137
- const sw_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
138
- return /** @type {LocalizedString} */ (`Kigeuzi cha Fedha`)
139
- };
140
-
141
- const ta_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
142
- return /** @type {LocalizedString} */ (`நாணய மாற்றான்`)
143
- };
144
-
145
- const te_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
146
- return /** @type {LocalizedString} */ (`నాణ్య మార్పిడి`)
147
- };
148
-
149
- const th_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
150
- return /** @type {LocalizedString} */ (`ตัวแปลงสกุลเงิน`)
151
- };
152
-
153
- const tl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
154
- return /** @type {LocalizedString} */ (`Tagapagpalit ng Salapi`)
155
- };
156
-
157
- const tr_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
158
- return /** @type {LocalizedString} */ (`Para Birimi Dönüştürücü`)
159
- };
160
-
161
- const uk_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
162
- return /** @type {LocalizedString} */ (`Конвертер валют`)
163
- };
164
-
165
- const vi_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
166
- return /** @type {LocalizedString} */ (`Bộ Chuyển Đổi Tiền Tệ`)
167
- };
168
-
169
- const zh_cn2_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
170
- return /** @type {LocalizedString} */ (`货币转换器`)
171
- };
172
-
173
- const zh_tw2_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
174
- return /** @type {LocalizedString} */ (`貨幣轉換器`)
175
- };
176
-
177
- /**
178
- * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
179
- *
180
- * - Changing this function will be over-written by the next build.
181
- *
182
- * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
183
- * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
184
- *
185
- * @param {{}} inputs
186
- * @param {{ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }} options
187
- * @returns {LocalizedString}
188
- */
189
- /* @__NO_SIDE_EFFECTS__ */
190
- export const text_currency_converter = (inputs = {}, options = {}) => {
191
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
192
- return /** @type {any} */ (globalThis).__paraglide_ssr.text_currency_converter(inputs)
193
- }
194
- const locale = experimentalStaticLocale ?? options.locale ?? getLocale()
195
- trackMessageCall("text_currency_converter", locale)
196
- if (locale === "ar") return ar_text_currency_converter(inputs)
197
- if (locale === "bg") return bg_text_currency_converter(inputs)
198
- if (locale === "bn") return bn_text_currency_converter(inputs)
199
- if (locale === "ca") return ca_text_currency_converter(inputs)
200
- if (locale === "cs") return cs_text_currency_converter(inputs)
201
- if (locale === "da") return da_text_currency_converter(inputs)
202
- if (locale === "de") return de_text_currency_converter(inputs)
203
- if (locale === "el") return el_text_currency_converter(inputs)
204
- if (locale === "en") return en_text_currency_converter(inputs)
205
- if (locale === "es") return es_text_currency_converter(inputs)
206
- if (locale === "fi") return fi_text_currency_converter(inputs)
207
- if (locale === "fr") return fr_text_currency_converter(inputs)
208
- if (locale === "he") return he_text_currency_converter(inputs)
209
- if (locale === "hi") return hi_text_currency_converter(inputs)
210
- if (locale === "hu") return hu_text_currency_converter(inputs)
211
- if (locale === "id") return id_text_currency_converter(inputs)
212
- if (locale === "it") return it_text_currency_converter(inputs)
213
- if (locale === "ja") return ja_text_currency_converter(inputs)
214
- if (locale === "ko") return ko_text_currency_converter(inputs)
215
- if (locale === "lt") return lt_text_currency_converter(inputs)
216
- if (locale === "lv") return lv_text_currency_converter(inputs)
217
- if (locale === "ms") return ms_text_currency_converter(inputs)
218
- if (locale === "nl") return nl_text_currency_converter(inputs)
219
- if (locale === "no") return no_text_currency_converter(inputs)
220
- if (locale === "pl") return pl_text_currency_converter(inputs)
221
- if (locale === "pt") return pt_text_currency_converter(inputs)
222
- if (locale === "ro") return ro_text_currency_converter(inputs)
223
- if (locale === "ru") return ru_text_currency_converter(inputs)
224
- if (locale === "sk") return sk_text_currency_converter(inputs)
225
- if (locale === "sl") return sl_text_currency_converter(inputs)
226
- if (locale === "sq") return sq_text_currency_converter(inputs)
227
- if (locale === "sr") return sr_text_currency_converter(inputs)
228
- if (locale === "sv") return sv_text_currency_converter(inputs)
229
- if (locale === "sw") return sw_text_currency_converter(inputs)
230
- if (locale === "ta") return ta_text_currency_converter(inputs)
231
- if (locale === "te") return te_text_currency_converter(inputs)
232
- if (locale === "th") return th_text_currency_converter(inputs)
233
- if (locale === "tl") return tl_text_currency_converter(inputs)
234
- if (locale === "tr") return tr_text_currency_converter(inputs)
235
- if (locale === "uk") return uk_text_currency_converter(inputs)
236
- if (locale === "vi") return vi_text_currency_converter(inputs)
237
- if (locale === "zh-CN") return zh_cn2_text_currency_converter(inputs)
238
- return zh_tw2_text_currency_converter(inputs)
239
- };
@@ -1,4 +0,0 @@
1
- export function text_logout(inputs?: {}, options?: {
2
- locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW";
3
- }): LocalizedString;
4
- export type LocalizedString = import("../runtime.js").LocalizedString;
@@ -1,239 +0,0 @@
1
- /* eslint-disable */
2
- import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer, experimentalStaticLocale } from '../runtime.js';
3
- /** @typedef {import('../runtime.js').LocalizedString} LocalizedString */
4
-
5
- const ar_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
6
- return /** @type {LocalizedString} */ (`تسجيل الخروج`)
7
- };
8
-
9
- const bg_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
10
- return /** @type {LocalizedString} */ (`Изход`)
11
- };
12
-
13
- const bn_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
14
- return /** @type {LocalizedString} */ (`লগ আউট`)
15
- };
16
-
17
- const ca_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
18
- return /** @type {LocalizedString} */ (`Tancar sessió`)
19
- };
20
-
21
- const cs_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
22
- return /** @type {LocalizedString} */ (`Odhlásit se`)
23
- };
24
-
25
- const da_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
26
- return /** @type {LocalizedString} */ (`Log ud`)
27
- };
28
-
29
- const de_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
30
- return /** @type {LocalizedString} */ (`Abmelden`)
31
- };
32
-
33
- const el_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
34
- return /** @type {LocalizedString} */ (`Αποσύνδεση`)
35
- };
36
-
37
- const en_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
38
- return /** @type {LocalizedString} */ (`Logout`)
39
- };
40
-
41
- const es_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
42
- return /** @type {LocalizedString} */ (`Cerrar sesión`)
43
- };
44
-
45
- const fi_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
46
- return /** @type {LocalizedString} */ (`Kirjaudu ulos`)
47
- };
48
-
49
- const fr_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
50
- return /** @type {LocalizedString} */ (`Déconnexion`)
51
- };
52
-
53
- const he_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
54
- return /** @type {LocalizedString} */ (`התנתקות`)
55
- };
56
-
57
- const hi_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
58
- return /** @type {LocalizedString} */ (`लॉगआउट`)
59
- };
60
-
61
- const hu_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
62
- return /** @type {LocalizedString} */ (`Kijelentkezés`)
63
- };
64
-
65
- const id_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
66
- return /** @type {LocalizedString} */ (`Keluar`)
67
- };
68
-
69
- const it_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
70
- return /** @type {LocalizedString} */ (`Disconnettersi`)
71
- };
72
-
73
- const ja_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
74
- return /** @type {LocalizedString} */ (`ログアウト`)
75
- };
76
-
77
- const ko_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
78
- return /** @type {LocalizedString} */ (`로그아웃`)
79
- };
80
-
81
- const lt_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
82
- return /** @type {LocalizedString} */ (`Atsijungti`)
83
- };
84
-
85
- const lv_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
86
- return /** @type {LocalizedString} */ (`Izrakstīties`)
87
- };
88
-
89
- const ms_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
90
- return /** @type {LocalizedString} */ (`Log keluar`)
91
- };
92
-
93
- const nl_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
94
- return /** @type {LocalizedString} */ (`Uitloggen`)
95
- };
96
-
97
- const no_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
98
- return /** @type {LocalizedString} */ (`Logg ut`)
99
- };
100
-
101
- const pl_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
102
- return /** @type {LocalizedString} */ (`Wyloguj`)
103
- };
104
-
105
- const pt_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
106
- return /** @type {LocalizedString} */ (`Sair`)
107
- };
108
-
109
- const ro_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
110
- return /** @type {LocalizedString} */ (`Deconectare`)
111
- };
112
-
113
- const ru_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
114
- return /** @type {LocalizedString} */ (`Выйти`)
115
- };
116
-
117
- const sk_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
118
- return /** @type {LocalizedString} */ (`Odhlásiť sa`)
119
- };
120
-
121
- const sl_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
122
- return /** @type {LocalizedString} */ (`Odjava`)
123
- };
124
-
125
- const sq_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
126
- return /** @type {LocalizedString} */ (`Dilni`)
127
- };
128
-
129
- const sr_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
130
- return /** @type {LocalizedString} */ (`Odjavi se`)
131
- };
132
-
133
- const sv_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
134
- return /** @type {LocalizedString} */ (`Logga ut`)
135
- };
136
-
137
- const sw_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
138
- return /** @type {LocalizedString} */ (`Toka`)
139
- };
140
-
141
- const ta_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
142
- return /** @type {LocalizedString} */ (`வெளியேறுதல்`)
143
- };
144
-
145
- const te_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
146
- return /** @type {LocalizedString} */ (`లాగ్అవుట్`)
147
- };
148
-
149
- const th_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
150
- return /** @type {LocalizedString} */ (`ออกจากระบบ`)
151
- };
152
-
153
- const tl_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
154
- return /** @type {LocalizedString} */ (`Mag-logout`)
155
- };
156
-
157
- const tr_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
158
- return /** @type {LocalizedString} */ (`Çıkış Yap`)
159
- };
160
-
161
- const uk_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
162
- return /** @type {LocalizedString} */ (`Вихід`)
163
- };
164
-
165
- const vi_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
166
- return /** @type {LocalizedString} */ (`Đăng xuất`)
167
- };
168
-
169
- const zh_cn2_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
170
- return /** @type {LocalizedString} */ (`登出`)
171
- };
172
-
173
- const zh_tw2_text_logout = /** @type {(inputs: {}) => LocalizedString} */ () => {
174
- return /** @type {LocalizedString} */ (`登出`)
175
- };
176
-
177
- /**
178
- * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
179
- *
180
- * - Changing this function will be over-written by the next build.
181
- *
182
- * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
183
- * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
184
- *
185
- * @param {{}} inputs
186
- * @param {{ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }} options
187
- * @returns {LocalizedString}
188
- */
189
- /* @__NO_SIDE_EFFECTS__ */
190
- export const text_logout = (inputs = {}, options = {}) => {
191
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
192
- return /** @type {any} */ (globalThis).__paraglide_ssr.text_logout(inputs)
193
- }
194
- const locale = experimentalStaticLocale ?? options.locale ?? getLocale()
195
- trackMessageCall("text_logout", locale)
196
- if (locale === "ar") return ar_text_logout(inputs)
197
- if (locale === "bg") return bg_text_logout(inputs)
198
- if (locale === "bn") return bn_text_logout(inputs)
199
- if (locale === "ca") return ca_text_logout(inputs)
200
- if (locale === "cs") return cs_text_logout(inputs)
201
- if (locale === "da") return da_text_logout(inputs)
202
- if (locale === "de") return de_text_logout(inputs)
203
- if (locale === "el") return el_text_logout(inputs)
204
- if (locale === "en") return en_text_logout(inputs)
205
- if (locale === "es") return es_text_logout(inputs)
206
- if (locale === "fi") return fi_text_logout(inputs)
207
- if (locale === "fr") return fr_text_logout(inputs)
208
- if (locale === "he") return he_text_logout(inputs)
209
- if (locale === "hi") return hi_text_logout(inputs)
210
- if (locale === "hu") return hu_text_logout(inputs)
211
- if (locale === "id") return id_text_logout(inputs)
212
- if (locale === "it") return it_text_logout(inputs)
213
- if (locale === "ja") return ja_text_logout(inputs)
214
- if (locale === "ko") return ko_text_logout(inputs)
215
- if (locale === "lt") return lt_text_logout(inputs)
216
- if (locale === "lv") return lv_text_logout(inputs)
217
- if (locale === "ms") return ms_text_logout(inputs)
218
- if (locale === "nl") return nl_text_logout(inputs)
219
- if (locale === "no") return no_text_logout(inputs)
220
- if (locale === "pl") return pl_text_logout(inputs)
221
- if (locale === "pt") return pt_text_logout(inputs)
222
- if (locale === "ro") return ro_text_logout(inputs)
223
- if (locale === "ru") return ru_text_logout(inputs)
224
- if (locale === "sk") return sk_text_logout(inputs)
225
- if (locale === "sl") return sl_text_logout(inputs)
226
- if (locale === "sq") return sq_text_logout(inputs)
227
- if (locale === "sr") return sr_text_logout(inputs)
228
- if (locale === "sv") return sv_text_logout(inputs)
229
- if (locale === "sw") return sw_text_logout(inputs)
230
- if (locale === "ta") return ta_text_logout(inputs)
231
- if (locale === "te") return te_text_logout(inputs)
232
- if (locale === "th") return th_text_logout(inputs)
233
- if (locale === "tl") return tl_text_logout(inputs)
234
- if (locale === "tr") return tr_text_logout(inputs)
235
- if (locale === "uk") return uk_text_logout(inputs)
236
- if (locale === "vi") return vi_text_logout(inputs)
237
- if (locale === "zh-CN") return zh_cn2_text_logout(inputs)
238
- return zh_tw2_text_logout(inputs)
239
- };
@@ -1,4 +0,0 @@
1
- export function text_select_language(inputs?: {}, options?: {
2
- locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW";
3
- }): LocalizedString;
4
- export type LocalizedString = import("../runtime.js").LocalizedString;