@breadstone/mosaik-elements-angular 0.1.33 → 0.1.35
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.1.35 (2026-06-26)
|
|
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.1.34 (2026-06-26)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- **data-table:** add dataTableSortChanged event and related interfaces ([511727e2f9](https://github.com/RueDeRennes/mosaik/commit/511727e2f9))
|
|
10
|
+
|
|
1
11
|
## 0.1.33 (2026-06-25)
|
|
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.
|
|
@@ -6273,7 +6273,7 @@ let DataTableComponent = class DataTableComponent {
|
|
|
6273
6273
|
this._accessor = dataTableElementValueAccessor(this._elementRef.nativeElement);
|
|
6274
6274
|
this._elementRef.nativeElement.addController(this._accessor);
|
|
6275
6275
|
// Wire up output events from the native element
|
|
6276
|
-
this._outputSubscriptions.push(this._elementRef.nativeElement.on('tableSelectionChanged', (e) => this.tableSelectionChanged.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('dataTableEditorOpened', (e) => this.dataTableEditorOpened.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('dataTableEditorClosed', (e) => this.dataTableEditorClosed.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('changed', (e) => this.changed.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('connected', (e) => this.connected.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('disconnected', (e) => this.disconnected.emit(e instanceof CustomEvent ? e.detail : undefined)));
|
|
6276
|
+
this._outputSubscriptions.push(this._elementRef.nativeElement.on('tableSelectionChanged', (e) => this.tableSelectionChanged.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('dataTableEditorOpened', (e) => this.dataTableEditorOpened.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('dataTableEditorClosed', (e) => this.dataTableEditorClosed.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('dataTableSortChanged', (e) => this.dataTableSortChanged.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('changed', (e) => this.changed.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('connected', (e) => this.connected.emit(e instanceof CustomEvent ? e.detail : undefined)), this._elementRef.nativeElement.on('disconnected', (e) => this.disconnected.emit(e instanceof CustomEvent ? e.detail : undefined)));
|
|
6277
6277
|
this._destroyRef.onDestroy(() => {
|
|
6278
6278
|
this._outputSubscriptions.forEach((subscription) => subscription.dispose());
|
|
6279
6279
|
this._outputSubscriptions.length = 0;
|
|
@@ -6591,6 +6591,12 @@ let DataTableComponent = class DataTableComponent {
|
|
|
6591
6591
|
* @public
|
|
6592
6592
|
*/
|
|
6593
6593
|
dataTableEditorClosed = output();
|
|
6594
|
+
/**
|
|
6595
|
+
* Output signal for the `dataTableSortChanged` event.
|
|
6596
|
+
*
|
|
6597
|
+
* @public
|
|
6598
|
+
*/
|
|
6599
|
+
dataTableSortChanged = output();
|
|
6594
6600
|
/**
|
|
6595
6601
|
* Output signal for the `changed` event.
|
|
6596
6602
|
*
|
|
@@ -6649,7 +6655,7 @@ let DataTableComponent = class DataTableComponent {
|
|
|
6649
6655
|
this._elementRef.nativeElement[property] = value;
|
|
6650
6656
|
}
|
|
6651
6657
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: DataTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6652
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", 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: [
|
|
6658
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", 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", dataTableSortChanged: "dataTableSortChanged", changed: "changed", connected: "connected", disconnected: "disconnected" }, providers: [
|
|
6653
6659
|
{
|
|
6654
6660
|
provide: NG_VALUE_ACCESSOR,
|
|
6655
6661
|
useExisting: forwardRef(() => DataTableComponent),
|
|
@@ -6689,7 +6695,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
6689
6695
|
}
|
|
6690
6696
|
]
|
|
6691
6697
|
}]
|
|
6692
|
-
}], 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"] }] } });
|
|
6698
|
+
}], 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"] }], dataTableSortChanged: [{ type: i0.Output, args: ["dataTableSortChanged"] }], changed: [{ type: i0.Output, args: ["changed"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }] } });
|
|
6693
6699
|
/**
|
|
6694
6700
|
* @public
|
|
6695
6701
|
*/
|
|
@@ -19222,7 +19228,7 @@ ToastComponent = __decorate$49([
|
|
|
19222
19228
|
ProxyCmp({
|
|
19223
19229
|
defineCustomElementFn: () => defineCustomElement('mosaik-toast', ToastElement),
|
|
19224
19230
|
inputs: ['header', 'content', 'icon', 'iconSize', 'timeout', 'position', 'showProgress', 'themeName', 'animationTarget', 'enter', 'exit', 'variant', 'appearance', 'formatter', 'isBusy', 'isOpen', 'hasBackdrop', 'pressEscapeToClose', 'clickOutsideToClose', 'closeable', 'dir', 'lang'],
|
|
19225
|
-
methods: ['close', 'play', 'onEnterAnimation', 'onExitAnimation'
|
|
19231
|
+
methods: ['open', 'close', 'play', 'onEnterAnimation', 'onExitAnimation']
|
|
19226
19232
|
}),
|
|
19227
19233
|
__metadata$49("design:paramtypes", [])
|
|
19228
19234
|
], ToastComponent);
|