@breadstone/mosaik-elements-angular 0.0.122 → 0.0.123
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,10 @@
|
|
|
1
|
+
## 0.0.123 (2025-08-20)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add alignment property to HintComponent for better layout control ([2213e85eb3](https://github.com/RueDeRennes/mosaik/commit/2213e85eb3))
|
|
6
|
+
- add alignment property to HintElement and update template to support it ([985785e116](https://github.com/RueDeRennes/mosaik/commit/985785e116))
|
|
7
|
+
|
|
1
8
|
## 0.0.122 (2025-08-20)
|
|
2
9
|
|
|
3
10
|
### 🩹 Fixes
|
|
@@ -28082,6 +28082,16 @@ let HintComponent = class HintComponent {
|
|
|
28082
28082
|
this._element.truncate = value;
|
|
28083
28083
|
});
|
|
28084
28084
|
}
|
|
28085
|
+
get alignment() {
|
|
28086
|
+
// @ts-ignore - temporary fix for the type error
|
|
28087
|
+
return this._element.alignment;
|
|
28088
|
+
}
|
|
28089
|
+
set alignment(value) {
|
|
28090
|
+
this._zone.runOutsideAngular(() => {
|
|
28091
|
+
// @ts-ignore - temporary fix for the type error
|
|
28092
|
+
this._element.alignment = value;
|
|
28093
|
+
});
|
|
28094
|
+
}
|
|
28085
28095
|
get themeName() {
|
|
28086
28096
|
// @ts-ignore - temporary fix for the type error
|
|
28087
28097
|
return this._element.themeName;
|
|
@@ -28143,12 +28153,12 @@ let HintComponent = class HintComponent {
|
|
|
28143
28153
|
}
|
|
28144
28154
|
}
|
|
28145
28155
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: HintComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
28146
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: HintComponent, isStandalone: true, selector: "mosaik-hint", inputs: { text: "text", wrap: "wrap", truncate: "truncate", themeName: "themeName", formatter: "formatter", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
28156
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: HintComponent, isStandalone: true, selector: "mosaik-hint", inputs: { text: "text", wrap: "wrap", truncate: "truncate", alignment: "alignment", themeName: "themeName", formatter: "formatter", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
28147
28157
|
};
|
|
28148
28158
|
HintComponent = __decorate$1G([
|
|
28149
28159
|
ProxyCmp({
|
|
28150
28160
|
defineCustomElementFn: () => customElements.define('mosaik-hint', HintElement),
|
|
28151
|
-
inputs: ['text', 'wrap', 'truncate', 'themeName', 'formatter', 'dir', 'lang'],
|
|
28161
|
+
inputs: ['text', 'wrap', 'truncate', 'alignment', 'themeName', 'formatter', 'dir', 'lang'],
|
|
28152
28162
|
methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
28153
28163
|
}),
|
|
28154
28164
|
__metadata$1G("design:paramtypes", [])
|
|
@@ -28160,7 +28170,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
28160
28170
|
standalone: true,
|
|
28161
28171
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28162
28172
|
template: '<ng-content></ng-content>',
|
|
28163
|
-
inputs: ['text', 'wrap', 'truncate', 'themeName', 'formatter', 'dir', 'lang'],
|
|
28173
|
+
inputs: ['text', 'wrap', 'truncate', 'alignment', 'themeName', 'formatter', 'dir', 'lang'],
|
|
28164
28174
|
outputs: ['connected', 'disconnected', 'changed']
|
|
28165
28175
|
}]
|
|
28166
28176
|
}], ctorParameters: () => [], propDecorators: { text: [{
|
|
@@ -28169,6 +28179,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
28169
28179
|
type: Input
|
|
28170
28180
|
}], truncate: [{
|
|
28171
28181
|
type: Input
|
|
28182
|
+
}], alignment: [{
|
|
28183
|
+
type: Input
|
|
28172
28184
|
}], themeName: [{
|
|
28173
28185
|
type: Input
|
|
28174
28186
|
}], formatter: [{
|