@breadstone/mosaik-elements-angular 0.1.23 → 0.1.25
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 0.1.25 (2026-06-22)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.1.24 (2026-06-20)
|
|
6
|
+
|
|
7
|
+
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
8
|
+
|
|
1
9
|
## 0.1.23 (2026-06-20)
|
|
2
10
|
|
|
3
11
|
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
@@ -5952,7 +5952,10 @@ function ensureGetItemDefinitionsPatched(element) {
|
|
|
5952
5952
|
return definitions.map((def) => {
|
|
5953
5953
|
const override = overrides.get(def.key);
|
|
5954
5954
|
if (override) {
|
|
5955
|
-
return {
|
|
5955
|
+
return {
|
|
5956
|
+
...def,
|
|
5957
|
+
...override
|
|
5958
|
+
};
|
|
5956
5959
|
}
|
|
5957
5960
|
return def;
|
|
5958
5961
|
});
|
|
@@ -6041,10 +6044,10 @@ class ItemDefDirective {
|
|
|
6041
6044
|
*/
|
|
6042
6045
|
itemKey;
|
|
6043
6046
|
/**
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6047
|
+
* The item cell template directive.
|
|
6048
|
+
*
|
|
6049
|
+
* @public
|
|
6050
|
+
*/
|
|
6048
6051
|
itemCellDef;
|
|
6049
6052
|
// #endregion
|
|
6050
6053
|
// #region Methods
|
|
@@ -6074,7 +6077,7 @@ class ItemDefDirective {
|
|
|
6074
6077
|
* @private
|
|
6075
6078
|
*/
|
|
6076
6079
|
applyTemplates() {
|
|
6077
|
-
this._nativeElement = this._dataList.
|
|
6080
|
+
this._nativeElement = this._dataList.elementRef.nativeElement;
|
|
6078
6081
|
const overrides = {};
|
|
6079
6082
|
if (this.itemCellDef) {
|
|
6080
6083
|
overrides.itemTemplate = this.createItemTemplateCallback(this.itemCellDef);
|
|
@@ -6127,6 +6130,7 @@ class ItemDefDirective {
|
|
|
6127
6130
|
*/
|
|
6128
6131
|
cleanupDisconnectedViews() {
|
|
6129
6132
|
let writeIndex = 0;
|
|
6133
|
+
// eslint-disable-next-line @typescript-eslint/prefer-for-of
|
|
6130
6134
|
for (let readIndex = 0; readIndex < this._views.length; readIndex++) {
|
|
6131
6135
|
const view = this._views[readIndex];
|
|
6132
6136
|
const isConnected = view.rootNodes.some((node) => node.isConnected);
|
|
@@ -6150,7 +6154,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
6150
6154
|
}]
|
|
6151
6155
|
}], ctorParameters: () => [], propDecorators: { itemKey: [{
|
|
6152
6156
|
type: Input,
|
|
6153
|
-
args: [{
|
|
6157
|
+
args: [{
|
|
6158
|
+
required: true,
|
|
6159
|
+
alias: 'mosaikItemDef'
|
|
6160
|
+
}]
|
|
6154
6161
|
}], itemCellDef: [{
|
|
6155
6162
|
type: ContentChild,
|
|
6156
6163
|
args: [ItemCellDefDirective]
|
|
@@ -6802,7 +6809,10 @@ function ensureGetColumnsPatched(element) {
|
|
|
6802
6809
|
return columns.map((col) => {
|
|
6803
6810
|
const override = overrides.get(col.key);
|
|
6804
6811
|
if (override) {
|
|
6805
|
-
return {
|
|
6812
|
+
return {
|
|
6813
|
+
...col,
|
|
6814
|
+
...override
|
|
6815
|
+
};
|
|
6806
6816
|
}
|
|
6807
6817
|
return col;
|
|
6808
6818
|
});
|
|
@@ -6895,16 +6905,16 @@ class ColumnDefDirective {
|
|
|
6895
6905
|
*/
|
|
6896
6906
|
columnKey;
|
|
6897
6907
|
/**
|
|
6898
|
-
|
|
6899
|
-
|
|
6900
|
-
|
|
6901
|
-
|
|
6908
|
+
* The cell template directive for body cells.
|
|
6909
|
+
*
|
|
6910
|
+
* @public
|
|
6911
|
+
*/
|
|
6902
6912
|
cellDef;
|
|
6903
6913
|
/**
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6914
|
+
* The header cell template directive.
|
|
6915
|
+
*
|
|
6916
|
+
* @public
|
|
6917
|
+
*/
|
|
6908
6918
|
headerCellDef;
|
|
6909
6919
|
// #endregion
|
|
6910
6920
|
// #region Methods
|
|
@@ -6934,7 +6944,7 @@ class ColumnDefDirective {
|
|
|
6934
6944
|
* @private
|
|
6935
6945
|
*/
|
|
6936
6946
|
applyTemplates() {
|
|
6937
|
-
this._nativeElement = this._dataTable.
|
|
6947
|
+
this._nativeElement = this._dataTable.elementRef.nativeElement;
|
|
6938
6948
|
const overrides = {};
|
|
6939
6949
|
if (this.cellDef) {
|
|
6940
6950
|
overrides.cellTemplate = this.createCellTemplateCallback(this.cellDef);
|
|
@@ -7011,6 +7021,7 @@ class ColumnDefDirective {
|
|
|
7011
7021
|
*/
|
|
7012
7022
|
cleanupDisconnectedViews() {
|
|
7013
7023
|
let writeIndex = 0;
|
|
7024
|
+
// eslint-disable-next-line @typescript-eslint/prefer-for-of
|
|
7014
7025
|
for (let readIndex = 0; readIndex < this._views.length; readIndex++) {
|
|
7015
7026
|
const view = this._views[readIndex];
|
|
7016
7027
|
const isConnected = view.rootNodes.some((node) => node.isConnected);
|
|
@@ -7034,7 +7045,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
7034
7045
|
}]
|
|
7035
7046
|
}], ctorParameters: () => [], propDecorators: { columnKey: [{
|
|
7036
7047
|
type: Input,
|
|
7037
|
-
args: [{
|
|
7048
|
+
args: [{
|
|
7049
|
+
required: true,
|
|
7050
|
+
alias: 'mosaikColumnDef'
|
|
7051
|
+
}]
|
|
7038
7052
|
}], cellDef: [{
|
|
7039
7053
|
type: ContentChild,
|
|
7040
7054
|
args: [CellDefDirective]
|