@breadstone/mosaik-elements-angular 0.0.242 → 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,13 @@
|
|
|
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
|
+
|
|
1
11
|
## 0.0.242 (2026-04-30)
|
|
2
12
|
|
|
3
13
|
### 🚀 Features
|
|
@@ -76002,6 +76002,12 @@ let TableBodyCellComponent = class TableBodyCellComponent {
|
|
|
76002
76002
|
* @public
|
|
76003
76003
|
*/
|
|
76004
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 */ []));
|
|
76005
76011
|
/**
|
|
76006
76012
|
* Signal input for the `isSelected` property.
|
|
76007
76013
|
*
|
|
@@ -76063,6 +76069,10 @@ let TableBodyCellComponent = class TableBodyCellComponent {
|
|
|
76063
76069
|
if (themeNameValue !== undefined) {
|
|
76064
76070
|
this._element.themeName = themeNameValue;
|
|
76065
76071
|
}
|
|
76072
|
+
const valueValue = this.value();
|
|
76073
|
+
if (valueValue !== undefined) {
|
|
76074
|
+
this._element.value = valueValue;
|
|
76075
|
+
}
|
|
76066
76076
|
const isSelectedValue = this.isSelected();
|
|
76067
76077
|
if (isSelectedValue !== undefined) {
|
|
76068
76078
|
this._element.isSelected = isSelectedValue;
|
|
@@ -76155,12 +76165,12 @@ let TableBodyCellComponent = class TableBodyCellComponent {
|
|
|
76155
76165
|
this._element[property] = value;
|
|
76156
76166
|
}
|
|
76157
76167
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: TableBodyCellComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
76158
|
-
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 });
|
|
76159
76169
|
};
|
|
76160
76170
|
TableBodyCellComponent = __decorate$J([
|
|
76161
76171
|
ProxyCmp({
|
|
76162
76172
|
defineCustomElementFn: () => customElements.define('mosaik-table-body-cell', TableBodyCellElement),
|
|
76163
|
-
inputs: ['themeName', 'isSelected', 'text', 'columnHidden', 'disabled', 'formatter', 'textOverflow', 'dir', 'lang'],
|
|
76173
|
+
inputs: ['themeName', 'value', 'isSelected', 'text', 'columnHidden', 'disabled', 'formatter', 'textOverflow', 'dir', 'lang'],
|
|
76164
76174
|
methods: ['getContentWidth', 'select', 'deselect', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
76165
76175
|
}),
|
|
76166
76176
|
__metadata$J("design:paramtypes", [])
|
|
@@ -76173,7 +76183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
76173
76183
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
76174
76184
|
template: '<ng-content></ng-content>'
|
|
76175
76185
|
}]
|
|
76176
|
-
}], 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"] }] } });
|
|
76177
76187
|
/**
|
|
76178
76188
|
* @public
|
|
76179
76189
|
*/
|
|
@@ -76238,6 +76248,12 @@ let TableBodyRowComponent = class TableBodyRowComponent {
|
|
|
76238
76248
|
* @public
|
|
76239
76249
|
*/
|
|
76240
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 */ []));
|
|
76241
76257
|
/**
|
|
76242
76258
|
* Signal input for the `isSelected` property.
|
|
76243
76259
|
*
|
|
@@ -76275,6 +76291,10 @@ let TableBodyRowComponent = class TableBodyRowComponent {
|
|
|
76275
76291
|
if (themeNameValue !== undefined) {
|
|
76276
76292
|
this._element.themeName = themeNameValue;
|
|
76277
76293
|
}
|
|
76294
|
+
const valueValue = this.value();
|
|
76295
|
+
if (valueValue !== undefined) {
|
|
76296
|
+
this._element.value = valueValue;
|
|
76297
|
+
}
|
|
76278
76298
|
const isSelectedValue = this.isSelected();
|
|
76279
76299
|
if (isSelectedValue !== undefined) {
|
|
76280
76300
|
this._element.isSelected = isSelectedValue;
|
|
@@ -76351,12 +76371,12 @@ let TableBodyRowComponent = class TableBodyRowComponent {
|
|
|
76351
76371
|
this._element[property] = value;
|
|
76352
76372
|
}
|
|
76353
76373
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: TableBodyRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
76354
|
-
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 });
|
|
76355
76375
|
};
|
|
76356
76376
|
TableBodyRowComponent = __decorate$I([
|
|
76357
76377
|
ProxyCmp({
|
|
76358
76378
|
defineCustomElementFn: () => customElements.define('mosaik-table-body-row', TableBodyRowElement),
|
|
76359
|
-
inputs: ['themeName', 'isSelected', 'disabled', 'dir', 'lang'],
|
|
76379
|
+
inputs: ['themeName', 'value', 'isSelected', 'disabled', 'dir', 'lang'],
|
|
76360
76380
|
methods: ['select', 'deselect', 'onSlotChange', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
76361
76381
|
}),
|
|
76362
76382
|
__metadata$I("design:paramtypes", [])
|
|
@@ -76369,7 +76389,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
76369
76389
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
76370
76390
|
template: '<ng-content></ng-content>'
|
|
76371
76391
|
}]
|
|
76372
|
-
}], 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"] }] } });
|
|
76373
76393
|
/**
|
|
76374
76394
|
* @public
|
|
76375
76395
|
*/
|