@breadstone/mosaik-elements-angular 0.0.107 → 0.0.109
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 +13 -0
- package/fesm2022/mosaik-elements-angular.mjs +27 -3
- package/fesm2022/mosaik-elements-angular.mjs.map +1 -1
- package/index.d.ts +5 -1
- package/index.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 0.0.109 (2025-08-15)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **instructions:** add initial blogpost writing guidelines and structure ([03fbd93fd8](https://github.com/RueDeRennes/mosaik/commit/03fbd93fd8))
|
|
6
|
+
|
|
7
|
+
## 0.0.108 (2025-08-15)
|
|
8
|
+
|
|
9
|
+
### 🚀 Features
|
|
10
|
+
|
|
11
|
+
- **chat:** enhance styling and theming for chat components ([b8f5a8f6c6](https://github.com/RueDeRennes/mosaik/commit/b8f5a8f6c6))
|
|
12
|
+
- **dialog): enhance DialogPortalComponent with dynamic properties and update button appearance feat(translator:** improve addTranslations method to merge existing translations chore: update release script version to 0.0.107 ([e6974a901b](https://github.com/RueDeRennes/mosaik/commit/e6974a901b))
|
|
13
|
+
|
|
1
14
|
## 0.0.107 (2025-08-15)
|
|
2
15
|
|
|
3
16
|
### 🚀 Features
|
|
@@ -9133,6 +9133,26 @@ let ChatInputComponent = class ChatInputComponent {
|
|
|
9133
9133
|
this._element.variant = value;
|
|
9134
9134
|
});
|
|
9135
9135
|
}
|
|
9136
|
+
get appearance() {
|
|
9137
|
+
// @ts-ignore - temporary fix for the type error
|
|
9138
|
+
return this._element.appearance;
|
|
9139
|
+
}
|
|
9140
|
+
set appearance(value) {
|
|
9141
|
+
this._zone.runOutsideAngular(() => {
|
|
9142
|
+
// @ts-ignore - temporary fix for the type error
|
|
9143
|
+
this._element.appearance = value;
|
|
9144
|
+
});
|
|
9145
|
+
}
|
|
9146
|
+
get disabled() {
|
|
9147
|
+
// @ts-ignore - temporary fix for the type error
|
|
9148
|
+
return this._element.disabled;
|
|
9149
|
+
}
|
|
9150
|
+
set disabled(value) {
|
|
9151
|
+
this._zone.runOutsideAngular(() => {
|
|
9152
|
+
// @ts-ignore - temporary fix for the type error
|
|
9153
|
+
this._element.disabled = value;
|
|
9154
|
+
});
|
|
9155
|
+
}
|
|
9136
9156
|
get dir() {
|
|
9137
9157
|
// @ts-ignore - temporary fix for the type error
|
|
9138
9158
|
return this._element.dir;
|
|
@@ -9177,12 +9197,12 @@ let ChatInputComponent = class ChatInputComponent {
|
|
|
9177
9197
|
}
|
|
9178
9198
|
}
|
|
9179
9199
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: ChatInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9180
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: ChatInputComponent, isStandalone: true, selector: "mosaik-chat-input", inputs: { value: "value", reactions: "reactions", placeholder: "placeholder", allowAttachments: "allowAttachments", themeName: "themeName", variant: "variant", dir: "dir", lang: "lang" }, outputs: { submitted: "submitted", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9200
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: ChatInputComponent, isStandalone: true, selector: "mosaik-chat-input", inputs: { value: "value", reactions: "reactions", placeholder: "placeholder", allowAttachments: "allowAttachments", themeName: "themeName", variant: "variant", appearance: "appearance", disabled: "disabled", dir: "dir", lang: "lang" }, outputs: { submitted: "submitted", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9181
9201
|
};
|
|
9182
9202
|
ChatInputComponent = __decorate$2S([
|
|
9183
9203
|
ProxyCmp({
|
|
9184
9204
|
defineCustomElementFn: () => customElements.define('mosaik-chat-input', ChatInputElement),
|
|
9185
|
-
inputs: ['value', 'reactions', 'placeholder', 'allowAttachments', 'themeName', 'variant', 'dir', 'lang'],
|
|
9205
|
+
inputs: ['value', 'reactions', 'placeholder', 'allowAttachments', 'themeName', 'variant', 'appearance', 'disabled', 'dir', 'lang'],
|
|
9186
9206
|
methods: ['send', 'attach', 'clear', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
|
|
9187
9207
|
}),
|
|
9188
9208
|
__metadata$2S("design:paramtypes", [])
|
|
@@ -9194,7 +9214,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
9194
9214
|
standalone: true,
|
|
9195
9215
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9196
9216
|
template: '<ng-content></ng-content>',
|
|
9197
|
-
inputs: ['value', 'reactions', 'placeholder', 'allowAttachments', 'themeName', 'variant', 'dir', 'lang'],
|
|
9217
|
+
inputs: ['value', 'reactions', 'placeholder', 'allowAttachments', 'themeName', 'variant', 'appearance', 'disabled', 'dir', 'lang'],
|
|
9198
9218
|
outputs: ['submitted', 'connected', 'disconnected', 'changed']
|
|
9199
9219
|
}]
|
|
9200
9220
|
}], ctorParameters: () => [], propDecorators: { value: [{
|
|
@@ -9209,6 +9229,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
9209
9229
|
type: Input
|
|
9210
9230
|
}], variant: [{
|
|
9211
9231
|
type: Input
|
|
9232
|
+
}], appearance: [{
|
|
9233
|
+
type: Input
|
|
9234
|
+
}], disabled: [{
|
|
9235
|
+
type: Input
|
|
9212
9236
|
}], dir: [{
|
|
9213
9237
|
type: Input
|
|
9214
9238
|
}], lang: [{
|