@breadstone/mosaik-elements-angular 0.0.241 → 0.0.243

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,23 @@
1
+ ## 0.0.243 (2026-04-30)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **data-table:** add events for table selection and editor state changes ([eb94167184](https://github.com/RueDeRennes/mosaik/commit/eb94167184))
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **api:** update event detail definitions and add value property to table components ([2610ad2acb](https://github.com/RueDeRennes/mosaik/commit/2610ad2acb))
10
+
11
+ ## 0.0.242 (2026-04-30)
12
+
13
+ ### 🚀 Features
14
+
15
+ - **release:** update release commands to use version from mosaik-themes package ([89c563205d](https://github.com/RueDeRennes/mosaik/commit/89c563205d))
16
+
17
+ ### 🩹 Fixes
18
+
19
+ - **release:** update changelog command to use version from mosaik-themes package ([cbe25acac5](https://github.com/RueDeRennes/mosaik/commit/cbe25acac5))
20
+
1
21
  ## 0.0.241 (2026-04-30)
2
22
 
3
23
  ### 🚀 Features
@@ -5598,6 +5598,9 @@ let DataTableComponent = class DataTableComponent {
5598
5598
  this._accessor = dataTableElementValueAccessor(this._element);
5599
5599
  this._element.addController(this._accessor);
5600
5600
  // Wire up output events from the native element
5601
+ this._element.on('tableSelectionChanged', (e) => this.tableSelectionChanged.emit(e instanceof CustomEvent ? e.detail : undefined));
5602
+ this._element.on('dataTableEditorOpened', (e) => this.dataTableEditorOpened.emit(e instanceof CustomEvent ? e.detail : undefined));
5603
+ this._element.on('dataTableEditorClosed', (e) => this.dataTableEditorClosed.emit(e instanceof CustomEvent ? e.detail : undefined));
5601
5604
  this._element.on('changed', (e) => this.changed.emit(e instanceof CustomEvent ? e.detail : undefined));
5602
5605
  this._element.on('connected', (e) => this.connected.emit(e instanceof CustomEvent ? e.detail : undefined));
5603
5606
  this._element.on('disconnected', (e) => this.disconnected.emit(e instanceof CustomEvent ? e.detail : undefined));
@@ -5858,6 +5861,24 @@ let DataTableComponent = class DataTableComponent {
5858
5861
  }
5859
5862
  // #endregion
5860
5863
  // #region Outputs
5864
+ /**
5865
+ * Output signal for the `tableSelectionChanged` event.
5866
+ *
5867
+ * @public
5868
+ */
5869
+ tableSelectionChanged = output();
5870
+ /**
5871
+ * Output signal for the `dataTableEditorOpened` event.
5872
+ *
5873
+ * @public
5874
+ */
5875
+ dataTableEditorOpened = output();
5876
+ /**
5877
+ * Output signal for the `dataTableEditorClosed` event.
5878
+ *
5879
+ * @public
5880
+ */
5881
+ dataTableEditorClosed = output();
5861
5882
  /**
5862
5883
  * Output signal for the `changed` event.
5863
5884
  *
@@ -5916,7 +5937,7 @@ let DataTableComponent = class DataTableComponent {
5916
5937
  this._element[property] = value;
5917
5938
  }
5918
5939
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: DataTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5919
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: DataTableComponent, isStandalone: true, selector: "mosaik-data-table", inputs: { intl: { classPropertyName: "intl", publicName: "intl", isSignal: true, isRequired: false, transformFunction: null }, editorOpened: { classPropertyName: "editorOpened", publicName: "editorOpened", isSignal: true, isRequired: false, transformFunction: null }, sorted: { classPropertyName: "sorted", publicName: "sorted", isSignal: true, isRequired: false, transformFunction: null }, sortedSource: { classPropertyName: "sortedSource", publicName: "sortedSource", isSignal: true, isRequired: false, transformFunction: null }, allColumnsHidden: { classPropertyName: "allColumnsHidden", publicName: "allColumnsHidden", isSignal: true, isRequired: false, transformFunction: null }, alternating: { classPropertyName: "alternating", publicName: "alternating", isSignal: true, isRequired: false, transformFunction: null }, autoGenerateColumns: { classPropertyName: "autoGenerateColumns", publicName: "autoGenerateColumns", isSignal: true, isRequired: false, transformFunction: null }, columnDefinitions: { classPropertyName: "columnDefinitions", publicName: "columnDefinitions", isSignal: true, isRequired: false, transformFunction: null }, caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null }, selectionType: { classPropertyName: "selectionType", publicName: "selectionType", isSignal: true, isRequired: false, transformFunction: null }, selectionMode: { classPropertyName: "selectionMode", publicName: "selectionMode", isSignal: true, isRequired: false, transformFunction: null }, resizable: { classPropertyName: "resizable", publicName: "resizable", isSignal: true, isRequired: false, transformFunction: null }, sortable: { classPropertyName: "sortable", publicName: "sortable", isSignal: true, isRequired: false, transformFunction: null }, pinable: { classPropertyName: "pinable", publicName: "pinable", isSignal: true, isRequired: false, transformFunction: null }, hideable: { classPropertyName: "hideable", publicName: "hideable", isSignal: true, isRequired: false, transformFunction: null }, autoSizeable: { classPropertyName: "autoSizeable", publicName: "autoSizeable", isSignal: true, isRequired: false, transformFunction: null }, columnChoosable: { classPropertyName: "columnChoosable", publicName: "columnChoosable", isSignal: true, isRequired: false, transformFunction: null }, reorderable: { classPropertyName: "reorderable", publicName: "reorderable", isSignal: true, isRequired: false, transformFunction: null }, sortMode: { classPropertyName: "sortMode", publicName: "sortMode", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, source: { classPropertyName: "source", publicName: "source", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { changed: "changed", connected: "connected", disconnected: "disconnected" }, providers: [
5940
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: DataTableComponent, isStandalone: true, selector: "mosaik-data-table", inputs: { intl: { classPropertyName: "intl", publicName: "intl", isSignal: true, isRequired: false, transformFunction: null }, editorOpened: { classPropertyName: "editorOpened", publicName: "editorOpened", isSignal: true, isRequired: false, transformFunction: null }, sorted: { classPropertyName: "sorted", publicName: "sorted", isSignal: true, isRequired: false, transformFunction: null }, sortedSource: { classPropertyName: "sortedSource", publicName: "sortedSource", isSignal: true, isRequired: false, transformFunction: null }, allColumnsHidden: { classPropertyName: "allColumnsHidden", publicName: "allColumnsHidden", isSignal: true, isRequired: false, transformFunction: null }, alternating: { classPropertyName: "alternating", publicName: "alternating", isSignal: true, isRequired: false, transformFunction: null }, autoGenerateColumns: { classPropertyName: "autoGenerateColumns", publicName: "autoGenerateColumns", isSignal: true, isRequired: false, transformFunction: null }, columnDefinitions: { classPropertyName: "columnDefinitions", publicName: "columnDefinitions", isSignal: true, isRequired: false, transformFunction: null }, caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null }, selectionType: { classPropertyName: "selectionType", publicName: "selectionType", isSignal: true, isRequired: false, transformFunction: null }, selectionMode: { classPropertyName: "selectionMode", publicName: "selectionMode", isSignal: true, isRequired: false, transformFunction: null }, resizable: { classPropertyName: "resizable", publicName: "resizable", isSignal: true, isRequired: false, transformFunction: null }, sortable: { classPropertyName: "sortable", publicName: "sortable", isSignal: true, isRequired: false, transformFunction: null }, pinable: { classPropertyName: "pinable", publicName: "pinable", isSignal: true, isRequired: false, transformFunction: null }, hideable: { classPropertyName: "hideable", publicName: "hideable", isSignal: true, isRequired: false, transformFunction: null }, autoSizeable: { classPropertyName: "autoSizeable", publicName: "autoSizeable", isSignal: true, isRequired: false, transformFunction: null }, columnChoosable: { classPropertyName: "columnChoosable", publicName: "columnChoosable", isSignal: true, isRequired: false, transformFunction: null }, reorderable: { classPropertyName: "reorderable", publicName: "reorderable", isSignal: true, isRequired: false, transformFunction: null }, sortMode: { classPropertyName: "sortMode", publicName: "sortMode", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, source: { classPropertyName: "source", publicName: "source", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { tableSelectionChanged: "tableSelectionChanged", dataTableEditorOpened: "dataTableEditorOpened", dataTableEditorClosed: "dataTableEditorClosed", changed: "changed", connected: "connected", disconnected: "disconnected" }, providers: [
5920
5941
  {
5921
5942
  provide: NG_VALUE_ACCESSOR,
5922
5943
  useExisting: forwardRef(() => DataTableComponent),
@@ -5956,7 +5977,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
5956
5977
  }
5957
5978
  ]
5958
5979
  }]
5959
- }], ctorParameters: () => [], propDecorators: { intl: [{ type: i0.Input, args: [{ isSignal: true, alias: "intl", required: false }] }], editorOpened: [{ type: i0.Input, args: [{ isSignal: true, alias: "editorOpened", required: false }] }], sorted: [{ type: i0.Input, args: [{ isSignal: true, alias: "sorted", required: false }] }], sortedSource: [{ type: i0.Input, args: [{ isSignal: true, alias: "sortedSource", required: false }] }], allColumnsHidden: [{ type: i0.Input, args: [{ isSignal: true, alias: "allColumnsHidden", required: false }] }], alternating: [{ type: i0.Input, args: [{ isSignal: true, alias: "alternating", required: false }] }], autoGenerateColumns: [{ type: i0.Input, args: [{ isSignal: true, alias: "autoGenerateColumns", required: false }] }], columnDefinitions: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnDefinitions", required: false }] }], caption: [{ type: i0.Input, args: [{ isSignal: true, alias: "caption", required: false }] }], selectionType: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectionType", required: false }] }], selectionMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectionMode", required: false }] }], resizable: [{ type: i0.Input, args: [{ isSignal: true, alias: "resizable", required: false }] }], sortable: [{ type: i0.Input, args: [{ isSignal: true, alias: "sortable", required: false }] }], pinable: [{ type: i0.Input, args: [{ isSignal: true, alias: "pinable", required: false }] }], hideable: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideable", required: false }] }], autoSizeable: [{ type: i0.Input, args: [{ isSignal: true, alias: "autoSizeable", required: false }] }], columnChoosable: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnChoosable", required: false }] }], reorderable: [{ type: i0.Input, args: [{ isSignal: true, alias: "reorderable", required: false }] }], sortMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "sortMode", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], source: [{ type: i0.Input, args: [{ isSignal: true, alias: "source", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], changed: [{ type: i0.Output, args: ["changed"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }] } });
5980
+ }], ctorParameters: () => [], propDecorators: { intl: [{ type: i0.Input, args: [{ isSignal: true, alias: "intl", required: false }] }], editorOpened: [{ type: i0.Input, args: [{ isSignal: true, alias: "editorOpened", required: false }] }], sorted: [{ type: i0.Input, args: [{ isSignal: true, alias: "sorted", required: false }] }], sortedSource: [{ type: i0.Input, args: [{ isSignal: true, alias: "sortedSource", required: false }] }], allColumnsHidden: [{ type: i0.Input, args: [{ isSignal: true, alias: "allColumnsHidden", required: false }] }], alternating: [{ type: i0.Input, args: [{ isSignal: true, alias: "alternating", required: false }] }], autoGenerateColumns: [{ type: i0.Input, args: [{ isSignal: true, alias: "autoGenerateColumns", required: false }] }], columnDefinitions: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnDefinitions", required: false }] }], caption: [{ type: i0.Input, args: [{ isSignal: true, alias: "caption", required: false }] }], selectionType: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectionType", required: false }] }], selectionMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectionMode", required: false }] }], resizable: [{ type: i0.Input, args: [{ isSignal: true, alias: "resizable", required: false }] }], sortable: [{ type: i0.Input, args: [{ isSignal: true, alias: "sortable", required: false }] }], pinable: [{ type: i0.Input, args: [{ isSignal: true, alias: "pinable", required: false }] }], hideable: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideable", required: false }] }], autoSizeable: [{ type: i0.Input, args: [{ isSignal: true, alias: "autoSizeable", required: false }] }], columnChoosable: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnChoosable", required: false }] }], reorderable: [{ type: i0.Input, args: [{ isSignal: true, alias: "reorderable", required: false }] }], sortMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "sortMode", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], source: [{ type: i0.Input, args: [{ isSignal: true, alias: "source", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], tableSelectionChanged: [{ type: i0.Output, args: ["tableSelectionChanged"] }], dataTableEditorOpened: [{ type: i0.Output, args: ["dataTableEditorOpened"] }], dataTableEditorClosed: [{ type: i0.Output, args: ["dataTableEditorClosed"] }], changed: [{ type: i0.Output, args: ["changed"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }] } });
5960
5981
  /**
5961
5982
  * @public
5962
5983
  */
@@ -75981,6 +76002,12 @@ let TableBodyCellComponent = class TableBodyCellComponent {
75981
76002
  * @public
75982
76003
  */
75983
76004
  themeName = input(...(ngDevMode ? [undefined, { debugName: "themeName" }] : /* istanbul ignore next */ []));
76005
+ /**
76006
+ * Signal input for the `value` property.
76007
+ *
76008
+ * @public
76009
+ */
76010
+ value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
75984
76011
  /**
75985
76012
  * Signal input for the `isSelected` property.
75986
76013
  *
@@ -76042,6 +76069,10 @@ let TableBodyCellComponent = class TableBodyCellComponent {
76042
76069
  if (themeNameValue !== undefined) {
76043
76070
  this._element.themeName = themeNameValue;
76044
76071
  }
76072
+ const valueValue = this.value();
76073
+ if (valueValue !== undefined) {
76074
+ this._element.value = valueValue;
76075
+ }
76045
76076
  const isSelectedValue = this.isSelected();
76046
76077
  if (isSelectedValue !== undefined) {
76047
76078
  this._element.isSelected = isSelectedValue;
@@ -76134,12 +76165,12 @@ let TableBodyCellComponent = class TableBodyCellComponent {
76134
76165
  this._element[property] = value;
76135
76166
  }
76136
76167
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: TableBodyCellComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76137
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: TableBodyCellComponent, isStandalone: true, selector: "mosaik-table-body-cell", inputs: { themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, isSelected: { classPropertyName: "isSelected", publicName: "isSelected", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, columnHidden: { classPropertyName: "columnHidden", publicName: "columnHidden", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, formatter: { classPropertyName: "formatter", publicName: "formatter", isSignal: true, isRequired: false, transformFunction: null }, textOverflow: { classPropertyName: "textOverflow", publicName: "textOverflow", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selected", deselected: "deselected", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76168
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: TableBodyCellComponent, isStandalone: true, selector: "mosaik-table-body-cell", inputs: { themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, isSelected: { classPropertyName: "isSelected", publicName: "isSelected", isSignal: true, isRequired: false, transformFunction: null }, text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, columnHidden: { classPropertyName: "columnHidden", publicName: "columnHidden", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, formatter: { classPropertyName: "formatter", publicName: "formatter", isSignal: true, isRequired: false, transformFunction: null }, textOverflow: { classPropertyName: "textOverflow", publicName: "textOverflow", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selected", deselected: "deselected", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76138
76169
  };
76139
76170
  TableBodyCellComponent = __decorate$J([
76140
76171
  ProxyCmp({
76141
76172
  defineCustomElementFn: () => customElements.define('mosaik-table-body-cell', TableBodyCellElement),
76142
- inputs: ['themeName', 'isSelected', 'text', 'columnHidden', 'disabled', 'formatter', 'textOverflow', 'dir', 'lang'],
76173
+ inputs: ['themeName', 'value', 'isSelected', 'text', 'columnHidden', 'disabled', 'formatter', 'textOverflow', 'dir', 'lang'],
76143
76174
  methods: ['getContentWidth', 'select', 'deselect', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
76144
76175
  }),
76145
76176
  __metadata$J("design:paramtypes", [])
@@ -76152,7 +76183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
76152
76183
  changeDetection: ChangeDetectionStrategy.OnPush,
76153
76184
  template: '<ng-content></ng-content>'
76154
76185
  }]
76155
- }], ctorParameters: () => [], propDecorators: { themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], isSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "isSelected", required: false }] }], text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], columnHidden: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnHidden", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], formatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatter", required: false }] }], textOverflow: [{ type: i0.Input, args: [{ isSignal: true, alias: "textOverflow", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], selected: [{ type: i0.Output, args: ["selected"] }], deselected: [{ type: i0.Output, args: ["deselected"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
76186
+ }], ctorParameters: () => [], propDecorators: { themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], isSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "isSelected", required: false }] }], text: [{ type: i0.Input, args: [{ isSignal: true, alias: "text", required: false }] }], columnHidden: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnHidden", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], formatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "formatter", required: false }] }], textOverflow: [{ type: i0.Input, args: [{ isSignal: true, alias: "textOverflow", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], selected: [{ type: i0.Output, args: ["selected"] }], deselected: [{ type: i0.Output, args: ["deselected"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
76156
76187
  /**
76157
76188
  * @public
76158
76189
  */
@@ -76217,6 +76248,12 @@ let TableBodyRowComponent = class TableBodyRowComponent {
76217
76248
  * @public
76218
76249
  */
76219
76250
  themeName = input(...(ngDevMode ? [undefined, { debugName: "themeName" }] : /* istanbul ignore next */ []));
76251
+ /**
76252
+ * Signal input for the `value` property.
76253
+ *
76254
+ * @public
76255
+ */
76256
+ value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
76220
76257
  /**
76221
76258
  * Signal input for the `isSelected` property.
76222
76259
  *
@@ -76254,6 +76291,10 @@ let TableBodyRowComponent = class TableBodyRowComponent {
76254
76291
  if (themeNameValue !== undefined) {
76255
76292
  this._element.themeName = themeNameValue;
76256
76293
  }
76294
+ const valueValue = this.value();
76295
+ if (valueValue !== undefined) {
76296
+ this._element.value = valueValue;
76297
+ }
76257
76298
  const isSelectedValue = this.isSelected();
76258
76299
  if (isSelectedValue !== undefined) {
76259
76300
  this._element.isSelected = isSelectedValue;
@@ -76330,12 +76371,12 @@ let TableBodyRowComponent = class TableBodyRowComponent {
76330
76371
  this._element[property] = value;
76331
76372
  }
76332
76373
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: TableBodyRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76333
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: TableBodyRowComponent, isStandalone: true, selector: "mosaik-table-body-row", inputs: { themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, isSelected: { classPropertyName: "isSelected", publicName: "isSelected", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selected", deselected: "deselected", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76374
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.10", type: TableBodyRowComponent, isStandalone: true, selector: "mosaik-table-body-row", inputs: { themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, isSelected: { classPropertyName: "isSelected", publicName: "isSelected", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selected", deselected: "deselected", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76334
76375
  };
76335
76376
  TableBodyRowComponent = __decorate$I([
76336
76377
  ProxyCmp({
76337
76378
  defineCustomElementFn: () => customElements.define('mosaik-table-body-row', TableBodyRowElement),
76338
- inputs: ['themeName', 'isSelected', 'disabled', 'dir', 'lang'],
76379
+ inputs: ['themeName', 'value', 'isSelected', 'disabled', 'dir', 'lang'],
76339
76380
  methods: ['select', 'deselect', 'onSlotChange', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
76340
76381
  }),
76341
76382
  __metadata$I("design:paramtypes", [])
@@ -76348,7 +76389,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
76348
76389
  changeDetection: ChangeDetectionStrategy.OnPush,
76349
76390
  template: '<ng-content></ng-content>'
76350
76391
  }]
76351
- }], ctorParameters: () => [], propDecorators: { themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], isSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "isSelected", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], selected: [{ type: i0.Output, args: ["selected"] }], deselected: [{ type: i0.Output, args: ["deselected"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
76392
+ }], ctorParameters: () => [], propDecorators: { themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], isSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "isSelected", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], selected: [{ type: i0.Output, args: ["selected"] }], deselected: [{ type: i0.Output, args: ["deselected"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
76352
76393
  /**
76353
76394
  * @public
76354
76395
  */