@bizdoc/core 3.5.3 → 3.5.6
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/assets/themes/dark.min.css +13 -13
- package/assets/themes/default.min.css +15 -15
- package/fesm2022/bizdoc-core.mjs +1369 -1305
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +29 -4
- package/package.json +22 -21
package/index.d.ts
CHANGED
@@ -104,6 +104,7 @@ import * as i200 from '@syncfusion/ej2-angular-notifications';
|
|
104
104
|
import * as i201 from '@syncfusion/ej2-angular-buttons';
|
105
105
|
import * as i202 from '@syncfusion/ej2-angular-popups';
|
106
106
|
import * as i203 from '@syncfusion/ej2-angular-inputs';
|
107
|
+
import * as i205 from '@syncfusion/ej2-angular-blockeditor';
|
107
108
|
import * as i2$3 from '@angular/cdk/scrolling';
|
108
109
|
import * as i5 from '@angular/material/card';
|
109
110
|
import * as i6 from '@angular/material/grid-list';
|
@@ -2551,6 +2552,7 @@ declare class LayoutComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
2551
2552
|
ngAfterViewInit(): void;
|
2552
2553
|
ngOnChanges(changes: SimpleChanges): void;
|
2553
2554
|
layout(): void;
|
2555
|
+
/** */
|
2554
2556
|
focus(): void;
|
2555
2557
|
ngOnDestroy(): void;
|
2556
2558
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
|
@@ -3487,8 +3489,14 @@ declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestroy {
|
|
3487
3489
|
private _remove;
|
3488
3490
|
private _columns;
|
3489
3491
|
private _appendcolumns;
|
3492
|
+
onActionTaken(item: RecipientModel): void;
|
3493
|
+
/**
|
3494
|
+
*
|
3495
|
+
* @param action
|
3496
|
+
* @param args
|
3497
|
+
*/
|
3490
3498
|
sendAll(action: string, args: any): void;
|
3491
|
-
private
|
3499
|
+
private _getActionAdjective;
|
3492
3500
|
ngOnDestroy(): void;
|
3493
3501
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrowseItemsComponent, never>;
|
3494
3502
|
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseItemsComponent, "bizdoc-browse-items", never, { "folderId": { "alias": "folderId"; "required": false; }; "filterType": { "alias": "filterType"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; }, { "onopen": "open"; "onInsights": "insights"; }, never, never, false, never>;
|
@@ -3957,7 +3965,15 @@ declare class ComposeFormComponent implements OnDestroy, OnInit, OnChanges {
|
|
3957
3965
|
*/
|
3958
3966
|
save(feedback?: boolean): Observable<boolean>;
|
3959
3967
|
flag(): void;
|
3960
|
-
|
3968
|
+
/**
|
3969
|
+
*
|
3970
|
+
* @returns
|
3971
|
+
*/
|
3972
|
+
submit<T>(): Observable<boolean | RecipientModel<T>>;
|
3973
|
+
/**
|
3974
|
+
*
|
3975
|
+
* @returns
|
3976
|
+
*/
|
3961
3977
|
private _submit;
|
3962
3978
|
back(): void;
|
3963
3979
|
/**
|
@@ -3971,6 +3987,12 @@ declare class ComposeFormComponent implements OnDestroy, OnInit, OnChanges {
|
|
3971
3987
|
* @returns
|
3972
3988
|
*/
|
3973
3989
|
send(action: string): Observable<RecipientModel<any>>;
|
3990
|
+
/**
|
3991
|
+
*
|
3992
|
+
* @param model
|
3993
|
+
* @param action
|
3994
|
+
*/
|
3995
|
+
private _toastSentMessage;
|
3974
3996
|
/** */
|
3975
3997
|
copy(): void;
|
3976
3998
|
/**
|
@@ -7785,6 +7807,7 @@ declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
7785
7807
|
* @param action
|
7786
7808
|
*/
|
7787
7809
|
send(action: string): void;
|
7810
|
+
private _getActionAdjective;
|
7788
7811
|
/**
|
7789
7812
|
*
|
7790
7813
|
* @param response
|
@@ -8648,7 +8671,7 @@ declare class CubeChartAnalysisWidget extends CubeAnalysisBase {
|
|
8648
8671
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartAnalysisWidget, "bizdoc-cube-chart-analysis", never, {}, {}, never, never, false, never>;
|
8649
8672
|
}
|
8650
8673
|
|
8651
|
-
declare class ActionsWidget implements WidgetComponent<PerformanceData[]>, OnDestroy {
|
8674
|
+
declare class ActionsWidget implements WidgetComponent<PerformanceData[]>, AfterViewInit, OnDestroy {
|
8652
8675
|
private _session;
|
8653
8676
|
private _elementRef;
|
8654
8677
|
static nextId: number;
|
@@ -8665,7 +8688,9 @@ declare class ActionsWidget implements WidgetComponent<PerformanceData[]>, OnDes
|
|
8665
8688
|
width: string;
|
8666
8689
|
private readonly _map;
|
8667
8690
|
private readonly _destroy;
|
8691
|
+
private readonly _loaded;
|
8668
8692
|
constructor(widgetRef: WidgetRef, _session: SessionService, _elementRef: ElementRef);
|
8693
|
+
ngAfterViewInit(): void;
|
8669
8694
|
onBind(data: PerformanceData[]): void;
|
8670
8695
|
private _draw;
|
8671
8696
|
tooltipRender(e: IAccTooltipRenderEventArgs): void;
|
@@ -9215,7 +9240,7 @@ declare class MaterialModule {
|
|
9215
9240
|
declare class SharedModule {
|
9216
9241
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
9217
9242
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
9218
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof OverlayFormComponent, typeof LocalizedStringPipe, typeof HelpTipComponent, typeof BoxFormComponent, typeof BoxFormRowComponent, typeof BoxFormControlComponent, typeof PerformanceWindComponent, typeof PerformanceHiloComponent, typeof CubeUsageComponent, typeof CubeDocumentsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof HtmlSimplePipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof CubeParallelViewComponent, typeof CubeChartViewComponent, typeof CubeExploreViewComponent, typeof CubeDocumentSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof ViewItemComponent, typeof CubeDocumentMatrixComponent, typeof CubeInsightComponent, typeof CubePivotViewComponent, typeof ActionPicker, typeof QuickCommentComponent, typeof DurationFormatPipe, typeof CombinationPicker, typeof CombinationPickerBody, typeof CombinationPool, typeof TimelineViewComponent, typeof MatIconAnimate, typeof DateRangePipe, typeof AgoPipe, typeof StateDirective, typeof JoinPipe, typeof TypeValuePipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof SanitizeHtmlPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof ArraySortPipe, typeof JsonPipe, typeof UserNamePipe, typeof TaggingPipe, typeof TypeSelect, typeof TypeAutocomplete, typeof Signature, typeof AceInput, typeof TimespanInput, typeof AddressInput, typeof FileInput, typeof TimePicker, typeof LayoutComponent, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof TimeField, typeof SignatureField, typeof AddressField, typeof RadioButtonField, typeof ChecklistField, typeof AxesPickerField, typeof YesNoField, typeof HtmlField, typeof FileField, typeof NumericField, typeof AutocompleteField, typeof CheckboxField, typeof DateField, typeof DateRangeField, typeof ExpressionField, typeof InputField, typeof SelectField, typeof SwitchField, typeof TextareaField, typeof ChipsField, typeof TimespanField, typeof ReturnActionComponent, typeof AssignActionComponent, typeof MoveToActionComponent, typeof AvatarComponent, typeof PeopleComponent, typeof EditInputComponent, typeof LottieAnimation, typeof ContactsComponent, typeof CubeMatrixComponent, typeof FilterTagsComponent, typeof ExploreItemsComponent, typeof CompareNameDirective, typeof CompareGroupDirective, typeof CompareContextDirective, typeof GuideComponent, typeof OutOfOfficeToast, typeof NotificationsTableComponent, typeof NotificationsFilterComponent, typeof PrivilegeHiddenDirective, typeof TaggingItemDirective, typeof TaggingDirective, typeof DocumentTaggingComponent, typeof UserTaggingComponent, typeof PrivilegeDisabledDirective, typeof CubeDocumentsGridComponent, typeof LongRunningTaskNotification, typeof TaggedNotification, typeof CommentedNotification, typeof NudgeNotification, typeof InviteNotification, typeof ContentNotification, typeof TextNotification, typeof CubeAnomalyNotification, typeof EscalatedNotification, typeof LikedNotification, typeof StateChangedNotification, typeof UpcomingEventNotification, typeof NoneComponent, typeof ScheduleViewComponent, typeof OptionsComponent, typeof TraceViewComponent, typeof ProgressDirective, typeof AttachmentsComponent, typeof DocumentEventsComponent, typeof TagsComponent, typeof MapComponent, typeof MaskComponent, typeof FlowViewComponent, typeof SubstitutionComponent, typeof PopupComponent, typeof AttachmentPreview, typeof CommentsComponent, typeof CommentComponent, typeof EditCommentComponent, typeof CommentLikesComponent, typeof CommentEditsComponent, typeof BrowseItemsComponent, typeof BrowseFilterComponent, typeof ExpandedItemComponent, typeof ComposeFormComponent, typeof CubeViewComponent, typeof CubeFilterComponent, typeof CubeAccumulationChartComponent, typeof CubeChartComponent, typeof CubePivotComponent, typeof CubeSpreadsheetComponent, typeof CubeGridComponent, typeof ReportViewerComponent, typeof TableViewComponent, typeof ReportArgumentsComponent, typeof DashboardComponent, typeof WidgetItemComponent, typeof CubeWidgetFilterComponent, typeof SaveChangesDialog, typeof AskDialog, typeof AboutDialog, typeof ActionDialog, typeof ImpersonateDialog, typeof ConversationComponent, typeof CubeMatrixPopupComponent, typeof VersionCompareComponent, typeof ExploreDocumentComponent, typeof TasksComponent, typeof CubeDocumentsTableComponent, typeof CubePerformanceWidget, typeof CubeAccumAnalysisWidget, typeof CubeAnalysisWidget, typeof CubeChartAnalysisWidget, typeof ActionsWidget, typeof RecentsWidget, typeof PendingResultsWidget, typeof CompareGroupsWidget, typeof CubeDocumentsWidget, typeof DocumentStateWidgetComponent, typeof PersonalScoreWidget, typeof PersonalActivityWidget, typeof PeersPerformanceWidget, typeof UsagePivotComponent, typeof UsageChartComponent, typeof UsageReportArgs, typeof EmojiHostComponent, typeof TooltipDirective, typeof TooltipComponent, typeof BrokenPage], [typeof DayJsModule, typeof i1$6.CommonModule, typeof _angular_forms.ReactiveFormsModule, typeof i189.RouterModule, typeof i190.PickerModule, typeof SyncfusionGanttModule, typeof SyncfusionScheduleModule, typeof SyncfusionCircularGaugeModule, typeof SyncfusionChartModule, typeof SyncfusionGanttModule, typeof SyncfusionGridModule, typeof SyncfusionLinearGaugeModule, typeof SyncfusionTextEditorModule, typeof SyncfusionSpreadsheetModule, typeof SyncfusionPivotModule, typeof i200.SkeletonModule, typeof i201.SpeedDialModule, typeof i202.TooltipModule, typeof i203.SignatureModule, typeof i204.KanbanModule, typeof SyncfusionDiagramModule, typeof MaterialModule], [typeof OptionsComponent, typeof NoneComponent, typeof LocalizedStringPipe, typeof MaterialModule, typeof i200.SkeletonModule, typeof i201.SpeedDialModule, typeof BrokenPage, typeof HelpTipComponent, typeof FilterTagsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof DashboardComponent, typeof TagsComponent, typeof QuickCommentComponent, typeof CommentsComponent, typeof LayoutComponent, typeof ActionDialog, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof BrowseFilterComponent, typeof CubeFilterComponent, typeof ScheduleViewComponent, typeof ReportViewerComponent, typeof WidgetItemComponent, typeof CubeViewComponent, typeof ExploreItemsComponent, typeof ComposeFormComponent, typeof BrowseItemsComponent, typeof NotificationsTableComponent, typeof ActionPicker, typeof ConversationComponent, typeof StateDirective, typeof ContactsComponent, typeof CubeMatrixComponent, typeof MatIconAnimate, typeof TooltipDirective, typeof TimespanInput, typeof FileInput, typeof AddressInput, typeof AceInput, typeof CombinationPicker, typeof CombinationPool, typeof TypeSelect, typeof TypeAutocomplete, typeof TimePicker, typeof DurationFormatPipe, typeof DateRangePipe, typeof TypeValuePipe, typeof JoinPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof JsonPipe, typeof ArraySortPipe, typeof UserNamePipe, typeof SanitizeHtmlPipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof AvatarComponent, typeof ReportArgumentsComponent, typeof AttachmentPreview, typeof PrivilegeHiddenDirective, typeof PrivilegeDisabledDirective, typeof CompareGroupDirective, typeof CompareNameDirective, typeof CompareContextDirective, typeof TraceViewComponent, typeof FlowViewComponent, typeof AssignActionComponent, typeof ReturnActionComponent, typeof ExploreDocumentComponent, typeof CubePerformanceWidget, typeof ActionsWidget, typeof CubeAnalysisWidget, typeof CubeDocumentsWidget, typeof RecentsWidget, typeof PersonalActivityWidget, typeof CompareGroupsWidget, typeof PeersPerformanceWidget, typeof PendingResultsWidget, typeof PersonalScoreWidget, typeof CubeWidgetFilterComponent, typeof CubeDocumentsTableComponent, typeof CubeDocumentsGridComponent, typeof TasksComponent, typeof UsageReportArgs, typeof UsageChartComponent, typeof UsagePivotComponent, typeof VersionCompareComponent, typeof LottieAnimation, typeof CubeAccumulationChartComponent, typeof CubeChartComponent, typeof CubePivotComponent, typeof CubeSpreadsheetComponent, typeof CubeGridComponent]>;
|
9243
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof OverlayFormComponent, typeof LocalizedStringPipe, typeof HelpTipComponent, typeof BoxFormComponent, typeof BoxFormRowComponent, typeof BoxFormControlComponent, typeof PerformanceWindComponent, typeof PerformanceHiloComponent, typeof CubeUsageComponent, typeof CubeDocumentsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof HtmlSimplePipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof CubeParallelViewComponent, typeof CubeChartViewComponent, typeof CubeExploreViewComponent, typeof CubeDocumentSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof ViewItemComponent, typeof CubeDocumentMatrixComponent, typeof CubeInsightComponent, typeof CubePivotViewComponent, typeof ActionPicker, typeof QuickCommentComponent, typeof DurationFormatPipe, typeof CombinationPicker, typeof CombinationPickerBody, typeof CombinationPool, typeof TimelineViewComponent, typeof MatIconAnimate, typeof DateRangePipe, typeof AgoPipe, typeof StateDirective, typeof JoinPipe, typeof TypeValuePipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof SanitizeHtmlPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof ArraySortPipe, typeof JsonPipe, typeof UserNamePipe, typeof TaggingPipe, typeof TypeSelect, typeof TypeAutocomplete, typeof Signature, typeof AceInput, typeof TimespanInput, typeof AddressInput, typeof FileInput, typeof TimePicker, typeof LayoutComponent, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof TimeField, typeof SignatureField, typeof AddressField, typeof RadioButtonField, typeof ChecklistField, typeof AxesPickerField, typeof YesNoField, typeof HtmlField, typeof FileField, typeof NumericField, typeof AutocompleteField, typeof CheckboxField, typeof DateField, typeof DateRangeField, typeof ExpressionField, typeof InputField, typeof SelectField, typeof SwitchField, typeof TextareaField, typeof ChipsField, typeof TimespanField, typeof ReturnActionComponent, typeof AssignActionComponent, typeof MoveToActionComponent, typeof AvatarComponent, typeof PeopleComponent, typeof EditInputComponent, typeof LottieAnimation, typeof ContactsComponent, typeof CubeMatrixComponent, typeof FilterTagsComponent, typeof ExploreItemsComponent, typeof CompareNameDirective, typeof CompareGroupDirective, typeof CompareContextDirective, typeof GuideComponent, typeof OutOfOfficeToast, typeof NotificationsTableComponent, typeof NotificationsFilterComponent, typeof PrivilegeHiddenDirective, typeof TaggingItemDirective, typeof TaggingDirective, typeof DocumentTaggingComponent, typeof UserTaggingComponent, typeof PrivilegeDisabledDirective, typeof CubeDocumentsGridComponent, typeof LongRunningTaskNotification, typeof TaggedNotification, typeof CommentedNotification, typeof NudgeNotification, typeof InviteNotification, typeof ContentNotification, typeof TextNotification, typeof CubeAnomalyNotification, typeof EscalatedNotification, typeof LikedNotification, typeof StateChangedNotification, typeof UpcomingEventNotification, typeof NoneComponent, typeof ScheduleViewComponent, typeof OptionsComponent, typeof TraceViewComponent, typeof ProgressDirective, typeof AttachmentsComponent, typeof DocumentEventsComponent, typeof TagsComponent, typeof MapComponent, typeof MaskComponent, typeof FlowViewComponent, typeof SubstitutionComponent, typeof PopupComponent, typeof AttachmentPreview, typeof CommentsComponent, typeof CommentComponent, typeof EditCommentComponent, typeof CommentLikesComponent, typeof CommentEditsComponent, typeof BrowseItemsComponent, typeof BrowseFilterComponent, typeof ExpandedItemComponent, typeof ComposeFormComponent, typeof CubeViewComponent, typeof CubeFilterComponent, typeof CubeAccumulationChartComponent, typeof CubeChartComponent, typeof CubePivotComponent, typeof CubeSpreadsheetComponent, typeof CubeGridComponent, typeof ReportViewerComponent, typeof TableViewComponent, typeof ReportArgumentsComponent, typeof DashboardComponent, typeof WidgetItemComponent, typeof CubeWidgetFilterComponent, typeof SaveChangesDialog, typeof AskDialog, typeof AboutDialog, typeof ActionDialog, typeof ImpersonateDialog, typeof ConversationComponent, typeof CubeMatrixPopupComponent, typeof VersionCompareComponent, typeof ExploreDocumentComponent, typeof TasksComponent, typeof CubeDocumentsTableComponent, typeof CubePerformanceWidget, typeof CubeAccumAnalysisWidget, typeof CubeAnalysisWidget, typeof CubeChartAnalysisWidget, typeof ActionsWidget, typeof RecentsWidget, typeof PendingResultsWidget, typeof CompareGroupsWidget, typeof CubeDocumentsWidget, typeof DocumentStateWidgetComponent, typeof PersonalScoreWidget, typeof PersonalActivityWidget, typeof PeersPerformanceWidget, typeof UsagePivotComponent, typeof UsageChartComponent, typeof UsageReportArgs, typeof EmojiHostComponent, typeof TooltipDirective, typeof TooltipComponent, typeof BrokenPage], [typeof DayJsModule, typeof i1$6.CommonModule, typeof _angular_forms.ReactiveFormsModule, typeof i189.RouterModule, typeof i190.PickerModule, typeof SyncfusionGanttModule, typeof SyncfusionScheduleModule, typeof SyncfusionCircularGaugeModule, typeof SyncfusionChartModule, typeof SyncfusionGanttModule, typeof SyncfusionGridModule, typeof SyncfusionLinearGaugeModule, typeof SyncfusionTextEditorModule, typeof SyncfusionSpreadsheetModule, typeof SyncfusionPivotModule, typeof i200.SkeletonModule, typeof i201.SpeedDialModule, typeof i202.TooltipModule, typeof i203.SignatureModule, typeof i204.KanbanModule, typeof i205.BlockEditorAllModule, typeof SyncfusionDiagramModule, typeof MaterialModule], [typeof OptionsComponent, typeof NoneComponent, typeof LocalizedStringPipe, typeof MaterialModule, typeof i200.SkeletonModule, typeof i201.SpeedDialModule, typeof BrokenPage, typeof HelpTipComponent, typeof FilterTagsComponent, typeof DateFormatPipe, typeof CalendarPipe, typeof DifferencePipe, typeof DurationPipe, typeof TimeAgoPipe, typeof ToNowPipe, typeof CheckboxComponent, typeof CubeParallelComponent, typeof CubeSumComponent, typeof ExploreItemImplComponent, typeof DocumentInfoComponent, typeof DocumentViewsComponent, typeof DashboardComponent, typeof TagsComponent, typeof QuickCommentComponent, typeof CommentsComponent, typeof LayoutComponent, typeof ActionDialog, typeof StickyToolbar, typeof VirtualTabs, typeof Tab, typeof BrowseFilterComponent, typeof CubeFilterComponent, typeof ScheduleViewComponent, typeof ReportViewerComponent, typeof WidgetItemComponent, typeof CubeViewComponent, typeof ExploreItemsComponent, typeof ComposeFormComponent, typeof BrowseItemsComponent, typeof NotificationsTableComponent, typeof ActionPicker, typeof ConversationComponent, typeof StateDirective, typeof ContactsComponent, typeof CubeMatrixComponent, typeof MatIconAnimate, typeof TooltipDirective, typeof TimespanInput, typeof FileInput, typeof AddressInput, typeof AceInput, typeof CombinationPicker, typeof CombinationPool, typeof TypeSelect, typeof TypeAutocomplete, typeof TimePicker, typeof DurationFormatPipe, typeof DateRangePipe, typeof TypeValuePipe, typeof JoinPipe, typeof StatePipe, typeof ActionPipe, typeof RolePipe, typeof FormPipe, typeof FilterPipe, typeof JsonPipe, typeof ArraySortPipe, typeof UserNamePipe, typeof SanitizeHtmlPipe, typeof L18nPipe, typeof TranslatePipe, typeof IdentityName, typeof AvatarComponent, typeof ReportArgumentsComponent, typeof AttachmentPreview, typeof PrivilegeHiddenDirective, typeof PrivilegeDisabledDirective, typeof CompareGroupDirective, typeof CompareNameDirective, typeof CompareContextDirective, typeof TraceViewComponent, typeof FlowViewComponent, typeof AssignActionComponent, typeof ReturnActionComponent, typeof ExploreDocumentComponent, typeof CubePerformanceWidget, typeof ActionsWidget, typeof CubeAnalysisWidget, typeof CubeDocumentsWidget, typeof RecentsWidget, typeof PersonalActivityWidget, typeof CompareGroupsWidget, typeof PeersPerformanceWidget, typeof PendingResultsWidget, typeof PersonalScoreWidget, typeof CubeWidgetFilterComponent, typeof CubeDocumentsTableComponent, typeof CubeDocumentsGridComponent, typeof TasksComponent, typeof UsageReportArgs, typeof UsageChartComponent, typeof UsagePivotComponent, typeof VersionCompareComponent, typeof LottieAnimation, typeof CubeAccumulationChartComponent, typeof CubeChartComponent, typeof CubePivotComponent, typeof CubeSpreadsheetComponent, typeof CubeGridComponent]>;
|
9219
9244
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
9220
9245
|
}
|
9221
9246
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "3.5.
|
3
|
+
"version": "3.5.6",
|
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",
|
@@ -10,27 +10,28 @@
|
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@ctrl/ngx-emoji-mart": "^9.2.0",
|
13
|
-
"@googlemaps/js-api-loader": "^1.16.
|
13
|
+
"@googlemaps/js-api-loader": "^1.16.10",
|
14
14
|
"@microsoft/signalr": "^8.0.7",
|
15
|
-
"@syncfusion/ej2-angular-barcode-generator": "
|
16
|
-
"@syncfusion/ej2-angular-base": "
|
17
|
-
"@syncfusion/ej2-angular-buttons": "^
|
18
|
-
"@syncfusion/ej2-angular-popups": "^
|
19
|
-
"@syncfusion/ej2-angular-calendars": "
|
20
|
-
"@syncfusion/ej2-angular-charts": "
|
21
|
-
"@syncfusion/ej2-angular-circulargauge": "
|
22
|
-
"@syncfusion/ej2-angular-diagrams": "
|
23
|
-
"@syncfusion/ej2-angular-gantt": "
|
24
|
-
"@syncfusion/ej2-angular-grids": "
|
25
|
-
"@syncfusion/ej2-angular-inputs": "
|
26
|
-
"@syncfusion/ej2-angular-kanban": "
|
27
|
-
"@syncfusion/ej2-angular-lineargauge": "
|
28
|
-
"@syncfusion/ej2-angular-notifications": "
|
29
|
-
"@syncfusion/ej2-angular-pivotview": "
|
30
|
-
"@syncfusion/ej2-angular-richtexteditor": "
|
31
|
-
"@syncfusion/ej2-angular-
|
32
|
-
"@syncfusion/ej2-angular-
|
33
|
-
"
|
15
|
+
"@syncfusion/ej2-angular-barcode-generator": "30.1",
|
16
|
+
"@syncfusion/ej2-angular-base": "30.1",
|
17
|
+
"@syncfusion/ej2-angular-buttons": "^30.1",
|
18
|
+
"@syncfusion/ej2-angular-popups": "^30.1",
|
19
|
+
"@syncfusion/ej2-angular-calendars": "30.1",
|
20
|
+
"@syncfusion/ej2-angular-charts": "30.1",
|
21
|
+
"@syncfusion/ej2-angular-circulargauge": "30.1",
|
22
|
+
"@syncfusion/ej2-angular-diagrams": "30.1",
|
23
|
+
"@syncfusion/ej2-angular-gantt": "30.1",
|
24
|
+
"@syncfusion/ej2-angular-grids": "30.1",
|
25
|
+
"@syncfusion/ej2-angular-inputs": "30.1",
|
26
|
+
"@syncfusion/ej2-angular-kanban": "30.1",
|
27
|
+
"@syncfusion/ej2-angular-lineargauge": "30.1",
|
28
|
+
"@syncfusion/ej2-angular-notifications": "30.1",
|
29
|
+
"@syncfusion/ej2-angular-pivotview": "30.1",
|
30
|
+
"@syncfusion/ej2-angular-richtexteditor": "30.1",
|
31
|
+
"@syncfusion/ej2-angular-blockeditor": "30.1",
|
32
|
+
"@syncfusion/ej2-angular-schedule": "30.1",
|
33
|
+
"@syncfusion/ej2-angular-spreadsheet": "30.1",
|
34
|
+
"ace-builds": "1.43",
|
34
35
|
"cookie": "^1.0.2",
|
35
36
|
"dayjs": "^1.11.13",
|
36
37
|
"firebase": "11.9",
|