@breadstone/mosaik-elements-angular 0.1.6 → 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,10 @@
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
+
1
8
  ## 0.1.6 (2026-06-01)
2
9
 
3
10
  ### 🚀 Features
@@ -51066,6 +51066,12 @@ let FlowBoardColumnComponent = class FlowBoardColumnComponent {
51066
51066
  * @public
51067
51067
  */
51068
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 */ []));
51069
51075
  /**
51070
51076
  * Signal input for the `dir` property.
51071
51077
  *
@@ -51115,6 +51121,10 @@ let FlowBoardColumnComponent = class FlowBoardColumnComponent {
51115
51121
  if (themeNameValue !== undefined) {
51116
51122
  this._elementRef.nativeElement.themeName = themeNameValue;
51117
51123
  }
51124
+ const appearanceValue = this.appearance();
51125
+ if (appearanceValue !== undefined) {
51126
+ this._elementRef.nativeElement.appearance = appearanceValue;
51127
+ }
51118
51128
  const dirValue = this.dir();
51119
51129
  if (dirValue !== undefined) {
51120
51130
  this._elementRef.nativeElement.dir = dirValue;
@@ -51183,12 +51193,12 @@ let FlowBoardColumnComponent = class FlowBoardColumnComponent {
51183
51193
  this._elementRef.nativeElement[property] = value;
51184
51194
  }
51185
51195
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: FlowBoardColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51186
- 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 });
51187
51197
  };
51188
51198
  FlowBoardColumnComponent = __decorate$2o([
51189
51199
  ProxyCmp({
51190
51200
  defineCustomElementFn: () => defineCustomElement('mosaik-flow-board-column', FlowBoardColumnElement),
51191
- inputs: ['hasItems', 'isDragEnabled', 'canDrag', 'columnKey', 'reorderable', 'pinned', 'themeName', 'dir', 'lang'],
51201
+ inputs: ['hasItems', 'isDragEnabled', 'canDrag', 'columnKey', 'reorderable', 'pinned', 'themeName', 'appearance', 'dir', 'lang'],
51192
51202
  methods: ['getItems', 'getDragRef', 'getDropListRef', 'syncItemDragRefs', 'getPinnedItems', 'getNonPinnedItems', 'setPinned', 'handleSlotChange', 'assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'getSlotContent', 'hasSlotContent', 'hasSlot', 'onSlotChanges']
51193
51203
  }),
51194
51204
  __metadata$2o("design:paramtypes", [])
@@ -51201,7 +51211,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
51201
51211
  changeDetection: ChangeDetectionStrategy.OnPush,
51202
51212
  template: '<ng-content></ng-content>'
51203
51213
  }]
51204
- }], 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"] }] } });
51205
51215
  /**
51206
51216
  * @public
51207
51217
  */
@@ -70580,6 +70590,12 @@ let SchedulerComponent = class SchedulerComponent {
70580
70590
  get elementRef() {
70581
70591
  return this._elementRef;
70582
70592
  }
70593
+ /**
70594
+ * Signal input for the `intl` property.
70595
+ *
70596
+ * @public
70597
+ */
70598
+ intl = input(...(ngDevMode ? [undefined, { debugName: "intl" }] : /* istanbul ignore next */ []));
70583
70599
  /**
70584
70600
  * Signal input for the `visibleDates` property.
70585
70601
  *
@@ -70604,12 +70620,6 @@ let SchedulerComponent = class SchedulerComponent {
70604
70620
  * @public
70605
70621
  */
70606
70622
  timeSlots = input(...(ngDevMode ? [undefined, { debugName: "timeSlots" }] : /* istanbul ignore next */ []));
70607
- /**
70608
- * Signal input for the `intl` property.
70609
- *
70610
- * @public
70611
- */
70612
- intl = input(...(ngDevMode ? [undefined, { debugName: "intl" }] : /* istanbul ignore next */ []));
70613
70623
  /**
70614
70624
  * Signal input for the `hasAllDayEvents` property.
70615
70625
  *
@@ -70736,6 +70746,12 @@ let SchedulerComponent = class SchedulerComponent {
70736
70746
  * @public
70737
70747
  */
70738
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 */ []));
70739
70755
  /**
70740
70756
  * Signal input for the `themeName` property.
70741
70757
  *
@@ -70893,6 +70909,10 @@ let SchedulerComponent = class SchedulerComponent {
70893
70909
  if (monthDayFormatValue !== undefined) {
70894
70910
  this._elementRef.nativeElement.monthDayFormat = monthDayFormatValue;
70895
70911
  }
70912
+ const showToolsValue = this.showTools();
70913
+ if (showToolsValue !== undefined) {
70914
+ this._elementRef.nativeElement.showTools = showToolsValue;
70915
+ }
70896
70916
  const themeNameValue = this.themeName();
70897
70917
  if (themeNameValue !== undefined) {
70898
70918
  this._elementRef.nativeElement.themeName = themeNameValue;
@@ -71007,12 +71027,12 @@ let SchedulerComponent = class SchedulerComponent {
71007
71027
  this._elementRef.nativeElement[property] = value;
71008
71028
  }
71009
71029
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: SchedulerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71010
- 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 });
71011
71031
  };
71012
71032
  SchedulerComponent = __decorate$1a([
71013
71033
  ProxyCmp({
71014
71034
  defineCustomElementFn: () => defineCustomElement('mosaik-scheduler', SchedulerElement),
71015
- 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'],
71016
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']
71017
71037
  }),
71018
71038
  __metadata$1a("design:paramtypes", [])
@@ -71025,7 +71045,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
71025
71045
  changeDetection: ChangeDetectionStrategy.OnPush,
71026
71046
  template: '<ng-content></ng-content>'
71027
71047
  }]
71028
- }], 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"] }] } });
71029
71049
  /**
71030
71050
  * @public
71031
71051
  */