@3mo/data-grid 0.9.12 → 0.9.14-preview.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/dist/DataGrid.js +1 -1
- package/dist/DataGridCell.js +1 -1
- package/dist/DataGridContextMenuController.js +1 -1
- package/dist/DataGridFooter.js +2 -2
- package/dist/DataGridHeader.js +2 -2
- package/dist/DataGridPrimaryContextMenuItem.js +5 -5
- package/dist/DataGridSidePanel.js +1 -1
- package/dist/columns/DataGridColumnDeletion.js +1 -1
- package/dist/custom-elements.json +7 -4647
- package/dist/excel.svg.js +47 -47
- package/dist/rows/DataGridDefaultRow.d.ts.map +1 -1
- package/dist/rows/DataGridDefaultRow.js +7 -1
- package/dist/rows/DataGridRow.d.ts.map +1 -1
- package/dist/rows/DataGridRow.js +0 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/DataGrid.js
CHANGED
|
@@ -16,7 +16,7 @@ import { DataGridSortingController } from './DataGridSortingController.js';
|
|
|
16
16
|
import { DataGridDetailsController } from './DataGridDetailsController.js';
|
|
17
17
|
import { CsvGenerator, DataGridSidePanelTab, DataGridContextMenuController } from './index.js';
|
|
18
18
|
import { DataRecord } from './DataRecord.js';
|
|
19
|
-
Localizer.
|
|
19
|
+
Localizer.dictionaries.add('de', {
|
|
20
20
|
'Exporting excel file': 'Die Excel-Datei wird exportiert',
|
|
21
21
|
'No results': 'Kein Ergebnis',
|
|
22
22
|
'More Filters': 'Weitere Filter',
|
package/dist/DataGridCell.js
CHANGED
|
@@ -3,7 +3,7 @@ import { component, Component, html, property, css, state } from '@a11d/lit';
|
|
|
3
3
|
import { NotificationComponent } from '@a11d/lit-application';
|
|
4
4
|
import { Localizer } from '@3mo/localization';
|
|
5
5
|
import { DataGridEditability } from './index.js';
|
|
6
|
-
Localizer.
|
|
6
|
+
Localizer.dictionaries.add('de', {
|
|
7
7
|
'Using the clipboard is not allowed in an insecure browser environment': 'In einer unsicheren Browser-Umgebung darf kein Text in die Zwischenablage kopiert werden',
|
|
8
8
|
'Copied to clipboard': 'In die Zwischenablage kopiert',
|
|
9
9
|
});
|
package/dist/DataGridFooter.js
CHANGED
|
@@ -4,12 +4,12 @@ import { component, property, Component, css, state, html, query, style } from '
|
|
|
4
4
|
import { DirectionsByLanguage, Localizer } from '@3mo/localization';
|
|
5
5
|
import { TooltipPlacement, tooltip } from '@3mo/tooltip';
|
|
6
6
|
import excelSvg from './excel.svg.js';
|
|
7
|
-
Localizer.
|
|
7
|
+
Localizer.dictionaries.add('de', {
|
|
8
8
|
'${page:number} of ${maxPage:number}': '${page} von ${maxPage}',
|
|
9
9
|
'Export current view to Excel': 'Aktuelle Ansicht nach Excel exportieren',
|
|
10
10
|
'Auto': 'Auto'
|
|
11
11
|
});
|
|
12
|
-
Localizer.
|
|
12
|
+
Localizer.dictionaries.add('fa', {
|
|
13
13
|
'${page:number} of ${maxPage:number}': '${page} از ${maxPage}',
|
|
14
14
|
'Auto': 'خودکار',
|
|
15
15
|
});
|
package/dist/DataGridHeader.js
CHANGED
|
@@ -4,13 +4,13 @@ import { tooltip } from '@3mo/tooltip';
|
|
|
4
4
|
import { observeResize } from '@3mo/resize-observer';
|
|
5
5
|
import { Localizer } from '@3mo/localization';
|
|
6
6
|
import { DataGridSelectionMode, DataGridSortingStrategy, DataGridSidePanelTab } from './index.js';
|
|
7
|
-
Localizer.
|
|
7
|
+
Localizer.dictionaries.add('en', {
|
|
8
8
|
'Actions for ${count:pluralityNumber} selected entries': [
|
|
9
9
|
'Actions for the selected entry',
|
|
10
10
|
'Actions for ${count} selected entries',
|
|
11
11
|
],
|
|
12
12
|
});
|
|
13
|
-
Localizer.
|
|
13
|
+
Localizer.dictionaries.add('de', {
|
|
14
14
|
'Actions for ${count:pluralityNumber} selected entries': [
|
|
15
15
|
'Optionen für den ausgewählten Eintrag',
|
|
16
16
|
'Optionen für ${count} ausgewählte Einträge',
|
|
@@ -3,11 +3,11 @@ import { component, css } from '@a11d/lit';
|
|
|
3
3
|
import { ContextMenuItem } from '@3mo/context-menu';
|
|
4
4
|
let DataGridPrimaryContextMenuItem = class DataGridPrimaryContextMenuItem extends ContextMenuItem {
|
|
5
5
|
static get styles() {
|
|
6
|
-
return css `
|
|
7
|
-
${super.styles}
|
|
8
|
-
:host {
|
|
9
|
-
font-weight: bold;
|
|
10
|
-
}
|
|
6
|
+
return css `
|
|
7
|
+
${super.styles}
|
|
8
|
+
:host {
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
}
|
|
11
11
|
`;
|
|
12
12
|
}
|
|
13
13
|
};
|
|
@@ -2,7 +2,7 @@ import { __decorate } from "tslib";
|
|
|
2
2
|
import { component, style, Component, css, html, ifDefined, property, bind } from '@a11d/lit';
|
|
3
3
|
import { Localizer } from '@3mo/localization';
|
|
4
4
|
import { tooltip } from '@3mo/tooltip';
|
|
5
|
-
Localizer.
|
|
5
|
+
Localizer.dictionaries.add('de', {
|
|
6
6
|
'Settings': 'Einstellungen',
|
|
7
7
|
'Extended Filters': 'Weitere Filter',
|
|
8
8
|
'Columns': 'Spalten',
|
|
@@ -3,7 +3,7 @@ import { component, html, event, property, style } from '@a11d/lit';
|
|
|
3
3
|
import { Localizer } from '@3mo/localization';
|
|
4
4
|
import { tooltip } from '@3mo/tooltip';
|
|
5
5
|
import { DataGridColumnComponent } from './DataGridColumnComponent.js';
|
|
6
|
-
Localizer.
|
|
6
|
+
Localizer.dictionaries.add('de', {
|
|
7
7
|
'Delete position': 'Position entfernen'
|
|
8
8
|
});
|
|
9
9
|
/**
|