@breadstone/mosaik-elements-angular 0.0.138 → 0.0.140
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 +10 -0
- package/fesm2022/mosaik-elements-angular.mjs +3 -15
- package/fesm2022/mosaik-elements-angular.mjs.map +1 -1
- package/index.d.ts +1 -3
- package/index.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.0.140 (2025-09-10)
|
|
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.0.139 (2025-09-08)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- add reorderable and resizable properties to TileListItemElement and update related styles ([84672caf3a](https://github.com/RueDeRennes/mosaik/commit/84672caf3a))
|
|
10
|
+
|
|
1
11
|
## 0.0.138 (2025-09-07)
|
|
2
12
|
|
|
3
13
|
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
@@ -52123,16 +52123,6 @@ let TileListItemComponent = class TileListItemComponent {
|
|
|
52123
52123
|
this._element.rowSpan = value;
|
|
52124
52124
|
});
|
|
52125
52125
|
}
|
|
52126
|
-
get title() {
|
|
52127
|
-
// @ts-ignore - temporary fix for the type error
|
|
52128
|
-
return this._element.title;
|
|
52129
|
-
}
|
|
52130
|
-
set title(value) {
|
|
52131
|
-
this._zone.runOutsideAngular(() => {
|
|
52132
|
-
// @ts-ignore - temporary fix for the type error
|
|
52133
|
-
this._element.title = value;
|
|
52134
|
-
});
|
|
52135
|
-
}
|
|
52136
52126
|
get themeName() {
|
|
52137
52127
|
// @ts-ignore - temporary fix for the type error
|
|
52138
52128
|
return this._element.themeName;
|
|
@@ -52184,12 +52174,12 @@ let TileListItemComponent = class TileListItemComponent {
|
|
|
52184
52174
|
}
|
|
52185
52175
|
}
|
|
52186
52176
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: TileListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
52187
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: TileListItemComponent, isStandalone: true, selector: "mosaik-tile-list-item", inputs: { col: "col", colSpan: "colSpan", order: "order", reorderable: "reorderable", resizable: "resizable", row: "row", rowSpan: "rowSpan",
|
|
52177
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: TileListItemComponent, isStandalone: true, selector: "mosaik-tile-list-item", inputs: { col: "col", colSpan: "colSpan", order: "order", reorderable: "reorderable", resizable: "resizable", row: "row", rowSpan: "rowSpan", themeName: "themeName", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
52188
52178
|
};
|
|
52189
52179
|
TileListItemComponent = __decorate$i([
|
|
52190
52180
|
ProxyCmp({
|
|
52191
52181
|
defineCustomElementFn: () => customElements.define('mosaik-tile-list-item', TileListItemElement),
|
|
52192
|
-
inputs: ['col', 'colSpan', 'order', 'reorderable', 'resizable', 'row', 'rowSpan', '
|
|
52182
|
+
inputs: ['col', 'colSpan', 'order', 'reorderable', 'resizable', 'row', 'rowSpan', 'themeName', 'dir', 'lang'],
|
|
52193
52183
|
methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
52194
52184
|
}),
|
|
52195
52185
|
__metadata$i("design:paramtypes", [])
|
|
@@ -52201,7 +52191,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
52201
52191
|
standalone: true,
|
|
52202
52192
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
52203
52193
|
template: '<ng-content></ng-content>',
|
|
52204
|
-
inputs: ['col', 'colSpan', 'order', 'reorderable', 'resizable', 'row', 'rowSpan', '
|
|
52194
|
+
inputs: ['col', 'colSpan', 'order', 'reorderable', 'resizable', 'row', 'rowSpan', 'themeName', 'dir', 'lang'],
|
|
52205
52195
|
outputs: ['connected', 'disconnected', 'changed']
|
|
52206
52196
|
}]
|
|
52207
52197
|
}], ctorParameters: () => [], propDecorators: { col: [{
|
|
@@ -52218,8 +52208,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
52218
52208
|
type: Input
|
|
52219
52209
|
}], rowSpan: [{
|
|
52220
52210
|
type: Input
|
|
52221
|
-
}], title: [{
|
|
52222
|
-
type: Input
|
|
52223
52211
|
}], themeName: [{
|
|
52224
52212
|
type: Input
|
|
52225
52213
|
}], dir: [{
|