@breadstone/mosaik-elements-angular 0.0.242 → 0.0.244
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.244 (2026-04-30)
|
|
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.243 (2026-04-30)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- **data-table:** add events for table selection and editor state changes ([eb94167184](https://github.com/RueDeRennes/mosaik/commit/eb94167184))
|
|
10
|
+
|
|
11
|
+
### 🩹 Fixes
|
|
12
|
+
|
|
13
|
+
- **api:** update event detail definitions and add value property to table components ([2610ad2acb](https://github.com/RueDeRennes/mosaik/commit/2610ad2acb))
|
|
14
|
+
|
|
1
15
|
## 0.0.242 (2026-04-30)
|
|
2
16
|
|
|
3
17
|
### 🚀 Features
|
|
@@ -17222,6 +17222,10 @@ let ToastComponent = class ToastComponent {
|
|
|
17222
17222
|
if (headerValue !== undefined) {
|
|
17223
17223
|
this._element.header = headerValue;
|
|
17224
17224
|
}
|
|
17225
|
+
const contentValue = this.content();
|
|
17226
|
+
if (contentValue !== undefined) {
|
|
17227
|
+
this._element.content = contentValue;
|
|
17228
|
+
}
|
|
17225
17229
|
const timeoutValue = this.timeout();
|
|
17226
17230
|
if (timeoutValue !== undefined) {
|
|
17227
17231
|
this._element.timeout = timeoutValue;
|
|
@@ -22234,6 +22238,10 @@ let BusyStateComponent = class BusyStateComponent {
|
|
|
22234
22238
|
if (themeNameValue !== undefined) {
|
|
22235
22239
|
this._element.themeName = themeNameValue;
|
|
22236
22240
|
}
|
|
22241
|
+
const contentValue = this.content();
|
|
22242
|
+
if (contentValue !== undefined) {
|
|
22243
|
+
this._element.content = contentValue;
|
|
22244
|
+
}
|
|
22237
22245
|
const formatterValue = this.formatter();
|
|
22238
22246
|
if (formatterValue !== undefined) {
|
|
22239
22247
|
this._element.formatter = formatterValue;
|
|
@@ -25296,6 +25304,10 @@ let CardComponent = class CardComponent {
|
|
|
25296
25304
|
if (subHeaderValue !== undefined) {
|
|
25297
25305
|
this._element.subHeader = subHeaderValue;
|
|
25298
25306
|
}
|
|
25307
|
+
const contentValue = this.content();
|
|
25308
|
+
if (contentValue !== undefined) {
|
|
25309
|
+
this._element.content = contentValue;
|
|
25310
|
+
}
|
|
25299
25311
|
const inlineMediaValue = this.inlineMedia();
|
|
25300
25312
|
if (inlineMediaValue !== undefined) {
|
|
25301
25313
|
this._element.inlineMedia = inlineMediaValue;
|
|
@@ -37366,6 +37378,10 @@ let CommentComponent = class CommentComponent {
|
|
|
37366
37378
|
if (atValue !== undefined) {
|
|
37367
37379
|
this._element.at = atValue;
|
|
37368
37380
|
}
|
|
37381
|
+
const contentValue = this.content();
|
|
37382
|
+
if (contentValue !== undefined) {
|
|
37383
|
+
this._element.content = contentValue;
|
|
37384
|
+
}
|
|
37369
37385
|
const themeNameValue = this.themeName();
|
|
37370
37386
|
if (themeNameValue !== undefined) {
|
|
37371
37387
|
this._element.themeName = themeNameValue;
|
|
@@ -41537,6 +41553,10 @@ let DrawerContainerComponent = class DrawerContainerComponent {
|
|
|
41537
41553
|
if (hasBackdropValue !== undefined) {
|
|
41538
41554
|
this._element.hasBackdrop = hasBackdropValue;
|
|
41539
41555
|
}
|
|
41556
|
+
const contentValue = this.content();
|
|
41557
|
+
if (contentValue !== undefined) {
|
|
41558
|
+
this._element.content = contentValue;
|
|
41559
|
+
}
|
|
41540
41560
|
const themeNameValue = this.themeName();
|
|
41541
41561
|
if (themeNameValue !== undefined) {
|
|
41542
41562
|
this._element.themeName = themeNameValue;
|
|
@@ -43186,6 +43206,10 @@ let EmptyStateComponent = class EmptyStateComponent {
|
|
|
43186
43206
|
if (themeNameValue !== undefined) {
|
|
43187
43207
|
this._element.themeName = themeNameValue;
|
|
43188
43208
|
}
|
|
43209
|
+
const contentValue = this.content();
|
|
43210
|
+
if (contentValue !== undefined) {
|
|
43211
|
+
this._element.content = contentValue;
|
|
43212
|
+
}
|
|
43189
43213
|
const formatterValue = this.formatter();
|
|
43190
43214
|
if (formatterValue !== undefined) {
|
|
43191
43215
|
this._element.formatter = formatterValue;
|
|
@@ -44218,6 +44242,10 @@ let ErrorStateComponent = class ErrorStateComponent {
|
|
|
44218
44242
|
if (themeNameValue !== undefined) {
|
|
44219
44243
|
this._element.themeName = themeNameValue;
|
|
44220
44244
|
}
|
|
44245
|
+
const contentValue = this.content();
|
|
44246
|
+
if (contentValue !== undefined) {
|
|
44247
|
+
this._element.content = contentValue;
|
|
44248
|
+
}
|
|
44221
44249
|
const formatterValue = this.formatter();
|
|
44222
44250
|
if (formatterValue !== undefined) {
|
|
44223
44251
|
this._element.formatter = formatterValue;
|
|
@@ -54572,6 +54600,10 @@ let ListingItemComponent = class ListingItemComponent {
|
|
|
54572
54600
|
if (headerValue !== undefined) {
|
|
54573
54601
|
this._element.header = headerValue;
|
|
54574
54602
|
}
|
|
54603
|
+
const contentValue = this.content();
|
|
54604
|
+
if (contentValue !== undefined) {
|
|
54605
|
+
this._element.content = contentValue;
|
|
54606
|
+
}
|
|
54575
54607
|
const valueValue = this.value();
|
|
54576
54608
|
if (valueValue !== undefined) {
|
|
54577
54609
|
this._element.value = valueValue;
|
|
@@ -56707,6 +56739,10 @@ let MessageComponent = class MessageComponent {
|
|
|
56707
56739
|
if (headerValue !== undefined) {
|
|
56708
56740
|
this._element.header = headerValue;
|
|
56709
56741
|
}
|
|
56742
|
+
const contentValue = this.content();
|
|
56743
|
+
if (contentValue !== undefined) {
|
|
56744
|
+
this._element.content = contentValue;
|
|
56745
|
+
}
|
|
56710
56746
|
const expandableValue = this.expandable();
|
|
56711
56747
|
if (expandableValue !== undefined) {
|
|
56712
56748
|
this._element.expandable = expandableValue;
|
|
@@ -74160,6 +74196,10 @@ let SuccessStateComponent = class SuccessStateComponent {
|
|
|
74160
74196
|
if (themeNameValue !== undefined) {
|
|
74161
74197
|
this._element.themeName = themeNameValue;
|
|
74162
74198
|
}
|
|
74199
|
+
const contentValue = this.content();
|
|
74200
|
+
if (contentValue !== undefined) {
|
|
74201
|
+
this._element.content = contentValue;
|
|
74202
|
+
}
|
|
74163
74203
|
const formatterValue = this.formatter();
|
|
74164
74204
|
if (formatterValue !== undefined) {
|
|
74165
74205
|
this._element.formatter = formatterValue;
|
|
@@ -74341,6 +74381,10 @@ let SummaryComponent = class SummaryComponent {
|
|
|
74341
74381
|
if (headerValue !== undefined) {
|
|
74342
74382
|
this._element.header = headerValue;
|
|
74343
74383
|
}
|
|
74384
|
+
const contentValue = this.content();
|
|
74385
|
+
if (contentValue !== undefined) {
|
|
74386
|
+
this._element.content = contentValue;
|
|
74387
|
+
}
|
|
74344
74388
|
const themeNameValue = this.themeName();
|
|
74345
74389
|
if (themeNameValue !== undefined) {
|
|
74346
74390
|
this._element.themeName = themeNameValue;
|
|
@@ -76002,6 +76046,12 @@ let TableBodyCellComponent = class TableBodyCellComponent {
|
|
|
76002
76046
|
* @public
|
|
76003
76047
|
*/
|
|
76004
76048
|
themeName = input(...(ngDevMode ? [undefined, { debugName: "themeName" }] : /* istanbul ignore next */ []));
|
|
76049
|
+
/**
|
|
76050
|
+
* Signal input for the `value` property.
|
|
76051
|
+
*
|
|
76052
|
+
* @public
|
|
76053
|
+
*/
|
|
76054
|
+
value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
|
|
76005
76055
|
/**
|
|
76006
76056
|
* Signal input for the `isSelected` property.
|
|
76007
76057
|
*
|
|
@@ -76063,6 +76113,10 @@ let TableBodyCellComponent = class TableBodyCellComponent {
|
|
|
76063
76113
|
if (themeNameValue !== undefined) {
|
|
76064
76114
|
this._element.themeName = themeNameValue;
|
|
76065
76115
|
}
|
|
76116
|
+
const valueValue = this.value();
|
|
76117
|
+
if (valueValue !== undefined) {
|
|
76118
|
+
this._element.value = valueValue;
|
|
76119
|
+
}
|
|
76066
76120
|
const isSelectedValue = this.isSelected();
|
|
76067
76121
|
if (isSelectedValue !== undefined) {
|
|
76068
76122
|
this._element.isSelected = isSelectedValue;
|
|
@@ -76155,12 +76209,12 @@ let TableBodyCellComponent = class TableBodyCellComponent {
|
|
|
76155
76209
|
this._element[property] = value;
|
|
76156
76210
|
}
|
|
76157
76211
|
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 });
|
|
76212
|
+
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
76213
|
};
|
|
76160
76214
|
TableBodyCellComponent = __decorate$J([
|
|
76161
76215
|
ProxyCmp({
|
|
76162
76216
|
defineCustomElementFn: () => customElements.define('mosaik-table-body-cell', TableBodyCellElement),
|
|
76163
|
-
inputs: ['themeName', 'isSelected', 'text', 'columnHidden', 'disabled', 'formatter', 'textOverflow', 'dir', 'lang'],
|
|
76217
|
+
inputs: ['themeName', 'value', 'isSelected', 'text', 'columnHidden', 'disabled', 'formatter', 'textOverflow', 'dir', 'lang'],
|
|
76164
76218
|
methods: ['getContentWidth', 'select', 'deselect', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
76165
76219
|
}),
|
|
76166
76220
|
__metadata$J("design:paramtypes", [])
|
|
@@ -76173,7 +76227,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
76173
76227
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
76174
76228
|
template: '<ng-content></ng-content>'
|
|
76175
76229
|
}]
|
|
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"] }] } });
|
|
76230
|
+
}], 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
76231
|
/**
|
|
76178
76232
|
* @public
|
|
76179
76233
|
*/
|
|
@@ -76238,6 +76292,12 @@ let TableBodyRowComponent = class TableBodyRowComponent {
|
|
|
76238
76292
|
* @public
|
|
76239
76293
|
*/
|
|
76240
76294
|
themeName = input(...(ngDevMode ? [undefined, { debugName: "themeName" }] : /* istanbul ignore next */ []));
|
|
76295
|
+
/**
|
|
76296
|
+
* Signal input for the `value` property.
|
|
76297
|
+
*
|
|
76298
|
+
* @public
|
|
76299
|
+
*/
|
|
76300
|
+
value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
|
|
76241
76301
|
/**
|
|
76242
76302
|
* Signal input for the `isSelected` property.
|
|
76243
76303
|
*
|
|
@@ -76275,6 +76335,10 @@ let TableBodyRowComponent = class TableBodyRowComponent {
|
|
|
76275
76335
|
if (themeNameValue !== undefined) {
|
|
76276
76336
|
this._element.themeName = themeNameValue;
|
|
76277
76337
|
}
|
|
76338
|
+
const valueValue = this.value();
|
|
76339
|
+
if (valueValue !== undefined) {
|
|
76340
|
+
this._element.value = valueValue;
|
|
76341
|
+
}
|
|
76278
76342
|
const isSelectedValue = this.isSelected();
|
|
76279
76343
|
if (isSelectedValue !== undefined) {
|
|
76280
76344
|
this._element.isSelected = isSelectedValue;
|
|
@@ -76351,12 +76415,12 @@ let TableBodyRowComponent = class TableBodyRowComponent {
|
|
|
76351
76415
|
this._element[property] = value;
|
|
76352
76416
|
}
|
|
76353
76417
|
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 });
|
|
76418
|
+
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
76419
|
};
|
|
76356
76420
|
TableBodyRowComponent = __decorate$I([
|
|
76357
76421
|
ProxyCmp({
|
|
76358
76422
|
defineCustomElementFn: () => customElements.define('mosaik-table-body-row', TableBodyRowElement),
|
|
76359
|
-
inputs: ['themeName', 'isSelected', 'disabled', 'dir', 'lang'],
|
|
76423
|
+
inputs: ['themeName', 'value', 'isSelected', 'disabled', 'dir', 'lang'],
|
|
76360
76424
|
methods: ['select', 'deselect', 'onSlotChange', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
76361
76425
|
}),
|
|
76362
76426
|
__metadata$I("design:paramtypes", [])
|
|
@@ -76369,7 +76433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
76369
76433
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
76370
76434
|
template: '<ng-content></ng-content>'
|
|
76371
76435
|
}]
|
|
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"] }] } });
|
|
76436
|
+
}], 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
76437
|
/**
|
|
76374
76438
|
* @public
|
|
76375
76439
|
*/
|
|
@@ -83987,6 +84051,10 @@ let ToggleTipComponent = class ToggleTipComponent {
|
|
|
83987
84051
|
*/
|
|
83988
84052
|
initInputSyncEffect() {
|
|
83989
84053
|
effect(() => {
|
|
84054
|
+
const contentValue = this.content();
|
|
84055
|
+
if (contentValue !== undefined) {
|
|
84056
|
+
this._element.content = contentValue;
|
|
84057
|
+
}
|
|
83990
84058
|
const placementValue = this.placement();
|
|
83991
84059
|
if (placementValue !== undefined) {
|
|
83992
84060
|
this._element.placement = placementValue;
|
|
@@ -84584,6 +84652,10 @@ let TooltipComponent = class TooltipComponent {
|
|
|
84584
84652
|
if (isFloatingActiveValue !== undefined) {
|
|
84585
84653
|
this._element.isFloatingActive = isFloatingActiveValue;
|
|
84586
84654
|
}
|
|
84655
|
+
const contentValue = this.content();
|
|
84656
|
+
if (contentValue !== undefined) {
|
|
84657
|
+
this._element.content = contentValue;
|
|
84658
|
+
}
|
|
84587
84659
|
const placementValue = this.placement();
|
|
84588
84660
|
if (placementValue !== undefined) {
|
|
84589
84661
|
this._element.placement = placementValue;
|