@breadstone/mosaik-elements-angular 0.0.243 → 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,7 @@
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
+
1
5
  ## 0.0.243 (2026-04-30)
2
6
 
3
7
  ### 🚀 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;
@@ -84007,6 +84051,10 @@ let ToggleTipComponent = class ToggleTipComponent {
84007
84051
  */
84008
84052
  initInputSyncEffect() {
84009
84053
  effect(() => {
84054
+ const contentValue = this.content();
84055
+ if (contentValue !== undefined) {
84056
+ this._element.content = contentValue;
84057
+ }
84010
84058
  const placementValue = this.placement();
84011
84059
  if (placementValue !== undefined) {
84012
84060
  this._element.placement = placementValue;
@@ -84604,6 +84652,10 @@ let TooltipComponent = class TooltipComponent {
84604
84652
  if (isFloatingActiveValue !== undefined) {
84605
84653
  this._element.isFloatingActive = isFloatingActiveValue;
84606
84654
  }
84655
+ const contentValue = this.content();
84656
+ if (contentValue !== undefined) {
84657
+ this._element.content = contentValue;
84658
+ }
84607
84659
  const placementValue = this.placement();
84608
84660
  if (placementValue !== undefined) {
84609
84661
  this._element.placement = placementValue;