@breadstone/mosaik-elements-angular 0.0.241 → 0.0.242

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,13 @@
1
+ ## 0.0.242 (2026-04-30)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **release:** update release commands to use version from mosaik-themes package ([89c563205d](https://github.com/RueDeRennes/mosaik/commit/89c563205d))
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **release:** update changelog command to use version from mosaik-themes package ([cbe25acac5](https://github.com/RueDeRennes/mosaik/commit/cbe25acac5))
10
+
1
11
  ## 0.0.241 (2026-04-30)
2
12
 
3
13
  ### 🚀 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
  */