@onecx/angular-accelerator 5.53.1 → 5.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/i18n/de.json +3 -1
- package/assets/i18n/en.json +3 -1
- package/esm2022/lib/components/data-table/data-table.component.mjs +82 -6
- package/esm2022/lib/components/data-view/data-view.component.mjs +18 -3
- package/esm2022/lib/components/filter-view/filter-view.component.mjs +1 -1
- package/esm2022/lib/components/interactive-data-view/interactive-data-view.component.mjs +18 -3
- package/esm2022/testing/data-table.harness.mjs +13 -1
- package/fesm2022/onecx-angular-accelerator-testing.mjs +12 -0
- package/fesm2022/onecx-angular-accelerator-testing.mjs.map +1 -1
- package/fesm2022/onecx-angular-accelerator.mjs +116 -10
- package/fesm2022/onecx-angular-accelerator.mjs.map +1 -1
- package/lib/components/data-table/data-table.component.d.ts +17 -1
- package/lib/components/data-view/data-view.component.d.ts +6 -1
- package/lib/components/interactive-data-view/interactive-data-view.component.d.ts +6 -1
- package/package.json +7 -7
- package/testing/data-table.harness.d.ts +4 -0
package/assets/i18n/de.json
CHANGED
|
@@ -78,7 +78,9 @@
|
|
|
78
78
|
"SELECT_ALL_TOOLTIP": "Selektiere alle",
|
|
79
79
|
"SELECT_ARIA_LABEL": "Selektiere die Tabellenspalte mit der ID {{key}}",
|
|
80
80
|
"FILTER_YES": "Ja",
|
|
81
|
-
"FILTER_NO": "Nein"
|
|
81
|
+
"FILTER_NO": "Nein",
|
|
82
|
+
"COLLAPSED_ROW": "Eingeklappte Zeile",
|
|
83
|
+
"EXPANDED_ROW": "Ausgeklappte Zeile"
|
|
82
84
|
},
|
|
83
85
|
"OCX_DATA_LIST_GRID": {
|
|
84
86
|
"SEARCH_RESULTS_FOUND": "{{results}} Ergebnisse gefunden",
|
package/assets/i18n/en.json
CHANGED
|
@@ -78,7 +78,9 @@
|
|
|
78
78
|
"SELECT_ALL_TOOLTIP": "Select all",
|
|
79
79
|
"SELECT_ARIA_LABEL": "Select table row with id {{key}}",
|
|
80
80
|
"FILTER_YES": "Yes",
|
|
81
|
-
"FILTER_NO": "No"
|
|
81
|
+
"FILTER_NO": "No",
|
|
82
|
+
"COLLAPSED_ROW": "Collapsed row",
|
|
83
|
+
"EXPANDED_ROW": "Expanded row"
|
|
82
84
|
},
|
|
83
85
|
"OCX_DATA_LIST_GRID": {
|
|
84
86
|
"SEARCH_RESULTS_FOUND": "{{results}} Results Found",
|