@bizdoc/core 2.3.28 → 2.3.29
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/esm2022/lib/admin/architecture/declarations.mjs +3 -4
- package/esm2022/lib/admin/architecture/designer-element.component.mjs +46 -62
- package/esm2022/lib/admin/architecture/designer.component.mjs +26 -19
- package/esm2022/lib/admin/architecture/elements/action.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/attribute.component.mjs +5 -5
- package/esm2022/lib/admin/architecture/elements/control.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/cube.component.mjs +3 -5
- package/esm2022/lib/admin/architecture/elements/folder.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/form.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/guide.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/job.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/node.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/performance-widget.component.mjs +3 -3
- package/esm2022/lib/admin/architecture/elements/policy.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/report.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/role.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/rule.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/source.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/state.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/type.component.mjs +3 -3
- package/esm2022/lib/admin/architecture/elements/utility.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/view.component.mjs +1 -1
- package/esm2022/lib/admin/architecture/elements/widget.component.mjs +1 -1
- package/esm2022/lib/core/pipes/sort.pipe.mjs +13 -1
- package/esm2022/lib/core/popup/popup.component.mjs +1 -1
- package/esm2022/lib/core/popup/popup.service.mjs +9 -2
- package/esm2022/lib/shared.module.mjs +6 -6
- package/esm2022/public-api.mjs +2 -2
- package/fesm2022/bizdoc-core.mjs +123 -115
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/admin/architecture/designer-element.component.d.ts +9 -10
- package/lib/admin/architecture/designer.component.d.ts +0 -2
- package/lib/admin/architecture/elements/cube.component.d.ts +0 -1
- package/lib/admin/architecture/elements/performance-widget.component.d.ts +1 -1
- package/lib/core/pipes/sort.pipe.d.ts +6 -0
- package/lib/core/popup/popup.service.d.ts +7 -0
- package/lib/shared.module.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
@@ -56,29 +56,28 @@ export declare class DesignerItemComponent implements AfterViewInit, OnChanges,
|
|
56
56
|
icon: boolean;
|
57
57
|
form: FormGroup;
|
58
58
|
context?: CustomViewContext;
|
59
|
-
|
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
|
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
|
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; }; }, { "
|
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
|
}
|
@@ -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;
|
@@ -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, "
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceWidgetDesignComponent, "bizdoc-performance-widget-designer", never, {}, {}, never, never, false, never>;
|
14
14
|
}
|
@@ -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;
|
package/lib/shared.module.d.ts
CHANGED
@@ -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
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -73,7 +73,7 @@ export * from './lib/core/pipes/role.pipe';
|
|
73
73
|
export * from './lib/core/pipes/type-value.pipe';
|
74
74
|
export { SearchInput } from './lib/admin/core/search.input';
|
75
75
|
export { IdentityName } from './lib/core/identity/identity.component';
|
76
|
-
export { ArraySortPipe, FilterPipe } from './lib/core/pipes/sort.pipe';
|
76
|
+
export { JsonPipe, ArraySortPipe, FilterPipe } from './lib/core/pipes/sort.pipe';
|
77
77
|
export { L18nPipe, TranslatePipe } from "./lib/core/pipes/translate.pipe";
|
78
78
|
export { FormPipe } from './lib/core/pipes/form.pipe';
|
79
79
|
export { DesignerElementComponent, DesignMode, DesignerRef, DesignerInfo, ElementInfo, programName } from './lib/admin/architecture/declarations';
|