@breadstone/mosaik-elements-angular 0.1.5 → 0.1.7

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,16 @@
1
+ ## 0.1.7 (2026-06-10)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **flowboard, scheduler:** add appearance property and show tools functionality ([5e34f86cc0](https://github.com/RueDeRennes/mosaik/commit/5e34f86cc0))
6
+ - **caveman:** add caveman prompt with intensity levels and usage examples ([18f6881aad](https://github.com/RueDeRennes/mosaik/commit/18f6881aad))
7
+
8
+ ## 0.1.6 (2026-06-01)
9
+
10
+ ### 🚀 Features
11
+
12
+ - **chat:** add minRows and maxRows properties to ChatInputElement and update templates ([f1e2f9ea3d](https://github.com/RueDeRennes/mosaik/commit/f1e2f9ea3d))
13
+
1
14
  ## 0.1.5 (2026-05-29)
2
15
 
3
16
  ### 🩹 Fixes
@@ -29638,6 +29638,18 @@ let ChatInputComponent = class ChatInputComponent {
29638
29638
  * @public
29639
29639
  */
29640
29640
  placeholder = input(...(ngDevMode ? [undefined, { debugName: "placeholder" }] : /* istanbul ignore next */ []));
29641
+ /**
29642
+ * Signal input for the `minRows` property.
29643
+ *
29644
+ * @public
29645
+ */
29646
+ minRows = input(...(ngDevMode ? [undefined, { debugName: "minRows" }] : /* istanbul ignore next */ []));
29647
+ /**
29648
+ * Signal input for the `maxRows` property.
29649
+ *
29650
+ * @public
29651
+ */
29652
+ maxRows = input(...(ngDevMode ? [undefined, { debugName: "maxRows" }] : /* istanbul ignore next */ []));
29641
29653
  /**
29642
29654
  * Signal input for the `themeName` property.
29643
29655
  *
@@ -29691,6 +29703,14 @@ let ChatInputComponent = class ChatInputComponent {
29691
29703
  if (placeholderValue !== undefined) {
29692
29704
  this._elementRef.nativeElement.placeholder = placeholderValue;
29693
29705
  }
29706
+ const minRowsValue = this.minRows();
29707
+ if (minRowsValue !== undefined) {
29708
+ this._elementRef.nativeElement.minRows = minRowsValue;
29709
+ }
29710
+ const maxRowsValue = this.maxRows();
29711
+ if (maxRowsValue !== undefined) {
29712
+ this._elementRef.nativeElement.maxRows = maxRowsValue;
29713
+ }
29694
29714
  const themeNameValue = this.themeName();
29695
29715
  if (themeNameValue !== undefined) {
29696
29716
  this._elementRef.nativeElement.themeName = themeNameValue;
@@ -29769,12 +29789,12 @@ let ChatInputComponent = class ChatInputComponent {
29769
29789
  this._elementRef.nativeElement[property] = value;
29770
29790
  }
29771
29791
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: ChatInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
29772
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: ChatInputComponent, isStandalone: true, selector: "mosaik-chat-input", inputs: { submitted: { classPropertyName: "submitted", publicName: "submitted", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", 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: { chatSubmit: "chatSubmit", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
29792
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: ChatInputComponent, isStandalone: true, selector: "mosaik-chat-input", inputs: { submitted: { classPropertyName: "submitted", publicName: "submitted", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, minRows: { classPropertyName: "minRows", publicName: "minRows", isSignal: true, isRequired: false, transformFunction: null }, maxRows: { classPropertyName: "maxRows", publicName: "maxRows", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", 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: { chatSubmit: "chatSubmit", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
29773
29793
  };
29774
29794
  ChatInputComponent = __decorate$3B([
29775
29795
  ProxyCmp({
29776
29796
  defineCustomElementFn: () => defineCustomElement('mosaik-chat-input', ChatInputElement),
29777
- inputs: ['submitted', 'value', 'placeholder', 'themeName', 'variant', 'appearance', 'disabled', 'dir', 'lang'],
29797
+ inputs: ['submitted', 'value', 'placeholder', 'minRows', 'maxRows', 'themeName', 'variant', 'appearance', 'disabled', 'dir', 'lang'],
29778
29798
  methods: ['send', 'clear', 'onApplyTemplate', 'onSlotChanges', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot']
29779
29799
  }),
29780
29800
  __metadata$3B("design:paramtypes", [])
@@ -29787,7 +29807,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
29787
29807
  changeDetection: ChangeDetectionStrategy.OnPush,
29788
29808
  template: '<ng-content></ng-content>'
29789
29809
  }]
29790
- }], ctorParameters: () => [], propDecorators: { submitted: [{ type: i0.Input, args: [{ isSignal: true, alias: "submitted", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", 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 }] }], chatSubmit: [{ type: i0.Output, args: ["chatSubmit"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
29810
+ }], ctorParameters: () => [], propDecorators: { submitted: [{ type: i0.Input, args: [{ isSignal: true, alias: "submitted", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], minRows: [{ type: i0.Input, args: [{ isSignal: true, alias: "minRows", required: false }] }], maxRows: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxRows", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", 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 }] }], chatSubmit: [{ type: i0.Output, args: ["chatSubmit"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
29791
29811
  /**
29792
29812
  * @public
29793
29813
  */
@@ -51046,6 +51066,12 @@ let FlowBoardColumnComponent = class FlowBoardColumnComponent {
51046
51066
  * @public
51047
51067
  */
51048
51068
  themeName = input(...(ngDevMode ? [undefined, { debugName: "themeName" }] : /* istanbul ignore next */ []));
51069
+ /**
51070
+ * Signal input for the `appearance` property.
51071
+ *
51072
+ * @public
51073
+ */
51074
+ appearance = input(...(ngDevMode ? [undefined, { debugName: "appearance" }] : /* istanbul ignore next */ []));
51049
51075
  /**
51050
51076
  * Signal input for the `dir` property.
51051
51077
  *
@@ -51095,6 +51121,10 @@ let FlowBoardColumnComponent = class FlowBoardColumnComponent {
51095
51121
  if (themeNameValue !== undefined) {
51096
51122
  this._elementRef.nativeElement.themeName = themeNameValue;
51097
51123
  }
51124
+ const appearanceValue = this.appearance();
51125
+ if (appearanceValue !== undefined) {
51126
+ this._elementRef.nativeElement.appearance = appearanceValue;
51127
+ }
51098
51128
  const dirValue = this.dir();
51099
51129
  if (dirValue !== undefined) {
51100
51130
  this._elementRef.nativeElement.dir = dirValue;
@@ -51163,12 +51193,12 @@ let FlowBoardColumnComponent = class FlowBoardColumnComponent {
51163
51193
  this._elementRef.nativeElement[property] = value;
51164
51194
  }
51165
51195
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: FlowBoardColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51166
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: FlowBoardColumnComponent, isStandalone: true, selector: "mosaik-flow-board-column", inputs: { hasItems: { classPropertyName: "hasItems", publicName: "hasItems", isSignal: true, isRequired: false, transformFunction: null }, isDragEnabled: { classPropertyName: "isDragEnabled", publicName: "isDragEnabled", isSignal: true, isRequired: false, transformFunction: null }, canDrag: { classPropertyName: "canDrag", publicName: "canDrag", isSignal: true, isRequired: false, transformFunction: null }, columnKey: { classPropertyName: "columnKey", publicName: "columnKey", isSignal: true, isRequired: false, transformFunction: null }, reorderable: { classPropertyName: "reorderable", publicName: "reorderable", isSignal: true, isRequired: false, transformFunction: null }, pinned: { classPropertyName: "pinned", publicName: "pinned", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", 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: { flowBoardBeforeColumnPinChange: "flowBoardBeforeColumnPinChange", flowBoardColumnPinChange: "flowBoardColumnPinChange", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
51196
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: FlowBoardColumnComponent, isStandalone: true, selector: "mosaik-flow-board-column", inputs: { hasItems: { classPropertyName: "hasItems", publicName: "hasItems", isSignal: true, isRequired: false, transformFunction: null }, isDragEnabled: { classPropertyName: "isDragEnabled", publicName: "isDragEnabled", isSignal: true, isRequired: false, transformFunction: null }, canDrag: { classPropertyName: "canDrag", publicName: "canDrag", isSignal: true, isRequired: false, transformFunction: null }, columnKey: { classPropertyName: "columnKey", publicName: "columnKey", isSignal: true, isRequired: false, transformFunction: null }, reorderable: { classPropertyName: "reorderable", publicName: "reorderable", isSignal: true, isRequired: false, transformFunction: null }, pinned: { classPropertyName: "pinned", publicName: "pinned", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", 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: { flowBoardBeforeColumnPinChange: "flowBoardBeforeColumnPinChange", flowBoardColumnPinChange: "flowBoardColumnPinChange", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
51167
51197
  };
51168
51198
  FlowBoardColumnComponent = __decorate$2o([
51169
51199
  ProxyCmp({
51170
51200
  defineCustomElementFn: () => defineCustomElement('mosaik-flow-board-column', FlowBoardColumnElement),
51171
- inputs: ['hasItems', 'isDragEnabled', 'canDrag', 'columnKey', 'reorderable', 'pinned', 'themeName', 'dir', 'lang'],
51201
+ inputs: ['hasItems', 'isDragEnabled', 'canDrag', 'columnKey', 'reorderable', 'pinned', 'themeName', 'appearance', 'dir', 'lang'],
51172
51202
  methods: ['getItems', 'getDragRef', 'getDropListRef', 'syncItemDragRefs', 'getPinnedItems', 'getNonPinnedItems', 'setPinned', 'handleSlotChange', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges']
51173
51203
  }),
51174
51204
  __metadata$2o("design:paramtypes", [])
@@ -51181,7 +51211,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
51181
51211
  changeDetection: ChangeDetectionStrategy.OnPush,
51182
51212
  template: '<ng-content></ng-content>'
51183
51213
  }]
51184
- }], ctorParameters: () => [], propDecorators: { hasItems: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasItems", required: false }] }], isDragEnabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "isDragEnabled", required: false }] }], canDrag: [{ type: i0.Input, args: [{ isSignal: true, alias: "canDrag", required: false }] }], columnKey: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnKey", required: false }] }], reorderable: [{ type: i0.Input, args: [{ isSignal: true, alias: "reorderable", required: false }] }], pinned: [{ type: i0.Input, args: [{ isSignal: true, alias: "pinned", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], flowBoardBeforeColumnPinChange: [{ type: i0.Output, args: ["flowBoardBeforeColumnPinChange"] }], flowBoardColumnPinChange: [{ type: i0.Output, args: ["flowBoardColumnPinChange"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
51214
+ }], ctorParameters: () => [], propDecorators: { hasItems: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasItems", required: false }] }], isDragEnabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "isDragEnabled", required: false }] }], canDrag: [{ type: i0.Input, args: [{ isSignal: true, alias: "canDrag", required: false }] }], columnKey: [{ type: i0.Input, args: [{ isSignal: true, alias: "columnKey", required: false }] }], reorderable: [{ type: i0.Input, args: [{ isSignal: true, alias: "reorderable", required: false }] }], pinned: [{ type: i0.Input, args: [{ isSignal: true, alias: "pinned", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], flowBoardBeforeColumnPinChange: [{ type: i0.Output, args: ["flowBoardBeforeColumnPinChange"] }], flowBoardColumnPinChange: [{ type: i0.Output, args: ["flowBoardColumnPinChange"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
51185
51215
  /**
51186
51216
  * @public
51187
51217
  */
@@ -70560,6 +70590,12 @@ let SchedulerComponent = class SchedulerComponent {
70560
70590
  get elementRef() {
70561
70591
  return this._elementRef;
70562
70592
  }
70593
+ /**
70594
+ * Signal input for the `intl` property.
70595
+ *
70596
+ * @public
70597
+ */
70598
+ intl = input(...(ngDevMode ? [undefined, { debugName: "intl" }] : /* istanbul ignore next */ []));
70563
70599
  /**
70564
70600
  * Signal input for the `visibleDates` property.
70565
70601
  *
@@ -70584,12 +70620,6 @@ let SchedulerComponent = class SchedulerComponent {
70584
70620
  * @public
70585
70621
  */
70586
70622
  timeSlots = input(...(ngDevMode ? [undefined, { debugName: "timeSlots" }] : /* istanbul ignore next */ []));
70587
- /**
70588
- * Signal input for the `intl` property.
70589
- *
70590
- * @public
70591
- */
70592
- intl = input(...(ngDevMode ? [undefined, { debugName: "intl" }] : /* istanbul ignore next */ []));
70593
70623
  /**
70594
70624
  * Signal input for the `hasAllDayEvents` property.
70595
70625
  *
@@ -70716,6 +70746,12 @@ let SchedulerComponent = class SchedulerComponent {
70716
70746
  * @public
70717
70747
  */
70718
70748
  monthDayFormat = input(...(ngDevMode ? [undefined, { debugName: "monthDayFormat" }] : /* istanbul ignore next */ []));
70749
+ /**
70750
+ * Signal input for the `showTools` property.
70751
+ *
70752
+ * @public
70753
+ */
70754
+ showTools = input(...(ngDevMode ? [undefined, { debugName: "showTools" }] : /* istanbul ignore next */ []));
70719
70755
  /**
70720
70756
  * Signal input for the `themeName` property.
70721
70757
  *
@@ -70873,6 +70909,10 @@ let SchedulerComponent = class SchedulerComponent {
70873
70909
  if (monthDayFormatValue !== undefined) {
70874
70910
  this._elementRef.nativeElement.monthDayFormat = monthDayFormatValue;
70875
70911
  }
70912
+ const showToolsValue = this.showTools();
70913
+ if (showToolsValue !== undefined) {
70914
+ this._elementRef.nativeElement.showTools = showToolsValue;
70915
+ }
70876
70916
  const themeNameValue = this.themeName();
70877
70917
  if (themeNameValue !== undefined) {
70878
70918
  this._elementRef.nativeElement.themeName = themeNameValue;
@@ -70987,12 +71027,12 @@ let SchedulerComponent = class SchedulerComponent {
70987
71027
  this._elementRef.nativeElement[property] = value;
70988
71028
  }
70989
71029
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: SchedulerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70990
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: SchedulerComponent, isStandalone: true, selector: "mosaik-scheduler", inputs: { visibleDates: { classPropertyName: "visibleDates", publicName: "visibleDates", isSignal: true, isRequired: false, transformFunction: null }, collectedEvents: { classPropertyName: "collectedEvents", publicName: "collectedEvents", isSignal: true, isRequired: false, transformFunction: null }, eventsByDay: { classPropertyName: "eventsByDay", publicName: "eventsByDay", isSignal: true, isRequired: false, transformFunction: null }, timeSlots: { classPropertyName: "timeSlots", publicName: "timeSlots", isSignal: true, isRequired: false, transformFunction: null }, intl: { classPropertyName: "intl", publicName: "intl", isSignal: true, isRequired: false, transformFunction: null }, hasAllDayEvents: { classPropertyName: "hasAllDayEvents", publicName: "hasAllDayEvents", isSignal: true, isRequired: false, transformFunction: null }, view: { classPropertyName: "view", publicName: "view", isSignal: true, isRequired: false, transformFunction: null }, startDate: { classPropertyName: "startDate", publicName: "startDate", isSignal: true, isRequired: false, transformFunction: null }, days: { classPropertyName: "days", publicName: "days", isSignal: true, isRequired: false, transformFunction: null }, hourStart: { classPropertyName: "hourStart", publicName: "hourStart", isSignal: true, isRequired: false, transformFunction: null }, hourEnd: { classPropertyName: "hourEnd", publicName: "hourEnd", isSignal: true, isRequired: false, transformFunction: null }, stepMinutes: { classPropertyName: "stepMinutes", publicName: "stepMinutes", isSignal: true, isRequired: false, transformFunction: null }, timezone: { classPropertyName: "timezone", publicName: "timezone", isSignal: true, isRequired: false, transformFunction: null }, blackoutDates: { classPropertyName: "blackoutDates", publicName: "blackoutDates", isSignal: true, isRequired: false, transformFunction: null }, specialDates: { classPropertyName: "specialDates", publicName: "specialDates", isSignal: true, isRequired: false, transformFunction: null }, firstDayOfWeek: { classPropertyName: "firstDayOfWeek", publicName: "firstDayOfWeek", isSignal: true, isRequired: false, transformFunction: null }, isTodayHighlighted: { classPropertyName: "isTodayHighlighted", publicName: "isTodayHighlighted", isSignal: true, isRequired: false, transformFunction: null }, isWeekendHighlighted: { classPropertyName: "isWeekendHighlighted", publicName: "isWeekendHighlighted", isSignal: true, isRequired: false, transformFunction: null }, allDayVisibility: { classPropertyName: "allDayVisibility", publicName: "allDayVisibility", isSignal: true, isRequired: false, transformFunction: null }, showWeekNumbers: { classPropertyName: "showWeekNumbers", publicName: "showWeekNumbers", isSignal: true, isRequired: false, transformFunction: null }, showAdjacent: { classPropertyName: "showAdjacent", publicName: "showAdjacent", isSignal: true, isRequired: false, transformFunction: null }, daysAhead: { classPropertyName: "daysAhead", publicName: "daysAhead", isSignal: true, isRequired: false, transformFunction: null }, weekdayFormat: { classPropertyName: "weekdayFormat", publicName: "weekdayFormat", isSignal: true, isRequired: false, transformFunction: null }, dayFormat: { classPropertyName: "dayFormat", publicName: "dayFormat", isSignal: true, isRequired: false, transformFunction: null }, timeFormat: { classPropertyName: "timeFormat", publicName: "timeFormat", isSignal: true, isRequired: false, transformFunction: null }, monthDayFormat: { classPropertyName: "monthDayFormat", publicName: "monthDayFormat", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, locale: { classPropertyName: "locale", publicName: "locale", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", 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: { schedulerBeforeEventActivate: "schedulerBeforeEventActivate", schedulerEventActivate: "schedulerEventActivate", schedulerBeforeSelectRange: "schedulerBeforeSelectRange", schedulerSelectRange: "schedulerSelectRange", schedulerRangeChange: "schedulerRangeChange", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
71030
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.14", type: SchedulerComponent, isStandalone: true, selector: "mosaik-scheduler", inputs: { intl: { classPropertyName: "intl", publicName: "intl", isSignal: true, isRequired: false, transformFunction: null }, visibleDates: { classPropertyName: "visibleDates", publicName: "visibleDates", isSignal: true, isRequired: false, transformFunction: null }, collectedEvents: { classPropertyName: "collectedEvents", publicName: "collectedEvents", isSignal: true, isRequired: false, transformFunction: null }, eventsByDay: { classPropertyName: "eventsByDay", publicName: "eventsByDay", isSignal: true, isRequired: false, transformFunction: null }, timeSlots: { classPropertyName: "timeSlots", publicName: "timeSlots", isSignal: true, isRequired: false, transformFunction: null }, hasAllDayEvents: { classPropertyName: "hasAllDayEvents", publicName: "hasAllDayEvents", isSignal: true, isRequired: false, transformFunction: null }, view: { classPropertyName: "view", publicName: "view", isSignal: true, isRequired: false, transformFunction: null }, startDate: { classPropertyName: "startDate", publicName: "startDate", isSignal: true, isRequired: false, transformFunction: null }, days: { classPropertyName: "days", publicName: "days", isSignal: true, isRequired: false, transformFunction: null }, hourStart: { classPropertyName: "hourStart", publicName: "hourStart", isSignal: true, isRequired: false, transformFunction: null }, hourEnd: { classPropertyName: "hourEnd", publicName: "hourEnd", isSignal: true, isRequired: false, transformFunction: null }, stepMinutes: { classPropertyName: "stepMinutes", publicName: "stepMinutes", isSignal: true, isRequired: false, transformFunction: null }, timezone: { classPropertyName: "timezone", publicName: "timezone", isSignal: true, isRequired: false, transformFunction: null }, blackoutDates: { classPropertyName: "blackoutDates", publicName: "blackoutDates", isSignal: true, isRequired: false, transformFunction: null }, specialDates: { classPropertyName: "specialDates", publicName: "specialDates", isSignal: true, isRequired: false, transformFunction: null }, firstDayOfWeek: { classPropertyName: "firstDayOfWeek", publicName: "firstDayOfWeek", isSignal: true, isRequired: false, transformFunction: null }, isTodayHighlighted: { classPropertyName: "isTodayHighlighted", publicName: "isTodayHighlighted", isSignal: true, isRequired: false, transformFunction: null }, isWeekendHighlighted: { classPropertyName: "isWeekendHighlighted", publicName: "isWeekendHighlighted", isSignal: true, isRequired: false, transformFunction: null }, allDayVisibility: { classPropertyName: "allDayVisibility", publicName: "allDayVisibility", isSignal: true, isRequired: false, transformFunction: null }, showWeekNumbers: { classPropertyName: "showWeekNumbers", publicName: "showWeekNumbers", isSignal: true, isRequired: false, transformFunction: null }, showAdjacent: { classPropertyName: "showAdjacent", publicName: "showAdjacent", isSignal: true, isRequired: false, transformFunction: null }, daysAhead: { classPropertyName: "daysAhead", publicName: "daysAhead", isSignal: true, isRequired: false, transformFunction: null }, weekdayFormat: { classPropertyName: "weekdayFormat", publicName: "weekdayFormat", isSignal: true, isRequired: false, transformFunction: null }, dayFormat: { classPropertyName: "dayFormat", publicName: "dayFormat", isSignal: true, isRequired: false, transformFunction: null }, timeFormat: { classPropertyName: "timeFormat", publicName: "timeFormat", isSignal: true, isRequired: false, transformFunction: null }, monthDayFormat: { classPropertyName: "monthDayFormat", publicName: "monthDayFormat", isSignal: true, isRequired: false, transformFunction: null }, showTools: { classPropertyName: "showTools", publicName: "showTools", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, locale: { classPropertyName: "locale", publicName: "locale", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", 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: { schedulerBeforeEventActivate: "schedulerBeforeEventActivate", schedulerEventActivate: "schedulerEventActivate", schedulerBeforeSelectRange: "schedulerBeforeSelectRange", schedulerSelectRange: "schedulerSelectRange", schedulerRangeChange: "schedulerRangeChange", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
70991
71031
  };
70992
71032
  SchedulerComponent = __decorate$1a([
70993
71033
  ProxyCmp({
70994
71034
  defineCustomElementFn: () => defineCustomElement('mosaik-scheduler', SchedulerElement),
70995
- inputs: ['visibleDates', 'collectedEvents', 'eventsByDay', 'timeSlots', 'intl', 'hasAllDayEvents', 'view', 'startDate', 'days', 'hourStart', 'hourEnd', 'stepMinutes', 'timezone', 'blackoutDates', 'specialDates', 'firstDayOfWeek', 'isTodayHighlighted', 'isWeekendHighlighted', 'allDayVisibility', 'showWeekNumbers', 'showAdjacent', 'daysAhead', 'weekdayFormat', 'dayFormat', 'timeFormat', 'monthDayFormat', 'themeName', 'appearance', 'variant', 'locale', 'size', 'disabled', 'dir', 'lang'],
71035
+ inputs: ['intl', 'visibleDates', 'collectedEvents', 'eventsByDay', 'timeSlots', 'hasAllDayEvents', 'view', 'startDate', 'days', 'hourStart', 'hourEnd', 'stepMinutes', 'timezone', 'blackoutDates', 'specialDates', 'firstDayOfWeek', 'isTodayHighlighted', 'isWeekendHighlighted', 'allDayVisibility', 'showWeekNumbers', 'showAdjacent', 'daysAhead', 'weekdayFormat', 'dayFormat', 'timeFormat', 'monthDayFormat', 'showTools', 'themeName', 'appearance', 'variant', 'locale', 'size', 'disabled', 'dir', 'lang'],
70996
71036
  methods: ['isBlackoutDate', 'isSpecialDate', 'isWeekend', 'isToday', 'getEventsForDay', 'getAllDayEventsForDay', 'getAllDayEvents', 'getNowIndicatorTop', 'activateEvent', 'navigateToDate', 'navigateToday', 'navigatePrevious', 'navigateNext', 'onEventClick', 'onGridCellClick', 'onAllDayCellClick', 'onEventKeydown', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges']
70997
71037
  }),
70998
71038
  __metadata$1a("design:paramtypes", [])
@@ -71005,7 +71045,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
71005
71045
  changeDetection: ChangeDetectionStrategy.OnPush,
71006
71046
  template: '<ng-content></ng-content>'
71007
71047
  }]
71008
- }], ctorParameters: () => [], propDecorators: { visibleDates: [{ type: i0.Input, args: [{ isSignal: true, alias: "visibleDates", required: false }] }], collectedEvents: [{ type: i0.Input, args: [{ isSignal: true, alias: "collectedEvents", required: false }] }], eventsByDay: [{ type: i0.Input, args: [{ isSignal: true, alias: "eventsByDay", required: false }] }], timeSlots: [{ type: i0.Input, args: [{ isSignal: true, alias: "timeSlots", required: false }] }], intl: [{ type: i0.Input, args: [{ isSignal: true, alias: "intl", required: false }] }], hasAllDayEvents: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasAllDayEvents", required: false }] }], view: [{ type: i0.Input, args: [{ isSignal: true, alias: "view", required: false }] }], startDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "startDate", required: false }] }], days: [{ type: i0.Input, args: [{ isSignal: true, alias: "days", required: false }] }], hourStart: [{ type: i0.Input, args: [{ isSignal: true, alias: "hourStart", required: false }] }], hourEnd: [{ type: i0.Input, args: [{ isSignal: true, alias: "hourEnd", required: false }] }], stepMinutes: [{ type: i0.Input, args: [{ isSignal: true, alias: "stepMinutes", required: false }] }], timezone: [{ type: i0.Input, args: [{ isSignal: true, alias: "timezone", required: false }] }], blackoutDates: [{ type: i0.Input, args: [{ isSignal: true, alias: "blackoutDates", required: false }] }], specialDates: [{ type: i0.Input, args: [{ isSignal: true, alias: "specialDates", required: false }] }], firstDayOfWeek: [{ type: i0.Input, args: [{ isSignal: true, alias: "firstDayOfWeek", required: false }] }], isTodayHighlighted: [{ type: i0.Input, args: [{ isSignal: true, alias: "isTodayHighlighted", required: false }] }], isWeekendHighlighted: [{ type: i0.Input, args: [{ isSignal: true, alias: "isWeekendHighlighted", required: false }] }], allDayVisibility: [{ type: i0.Input, args: [{ isSignal: true, alias: "allDayVisibility", required: false }] }], showWeekNumbers: [{ type: i0.Input, args: [{ isSignal: true, alias: "showWeekNumbers", required: false }] }], showAdjacent: [{ type: i0.Input, args: [{ isSignal: true, alias: "showAdjacent", required: false }] }], daysAhead: [{ type: i0.Input, args: [{ isSignal: true, alias: "daysAhead", required: false }] }], weekdayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "weekdayFormat", required: false }] }], dayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "dayFormat", required: false }] }], timeFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "timeFormat", required: false }] }], monthDayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "monthDayFormat", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], locale: [{ type: i0.Input, args: [{ isSignal: true, alias: "locale", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", 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 }] }], schedulerBeforeEventActivate: [{ type: i0.Output, args: ["schedulerBeforeEventActivate"] }], schedulerEventActivate: [{ type: i0.Output, args: ["schedulerEventActivate"] }], schedulerBeforeSelectRange: [{ type: i0.Output, args: ["schedulerBeforeSelectRange"] }], schedulerSelectRange: [{ type: i0.Output, args: ["schedulerSelectRange"] }], schedulerRangeChange: [{ type: i0.Output, args: ["schedulerRangeChange"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
71048
+ }], ctorParameters: () => [], propDecorators: { intl: [{ type: i0.Input, args: [{ isSignal: true, alias: "intl", required: false }] }], visibleDates: [{ type: i0.Input, args: [{ isSignal: true, alias: "visibleDates", required: false }] }], collectedEvents: [{ type: i0.Input, args: [{ isSignal: true, alias: "collectedEvents", required: false }] }], eventsByDay: [{ type: i0.Input, args: [{ isSignal: true, alias: "eventsByDay", required: false }] }], timeSlots: [{ type: i0.Input, args: [{ isSignal: true, alias: "timeSlots", required: false }] }], hasAllDayEvents: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasAllDayEvents", required: false }] }], view: [{ type: i0.Input, args: [{ isSignal: true, alias: "view", required: false }] }], startDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "startDate", required: false }] }], days: [{ type: i0.Input, args: [{ isSignal: true, alias: "days", required: false }] }], hourStart: [{ type: i0.Input, args: [{ isSignal: true, alias: "hourStart", required: false }] }], hourEnd: [{ type: i0.Input, args: [{ isSignal: true, alias: "hourEnd", required: false }] }], stepMinutes: [{ type: i0.Input, args: [{ isSignal: true, alias: "stepMinutes", required: false }] }], timezone: [{ type: i0.Input, args: [{ isSignal: true, alias: "timezone", required: false }] }], blackoutDates: [{ type: i0.Input, args: [{ isSignal: true, alias: "blackoutDates", required: false }] }], specialDates: [{ type: i0.Input, args: [{ isSignal: true, alias: "specialDates", required: false }] }], firstDayOfWeek: [{ type: i0.Input, args: [{ isSignal: true, alias: "firstDayOfWeek", required: false }] }], isTodayHighlighted: [{ type: i0.Input, args: [{ isSignal: true, alias: "isTodayHighlighted", required: false }] }], isWeekendHighlighted: [{ type: i0.Input, args: [{ isSignal: true, alias: "isWeekendHighlighted", required: false }] }], allDayVisibility: [{ type: i0.Input, args: [{ isSignal: true, alias: "allDayVisibility", required: false }] }], showWeekNumbers: [{ type: i0.Input, args: [{ isSignal: true, alias: "showWeekNumbers", required: false }] }], showAdjacent: [{ type: i0.Input, args: [{ isSignal: true, alias: "showAdjacent", required: false }] }], daysAhead: [{ type: i0.Input, args: [{ isSignal: true, alias: "daysAhead", required: false }] }], weekdayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "weekdayFormat", required: false }] }], dayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "dayFormat", required: false }] }], timeFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "timeFormat", required: false }] }], monthDayFormat: [{ type: i0.Input, args: [{ isSignal: true, alias: "monthDayFormat", required: false }] }], showTools: [{ type: i0.Input, args: [{ isSignal: true, alias: "showTools", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], locale: [{ type: i0.Input, args: [{ isSignal: true, alias: "locale", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", 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 }] }], schedulerBeforeEventActivate: [{ type: i0.Output, args: ["schedulerBeforeEventActivate"] }], schedulerEventActivate: [{ type: i0.Output, args: ["schedulerEventActivate"] }], schedulerBeforeSelectRange: [{ type: i0.Output, args: ["schedulerBeforeSelectRange"] }], schedulerSelectRange: [{ type: i0.Output, args: ["schedulerSelectRange"] }], schedulerRangeChange: [{ type: i0.Output, args: ["schedulerRangeChange"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
71009
71049
  /**
71010
71050
  * @public
71011
71051
  */