@bizdoc/core 2.3.28 → 2.3.31

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.
Files changed (64) hide show
  1. package/assets/bizdoc-schema.json +31 -13
  2. package/assets/themes/deep-purple-light-blue.min.css +4 -4
  3. package/assets/themes/default.min.css +4 -4
  4. package/esm2022/lib/admin/architecture/declarations.mjs +19 -4
  5. package/esm2022/lib/admin/architecture/designer-element.component.mjs +47 -63
  6. package/esm2022/lib/admin/architecture/designer.component.mjs +65 -55
  7. package/esm2022/lib/admin/architecture/elements/action.component.mjs +1 -1
  8. package/esm2022/lib/admin/architecture/elements/analysis-view.component.mjs +3 -3
  9. package/esm2022/lib/admin/architecture/elements/analysis-widget.component.mjs +3 -3
  10. package/esm2022/lib/admin/architecture/elements/attribute.component.mjs +5 -5
  11. package/esm2022/lib/admin/architecture/elements/control.component.mjs +1 -1
  12. package/esm2022/lib/admin/architecture/elements/cube.component.mjs +3 -5
  13. package/esm2022/lib/admin/architecture/elements/documents-report.component.mjs +3 -3
  14. package/esm2022/lib/admin/architecture/elements/folder.component.mjs +1 -1
  15. package/esm2022/lib/admin/architecture/elements/form.component.mjs +1 -1
  16. package/esm2022/lib/admin/architecture/elements/guide.component.mjs +1 -1
  17. package/esm2022/lib/admin/architecture/elements/job.component.mjs +1 -1
  18. package/esm2022/lib/admin/architecture/elements/node.component.mjs +1 -1
  19. package/esm2022/lib/admin/architecture/elements/parallel-view.component.mjs +3 -3
  20. package/esm2022/lib/admin/architecture/elements/performance-widget.component.mjs +3 -3
  21. package/esm2022/lib/admin/architecture/elements/policy.component.mjs +1 -1
  22. package/esm2022/lib/admin/architecture/elements/report.component.mjs +1 -1
  23. package/esm2022/lib/admin/architecture/elements/role.component.mjs +1 -1
  24. package/esm2022/lib/admin/architecture/elements/rule.component.mjs +1 -1
  25. package/esm2022/lib/admin/architecture/elements/source.component.mjs +1 -1
  26. package/esm2022/lib/admin/architecture/elements/state.component.mjs +1 -1
  27. package/esm2022/lib/admin/architecture/elements/sum-view.component.mjs +3 -3
  28. package/esm2022/lib/admin/architecture/elements/type.component.mjs +7 -4
  29. package/esm2022/lib/admin/architecture/elements/utility.component.mjs +1 -1
  30. package/esm2022/lib/admin/architecture/elements/view.component.mjs +1 -1
  31. package/esm2022/lib/admin/architecture/elements/widget.component.mjs +1 -1
  32. package/esm2022/lib/admin/architecture/icon-picker.component.mjs +3 -3
  33. package/esm2022/lib/admin/form/workflow/role-node.component.mjs +1 -1
  34. package/esm2022/lib/admin/form/workflow/workflow.component.mjs +3 -3
  35. package/esm2022/lib/compose/copy/copy.dialog.mjs +3 -3
  36. package/esm2022/lib/compose/trace/trace.component.mjs +12 -13
  37. package/esm2022/lib/core/avatar/avatar.component.mjs +5 -6
  38. package/esm2022/lib/core/fields/yesno.field.mjs +3 -3
  39. package/esm2022/lib/core/models.mjs +1 -1
  40. package/esm2022/lib/core/pipes/sort.pipe.mjs +13 -1
  41. package/esm2022/lib/core/popup/popup.component.mjs +1 -1
  42. package/esm2022/lib/core/popup/popup.service.mjs +9 -2
  43. package/esm2022/lib/cube/spreadsheet/spreadsheet.container.mjs +1 -1
  44. package/esm2022/lib/scheduler/schedule.component.mjs +2 -2
  45. package/esm2022/lib/shared.module.mjs +7 -7
  46. package/esm2022/lib/views/timeline/{timeline.component.exp.mjs → timeline.component.mjs} +11 -13
  47. package/esm2022/public-api.mjs +4 -3
  48. package/fesm2022/bizdoc-core.mjs +217 -188
  49. package/fesm2022/bizdoc-core.mjs.map +1 -1
  50. package/lib/admin/architecture/declarations.d.ts +5 -3
  51. package/lib/admin/architecture/designer-element.component.d.ts +9 -10
  52. package/lib/admin/architecture/designer.base.d.ts +1 -1
  53. package/lib/admin/architecture/designer.component.d.ts +14 -2
  54. package/lib/admin/architecture/elements/cube.component.d.ts +0 -1
  55. package/lib/admin/architecture/elements/performance-widget.component.d.ts +1 -1
  56. package/lib/admin/system.service.d.ts +1 -1
  57. package/lib/core/models.d.ts +6 -1
  58. package/lib/core/pipes/sort.pipe.d.ts +6 -0
  59. package/lib/core/popup/popup.service.d.ts +7 -0
  60. package/lib/scheduler/schedule.component.d.ts +2 -1
  61. package/lib/shared.module.d.ts +2 -2
  62. package/lib/views/timeline/{timeline.component.exp.d.ts → timeline.component.d.ts} +2 -4
  63. package/package.json +11 -11
  64. package/public-api.d.ts +3 -2
@@ -227,7 +227,7 @@ export interface DesignerInfo {
227
227
  actions: ElementInfo[];
228
228
  states: ElementInfo[];
229
229
  }
230
- export interface ElementInfo<T = any> {
230
+ export interface ElementInfo<O = any> {
231
231
  family?: string;
232
232
  familyKey?: string;
233
233
  type?: string;
@@ -237,9 +237,11 @@ export interface ElementInfo<T = any> {
237
237
  disabled?: boolean;
238
238
  draft?: boolean;
239
239
  empty?: boolean;
240
- options?: T;
240
+ options?: O;
241
241
  }
242
- export interface ElementFamily<T = any> {
242
+ export interface ElementFamily {
243
243
  title: string;
244
244
  elements: ElementInfo[];
245
245
  }
246
+ export declare function getMonthList(locales?: string | string[], format?: "long" | "short"): string[];
247
+ export declare function extractString(str: LocalizedString | string): string;
@@ -56,29 +56,28 @@ export declare class DesignerItemComponent implements AfterViewInit, OnChanges,
56
56
  icon: boolean;
57
57
  form: FormGroup;
58
58
  context?: CustomViewContext;
59
- view?: TemplateRef<any>;
60
- readonly onContinue: EventEmitter<any>;
61
- readonly onViewClosed: EventEmitter<boolean>;
59
+ customView?: TemplateRef<any>;
62
60
  readonly onSave: EventEmitter<ElementModel<any>>;
63
61
  editContent: EditContentDirective;
62
+ addContent: AddContentDirective;
64
63
  customContents: QueryList<CustomContentDirective>;
65
64
  widgetContent: WidgetContentDirective;
66
65
  options: Portal<any>;
67
66
  arguments: Portal<any>;
68
67
  mode: DesignMode;
69
68
  model: ElementModel<any>;
70
- private _customDesignerInstance;
69
+ private _elementDesigner;
71
70
  private readonly _destroy;
72
71
  optionsstate: any;
73
- invalid: boolean;
74
72
  constructor(_element: ElementRef<HTMLDivElement>, _fb: FormBuilder, _sanitizer: DomSanitizer, _ref: DesignerRef<any>, _cfr: BizDocComponentFactoryResolver);
75
73
  ngOnChanges(changes: SimpleChanges): void;
76
74
  resource(image: string): import("@angular/platform-browser").SafeResourceUrl;
77
- optionsAttached(componentRef: ComponentRef<DesignerElementComponent<any>>): void;
78
- private _bind;
79
- argumentsattached(componentRef: ComponentRef<LayoutComponent>): void;
80
75
  ngOnInit(): void;
81
- private _form;
76
+ private _patch;
77
+ optionsAttached(componentRef: ComponentRef<DesignerElementComponent<any>>): void;
78
+ argumentsAttached(componentRef: ComponentRef<LayoutComponent>): void;
79
+ private _bindOptionsForm;
80
+ private _commonForm;
82
81
  ngAfterViewInit(): void;
83
82
  unlock(evt: Event): void;
84
83
  continue(): void;
@@ -92,5 +91,5 @@ export declare class DesignerItemComponent implements AfterViewInit, OnChanges,
92
91
  handleViewKeyboardEvent(event: KeyboardEvent): void;
93
92
  ngOnDestroy(): void;
94
93
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignerItemComponent, never>;
95
- static ɵcmp: i0.ɵɵComponentDeclaration<DesignerItemComponent, "bizdoc-designer-element", never, { "privileges": { "alias": "privileges"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "form": { "alias": "form"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "onContinue": "continue"; "onViewClosed": "viewClosed"; "onSave": "save"; }, ["editContent", "widgetContent", "customContents"], never, false, never>;
94
+ static ɵcmp: i0.ɵɵComponentDeclaration<DesignerItemComponent, "bizdoc-designer-element", never, { "privileges": { "alias": "privileges"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "form": { "alias": "form"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "onSave": "save"; }, ["editContent", "addContent", "widgetContent", "customContents"], never, false, never>;
96
95
  }
@@ -33,7 +33,7 @@ export declare abstract class DesignerTypeElementComponent<T = any> extends Desi
33
33
  ngOnInit(): void;
34
34
  add(collection: FormArray, form: FormGroup, title: string, name: string): void;
35
35
  edit(form: FormGroup, title: string, name: string): void;
36
- protected get _typegroups(): ElementFamily<any>[];
36
+ protected get _typegroups(): ElementFamily[];
37
37
  datatypeOf(name: string): import("@bizdoc/core").LocalizedString;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignerTypeElementComponent<any>, never>;
39
39
  static ɵdir: i0.ɵɵDirectiveDeclaration<DesignerTypeElementComponent<any>, never, never, {}, {}, never, never, false, never>;
@@ -11,7 +11,6 @@ import { Popup } from '../../core/popup/popup.service';
11
11
  import { UtilityRef } from "../utility-ref";
12
12
  import { ElementModel, DesignerModel, TemplateInfo } from "./declarations";
13
13
  import { FormBuilder } from "@angular/forms";
14
- import { MatInput } from "@angular/material/input";
15
14
  import * as i0 from "@angular/core";
16
15
  /** */
17
16
  export declare class ConfigurationDesignerComponent implements UtilityComponent, OnInit {
@@ -25,7 +24,6 @@ export declare class ConfigurationDesignerComponent implements UtilityComponent,
25
24
  private _popup;
26
25
  private _ref;
27
26
  filters: TemplateRef<any>;
28
- search: MatInput;
29
27
  searchBy: number;
30
28
  loading: boolean;
31
29
  saving: boolean;
@@ -60,7 +58,21 @@ export declare class ConfigurationDesignerComponent implements UtilityComponent,
60
58
  * @param position
61
59
  */
62
60
  private _insert;
61
+ /**
62
+ *
63
+ * @param element
64
+ * @param section
65
+ * @param mode
66
+ * @returns
67
+ */
63
68
  private _open;
69
+ /**
70
+ *
71
+ * @param element
72
+ * @param collection
73
+ * @param mode
74
+ * @returns
75
+ */
64
76
  private _createInjector;
65
77
  add(section: Section, menu: MatMenuTrigger, evt: Event): void;
66
78
  create(section: Section, template: TemplateInfo): void;
@@ -39,7 +39,6 @@ export declare class CubeDesignComponent extends DesignerTypeElementComponent im
39
39
  ngOnInit(): void;
40
40
  private _schedule;
41
41
  private _form;
42
- complete(): void;
43
42
  nameOf(axis: string | string[]): string;
44
43
  private newView;
45
44
  /**
@@ -10,5 +10,5 @@ export declare class PerformanceWidgetDesignComponent extends DesignerCubeElemen
10
10
  scope: import("@angular/forms").FormControl<unknown>;
11
11
  }>;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceWidgetDesignComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceWidgetDesignComponent, "ng-component", never, {}, {}, never, never, false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceWidgetDesignComponent, "bizdoc-performance-widget-designer", never, {}, {}, never, never, false, never>;
14
14
  }
@@ -55,7 +55,7 @@ export declare class SystemService {
55
55
  datatypes(): Observable<DataTypeInfo[]>;
56
56
  save(form: Form): Observable<number>;
57
57
  constructor(_http: HttpClient);
58
- typegroups(): Observable<ElementFamily<any>[]>;
58
+ typegroups(): Observable<ElementFamily[]>;
59
59
  static ɵfac: i0.ɵɵFactoryDeclaration<SystemService, never>;
60
60
  static ɵprov: i0.ɵɵInjectableDeclaration<SystemService>;
61
61
  }
@@ -242,8 +242,13 @@ export interface View {
242
242
  cubes: string[];
243
243
  forms: string[];
244
244
  }
245
+ export interface Holiday {
246
+ title: string;
247
+ fromDate: Date;
248
+ toDate: Date;
249
+ }
245
250
  export interface Profile {
246
- holidays: any;
251
+ holidays: Holiday[];
247
252
  utilities: Utility[];
248
253
  guides?: Guide[];
249
254
  views: View[];
@@ -1,5 +1,11 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
+ /** */
4
+ export declare class JsonPipe implements PipeTransform {
5
+ transform(value: any, ...args: any[]): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<JsonPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<JsonPipe, "json", false>;
8
+ }
3
9
  export declare class ArraySortPipe implements PipeTransform {
4
10
  transform(array: any, field: string, order?: 'asc' | 'desc'): any[];
5
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ArraySortPipe, never>;
@@ -11,6 +11,13 @@ export declare class Popup {
11
11
  private _session;
12
12
  private _injector;
13
13
  constructor(_overlay: Overlay, _session: SessionService, _injector: Injector);
14
+ /**
15
+ *
16
+ * @param component
17
+ * @param element
18
+ * @param options
19
+ * @returns
20
+ */
14
21
  open<T, V = any, D = any>(component: ComponentType<T> | TemplateRef<T>, element: HTMLElement | ElementRef, options?: {
15
22
  position?: Position;
16
23
  disposeOnBackdrop?: boolean;
@@ -4,6 +4,7 @@ import { MailboxService } from '../core/mailbox.service';
4
4
  import { PromptService } from '../core/prompt.service';
5
5
  import { PanesRouter } from '../core/slots/router.service';
6
6
  import { SessionService } from '../core/session.service';
7
+ import { HolidayModel } from '@syncfusion/ej2-angular-gantt';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class ScheduleViewComponent implements OnChanges, AfterViewInit {
9
10
  private _mailbox;
@@ -22,7 +23,7 @@ export declare class ScheduleViewComponent implements OnChanges, AfterViewInit {
22
23
  starting: Date;
23
24
  ending: Date;
24
25
  private _currentView;
25
- holidays: any;
26
+ readonly holidays: HolidayModel[];
26
27
  /** Scheduler ctor */
27
28
  constructor(session: SessionService, _mailbox: MailboxService, _router: PanesRouter, _sb: PromptService);
28
29
  ngOnChanges(_changes: SimpleChanges): void;
@@ -35,7 +35,7 @@ import * as i31 from "./core/pipes/duration-format.pipe";
35
35
  import * as i32 from "./core/inputs/combination-picker";
36
36
  import * as i33 from "./core/inputs/combination-picker-body";
37
37
  import * as i34 from "./core/inputs/combination-pool";
38
- import * as i35 from "./views/timeline/timeline.component.exp";
38
+ import * as i35 from "./views/timeline/timeline.component";
39
39
  import * as i36 from "./core/animated-icon/animated-icon.directive";
40
40
  import * as i37 from "./core/pipes/daterange.pipe";
41
41
  import * as i38 from "./compose/state.component";
@@ -203,6 +203,6 @@ import * as i198 from "./modules/material.module";
203
203
  export declare class SharedModule {
204
204
  static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
205
205
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
206
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.LocalizedStringPipe, typeof i2.HelpTipComponent, typeof i3.BoxFormComponent, typeof i4.BoxFormRowComponent, typeof i5.BoxFormControlComponent, typeof i6.RolesPerformanceComponent, typeof i7.CubeUsageComponent, typeof i8.CubeDocumentsComponent, typeof i9.DateFormatPipe, typeof i10.CalendarPipe, typeof i11.DifferencePipe, typeof i12.DurationPipe, typeof i13.TimeAgoPipe, typeof i13.ToNowPipe, typeof i14.HtmlSimplePipe, typeof i15.CheckboxComponent, typeof i16.CubeParallelComponent, typeof i17.CubeSumComponent, typeof i18.CubeParallelViewComponent, typeof i19.CubeChartViewComponent, typeof i20.CubeExploreViewComponent, typeof i21.CubeDocumentSumComponent, typeof i22.ExploreItemImplComponent, typeof i23.DocumentInfoComponent, typeof i24.DocumentViewsComponent, typeof i25.ViewItemComponent, typeof i26.CubeDocumentMatrixComponent, typeof i27.CubeDocumentViewComponent, typeof i28.CubePivotViewComponent, typeof i29.ActionPicker, typeof i30.QuickCommentComponent, typeof i31.DurationFormatPipe, typeof i32.CombinationPicker, typeof i33.CombinationPickerBody, typeof i34.CombinationPool, typeof i35.TimelineViewComponent, typeof i36.MatIconAnimate, typeof i37.DateRangePipe, typeof i37.AgoPipe, typeof i38.StateDirective, typeof i39.JoinPipe, typeof i40.TypeValuePipe, typeof i41.L18nPipe, typeof i41.TranslatePipe, typeof i42.IdentityName, typeof i43.SanitizeHtmlPipe, typeof i44.StatePipe, typeof i45.ActionPipe, typeof i46.RolePipe, typeof i47.FormPipe, typeof i48.FilterPipe, typeof i48.ArraySortPipe, typeof i49.UserNamePipe, typeof i50.TaggingPipe, typeof i51.TypeSelect, typeof i52.TypeAutocomplete, typeof i53.Signature, typeof i54.AceInput, typeof i55.TimespanInput, typeof i56.AddressInput, typeof i57.FileInput, typeof i58.TimePicker, typeof i59.LayoutComponent, typeof i60.StickyToolbar, typeof i61.TimeField, typeof i62.SignatureField, typeof i63.AddressField, typeof i64.RadioButtonField, typeof i65.ChecklistField, typeof i66.YesNoField, typeof i67.HtmlField, typeof i68.FileField, typeof i69.NumericField, typeof i70.AutocompleteField, typeof i71.CheckboxField, typeof i72.DateField, typeof i73.DateRangeField, typeof i74.ExpressionField, typeof i75.InputField, typeof i76.SelectField, typeof i77.SwitchField, typeof i78.TextareaField, typeof i79.ChipsField, typeof i80.TimespanField, typeof i81.ReturnActionComponent, typeof i82.AssignActionComponent, typeof i83.MoveToActionComponent, typeof i84.AvatarComponent, typeof i85.PeopleComponent, typeof i86.EditInputComponent, typeof i87.LottieAnimation, typeof i14.ContactsComponent, typeof i88.CubeMatrixComponent, typeof i89.FilterTagsComponent, typeof i90.ExploreItemsComponent, typeof i91.CompareNameDirective, typeof i91.CompareGroupDirective, typeof i91.CompareContextDirective, typeof i92.GuideComponent, typeof i93.OutOfOfficeToast, typeof i94.NotificationsTableComponent, typeof i95.NotificationsFilterComponent, typeof i96.PrivilegeHiddenDirective, typeof i97.TaggingItemDirective, typeof i98.TaggingDirective, typeof i99.DocumentTaggingComponent, typeof i100.UserTaggingComponent, typeof i96.PrivilegeDisabledDirective, typeof i101.CubeDocumentsGridComponent, typeof i102.LongRunningTaskNotification, typeof i103.TaggedNotification, typeof i104.CommentedNotification, typeof i105.NudgeNotification, typeof i106.InviteNotification, typeof i107.TextNotification, typeof i108.CubeAnomalyNotification, typeof i109.EscalatedNotification, typeof i110.LikedNotification, typeof i111.StateChangedNotification, typeof i112.UpcomingEventNotification, typeof i113.NoneComponent, typeof i114.ScheduleViewComponent, typeof i115.OptionsComponent, typeof i116.TraceViewComponent, typeof i117.ProgressDirective, typeof i118.AttachmentsComponent, typeof i119.DocumentEventsComponent, typeof i120.TagsComponent, typeof i121.MapComponent, typeof i122.MaskComponent, typeof i123.FlowViewComponent, typeof i124.SubstitutionComponent, typeof i125.PopupComponent, typeof i126.AttachmentPreview, typeof i127.CommentsComponent, typeof i128.CommentComponent, typeof i129.EditCommentComponent, typeof i130.CommentLikesComponent, typeof i131.CommentEditsComponent, typeof i132.BrowseItemsComponent, typeof i133.BrowseFilterComponent, typeof i134.ExpandedItemComponent, typeof i135.ComposeFormComponent, typeof i136.CubeViewComponent, typeof i137.CubeFilterComponent, typeof i138.CubeAccumulationChartComponent, typeof i139.CubeChartComponent, typeof i140.CubePivotComponent, typeof i141.CubeSpreadsheetComponent, typeof i142.CubeGridComponent, typeof i143.ReportViewerComponent, typeof i144.TableViewComponent, typeof i145.ReportArgumentsComponent, typeof i146.DashboardComponent, typeof i147.WidgetItemComponent, typeof i148.CubeWidgetFilterComponent, typeof i149.SaveChangesDialog, typeof i150.AskDialog, typeof i151.AboutDialog, typeof i152.ActionDialog, typeof i153.ImpersonateDialog, typeof i154.ConversationComponent, typeof i155.CubeMatrixPopupComponent, typeof i156.VersionCompareComponent, typeof i157.ExploreDocumentComponent, typeof i158.TasksComponent, typeof i159.CubeDocumentsTableComponent, typeof i160.CubePerformanceWidget, typeof i161.CubeAccumAnalysisWidget, typeof i162.CubeAnalysisWidget, typeof i163.CubeChartAnalysisWidget, typeof i164.ActionsWidget, typeof i165.RecentsWidget, typeof i166.PendingResultsWidget, typeof i167.CompareGroupsWidget, typeof i168.CubeDocumentsWidget, typeof i169.DocumentStateWidgetComponent, typeof i170.PersonalScoreWidget, typeof i171.PersonalActivityWidget, typeof i172.PeersPerformanceWidget, typeof i173.UsagePivotComponent, typeof i174.UsageChartComponent, typeof i175.UsageReportArgs, typeof i176.EmojiHostComponent, typeof i177.TooltipDirective, typeof i177.TooltipComponent, typeof i178.BrokenPage], [typeof i179.SpContainer, typeof i180.DayJsModule, typeof i181.CommonModule, typeof i182.HttpClientModule, typeof i183.ReactiveFormsModule, typeof i184.RouterModule, typeof i185.PickerModule, typeof i186.SyncfusionGanttModule, typeof i187.SyncfusionScheduleModule, typeof i188.SyncfusionCircularGaugeModule, typeof i189.SyncfusionChartModule, typeof i186.SyncfusionGanttModule, typeof i190.SyncfusionGridModule, typeof i191.SyncfusionLinearGaugeModule, typeof i192.SyncfusionTextEditorModule, typeof i193.SyncfusionSpreadsheetModule, typeof i194.SyncfusionPivotModule, typeof i195.SignatureModule, typeof i196.KanbanModule, typeof i197.SyncfusionDiagramModule, typeof i198.MaterialModule], [typeof i179.SpContainer, typeof i113.NoneComponent, typeof i1.LocalizedStringPipe, typeof i198.MaterialModule, typeof i178.BrokenPage, typeof i2.HelpTipComponent, typeof i89.FilterTagsComponent, typeof i9.DateFormatPipe, typeof i10.CalendarPipe, typeof i11.DifferencePipe, typeof i12.DurationPipe, typeof i13.TimeAgoPipe, typeof i13.ToNowPipe, typeof i15.CheckboxComponent, typeof i16.CubeParallelComponent, typeof i17.CubeSumComponent, typeof i22.ExploreItemImplComponent, typeof i23.DocumentInfoComponent, typeof i24.DocumentViewsComponent, typeof i146.DashboardComponent, typeof i120.TagsComponent, typeof i30.QuickCommentComponent, typeof i127.CommentsComponent, typeof i59.LayoutComponent, typeof i152.ActionDialog, typeof i60.StickyToolbar, typeof i133.BrowseFilterComponent, typeof i137.CubeFilterComponent, typeof i114.ScheduleViewComponent, typeof i143.ReportViewerComponent, typeof i147.WidgetItemComponent, typeof i136.CubeViewComponent, typeof i90.ExploreItemsComponent, typeof i135.ComposeFormComponent, typeof i132.BrowseItemsComponent, typeof i94.NotificationsTableComponent, typeof i29.ActionPicker, typeof i154.ConversationComponent, typeof i38.StateDirective, typeof i14.ContactsComponent, typeof i88.CubeMatrixComponent, typeof i36.MatIconAnimate, typeof i177.TooltipDirective, typeof i55.TimespanInput, typeof i57.FileInput, typeof i56.AddressInput, typeof i54.AceInput, typeof i32.CombinationPicker, typeof i34.CombinationPool, typeof i51.TypeSelect, typeof i52.TypeAutocomplete, typeof i58.TimePicker, typeof i31.DurationFormatPipe, typeof i37.DateRangePipe, typeof i40.TypeValuePipe, typeof i39.JoinPipe, typeof i44.StatePipe, typeof i45.ActionPipe, typeof i46.RolePipe, typeof i47.FormPipe, typeof i48.FilterPipe, typeof i48.ArraySortPipe, typeof i49.UserNamePipe, typeof i43.SanitizeHtmlPipe, typeof i41.L18nPipe, typeof i41.TranslatePipe, typeof i42.IdentityName, typeof i84.AvatarComponent, typeof i145.ReportArgumentsComponent, typeof i126.AttachmentPreview, typeof i96.PrivilegeHiddenDirective, typeof i96.PrivilegeDisabledDirective, typeof i91.CompareGroupDirective, typeof i91.CompareNameDirective, typeof i91.CompareContextDirective, typeof i116.TraceViewComponent, typeof i123.FlowViewComponent, typeof i82.AssignActionComponent, typeof i81.ReturnActionComponent, typeof i157.ExploreDocumentComponent, typeof i160.CubePerformanceWidget, typeof i164.ActionsWidget, typeof i162.CubeAnalysisWidget, typeof i168.CubeDocumentsWidget, typeof i165.RecentsWidget, typeof i171.PersonalActivityWidget, typeof i167.CompareGroupsWidget, typeof i172.PeersPerformanceWidget, typeof i166.PendingResultsWidget, typeof i170.PersonalScoreWidget, typeof i148.CubeWidgetFilterComponent, typeof i159.CubeDocumentsTableComponent, typeof i101.CubeDocumentsGridComponent, typeof i158.TasksComponent, typeof i175.UsageReportArgs, typeof i174.UsageChartComponent, typeof i173.UsagePivotComponent, typeof i156.VersionCompareComponent, typeof i87.LottieAnimation, typeof i138.CubeAccumulationChartComponent, typeof i139.CubeChartComponent, typeof i140.CubePivotComponent, typeof i141.CubeSpreadsheetComponent, typeof i142.CubeGridComponent]>;
206
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.LocalizedStringPipe, typeof i2.HelpTipComponent, typeof i3.BoxFormComponent, typeof i4.BoxFormRowComponent, typeof i5.BoxFormControlComponent, typeof i6.RolesPerformanceComponent, typeof i7.CubeUsageComponent, typeof i8.CubeDocumentsComponent, typeof i9.DateFormatPipe, typeof i10.CalendarPipe, typeof i11.DifferencePipe, typeof i12.DurationPipe, typeof i13.TimeAgoPipe, typeof i13.ToNowPipe, typeof i14.HtmlSimplePipe, typeof i15.CheckboxComponent, typeof i16.CubeParallelComponent, typeof i17.CubeSumComponent, typeof i18.CubeParallelViewComponent, typeof i19.CubeChartViewComponent, typeof i20.CubeExploreViewComponent, typeof i21.CubeDocumentSumComponent, typeof i22.ExploreItemImplComponent, typeof i23.DocumentInfoComponent, typeof i24.DocumentViewsComponent, typeof i25.ViewItemComponent, typeof i26.CubeDocumentMatrixComponent, typeof i27.CubeDocumentViewComponent, typeof i28.CubePivotViewComponent, typeof i29.ActionPicker, typeof i30.QuickCommentComponent, typeof i31.DurationFormatPipe, typeof i32.CombinationPicker, typeof i33.CombinationPickerBody, typeof i34.CombinationPool, typeof i35.TimelineViewComponent, typeof i36.MatIconAnimate, typeof i37.DateRangePipe, typeof i37.AgoPipe, typeof i38.StateDirective, typeof i39.JoinPipe, typeof i40.TypeValuePipe, typeof i41.L18nPipe, typeof i41.TranslatePipe, typeof i42.IdentityName, typeof i43.SanitizeHtmlPipe, typeof i44.StatePipe, typeof i45.ActionPipe, typeof i46.RolePipe, typeof i47.FormPipe, typeof i48.FilterPipe, typeof i48.ArraySortPipe, typeof i48.JsonPipe, typeof i49.UserNamePipe, typeof i50.TaggingPipe, typeof i51.TypeSelect, typeof i52.TypeAutocomplete, typeof i53.Signature, typeof i54.AceInput, typeof i55.TimespanInput, typeof i56.AddressInput, typeof i57.FileInput, typeof i58.TimePicker, typeof i59.LayoutComponent, typeof i60.StickyToolbar, typeof i61.TimeField, typeof i62.SignatureField, typeof i63.AddressField, typeof i64.RadioButtonField, typeof i65.ChecklistField, typeof i66.YesNoField, typeof i67.HtmlField, typeof i68.FileField, typeof i69.NumericField, typeof i70.AutocompleteField, typeof i71.CheckboxField, typeof i72.DateField, typeof i73.DateRangeField, typeof i74.ExpressionField, typeof i75.InputField, typeof i76.SelectField, typeof i77.SwitchField, typeof i78.TextareaField, typeof i79.ChipsField, typeof i80.TimespanField, typeof i81.ReturnActionComponent, typeof i82.AssignActionComponent, typeof i83.MoveToActionComponent, typeof i84.AvatarComponent, typeof i85.PeopleComponent, typeof i86.EditInputComponent, typeof i87.LottieAnimation, typeof i14.ContactsComponent, typeof i88.CubeMatrixComponent, typeof i89.FilterTagsComponent, typeof i90.ExploreItemsComponent, typeof i91.CompareNameDirective, typeof i91.CompareGroupDirective, typeof i91.CompareContextDirective, typeof i92.GuideComponent, typeof i93.OutOfOfficeToast, typeof i94.NotificationsTableComponent, typeof i95.NotificationsFilterComponent, typeof i96.PrivilegeHiddenDirective, typeof i97.TaggingItemDirective, typeof i98.TaggingDirective, typeof i99.DocumentTaggingComponent, typeof i100.UserTaggingComponent, typeof i96.PrivilegeDisabledDirective, typeof i101.CubeDocumentsGridComponent, typeof i102.LongRunningTaskNotification, typeof i103.TaggedNotification, typeof i104.CommentedNotification, typeof i105.NudgeNotification, typeof i106.InviteNotification, typeof i107.TextNotification, typeof i108.CubeAnomalyNotification, typeof i109.EscalatedNotification, typeof i110.LikedNotification, typeof i111.StateChangedNotification, typeof i112.UpcomingEventNotification, typeof i113.NoneComponent, typeof i114.ScheduleViewComponent, typeof i115.OptionsComponent, typeof i116.TraceViewComponent, typeof i117.ProgressDirective, typeof i118.AttachmentsComponent, typeof i119.DocumentEventsComponent, typeof i120.TagsComponent, typeof i121.MapComponent, typeof i122.MaskComponent, typeof i123.FlowViewComponent, typeof i124.SubstitutionComponent, typeof i125.PopupComponent, typeof i126.AttachmentPreview, typeof i127.CommentsComponent, typeof i128.CommentComponent, typeof i129.EditCommentComponent, typeof i130.CommentLikesComponent, typeof i131.CommentEditsComponent, typeof i132.BrowseItemsComponent, typeof i133.BrowseFilterComponent, typeof i134.ExpandedItemComponent, typeof i135.ComposeFormComponent, typeof i136.CubeViewComponent, typeof i137.CubeFilterComponent, typeof i138.CubeAccumulationChartComponent, typeof i139.CubeChartComponent, typeof i140.CubePivotComponent, typeof i141.CubeSpreadsheetComponent, typeof i142.CubeGridComponent, typeof i143.ReportViewerComponent, typeof i144.TableViewComponent, typeof i145.ReportArgumentsComponent, typeof i146.DashboardComponent, typeof i147.WidgetItemComponent, typeof i148.CubeWidgetFilterComponent, typeof i149.SaveChangesDialog, typeof i150.AskDialog, typeof i151.AboutDialog, typeof i152.ActionDialog, typeof i153.ImpersonateDialog, typeof i154.ConversationComponent, typeof i155.CubeMatrixPopupComponent, typeof i156.VersionCompareComponent, typeof i157.ExploreDocumentComponent, typeof i158.TasksComponent, typeof i159.CubeDocumentsTableComponent, typeof i160.CubePerformanceWidget, typeof i161.CubeAccumAnalysisWidget, typeof i162.CubeAnalysisWidget, typeof i163.CubeChartAnalysisWidget, typeof i164.ActionsWidget, typeof i165.RecentsWidget, typeof i166.PendingResultsWidget, typeof i167.CompareGroupsWidget, typeof i168.CubeDocumentsWidget, typeof i169.DocumentStateWidgetComponent, typeof i170.PersonalScoreWidget, typeof i171.PersonalActivityWidget, typeof i172.PeersPerformanceWidget, typeof i173.UsagePivotComponent, typeof i174.UsageChartComponent, typeof i175.UsageReportArgs, typeof i176.EmojiHostComponent, typeof i177.TooltipDirective, typeof i177.TooltipComponent, typeof i178.BrokenPage], [typeof i179.SpContainer, typeof i180.DayJsModule, typeof i181.CommonModule, typeof i182.HttpClientModule, typeof i183.ReactiveFormsModule, typeof i184.RouterModule, typeof i185.PickerModule, typeof i186.SyncfusionGanttModule, typeof i187.SyncfusionScheduleModule, typeof i188.SyncfusionCircularGaugeModule, typeof i189.SyncfusionChartModule, typeof i186.SyncfusionGanttModule, typeof i190.SyncfusionGridModule, typeof i191.SyncfusionLinearGaugeModule, typeof i192.SyncfusionTextEditorModule, typeof i193.SyncfusionSpreadsheetModule, typeof i194.SyncfusionPivotModule, typeof i195.SignatureModule, typeof i196.KanbanModule, typeof i197.SyncfusionDiagramModule, typeof i198.MaterialModule], [typeof i179.SpContainer, typeof i113.NoneComponent, typeof i1.LocalizedStringPipe, typeof i198.MaterialModule, typeof i178.BrokenPage, typeof i2.HelpTipComponent, typeof i89.FilterTagsComponent, typeof i9.DateFormatPipe, typeof i10.CalendarPipe, typeof i11.DifferencePipe, typeof i12.DurationPipe, typeof i13.TimeAgoPipe, typeof i13.ToNowPipe, typeof i15.CheckboxComponent, typeof i16.CubeParallelComponent, typeof i17.CubeSumComponent, typeof i22.ExploreItemImplComponent, typeof i23.DocumentInfoComponent, typeof i24.DocumentViewsComponent, typeof i146.DashboardComponent, typeof i120.TagsComponent, typeof i30.QuickCommentComponent, typeof i127.CommentsComponent, typeof i59.LayoutComponent, typeof i152.ActionDialog, typeof i60.StickyToolbar, typeof i133.BrowseFilterComponent, typeof i137.CubeFilterComponent, typeof i114.ScheduleViewComponent, typeof i143.ReportViewerComponent, typeof i147.WidgetItemComponent, typeof i136.CubeViewComponent, typeof i90.ExploreItemsComponent, typeof i135.ComposeFormComponent, typeof i132.BrowseItemsComponent, typeof i94.NotificationsTableComponent, typeof i29.ActionPicker, typeof i154.ConversationComponent, typeof i38.StateDirective, typeof i14.ContactsComponent, typeof i88.CubeMatrixComponent, typeof i36.MatIconAnimate, typeof i177.TooltipDirective, typeof i55.TimespanInput, typeof i57.FileInput, typeof i56.AddressInput, typeof i54.AceInput, typeof i32.CombinationPicker, typeof i34.CombinationPool, typeof i51.TypeSelect, typeof i52.TypeAutocomplete, typeof i58.TimePicker, typeof i31.DurationFormatPipe, typeof i37.DateRangePipe, typeof i40.TypeValuePipe, typeof i39.JoinPipe, typeof i44.StatePipe, typeof i45.ActionPipe, typeof i46.RolePipe, typeof i47.FormPipe, typeof i48.FilterPipe, typeof i48.JsonPipe, typeof i48.ArraySortPipe, typeof i49.UserNamePipe, typeof i43.SanitizeHtmlPipe, typeof i41.L18nPipe, typeof i41.TranslatePipe, typeof i42.IdentityName, typeof i84.AvatarComponent, typeof i145.ReportArgumentsComponent, typeof i126.AttachmentPreview, typeof i96.PrivilegeHiddenDirective, typeof i96.PrivilegeDisabledDirective, typeof i91.CompareGroupDirective, typeof i91.CompareNameDirective, typeof i91.CompareContextDirective, typeof i116.TraceViewComponent, typeof i123.FlowViewComponent, typeof i82.AssignActionComponent, typeof i81.ReturnActionComponent, typeof i157.ExploreDocumentComponent, typeof i160.CubePerformanceWidget, typeof i164.ActionsWidget, typeof i162.CubeAnalysisWidget, typeof i168.CubeDocumentsWidget, typeof i165.RecentsWidget, typeof i171.PersonalActivityWidget, typeof i167.CompareGroupsWidget, typeof i172.PeersPerformanceWidget, typeof i166.PendingResultsWidget, typeof i170.PersonalScoreWidget, typeof i148.CubeWidgetFilterComponent, typeof i159.CubeDocumentsTableComponent, typeof i101.CubeDocumentsGridComponent, typeof i158.TasksComponent, typeof i175.UsageReportArgs, typeof i174.UsageChartComponent, typeof i173.UsagePivotComponent, typeof i156.VersionCompareComponent, typeof i87.LottieAnimation, typeof i138.CubeAccumulationChartComponent, typeof i139.CubeChartComponent, typeof i140.CubePivotComponent, typeof i141.CubeSpreadsheetComponent, typeof i142.CubeGridComponent]>;
207
207
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
208
208
  }
@@ -2,7 +2,6 @@ import { ElementRef } from '@angular/core';
2
2
  import { ColumnModel, DayWorkingTimeModel, EventMarkerModel, Gantt, HolidayModel, IQueryTaskbarInfoEventArgs, LabelSettingsModel, SelectionSettingsModel, SplitterSettingsModel, TaskFieldsModel, TimelineSettingsModel } from '@syncfusion/ej2-angular-gantt';
3
3
  import { SessionService } from '../../core/session.service';
4
4
  import { TranslateService } from '../../core/translate.service';
5
- import { PromptService } from '../../core/prompt.service';
6
5
  import { AccountService } from '../../core/account.service';
7
6
  import { DocumentViewComponent } from '../../core/base';
8
7
  import { DocumentModel } from '../../core/models';
@@ -11,7 +10,6 @@ import { RouterImpl } from '../../core/router';
11
10
  import { DocumentViewRef } from '../document-view-ref';
12
11
  import * as i0 from "@angular/core";
13
12
  export declare class TimelineViewComponent implements DocumentViewComponent {
14
- private _ps;
15
13
  private _users;
16
14
  private _session;
17
15
  private _translate;
@@ -22,11 +20,11 @@ export declare class TimelineViewComponent implements DocumentViewComponent {
22
20
  model: DocumentModel<any>;
23
21
  gantt: Gantt;
24
22
  dateFormat: string;
25
- holidays: HolidayModel[];
26
23
  width: number;
27
24
  tasks: Task[];
25
+ readonly holidays: HolidayModel[];
28
26
  /** timeline-view ctor */
29
- constructor(_ps: PromptService, viewRef: DocumentViewRef<Options>, config: BizDocConfig, _users: AccountService, _session: SessionService, _translate: TranslateService, _router: RouterImpl, _element: ElementRef);
27
+ constructor(viewRef: DocumentViewRef<Options>, config: BizDocConfig, _users: AccountService, _session: SessionService, _translate: TranslateService, _router: RouterImpl, _element: ElementRef);
30
28
  onBind(model: DocumentModel<any>): void;
31
29
  private _draw;
32
30
  queryTaskbarInfo(evt: IQueryTaskbarInfoEventArgs): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "2.3.28",
3
+ "version": "2.3.31",
4
4
  "author": "Moding Ltd.",
5
5
  "homepage": "https://github.com/moding-il/bizdoc.core",
6
6
  "license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",
@@ -12,20 +12,20 @@
12
12
  "@ctrl/ngx-emoji-mart": "^9.2.0",
13
13
  "@googlemaps/js-api-loader": "^1.16.2",
14
14
  "@microsoft/signalr": "^8.0.0",
15
- "@syncfusion/ej2": "^24.2.4",
16
- "@syncfusion/ej2-angular-charts": "^24.2.4",
15
+ "@syncfusion/ej2": "^24.2.5",
16
+ "@syncfusion/ej2-angular-charts": "^24.2.5",
17
17
  "@syncfusion/ej2-angular-circulargauge": "^24.2.3",
18
- "@syncfusion/ej2-angular-diagrams": "^24.2.4",
19
- "@syncfusion/ej2-angular-gantt": "^24.2.4",
20
- "@syncfusion/ej2-angular-grids": "^24.2.4",
21
- "@syncfusion/ej2-angular-inputs": "^24.2.4",
18
+ "@syncfusion/ej2-angular-diagrams": "^24.2.5",
19
+ "@syncfusion/ej2-angular-gantt": "^24.2.5",
20
+ "@syncfusion/ej2-angular-grids": "^24.2.5",
21
+ "@syncfusion/ej2-angular-inputs": "^24.2.5",
22
22
  "@syncfusion/ej2-angular-kanban": "^24.2.3",
23
23
  "@syncfusion/ej2-angular-lineargauge": "^24.2.3",
24
- "@syncfusion/ej2-angular-pivotview": "^24.2.4",
24
+ "@syncfusion/ej2-angular-pivotview": "^24.2.5",
25
25
  "@syncfusion/ej2-angular-richtexteditor": "^24.2.4",
26
26
  "@syncfusion/ej2-angular-schedule": "^24.2.4",
27
- "@syncfusion/ej2-angular-spreadsheet": "^24.2.4",
28
- "@syncfusion/ej2-base": "^24.2.3",
27
+ "@syncfusion/ej2-angular-spreadsheet": "^24.2.5",
28
+ "@syncfusion/ej2-base": "^24.2.5",
29
29
  "@teamhive/lottie-player": "^1.0.0",
30
30
  "brace": "^0.11.1",
31
31
  "cookie": "^0.6.0",
@@ -35,7 +35,7 @@
35
35
  "lottie-web": "^5.12.2",
36
36
  "ngx-cookie-service": "17",
37
37
  "typescript": "5.3",
38
- "zone.js": "^0.14.3",
38
+ "zone.js": "^0.14.4",
39
39
  "tslib": "^2.3.0"
40
40
  },
41
41
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { NodeRef } from './lib/admin/form/workflow/node-ref';
1
2
  export { NoneComponent } from './lib/core/none.component';
2
3
  export { ColorPicker } from './lib/admin/core/color-picker.input';
3
4
  export { LocalizedStringControlDesigner } from './lib/core/fields/localized-string.field';
@@ -73,10 +74,10 @@ export * from './lib/core/pipes/role.pipe';
73
74
  export * from './lib/core/pipes/type-value.pipe';
74
75
  export { SearchInput } from './lib/admin/core/search.input';
75
76
  export { IdentityName } from './lib/core/identity/identity.component';
76
- export { ArraySortPipe, FilterPipe } from './lib/core/pipes/sort.pipe';
77
+ export { JsonPipe, ArraySortPipe, FilterPipe } from './lib/core/pipes/sort.pipe';
77
78
  export { L18nPipe, TranslatePipe } from "./lib/core/pipes/translate.pipe";
78
79
  export { FormPipe } from './lib/core/pipes/form.pipe';
79
- export { DesignerElementComponent, DesignMode, DesignerRef, DesignerInfo, ElementInfo, programName } from './lib/admin/architecture/declarations';
80
+ export { DesignerElementComponent, DesignMode, DesignerRef, DesignerInfo, ElementInfo, programName, getMonthList } from './lib/admin/architecture/declarations';
80
81
  export { RolePipe } from './lib/core/pipes/role.pipe';
81
82
  export { JoinPipe } from "./lib/core/pipes/join.pipe";
82
83
  export { SanitizeHtmlPipe } from './lib/core/pipes/sanitize-html.pipe';