@breadstone/mosaik-elements-angular 0.0.201 → 0.0.203

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,17 @@
1
+ ## 0.0.203 (2025-12-06)
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.202 (2025-12-06)
6
+
7
+ ### 🚀 Features
8
+
9
+ - **error, hint:** add textOverflow property to Error and Hint components ([131d8bec1e](https://github.com/RueDeRennes/mosaik/commit/131d8bec1e))
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - **forms:** update SignalFormValidator to handle nested structures correctly ([49d0fdab8f](https://github.com/RueDeRennes/mosaik/commit/49d0fdab8f))
14
+
1
15
  ## 0.0.201 (2025-12-05)
2
16
 
3
17
  This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
@@ -24997,6 +24997,16 @@ let ErrorComponent = class ErrorComponent {
24997
24997
  this._element.text = value;
24998
24998
  });
24999
24999
  }
25000
+ get textOverflow() {
25001
+ // @ts-ignore - temporary fix for the type error
25002
+ return this._element.textOverflow;
25003
+ }
25004
+ set textOverflow(value) {
25005
+ this._zone.runOutsideAngular(() => {
25006
+ // @ts-ignore - temporary fix for the type error
25007
+ this._element.textOverflow = value;
25008
+ });
25009
+ }
25000
25010
  get themeName() {
25001
25011
  // @ts-ignore - temporary fix for the type error
25002
25012
  return this._element.themeName;
@@ -25068,12 +25078,12 @@ let ErrorComponent = class ErrorComponent {
25068
25078
  }
25069
25079
  }
25070
25080
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.2", ngImport: i0, type: ErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
25071
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.2", type: ErrorComponent, isStandalone: true, selector: "mosaik-error", inputs: { text: "text", themeName: "themeName", enter: "enter", exit: "exit", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
25081
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.2", type: ErrorComponent, isStandalone: true, selector: "mosaik-error", inputs: { text: "text", textOverflow: "textOverflow", themeName: "themeName", enter: "enter", exit: "exit", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
25072
25082
  };
25073
25083
  ErrorComponent = __decorate$25([
25074
25084
  ProxyCmp({
25075
25085
  defineCustomElementFn: () => customElements.define('mosaik-error', ErrorElement),
25076
- inputs: ['text', 'themeName', 'enter', 'exit', 'dir', 'lang'],
25086
+ inputs: ['text', 'textOverflow', 'themeName', 'enter', 'exit', 'dir', 'lang'],
25077
25087
  methods: ['onEnterAnimation', 'onExitAnimation', 'play', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
25078
25088
  }),
25079
25089
  __metadata$25("design:paramtypes", [])
@@ -25085,11 +25095,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.2", ngImpor
25085
25095
  standalone: true,
25086
25096
  changeDetection: ChangeDetectionStrategy.OnPush,
25087
25097
  template: '<ng-content></ng-content>',
25088
- inputs: ['text', 'themeName', 'enter', 'exit', 'dir', 'lang'],
25098
+ inputs: ['text', 'textOverflow', 'themeName', 'enter', 'exit', 'dir', 'lang'],
25089
25099
  outputs: ['connected', 'disconnected', 'changed']
25090
25100
  }]
25091
25101
  }], ctorParameters: () => [], propDecorators: { text: [{
25092
25102
  type: Input
25103
+ }], textOverflow: [{
25104
+ type: Input
25093
25105
  }], themeName: [{
25094
25106
  type: Input
25095
25107
  }], enter: [{
@@ -29056,26 +29068,6 @@ let FormFieldComponent = class FormFieldComponent {
29056
29068
  this._element.label = value;
29057
29069
  });
29058
29070
  }
29059
- get horizontalContentAlignment() {
29060
- // @ts-ignore - temporary fix for the type error
29061
- return this._element.horizontalContentAlignment;
29062
- }
29063
- set horizontalContentAlignment(value) {
29064
- this._zone.runOutsideAngular(() => {
29065
- // @ts-ignore - temporary fix for the type error
29066
- this._element.horizontalContentAlignment = value;
29067
- });
29068
- }
29069
- get verticalContentAlignment() {
29070
- // @ts-ignore - temporary fix for the type error
29071
- return this._element.verticalContentAlignment;
29072
- }
29073
- set verticalContentAlignment(value) {
29074
- this._zone.runOutsideAngular(() => {
29075
- // @ts-ignore - temporary fix for the type error
29076
- this._element.verticalContentAlignment = value;
29077
- });
29078
- }
29079
29071
  get validity() {
29080
29072
  // @ts-ignore - temporary fix for the type error
29081
29073
  return this._element.validity;
@@ -29197,12 +29189,12 @@ let FormFieldComponent = class FormFieldComponent {
29197
29189
  }
29198
29190
  }
29199
29191
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.2", ngImport: i0, type: FormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
29200
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.2", type: FormFieldComponent, isStandalone: true, selector: "mosaik-form-field", inputs: { invalid: "invalid", hint: "hint", error: "error", info: "info", validators: "validators", accessor: "accessor", required: "required", themeName: "themeName", label: "label", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", validity: "validity", validationMessage: "validationMessage", willValidate: "willValidate", name: "name", disabled: "disabled", internals: "internals", form: "form", labels: "labels", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
29192
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.2", type: FormFieldComponent, isStandalone: true, selector: "mosaik-form-field", inputs: { invalid: "invalid", hint: "hint", error: "error", info: "info", validators: "validators", accessor: "accessor", required: "required", themeName: "themeName", label: "label", validity: "validity", validationMessage: "validationMessage", willValidate: "willValidate", name: "name", disabled: "disabled", internals: "internals", form: "form", labels: "labels", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
29201
29193
  };
29202
29194
  FormFieldComponent = __decorate$1P([
29203
29195
  ProxyCmp({
29204
29196
  defineCustomElementFn: () => customElements.define('mosaik-form-field', FormFieldElement),
29205
- inputs: ['invalid', 'hint', 'error', 'info', 'validators', 'accessor', 'required', 'themeName', 'label', 'horizontalContentAlignment', 'verticalContentAlignment', 'validity', 'validationMessage', 'willValidate', 'name', 'disabled', 'internals', 'form', 'labels', 'dir', 'lang'],
29197
+ inputs: ['invalid', 'hint', 'error', 'info', 'validators', 'accessor', 'required', 'themeName', 'label', 'validity', 'validationMessage', 'willValidate', 'name', 'disabled', 'internals', 'form', 'labels', 'dir', 'lang'],
29206
29198
  methods: ['checkValidity', 'reportValidity', 'formDisabledCallback', 'formResetCallback', 'formStateRestoreCallback', 'getFormValue', 'onSlotChange', 'formAssociatedCallback', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate', 'getFormState']
29207
29199
  }),
29208
29200
  __metadata$1P("design:paramtypes", [])
@@ -29214,7 +29206,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.2", ngImpor
29214
29206
  standalone: true,
29215
29207
  changeDetection: ChangeDetectionStrategy.OnPush,
29216
29208
  template: '<ng-content></ng-content>',
29217
- inputs: ['invalid', 'hint', 'error', 'info', 'validators', 'accessor', 'required', 'themeName', 'label', 'horizontalContentAlignment', 'verticalContentAlignment', 'validity', 'validationMessage', 'willValidate', 'name', 'disabled', 'internals', 'form', 'labels', 'dir', 'lang'],
29209
+ inputs: ['invalid', 'hint', 'error', 'info', 'validators', 'accessor', 'required', 'themeName', 'label', 'validity', 'validationMessage', 'willValidate', 'name', 'disabled', 'internals', 'form', 'labels', 'dir', 'lang'],
29218
29210
  outputs: ['connected', 'disconnected', 'changed']
29219
29211
  }]
29220
29212
  }], ctorParameters: () => [], propDecorators: { invalid: [{
@@ -29235,10 +29227,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.2", ngImpor
29235
29227
  type: Input
29236
29228
  }], label: [{
29237
29229
  type: Input
29238
- }], horizontalContentAlignment: [{
29239
- type: Input
29240
- }], verticalContentAlignment: [{
29241
- type: Input
29242
29230
  }], validity: [{
29243
29231
  type: Input
29244
29232
  }], validationMessage: [{
@@ -30037,24 +30025,14 @@ let HintComponent = class HintComponent {
30037
30025
  this._element.text = value;
30038
30026
  });
30039
30027
  }
30040
- get wrap() {
30041
- // @ts-ignore - temporary fix for the type error
30042
- return this._element.wrap;
30043
- }
30044
- set wrap(value) {
30045
- this._zone.runOutsideAngular(() => {
30046
- // @ts-ignore - temporary fix for the type error
30047
- this._element.wrap = value;
30048
- });
30049
- }
30050
- get truncate() {
30028
+ get textOverflow() {
30051
30029
  // @ts-ignore - temporary fix for the type error
30052
- return this._element.truncate;
30030
+ return this._element.textOverflow;
30053
30031
  }
30054
- set truncate(value) {
30032
+ set textOverflow(value) {
30055
30033
  this._zone.runOutsideAngular(() => {
30056
30034
  // @ts-ignore - temporary fix for the type error
30057
- this._element.truncate = value;
30035
+ this._element.textOverflow = value;
30058
30036
  });
30059
30037
  }
30060
30038
  get alignment() {
@@ -30128,12 +30106,12 @@ let HintComponent = class HintComponent {
30128
30106
  }
30129
30107
  }
30130
30108
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.2", ngImport: i0, type: HintComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
30131
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.2", 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 });
30109
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.2", type: HintComponent, isStandalone: true, selector: "mosaik-hint", inputs: { text: "text", textOverflow: "textOverflow", 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 });
30132
30110
  };
30133
30111
  HintComponent = __decorate$1K([
30134
30112
  ProxyCmp({
30135
30113
  defineCustomElementFn: () => customElements.define('mosaik-hint', HintElement),
30136
- inputs: ['text', 'wrap', 'truncate', 'alignment', 'themeName', 'formatter', 'dir', 'lang'],
30114
+ inputs: ['text', 'textOverflow', 'alignment', 'themeName', 'formatter', 'dir', 'lang'],
30137
30115
  methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
30138
30116
  }),
30139
30117
  __metadata$1K("design:paramtypes", [])
@@ -30145,14 +30123,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.2", ngImpor
30145
30123
  standalone: true,
30146
30124
  changeDetection: ChangeDetectionStrategy.OnPush,
30147
30125
  template: '<ng-content></ng-content>',
30148
- inputs: ['text', 'wrap', 'truncate', 'alignment', 'themeName', 'formatter', 'dir', 'lang'],
30126
+ inputs: ['text', 'textOverflow', 'alignment', 'themeName', 'formatter', 'dir', 'lang'],
30149
30127
  outputs: ['connected', 'disconnected', 'changed']
30150
30128
  }]
30151
30129
  }], ctorParameters: () => [], propDecorators: { text: [{
30152
30130
  type: Input
30153
- }], wrap: [{
30154
- type: Input
30155
- }], truncate: [{
30131
+ }], textOverflow: [{
30156
30132
  type: Input
30157
30133
  }], alignment: [{
30158
30134
  type: Input