@urbicon-ui/table 6.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. package/README.md +153 -0
  2. package/dist/cells/ActionButtons.svelte +224 -0
  3. package/dist/cells/ActionButtons.svelte.d.ts +74 -0
  4. package/dist/cells/CopyButton.svelte +89 -0
  5. package/dist/cells/CopyButton.svelte.d.ts +33 -0
  6. package/dist/cells/CustomCell.svelte +136 -0
  7. package/dist/cells/CustomCell.svelte.d.ts +44 -0
  8. package/dist/cells/DateCell.svelte +194 -0
  9. package/dist/cells/DateCell.svelte.d.ts +39 -0
  10. package/dist/cells/LinkCell.svelte +240 -0
  11. package/dist/cells/LinkCell.svelte.d.ts +42 -0
  12. package/dist/cells/NumberCell.svelte +225 -0
  13. package/dist/cells/NumberCell.svelte.d.ts +47 -0
  14. package/dist/cells/StatusBadge.svelte +121 -0
  15. package/dist/cells/StatusBadge.svelte.d.ts +44 -0
  16. package/dist/cells/UserAvatar.svelte +71 -0
  17. package/dist/cells/UserAvatar.svelte.d.ts +37 -0
  18. package/dist/cells/index.d.ts +8 -0
  19. package/dist/cells/index.js +9 -0
  20. package/dist/core/EmptyState.svelte +161 -0
  21. package/dist/core/EmptyState.svelte.d.ts +16 -0
  22. package/dist/core/ErrorState.svelte +158 -0
  23. package/dist/core/ErrorState.svelte.d.ts +15 -0
  24. package/dist/core/GroupedRow.svelte +239 -0
  25. package/dist/core/GroupedRow.svelte.d.ts +18 -0
  26. package/dist/core/LoadingState.svelte +75 -0
  27. package/dist/core/LoadingState.svelte.d.ts +14 -0
  28. package/dist/core/MobileCard.svelte +151 -0
  29. package/dist/core/MobileCard.svelte.d.ts +15 -0
  30. package/dist/core/TableCell.svelte +105 -0
  31. package/dist/core/TableCell.svelte.d.ts +14 -0
  32. package/dist/core/TableDesktop.svelte +480 -0
  33. package/dist/core/TableDesktop.svelte.d.ts +26 -0
  34. package/dist/core/TableHead.svelte +314 -0
  35. package/dist/core/TableHead.svelte.d.ts +7 -0
  36. package/dist/core/TableMobile.svelte +112 -0
  37. package/dist/core/TableMobile.svelte.d.ts +13 -0
  38. package/dist/core/TableProvider.svelte +271 -0
  39. package/dist/core/TableProvider.svelte.d.ts +40 -0
  40. package/dist/core/TableRow.svelte +171 -0
  41. package/dist/core/TableRow.svelte.d.ts +16 -0
  42. package/dist/core/index.d.ts +17 -0
  43. package/dist/core/index.js +14 -0
  44. package/dist/core/sticky-context.svelte.d.ts +48 -0
  45. package/dist/core/sticky-context.svelte.js +88 -0
  46. package/dist/core/table/Table.svelte +304 -0
  47. package/dist/core/table/Table.svelte.d.ts +26 -0
  48. package/dist/core/table/index.d.ts +448 -0
  49. package/dist/core/table/index.js +1 -0
  50. package/dist/core/table-style-context.d.ts +66 -0
  51. package/dist/core/table-style-context.js +26 -0
  52. package/dist/factories/ColumnValidation.d.ts +49 -0
  53. package/dist/factories/ColumnValidation.js +188 -0
  54. package/dist/factories/TableColumns.d.ts +97 -0
  55. package/dist/factories/TableColumns.js +262 -0
  56. package/dist/factories/TypedColumnBuilder.d.ts +41 -0
  57. package/dist/factories/TypedColumnBuilder.js +72 -0
  58. package/dist/factories/index.d.ts +12 -0
  59. package/dist/factories/index.js +13 -0
  60. package/dist/features/HeaderMenu.svelte +236 -0
  61. package/dist/features/HeaderMenu.svelte.d.ts +8 -0
  62. package/dist/features/LiveUpdateBanner.svelte +66 -0
  63. package/dist/features/LiveUpdateBanner.svelte.d.ts +6 -0
  64. package/dist/features/SearchHighlight.svelte +21 -0
  65. package/dist/features/SearchHighlight.svelte.d.ts +8 -0
  66. package/dist/features/SmartFilterBar/ChipsField.svelte +104 -0
  67. package/dist/features/SmartFilterBar/ChipsField.svelte.d.ts +5 -0
  68. package/dist/features/SmartFilterBar/ColumnVisibilityMenu.svelte +84 -0
  69. package/dist/features/SmartFilterBar/ColumnVisibilityMenu.svelte.d.ts +3 -0
  70. package/dist/features/SmartFilterBar/FilterMenu.svelte +367 -0
  71. package/dist/features/SmartFilterBar/FilterMenu.svelte.d.ts +3 -0
  72. package/dist/features/SmartFilterBar/GroupingMenu.svelte +82 -0
  73. package/dist/features/SmartFilterBar/GroupingMenu.svelte.d.ts +3 -0
  74. package/dist/features/SmartFilterBar/SmartFilterBar.svelte +109 -0
  75. package/dist/features/SmartFilterBar/SmartFilterBar.svelte.d.ts +11 -0
  76. package/dist/features/SmartFilterBar/SummaryMenu.svelte +118 -0
  77. package/dist/features/SmartFilterBar/SummaryMenu.svelte.d.ts +3 -0
  78. package/dist/features/SummaryRow.svelte +97 -0
  79. package/dist/features/SummaryRow.svelte.d.ts +8 -0
  80. package/dist/features/index.d.ts +4 -0
  81. package/dist/features/index.js +4 -0
  82. package/dist/i18n/index.d.ts +366 -0
  83. package/dist/i18n/index.js +21 -0
  84. package/dist/index.d.ts +28 -0
  85. package/dist/index.js +41 -0
  86. package/dist/stores/TableStore.svelte.d.ts +192 -0
  87. package/dist/stores/TableStore.svelte.js +362 -0
  88. package/dist/stores/concerns/index.d.ts +15 -0
  89. package/dist/stores/concerns/index.js +14 -0
  90. package/dist/stores/concerns/types.d.ts +31 -0
  91. package/dist/stores/concerns/types.js +1 -0
  92. package/dist/stores/concerns/useColumnOrder.svelte.d.ts +16 -0
  93. package/dist/stores/concerns/useColumnOrder.svelte.js +81 -0
  94. package/dist/stores/concerns/useColumnVisibility.svelte.d.ts +16 -0
  95. package/dist/stores/concerns/useColumnVisibility.svelte.js +58 -0
  96. package/dist/stores/concerns/useExpansion.svelte.d.ts +9 -0
  97. package/dist/stores/concerns/useExpansion.svelte.js +32 -0
  98. package/dist/stores/concerns/useFiltering.svelte.d.ts +20 -0
  99. package/dist/stores/concerns/useFiltering.svelte.js +109 -0
  100. package/dist/stores/concerns/useFocusManagement.svelte.d.ts +15 -0
  101. package/dist/stores/concerns/useFocusManagement.svelte.js +52 -0
  102. package/dist/stores/concerns/useGrouping.svelte.d.ts +15 -0
  103. package/dist/stores/concerns/useGrouping.svelte.js +86 -0
  104. package/dist/stores/concerns/useLiveUpdates.svelte.d.ts +45 -0
  105. package/dist/stores/concerns/useLiveUpdates.svelte.js +175 -0
  106. package/dist/stores/concerns/usePagination.svelte.d.ts +18 -0
  107. package/dist/stores/concerns/usePagination.svelte.js +54 -0
  108. package/dist/stores/concerns/usePersistence.svelte.d.ts +36 -0
  109. package/dist/stores/concerns/usePersistence.svelte.js +167 -0
  110. package/dist/stores/concerns/useRemoteData.svelte.d.ts +21 -0
  111. package/dist/stores/concerns/useRemoteData.svelte.js +64 -0
  112. package/dist/stores/concerns/useSearch.svelte.d.ts +8 -0
  113. package/dist/stores/concerns/useSearch.svelte.js +16 -0
  114. package/dist/stores/concerns/useSelection.svelte.d.ts +21 -0
  115. package/dist/stores/concerns/useSelection.svelte.js +110 -0
  116. package/dist/stores/concerns/useSorting.svelte.d.ts +11 -0
  117. package/dist/stores/concerns/useSorting.svelte.js +70 -0
  118. package/dist/stores/concerns/useSummary.svelte.d.ts +18 -0
  119. package/dist/stores/concerns/useSummary.svelte.js +96 -0
  120. package/dist/stores/index.d.ts +1 -0
  121. package/dist/stores/index.js +1 -0
  122. package/dist/style/index.css +137 -0
  123. package/dist/style/index.d.ts +2 -0
  124. package/dist/style/index.js +2 -0
  125. package/dist/style/table-theme.css +131 -0
  126. package/dist/style/themes/comfortable.css +20 -0
  127. package/dist/style/themes/compact.css +20 -0
  128. package/dist/translations/de.d.ts +177 -0
  129. package/dist/translations/de.js +176 -0
  130. package/dist/translations/en.d.ts +177 -0
  131. package/dist/translations/en.js +176 -0
  132. package/dist/types/index.d.ts +1 -0
  133. package/dist/types/index.js +1 -0
  134. package/dist/types/tableTypes.d.ts +262 -0
  135. package/dist/types/tableTypes.js +1 -0
  136. package/dist/utils/index.d.ts +165 -0
  137. package/dist/utils/index.js +330 -0
  138. package/dist/utils/sticky-measure.d.ts +54 -0
  139. package/dist/utils/sticky-measure.js +107 -0
  140. package/dist/utils/virtualizer.d.ts +43 -0
  141. package/dist/utils/virtualizer.js +43 -0
  142. package/dist/variants/index.d.ts +11 -0
  143. package/dist/variants/index.js +15 -0
  144. package/dist/variants/table-cells.variants.d.ts +827 -0
  145. package/dist/variants/table-cells.variants.js +627 -0
  146. package/dist/variants/table-features.variants.d.ts +547 -0
  147. package/dist/variants/table-features.variants.js +412 -0
  148. package/dist/variants/table-states.variants.d.ts +594 -0
  149. package/dist/variants/table-states.variants.js +394 -0
  150. package/dist/variants/table.system.d.ts +301 -0
  151. package/dist/variants/table.system.js +314 -0
  152. package/dist/variants/table.variants.d.ts +428 -0
  153. package/dist/variants/table.variants.js +360 -0
  154. package/package.json +93 -0
@@ -0,0 +1,177 @@
1
+ declare const _default: {
2
+ readonly common: {
3
+ readonly close: "Schließen";
4
+ };
5
+ readonly button: {
6
+ readonly close: "Schließen";
7
+ readonly clear: "Löschen";
8
+ };
9
+ readonly data: {
10
+ readonly empty: "Keine Daten verfügbar";
11
+ readonly loading: "Daten werden geladen...";
12
+ readonly refresh: "Aktualisieren";
13
+ };
14
+ readonly filter: {
15
+ readonly button: {
16
+ readonly add: "Filter hinzufügen";
17
+ readonly remove: "Filter entfernen";
18
+ readonly clearAll: "Alle löschen";
19
+ };
20
+ readonly input: {
21
+ readonly enterValue: "Wert eingeben...";
22
+ };
23
+ readonly menu: {
24
+ readonly addFilter: "Filter hinzufügen";
25
+ readonly title: "Filter";
26
+ };
27
+ readonly operators: {
28
+ readonly after: "nach";
29
+ readonly before: "vor";
30
+ readonly contains: "enthält";
31
+ readonly endsWith: "endet mit";
32
+ readonly equals: "ist gleich";
33
+ readonly greaterThan: "größer als";
34
+ readonly lessThan: "kleiner als";
35
+ readonly onDate: "am";
36
+ readonly startsWith: "beginnt mit";
37
+ };
38
+ readonly overflow: {
39
+ readonly title: "Weitere Filter";
40
+ };
41
+ readonly quickValues: {
42
+ readonly title: "Schnellwerte";
43
+ };
44
+ };
45
+ readonly search: {
46
+ readonly placeholder: "Suchen...";
47
+ };
48
+ readonly summary: {
49
+ readonly button: {
50
+ readonly title: "Zusammenfassung";
51
+ };
52
+ readonly menu: {
53
+ readonly addSummary: "Zusammenfassung hinzufügen";
54
+ readonly noColumns: "Keine summarisierbaren Spalten verfügbar";
55
+ readonly title: "Zusammenfassung";
56
+ };
57
+ readonly types: {
58
+ readonly average: "Durchschnitt";
59
+ readonly count: "Anzahl";
60
+ readonly maximum: "Maximum";
61
+ readonly minimum: "Minimum";
62
+ readonly sum: "Summe";
63
+ };
64
+ };
65
+ readonly actions: {
66
+ readonly delete: "Löschen";
67
+ readonly edit: "Bearbeiten";
68
+ readonly showDetails: "Details anzeigen";
69
+ readonly hideDetails: "Details ausblenden";
70
+ };
71
+ readonly aria: {
72
+ readonly tableData: "Tabellendaten";
73
+ readonly filterBar: "Filterleiste";
74
+ readonly searchData: "Daten durchsuchen";
75
+ readonly removeItem: "{{content}} entfernen";
76
+ readonly scrollLeft: "Nach links scrollen";
77
+ readonly scrollRight: "Nach rechts scrollen";
78
+ readonly interactiveCell: "Interaktive Zelle";
79
+ };
80
+ readonly copy: {
81
+ readonly button: "Kopieren";
82
+ readonly copied: "Kopiert";
83
+ readonly failed: "Fehlgeschlagen";
84
+ };
85
+ readonly error: {
86
+ readonly loadingError: "Fehler beim Laden";
87
+ readonly genericMessage: "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut.";
88
+ readonly retry: "Erneut versuchen";
89
+ readonly fetchFailed: "Daten konnten nicht geladen werden";
90
+ };
91
+ readonly columns: {
92
+ readonly visibility: "Spaltensichtbarkeit";
93
+ };
94
+ readonly grouping: {
95
+ readonly button: "Gruppierung";
96
+ readonly none: "Keine Gruppierung";
97
+ readonly placeholder: "Gruppierung auswählen";
98
+ };
99
+ readonly header: {
100
+ readonly activeFilter: "Aktiver Filter";
101
+ readonly activeIndicator: "{{type}} aktiv für diese Spalte";
102
+ readonly collapseAllGroups: "Alle Gruppen einklappen";
103
+ readonly expandAllGroups: "Alle Gruppen ausklappen";
104
+ readonly filterActive: "Filter aktiv";
105
+ readonly grouped: "Gruppiert";
106
+ readonly groupedColumn: "Gruppierte Spalte";
107
+ readonly summarized: "Zusammengefasst";
108
+ readonly summarizedColumn: "Zusammengefasste Spalte";
109
+ };
110
+ readonly headerMenu: {
111
+ readonly sortAscending: "Aufsteigend sortieren";
112
+ readonly sortDescending: "Absteigend sortieren";
113
+ readonly removeFilter: "Filter entfernen";
114
+ readonly groupByColumn: "Nach Spalte gruppieren";
115
+ readonly removeGrouping: "Gruppierung aufheben";
116
+ readonly addSummary: "Zusammenfassung hinzufügen";
117
+ readonly removeSummary: "Zusammenfassung entfernen";
118
+ readonly hideColumn: "Spalte ausblenden";
119
+ readonly showColumn: "Anzeigen";
120
+ readonly columnOptions: "Spaltenoptionen für";
121
+ };
122
+ readonly pagination: {
123
+ readonly previous: "Zurück";
124
+ readonly next: "Weiter";
125
+ readonly first: "Erste";
126
+ readonly last: "Letzte";
127
+ readonly page: "Seite";
128
+ };
129
+ readonly group: {
130
+ readonly noGroup: "(Keine Gruppe)";
131
+ readonly item: "Eintrag";
132
+ readonly items: "Einträge";
133
+ readonly summaryFor: "Zusammenfassung für";
134
+ };
135
+ readonly number: {
136
+ readonly valueLabel: "Wert: {{value}}";
137
+ };
138
+ readonly status: {
139
+ readonly tooltip: "Status: {{text}}";
140
+ readonly clickToChange: "(klicken zum Ändern)";
141
+ readonly unknown: "Unbekannt";
142
+ readonly active: "Aktiv";
143
+ readonly inactive: "Inaktiv";
144
+ readonly pending: "Ausstehend";
145
+ readonly online: "Online";
146
+ readonly offline: "Offline";
147
+ readonly processing: "In Bearbeitung";
148
+ readonly completed: "Abgeschlossen";
149
+ readonly failed: "Fehlgeschlagen";
150
+ readonly draft: "Entwurf";
151
+ readonly published: "Veröffentlicht";
152
+ readonly archived: "Archiviert";
153
+ };
154
+ readonly liveUpdates: {
155
+ readonly newItems: "neu";
156
+ readonly updatedItems: "aktualisiert";
157
+ readonly deletedItems: "entfernt";
158
+ readonly apply: "Änderungen übernehmen";
159
+ readonly dismiss: "Verwerfen";
160
+ };
161
+ readonly selection: {
162
+ readonly selectRow: "Zeile auswählen";
163
+ readonly deselectRow: "Auswahl aufheben";
164
+ readonly selectAllRows: "Alle Zeilen auswählen";
165
+ readonly deselectAllRows: "Auswahl aller Zeilen aufheben";
166
+ readonly selectedCount: "{{count}} ausgewählt";
167
+ };
168
+ readonly table: {
169
+ readonly link: {
170
+ readonly invalid: "Ungültiger Link";
171
+ };
172
+ readonly summary: {
173
+ readonly totalSummary: "Gesamtzusammenfassung";
174
+ };
175
+ };
176
+ };
177
+ export default _default;
@@ -0,0 +1,176 @@
1
+ export default {
2
+ common: {
3
+ close: 'Schließen'
4
+ },
5
+ button: {
6
+ close: 'Schließen',
7
+ clear: 'Löschen'
8
+ },
9
+ data: {
10
+ empty: 'Keine Daten verfügbar',
11
+ loading: 'Daten werden geladen...',
12
+ refresh: 'Aktualisieren'
13
+ },
14
+ filter: {
15
+ button: {
16
+ add: 'Filter hinzufügen',
17
+ remove: 'Filter entfernen',
18
+ clearAll: 'Alle löschen'
19
+ },
20
+ input: {
21
+ enterValue: 'Wert eingeben...'
22
+ },
23
+ menu: {
24
+ addFilter: 'Filter hinzufügen',
25
+ title: 'Filter'
26
+ },
27
+ operators: {
28
+ after: 'nach',
29
+ before: 'vor',
30
+ contains: 'enthält',
31
+ endsWith: 'endet mit',
32
+ equals: 'ist gleich',
33
+ greaterThan: 'größer als',
34
+ lessThan: 'kleiner als',
35
+ onDate: 'am',
36
+ startsWith: 'beginnt mit'
37
+ },
38
+ overflow: {
39
+ title: 'Weitere Filter'
40
+ },
41
+ quickValues: {
42
+ title: 'Schnellwerte'
43
+ }
44
+ },
45
+ search: {
46
+ placeholder: 'Suchen...'
47
+ },
48
+ summary: {
49
+ button: {
50
+ title: 'Zusammenfassung'
51
+ },
52
+ menu: {
53
+ addSummary: 'Zusammenfassung hinzufügen',
54
+ noColumns: 'Keine summarisierbaren Spalten verfügbar',
55
+ title: 'Zusammenfassung'
56
+ },
57
+ types: {
58
+ average: 'Durchschnitt',
59
+ count: 'Anzahl',
60
+ maximum: 'Maximum',
61
+ minimum: 'Minimum',
62
+ sum: 'Summe'
63
+ }
64
+ },
65
+ actions: {
66
+ delete: 'Löschen',
67
+ edit: 'Bearbeiten',
68
+ showDetails: 'Details anzeigen',
69
+ hideDetails: 'Details ausblenden'
70
+ },
71
+ aria: {
72
+ tableData: 'Tabellendaten',
73
+ filterBar: 'Filterleiste',
74
+ searchData: 'Daten durchsuchen',
75
+ removeItem: '{{content}} entfernen',
76
+ scrollLeft: 'Nach links scrollen',
77
+ scrollRight: 'Nach rechts scrollen',
78
+ interactiveCell: 'Interaktive Zelle'
79
+ },
80
+ copy: {
81
+ button: 'Kopieren',
82
+ copied: 'Kopiert',
83
+ failed: 'Fehlgeschlagen'
84
+ },
85
+ error: {
86
+ loadingError: 'Fehler beim Laden',
87
+ genericMessage: 'Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut.',
88
+ retry: 'Erneut versuchen',
89
+ fetchFailed: 'Daten konnten nicht geladen werden'
90
+ },
91
+ columns: {
92
+ visibility: 'Spaltensichtbarkeit'
93
+ },
94
+ grouping: {
95
+ button: 'Gruppierung',
96
+ none: 'Keine Gruppierung',
97
+ placeholder: 'Gruppierung auswählen'
98
+ },
99
+ header: {
100
+ activeFilter: 'Aktiver Filter',
101
+ activeIndicator: '{{type}} aktiv für diese Spalte',
102
+ collapseAllGroups: 'Alle Gruppen einklappen',
103
+ expandAllGroups: 'Alle Gruppen ausklappen',
104
+ filterActive: 'Filter aktiv',
105
+ grouped: 'Gruppiert',
106
+ groupedColumn: 'Gruppierte Spalte',
107
+ summarized: 'Zusammengefasst',
108
+ summarizedColumn: 'Zusammengefasste Spalte'
109
+ },
110
+ headerMenu: {
111
+ sortAscending: 'Aufsteigend sortieren',
112
+ sortDescending: 'Absteigend sortieren',
113
+ removeFilter: 'Filter entfernen',
114
+ groupByColumn: 'Nach Spalte gruppieren',
115
+ removeGrouping: 'Gruppierung aufheben',
116
+ addSummary: 'Zusammenfassung hinzufügen',
117
+ removeSummary: 'Zusammenfassung entfernen',
118
+ hideColumn: 'Spalte ausblenden',
119
+ showColumn: 'Anzeigen',
120
+ columnOptions: 'Spaltenoptionen für'
121
+ },
122
+ pagination: {
123
+ previous: 'Zurück',
124
+ next: 'Weiter',
125
+ first: 'Erste',
126
+ last: 'Letzte',
127
+ page: 'Seite'
128
+ },
129
+ group: {
130
+ noGroup: '(Keine Gruppe)',
131
+ item: 'Eintrag',
132
+ items: 'Einträge',
133
+ summaryFor: 'Zusammenfassung für'
134
+ },
135
+ number: {
136
+ valueLabel: 'Wert: {{value}}'
137
+ },
138
+ status: {
139
+ tooltip: 'Status: {{text}}',
140
+ clickToChange: '(klicken zum Ändern)',
141
+ unknown: 'Unbekannt',
142
+ active: 'Aktiv',
143
+ inactive: 'Inaktiv',
144
+ pending: 'Ausstehend',
145
+ online: 'Online',
146
+ offline: 'Offline',
147
+ processing: 'In Bearbeitung',
148
+ completed: 'Abgeschlossen',
149
+ failed: 'Fehlgeschlagen',
150
+ draft: 'Entwurf',
151
+ published: 'Veröffentlicht',
152
+ archived: 'Archiviert'
153
+ },
154
+ liveUpdates: {
155
+ newItems: 'neu',
156
+ updatedItems: 'aktualisiert',
157
+ deletedItems: 'entfernt',
158
+ apply: 'Änderungen übernehmen',
159
+ dismiss: 'Verwerfen'
160
+ },
161
+ selection: {
162
+ selectRow: 'Zeile auswählen',
163
+ deselectRow: 'Auswahl aufheben',
164
+ selectAllRows: 'Alle Zeilen auswählen',
165
+ deselectAllRows: 'Auswahl aller Zeilen aufheben',
166
+ selectedCount: '{{count}} ausgewählt'
167
+ },
168
+ table: {
169
+ link: {
170
+ invalid: 'Ungültiger Link'
171
+ },
172
+ summary: {
173
+ totalSummary: 'Gesamtzusammenfassung'
174
+ }
175
+ }
176
+ };
@@ -0,0 +1,177 @@
1
+ declare const _default: {
2
+ readonly common: {
3
+ readonly close: "Close";
4
+ };
5
+ readonly button: {
6
+ readonly close: "Close";
7
+ readonly clear: "Clear";
8
+ };
9
+ readonly data: {
10
+ readonly empty: "No data available";
11
+ readonly loading: "Loading data...";
12
+ readonly refresh: "Refresh";
13
+ };
14
+ readonly filter: {
15
+ readonly button: {
16
+ readonly add: "Add filter";
17
+ readonly remove: "Remove filter";
18
+ readonly clearAll: "Clear all";
19
+ };
20
+ readonly input: {
21
+ readonly enterValue: "Enter value...";
22
+ };
23
+ readonly menu: {
24
+ readonly addFilter: "Add filter";
25
+ readonly title: "Filter";
26
+ };
27
+ readonly operators: {
28
+ readonly after: "after";
29
+ readonly before: "before";
30
+ readonly contains: "contains";
31
+ readonly endsWith: "ends with";
32
+ readonly equals: "equals";
33
+ readonly greaterThan: "greater than";
34
+ readonly lessThan: "less than";
35
+ readonly onDate: "on";
36
+ readonly startsWith: "starts with";
37
+ };
38
+ readonly overflow: {
39
+ readonly title: "More filters";
40
+ };
41
+ readonly quickValues: {
42
+ readonly title: "Quick values";
43
+ };
44
+ };
45
+ readonly search: {
46
+ readonly placeholder: "Search...";
47
+ };
48
+ readonly summary: {
49
+ readonly button: {
50
+ readonly title: "Summary";
51
+ };
52
+ readonly menu: {
53
+ readonly addSummary: "Add summary";
54
+ readonly noColumns: "No summarizable columns available";
55
+ readonly title: "Summary";
56
+ };
57
+ readonly types: {
58
+ readonly average: "Average";
59
+ readonly count: "Count";
60
+ readonly maximum: "Maximum";
61
+ readonly minimum: "Minimum";
62
+ readonly sum: "Sum";
63
+ };
64
+ };
65
+ readonly actions: {
66
+ readonly delete: "Delete";
67
+ readonly edit: "Edit";
68
+ readonly showDetails: "Show details";
69
+ readonly hideDetails: "Hide details";
70
+ };
71
+ readonly aria: {
72
+ readonly tableData: "Table data";
73
+ readonly filterBar: "Filter bar";
74
+ readonly searchData: "Search data";
75
+ readonly removeItem: "Remove {{content}}";
76
+ readonly scrollLeft: "Scroll left";
77
+ readonly scrollRight: "Scroll right";
78
+ readonly interactiveCell: "Interactive cell";
79
+ };
80
+ readonly copy: {
81
+ readonly button: "Copy";
82
+ readonly copied: "Copied";
83
+ readonly failed: "Failed";
84
+ };
85
+ readonly error: {
86
+ readonly loadingError: "Loading error";
87
+ readonly genericMessage: "An error occurred. Please try again.";
88
+ readonly retry: "Retry";
89
+ readonly fetchFailed: "Failed to load data";
90
+ };
91
+ readonly columns: {
92
+ readonly visibility: "Column visibility";
93
+ };
94
+ readonly grouping: {
95
+ readonly button: "Grouping";
96
+ readonly none: "No grouping";
97
+ readonly placeholder: "Select grouping";
98
+ };
99
+ readonly header: {
100
+ readonly activeFilter: "Active filter";
101
+ readonly activeIndicator: "{{type}} active for this column";
102
+ readonly collapseAllGroups: "Collapse all groups";
103
+ readonly expandAllGroups: "Expand all groups";
104
+ readonly filterActive: "Filter active";
105
+ readonly grouped: "Grouped";
106
+ readonly groupedColumn: "Grouped column";
107
+ readonly summarized: "Summarized";
108
+ readonly summarizedColumn: "Summarized column";
109
+ };
110
+ readonly headerMenu: {
111
+ readonly sortAscending: "Sort ascending";
112
+ readonly sortDescending: "Sort descending";
113
+ readonly removeFilter: "Remove filter";
114
+ readonly groupByColumn: "Group by column";
115
+ readonly removeGrouping: "Remove grouping";
116
+ readonly addSummary: "Add summary";
117
+ readonly removeSummary: "Remove summary";
118
+ readonly hideColumn: "Hide column";
119
+ readonly showColumn: "Show";
120
+ readonly columnOptions: "Column options for";
121
+ };
122
+ readonly pagination: {
123
+ readonly previous: "Previous";
124
+ readonly next: "Next";
125
+ readonly first: "First";
126
+ readonly last: "Last";
127
+ readonly page: "Page";
128
+ };
129
+ readonly group: {
130
+ readonly noGroup: "(No group)";
131
+ readonly item: "item";
132
+ readonly items: "items";
133
+ readonly summaryFor: "Summary for";
134
+ };
135
+ readonly number: {
136
+ readonly valueLabel: "Value: {{value}}";
137
+ };
138
+ readonly status: {
139
+ readonly tooltip: "Status: {{text}}";
140
+ readonly clickToChange: "(click to change)";
141
+ readonly unknown: "Unknown";
142
+ readonly active: "Active";
143
+ readonly inactive: "Inactive";
144
+ readonly pending: "Pending";
145
+ readonly online: "Online";
146
+ readonly offline: "Offline";
147
+ readonly processing: "Processing";
148
+ readonly completed: "Completed";
149
+ readonly failed: "Failed";
150
+ readonly draft: "Draft";
151
+ readonly published: "Published";
152
+ readonly archived: "Archived";
153
+ };
154
+ readonly liveUpdates: {
155
+ readonly newItems: "new";
156
+ readonly updatedItems: "updated";
157
+ readonly deletedItems: "removed";
158
+ readonly apply: "Apply changes";
159
+ readonly dismiss: "Dismiss";
160
+ };
161
+ readonly selection: {
162
+ readonly selectRow: "Select row";
163
+ readonly deselectRow: "Deselect row";
164
+ readonly selectAllRows: "Select all rows";
165
+ readonly deselectAllRows: "Deselect all rows";
166
+ readonly selectedCount: "{{count}} selected";
167
+ };
168
+ readonly table: {
169
+ readonly link: {
170
+ readonly invalid: "Invalid link";
171
+ };
172
+ readonly summary: {
173
+ readonly totalSummary: "Total summary";
174
+ };
175
+ };
176
+ };
177
+ export default _default;
@@ -0,0 +1,176 @@
1
+ export default {
2
+ common: {
3
+ close: 'Close'
4
+ },
5
+ button: {
6
+ close: 'Close',
7
+ clear: 'Clear'
8
+ },
9
+ data: {
10
+ empty: 'No data available',
11
+ loading: 'Loading data...',
12
+ refresh: 'Refresh'
13
+ },
14
+ filter: {
15
+ button: {
16
+ add: 'Add filter',
17
+ remove: 'Remove filter',
18
+ clearAll: 'Clear all'
19
+ },
20
+ input: {
21
+ enterValue: 'Enter value...'
22
+ },
23
+ menu: {
24
+ addFilter: 'Add filter',
25
+ title: 'Filter'
26
+ },
27
+ operators: {
28
+ after: 'after',
29
+ before: 'before',
30
+ contains: 'contains',
31
+ endsWith: 'ends with',
32
+ equals: 'equals',
33
+ greaterThan: 'greater than',
34
+ lessThan: 'less than',
35
+ onDate: 'on',
36
+ startsWith: 'starts with'
37
+ },
38
+ overflow: {
39
+ title: 'More filters'
40
+ },
41
+ quickValues: {
42
+ title: 'Quick values'
43
+ }
44
+ },
45
+ search: {
46
+ placeholder: 'Search...'
47
+ },
48
+ summary: {
49
+ button: {
50
+ title: 'Summary'
51
+ },
52
+ menu: {
53
+ addSummary: 'Add summary',
54
+ noColumns: 'No summarizable columns available',
55
+ title: 'Summary'
56
+ },
57
+ types: {
58
+ average: 'Average',
59
+ count: 'Count',
60
+ maximum: 'Maximum',
61
+ minimum: 'Minimum',
62
+ sum: 'Sum'
63
+ }
64
+ },
65
+ actions: {
66
+ delete: 'Delete',
67
+ edit: 'Edit',
68
+ showDetails: 'Show details',
69
+ hideDetails: 'Hide details'
70
+ },
71
+ aria: {
72
+ tableData: 'Table data',
73
+ filterBar: 'Filter bar',
74
+ searchData: 'Search data',
75
+ removeItem: 'Remove {{content}}',
76
+ scrollLeft: 'Scroll left',
77
+ scrollRight: 'Scroll right',
78
+ interactiveCell: 'Interactive cell'
79
+ },
80
+ copy: {
81
+ button: 'Copy',
82
+ copied: 'Copied',
83
+ failed: 'Failed'
84
+ },
85
+ error: {
86
+ loadingError: 'Loading error',
87
+ genericMessage: 'An error occurred. Please try again.',
88
+ retry: 'Retry',
89
+ fetchFailed: 'Failed to load data'
90
+ },
91
+ columns: {
92
+ visibility: 'Column visibility'
93
+ },
94
+ grouping: {
95
+ button: 'Grouping',
96
+ none: 'No grouping',
97
+ placeholder: 'Select grouping'
98
+ },
99
+ header: {
100
+ activeFilter: 'Active filter',
101
+ activeIndicator: '{{type}} active for this column',
102
+ collapseAllGroups: 'Collapse all groups',
103
+ expandAllGroups: 'Expand all groups',
104
+ filterActive: 'Filter active',
105
+ grouped: 'Grouped',
106
+ groupedColumn: 'Grouped column',
107
+ summarized: 'Summarized',
108
+ summarizedColumn: 'Summarized column'
109
+ },
110
+ headerMenu: {
111
+ sortAscending: 'Sort ascending',
112
+ sortDescending: 'Sort descending',
113
+ removeFilter: 'Remove filter',
114
+ groupByColumn: 'Group by column',
115
+ removeGrouping: 'Remove grouping',
116
+ addSummary: 'Add summary',
117
+ removeSummary: 'Remove summary',
118
+ hideColumn: 'Hide column',
119
+ showColumn: 'Show',
120
+ columnOptions: 'Column options for'
121
+ },
122
+ pagination: {
123
+ previous: 'Previous',
124
+ next: 'Next',
125
+ first: 'First',
126
+ last: 'Last',
127
+ page: 'Page'
128
+ },
129
+ group: {
130
+ noGroup: '(No group)',
131
+ item: 'item',
132
+ items: 'items',
133
+ summaryFor: 'Summary for'
134
+ },
135
+ number: {
136
+ valueLabel: 'Value: {{value}}'
137
+ },
138
+ status: {
139
+ tooltip: 'Status: {{text}}',
140
+ clickToChange: '(click to change)',
141
+ unknown: 'Unknown',
142
+ active: 'Active',
143
+ inactive: 'Inactive',
144
+ pending: 'Pending',
145
+ online: 'Online',
146
+ offline: 'Offline',
147
+ processing: 'Processing',
148
+ completed: 'Completed',
149
+ failed: 'Failed',
150
+ draft: 'Draft',
151
+ published: 'Published',
152
+ archived: 'Archived'
153
+ },
154
+ liveUpdates: {
155
+ newItems: 'new',
156
+ updatedItems: 'updated',
157
+ deletedItems: 'removed',
158
+ apply: 'Apply changes',
159
+ dismiss: 'Dismiss'
160
+ },
161
+ selection: {
162
+ selectRow: 'Select row',
163
+ deselectRow: 'Deselect row',
164
+ selectAllRows: 'Select all rows',
165
+ deselectAllRows: 'Deselect all rows',
166
+ selectedCount: '{{count}} selected'
167
+ },
168
+ table: {
169
+ link: {
170
+ invalid: 'Invalid link'
171
+ },
172
+ summary: {
173
+ totalSummary: 'Total summary'
174
+ }
175
+ }
176
+ };