@breadstone/mosaik-elements-angular 0.0.129 → 0.0.130

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,10 @@
1
+ ## 0.0.130 (2025-08-22)
2
+
3
+ ### 🚀 Features
4
+
5
+ - add appearance property to ChatMarker components and update styles for new appearances ([23a86826b3](https://github.com/RueDeRennes/mosaik/commit/23a86826b3))
6
+ - update event names for recorder events to camelCase format ([bfd76cfe4b](https://github.com/RueDeRennes/mosaik/commit/bfd76cfe4b))
7
+
1
8
  ## 0.0.129 (2025-08-22)
2
9
 
3
10
  ### 🚀 Features
@@ -9780,6 +9780,16 @@ let ChatMarkerComponent = class ChatMarkerComponent {
9780
9780
  this._element.formatter = value;
9781
9781
  });
9782
9782
  }
9783
+ get appearance() {
9784
+ // @ts-ignore - temporary fix for the type error
9785
+ return this._element.appearance;
9786
+ }
9787
+ set appearance(value) {
9788
+ this._zone.runOutsideAngular(() => {
9789
+ // @ts-ignore - temporary fix for the type error
9790
+ this._element.appearance = value;
9791
+ });
9792
+ }
9783
9793
  get dir() {
9784
9794
  // @ts-ignore - temporary fix for the type error
9785
9795
  return this._element.dir;
@@ -9821,12 +9831,12 @@ let ChatMarkerComponent = class ChatMarkerComponent {
9821
9831
  }
9822
9832
  }
9823
9833
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatMarkerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9824
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: ChatMarkerComponent, isStandalone: true, selector: "mosaik-chat-marker", inputs: { text: "text", icon: "icon", themeName: "themeName", variant: "variant", orientation: "orientation", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", isSticky: "isSticky", formatter: "formatter", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
9834
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: ChatMarkerComponent, isStandalone: true, selector: "mosaik-chat-marker", inputs: { text: "text", icon: "icon", themeName: "themeName", variant: "variant", orientation: "orientation", horizontalContentAlignment: "horizontalContentAlignment", verticalContentAlignment: "verticalContentAlignment", isSticky: "isSticky", formatter: "formatter", appearance: "appearance", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
9825
9835
  };
9826
9836
  ChatMarkerComponent = __decorate$2V([
9827
9837
  ProxyCmp({
9828
9838
  defineCustomElementFn: () => customElements.define('mosaik-chat-marker', ChatMarkerElement),
9829
- inputs: ['text', 'icon', 'themeName', 'variant', 'orientation', 'horizontalContentAlignment', 'verticalContentAlignment', 'isSticky', 'formatter', 'dir', 'lang'],
9839
+ inputs: ['text', 'icon', 'themeName', 'variant', 'orientation', 'horizontalContentAlignment', 'verticalContentAlignment', 'isSticky', 'formatter', 'appearance', 'dir', 'lang'],
9830
9840
  methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
9831
9841
  }),
9832
9842
  __metadata$2V("design:paramtypes", [])
@@ -9838,7 +9848,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
9838
9848
  standalone: true,
9839
9849
  changeDetection: ChangeDetectionStrategy.OnPush,
9840
9850
  template: '<ng-content></ng-content>',
9841
- inputs: ['text', 'icon', 'themeName', 'variant', 'orientation', 'horizontalContentAlignment', 'verticalContentAlignment', 'isSticky', 'formatter', 'dir', 'lang'],
9851
+ inputs: ['text', 'icon', 'themeName', 'variant', 'orientation', 'horizontalContentAlignment', 'verticalContentAlignment', 'isSticky', 'formatter', 'appearance', 'dir', 'lang'],
9842
9852
  outputs: ['connected', 'disconnected', 'changed']
9843
9853
  }]
9844
9854
  }], ctorParameters: () => [], propDecorators: { text: [{
@@ -9859,6 +9869,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
9859
9869
  type: Input
9860
9870
  }], formatter: [{
9861
9871
  type: Input
9872
+ }], appearance: [{
9873
+ type: Input
9862
9874
  }], dir: [{
9863
9875
  type: Input
9864
9876
  }], lang: [{