@bizdoc/core 1.8.16 → 1.8.20
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/bizdoc-schema.json +1 -1
- package/assets/themes/brown.min.css +1 -1
- package/assets/themes/dark.min.css +1 -1
- package/assets/themes/default.min.css +1 -1
- package/assets/themes/green.min.css +1 -1
- package/assets/themes/indigo.min.css +1 -1
- package/bundles/bizdoc-core.umd.js +787 -613
- package/bundles/bizdoc-core.umd.js.map +1 -1
- package/esm2015/lib/admin/document-trace/document-trace.component.js +2 -3
- package/esm2015/lib/admin/form/workflow/workflow.component.js +35 -26
- package/esm2015/lib/app.component.js +2 -9
- package/esm2015/lib/browse/browse-items.component.js +13 -8
- package/esm2015/lib/browse/expanded-item/expanded-item.component.js +2 -2
- package/esm2015/lib/chat/chat-info.js +4 -2
- package/esm2015/lib/compose/trace/flow.component.js +23 -14
- package/esm2015/lib/compose/trace/trace.base.js +4 -7
- package/esm2015/lib/compose/trace/trace.component.js +178 -130
- package/esm2015/lib/compose/trace/trace.pane.component.js +5 -1
- package/esm2015/lib/core/layout/layout.component.js +25 -11
- package/esm2015/lib/core/models.js +3 -1
- package/esm2015/lib/core/slots/pane-ref.js +10 -7
- package/esm2015/lib/core/slots/router.service.js +1 -1
- package/esm2015/lib/core/slots/slots.component.js +29 -25
- package/esm2015/lib/core/tagging/edit-input.component.js +3 -3
- package/esm2015/lib/core/tagging/tagging.pipe.js +2 -2
- package/esm2015/lib/core/translate.service.js +13 -7
- package/esm2015/lib/cube/explore/explore-items.component.js +2 -2
- package/esm2015/lib/cube/pivot/pivot.component.js +7 -2
- package/esm2015/lib/dashboard/recents/recents.widget.js +20 -11
- package/esm2015/lib/home/home-base.component.js +6 -1
- package/esm2015/lib/modules/chart.module.js +35 -0
- package/esm2015/lib/{circular-gauge.module.js → modules/circular-gauge.module.js} +1 -1
- package/esm2015/lib/modules/diagram.module.js +34 -0
- package/esm2015/lib/modules/grid.module.js +23 -0
- package/esm2015/lib/modules/pivot.module.js +23 -0
- package/esm2015/lib/{schedule.module.js → modules/schedule.module.js} +1 -1
- package/esm2015/lib/modules/spreadsheet.module.js +28 -0
- package/esm2015/lib/options/options.component.js +6 -6
- package/esm2015/lib/shared.module.js +8 -12
- package/esm2015/lib/system.module.js +3 -3
- package/fesm2015/bizdoc-core.js +513 -421
- package/fesm2015/bizdoc-core.js.map +1 -1
- package/lib/admin/form/workflow/workflow.component.d.ts +2 -2
- package/lib/browse/browse-items.component.d.ts +1 -1
- package/lib/chat/chat-info.d.ts +1 -0
- package/lib/compose/trace/trace.component.d.ts +0 -9
- package/lib/core/models.d.ts +3 -1
- package/lib/core/slots/pane-ref.d.ts +5 -3
- package/lib/core/slots/router.service.d.ts +1 -0
- package/lib/core/slots/slots.component.d.ts +3 -1
- package/lib/core/tagging/edit-input.component.d.ts +1 -1
- package/lib/core/tagging/tagging.pipe.d.ts +1 -1
- package/lib/dashboard/recents/recents.widget.d.ts +1 -0
- package/lib/{chart.module.d.ts → modules/chart.module.d.ts} +0 -0
- package/lib/{circular-gauge.module.d.ts → modules/circular-gauge.module.d.ts} +0 -0
- package/lib/{diagram.module.d.ts → modules/diagram.module.d.ts} +0 -0
- package/lib/{grid.module.d.ts → modules/grid.module.d.ts} +0 -0
- package/lib/{pivot.module.d.ts → modules/pivot.module.d.ts} +0 -0
- package/lib/{schedule.module.d.ts → modules/schedule.module.d.ts} +0 -0
- package/lib/{spreadsheet.module.d.ts → modules/spreadsheet.module.d.ts} +0 -0
- package/lib/options/options.component.d.ts +1 -2
- package/lib/shared.module.d.ts +12 -13
- package/lib/system.module.d.ts +2 -2
- package/package.json +1 -3
- package/esm2015/lib/chart.module.js +0 -35
- package/esm2015/lib/diagram.module.js +0 -34
- package/esm2015/lib/grid.module.js +0 -23
- package/esm2015/lib/linear-gauge.module.js +0 -17
- package/esm2015/lib/pivot.module.js +0 -24
- package/esm2015/lib/spreadsheet.module.js +0 -28
- package/lib/linear-gauge.module.d.ts +0 -7
@@ -44,8 +44,8 @@ export declare class WorkflowComponent implements OnDestroy, AdminComponent {
|
|
44
44
|
diagramCreate(): void;
|
45
45
|
private _palettes;
|
46
46
|
private _versionNode;
|
47
|
-
nodeDefaults()
|
48
|
-
connDefaults(obj: ConnectorModel)
|
47
|
+
nodeDefaults: () => NodeModel;
|
48
|
+
connDefaults: (obj: ConnectorModel) => void;
|
49
49
|
getSymbolInfo(symbol: NodeModel): SymbolInfo;
|
50
50
|
getSymbolDefaults(symbol: NodeModel): void;
|
51
51
|
pan(): void;
|
@@ -87,7 +87,7 @@ export declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestro
|
|
87
87
|
*/
|
88
88
|
private _retrieve;
|
89
89
|
private _sharedActions;
|
90
|
-
copy(item: RecipientModel
|
90
|
+
copy(item: RecipientModel): void;
|
91
91
|
/**
|
92
92
|
* execute function per item in collection
|
93
93
|
* @param fn
|
package/lib/chat/chat-info.d.ts
CHANGED
@@ -22,15 +22,6 @@ export declare class TraceViewComponent extends TraceBase implements OnChanges {
|
|
22
22
|
ngOnChanges(_changes: SimpleChanges): void;
|
23
23
|
private _initialise;
|
24
24
|
refresh(): void;
|
25
|
-
/**
|
26
|
-
*
|
27
|
-
* @param who
|
28
|
-
* @param by
|
29
|
-
* @param substituting
|
30
|
-
* @param escalations
|
31
|
-
* @param node
|
32
|
-
*/
|
33
|
-
private _decorate;
|
34
25
|
/**
|
35
26
|
* user name, chat anchor tag or You
|
36
27
|
* @param user
|
package/lib/core/models.d.ts
CHANGED
@@ -352,7 +352,9 @@ export declare enum ValidationType {
|
|
352
352
|
Max = "Max",
|
353
353
|
MinLength = "MinLength",
|
354
354
|
MaxLength = "MaxLength",
|
355
|
-
Pattern = "Pattern"
|
355
|
+
Pattern = "Pattern",
|
356
|
+
Range = "Range",
|
357
|
+
Email = "Email"
|
356
358
|
}
|
357
359
|
export declare enum FieldType {
|
358
360
|
String = "String",
|
@@ -43,7 +43,6 @@ export declare type PaneAction = 'expand' | 'focus' | 'close';
|
|
43
43
|
export declare class PaneRef<T = any> {
|
44
44
|
component: Type<any>;
|
45
45
|
private _options;
|
46
|
-
refresh(): void;
|
47
46
|
readonly _comm$: Subject<string>;
|
48
47
|
/** */
|
49
48
|
readonly _data$: BehaviorSubject<ParamMap>;
|
@@ -52,8 +51,6 @@ export declare class PaneRef<T = any> {
|
|
52
51
|
readonly _resize$: BehaviorSubject<Dimentions>;
|
53
52
|
_fullscreen$: BehaviorSubject<boolean>;
|
54
53
|
_mode$: BehaviorSubject<'tab' | 'pane'>;
|
55
|
-
get fullscreen(): boolean;
|
56
|
-
get fullscreenChange(): import("rxjs").Observable<boolean>;
|
57
54
|
title: string;
|
58
55
|
icon?: string;
|
59
56
|
guide?: string;
|
@@ -68,7 +65,10 @@ export declare class PaneRef<T = any> {
|
|
68
65
|
animation: string;
|
69
66
|
group: string;
|
70
67
|
help: string;
|
68
|
+
expandable: boolean;
|
71
69
|
get injector(): Injector;
|
70
|
+
get fullscreen(): boolean;
|
71
|
+
get fullscreenChange(): import("rxjs").Observable<boolean>;
|
72
72
|
get fullPath(): string;
|
73
73
|
get instance(): T;
|
74
74
|
get data(): any;
|
@@ -101,8 +101,10 @@ export declare class PaneRef<T = any> {
|
|
101
101
|
data?: ParamMap;
|
102
102
|
params?: ParamMap;
|
103
103
|
queryParams?: ParamMap;
|
104
|
+
expandable?: boolean;
|
104
105
|
});
|
105
106
|
decendentOf(pane: PaneRef<any>): boolean;
|
107
|
+
refresh(): void;
|
106
108
|
focus(): void;
|
107
109
|
close(): void;
|
108
110
|
expand(): void;
|
@@ -8,6 +8,7 @@ import { CdkScrollable, ComponentType } from '@angular/cdk/overlay';
|
|
8
8
|
import { WindowTitleService } from '../window-title.service';
|
9
9
|
import { PaneRoute } from '../configuration';
|
10
10
|
import { GuideService } from '../guide/guide.service';
|
11
|
+
import { PromptService } from '../prompt.service';
|
11
12
|
import * as i0 from "@angular/core";
|
12
13
|
declare global {
|
13
14
|
interface Window {
|
@@ -15,6 +16,7 @@ declare global {
|
|
15
16
|
}
|
16
17
|
}
|
17
18
|
export declare class SlotsComponent implements OnInit, OnDestroy {
|
19
|
+
private _ps;
|
18
20
|
private _session;
|
19
21
|
private _cd;
|
20
22
|
private _router;
|
@@ -53,7 +55,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
|
|
53
55
|
private readonly _pending;
|
54
56
|
private readonly _rtl;
|
55
57
|
private readonly _destroy;
|
56
|
-
constructor(data: ExtendedRoute[], _session: SessionService, _cd: ChangeDetectorRef, _router: PanesRouter, _title: WindowTitleService, _guide: GuideService, _injector: Injector);
|
58
|
+
constructor(data: ExtendedRoute[], _ps: PromptService, _session: SessionService, _cd: ChangeDetectorRef, _router: PanesRouter, _title: WindowTitleService, _guide: GuideService, _injector: Injector);
|
57
59
|
ngOnInit(): void;
|
58
60
|
private _deserialize;
|
59
61
|
/**
|
@@ -48,7 +48,7 @@ export declare class EditInputComponent implements AfterViewInit {
|
|
48
48
|
focus(): void;
|
49
49
|
_openDocument(evt: MouseEvent): void;
|
50
50
|
_tag(component: ComponentType<TaggingComponentBase<any>>, evt: MouseEvent, prefix: string): void;
|
51
|
-
|
51
|
+
_openMention(evt: MouseEvent): void;
|
52
52
|
_openEmoji(evt: MouseEvent): void;
|
53
53
|
_addEmoji(event: any): void;
|
54
54
|
_paste(event: ClipboardEvent): void;
|
@@ -16,7 +16,7 @@ export declare class TaggingPipe implements PipeTransform, OnDestroy {
|
|
16
16
|
constructor(_element: ElementRef<HTMLElement>, _sanitizer: DomSanitizer, _chat: ChatInfo, _session: SessionService, _translate: TranslateService, _router: RouterImpl);
|
17
17
|
transform(text: string, resource?: {
|
18
18
|
[key: string]: any;
|
19
|
-
}): SafeHtml;
|
19
|
+
}, group?: string): SafeHtml;
|
20
20
|
private _click;
|
21
21
|
ngOnDestroy(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaggingPipe, never>;
|
@@ -18,6 +18,7 @@ export declare class RecentsWidget implements WidgetComponent<MailInfo[]>, OnIni
|
|
18
18
|
constructor(_router: RouterImpl, _service: MailboxService, ref: WidgetRef);
|
19
19
|
ngOnInit(): void;
|
20
20
|
onBind(data: MailInfo[]): void;
|
21
|
+
private _navigate;
|
21
22
|
open(item: MailInfo): void;
|
22
23
|
view(item: MailInfo, evt: Event): void;
|
23
24
|
ngOnDestroy(): void;
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -22,7 +22,6 @@ export declare class OptionsComponent implements OnInit, OnDestroy {
|
|
22
22
|
private _accounts;
|
23
23
|
private _sb;
|
24
24
|
private _session;
|
25
|
-
private _ps;
|
26
25
|
private readonly _destroy;
|
27
26
|
private _requiredValidator;
|
28
27
|
readonly language: import("@angular/forms").FormControl;
|
@@ -40,7 +39,7 @@ export declare class OptionsComponent implements OnInit, OnDestroy {
|
|
40
39
|
notifications: MatExpansionPanel;
|
41
40
|
private readonly _me;
|
42
41
|
/** options ctor */
|
43
|
-
constructor(_option: OptionData, overlayRef: OverlayRef, _fb: FormBuilder, _accounts: AccountService, _sb: PromptService, _session: SessionService,
|
42
|
+
constructor(_option: OptionData, overlayRef: OverlayRef, _fb: FormBuilder, _accounts: AccountService, _sb: PromptService, _session: SessionService, config: BizDocConfig);
|
44
43
|
ngOnInit(): void;
|
45
44
|
private _toggle;
|
46
45
|
toggleSound(): void;
|
package/lib/shared.module.d.ts
CHANGED
@@ -158,21 +158,20 @@ import * as i154 from "@angular/router";
|
|
158
158
|
import * as i155 from "ngx-moment";
|
159
159
|
import * as i156 from "@ctrl/ngx-emoji-mart";
|
160
160
|
import * as i157 from "@syncfusion/ej2-angular-gantt";
|
161
|
-
import * as i158 from "./schedule.module";
|
162
|
-
import * as i159 from "./circular-gauge.module";
|
163
|
-
import * as i160 from "./
|
164
|
-
import * as i161 from "
|
165
|
-
import * as i162 from "
|
166
|
-
import * as i163 from "
|
167
|
-
import * as i164 from "
|
168
|
-
import * as i165 from "./
|
169
|
-
import * as i166 from "
|
170
|
-
import * as i167 from "
|
171
|
-
import * as i168 from "./
|
172
|
-
import * as i169 from "./material.module";
|
161
|
+
import * as i158 from "./modules/schedule.module";
|
162
|
+
import * as i159 from "./modules/circular-gauge.module";
|
163
|
+
import * as i160 from "./modules/chart.module";
|
164
|
+
import * as i161 from "@syncfusion/ej2-angular-charts";
|
165
|
+
import * as i162 from "./modules/grid.module";
|
166
|
+
import * as i163 from "@syncfusion/ej2-angular-richtexteditor";
|
167
|
+
import * as i164 from "./modules/spreadsheet.module";
|
168
|
+
import * as i165 from "./modules/pivot.module";
|
169
|
+
import * as i166 from "@syncfusion/ej2-angular-kanban";
|
170
|
+
import * as i167 from "./modules/diagram.module";
|
171
|
+
import * as i168 from "./material.module";
|
173
172
|
export declare class SharedModule {
|
174
173
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
175
174
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
176
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CubeParallelViewComponent, typeof i2.CubeChartViewComponent, typeof i3.CubeExploreViewComponent, typeof i4.CubeDocumentSumComponent, typeof i5.ExploreItemImplComponent, typeof i6.DocumentInfoComponent, typeof i7.DocumentViewsComponent, typeof i8.ViewItemComponent, typeof i9.CubeDocumentMatrixComponent, typeof i10.CubeDocumentViewComponent, typeof i11.CubePivotViewComponent, typeof i12.ActionPicker, typeof i13.HtmlSimplePipe, typeof i14.QuickCommentComponent, typeof i15.DurationFormatPipe, typeof i16.CombinationPicker, typeof i17.CombinationPickerBody, typeof i18.CombinationPool, typeof i19.TimelineViewComponent, typeof i20.MatIconAnimate, typeof i21.DateRangePipe, typeof i21.AgoPipe, typeof i22.ColorPicker, typeof i23.StateDirective, typeof i24.BrokenPage, typeof i25.JoinPipe, typeof i26.TimePicker, typeof i27.TypeValuePipe, typeof i28.TypeSelect, typeof i29.TypeAutocomplete, typeof i30.TranslatePipe, typeof i31.IdentityName, typeof i32.SanitizeHtmlPipe, typeof i33.AceInput, typeof i34.TimespanInput, typeof i35.AddressInput, typeof i36.StatePipe, typeof i37.ActionPipe, typeof i38.RolePipe, typeof i39.FormPipe, typeof i40.FilterPipe, typeof i40.ArraySortPipe, typeof i41.UserNamePipe, typeof i42.LayoutComponent, typeof i43.HtmlField, typeof i44.NumericField, typeof i45.AutocompleteField, typeof i46.CheckField, typeof i47.DateField, typeof i48.DateRangeField, typeof i49.ExpressionField, typeof i50.InputField, typeof i51.SelectField, typeof i52.SwitchField, typeof i53.TextareaField, typeof i54.TimespanField, typeof i55.ReturnActionComponent, typeof i56.AssignActionComponent, typeof i57.AvatarComponent, typeof i58.PeopleComponent, typeof i59.EditInputComponent, typeof i60.NgxComponentOutlet, typeof i24.BizDocApp, typeof i61.LottieAnimation, typeof i13.ContactsComponent, typeof i62.CubeMatrixTableComponent, typeof i63.FilterTagsComponent, typeof i64.ExploreItemsComponent, typeof i65.CompareNameDirective, typeof i65.CompareGroupDirective, typeof i65.CompareContextDirective, typeof i66.GuideComponent, typeof i67.OutOfOfficeToast, typeof i68.NotificationsTableComponent, typeof i69.NotificationsFilterComponent, typeof i70.TaggingPipe, typeof i71.PrivilegeHiddenDirective, typeof i72.TaggingItemDirective, typeof i73.TaggingDirective, typeof i74.DocumentTaggingComponent, typeof i75.UserTaggingComponent, typeof i71.PrivilegeDisabledDirective, typeof i76.CubeGridDocumentsComponent, typeof i77.LongRunningTaskNotification, typeof i78.TaggedNotification, typeof i79.CommentedNotification, typeof i80.NudgeNotification, typeof i81.TextNotification, typeof i82.CubeAnomalyNotification, typeof i83.EscalatedNotification, typeof i84.LikedNotification, typeof i85.StateChangedNotification, typeof i86.UpcomingEventNotification, typeof i87.NoneComponent, typeof i88.ScheduleViewComponent, typeof i89.OptionsComponent, typeof i90.TraceViewComponent, typeof i91.ProgressButtonDirective, typeof i92.AttachmentsComponent, typeof i93.DocumentEventsComponent, typeof i94.TagsComponent, typeof i95.MapComponent, typeof i96.MaskComponent, typeof i97.SaveChangesDialog, typeof i98.FlowViewComponent, typeof i99.SubstitutionComponent, typeof i100.PopupComponent, typeof i101.AttachmentPreview, typeof i102.CommentsComponent, typeof i103.CommentComponent, typeof i104.EditCommentComponent, typeof i105.CommentLikesComponent, typeof i106.CommentEditsComponent, typeof i107.BrowseItemsComponent, typeof i108.BrowseFilterComponent, typeof i109.ExpandedItemComponent, typeof i110.ComposeFormComponent, typeof i111.CubeViewComponent, typeof i112.CubeFilterComponent, typeof i113.CubeAccumulationChartComponent, typeof i114.CubeChartComponent, typeof i115.CubePivotComponent, typeof i116.CubeSpreadsheetComponent, typeof i117.CubeGridComponent, typeof i118.ReportViewerComponent, typeof i119.TableViewComponent, typeof i120.ReportArgumentsComponent, typeof i121.DashboardComponent, typeof i122.WidgetItemComponent, typeof i123.CubeWidgetFilterComponent, typeof i124.CubeAccumAnalysisWidget, typeof i125.CubeAnalysisWidget, typeof i126.CubeChartAnalysisWidget, typeof i127.ActionsWidget, typeof i128.RecentsWidget, typeof i129.AskDialog, typeof i130.AboutDialog, typeof i131.ActionDialog, typeof i132.ImpersonateDialog, typeof i133.ConversationComponent, typeof i134.CubeMatrixComponent, typeof i135.VersionCompareComponent, typeof i136.ExploreDocumentComponent, typeof i137.TasksComponent, typeof i138.PendingResultsWidget, typeof i139.CompareDepartmentsWidget, typeof i140.CubeDocumentsComponent, typeof i141.CubeDocumentsWidget, typeof i142.PersonalScoreWidget, typeof i143.PersonalActivityWidget, typeof i144.PeersPerformanceWidget, typeof i145.UsagePivotComponent, typeof i146.UsageChartComponent, typeof i147.UsageReportArgs, typeof i148.EmojiHostComponent, typeof i149.TooltipDirective, typeof i149.TooltipComponent], [typeof i150.CommonModule, typeof i151.HttpClientModule, typeof i152.ReactiveFormsModule, typeof i153.FlexLayoutModule, typeof i154.RouterModule, typeof i155.MomentModule, typeof i156.PickerModule, typeof i157.GanttModule, typeof i158.SyncfusionScheduleModule, typeof i159.SyncfusionCircularGaugeModule, typeof i160.
|
175
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CubeParallelViewComponent, typeof i2.CubeChartViewComponent, typeof i3.CubeExploreViewComponent, typeof i4.CubeDocumentSumComponent, typeof i5.ExploreItemImplComponent, typeof i6.DocumentInfoComponent, typeof i7.DocumentViewsComponent, typeof i8.ViewItemComponent, typeof i9.CubeDocumentMatrixComponent, typeof i10.CubeDocumentViewComponent, typeof i11.CubePivotViewComponent, typeof i12.ActionPicker, typeof i13.HtmlSimplePipe, typeof i14.QuickCommentComponent, typeof i15.DurationFormatPipe, typeof i16.CombinationPicker, typeof i17.CombinationPickerBody, typeof i18.CombinationPool, typeof i19.TimelineViewComponent, typeof i20.MatIconAnimate, typeof i21.DateRangePipe, typeof i21.AgoPipe, typeof i22.ColorPicker, typeof i23.StateDirective, typeof i24.BrokenPage, typeof i25.JoinPipe, typeof i26.TimePicker, typeof i27.TypeValuePipe, typeof i28.TypeSelect, typeof i29.TypeAutocomplete, typeof i30.TranslatePipe, typeof i31.IdentityName, typeof i32.SanitizeHtmlPipe, typeof i33.AceInput, typeof i34.TimespanInput, typeof i35.AddressInput, typeof i36.StatePipe, typeof i37.ActionPipe, typeof i38.RolePipe, typeof i39.FormPipe, typeof i40.FilterPipe, typeof i40.ArraySortPipe, typeof i41.UserNamePipe, typeof i42.LayoutComponent, typeof i43.HtmlField, typeof i44.NumericField, typeof i45.AutocompleteField, typeof i46.CheckField, typeof i47.DateField, typeof i48.DateRangeField, typeof i49.ExpressionField, typeof i50.InputField, typeof i51.SelectField, typeof i52.SwitchField, typeof i53.TextareaField, typeof i54.TimespanField, typeof i55.ReturnActionComponent, typeof i56.AssignActionComponent, typeof i57.AvatarComponent, typeof i58.PeopleComponent, typeof i59.EditInputComponent, typeof i60.NgxComponentOutlet, typeof i24.BizDocApp, typeof i61.LottieAnimation, typeof i13.ContactsComponent, typeof i62.CubeMatrixTableComponent, typeof i63.FilterTagsComponent, typeof i64.ExploreItemsComponent, typeof i65.CompareNameDirective, typeof i65.CompareGroupDirective, typeof i65.CompareContextDirective, typeof i66.GuideComponent, typeof i67.OutOfOfficeToast, typeof i68.NotificationsTableComponent, typeof i69.NotificationsFilterComponent, typeof i70.TaggingPipe, typeof i71.PrivilegeHiddenDirective, typeof i72.TaggingItemDirective, typeof i73.TaggingDirective, typeof i74.DocumentTaggingComponent, typeof i75.UserTaggingComponent, typeof i71.PrivilegeDisabledDirective, typeof i76.CubeGridDocumentsComponent, typeof i77.LongRunningTaskNotification, typeof i78.TaggedNotification, typeof i79.CommentedNotification, typeof i80.NudgeNotification, typeof i81.TextNotification, typeof i82.CubeAnomalyNotification, typeof i83.EscalatedNotification, typeof i84.LikedNotification, typeof i85.StateChangedNotification, typeof i86.UpcomingEventNotification, typeof i87.NoneComponent, typeof i88.ScheduleViewComponent, typeof i89.OptionsComponent, typeof i90.TraceViewComponent, typeof i91.ProgressButtonDirective, typeof i92.AttachmentsComponent, typeof i93.DocumentEventsComponent, typeof i94.TagsComponent, typeof i95.MapComponent, typeof i96.MaskComponent, typeof i97.SaveChangesDialog, typeof i98.FlowViewComponent, typeof i99.SubstitutionComponent, typeof i100.PopupComponent, typeof i101.AttachmentPreview, typeof i102.CommentsComponent, typeof i103.CommentComponent, typeof i104.EditCommentComponent, typeof i105.CommentLikesComponent, typeof i106.CommentEditsComponent, typeof i107.BrowseItemsComponent, typeof i108.BrowseFilterComponent, typeof i109.ExpandedItemComponent, typeof i110.ComposeFormComponent, typeof i111.CubeViewComponent, typeof i112.CubeFilterComponent, typeof i113.CubeAccumulationChartComponent, typeof i114.CubeChartComponent, typeof i115.CubePivotComponent, typeof i116.CubeSpreadsheetComponent, typeof i117.CubeGridComponent, typeof i118.ReportViewerComponent, typeof i119.TableViewComponent, typeof i120.ReportArgumentsComponent, typeof i121.DashboardComponent, typeof i122.WidgetItemComponent, typeof i123.CubeWidgetFilterComponent, typeof i124.CubeAccumAnalysisWidget, typeof i125.CubeAnalysisWidget, typeof i126.CubeChartAnalysisWidget, typeof i127.ActionsWidget, typeof i128.RecentsWidget, typeof i129.AskDialog, typeof i130.AboutDialog, typeof i131.ActionDialog, typeof i132.ImpersonateDialog, typeof i133.ConversationComponent, typeof i134.CubeMatrixComponent, typeof i135.VersionCompareComponent, typeof i136.ExploreDocumentComponent, typeof i137.TasksComponent, typeof i138.PendingResultsWidget, typeof i139.CompareDepartmentsWidget, typeof i140.CubeDocumentsComponent, typeof i141.CubeDocumentsWidget, typeof i142.PersonalScoreWidget, typeof i143.PersonalActivityWidget, typeof i144.PeersPerformanceWidget, typeof i145.UsagePivotComponent, typeof i146.UsageChartComponent, typeof i147.UsageReportArgs, typeof i148.EmojiHostComponent, typeof i149.TooltipDirective, typeof i149.TooltipComponent], [typeof i150.CommonModule, typeof i151.HttpClientModule, typeof i152.ReactiveFormsModule, typeof i153.FlexLayoutModule, typeof i154.RouterModule, typeof i155.MomentModule, typeof i156.PickerModule, typeof i157.GanttModule, typeof i158.SyncfusionScheduleModule, typeof i159.SyncfusionCircularGaugeModule, typeof i160.SyncfusionChartModule, typeof i161.SparklineAllModule, typeof i162.SyncfusionGridModule, typeof i163.RichTextEditorModule, typeof i164.SyncfusionSpreadsheetModule, typeof i165.SyncfusionPivotModule, typeof i166.KanbanModule, typeof i167.SyncfusionDiagramModule, typeof i168.MaterialModule], [typeof i5.ExploreItemImplComponent, typeof i6.DocumentInfoComponent, typeof i7.DocumentViewsComponent, typeof i121.DashboardComponent, typeof i94.TagsComponent, typeof i14.QuickCommentComponent, typeof i168.MaterialModule, typeof i102.CommentsComponent, typeof i24.BrokenPage, typeof i131.ActionDialog, typeof i108.BrowseFilterComponent, typeof i112.CubeFilterComponent, typeof i88.ScheduleViewComponent, typeof i118.ReportViewerComponent, typeof i122.WidgetItemComponent, typeof i111.CubeViewComponent, typeof i64.ExploreItemsComponent, typeof i110.ComposeFormComponent, typeof i107.BrowseItemsComponent, typeof i68.NotificationsTableComponent, typeof i12.ActionPicker, typeof i133.ConversationComponent, typeof i23.StateDirective, typeof i13.ContactsComponent, typeof i62.CubeMatrixTableComponent, typeof i15.DurationFormatPipe, typeof i16.CombinationPicker, typeof i18.CombinationPool, typeof i26.TimePicker, typeof i149.TooltipDirective, typeof i21.DateRangePipe, typeof i60.NgxComponentOutlet, typeof i20.MatIconAnimate, typeof i33.AceInput, typeof i25.JoinPipe, typeof i27.TypeValuePipe, typeof i28.TypeSelect, typeof i29.TypeAutocomplete, typeof i36.StatePipe, typeof i37.ActionPipe, typeof i38.RolePipe, typeof i39.FormPipe, typeof i40.FilterPipe, typeof i40.ArraySortPipe, typeof i41.UserNamePipe, typeof i32.SanitizeHtmlPipe, typeof i30.TranslatePipe, typeof i31.IdentityName, typeof i35.AddressInput, typeof i57.AvatarComponent, typeof i120.ReportArgumentsComponent, typeof i24.BizDocApp, typeof i101.AttachmentPreview, typeof i71.PrivilegeHiddenDirective, typeof i71.PrivilegeDisabledDirective, typeof i65.CompareGroupDirective, typeof i65.CompareNameDirective, typeof i65.CompareContextDirective, typeof i90.TraceViewComponent, typeof i98.FlowViewComponent, typeof i56.AssignActionComponent, typeof i55.ReturnActionComponent, typeof i136.ExploreDocumentComponent, typeof i127.ActionsWidget, typeof i125.CubeAnalysisWidget, typeof i141.CubeDocumentsWidget, typeof i128.RecentsWidget, typeof i143.PersonalActivityWidget, typeof i139.CompareDepartmentsWidget, typeof i144.PeersPerformanceWidget, typeof i138.PendingResultsWidget, typeof i142.PersonalScoreWidget, typeof i123.CubeWidgetFilterComponent, typeof i140.CubeDocumentsComponent, typeof i76.CubeGridDocumentsComponent, typeof i137.TasksComponent, typeof i147.UsageReportArgs, typeof i146.UsageChartComponent, typeof i145.UsagePivotComponent, typeof i34.TimespanInput, typeof i135.VersionCompareComponent, typeof i61.LottieAnimation, typeof i113.CubeAccumulationChartComponent, typeof i114.CubeChartComponent, typeof i115.CubePivotComponent, typeof i116.CubeSpreadsheetComponent, typeof i117.CubeGridComponent]>;
|
177
176
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
178
177
|
}
|
package/lib/system.module.d.ts
CHANGED
@@ -22,8 +22,8 @@ import * as i19 from "@angular/forms";
|
|
22
22
|
import * as i20 from "@angular/flex-layout";
|
23
23
|
import * as i21 from "@angular/router";
|
24
24
|
import * as i22 from "ngx-moment";
|
25
|
-
import * as i23 from "./diagram.module";
|
26
|
-
import * as i24 from "./chart.module";
|
25
|
+
import * as i23 from "./modules/diagram.module";
|
26
|
+
import * as i24 from "./modules/chart.module";
|
27
27
|
import * as i25 from "./shared.module";
|
28
28
|
export declare class SystemModule {
|
29
29
|
static forChild(): ModuleWithProviders<SystemModule>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "1.8.
|
3
|
+
"version": "1.8.20",
|
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",
|
@@ -18,8 +18,6 @@
|
|
18
18
|
"@syncfusion/ej2-angular-gantt": "^19.3.45",
|
19
19
|
"@syncfusion/ej2-angular-grids": "^19.3.45",
|
20
20
|
"@syncfusion/ej2-angular-kanban": "^19.3.45",
|
21
|
-
"@syncfusion/ej2-angular-layouts": "^19.3.44",
|
22
|
-
"@syncfusion/ej2-angular-lineargauge": "^19.3.43",
|
23
21
|
"@syncfusion/ej2-angular-pivotview": "^19.3.44",
|
24
22
|
"@syncfusion/ej2-angular-richtexteditor": "^19.3.45",
|
25
23
|
"@syncfusion/ej2-angular-schedule": "^19.3.44",
|
@@ -1,35 +0,0 @@
|
|
1
|
-
import { NgModule } from "@angular/core";
|
2
|
-
import { ChartModule, LineSeriesService, ScatterSeriesService, ColumnSeriesService, SplineSeriesService, SplineAreaSeriesService, StripLineService, AreaSeriesService, ScrollBarService, StepLineSeriesService, StepAreaSeriesService, StackingColumnSeriesService, StackingLineSeriesService, StackingAreaSeriesService, BarSeriesService, StackingBarSeriesService, RangeColumnSeriesService, BubbleSeriesService, TooltipService, CrosshairService, CategoryService, DateTimeService, LogarithmicService, LegendService, ZoomService, DataLabelService, SelectionService, ChartAnnotationService, WaterfallSeriesService, RangeAreaSeriesService, PolarSeriesService, RadarSeriesService, DateTimeCategoryService, MultiLevelLabelService, ParetoSeriesService, TooltipRenderService, ExportService, AccumulationChartAllModule, AccumulationAnnotationService, AccumulationDataLabelService, AccumulationLegendService, AccumulationSelectionService, AccumulationTooltipService, BulletChartAllModule } from '@syncfusion/ej2-angular-charts';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class SyncfusionChartModule {
|
5
|
-
}
|
6
|
-
SyncfusionChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
SyncfusionChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionChartModule, imports: [ChartModule, AccumulationChartAllModule, BulletChartAllModule], exports: [ChartModule, AccumulationChartAllModule, BulletChartAllModule] });
|
8
|
-
SyncfusionChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionChartModule, providers: [LineSeriesService, ScatterSeriesService, ColumnSeriesService, SplineSeriesService,
|
9
|
-
SplineAreaSeriesService, StripLineService, AreaSeriesService, ScrollBarService, StepLineSeriesService,
|
10
|
-
StepAreaSeriesService, StackingColumnSeriesService, StackingLineSeriesService, StackingAreaSeriesService,
|
11
|
-
BarSeriesService, StackingBarSeriesService, RangeColumnSeriesService, BubbleSeriesService, TooltipService,
|
12
|
-
CrosshairService, CategoryService, DateTimeService, LogarithmicService, LegendService, ZoomService, DataLabelService,
|
13
|
-
SelectionService, ChartAnnotationService, WaterfallSeriesService,
|
14
|
-
RangeAreaSeriesService, PolarSeriesService, RadarSeriesService, DateTimeCategoryService,
|
15
|
-
MultiLevelLabelService, ParetoSeriesService, TooltipRenderService,
|
16
|
-
ExportService,
|
17
|
-
AccumulationAnnotationService, AccumulationDataLabelService, AccumulationLegendService, AccumulationSelectionService, AccumulationTooltipService], imports: [[ChartModule, AccumulationChartAllModule, BulletChartAllModule], ChartModule, AccumulationChartAllModule, BulletChartAllModule] });
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionChartModule, decorators: [{
|
19
|
-
type: NgModule,
|
20
|
-
args: [{
|
21
|
-
imports: [ChartModule, AccumulationChartAllModule, BulletChartAllModule],
|
22
|
-
exports: [ChartModule, AccumulationChartAllModule, BulletChartAllModule],
|
23
|
-
providers: [LineSeriesService, ScatterSeriesService, ColumnSeriesService, SplineSeriesService,
|
24
|
-
SplineAreaSeriesService, StripLineService, AreaSeriesService, ScrollBarService, StepLineSeriesService,
|
25
|
-
StepAreaSeriesService, StackingColumnSeriesService, StackingLineSeriesService, StackingAreaSeriesService,
|
26
|
-
BarSeriesService, StackingBarSeriesService, RangeColumnSeriesService, BubbleSeriesService, TooltipService,
|
27
|
-
CrosshairService, CategoryService, DateTimeService, LogarithmicService, LegendService, ZoomService, DataLabelService,
|
28
|
-
SelectionService, ChartAnnotationService, WaterfallSeriesService,
|
29
|
-
RangeAreaSeriesService, PolarSeriesService, RadarSeriesService, DateTimeCategoryService,
|
30
|
-
MultiLevelLabelService, ParetoSeriesService, TooltipRenderService,
|
31
|
-
ExportService,
|
32
|
-
AccumulationAnnotationService, AccumulationDataLabelService, AccumulationLegendService, AccumulationSelectionService, AccumulationTooltipService]
|
33
|
-
}]
|
34
|
-
}] });
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9jaGFydC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQ0wsV0FBVyxFQUFFLGlCQUFpQixFQUFFLG9CQUFvQixFQUFFLG1CQUFtQixFQUFFLG1CQUFtQixFQUM5Rix1QkFBdUIsRUFBRSxnQkFBZ0IsRUFBRSxpQkFBaUIsRUFBRSxnQkFBZ0IsRUFBRSxxQkFBcUIsRUFDckcscUJBQXFCLEVBQUUsMkJBQTJCLEVBQUUseUJBQXlCLEVBQUUseUJBQXlCLEVBQ3hHLGdCQUFnQixFQUFFLHdCQUF3QixFQUFFLHdCQUF3QixFQUFFLG1CQUFtQixFQUFFLGNBQWMsRUFDekcsZ0JBQWdCLEVBQUUsZUFBZSxFQUFFLGVBQWUsRUFBRSxrQkFBa0IsRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFFLGdCQUFnQixFQUNwSCxnQkFBZ0IsRUFBRSxzQkFBc0IsRUFBRSxzQkFBc0IsRUFDaEUsc0JBQXNCLEVBQUUsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQUUsdUJBQXVCLEVBQ3ZGLHNCQUFzQixFQUFFLG1CQUFtQixFQUFFLG9CQUFvQixFQUNqRSxhQUFhLEVBQ2IsMEJBQTBCLEVBQUUsNkJBQTZCLEVBQUUsNEJBQTRCLEVBQUUseUJBQXlCLEVBQUUsNEJBQTRCLEVBQUUsMEJBQTBCLEVBQUUsb0JBQW9CLEVBQ25NLE1BQU0sZ0NBQWdDLENBQUM7O0FBZ0J4QyxNQUFNLE9BQ0UscUJBQXFCOzttSEFBckIscUJBQXFCO29IQUFyQixxQkFBcUIsWUFkakIsV0FBVyxFQUFFLDBCQUEwQixFQUFFLG9CQUFvQixhQUM3RCxXQUFXLEVBQUUsMEJBQTBCLEVBQUUsb0JBQW9CO29IQWFqRSxxQkFBcUIsYUFaaEIsQ0FBQyxpQkFBaUIsRUFBRSxvQkFBb0IsRUFBRSxtQkFBbUIsRUFBRSxtQkFBbUI7UUFDM0YsdUJBQXVCLEVBQUUsZ0JBQWdCLEVBQUUsaUJBQWlCLEVBQUUsZ0JBQWdCLEVBQUUscUJBQXFCO1FBQ3JHLHFCQUFxQixFQUFFLDJCQUEyQixFQUFFLHlCQUF5QixFQUFFLHlCQUF5QjtRQUN4RyxnQkFBZ0IsRUFBRSx3QkFBd0IsRUFBRSx3QkFBd0IsRUFBRSxtQkFBbUIsRUFBRSxjQUFjO1FBQ3pHLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxlQUFlLEVBQUUsa0JBQWtCLEVBQUUsYUFBYSxFQUFFLFdBQVcsRUFBRSxnQkFBZ0I7UUFDcEgsZ0JBQWdCLEVBQUUsc0JBQXNCLEVBQUUsc0JBQXNCO1FBQ2hFLHNCQUFzQixFQUFFLGtCQUFrQixFQUFFLGtCQUFrQixFQUFFLHVCQUF1QjtRQUN2RixzQkFBc0IsRUFBRSxtQkFBbUIsRUFBRSxvQkFBb0I7UUFDakUsYUFBYTtRQUNiLDZCQUE2QixFQUFFLDRCQUE0QixFQUFFLHlCQUF5QixFQUFFLDRCQUE0QixFQUFFLDBCQUEwQixDQUFDLFlBWDFJLENBQUMsV0FBVyxFQUFFLDBCQUEwQixFQUFFLG9CQUFvQixDQUFDLEVBQzlELFdBQVcsRUFBRSwwQkFBMEIsRUFBRSxvQkFBb0I7NEZBYWpFLHFCQUFxQjtrQkFmNUIsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxXQUFXLEVBQUUsMEJBQTBCLEVBQUUsb0JBQW9CLENBQUM7b0JBQ3hFLE9BQU8sRUFBRSxDQUFDLFdBQVcsRUFBRSwwQkFBMEIsRUFBRSxvQkFBb0IsQ0FBQztvQkFDeEUsU0FBUyxFQUFFLENBQUMsaUJBQWlCLEVBQUUsb0JBQW9CLEVBQUUsbUJBQW1CLEVBQUUsbUJBQW1CO3dCQUMzRix1QkFBdUIsRUFBRSxnQkFBZ0IsRUFBRSxpQkFBaUIsRUFBRSxnQkFBZ0IsRUFBRSxxQkFBcUI7d0JBQ3JHLHFCQUFxQixFQUFFLDJCQUEyQixFQUFFLHlCQUF5QixFQUFFLHlCQUF5Qjt3QkFDeEcsZ0JBQWdCLEVBQUUsd0JBQXdCLEVBQUUsd0JBQXdCLEVBQUUsbUJBQW1CLEVBQUUsY0FBYzt3QkFDekcsZ0JBQWdCLEVBQUUsZUFBZSxFQUFFLGVBQWUsRUFBRSxrQkFBa0IsRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFFLGdCQUFnQjt3QkFDcEgsZ0JBQWdCLEVBQUUsc0JBQXNCLEVBQUUsc0JBQXNCO3dCQUNoRSxzQkFBc0IsRUFBRSxrQkFBa0IsRUFBRSxrQkFBa0IsRUFBRSx1QkFBdUI7d0JBQ3ZGLHNCQUFzQixFQUFFLG1CQUFtQixFQUFFLG9CQUFvQjt3QkFDakUsYUFBYTt3QkFDYiw2QkFBNkIsRUFBRSw0QkFBNEIsRUFBRSx5QkFBeUIsRUFBRSw0QkFBNEIsRUFBRSwwQkFBMEIsQ0FBQztpQkFDcEoiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7XHJcbiAgQ2hhcnRNb2R1bGUsIExpbmVTZXJpZXNTZXJ2aWNlLCBTY2F0dGVyU2VyaWVzU2VydmljZSwgQ29sdW1uU2VyaWVzU2VydmljZSwgU3BsaW5lU2VyaWVzU2VydmljZSxcclxuICBTcGxpbmVBcmVhU2VyaWVzU2VydmljZSwgU3RyaXBMaW5lU2VydmljZSwgQXJlYVNlcmllc1NlcnZpY2UsIFNjcm9sbEJhclNlcnZpY2UsIFN0ZXBMaW5lU2VyaWVzU2VydmljZSxcclxuICBTdGVwQXJlYVNlcmllc1NlcnZpY2UsIFN0YWNraW5nQ29sdW1uU2VyaWVzU2VydmljZSwgU3RhY2tpbmdMaW5lU2VyaWVzU2VydmljZSwgU3RhY2tpbmdBcmVhU2VyaWVzU2VydmljZSxcclxuICBCYXJTZXJpZXNTZXJ2aWNlLCBTdGFja2luZ0JhclNlcmllc1NlcnZpY2UsIFJhbmdlQ29sdW1uU2VyaWVzU2VydmljZSwgQnViYmxlU2VyaWVzU2VydmljZSwgVG9vbHRpcFNlcnZpY2UsXHJcbiAgQ3Jvc3NoYWlyU2VydmljZSwgQ2F0ZWdvcnlTZXJ2aWNlLCBEYXRlVGltZVNlcnZpY2UsIExvZ2FyaXRobWljU2VydmljZSwgTGVnZW5kU2VydmljZSwgWm9vbVNlcnZpY2UsIERhdGFMYWJlbFNlcnZpY2UsXHJcbiAgU2VsZWN0aW9uU2VydmljZSwgQ2hhcnRBbm5vdGF0aW9uU2VydmljZSwgV2F0ZXJmYWxsU2VyaWVzU2VydmljZSxcclxuICBSYW5nZUFyZWFTZXJpZXNTZXJ2aWNlLCBQb2xhclNlcmllc1NlcnZpY2UsIFJhZGFyU2VyaWVzU2VydmljZSwgRGF0ZVRpbWVDYXRlZ29yeVNlcnZpY2UsXHJcbiAgTXVsdGlMZXZlbExhYmVsU2VydmljZSwgUGFyZXRvU2VyaWVzU2VydmljZSwgVG9vbHRpcFJlbmRlclNlcnZpY2UsXHJcbiAgRXhwb3J0U2VydmljZSxcclxuICBBY2N1bXVsYXRpb25DaGFydEFsbE1vZHVsZSwgQWNjdW11bGF0aW9uQW5ub3RhdGlvblNlcnZpY2UsIEFjY3VtdWxhdGlvbkRhdGFMYWJlbFNlcnZpY2UsIEFjY3VtdWxhdGlvbkxlZ2VuZFNlcnZpY2UsIEFjY3VtdWxhdGlvblNlbGVjdGlvblNlcnZpY2UsIEFjY3VtdWxhdGlvblRvb2x0aXBTZXJ2aWNlLCBCdWxsZXRDaGFydEFsbE1vZHVsZVxyXG59IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWNoYXJ0cyc7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGltcG9ydHM6IFtDaGFydE1vZHVsZSwgQWNjdW11bGF0aW9uQ2hhcnRBbGxNb2R1bGUsIEJ1bGxldENoYXJ0QWxsTW9kdWxlXSxcclxuICBleHBvcnRzOiBbQ2hhcnRNb2R1bGUsIEFjY3VtdWxhdGlvbkNoYXJ0QWxsTW9kdWxlLCBCdWxsZXRDaGFydEFsbE1vZHVsZV0sXHJcbiAgcHJvdmlkZXJzOiBbTGluZVNlcmllc1NlcnZpY2UsIFNjYXR0ZXJTZXJpZXNTZXJ2aWNlLCBDb2x1bW5TZXJpZXNTZXJ2aWNlLCBTcGxpbmVTZXJpZXNTZXJ2aWNlLFxyXG4gICAgU3BsaW5lQXJlYVNlcmllc1NlcnZpY2UsIFN0cmlwTGluZVNlcnZpY2UsIEFyZWFTZXJpZXNTZXJ2aWNlLCBTY3JvbGxCYXJTZXJ2aWNlLCBTdGVwTGluZVNlcmllc1NlcnZpY2UsXHJcbiAgICBTdGVwQXJlYVNlcmllc1NlcnZpY2UsIFN0YWNraW5nQ29sdW1uU2VyaWVzU2VydmljZSwgU3RhY2tpbmdMaW5lU2VyaWVzU2VydmljZSwgU3RhY2tpbmdBcmVhU2VyaWVzU2VydmljZSxcclxuICAgIEJhclNlcmllc1NlcnZpY2UsIFN0YWNraW5nQmFyU2VyaWVzU2VydmljZSwgUmFuZ2VDb2x1bW5TZXJpZXNTZXJ2aWNlLCBCdWJibGVTZXJpZXNTZXJ2aWNlLCBUb29sdGlwU2VydmljZSxcclxuICAgIENyb3NzaGFpclNlcnZpY2UsIENhdGVnb3J5U2VydmljZSwgRGF0ZVRpbWVTZXJ2aWNlLCBMb2dhcml0aG1pY1NlcnZpY2UsIExlZ2VuZFNlcnZpY2UsIFpvb21TZXJ2aWNlLCBEYXRhTGFiZWxTZXJ2aWNlLFxyXG4gICAgU2VsZWN0aW9uU2VydmljZSwgQ2hhcnRBbm5vdGF0aW9uU2VydmljZSwgV2F0ZXJmYWxsU2VyaWVzU2VydmljZSxcclxuICAgIFJhbmdlQXJlYVNlcmllc1NlcnZpY2UsIFBvbGFyU2VyaWVzU2VydmljZSwgUmFkYXJTZXJpZXNTZXJ2aWNlLCBEYXRlVGltZUNhdGVnb3J5U2VydmljZSxcclxuICAgIE11bHRpTGV2ZWxMYWJlbFNlcnZpY2UsIFBhcmV0b1Nlcmllc1NlcnZpY2UsIFRvb2x0aXBSZW5kZXJTZXJ2aWNlLFxyXG4gICAgRXhwb3J0U2VydmljZSxcclxuICAgIEFjY3VtdWxhdGlvbkFubm90YXRpb25TZXJ2aWNlLCBBY2N1bXVsYXRpb25EYXRhTGFiZWxTZXJ2aWNlLCBBY2N1bXVsYXRpb25MZWdlbmRTZXJ2aWNlLCBBY2N1bXVsYXRpb25TZWxlY3Rpb25TZXJ2aWNlLCBBY2N1bXVsYXRpb25Ub29sdGlwU2VydmljZV1cclxufSlcclxuZXhwb3J0XHJcbiAgY2xhc3MgU3luY2Z1c2lvbkNoYXJ0TW9kdWxlIHtcclxufVxyXG5cclxuXHJcbiJdfQ==
|
@@ -1,34 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { CommonModule } from '@angular/common';
|
3
|
-
import { DiagramModule, ConnectorBridgingService, LineRoutingService, ComplexHierarchicalTreeService, BpmnDiagramsService, LayoutAnimationService, UndoRedoService, SnappingService, ConnectorEditingService, SymbolPaletteModule } from '@syncfusion/ej2-angular-diagrams';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export class SyncfusionDiagramModule {
|
6
|
-
}
|
7
|
-
SyncfusionDiagramModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionDiagramModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
8
|
-
SyncfusionDiagramModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionDiagramModule, imports: [CommonModule,
|
9
|
-
DiagramModule,
|
10
|
-
SymbolPaletteModule], exports: [DiagramModule,
|
11
|
-
SymbolPaletteModule] });
|
12
|
-
SyncfusionDiagramModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionDiagramModule, providers: [ConnectorBridgingService, LineRoutingService, ComplexHierarchicalTreeService, BpmnDiagramsService, LayoutAnimationService, UndoRedoService, SnappingService, ConnectorEditingService], imports: [[
|
13
|
-
CommonModule,
|
14
|
-
DiagramModule,
|
15
|
-
SymbolPaletteModule
|
16
|
-
], DiagramModule,
|
17
|
-
SymbolPaletteModule] });
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionDiagramModule, decorators: [{
|
19
|
-
type: NgModule,
|
20
|
-
args: [{
|
21
|
-
declarations: [],
|
22
|
-
imports: [
|
23
|
-
CommonModule,
|
24
|
-
DiagramModule,
|
25
|
-
SymbolPaletteModule
|
26
|
-
],
|
27
|
-
exports: [
|
28
|
-
DiagramModule,
|
29
|
-
SymbolPaletteModule
|
30
|
-
],
|
31
|
-
providers: [ConnectorBridgingService, LineRoutingService, ComplexHierarchicalTreeService, BpmnDiagramsService, LayoutAnimationService, UndoRedoService, SnappingService, ConnectorEditingService]
|
32
|
-
}]
|
33
|
-
}] });
|
34
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlhZ3JhbS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2RpYWdyYW0ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxhQUFhLEVBQUUsd0JBQXdCLEVBQUUsa0JBQWtCLEVBQUUsOEJBQThCLEVBQUUsbUJBQW1CLEVBQUUsc0JBQXNCLEVBQUUsZUFBZSxFQUFFLGVBQWUsRUFBRSx1QkFBdUIsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGtDQUFrQyxDQUFDOztBQWdCNVEsTUFBTSxPQUFPLHVCQUF1Qjs7cUhBQXZCLHVCQUF1QjtzSEFBdkIsdUJBQXVCLFlBVmhDLFlBQVk7UUFDWixhQUFhO1FBQ2IsbUJBQW1CLGFBR25CLGFBQWE7UUFDYixtQkFBbUI7c0hBSVYsdUJBQXVCLGFBRnZCLENBQUMsd0JBQXdCLEVBQUUsa0JBQWtCLEVBQUUsOEJBQThCLEVBQUUsbUJBQW1CLEVBQUUsc0JBQXNCLEVBQUUsZUFBZSxFQUFFLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxZQVR4TDtZQUNQLFlBQVk7WUFDWixhQUFhO1lBQ2IsbUJBQW1CO1NBQ3BCLEVBRUMsYUFBYTtRQUNiLG1CQUFtQjs0RkFJVix1QkFBdUI7a0JBYm5DLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLEVBQUU7b0JBQ2hCLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLGFBQWE7d0JBQ2IsbUJBQW1CO3FCQUNwQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsYUFBYTt3QkFDYixtQkFBbUI7cUJBQ3BCO29CQUNELFNBQVMsRUFBRSxDQUFDLHdCQUF3QixFQUFFLGtCQUFrQixFQUFFLDhCQUE4QixFQUFFLG1CQUFtQixFQUFFLHNCQUFzQixFQUFFLGVBQWUsRUFBRSxlQUFlLEVBQUUsdUJBQXVCLENBQUM7aUJBQ2xNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuXHJcbmltcG9ydCB7IERpYWdyYW1Nb2R1bGUsIENvbm5lY3RvckJyaWRnaW5nU2VydmljZSwgTGluZVJvdXRpbmdTZXJ2aWNlLCBDb21wbGV4SGllcmFyY2hpY2FsVHJlZVNlcnZpY2UsIEJwbW5EaWFncmFtc1NlcnZpY2UsIExheW91dEFuaW1hdGlvblNlcnZpY2UsIFVuZG9SZWRvU2VydmljZSwgU25hcHBpbmdTZXJ2aWNlLCBDb25uZWN0b3JFZGl0aW5nU2VydmljZSwgU3ltYm9sUGFsZXR0ZU1vZHVsZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWRpYWdyYW1zJztcclxuXHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGRlY2xhcmF0aW9uczogW10sXHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgRGlhZ3JhbU1vZHVsZSxcclxuICAgIFN5bWJvbFBhbGV0dGVNb2R1bGVcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIERpYWdyYW1Nb2R1bGUsXHJcbiAgICBTeW1ib2xQYWxldHRlTW9kdWxlXHJcbiAgXSxcclxuICBwcm92aWRlcnM6IFtDb25uZWN0b3JCcmlkZ2luZ1NlcnZpY2UsIExpbmVSb3V0aW5nU2VydmljZSwgQ29tcGxleEhpZXJhcmNoaWNhbFRyZWVTZXJ2aWNlLCBCcG1uRGlhZ3JhbXNTZXJ2aWNlLCBMYXlvdXRBbmltYXRpb25TZXJ2aWNlLCBVbmRvUmVkb1NlcnZpY2UsIFNuYXBwaW5nU2VydmljZSwgQ29ubmVjdG9yRWRpdGluZ1NlcnZpY2VdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTeW5jZnVzaW9uRGlhZ3JhbU1vZHVsZSB7IH1cclxuIl19
|
@@ -1,23 +0,0 @@
|
|
1
|
-
import { NgModule } from "@angular/core";
|
2
|
-
import { ExcelExportService, GridModule, PagerModule, AggregateService, FreezeService, GroupService, PageService, ResizeService, SortService, SelectionService } from '@syncfusion/ej2-angular-grids';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class SyncfusionGridModule {
|
5
|
-
}
|
6
|
-
SyncfusionGridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
SyncfusionGridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionGridModule, imports: [GridModule, PagerModule], exports: [GridModule, PagerModule] });
|
8
|
-
SyncfusionGridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionGridModule, providers: [
|
9
|
-
ExcelExportService, AggregateService, FreezeService,
|
10
|
-
GroupService, PageService, ResizeService, SortService, SelectionService
|
11
|
-
], imports: [[GridModule, PagerModule], GridModule, PagerModule] });
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionGridModule, decorators: [{
|
13
|
-
type: NgModule,
|
14
|
-
args: [{
|
15
|
-
imports: [GridModule, PagerModule],
|
16
|
-
exports: [GridModule, PagerModule],
|
17
|
-
providers: [
|
18
|
-
ExcelExportService, AggregateService, FreezeService,
|
19
|
-
GroupService, PageService, ResizeService, SortService, SelectionService
|
20
|
-
]
|
21
|
-
}]
|
22
|
-
}] });
|
23
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JpZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2dyaWQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUNMLGtCQUFrQixFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsYUFBYSxFQUM1RSxZQUFZLEVBQUUsV0FBVyxFQUFFLGFBQWEsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQ3hFLE1BQU0sK0JBQStCLENBQUM7O0FBU3ZDLE1BQU0sT0FDRSxvQkFBb0I7O2tIQUFwQixvQkFBb0I7bUhBQXBCLG9CQUFvQixZQVBoQixVQUFVLEVBQUUsV0FBVyxhQUN2QixVQUFVLEVBQUUsV0FBVzttSEFNM0Isb0JBQW9CLGFBTGY7UUFDVCxrQkFBa0IsRUFBRSxnQkFBZ0IsRUFBRSxhQUFhO1FBQ25ELFlBQVksRUFBRSxXQUFXLEVBQUUsYUFBYSxFQUFFLFdBQVcsRUFBRSxnQkFBZ0I7S0FBQyxZQUpqRSxDQUFDLFVBQVUsRUFBRSxXQUFXLENBQUMsRUFDeEIsVUFBVSxFQUFFLFdBQVc7NEZBTTNCLG9CQUFvQjtrQkFSM0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxVQUFVLEVBQUUsV0FBVyxDQUFDO29CQUNsQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLEVBQUUsV0FBVyxDQUFDO29CQUNsQyxTQUFTLEVBQUU7d0JBQ1Qsa0JBQWtCLEVBQUUsZ0JBQWdCLEVBQUUsYUFBYTt3QkFDbkQsWUFBWSxFQUFFLFdBQVcsRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFFLGdCQUFnQjtxQkFBQztpQkFDM0UiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7XHJcbiAgRXhjZWxFeHBvcnRTZXJ2aWNlLCBHcmlkTW9kdWxlLCBQYWdlck1vZHVsZSwgQWdncmVnYXRlU2VydmljZSwgRnJlZXplU2VydmljZSxcclxuICBHcm91cFNlcnZpY2UsIFBhZ2VTZXJ2aWNlLCBSZXNpemVTZXJ2aWNlLCBTb3J0U2VydmljZSwgU2VsZWN0aW9uU2VydmljZVxyXG59IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWdyaWRzJztcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW0dyaWRNb2R1bGUsIFBhZ2VyTW9kdWxlXSxcclxuICBleHBvcnRzOiBbR3JpZE1vZHVsZSwgUGFnZXJNb2R1bGVdLFxyXG4gIHByb3ZpZGVyczogW1xyXG4gICAgRXhjZWxFeHBvcnRTZXJ2aWNlLCBBZ2dyZWdhdGVTZXJ2aWNlLCBGcmVlemVTZXJ2aWNlLFxyXG4gICAgR3JvdXBTZXJ2aWNlLCBQYWdlU2VydmljZSwgUmVzaXplU2VydmljZSwgU29ydFNlcnZpY2UsIFNlbGVjdGlvblNlcnZpY2VdXHJcbn0pXHJcbmV4cG9ydFxyXG4gIGNsYXNzIFN5bmNmdXNpb25HcmlkTW9kdWxlIHtcclxufVxyXG4iXX0=
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { NgModule } from "@angular/core";
|
2
|
-
import { LinearGaugeModule, AnnotationsService, GaugeTooltipService } from '@syncfusion/ej2-angular-lineargauge';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class SyncfusionLinearGaugeModule {
|
5
|
-
}
|
6
|
-
SyncfusionLinearGaugeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionLinearGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
SyncfusionLinearGaugeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionLinearGaugeModule, imports: [LinearGaugeModule], exports: [LinearGaugeModule] });
|
8
|
-
SyncfusionLinearGaugeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionLinearGaugeModule, providers: [AnnotationsService, GaugeTooltipService], imports: [[LinearGaugeModule], LinearGaugeModule] });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionLinearGaugeModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
imports: [LinearGaugeModule],
|
13
|
-
exports: [LinearGaugeModule],
|
14
|
-
providers: [AnnotationsService, GaugeTooltipService]
|
15
|
-
}]
|
16
|
-
}] });
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluZWFyLWdhdWdlLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvbGluZWFyLWdhdWdlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxrQkFBa0IsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQVFqSCxNQUFNLE9BQU8sMkJBQTJCOzt5SEFBM0IsMkJBQTJCOzBIQUEzQiwyQkFBMkIsWUFKMUIsaUJBQWlCLGFBQ2pCLGlCQUFpQjswSEFHbEIsMkJBQTJCLGFBRnpCLENBQUMsa0JBQWtCLEVBQUUsbUJBQW1CLENBQUMsWUFGM0MsQ0FBQyxpQkFBaUIsQ0FBQyxFQUNsQixpQkFBaUI7NEZBR2xCLDJCQUEyQjtrQkFMdkMsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQztvQkFDNUIsT0FBTyxFQUFFLENBQUMsaUJBQWlCLENBQUM7b0JBQzVCLFNBQVMsRUFBRSxDQUFDLGtCQUFrQixFQUFFLG1CQUFtQixDQUFDO2lCQUN2RCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgTGluZWFyR2F1Z2VNb2R1bGUsIEFubm90YXRpb25zU2VydmljZSwgR2F1Z2VUb29sdGlwU2VydmljZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWxpbmVhcmdhdWdlJztcclxuXHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gICAgaW1wb3J0czogW0xpbmVhckdhdWdlTW9kdWxlXSxcclxuICAgIGV4cG9ydHM6IFtMaW5lYXJHYXVnZU1vZHVsZV0sXHJcbiAgICBwcm92aWRlcnM6IFtBbm5vdGF0aW9uc1NlcnZpY2UsIEdhdWdlVG9vbHRpcFNlcnZpY2VdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTeW5jZnVzaW9uTGluZWFyR2F1Z2VNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { PivotViewModule, ExcelExportService, GroupingBarService, NumberFormattingService, GroupingService, PivotChartService, ConditionalFormattingService } from '@syncfusion/ej2-angular-pivotview';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class SyncfusionPivotModule {
|
5
|
-
}
|
6
|
-
SyncfusionPivotModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionPivotModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
SyncfusionPivotModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionPivotModule, imports: [PivotViewModule], exports: [/*CubeGridDocumentsComponent, CubeGridComponent, UsagePivotComponent, CubePivotComponent*/ PivotViewModule] });
|
8
|
-
SyncfusionPivotModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionPivotModule, providers: [ExcelExportService, GroupingBarService, NumberFormattingService, GroupingService, PivotChartService, ConditionalFormattingService], imports: [[
|
9
|
-
PivotViewModule
|
10
|
-
], /*CubeGridDocumentsComponent, CubeGridComponent, UsagePivotComponent, CubePivotComponent*/ PivotViewModule] });
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionPivotModule, decorators: [{
|
12
|
-
type: NgModule,
|
13
|
-
args: [{
|
14
|
-
declarations: [ /*CubeGridDocumentsComponent, CubeGridComponent, UsagePivotComponent, CubePivotComponent*/],
|
15
|
-
exports: [
|
16
|
-
PivotViewModule
|
17
|
-
],
|
18
|
-
imports: [
|
19
|
-
PivotViewModule
|
20
|
-
],
|
21
|
-
providers: [ExcelExportService, GroupingBarService, NumberFormattingService, GroupingService, PivotChartService, ConditionalFormattingService]
|
22
|
-
}]
|
23
|
-
}] });
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGl2b3QubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9waXZvdC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsZUFBZSxFQUFFLGtCQUFrQixFQUFFLGtCQUFrQixFQUFFLHVCQUF1QixFQUFFLGVBQWUsRUFBRSxpQkFBaUIsRUFBRSw0QkFBNEIsRUFBRSxNQUFNLG1DQUFtQyxDQUFDOztBQWdCdk0sTUFBTSxPQUFPLHFCQUFxQjs7bUhBQXJCLHFCQUFxQjtvSEFBckIscUJBQXFCLFlBSjlCLGVBQWUsYUFKUCwwRkFBMEYsQ0FDbEcsZUFBZTtvSEFPTixxQkFBcUIsYUFGckIsQ0FBQyxrQkFBa0IsRUFBRSxrQkFBa0IsRUFBRSx1QkFBdUIsRUFBRSxlQUFlLEVBQUUsaUJBQWlCLEVBQUUsNEJBQTRCLENBQUMsWUFIckk7WUFDUCxlQUFlO1NBQ2hCLEVBTFMsMEZBQTBGLENBQ2xHLGVBQWU7NEZBT04scUJBQXFCO2tCQVZqQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxFQUFDLDBGQUEwRixDQUFDO29CQUMxRyxPQUFPLEVBQUU7d0JBQ1AsZUFBZTtxQkFDaEI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGVBQWU7cUJBQ2hCO29CQUNELFNBQVMsRUFBRSxDQUFDLGtCQUFrQixFQUFFLGtCQUFrQixFQUFFLHVCQUF1QixFQUFFLGVBQWUsRUFBRSxpQkFBaUIsRUFBRSw0QkFBNEIsQ0FBQztpQkFDL0kiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBQaXZvdFZpZXdNb2R1bGUsIEV4Y2VsRXhwb3J0U2VydmljZSwgR3JvdXBpbmdCYXJTZXJ2aWNlLCBOdW1iZXJGb3JtYXR0aW5nU2VydmljZSwgR3JvdXBpbmdTZXJ2aWNlLCBQaXZvdENoYXJ0U2VydmljZSwgQ29uZGl0aW9uYWxGb3JtYXR0aW5nU2VydmljZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLXBpdm90dmlldyc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IEN1YmVQaXZvdENvbXBvbmVudCB9IGZyb20gJy4vY3ViZS9waXZvdC9waXZvdC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDdWJlR3JpZENvbXBvbmVudCB9IGZyb20gJy4vY3ViZS9ncmlkL2dyaWQuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ3ViZUdyaWREb2N1bWVudHNDb21wb25lbnQgfSBmcm9tICcuL3JlcG9ydHMvY3ViZS9ncmlkLWRvY3VtZW50cy5jb21wb25lbnQnO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBkZWNsYXJhdGlvbnM6IFsvKkN1YmVHcmlkRG9jdW1lbnRzQ29tcG9uZW50LCBDdWJlR3JpZENvbXBvbmVudCwgVXNhZ2VQaXZvdENvbXBvbmVudCwgQ3ViZVBpdm90Q29tcG9uZW50Ki9dLFxyXG4gIGV4cG9ydHM6IFsvKkN1YmVHcmlkRG9jdW1lbnRzQ29tcG9uZW50LCBDdWJlR3JpZENvbXBvbmVudCwgVXNhZ2VQaXZvdENvbXBvbmVudCwgQ3ViZVBpdm90Q29tcG9uZW50Ki9cclxuICAgIFBpdm90Vmlld01vZHVsZVxyXG4gIF0sXHJcbiAgaW1wb3J0czogW1xyXG4gICAgUGl2b3RWaWV3TW9kdWxlXHJcbiAgXSxcclxuICBwcm92aWRlcnM6IFtFeGNlbEV4cG9ydFNlcnZpY2UsIEdyb3VwaW5nQmFyU2VydmljZSwgTnVtYmVyRm9ybWF0dGluZ1NlcnZpY2UsIEdyb3VwaW5nU2VydmljZSwgUGl2b3RDaGFydFNlcnZpY2UsIENvbmRpdGlvbmFsRm9ybWF0dGluZ1NlcnZpY2VdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTeW5jZnVzaW9uUGl2b3RNb2R1bGUgeyB9XHJcbiJdfQ==
|
@@ -1,28 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { CommonModule } from '@angular/common';
|
3
|
-
import { SpreadsheetModule, SelectionService, BasicModuleService, ClipboardService, CellFormatService, KeyboardNavigationService, KeyboardShortcutService, NumberFormatService } from '@syncfusion/ej2-angular-spreadsheet';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export class SyncfusionSpreadsheetModule {
|
6
|
-
}
|
7
|
-
SyncfusionSpreadsheetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionSpreadsheetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
8
|
-
SyncfusionSpreadsheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionSpreadsheetModule, imports: [SpreadsheetModule,
|
9
|
-
CommonModule], exports: [SpreadsheetModule] });
|
10
|
-
SyncfusionSpreadsheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionSpreadsheetModule, providers: [SelectionService, BasicModuleService, ClipboardService, CellFormatService, KeyboardNavigationService, KeyboardShortcutService, NumberFormatService], imports: [[
|
11
|
-
SpreadsheetModule,
|
12
|
-
CommonModule
|
13
|
-
], SpreadsheetModule] });
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.12", ngImport: i0, type: SyncfusionSpreadsheetModule, decorators: [{
|
15
|
-
type: NgModule,
|
16
|
-
args: [{
|
17
|
-
declarations: [],
|
18
|
-
exports: [
|
19
|
-
SpreadsheetModule
|
20
|
-
],
|
21
|
-
imports: [
|
22
|
-
SpreadsheetModule,
|
23
|
-
CommonModule
|
24
|
-
],
|
25
|
-
providers: [SelectionService, BasicModuleService, ClipboardService, CellFormatService, KeyboardNavigationService, KeyboardShortcutService, NumberFormatService]
|
26
|
-
}]
|
27
|
-
}] });
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3ByZWFkc2hlZXQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9zcHJlYWRzaGVldC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGlCQUFpQixFQUFFLGdCQUFnQixFQUFFLGtCQUFrQixFQUFFLGdCQUFnQixFQUFFLGlCQUFpQixFQUFFLHlCQUF5QixFQUFFLHVCQUF1QixFQUFFLG1CQUFtQixFQUFFLE1BQU0scUNBQXFDLENBQUM7O0FBYTVOLE1BQU0sT0FBTywyQkFBMkI7O3lIQUEzQiwyQkFBMkI7MEhBQTNCLDJCQUEyQixZQUxwQyxpQkFBaUI7UUFDakIsWUFBWSxhQUpaLGlCQUFpQjswSEFRUiwyQkFBMkIsYUFGM0IsQ0FBQyxnQkFBZ0IsRUFBRSxrQkFBa0IsRUFBRSxnQkFBZ0IsRUFBRSxpQkFBaUIsRUFBRSx5QkFBeUIsRUFBRSx1QkFBdUIsRUFBRSxtQkFBbUIsQ0FBQyxZQUp0SjtZQUNQLGlCQUFpQjtZQUNqQixZQUFZO1NBQ2IsRUFMQyxpQkFBaUI7NEZBUVIsMkJBQTJCO2tCQVh2QyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxFQUFFO29CQUNoQixPQUFPLEVBQUU7d0JBQ1AsaUJBQWlCO3FCQUNsQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsaUJBQWlCO3dCQUNqQixZQUFZO3FCQUNiO29CQUNELFNBQVMsRUFBRSxDQUFDLGdCQUFnQixFQUFFLGtCQUFrQixFQUFFLGdCQUFnQixFQUFFLGlCQUFpQixFQUFFLHlCQUF5QixFQUFFLHVCQUF1QixFQUFFLG1CQUFtQixDQUFDO2lCQUNoSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IFNwcmVhZHNoZWV0TW9kdWxlLCBTZWxlY3Rpb25TZXJ2aWNlLCBCYXNpY01vZHVsZVNlcnZpY2UsIENsaXBib2FyZFNlcnZpY2UsIENlbGxGb3JtYXRTZXJ2aWNlLCBLZXlib2FyZE5hdmlnYXRpb25TZXJ2aWNlLCBLZXlib2FyZFNob3J0Y3V0U2VydmljZSwgTnVtYmVyRm9ybWF0U2VydmljZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLXNwcmVhZHNoZWV0JztcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgZGVjbGFyYXRpb25zOiBbXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBTcHJlYWRzaGVldE1vZHVsZVxyXG4gIF0sXHJcbiAgaW1wb3J0czogW1xyXG4gICAgU3ByZWFkc2hlZXRNb2R1bGUsXHJcbiAgICBDb21tb25Nb2R1bGVcclxuICBdLFxyXG4gIHByb3ZpZGVyczogW1NlbGVjdGlvblNlcnZpY2UsIEJhc2ljTW9kdWxlU2VydmljZSwgQ2xpcGJvYXJkU2VydmljZSwgQ2VsbEZvcm1hdFNlcnZpY2UsIEtleWJvYXJkTmF2aWdhdGlvblNlcnZpY2UsIEtleWJvYXJkU2hvcnRjdXRTZXJ2aWNlLCBOdW1iZXJGb3JtYXRTZXJ2aWNlXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgU3luY2Z1c2lvblNwcmVhZHNoZWV0TW9kdWxlIHtcclxufVxyXG4iXX0=
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "@syncfusion/ej2-angular-lineargauge";
|
3
|
-
export declare class SyncfusionLinearGaugeModule {
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SyncfusionLinearGaugeModule, never>;
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SyncfusionLinearGaugeModule, never, [typeof i1.LinearGaugeModule], [typeof i1.LinearGaugeModule]>;
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SyncfusionLinearGaugeModule>;
|
7
|
-
}
|