@celestia-island/hikari 0.4.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 (187) hide show
  1. package/README.md +54 -0
  2. package/package.json +63 -0
  3. package/src/DemoApp.vue +400 -0
  4. package/src/components/HkActionBar.tsx +15 -0
  5. package/src/components/HkAlert.scss +121 -0
  6. package/src/components/HkAlert.tsx +85 -0
  7. package/src/components/HkAvatar.tsx +29 -0
  8. package/src/components/HkBadge.scss +117 -0
  9. package/src/components/HkBadge.tsx +50 -0
  10. package/src/components/HkBreadcrumb.tsx +39 -0
  11. package/src/components/HkButton.scss +128 -0
  12. package/src/components/HkButton.tsx +74 -0
  13. package/src/components/HkCard.scss +49 -0
  14. package/src/components/HkCard.tsx +38 -0
  15. package/src/components/HkCheckbox.scss +102 -0
  16. package/src/components/HkCheckbox.tsx +85 -0
  17. package/src/components/HkCollapse.tsx +48 -0
  18. package/src/components/HkColorPicker.scss +148 -0
  19. package/src/components/HkColorPicker.tsx +204 -0
  20. package/src/components/HkConfirmDialog.scss +12 -0
  21. package/src/components/HkConfirmDialog.tsx +75 -0
  22. package/src/components/HkDateTimePicker.scss +361 -0
  23. package/src/components/HkDateTimePicker.tsx +424 -0
  24. package/src/components/HkDivider.scss +85 -0
  25. package/src/components/HkDivider.tsx +51 -0
  26. package/src/components/HkDraggableGrid.scss +132 -0
  27. package/src/components/HkDraggableGrid.tsx +291 -0
  28. package/src/components/HkDraggableList.scss +110 -0
  29. package/src/components/HkDraggableList.tsx +238 -0
  30. package/src/components/HkDrawer.scss +175 -0
  31. package/src/components/HkDrawer.tsx +171 -0
  32. package/src/components/HkEmptyState.scss +42 -0
  33. package/src/components/HkEmptyState.tsx +41 -0
  34. package/src/components/HkErrorBoundary.scss +64 -0
  35. package/src/components/HkErrorBoundary.tsx +82 -0
  36. package/src/components/HkGaugeRing.scss +4 -0
  37. package/src/components/HkGaugeRing.tsx +130 -0
  38. package/src/components/HkHoverRevealAction.scss +66 -0
  39. package/src/components/HkHoverRevealAction.tsx +77 -0
  40. package/src/components/HkIcon.tsx +43 -0
  41. package/src/components/HkIconButton.tsx +42 -0
  42. package/src/components/HkImageViewer.scss +33 -0
  43. package/src/components/HkImageViewer.tsx +250 -0
  44. package/src/components/HkInput.scss +172 -0
  45. package/src/components/HkInput.tsx +175 -0
  46. package/src/components/HkKbd.tsx +26 -0
  47. package/src/components/HkKeywordSearchModal.scss +148 -0
  48. package/src/components/HkKeywordSearchModal.tsx +308 -0
  49. package/src/components/HkListTransition.scss +131 -0
  50. package/src/components/HkListTransition.tsx +29 -0
  51. package/src/components/HkLocalePickerPopup.tsx +42 -0
  52. package/src/components/HkLogo.scss +36 -0
  53. package/src/components/HkLogo.tsx +93 -0
  54. package/src/components/HkMarkdownRenderer.scss +141 -0
  55. package/src/components/HkMarkdownRenderer.tsx +123 -0
  56. package/src/components/HkMediaControlBar.scss +65 -0
  57. package/src/components/HkMediaControlBar.tsx +115 -0
  58. package/src/components/HkMediaPlayer.scss +29 -0
  59. package/src/components/HkMediaPlayer.tsx +210 -0
  60. package/src/components/HkMediaSlider.scss +54 -0
  61. package/src/components/HkMediaSlider.tsx +81 -0
  62. package/src/components/HkMediaVisualizer.scss +7 -0
  63. package/src/components/HkMediaVisualizer.tsx +119 -0
  64. package/src/components/HkMinimap.scss +76 -0
  65. package/src/components/HkMinimap.tsx +255 -0
  66. package/src/components/HkModal.scss +318 -0
  67. package/src/components/HkModal.tsx +481 -0
  68. package/src/components/HkModalBreadcrumb.scss +55 -0
  69. package/src/components/HkModalBreadcrumb.tsx +113 -0
  70. package/src/components/HkMorphingTabs.scss +141 -0
  71. package/src/components/HkMorphingTabs.tsx +113 -0
  72. package/src/components/HkNavItem.scss +81 -0
  73. package/src/components/HkNavItem.tsx +157 -0
  74. package/src/components/HkNumberInput.scss +154 -0
  75. package/src/components/HkNumberInput.tsx +161 -0
  76. package/src/components/HkPasswordInput.scss +289 -0
  77. package/src/components/HkPasswordInput.tsx +533 -0
  78. package/src/components/HkPhaseTransition.scss +25 -0
  79. package/src/components/HkPhaseTransition.tsx +40 -0
  80. package/src/components/HkPopover.scss +82 -0
  81. package/src/components/HkPopover.tsx +410 -0
  82. package/src/components/HkPopupSelect.scss +136 -0
  83. package/src/components/HkPopupSelect.tsx +199 -0
  84. package/src/components/HkProgressBar.scss +106 -0
  85. package/src/components/HkProgressBar.tsx +61 -0
  86. package/src/components/HkProgressDialog.tsx +67 -0
  87. package/src/components/HkProgressRing.scss +56 -0
  88. package/src/components/HkProgressRing.tsx +82 -0
  89. package/src/components/HkRadio.scss +119 -0
  90. package/src/components/HkRadio.tsx +75 -0
  91. package/src/components/HkRollingNumber.scss +37 -0
  92. package/src/components/HkRollingNumber.tsx +97 -0
  93. package/src/components/HkScrollContainer.scss +101 -0
  94. package/src/components/HkScrollContainer.tsx +362 -0
  95. package/src/components/HkSearchInput.scss +132 -0
  96. package/src/components/HkSearchInput.tsx +117 -0
  97. package/src/components/HkSelect.scss +143 -0
  98. package/src/components/HkSelect.tsx +230 -0
  99. package/src/components/HkSelectionGrid.scss +177 -0
  100. package/src/components/HkSelectionGrid.tsx +99 -0
  101. package/src/components/HkSelectionWaterfall.scss +93 -0
  102. package/src/components/HkSelectionWaterfall.tsx +90 -0
  103. package/src/components/HkSidebar.scss +81 -0
  104. package/src/components/HkSidebar.tsx +45 -0
  105. package/src/components/HkSkeleton.scss +44 -0
  106. package/src/components/HkSkeleton.tsx +30 -0
  107. package/src/components/HkSkeletonList.tsx +35 -0
  108. package/src/components/HkSpinner.scss +67 -0
  109. package/src/components/HkSpinner.tsx +41 -0
  110. package/src/components/HkSplash.scss +60 -0
  111. package/src/components/HkSplash.tsx +40 -0
  112. package/src/components/HkSwitch.scss +157 -0
  113. package/src/components/HkSwitch.tsx +72 -0
  114. package/src/components/HkTable.scss +198 -0
  115. package/src/components/HkTable.tsx +246 -0
  116. package/src/components/HkTabs.scss +109 -0
  117. package/src/components/HkTabs.tsx +111 -0
  118. package/src/components/HkTag.scss +88 -0
  119. package/src/components/HkTag.tsx +44 -0
  120. package/src/components/HkTextarea.scss +72 -0
  121. package/src/components/HkTextarea.tsx +104 -0
  122. package/src/components/HkTimeline.scss +139 -0
  123. package/src/components/HkTimeline.tsx +95 -0
  124. package/src/components/HkToast.scss +168 -0
  125. package/src/components/HkToast.tsx +175 -0
  126. package/src/components/HkTooltip.scss +47 -0
  127. package/src/components/HkTooltip.tsx +108 -0
  128. package/src/components/HkTree.scss +188 -0
  129. package/src/components/HkTree.tsx +217 -0
  130. package/src/components/HkTrendChart.tsx +180 -0
  131. package/src/components/HkWindowedItem.scss +17 -0
  132. package/src/components/HkWindowedItem.tsx +107 -0
  133. package/src/components/HkZoomToolbar.scss +35 -0
  134. package/src/components/HkZoomToolbar.tsx +69 -0
  135. package/src/composables/useBreakpoint.ts +41 -0
  136. package/src/composables/useClipboard.ts +37 -0
  137. package/src/composables/useConfirm.ts +35 -0
  138. package/src/composables/useProgressDialog.ts +52 -0
  139. package/src/composables/useReportedTransition.ts +69 -0
  140. package/src/composables/useScrollWindow.ts +21 -0
  141. package/src/composables/useToast.ts +2 -0
  142. package/src/demo.scss +24 -0
  143. package/src/demo.ts +22 -0
  144. package/src/env.d.ts +6 -0
  145. package/src/i18n/context.ts +89 -0
  146. package/src/i18n/locales/ar/components.json +43 -0
  147. package/src/i18n/locales/ar/components.toml +40 -0
  148. package/src/i18n/locales/de/components.json +43 -0
  149. package/src/i18n/locales/de/components.toml +40 -0
  150. package/src/i18n/locales/en/components.json +43 -0
  151. package/src/i18n/locales/en/components.toml +40 -0
  152. package/src/i18n/locales/es/components.json +43 -0
  153. package/src/i18n/locales/es/components.toml +40 -0
  154. package/src/i18n/locales/fr/components.json +43 -0
  155. package/src/i18n/locales/fr/components.toml +40 -0
  156. package/src/i18n/locales/ja/components.json +43 -0
  157. package/src/i18n/locales/ja/components.toml +40 -0
  158. package/src/i18n/locales/ko/components.json +43 -0
  159. package/src/i18n/locales/ko/components.toml +40 -0
  160. package/src/i18n/locales/pt/components.json +43 -0
  161. package/src/i18n/locales/pt/components.toml +40 -0
  162. package/src/i18n/locales/ru/components.json +43 -0
  163. package/src/i18n/locales/ru/components.toml +40 -0
  164. package/src/i18n/locales/zh-Hans/components.json +43 -0
  165. package/src/i18n/locales/zh-Hans/components.toml +40 -0
  166. package/src/i18n/locales/zh-Hant/components.json +43 -0
  167. package/src/i18n/locales/zh-Hant/components.toml +40 -0
  168. package/src/index.ts +137 -0
  169. package/src/render.ts +18 -0
  170. package/src/runtime/animationBus.ts +278 -0
  171. package/src/runtime/cronBus.ts +25 -0
  172. package/src/runtime/index.ts +12 -0
  173. package/src/runtime/useAsyncData.ts +30 -0
  174. package/src/runtime/useBreakpoint.ts +62 -0
  175. package/src/runtime/useClipboard.ts +37 -0
  176. package/src/runtime/useConfirm.ts +35 -0
  177. package/src/runtime/useOverlay.ts +82 -0
  178. package/src/runtime/usePopupManager.ts +89 -0
  179. package/src/runtime/useToast.ts +140 -0
  180. package/src/styles/index.scss +10 -0
  181. package/src/theme/index.ts +5 -0
  182. package/src/theme/presets.ts +307 -0
  183. package/src/theme/theme.scss +17 -0
  184. package/src/theme/useBackgroundLuminance.ts +145 -0
  185. package/src/theme/useSolarTime.ts +101 -0
  186. package/src/theme/useTheme.ts +141 -0
  187. package/src/tokens.scss +26 -0
package/src/demo.ts ADDED
@@ -0,0 +1,22 @@
1
+ import './demo.scss'
2
+ import { createApp } from 'vue'
3
+ import { initTheme } from './theme/useTheme'
4
+ import * as hikari from './index'
5
+
6
+ localStorage.setItem('hikari-theme', 'tokyonight')
7
+ initTheme()
8
+
9
+ const tpl = (window as any).__HIKARI_TPL__
10
+ if (tpl) {
11
+ const app = createApp({ template: tpl })
12
+ for (const [name, comp] of Object.entries(hikari)) {
13
+ if (name.startsWith('H') && typeof comp === 'object') {
14
+ app.component(name, comp as any)
15
+ }
16
+ }
17
+ app.mount('#app')
18
+ } else {
19
+ import('./DemoApp.vue').then(m => {
20
+ createApp(m.default).mount('#app')
21
+ })
22
+ }
package/src/env.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ /// <reference types="vite/client" />
2
+ declare module "*.vue" {
3
+ import type { DefineComponent } from "vue";
4
+ const component: DefineComponent<{}, {}, any>;
5
+ export default component;
6
+ }
@@ -0,0 +1,89 @@
1
+ import { reactive } from "vue";
2
+
3
+ type Messages = Record<string, string>;
4
+
5
+ interface LocaleModule {
6
+ default: Record<string, Messages>;
7
+ }
8
+
9
+ const localeModules = import.meta.glob<LocaleModule>(
10
+ "./locales/**/*.json",
11
+ { eager: true },
12
+ );
13
+
14
+ function buildLocaleMessages(locale: string): Messages {
15
+ const prefix = `./locales/${locale}/`;
16
+ const merged: Messages = {};
17
+
18
+ for (const [path, mod] of Object.entries(localeModules)) {
19
+ if (!path.startsWith(prefix)) continue;
20
+ const domain = mod.default;
21
+ for (const [_section, keys] of Object.entries(domain)) {
22
+ if (typeof keys === "object" && keys !== null) {
23
+ Object.assign(merged, keys);
24
+ }
25
+ }
26
+ }
27
+
28
+ return merged;
29
+ }
30
+
31
+ const enFallback: Messages = buildLocaleMessages("en");
32
+
33
+ const state = reactive({
34
+ locale: "en",
35
+ messages: { ...enFallback } as Messages,
36
+ });
37
+
38
+ const localeCache = new Map<string, Messages>();
39
+ localeCache.set("en", enFallback);
40
+
41
+ // Merged-in messages survive locale switches (plana, apps register here).
42
+ // Stored per-locale so layer-2 components can register translations for
43
+ // every language without knowing which locale is currently active.
44
+ let mergedMessages: Record<string, Messages> = {};
45
+
46
+ export async function setLocale(locale: string): Promise<void> {
47
+ if (!localeCache.has(locale)) {
48
+ localeCache.set(locale, buildLocaleMessages(locale));
49
+ }
50
+ state.locale = locale;
51
+ state.messages = {
52
+ ...enFallback,
53
+ ...localeCache.get(locale)!,
54
+ ...(mergedMessages["en"] ?? {}),
55
+ ...(mergedMessages[locale] ?? {}),
56
+ };
57
+ }
58
+
59
+ export function mergeMessages(userMessages: Messages, locale?: string): void {
60
+ if (locale) {
61
+ mergedMessages[locale] = { ...(mergedMessages[locale] ?? {}), ...userMessages };
62
+ } else {
63
+ // Backward-compatible: no locale = merge into every locale bucket
64
+ for (const loc of Object.keys(mergedMessages)) {
65
+ mergedMessages[loc] = { ...mergedMessages[loc], ...userMessages };
66
+ }
67
+ // Also set for current locale
68
+ mergedMessages[state.locale] = { ...(mergedMessages[state.locale] ?? {}), ...userMessages };
69
+ }
70
+ state.messages = {
71
+ ...enFallback,
72
+ ...(localeCache.get(state.locale) ?? {}),
73
+ ...(mergedMessages["en"] ?? {}),
74
+ ...(mergedMessages[state.locale] ?? {}),
75
+ };
76
+ }
77
+
78
+ export function useI18n() {
79
+ function t(key: string, fallback?: string): string {
80
+ return (
81
+ state.messages[key] ??
82
+ enFallback[key] ??
83
+ fallback ??
84
+ key
85
+ );
86
+ }
87
+
88
+ return { t, locale: state.locale };
89
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "components": {
3
+ "hikari::adminHeader.logout": "Logout",
4
+ "hikari::adminHeader.login": "Login",
5
+ "hikari::adminHeader.toggleTheme": "Toggle theme",
6
+ "hikari::errorBoundary.title": "Component Error",
7
+ "hikari::errorBoundary.copyError": "Copy Error",
8
+ "hikari::errorBoundary.retry": "Retry",
9
+ "hikari::searchInput.placeholder": "Search…",
10
+ "hikari::searchInput.clear": "Clear search",
11
+ "hikari::keywordSearch.title": "Search",
12
+ "hikari::keywordSearch.placeholder": "Search…",
13
+ "hikari::keywordSearch.searching": "Searching…",
14
+ "hikari::keywordSearch.noMatches": "No matches",
15
+ "hikari::keywordSearch.clear": "Clear",
16
+ "hikari::dateTimePicker.pickDate": "Pick a date and time",
17
+ "hikari::dateTimePicker.today": "Today",
18
+ "hikari::dateTimePicker.hour": "Hour",
19
+ "hikari::dateTimePicker.minute": "Minute",
20
+ "hikari::dateTimePicker.back": "Back",
21
+ "hikari::dateTimePicker.prevYears": "Previous years",
22
+ "hikari::dateTimePicker.nextYears": "Next years",
23
+ "hikari::dateTimePicker.prevMonth": "Previous month",
24
+ "hikari::dateTimePicker.nextMonth": "Next month",
25
+ "hikari::modal.close": "Close",
26
+ "hikari::alert.close": "Close",
27
+ "hikari::drawer.close": "Close",
28
+ "hikari::breadcrumb.label": "Breadcrumb",
29
+ "hikari::logo.fallbackAlt": "Logo",
30
+ "hikari::table.noData": "No data",
31
+ "hikari::confirmDialog.cancel": "Cancel",
32
+ "hikari::confirmDialog.confirm": "Confirm",
33
+ "hikari::passwordInput.passwordEntered": "Password entered",
34
+ "hikari::passwordInput.allSelected": "All selected",
35
+ "hikari::passwordInput.capsLock": "Caps Lock is on",
36
+ "hikari::passwordInput.fullWidth": "Full-width characters not allowed",
37
+ "hikari::toast.copy": "Copy",
38
+ "hikari::toast.close": "Close",
39
+ "hikari::modal.auto": "Auto",
40
+ "hikari::scrollContainer.auto": "Auto",
41
+ "hikari::avatar.fallback": "?"
42
+ }
43
+ }
@@ -0,0 +1,40 @@
1
+ [components]
2
+ hk.adminHeader.logout = "Logout"
3
+ hk.adminHeader.login = "Login"
4
+ hk.adminHeader.toggleTheme = "Toggle theme"
5
+ hk.errorBoundary.title = "Component Error"
6
+ hk.errorBoundary.copyError = "Copy Error"
7
+ hk.errorBoundary.retry = "Retry"
8
+ hk.searchInput.placeholder = "Search…"
9
+ hk.searchInput.clear = "Clear search"
10
+ hk.keywordSearch.title = "Search"
11
+ hk.keywordSearch.placeholder = "Search…"
12
+ hk.keywordSearch.searching = "Searching…"
13
+ hk.keywordSearch.noMatches = "No matches"
14
+ hk.keywordSearch.clear = "Clear"
15
+ hk.dateTimePicker.pickDate = "Pick a date and time"
16
+ hk.dateTimePicker.today = "Today"
17
+ hk.dateTimePicker.hour = "Hour"
18
+ hk.dateTimePicker.minute = "Minute"
19
+ hk.dateTimePicker.back = "Back"
20
+ hk.dateTimePicker.prevYears = "Previous years"
21
+ hk.dateTimePicker.nextYears = "Next years"
22
+ hk.dateTimePicker.prevMonth = "Previous month"
23
+ hk.dateTimePicker.nextMonth = "Next month"
24
+ hk.modal.close = "Close"
25
+ hk.alert.close = "Close"
26
+ hk.drawer.close = "Close"
27
+ hk.breadcrumb.label = "Breadcrumb"
28
+ hk.logo.fallbackAlt = "Logo"
29
+ hk.table.noData = "No data"
30
+ hk.confirmDialog.cancel = "Cancel"
31
+ hk.confirmDialog.confirm = "Confirm"
32
+ hk.passwordInput.passwordEntered = "Password entered"
33
+ hk.passwordInput.allSelected = "All selected"
34
+ hk.passwordInput.capsLock = "Caps Lock is on"
35
+ hk.passwordInput.fullWidth = "Full-width characters not allowed"
36
+ hk.toast.copy = "Copy"
37
+ hk.toast.close = "Close"
38
+ hk.modal.auto = "Auto"
39
+ hk.scrollContainer.auto = "Auto"
40
+ hk.avatar.fallback = "?"
@@ -0,0 +1,43 @@
1
+ {
2
+ "components": {
3
+ "hikari::adminHeader.logout": "Logout",
4
+ "hikari::adminHeader.login": "Login",
5
+ "hikari::adminHeader.toggleTheme": "Toggle theme",
6
+ "hikari::errorBoundary.title": "Component Error",
7
+ "hikari::errorBoundary.copyError": "Copy Error",
8
+ "hikari::errorBoundary.retry": "Retry",
9
+ "hikari::searchInput.placeholder": "Search…",
10
+ "hikari::searchInput.clear": "Clear search",
11
+ "hikari::keywordSearch.title": "Search",
12
+ "hikari::keywordSearch.placeholder": "Search…",
13
+ "hikari::keywordSearch.searching": "Searching…",
14
+ "hikari::keywordSearch.noMatches": "No matches",
15
+ "hikari::keywordSearch.clear": "Clear",
16
+ "hikari::dateTimePicker.pickDate": "Pick a date and time",
17
+ "hikari::dateTimePicker.today": "Today",
18
+ "hikari::dateTimePicker.hour": "Hour",
19
+ "hikari::dateTimePicker.minute": "Minute",
20
+ "hikari::dateTimePicker.back": "Back",
21
+ "hikari::dateTimePicker.prevYears": "Previous years",
22
+ "hikari::dateTimePicker.nextYears": "Next years",
23
+ "hikari::dateTimePicker.prevMonth": "Previous month",
24
+ "hikari::dateTimePicker.nextMonth": "Next month",
25
+ "hikari::modal.close": "Close",
26
+ "hikari::alert.close": "Close",
27
+ "hikari::drawer.close": "Close",
28
+ "hikari::breadcrumb.label": "Breadcrumb",
29
+ "hikari::logo.fallbackAlt": "Logo",
30
+ "hikari::table.noData": "No data",
31
+ "hikari::confirmDialog.cancel": "Cancel",
32
+ "hikari::confirmDialog.confirm": "Confirm",
33
+ "hikari::passwordInput.passwordEntered": "Password entered",
34
+ "hikari::passwordInput.allSelected": "All selected",
35
+ "hikari::passwordInput.capsLock": "Caps Lock is on",
36
+ "hikari::passwordInput.fullWidth": "Full-width characters not allowed",
37
+ "hikari::toast.copy": "Copy",
38
+ "hikari::toast.close": "Close",
39
+ "hikari::modal.auto": "Auto",
40
+ "hikari::scrollContainer.auto": "Auto",
41
+ "hikari::avatar.fallback": "?"
42
+ }
43
+ }
@@ -0,0 +1,40 @@
1
+ [components]
2
+ hk.adminHeader.logout = "Logout"
3
+ hk.adminHeader.login = "Login"
4
+ hk.adminHeader.toggleTheme = "Toggle theme"
5
+ hk.errorBoundary.title = "Component Error"
6
+ hk.errorBoundary.copyError = "Copy Error"
7
+ hk.errorBoundary.retry = "Retry"
8
+ hk.searchInput.placeholder = "Search…"
9
+ hk.searchInput.clear = "Clear search"
10
+ hk.keywordSearch.title = "Search"
11
+ hk.keywordSearch.placeholder = "Search…"
12
+ hk.keywordSearch.searching = "Searching…"
13
+ hk.keywordSearch.noMatches = "No matches"
14
+ hk.keywordSearch.clear = "Clear"
15
+ hk.dateTimePicker.pickDate = "Pick a date and time"
16
+ hk.dateTimePicker.today = "Today"
17
+ hk.dateTimePicker.hour = "Hour"
18
+ hk.dateTimePicker.minute = "Minute"
19
+ hk.dateTimePicker.back = "Back"
20
+ hk.dateTimePicker.prevYears = "Previous years"
21
+ hk.dateTimePicker.nextYears = "Next years"
22
+ hk.dateTimePicker.prevMonth = "Previous month"
23
+ hk.dateTimePicker.nextMonth = "Next month"
24
+ hk.modal.close = "Close"
25
+ hk.alert.close = "Close"
26
+ hk.drawer.close = "Close"
27
+ hk.breadcrumb.label = "Breadcrumb"
28
+ hk.logo.fallbackAlt = "Logo"
29
+ hk.table.noData = "No data"
30
+ hk.confirmDialog.cancel = "Cancel"
31
+ hk.confirmDialog.confirm = "Confirm"
32
+ hk.passwordInput.passwordEntered = "Password entered"
33
+ hk.passwordInput.allSelected = "All selected"
34
+ hk.passwordInput.capsLock = "Caps Lock is on"
35
+ hk.passwordInput.fullWidth = "Full-width characters not allowed"
36
+ hk.toast.copy = "Copy"
37
+ hk.toast.close = "Close"
38
+ hk.modal.auto = "Auto"
39
+ hk.scrollContainer.auto = "Auto"
40
+ hk.avatar.fallback = "?"
@@ -0,0 +1,43 @@
1
+ {
2
+ "components": {
3
+ "hikari::adminHeader.logout": "Logout",
4
+ "hikari::adminHeader.login": "Login",
5
+ "hikari::adminHeader.toggleTheme": "Toggle theme",
6
+ "hikari::errorBoundary.title": "Component Error",
7
+ "hikari::errorBoundary.copyError": "Copy Error",
8
+ "hikari::errorBoundary.retry": "Retry",
9
+ "hikari::searchInput.placeholder": "Search…",
10
+ "hikari::searchInput.clear": "Clear search",
11
+ "hikari::keywordSearch.title": "Search",
12
+ "hikari::keywordSearch.placeholder": "Search…",
13
+ "hikari::keywordSearch.searching": "Searching…",
14
+ "hikari::keywordSearch.noMatches": "No matches",
15
+ "hikari::keywordSearch.clear": "Clear",
16
+ "hikari::dateTimePicker.pickDate": "Pick a date and time",
17
+ "hikari::dateTimePicker.today": "Today",
18
+ "hikari::dateTimePicker.hour": "Hour",
19
+ "hikari::dateTimePicker.minute": "Minute",
20
+ "hikari::dateTimePicker.back": "Back",
21
+ "hikari::dateTimePicker.prevYears": "Previous years",
22
+ "hikari::dateTimePicker.nextYears": "Next years",
23
+ "hikari::dateTimePicker.prevMonth": "Previous month",
24
+ "hikari::dateTimePicker.nextMonth": "Next month",
25
+ "hikari::modal.close": "Close",
26
+ "hikari::alert.close": "Close",
27
+ "hikari::drawer.close": "Close",
28
+ "hikari::breadcrumb.label": "Breadcrumb",
29
+ "hikari::logo.fallbackAlt": "Logo",
30
+ "hikari::table.noData": "No data",
31
+ "hikari::confirmDialog.cancel": "Cancel",
32
+ "hikari::confirmDialog.confirm": "Confirm",
33
+ "hikari::passwordInput.passwordEntered": "Password entered",
34
+ "hikari::passwordInput.allSelected": "All selected",
35
+ "hikari::passwordInput.capsLock": "Caps Lock is on",
36
+ "hikari::passwordInput.fullWidth": "Full-width characters not allowed",
37
+ "hikari::toast.copy": "Copy",
38
+ "hikari::toast.close": "Close",
39
+ "hikari::modal.auto": "Auto",
40
+ "hikari::scrollContainer.auto": "Auto",
41
+ "hikari::avatar.fallback": "?"
42
+ }
43
+ }
@@ -0,0 +1,40 @@
1
+ [components]
2
+ hk.adminHeader.logout = "Logout"
3
+ hk.adminHeader.login = "Login"
4
+ hk.adminHeader.toggleTheme = "Toggle theme"
5
+ hk.errorBoundary.title = "Component Error"
6
+ hk.errorBoundary.copyError = "Copy Error"
7
+ hk.errorBoundary.retry = "Retry"
8
+ hk.searchInput.placeholder = "Search…"
9
+ hk.searchInput.clear = "Clear search"
10
+ hk.keywordSearch.title = "Search"
11
+ hk.keywordSearch.placeholder = "Search…"
12
+ hk.keywordSearch.searching = "Searching…"
13
+ hk.keywordSearch.noMatches = "No matches"
14
+ hk.keywordSearch.clear = "Clear"
15
+ hk.dateTimePicker.pickDate = "Pick a date and time"
16
+ hk.dateTimePicker.today = "Today"
17
+ hk.dateTimePicker.hour = "Hour"
18
+ hk.dateTimePicker.minute = "Minute"
19
+ hk.dateTimePicker.back = "Back"
20
+ hk.dateTimePicker.prevYears = "Previous years"
21
+ hk.dateTimePicker.nextYears = "Next years"
22
+ hk.dateTimePicker.prevMonth = "Previous month"
23
+ hk.dateTimePicker.nextMonth = "Next month"
24
+ hk.modal.close = "Close"
25
+ hk.alert.close = "Close"
26
+ hk.drawer.close = "Close"
27
+ hk.breadcrumb.label = "Breadcrumb"
28
+ hk.logo.fallbackAlt = "Logo"
29
+ hk.table.noData = "No data"
30
+ hk.confirmDialog.cancel = "Cancel"
31
+ hk.confirmDialog.confirm = "Confirm"
32
+ hk.passwordInput.passwordEntered = "Password entered"
33
+ hk.passwordInput.allSelected = "All selected"
34
+ hk.passwordInput.capsLock = "Caps Lock is on"
35
+ hk.passwordInput.fullWidth = "Full-width characters not allowed"
36
+ hk.toast.copy = "Copy"
37
+ hk.toast.close = "Close"
38
+ hk.modal.auto = "Auto"
39
+ hk.scrollContainer.auto = "Auto"
40
+ hk.avatar.fallback = "?"
@@ -0,0 +1,43 @@
1
+ {
2
+ "components": {
3
+ "hikari::adminHeader.logout": "Logout",
4
+ "hikari::adminHeader.login": "Login",
5
+ "hikari::adminHeader.toggleTheme": "Toggle theme",
6
+ "hikari::errorBoundary.title": "Component Error",
7
+ "hikari::errorBoundary.copyError": "Copy Error",
8
+ "hikari::errorBoundary.retry": "Retry",
9
+ "hikari::searchInput.placeholder": "Search…",
10
+ "hikari::searchInput.clear": "Clear search",
11
+ "hikari::keywordSearch.title": "Search",
12
+ "hikari::keywordSearch.placeholder": "Search…",
13
+ "hikari::keywordSearch.searching": "Searching…",
14
+ "hikari::keywordSearch.noMatches": "No matches",
15
+ "hikari::keywordSearch.clear": "Clear",
16
+ "hikari::dateTimePicker.pickDate": "Pick a date and time",
17
+ "hikari::dateTimePicker.today": "Today",
18
+ "hikari::dateTimePicker.hour": "Hour",
19
+ "hikari::dateTimePicker.minute": "Minute",
20
+ "hikari::dateTimePicker.back": "Back",
21
+ "hikari::dateTimePicker.prevYears": "Previous years",
22
+ "hikari::dateTimePicker.nextYears": "Next years",
23
+ "hikari::dateTimePicker.prevMonth": "Previous month",
24
+ "hikari::dateTimePicker.nextMonth": "Next month",
25
+ "hikari::modal.close": "Close",
26
+ "hikari::alert.close": "Close",
27
+ "hikari::drawer.close": "Close",
28
+ "hikari::breadcrumb.label": "Breadcrumb",
29
+ "hikari::logo.fallbackAlt": "Logo",
30
+ "hikari::table.noData": "No data",
31
+ "hikari::confirmDialog.cancel": "Cancel",
32
+ "hikari::confirmDialog.confirm": "Confirm",
33
+ "hikari::passwordInput.passwordEntered": "Password entered",
34
+ "hikari::passwordInput.allSelected": "All selected",
35
+ "hikari::passwordInput.capsLock": "Caps Lock is on",
36
+ "hikari::passwordInput.fullWidth": "Full-width characters not allowed",
37
+ "hikari::toast.copy": "Copy",
38
+ "hikari::toast.close": "Close",
39
+ "hikari::modal.auto": "Auto",
40
+ "hikari::scrollContainer.auto": "Auto",
41
+ "hikari::avatar.fallback": "?"
42
+ }
43
+ }
@@ -0,0 +1,40 @@
1
+ [components]
2
+ hk.adminHeader.logout = "Logout"
3
+ hk.adminHeader.login = "Login"
4
+ hk.adminHeader.toggleTheme = "Toggle theme"
5
+ hk.errorBoundary.title = "Component Error"
6
+ hk.errorBoundary.copyError = "Copy Error"
7
+ hk.errorBoundary.retry = "Retry"
8
+ hk.searchInput.placeholder = "Search…"
9
+ hk.searchInput.clear = "Clear search"
10
+ hk.keywordSearch.title = "Search"
11
+ hk.keywordSearch.placeholder = "Search…"
12
+ hk.keywordSearch.searching = "Searching…"
13
+ hk.keywordSearch.noMatches = "No matches"
14
+ hk.keywordSearch.clear = "Clear"
15
+ hk.dateTimePicker.pickDate = "Pick a date and time"
16
+ hk.dateTimePicker.today = "Today"
17
+ hk.dateTimePicker.hour = "Hour"
18
+ hk.dateTimePicker.minute = "Minute"
19
+ hk.dateTimePicker.back = "Back"
20
+ hk.dateTimePicker.prevYears = "Previous years"
21
+ hk.dateTimePicker.nextYears = "Next years"
22
+ hk.dateTimePicker.prevMonth = "Previous month"
23
+ hk.dateTimePicker.nextMonth = "Next month"
24
+ hk.modal.close = "Close"
25
+ hk.alert.close = "Close"
26
+ hk.drawer.close = "Close"
27
+ hk.breadcrumb.label = "Breadcrumb"
28
+ hk.logo.fallbackAlt = "Logo"
29
+ hk.table.noData = "No data"
30
+ hk.confirmDialog.cancel = "Cancel"
31
+ hk.confirmDialog.confirm = "Confirm"
32
+ hk.passwordInput.passwordEntered = "Password entered"
33
+ hk.passwordInput.allSelected = "All selected"
34
+ hk.passwordInput.capsLock = "Caps Lock is on"
35
+ hk.passwordInput.fullWidth = "Full-width characters not allowed"
36
+ hk.toast.copy = "Copy"
37
+ hk.toast.close = "Close"
38
+ hk.modal.auto = "Auto"
39
+ hk.scrollContainer.auto = "Auto"
40
+ hk.avatar.fallback = "?"
@@ -0,0 +1,43 @@
1
+ {
2
+ "components": {
3
+ "hikari::adminHeader.logout": "Logout",
4
+ "hikari::adminHeader.login": "Login",
5
+ "hikari::adminHeader.toggleTheme": "Toggle theme",
6
+ "hikari::errorBoundary.title": "Component Error",
7
+ "hikari::errorBoundary.copyError": "Copy Error",
8
+ "hikari::errorBoundary.retry": "Retry",
9
+ "hikari::searchInput.placeholder": "Search…",
10
+ "hikari::searchInput.clear": "Clear search",
11
+ "hikari::keywordSearch.title": "Search",
12
+ "hikari::keywordSearch.placeholder": "Search…",
13
+ "hikari::keywordSearch.searching": "Searching…",
14
+ "hikari::keywordSearch.noMatches": "No matches",
15
+ "hikari::keywordSearch.clear": "Clear",
16
+ "hikari::dateTimePicker.pickDate": "Pick a date and time",
17
+ "hikari::dateTimePicker.today": "Today",
18
+ "hikari::dateTimePicker.hour": "Hour",
19
+ "hikari::dateTimePicker.minute": "Minute",
20
+ "hikari::dateTimePicker.back": "Back",
21
+ "hikari::dateTimePicker.prevYears": "Previous years",
22
+ "hikari::dateTimePicker.nextYears": "Next years",
23
+ "hikari::dateTimePicker.prevMonth": "Previous month",
24
+ "hikari::dateTimePicker.nextMonth": "Next month",
25
+ "hikari::modal.close": "Close",
26
+ "hikari::alert.close": "Close",
27
+ "hikari::drawer.close": "Close",
28
+ "hikari::breadcrumb.label": "Breadcrumb",
29
+ "hikari::logo.fallbackAlt": "Logo",
30
+ "hikari::table.noData": "No data",
31
+ "hikari::confirmDialog.cancel": "Cancel",
32
+ "hikari::confirmDialog.confirm": "Confirm",
33
+ "hikari::passwordInput.passwordEntered": "Password entered",
34
+ "hikari::passwordInput.allSelected": "All selected",
35
+ "hikari::passwordInput.capsLock": "Caps Lock is on",
36
+ "hikari::passwordInput.fullWidth": "Full-width characters not allowed",
37
+ "hikari::toast.copy": "Copy",
38
+ "hikari::toast.close": "Close",
39
+ "hikari::modal.auto": "Auto",
40
+ "hikari::scrollContainer.auto": "Auto",
41
+ "hikari::avatar.fallback": "?"
42
+ }
43
+ }
@@ -0,0 +1,40 @@
1
+ [components]
2
+ hk.adminHeader.logout = "Logout"
3
+ hk.adminHeader.login = "Login"
4
+ hk.adminHeader.toggleTheme = "Toggle theme"
5
+ hk.errorBoundary.title = "Component Error"
6
+ hk.errorBoundary.copyError = "Copy Error"
7
+ hk.errorBoundary.retry = "Retry"
8
+ hk.searchInput.placeholder = "Search…"
9
+ hk.searchInput.clear = "Clear search"
10
+ hk.keywordSearch.title = "Search"
11
+ hk.keywordSearch.placeholder = "Search…"
12
+ hk.keywordSearch.searching = "Searching…"
13
+ hk.keywordSearch.noMatches = "No matches"
14
+ hk.keywordSearch.clear = "Clear"
15
+ hk.dateTimePicker.pickDate = "Pick a date and time"
16
+ hk.dateTimePicker.today = "Today"
17
+ hk.dateTimePicker.hour = "Hour"
18
+ hk.dateTimePicker.minute = "Minute"
19
+ hk.dateTimePicker.back = "Back"
20
+ hk.dateTimePicker.prevYears = "Previous years"
21
+ hk.dateTimePicker.nextYears = "Next years"
22
+ hk.dateTimePicker.prevMonth = "Previous month"
23
+ hk.dateTimePicker.nextMonth = "Next month"
24
+ hk.modal.close = "Close"
25
+ hk.alert.close = "Close"
26
+ hk.drawer.close = "Close"
27
+ hk.breadcrumb.label = "Breadcrumb"
28
+ hk.logo.fallbackAlt = "Logo"
29
+ hk.table.noData = "No data"
30
+ hk.confirmDialog.cancel = "Cancel"
31
+ hk.confirmDialog.confirm = "Confirm"
32
+ hk.passwordInput.passwordEntered = "Password entered"
33
+ hk.passwordInput.allSelected = "All selected"
34
+ hk.passwordInput.capsLock = "Caps Lock is on"
35
+ hk.passwordInput.fullWidth = "Full-width characters not allowed"
36
+ hk.toast.copy = "Copy"
37
+ hk.toast.close = "Close"
38
+ hk.modal.auto = "Auto"
39
+ hk.scrollContainer.auto = "Auto"
40
+ hk.avatar.fallback = "?"
@@ -0,0 +1,43 @@
1
+ {
2
+ "components": {
3
+ "hikari::adminHeader.logout": "ログアウト",
4
+ "hikari::adminHeader.login": "ログイン",
5
+ "hikari::adminHeader.toggleTheme": "テーマ切替",
6
+ "hikari::errorBoundary.title": "コンポーネントエラー",
7
+ "hikari::errorBoundary.copyError": "エラーをコピー",
8
+ "hikari::errorBoundary.retry": "再試行",
9
+ "hikari::searchInput.placeholder": "検索…",
10
+ "hikari::searchInput.clear": "検索をクリア",
11
+ "hikari::keywordSearch.title": "検索",
12
+ "hikari::keywordSearch.placeholder": "検索…",
13
+ "hikari::keywordSearch.searching": "検索中…",
14
+ "hikari::keywordSearch.noMatches": "一致なし",
15
+ "hikari::keywordSearch.clear": "クリア",
16
+ "hikari::dateTimePicker.pickDate": "日時を選択",
17
+ "hikari::dateTimePicker.today": "今日",
18
+ "hikari::dateTimePicker.hour": "時",
19
+ "hikari::dateTimePicker.minute": "分",
20
+ "hikari::dateTimePicker.back": "戻る",
21
+ "hikari::dateTimePicker.prevYears": "前年",
22
+ "hikari::dateTimePicker.nextYears": "翌年",
23
+ "hikari::dateTimePicker.prevMonth": "前月",
24
+ "hikari::dateTimePicker.nextMonth": "翌月",
25
+ "hikari::modal.close": "閉じる",
26
+ "hikari::alert.close": "閉じる",
27
+ "hikari::drawer.close": "閉じる",
28
+ "hikari::breadcrumb.label": "パンくず",
29
+ "hikari::logo.fallbackAlt": "ロゴ",
30
+ "hikari::table.noData": "データなし",
31
+ "hikari::confirmDialog.cancel": "キャンセル",
32
+ "hikari::confirmDialog.confirm": "確認",
33
+ "hikari::passwordInput.passwordEntered": "パスワード入力済み",
34
+ "hikari::passwordInput.allSelected": "全選択",
35
+ "hikari::passwordInput.capsLock": "CapsLock オン",
36
+ "hikari::passwordInput.fullWidth": "全角文字不可",
37
+ "hikari::toast.copy": "コピー",
38
+ "hikari::toast.close": "閉じる",
39
+ "hikari::modal.auto": "自動",
40
+ "hikari::scrollContainer.auto": "自動",
41
+ "hikari::avatar.fallback": "?"
42
+ }
43
+ }
@@ -0,0 +1,40 @@
1
+ [components]
2
+ hk.adminHeader.logout = "ログアウト"
3
+ hk.adminHeader.login = "ログイン"
4
+ hk.adminHeader.toggleTheme = "テーマ切替"
5
+ hk.errorBoundary.title = "コンポーネントエラー"
6
+ hk.errorBoundary.copyError = "エラーをコピー"
7
+ hk.errorBoundary.retry = "再試行"
8
+ hk.searchInput.placeholder = "検索…"
9
+ hk.searchInput.clear = "検索をクリア"
10
+ hk.keywordSearch.title = "検索"
11
+ hk.keywordSearch.placeholder = "検索…"
12
+ hk.keywordSearch.searching = "検索中…"
13
+ hk.keywordSearch.noMatches = "一致なし"
14
+ hk.keywordSearch.clear = "クリア"
15
+ hk.dateTimePicker.pickDate = "日時を選択"
16
+ hk.dateTimePicker.today = "今日"
17
+ hk.dateTimePicker.hour = "時"
18
+ hk.dateTimePicker.minute = "分"
19
+ hk.dateTimePicker.back = "戻る"
20
+ hk.dateTimePicker.prevYears = "前年"
21
+ hk.dateTimePicker.nextYears = "翌年"
22
+ hk.dateTimePicker.prevMonth = "前月"
23
+ hk.dateTimePicker.nextMonth = "翌月"
24
+ hk.modal.close = "閉じる"
25
+ hk.alert.close = "閉じる"
26
+ hk.drawer.close = "閉じる"
27
+ hk.breadcrumb.label = "パンくず"
28
+ hk.logo.fallbackAlt = "ロゴ"
29
+ hk.table.noData = "データなし"
30
+ hk.confirmDialog.cancel = "キャンセル"
31
+ hk.confirmDialog.confirm = "確認"
32
+ hk.passwordInput.passwordEntered = "パスワード入力済み"
33
+ hk.passwordInput.allSelected = "全選択"
34
+ hk.passwordInput.capsLock = "CapsLock オン"
35
+ hk.passwordInput.fullWidth = "全角文字不可"
36
+ hk.toast.copy = "コピー"
37
+ hk.toast.close = "閉じる"
38
+ hk.modal.auto = "自動"
39
+ hk.scrollContainer.auto = "自動"
40
+ hk.avatar.fallback = "?"