@bizdoc/core 3.2.3 → 3.2.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/fonts/LICENSE +202 -0
- package/assets/fonts/material-symbols-outlined.woff2 +0 -0
- package/assets/fonts/material-symbols-rounded.woff2 +0 -0
- package/assets/fonts/material-symbols-sharp.woff2 +0 -0
- package/assets/system/icons.json +1 -1
- package/assets/themes/brown.min.css +1 -1
- package/assets/themes/dark.min.css +15 -1
- package/assets/themes/deep-purple-light-blue.min.css +1 -1
- package/assets/themes/deep-purple-teal.min.css +1 -1
- package/assets/themes/default.min.css +14 -14
- package/assets/themes/green.min.css +1 -1
- package/assets/themes/indigo-amber.min.css +1 -1
- package/assets/themes/indigo.min.css +1 -1
- package/esm2022/lib/admin/architecture/elements/cube.component.mjs +11 -10
- package/esm2022/lib/admin/architecture/icon-picker.component.mjs +3 -3
- package/esm2022/lib/admin/form/workflow/workflow.component.mjs +5 -5
- package/esm2022/lib/app.component.mjs +4 -6
- package/esm2022/lib/browse/browse-items.component.mjs +3 -3
- package/esm2022/lib/compose/compose.mobile.component.mjs +3 -3
- package/esm2022/lib/compose/compose.pane.component.mjs +3 -3
- package/esm2022/lib/compose/form-selector/form-selector.sheet.mjs +12 -14
- package/esm2022/lib/compose/new-menu.component.mjs +3 -2
- package/esm2022/lib/compose/trace/flow.component.mjs +2 -1
- package/esm2022/lib/core/base.mjs +1 -1
- package/esm2022/lib/core/document-factory.service.mjs +1 -1
- package/esm2022/lib/cube/accum/accum.component.mjs +2 -2
- package/esm2022/lib/cube/chart/chart.component.mjs +2 -2
- package/esm2022/lib/cube/cube.service.mjs +18 -12
- package/esm2022/lib/cube/explore/explore-items.component.mjs +2 -2
- package/esm2022/lib/cube/matrix/table.component.mjs +7 -8
- package/esm2022/lib/cube/pivot/pivot.component.mjs +2 -2
- package/esm2022/lib/cube/spreadsheet/spreadsheet.component.mjs +2 -2
- package/esm2022/lib/dashboard/cube/compare.widget.mjs +3 -2
- package/esm2022/lib/dashboard/cube/documents.widget.mjs +3 -3
- package/esm2022/lib/dashboard/recents/recents.widget.mjs +3 -3
- package/esm2022/lib/dashboard/score/compare-groups.widget.mjs +2 -2
- package/esm2022/lib/dashboard/score/pending-results.widget.mjs +3 -3
- package/esm2022/lib/dashboard/score/personal-score.widget.mjs +2 -4
- package/esm2022/lib/impersonate/impersonate.component.mjs +15 -6
- package/esm2022/lib/modules/circular-gauge.module.mjs +2 -2
- package/esm2022/lib/modules/diagram.module.mjs +3 -3
- package/esm2022/lib/options/options.component.mjs +1 -1
- package/esm2022/lib/reports/cube/usage-chart.component.mjs +2 -6
- package/esm2022/lib/routes.desktop.mjs +2 -2
- package/esm2022/lib/shared.module.mjs +5 -5
- package/esm2022/lib/views/cube/cube-base.mjs +1 -1
- package/esm2022/lib/views/cube/sum.component.mjs +1 -1
- package/esm2022/lib/views/cube/view.component.mjs +8 -8
- package/esm2022/lib/views/timeline/timeline.component.mjs +1 -1
- package/esm2022/lib/views/view-item.component.mjs +1 -1
- package/fesm2022/bizdoc-core.mjs +89 -78
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/admin/form/workflow/workflow.component.d.ts +2 -2
- package/lib/app.component.d.ts +0 -2
- package/lib/compose/form-selector/form-selector.sheet.d.ts +1 -3
- package/lib/core/base.d.ts +1 -1
- package/lib/cube/cube.service.d.ts +3 -3
- package/lib/impersonate/impersonate.component.d.ts +4 -3
- package/lib/shared.module.d.ts +1 -1
- package/lib/views/cube/cube-base.d.ts +2 -2
- package/lib/views/cube/sum.component.d.ts +2 -2
- package/lib/views/cube/view.component.d.ts +3 -3
- package/lib/views/timeline/timeline.component.d.ts +2 -2
- package/package.json +2 -3
- package/assets/fonts/MaterialIcons-Outlined.woff2 +0 -0
- package/assets/fonts/MaterialIcons-Regular.eot +0 -0
- package/assets/fonts/MaterialIcons-Regular.ijmap +0 -1
- package/assets/fonts/MaterialIcons-Regular.svg +0 -2373
- package/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- package/assets/fonts/MaterialIcons-Regular.woff +0 -0
- package/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/assets/fonts/MaterialIcons.css +0 -55
- package/assets/fonts/README.md +0 -9
- package/assets/fonts/material-icons.css +0 -36
@@ -48,8 +48,8 @@ export declare class WorkflowComponent implements OnInit, OnDestroy, AdminCompon
|
|
48
48
|
connDefaults: (obj: ConnectorModel) => ConnectorModel;
|
49
49
|
getSymbolInfo(symbol: NodeModel): SymbolInfo | null;
|
50
50
|
getSymbolDefaults(symbol: NodeModel): void;
|
51
|
-
|
52
|
-
|
51
|
+
panMode(): void;
|
52
|
+
cursorMode(): void;
|
53
53
|
selectionChange(evt: ISelectionChangeEventArgs): void;
|
54
54
|
align(value: AlignmentOptions): void;
|
55
55
|
dragEnter(args: IDragEnterEventArgs): void;
|
package/lib/app.component.d.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import { OnInit, ViewContainerRef } from '@angular/core';
|
2
|
-
import { Direction } from '@angular/cdk/bidi';
|
3
2
|
import { SessionService } from './core/session.service';
|
4
3
|
import { HubService } from './core/hub.service';
|
5
4
|
import * as i0 from "@angular/core";
|
@@ -11,7 +10,6 @@ export declare class BizDocApp implements OnInit {
|
|
11
10
|
private _vc;
|
12
11
|
private _session;
|
13
12
|
private _messaging;
|
14
|
-
readonly dir: Direction;
|
15
13
|
private readonly _refresh;
|
16
14
|
constructor(_vc: ViewContainerRef, _session: SessionService, _messaging: HubService);
|
17
15
|
private _initialize;
|
@@ -3,20 +3,18 @@ import { MatBottomSheetRef } from '@angular/material/bottom-sheet';
|
|
3
3
|
import { MatDialog } from '@angular/material/dialog';
|
4
4
|
import { Form, RecipientModel } from '../../core/models';
|
5
5
|
import { SessionService } from '../../core/session.service';
|
6
|
-
import { PromptService } from '../../core/prompt.service';
|
7
6
|
import { DocumentFactory } from '../../core/document-factory.service';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
export declare class FormSelectorSheet {
|
10
9
|
private _dialog;
|
11
10
|
private _bsRef;
|
12
|
-
private _sb;
|
13
11
|
private _factory;
|
14
12
|
private _router;
|
15
13
|
private readonly _done;
|
16
14
|
readonly done: import("rxjs").Observable<RecipientModel<any>>;
|
17
15
|
readonly forms: Form[];
|
18
16
|
/** form selector ctor */
|
19
|
-
constructor(_dialog: MatDialog, _bsRef: MatBottomSheetRef<FormSelectorSheet>,
|
17
|
+
constructor(_dialog: MatDialog, _bsRef: MatBottomSheetRef<FormSelectorSheet>, _factory: DocumentFactory, _router: Router, session: SessionService);
|
20
18
|
open(form: string): void;
|
21
19
|
copy(event: MouseEvent): void;
|
22
20
|
private _nav;
|
package/lib/core/base.d.ts
CHANGED
@@ -48,6 +48,6 @@ export interface UtilityComponent<TResult = any, TArgs = any, TOptions = any> {
|
|
48
48
|
export interface ExploreItemComponent<TModel> {
|
49
49
|
onBind(data: TModel): void;
|
50
50
|
}
|
51
|
-
export interface
|
51
|
+
export interface InsightComponent<TResult = any, TArgs = any, TOptions = any> {
|
52
52
|
onBind(model: DocumentModel<any>): void;
|
53
53
|
}
|
@@ -25,8 +25,8 @@ export declare class CubeService {
|
|
25
25
|
private readonly _cache;
|
26
26
|
constructor(_config: BizDocConfig, _http: HttpClient, _type: DatasourceService, _session: SessionService);
|
27
27
|
private _cacheOr;
|
28
|
-
|
29
|
-
|
28
|
+
getCurrencySymbol(currencyCode: string): string;
|
29
|
+
getNumberFormat(currencyCode?: string): string;
|
30
30
|
get currencyCode(): string;
|
31
31
|
get digitsInfo(): string;
|
32
32
|
get fractionDigits(): number;
|
@@ -265,4 +265,4 @@ export interface Pattern {
|
|
265
265
|
title: string;
|
266
266
|
axes: AxesMap;
|
267
267
|
}
|
268
|
-
export declare function errResource(error: HttpErrorResponse): "
|
268
|
+
export declare function errResource(error: HttpErrorResponse): "Unauthorized" | "LicenseErr" | "NotAcceptable" | "Err";
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { OnDestroy
|
1
|
+
import { OnDestroy } from '@angular/core';
|
2
2
|
import { FormControl } from '@angular/forms';
|
3
3
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
4
4
|
import { UserInfo } from '../core/models';
|
5
5
|
import { SessionService } from '../core/session.service';
|
6
6
|
import { PromptService } from '../core/prompt.service';
|
7
7
|
import * as i0 from "@angular/core";
|
8
|
-
export declare class ImpersonateDialog implements
|
8
|
+
export declare class ImpersonateDialog implements OnDestroy {
|
9
9
|
private _sb;
|
10
10
|
private _session;
|
11
11
|
private readonly _destroy;
|
@@ -15,8 +15,9 @@ export declare class ImpersonateDialog implements OnInit, OnDestroy {
|
|
15
15
|
selected?: UserInfo;
|
16
16
|
logging: boolean;
|
17
17
|
constructor(_sb: PromptService, _session: SessionService);
|
18
|
-
|
18
|
+
reset(): void;
|
19
19
|
close(): void;
|
20
|
+
escape(evt: MouseEvent): void;
|
20
21
|
go(userId: string): void;
|
21
22
|
display(item?: UserInfo): string | null;
|
22
23
|
change(evt: MatAutocompleteSelectedEvent): void;
|
package/lib/shared.module.d.ts
CHANGED
@@ -208,6 +208,6 @@ import * as i203 from "./modules/material.module";
|
|
208
208
|
export declare class SharedModule {
|
209
209
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
210
210
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
211
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.OverlayFormComponent, typeof i2.LocalizedStringPipe, typeof i3.HelpTipComponent, typeof i4.BoxFormComponent, typeof i5.BoxFormRowComponent, typeof i6.BoxFormControlComponent, typeof i7.PerformanceWindComponent, typeof i8.PerformanceHiloComponent, typeof i9.CubeUsageComponent, typeof i10.CubeDocumentsComponent, typeof i11.DateFormatPipe, typeof i12.CalendarPipe, typeof i13.DifferencePipe, typeof i14.DurationPipe, typeof i15.TimeAgoPipe, typeof i16.ToNowPipe, typeof i17.HtmlSimplePipe, typeof i18.CheckboxComponent, typeof i19.CubeParallelComponent, typeof i20.CubeSumComponent, typeof i21.CubeParallelViewComponent, typeof i22.CubeChartViewComponent, typeof i23.CubeExploreViewComponent, typeof i24.CubeDocumentSumComponent, typeof i25.ExploreItemImplComponent, typeof i26.DocumentInfoComponent, typeof i27.DocumentViewsComponent, typeof i28.ViewItemComponent, typeof i29.CubeDocumentMatrixComponent, typeof i30.
|
211
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.OverlayFormComponent, typeof i2.LocalizedStringPipe, typeof i3.HelpTipComponent, typeof i4.BoxFormComponent, typeof i5.BoxFormRowComponent, typeof i6.BoxFormControlComponent, typeof i7.PerformanceWindComponent, typeof i8.PerformanceHiloComponent, typeof i9.CubeUsageComponent, typeof i10.CubeDocumentsComponent, typeof i11.DateFormatPipe, typeof i12.CalendarPipe, typeof i13.DifferencePipe, typeof i14.DurationPipe, typeof i15.TimeAgoPipe, typeof i16.ToNowPipe, typeof i17.HtmlSimplePipe, typeof i18.CheckboxComponent, typeof i19.CubeParallelComponent, typeof i20.CubeSumComponent, typeof i21.CubeParallelViewComponent, typeof i22.CubeChartViewComponent, typeof i23.CubeExploreViewComponent, typeof i24.CubeDocumentSumComponent, typeof i25.ExploreItemImplComponent, typeof i26.DocumentInfoComponent, typeof i27.DocumentViewsComponent, typeof i28.ViewItemComponent, typeof i29.CubeDocumentMatrixComponent, typeof i30.CubeInsightComponent, typeof i31.CubePivotViewComponent, typeof i32.ActionPicker, typeof i33.QuickCommentComponent, typeof i34.DurationFormatPipe, typeof i35.CombinationPicker, typeof i36.CombinationPickerBody, typeof i37.CombinationPool, typeof i38.TimelineViewComponent, typeof i39.MatIconAnimate, typeof i40.DateRangePipe, typeof i40.AgoPipe, typeof i41.StateDirective, typeof i42.JoinPipe, typeof i43.TypeValuePipe, typeof i44.L18nPipe, typeof i44.TranslatePipe, typeof i45.IdentityName, typeof i46.SanitizeHtmlPipe, typeof i47.StatePipe, typeof i48.ActionPipe, typeof i49.RolePipe, typeof i50.FormPipe, typeof i51.FilterPipe, typeof i52.ArraySortPipe, typeof i52.JsonPipe, typeof i53.UserNamePipe, typeof i54.TaggingPipe, typeof i55.TypeSelect, typeof i56.TypeAutocomplete, typeof i57.Signature, typeof i58.AceInput, typeof i59.TimespanInput, typeof i60.AddressInput, typeof i61.FileInput, typeof i62.TimePicker, typeof i63.LayoutComponent, typeof i64.StickyToolbar, typeof i65.VirtualTabs, typeof i65.Tab, typeof i66.TimeField, typeof i67.SignatureField, typeof i68.AddressField, typeof i69.RadioButtonField, typeof i70.ChecklistField, typeof i71.AxesPickerField, typeof i72.YesNoField, typeof i73.HtmlField, typeof i74.FileField, typeof i75.NumericField, typeof i76.AutocompleteField, typeof i77.CheckboxField, typeof i78.DateField, typeof i79.DateRangeField, typeof i80.ExpressionField, typeof i81.InputField, typeof i82.SelectField, typeof i83.SwitchField, typeof i84.TextareaField, typeof i85.ChipsField, typeof i86.TimespanField, typeof i87.ReturnActionComponent, typeof i88.AssignActionComponent, typeof i89.MoveToActionComponent, typeof i90.AvatarComponent, typeof i91.PeopleComponent, typeof i92.EditInputComponent, typeof i93.LottieAnimation, typeof i17.ContactsComponent, typeof i94.CubeMatrixComponent, typeof i95.FilterTagsComponent, typeof i96.ExploreItemsComponent, typeof i97.CompareNameDirective, typeof i97.CompareGroupDirective, typeof i97.CompareContextDirective, typeof i98.GuideComponent, typeof i99.OutOfOfficeToast, typeof i100.NotificationsTableComponent, typeof i101.NotificationsFilterComponent, typeof i102.PrivilegeHiddenDirective, typeof i103.TaggingItemDirective, typeof i104.TaggingDirective, typeof i105.DocumentTaggingComponent, typeof i106.UserTaggingComponent, typeof i102.PrivilegeDisabledDirective, typeof i107.CubeDocumentsGridComponent, typeof i108.LongRunningTaskNotification, typeof i109.TaggedNotification, typeof i110.CommentedNotification, typeof i111.NudgeNotification, typeof i112.InviteNotification, typeof i113.TextNotification, typeof i114.CubeAnomalyNotification, typeof i115.EscalatedNotification, typeof i116.LikedNotification, typeof i117.StateChangedNotification, typeof i118.UpcomingEventNotification, typeof i119.NoneComponent, typeof i120.ScheduleViewComponent, typeof i121.OptionsComponent, typeof i122.TraceViewComponent, typeof i123.ProgressDirective, typeof i124.AttachmentsComponent, typeof i125.DocumentEventsComponent, typeof i126.TagsComponent, typeof i127.MapComponent, typeof i128.MaskComponent, typeof i129.FlowViewComponent, typeof i130.SubstitutionComponent, typeof i131.PopupComponent, typeof i132.AttachmentPreview, typeof i133.CommentsComponent, typeof i134.CommentComponent, typeof i135.EditCommentComponent, typeof i136.CommentLikesComponent, typeof i137.CommentEditsComponent, typeof i138.BrowseItemsComponent, typeof i139.BrowseFilterComponent, typeof i140.ExpandedItemComponent, typeof i141.ComposeFormComponent, typeof i142.CubeViewComponent, typeof i143.CubeFilterComponent, typeof i144.CubeAccumulationChartComponent, typeof i145.CubeChartComponent, typeof i146.CubePivotComponent, typeof i147.CubeSpreadsheetComponent, typeof i148.CubeGridComponent, typeof i149.ReportViewerComponent, typeof i150.TableViewComponent, typeof i151.ReportArgumentsComponent, typeof i152.DashboardComponent, typeof i153.WidgetItemComponent, typeof i154.CubeWidgetFilterComponent, typeof i155.SaveChangesDialog, typeof i156.AskDialog, typeof i157.AboutDialog, typeof i158.ActionDialog, typeof i159.ImpersonateDialog, typeof i160.ConversationComponent, typeof i161.CubeMatrixPopupComponent, typeof i162.VersionCompareComponent, typeof i163.ExploreDocumentComponent, typeof i164.TasksComponent, typeof i165.CubeDocumentsTableComponent, typeof i166.CubePerformanceWidget, typeof i167.CubeAccumAnalysisWidget, typeof i168.CubeAnalysisWidget, typeof i169.CubeChartAnalysisWidget, typeof i170.ActionsWidget, typeof i171.RecentsWidget, typeof i172.PendingResultsWidget, typeof i173.CompareGroupsWidget, typeof i174.CubeDocumentsWidget, typeof i175.DocumentStateWidgetComponent, typeof i176.PersonalScoreWidget, typeof i177.PersonalActivityWidget, typeof i178.PeersPerformanceWidget, typeof i179.UsagePivotComponent, typeof i180.UsageChartComponent, typeof i181.UsageReportArgs, typeof i182.EmojiHostComponent, typeof i183.TooltipDirective, typeof i183.TooltipComponent, typeof i184.BrokenPage], [typeof i185.SpContainer, typeof i186.DayJsModule, typeof i187.CommonModule, typeof i188.ReactiveFormsModule, typeof i189.RouterModule, typeof i190.PickerModule, typeof i191.SyncfusionGanttModule, typeof i192.SyncfusionScheduleModule, typeof i193.SyncfusionCircularGaugeModule, typeof i194.SyncfusionChartModule, typeof i191.SyncfusionGanttModule, typeof i195.SyncfusionGridModule, typeof i196.SyncfusionLinearGaugeModule, typeof i197.SyncfusionTextEditorModule, typeof i198.SyncfusionSpreadsheetModule, typeof i199.SyncfusionPivotModule, typeof i200.SignatureModule, typeof i201.KanbanModule, typeof i202.SyncfusionDiagramModule, typeof i203.MaterialModule], [typeof i121.OptionsComponent, typeof i185.SpContainer, typeof i119.NoneComponent, typeof i2.LocalizedStringPipe, typeof i203.MaterialModule, typeof i184.BrokenPage, typeof i3.HelpTipComponent, typeof i95.FilterTagsComponent, typeof i11.DateFormatPipe, typeof i12.CalendarPipe, typeof i13.DifferencePipe, typeof i14.DurationPipe, typeof i15.TimeAgoPipe, typeof i16.ToNowPipe, typeof i18.CheckboxComponent, typeof i19.CubeParallelComponent, typeof i20.CubeSumComponent, typeof i25.ExploreItemImplComponent, typeof i26.DocumentInfoComponent, typeof i27.DocumentViewsComponent, typeof i152.DashboardComponent, typeof i126.TagsComponent, typeof i33.QuickCommentComponent, typeof i133.CommentsComponent, typeof i63.LayoutComponent, typeof i158.ActionDialog, typeof i64.StickyToolbar, typeof i65.VirtualTabs, typeof i65.Tab, typeof i139.BrowseFilterComponent, typeof i143.CubeFilterComponent, typeof i120.ScheduleViewComponent, typeof i149.ReportViewerComponent, typeof i153.WidgetItemComponent, typeof i142.CubeViewComponent, typeof i96.ExploreItemsComponent, typeof i141.ComposeFormComponent, typeof i138.BrowseItemsComponent, typeof i100.NotificationsTableComponent, typeof i32.ActionPicker, typeof i160.ConversationComponent, typeof i41.StateDirective, typeof i17.ContactsComponent, typeof i94.CubeMatrixComponent, typeof i39.MatIconAnimate, typeof i183.TooltipDirective, typeof i59.TimespanInput, typeof i61.FileInput, typeof i60.AddressInput, typeof i58.AceInput, typeof i35.CombinationPicker, typeof i37.CombinationPool, typeof i55.TypeSelect, typeof i56.TypeAutocomplete, typeof i62.TimePicker, typeof i34.DurationFormatPipe, typeof i40.DateRangePipe, typeof i43.TypeValuePipe, typeof i42.JoinPipe, typeof i47.StatePipe, typeof i48.ActionPipe, typeof i49.RolePipe, typeof i50.FormPipe, typeof i51.FilterPipe, typeof i52.JsonPipe, typeof i52.ArraySortPipe, typeof i53.UserNamePipe, typeof i46.SanitizeHtmlPipe, typeof i44.L18nPipe, typeof i44.TranslatePipe, typeof i45.IdentityName, typeof i90.AvatarComponent, typeof i151.ReportArgumentsComponent, typeof i132.AttachmentPreview, typeof i102.PrivilegeHiddenDirective, typeof i102.PrivilegeDisabledDirective, typeof i97.CompareGroupDirective, typeof i97.CompareNameDirective, typeof i97.CompareContextDirective, typeof i122.TraceViewComponent, typeof i129.FlowViewComponent, typeof i88.AssignActionComponent, typeof i87.ReturnActionComponent, typeof i163.ExploreDocumentComponent, typeof i166.CubePerformanceWidget, typeof i170.ActionsWidget, typeof i168.CubeAnalysisWidget, typeof i174.CubeDocumentsWidget, typeof i171.RecentsWidget, typeof i177.PersonalActivityWidget, typeof i173.CompareGroupsWidget, typeof i178.PeersPerformanceWidget, typeof i172.PendingResultsWidget, typeof i176.PersonalScoreWidget, typeof i154.CubeWidgetFilterComponent, typeof i165.CubeDocumentsTableComponent, typeof i107.CubeDocumentsGridComponent, typeof i164.TasksComponent, typeof i181.UsageReportArgs, typeof i180.UsageChartComponent, typeof i179.UsagePivotComponent, typeof i162.VersionCompareComponent, typeof i93.LottieAnimation, typeof i144.CubeAccumulationChartComponent, typeof i145.CubeChartComponent, typeof i146.CubePivotComponent, typeof i147.CubeSpreadsheetComponent, typeof i148.CubeGridComponent]>;
|
212
212
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
213
213
|
}
|
@@ -2,10 +2,10 @@ import { AxesMap, Cube, DocumentModel } from "../../core/models";
|
|
2
2
|
import { SessionService } from "../../core/session.service";
|
3
3
|
import { DocumentViewRef } from "../document-view-ref";
|
4
4
|
import { CubeService, Pattern } from '../../cube/cube.service';
|
5
|
-
import {
|
5
|
+
import { InsightComponent } from "../../core/base";
|
6
6
|
import { ScopeType } from "../../core/configuration";
|
7
7
|
import * as i0 from "@angular/core";
|
8
|
-
export declare abstract class CubeBase<O extends Options> implements
|
8
|
+
export declare abstract class CubeBase<O extends Options> implements InsightComponent {
|
9
9
|
protected _viewRef: DocumentViewRef<O>;
|
10
10
|
protected _service: CubeService;
|
11
11
|
protected _session: SessionService;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { InsightComponent } from "../../core/base";
|
2
2
|
import { SessionService } from "../../core/session.service";
|
3
3
|
import { RouterImpl } from "../../core/router";
|
4
4
|
import { CubeService } from "../../cube/cube.service";
|
@@ -8,7 +8,7 @@ import { CubeAxis } from "../../core/models";
|
|
8
8
|
import { ExploreEvent } from "../../cube/sum/sum.component";
|
9
9
|
import { ScopeType } from "../../core/configuration";
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
-
export declare class CubeDocumentSumComponent extends CubeBase<SumSettingsModel> implements
|
11
|
+
export declare class CubeDocumentSumComponent extends CubeBase<SumSettingsModel> implements InsightComponent {
|
12
12
|
private _router;
|
13
13
|
primaryAxis: CubeAxis;
|
14
14
|
parentAxis?: string;
|
@@ -10,7 +10,7 @@ import { AxisClickEvent } from '../../cube/declarations';
|
|
10
10
|
import { DocumentViewRef } from '../document-view-ref';
|
11
11
|
import { CubeBase } from './cube-base';
|
12
12
|
import * as i0 from "@angular/core";
|
13
|
-
export declare class
|
13
|
+
export declare class CubeInsightComponent extends CubeBase<ViewSettingsModel> implements OnInit {
|
14
14
|
private _popup;
|
15
15
|
private _router;
|
16
16
|
private _guide;
|
@@ -29,8 +29,8 @@ export declare class CubeDocumentViewComponent extends CubeBase<ViewSettingsMode
|
|
29
29
|
patternChange(pattern: Pattern): void;
|
30
30
|
clearFilter(): void;
|
31
31
|
guide(evt?: Event): void;
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeInsightComponent, never>;
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeInsightComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
34
34
|
}
|
35
35
|
export interface ViewSettingsModel {
|
36
36
|
cube?: string;
|
@@ -4,13 +4,13 @@ import { RowSelectingEventArgs } from '@syncfusion/ej2-grids';
|
|
4
4
|
import { SessionService } from '../../core/session.service';
|
5
5
|
import { TranslateService } from '../../core/translate.service';
|
6
6
|
import { AccountService } from '../../core/account.service';
|
7
|
-
import {
|
7
|
+
import { InsightComponent } from '../../core/base';
|
8
8
|
import { DocumentModel } from '../../core/models';
|
9
9
|
import { BizDocConfig } from '../../core/configuration';
|
10
10
|
import { RouterImpl } from '../../core/router';
|
11
11
|
import { DocumentViewRef } from '../document-view-ref';
|
12
12
|
import * as i0 from "@angular/core";
|
13
|
-
export declare class TimelineViewComponent implements
|
13
|
+
export declare class TimelineViewComponent implements InsightComponent {
|
14
14
|
private _users;
|
15
15
|
private _session;
|
16
16
|
private _translate;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "3.2.
|
3
|
+
"version": "3.2.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",
|
@@ -29,10 +29,9 @@
|
|
29
29
|
"ace-builds": "^1.36.2",
|
30
30
|
"cookie": "^0.6.0",
|
31
31
|
"hammerjs": "~2",
|
32
|
-
"typescript": "5.5",
|
33
32
|
"dayjs": "^1.11.13",
|
34
33
|
"ngx-cookie-service": "18",
|
35
|
-
"firebase": "
|
34
|
+
"firebase": "10.14",
|
36
35
|
"zone.js": "0.14",
|
37
36
|
"tslib": "^2.3.0"
|
38
37
|
},
|
Binary file
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
{"icons":{"e84d":{"name":"3d Rotation"},"eb3b":{"name":"Ac Unit"},"e190":{"name":"Access Alarm"},"e191":{"name":"Access Alarms"},"e192":{"name":"Access Time"},"e84e":{"name":"Accessibility"},"e914":{"name":"Accessible"},"e84f":{"name":"Account Balance"},"e850":{"name":"Account Balance Wallet"},"e851":{"name":"Account Box"},"e853":{"name":"Account Circle"},"e60e":{"name":"Adb"},"e145":{"name":"Add"},"e439":{"name":"Add A Photo"},"e193":{"name":"Add Alarm"},"e003":{"name":"Add Alert"},"e146":{"name":"Add Box"},"e147":{"name":"Add Circle"},"e148":{"name":"Add Circle Outline"},"e567":{"name":"Add Location"},"e854":{"name":"Add Shopping Cart"},"e39d":{"name":"Add To Photos"},"e05c":{"name":"Add To Queue"},"e39e":{"name":"Adjust"},"e630":{"name":"Airline Seat Flat"},"e631":{"name":"Airline Seat Flat Angled"},"e632":{"name":"Airline Seat Individual Suite"},"e633":{"name":"Airline Seat Legroom Extra"},"e634":{"name":"Airline Seat Legroom Normal"},"e635":{"name":"Airline Seat Legroom Reduced"},"e636":{"name":"Airline Seat Recline Extra"},"e637":{"name":"Airline Seat Recline Normal"},"e195":{"name":"Airplanemode Active"},"e194":{"name":"Airplanemode Inactive"},"e055":{"name":"Airplay"},"eb3c":{"name":"Airport Shuttle"},"e855":{"name":"Alarm"},"e856":{"name":"Alarm Add"},"e857":{"name":"Alarm Off"},"e858":{"name":"Alarm On"},"e019":{"name":"Album"},"eb3d":{"name":"All Inclusive"},"e90b":{"name":"All Out"},"e859":{"name":"Android"},"e85a":{"name":"Announcement"},"e5c3":{"name":"Apps"},"e149":{"name":"Archive"},"e5c4":{"name":"Arrow Back"},"e5db":{"name":"Arrow Downward"},"e5c5":{"name":"Arrow Drop Down"},"e5c6":{"name":"Arrow Drop Down Circle"},"e5c7":{"name":"Arrow Drop Up"},"e5c8":{"name":"Arrow Forward"},"e5d8":{"name":"Arrow Upward"},"e060":{"name":"Art Track"},"e85b":{"name":"Aspect Ratio"},"e85c":{"name":"Assessment"},"e85d":{"name":"Assignment"},"e85e":{"name":"Assignment Ind"},"e85f":{"name":"Assignment Late"},"e860":{"name":"Assignment Return"},"e861":{"name":"Assignment Returned"},"e862":{"name":"Assignment Turned In"},"e39f":{"name":"Assistant"},"e3a0":{"name":"Assistant Photo"},"e226":{"name":"Attach File"},"e227":{"name":"Attach Money"},"e2bc":{"name":"Attachment"},"e3a1":{"name":"Audiotrack"},"e863":{"name":"Autorenew"},"e01b":{"name":"Av Timer"},"e14a":{"name":"Backspace"},"e864":{"name":"Backup"},"e19c":{"name":"Battery Alert"},"e1a3":{"name":"Battery Charging Full"},"e1a4":{"name":"Battery Full"},"e1a5":{"name":"Battery Std"},"e1a6":{"name":"Battery Unknown"},"eb3e":{"name":"Beach Access"},"e52d":{"name":"Beenhere"},"e14b":{"name":"Block"},"e1a7":{"name":"Bluetooth"},"e60f":{"name":"Bluetooth Audio"},"e1a8":{"name":"Bluetooth Connected"},"e1a9":{"name":"Bluetooth Disabled"},"e1aa":{"name":"Bluetooth Searching"},"e3a2":{"name":"Blur Circular"},"e3a3":{"name":"Blur Linear"},"e3a4":{"name":"Blur Off"},"e3a5":{"name":"Blur On"},"e865":{"name":"Book"},"e866":{"name":"Bookmark"},"e867":{"name":"Bookmark Border"},"e228":{"name":"Border All"},"e229":{"name":"Border Bottom"},"e22a":{"name":"Border Clear"},"e22b":{"name":"Border Color"},"e22c":{"name":"Border Horizontal"},"e22d":{"name":"Border Inner"},"e22e":{"name":"Border Left"},"e22f":{"name":"Border Outer"},"e230":{"name":"Border Right"},"e231":{"name":"Border Style"},"e232":{"name":"Border Top"},"e233":{"name":"Border Vertical"},"e06b":{"name":"Branding Watermark"},"e3a6":{"name":"Brightness 1"},"e3a7":{"name":"Brightness 2"},"e3a8":{"name":"Brightness 3"},"e3a9":{"name":"Brightness 4"},"e3aa":{"name":"Brightness 5"},"e3ab":{"name":"Brightness 6"},"e3ac":{"name":"Brightness 7"},"e1ab":{"name":"Brightness Auto"},"e1ac":{"name":"Brightness High"},"e1ad":{"name":"Brightness Low"},"e1ae":{"name":"Brightness Medium"},"e3ad":{"name":"Broken Image"},"e3ae":{"name":"Brush"},"e6dd":{"name":"Bubble Chart"},"e868":{"name":"Bug Report"},"e869":{"name":"Build"},"e43c":{"name":"Burst Mode"},"e0af":{"name":"Business"},"eb3f":{"name":"Business Center"},"e86a":{"name":"Cached"},"e7e9":{"name":"Cake"},"e0b0":{"name":"Call"},"e0b1":{"name":"Call End"},"e0b2":{"name":"Call Made"},"e0b3":{"name":"Call Merge"},"e0b4":{"name":"Call Missed"},"e0e4":{"name":"Call Missed Outgoing"},"e0b5":{"name":"Call Received"},"e0b6":{"name":"Call Split"},"e06c":{"name":"Call To Action"},"e3af":{"name":"Camera"},"e3b0":{"name":"Camera Alt"},"e8fc":{"name":"Camera Enhance"},"e3b1":{"name":"Camera Front"},"e3b2":{"name":"Camera Rear"},"e3b3":{"name":"Camera Roll"},"e5c9":{"name":"Cancel"},"e8f6":{"name":"Card Giftcard"},"e8f7":{"name":"Card Membership"},"e8f8":{"name":"Card Travel"},"eb40":{"name":"Casino"},"e307":{"name":"Cast"},"e308":{"name":"Cast Connected"},"e3b4":{"name":"Center Focus Strong"},"e3b5":{"name":"Center Focus Weak"},"e86b":{"name":"Change History"},"e0b7":{"name":"Chat"},"e0ca":{"name":"Chat Bubble"},"e0cb":{"name":"Chat Bubble Outline"},"e5ca":{"name":"Check"},"e834":{"name":"Check Box"},"e835":{"name":"Check Box Outline Blank"},"e86c":{"name":"Check Circle"},"e5cb":{"name":"Chevron Left"},"e5cc":{"name":"Chevron Right"},"eb41":{"name":"Child Care"},"eb42":{"name":"Child Friendly"},"e86d":{"name":"Chrome Reader Mode"},"e86e":{"name":"Class"},"e14c":{"name":"Clear"},"e0b8":{"name":"Clear All"},"e5cd":{"name":"Close"},"e01c":{"name":"Closed Caption"},"e2bd":{"name":"Cloud"},"e2be":{"name":"Cloud Circle"},"e2bf":{"name":"Cloud Done"},"e2c0":{"name":"Cloud Download"},"e2c1":{"name":"Cloud Off"},"e2c2":{"name":"Cloud Queue"},"e2c3":{"name":"Cloud Upload"},"e86f":{"name":"Code"},"e3b6":{"name":"Collections"},"e431":{"name":"Collections Bookmark"},"e3b7":{"name":"Color Lens"},"e3b8":{"name":"Colorize"},"e0b9":{"name":"Comment"},"e3b9":{"name":"Compare"},"e915":{"name":"Compare Arrows"},"e30a":{"name":"Computer"},"e638":{"name":"Confirmation Number"},"e0d0":{"name":"Contact Mail"},"e0cf":{"name":"Contact Phone"},"e0ba":{"name":"Contacts"},"e14d":{"name":"Content Copy"},"e14e":{"name":"Content Cut"},"e14f":{"name":"Content Paste"},"e3ba":{"name":"Control Point"},"e3bb":{"name":"Control Point Duplicate"},"e90c":{"name":"Copyright"},"e150":{"name":"Create"},"e2cc":{"name":"Create New Folder"},"e870":{"name":"Credit Card"},"e3be":{"name":"Crop"},"e3bc":{"name":"Crop 16 9"},"e3bd":{"name":"Crop 3 2"},"e3bf":{"name":"Crop 5 4"},"e3c0":{"name":"Crop 7 5"},"e3c1":{"name":"Crop Din"},"e3c2":{"name":"Crop Free"},"e3c3":{"name":"Crop Landscape"},"e3c4":{"name":"Crop Original"},"e3c5":{"name":"Crop Portrait"},"e437":{"name":"Crop Rotate"},"e3c6":{"name":"Crop Square"},"e871":{"name":"Dashboard"},"e1af":{"name":"Data Usage"},"e916":{"name":"Date Range"},"e3c7":{"name":"Dehaze"},"e872":{"name":"Delete"},"e92b":{"name":"Delete Forever"},"e16c":{"name":"Delete Sweep"},"e873":{"name":"Description"},"e30b":{"name":"Desktop Mac"},"e30c":{"name":"Desktop Windows"},"e3c8":{"name":"Details"},"e30d":{"name":"Developer Board"},"e1b0":{"name":"Developer Mode"},"e335":{"name":"Device Hub"},"e1b1":{"name":"Devices"},"e337":{"name":"Devices Other"},"e0bb":{"name":"Dialer Sip"},"e0bc":{"name":"Dialpad"},"e52e":{"name":"Directions"},"e52f":{"name":"Directions Bike"},"e532":{"name":"Directions Boat"},"e530":{"name":"Directions Bus"},"e531":{"name":"Directions Car"},"e534":{"name":"Directions Railway"},"e566":{"name":"Directions Run"},"e533":{"name":"Directions Subway"},"e535":{"name":"Directions Transit"},"e536":{"name":"Directions Walk"},"e610":{"name":"Disc Full"},"e875":{"name":"Dns"},"e612":{"name":"Do Not Disturb"},"e611":{"name":"Do Not Disturb Alt"},"e643":{"name":"Do Not Disturb Off"},"e644":{"name":"Do Not Disturb On"},"e30e":{"name":"Dock"},"e7ee":{"name":"Domain"},"e876":{"name":"Done"},"e877":{"name":"Done All"},"e917":{"name":"Donut Large"},"e918":{"name":"Donut Small"},"e151":{"name":"Drafts"},"e25d":{"name":"Drag Handle"},"e613":{"name":"Drive Eta"},"e1b2":{"name":"Dvr"},"e3c9":{"name":"Edit"},"e568":{"name":"Edit Location"},"e8fb":{"name":"Eject"},"e0be":{"name":"Email"},"e63f":{"name":"Enhanced Encryption"},"e01d":{"name":"Equalizer"},"e000":{"name":"Error"},"e001":{"name":"Error Outline"},"e926":{"name":"Euro Symbol"},"e56d":{"name":"Ev Station"},"e878":{"name":"Event"},"e614":{"name":"Event Available"},"e615":{"name":"Event Busy"},"e616":{"name":"Event Note"},"e903":{"name":"Event Seat"},"e879":{"name":"Exit To App"},"e5ce":{"name":"Expand Less"},"e5cf":{"name":"Expand More"},"e01e":{"name":"Explicit"},"e87a":{"name":"Explore"},"e3ca":{"name":"Exposure"},"e3cb":{"name":"Exposure Neg 1"},"e3cc":{"name":"Exposure Neg 2"},"e3cd":{"name":"Exposure Plus 1"},"e3ce":{"name":"Exposure Plus 2"},"e3cf":{"name":"Exposure Zero"},"e87b":{"name":"Extension"},"e87c":{"name":"Face"},"e01f":{"name":"Fast Forward"},"e020":{"name":"Fast Rewind"},"e87d":{"name":"Favorite"},"e87e":{"name":"Favorite Border"},"e06d":{"name":"Featured Play List"},"e06e":{"name":"Featured Video"},"e87f":{"name":"Feedback"},"e05d":{"name":"Fiber Dvr"},"e061":{"name":"Fiber Manual Record"},"e05e":{"name":"Fiber New"},"e06a":{"name":"Fiber Pin"},"e062":{"name":"Fiber Smart Record"},"e2c4":{"name":"File Download"},"e2c6":{"name":"File Upload"},"e3d3":{"name":"Filter"},"e3d0":{"name":"Filter 1"},"e3d1":{"name":"Filter 2"},"e3d2":{"name":"Filter 3"},"e3d4":{"name":"Filter 4"},"e3d5":{"name":"Filter 5"},"e3d6":{"name":"Filter 6"},"e3d7":{"name":"Filter 7"},"e3d8":{"name":"Filter 8"},"e3d9":{"name":"Filter 9"},"e3da":{"name":"Filter 9 Plus"},"e3db":{"name":"Filter B And W"},"e3dc":{"name":"Filter Center Focus"},"e3dd":{"name":"Filter Drama"},"e3de":{"name":"Filter Frames"},"e3df":{"name":"Filter Hdr"},"e152":{"name":"Filter List"},"e3e0":{"name":"Filter None"},"e3e2":{"name":"Filter Tilt Shift"},"e3e3":{"name":"Filter Vintage"},"e880":{"name":"Find In Page"},"e881":{"name":"Find Replace"},"e90d":{"name":"Fingerprint"},"e5dc":{"name":"First Page"},"eb43":{"name":"Fitness Center"},"e153":{"name":"Flag"},"e3e4":{"name":"Flare"},"e3e5":{"name":"Flash Auto"},"e3e6":{"name":"Flash Off"},"e3e7":{"name":"Flash On"},"e539":{"name":"Flight"},"e904":{"name":"Flight Land"},"e905":{"name":"Flight Takeoff"},"e3e8":{"name":"Flip"},"e882":{"name":"Flip To Back"},"e883":{"name":"Flip To Front"},"e2c7":{"name":"Folder"},"e2c8":{"name":"Folder Open"},"e2c9":{"name":"Folder Shared"},"e617":{"name":"Folder Special"},"e167":{"name":"Font Download"},"e234":{"name":"Format Align Center"},"e235":{"name":"Format Align Justify"},"e236":{"name":"Format Align Left"},"e237":{"name":"Format Align Right"},"e238":{"name":"Format Bold"},"e239":{"name":"Format Clear"},"e23a":{"name":"Format Color Fill"},"e23b":{"name":"Format Color Reset"},"e23c":{"name":"Format Color Text"},"e23d":{"name":"Format Indent Decrease"},"e23e":{"name":"Format Indent Increase"},"e23f":{"name":"Format Italic"},"e240":{"name":"Format Line Spacing"},"e241":{"name":"Format List Bulleted"},"e242":{"name":"Format List Numbered"},"e243":{"name":"Format Paint"},"e244":{"name":"Format Quote"},"e25e":{"name":"Format Shapes"},"e245":{"name":"Format Size"},"e246":{"name":"Format Strikethrough"},"e247":{"name":"Format Textdirection L To R"},"e248":{"name":"Format Textdirection R To L"},"e249":{"name":"Format Underlined"},"e0bf":{"name":"Forum"},"e154":{"name":"Forward"},"e056":{"name":"Forward 10"},"e057":{"name":"Forward 30"},"e058":{"name":"Forward 5"},"eb44":{"name":"Free Breakfast"},"e5d0":{"name":"Fullscreen"},"e5d1":{"name":"Fullscreen Exit"},"e24a":{"name":"Functions"},"e927":{"name":"G Translate"},"e30f":{"name":"Gamepad"},"e021":{"name":"Games"},"e90e":{"name":"Gavel"},"e155":{"name":"Gesture"},"e884":{"name":"Get App"},"e908":{"name":"Gif"},"eb45":{"name":"Golf Course"},"e1b3":{"name":"Gps Fixed"},"e1b4":{"name":"Gps Not Fixed"},"e1b5":{"name":"Gps Off"},"e885":{"name":"Grade"},"e3e9":{"name":"Gradient"},"e3ea":{"name":"Grain"},"e1b8":{"name":"Graphic Eq"},"e3eb":{"name":"Grid Off"},"e3ec":{"name":"Grid On"},"e7ef":{"name":"Group"},"e7f0":{"name":"Group Add"},"e886":{"name":"Group Work"},"e052":{"name":"Hd"},"e3ed":{"name":"Hdr Off"},"e3ee":{"name":"Hdr On"},"e3f1":{"name":"Hdr Strong"},"e3f2":{"name":"Hdr Weak"},"e310":{"name":"Headset"},"e311":{"name":"Headset Mic"},"e3f3":{"name":"Healing"},"e023":{"name":"Hearing"},"e887":{"name":"Help"},"e8fd":{"name":"Help Outline"},"e024":{"name":"High Quality"},"e25f":{"name":"Highlight"},"e888":{"name":"Highlight Off"},"e889":{"name":"History"},"e88a":{"name":"Home"},"eb46":{"name":"Hot Tub"},"e53a":{"name":"Hotel"},"e88b":{"name":"Hourglass Empty"},"e88c":{"name":"Hourglass Full"},"e902":{"name":"Http"},"e88d":{"name":"Https"},"e3f4":{"name":"Image"},"e3f5":{"name":"Image Aspect Ratio"},"e0e0":{"name":"Import Contacts"},"e0c3":{"name":"Import Export"},"e912":{"name":"Important Devices"},"e156":{"name":"Inbox"},"e909":{"name":"Indeterminate Check Box"},"e88e":{"name":"Info"},"e88f":{"name":"Info Outline"},"e890":{"name":"Input"},"e24b":{"name":"Insert Chart"},"e24c":{"name":"Insert Comment"},"e24d":{"name":"Insert Drive File"},"e24e":{"name":"Insert Emoticon"},"e24f":{"name":"Insert Invitation"},"e250":{"name":"Insert Link"},"e251":{"name":"Insert Photo"},"e891":{"name":"Invert Colors"},"e0c4":{"name":"Invert Colors Off"},"e3f6":{"name":"Iso"},"e312":{"name":"Keyboard"},"e313":{"name":"Keyboard Arrow Down"},"e314":{"name":"Keyboard Arrow Left"},"e315":{"name":"Keyboard Arrow Right"},"e316":{"name":"Keyboard Arrow Up"},"e317":{"name":"Keyboard Backspace"},"e318":{"name":"Keyboard Capslock"},"e31a":{"name":"Keyboard Hide"},"e31b":{"name":"Keyboard Return"},"e31c":{"name":"Keyboard Tab"},"e31d":{"name":"Keyboard Voice"},"eb47":{"name":"Kitchen"},"e892":{"name":"Label"},"e893":{"name":"Label Outline"},"e3f7":{"name":"Landscape"},"e894":{"name":"Language"},"e31e":{"name":"Laptop"},"e31f":{"name":"Laptop Chromebook"},"e320":{"name":"Laptop Mac"},"e321":{"name":"Laptop Windows"},"e5dd":{"name":"Last Page"},"e895":{"name":"Launch"},"e53b":{"name":"Layers"},"e53c":{"name":"Layers Clear"},"e3f8":{"name":"Leak Add"},"e3f9":{"name":"Leak Remove"},"e3fa":{"name":"Lens"},"e02e":{"name":"Library Add"},"e02f":{"name":"Library Books"},"e030":{"name":"Library Music"},"e90f":{"name":"Lightbulb Outline"},"e919":{"name":"Line Style"},"e91a":{"name":"Line Weight"},"e260":{"name":"Linear Scale"},"e157":{"name":"Link"},"e438":{"name":"Linked Camera"},"e896":{"name":"List"},"e0c6":{"name":"Live Help"},"e639":{"name":"Live Tv"},"e53f":{"name":"Local Activity"},"e53d":{"name":"Local Airport"},"e53e":{"name":"Local Atm"},"e540":{"name":"Local Bar"},"e541":{"name":"Local Cafe"},"e542":{"name":"Local Car Wash"},"e543":{"name":"Local Convenience Store"},"e556":{"name":"Local Dining"},"e544":{"name":"Local Drink"},"e545":{"name":"Local Florist"},"e546":{"name":"Local Gas Station"},"e547":{"name":"Local Grocery Store"},"e548":{"name":"Local Hospital"},"e549":{"name":"Local Hotel"},"e54a":{"name":"Local Laundry Service"},"e54b":{"name":"Local Library"},"e54c":{"name":"Local Mall"},"e54d":{"name":"Local Movies"},"e54e":{"name":"Local Offer"},"e54f":{"name":"Local Parking"},"e550":{"name":"Local Pharmacy"},"e551":{"name":"Local Phone"},"e552":{"name":"Local Pizza"},"e553":{"name":"Local Play"},"e554":{"name":"Local Post Office"},"e555":{"name":"Local Printshop"},"e557":{"name":"Local See"},"e558":{"name":"Local Shipping"},"e559":{"name":"Local Taxi"},"e7f1":{"name":"Location City"},"e1b6":{"name":"Location Disabled"},"e0c7":{"name":"Location Off"},"e0c8":{"name":"Location On"},"e1b7":{"name":"Location Searching"},"e897":{"name":"Lock"},"e898":{"name":"Lock Open"},"e899":{"name":"Lock Outline"},"e3fc":{"name":"Looks"},"e3fb":{"name":"Looks 3"},"e3fd":{"name":"Looks 4"},"e3fe":{"name":"Looks 5"},"e3ff":{"name":"Looks 6"},"e400":{"name":"Looks One"},"e401":{"name":"Looks Two"},"e028":{"name":"Loop"},"e402":{"name":"Loupe"},"e16d":{"name":"Low Priority"},"e89a":{"name":"Loyalty"},"e158":{"name":"Mail"},"e0e1":{"name":"Mail Outline"},"e55b":{"name":"Map"},"e159":{"name":"Markunread"},"e89b":{"name":"Markunread Mailbox"},"e322":{"name":"Memory"},"e5d2":{"name":"Menu"},"e252":{"name":"Merge Type"},"e0c9":{"name":"Message"},"e029":{"name":"Mic"},"e02a":{"name":"Mic None"},"e02b":{"name":"Mic Off"},"e618":{"name":"Mms"},"e253":{"name":"Mode Comment"},"e254":{"name":"Mode Edit"},"e263":{"name":"Monetization On"},"e25c":{"name":"Money Off"},"e403":{"name":"Monochrome Photos"},"e7f2":{"name":"Mood"},"e7f3":{"name":"Mood Bad"},"e619":{"name":"More"},"e5d3":{"name":"More Horiz"},"e5d4":{"name":"More Vert"},"e91b":{"name":"Motorcycle"},"e323":{"name":"Mouse"},"e168":{"name":"Move To Inbox"},"e02c":{"name":"Movie"},"e404":{"name":"Movie Creation"},"e43a":{"name":"Movie Filter"},"e6df":{"name":"Multiline Chart"},"e405":{"name":"Music Note"},"e063":{"name":"Music Video"},"e55c":{"name":"My Location"},"e406":{"name":"Nature"},"e407":{"name":"Nature People"},"e408":{"name":"Navigate Before"},"e409":{"name":"Navigate Next"},"e55d":{"name":"Navigation"},"e569":{"name":"Near Me"},"e1b9":{"name":"Network Cell"},"e640":{"name":"Network Check"},"e61a":{"name":"Network Locked"},"e1ba":{"name":"Network Wifi"},"e031":{"name":"New Releases"},"e16a":{"name":"Next Week"},"e1bb":{"name":"Nfc"},"e641":{"name":"No Encryption"},"e0cc":{"name":"No Sim"},"e033":{"name":"Not Interested"},"e06f":{"name":"Note"},"e89c":{"name":"Note Add"},"e7f4":{"name":"Notifications"},"e7f7":{"name":"Notifications Active"},"e7f5":{"name":"Notifications None"},"e7f6":{"name":"Notifications Off"},"e7f8":{"name":"Notifications Paused"},"e90a":{"name":"Offline Pin"},"e63a":{"name":"Ondemand Video"},"e91c":{"name":"Opacity"},"e89d":{"name":"Open In Browser"},"e89e":{"name":"Open In New"},"e89f":{"name":"Open With"},"e7f9":{"name":"Pages"},"e8a0":{"name":"Pageview"},"e40a":{"name":"Palette"},"e925":{"name":"Pan Tool"},"e40b":{"name":"Panorama"},"e40c":{"name":"Panorama Fish Eye"},"e40d":{"name":"Panorama Horizontal"},"e40e":{"name":"Panorama Vertical"},"e40f":{"name":"Panorama Wide Angle"},"e7fa":{"name":"Party Mode"},"e034":{"name":"Pause"},"e035":{"name":"Pause Circle Filled"},"e036":{"name":"Pause Circle Outline"},"e8a1":{"name":"Payment"},"e7fb":{"name":"People"},"e7fc":{"name":"People Outline"},"e8a2":{"name":"Perm Camera Mic"},"e8a3":{"name":"Perm Contact Calendar"},"e8a4":{"name":"Perm Data Setting"},"e8a5":{"name":"Perm Device Information"},"e8a6":{"name":"Perm Identity"},"e8a7":{"name":"Perm Media"},"e8a8":{"name":"Perm Phone Msg"},"e8a9":{"name":"Perm Scan Wifi"},"e7fd":{"name":"Person"},"e7fe":{"name":"Person Add"},"e7ff":{"name":"Person Outline"},"e55a":{"name":"Person Pin"},"e56a":{"name":"Person Pin Circle"},"e63b":{"name":"Personal Video"},"e91d":{"name":"Pets"},"e0cd":{"name":"Phone"},"e324":{"name":"Phone Android"},"e61b":{"name":"Phone Bluetooth Speaker"},"e61c":{"name":"Phone Forwarded"},"e61d":{"name":"Phone In Talk"},"e325":{"name":"Phone Iphone"},"e61e":{"name":"Phone Locked"},"e61f":{"name":"Phone Missed"},"e620":{"name":"Phone Paused"},"e326":{"name":"Phonelink"},"e0db":{"name":"Phonelink Erase"},"e0dc":{"name":"Phonelink Lock"},"e327":{"name":"Phonelink Off"},"e0dd":{"name":"Phonelink Ring"},"e0de":{"name":"Phonelink Setup"},"e410":{"name":"Photo"},"e411":{"name":"Photo Album"},"e412":{"name":"Photo Camera"},"e43b":{"name":"Photo Filter"},"e413":{"name":"Photo Library"},"e432":{"name":"Photo Size Select Actual"},"e433":{"name":"Photo Size Select Large"},"e434":{"name":"Photo Size Select Small"},"e415":{"name":"Picture As Pdf"},"e8aa":{"name":"Picture In Picture"},"e911":{"name":"Picture In Picture Alt"},"e6c4":{"name":"Pie Chart"},"e6c5":{"name":"Pie Chart Outlined"},"e55e":{"name":"Pin Drop"},"e55f":{"name":"Place"},"e037":{"name":"Play Arrow"},"e038":{"name":"Play Circle Filled"},"e039":{"name":"Play Circle Outline"},"e906":{"name":"Play For Work"},"e03b":{"name":"Playlist Add"},"e065":{"name":"Playlist Add Check"},"e05f":{"name":"Playlist Play"},"e800":{"name":"Plus One"},"e801":{"name":"Poll"},"e8ab":{"name":"Polymer"},"eb48":{"name":"Pool"},"e0ce":{"name":"Portable Wifi Off"},"e416":{"name":"Portrait"},"e63c":{"name":"Power"},"e336":{"name":"Power Input"},"e8ac":{"name":"Power Settings New"},"e91e":{"name":"Pregnant Woman"},"e0df":{"name":"Present To All"},"e8ad":{"name":"Print"},"e645":{"name":"Priority High"},"e80b":{"name":"Public"},"e255":{"name":"Publish"},"e8ae":{"name":"Query Builder"},"e8af":{"name":"Question Answer"},"e03c":{"name":"Queue"},"e03d":{"name":"Queue Music"},"e066":{"name":"Queue Play Next"},"e03e":{"name":"Radio"},"e837":{"name":"Radio Button Checked"},"e836":{"name":"Radio Button Unchecked"},"e560":{"name":"Rate Review"},"e8b0":{"name":"Receipt"},"e03f":{"name":"Recent Actors"},"e91f":{"name":"Record Voice Over"},"e8b1":{"name":"Redeem"},"e15a":{"name":"Redo"},"e5d5":{"name":"Refresh"},"e15b":{"name":"Remove"},"e15c":{"name":"Remove Circle"},"e15d":{"name":"Remove Circle Outline"},"e067":{"name":"Remove From Queue"},"e417":{"name":"Remove Red Eye"},"e928":{"name":"Remove Shopping Cart"},"e8fe":{"name":"Reorder"},"e040":{"name":"Repeat"},"e041":{"name":"Repeat One"},"e042":{"name":"Replay"},"e059":{"name":"Replay 10"},"e05a":{"name":"Replay 30"},"e05b":{"name":"Replay 5"},"e15e":{"name":"Reply"},"e15f":{"name":"Reply All"},"e160":{"name":"Report"},"e8b2":{"name":"Report Problem"},"e56c":{"name":"Restaurant"},"e561":{"name":"Restaurant Menu"},"e8b3":{"name":"Restore"},"e929":{"name":"Restore Page"},"e0d1":{"name":"Ring Volume"},"e8b4":{"name":"Room"},"eb49":{"name":"Room Service"},"e418":{"name":"Rotate 90 Degrees Ccw"},"e419":{"name":"Rotate Left"},"e41a":{"name":"Rotate Right"},"e920":{"name":"Rounded Corner"},"e328":{"name":"Router"},"e921":{"name":"Rowing"},"e0e5":{"name":"Rss Feed"},"e642":{"name":"Rv Hookup"},"e562":{"name":"Satellite"},"e161":{"name":"Save"},"e329":{"name":"Scanner"},"e8b5":{"name":"Schedule"},"e80c":{"name":"School"},"e1be":{"name":"Screen Lock Landscape"},"e1bf":{"name":"Screen Lock Portrait"},"e1c0":{"name":"Screen Lock Rotation"},"e1c1":{"name":"Screen Rotation"},"e0e2":{"name":"Screen Share"},"e623":{"name":"Sd Card"},"e1c2":{"name":"Sd Storage"},"e8b6":{"name":"Search"},"e32a":{"name":"Security"},"e162":{"name":"Select All"},"e163":{"name":"Send"},"e811":{"name":"Sentiment Dissatisfied"},"e812":{"name":"Sentiment Neutral"},"e813":{"name":"Sentiment Satisfied"},"e814":{"name":"Sentiment Very Dissatisfied"},"e815":{"name":"Sentiment Very Satisfied"},"e8b8":{"name":"Settings"},"e8b9":{"name":"Settings Applications"},"e8ba":{"name":"Settings Backup Restore"},"e8bb":{"name":"Settings Bluetooth"},"e8bd":{"name":"Settings Brightness"},"e8bc":{"name":"Settings Cell"},"e8be":{"name":"Settings Ethernet"},"e8bf":{"name":"Settings Input Antenna"},"e8c0":{"name":"Settings Input Component"},"e8c1":{"name":"Settings Input Composite"},"e8c2":{"name":"Settings Input Hdmi"},"e8c3":{"name":"Settings Input Svideo"},"e8c4":{"name":"Settings Overscan"},"e8c5":{"name":"Settings Phone"},"e8c6":{"name":"Settings Power"},"e8c7":{"name":"Settings Remote"},"e1c3":{"name":"Settings System Daydream"},"e8c8":{"name":"Settings Voice"},"e80d":{"name":"Share"},"e8c9":{"name":"Shop"},"e8ca":{"name":"Shop Two"},"e8cb":{"name":"Shopping Basket"},"e8cc":{"name":"Shopping Cart"},"e261":{"name":"Short Text"},"e6e1":{"name":"Show Chart"},"e043":{"name":"Shuffle"},"e1c8":{"name":"Signal Cellular 4 Bar"},"e1cd":{"name":"Signal Cellular Connected No Internet 4 Bar"},"e1ce":{"name":"Signal Cellular No Sim"},"e1cf":{"name":"Signal Cellular Null"},"e1d0":{"name":"Signal Cellular Off"},"e1d8":{"name":"Signal Wifi 4 Bar"},"e1d9":{"name":"Signal Wifi 4 Bar Lock"},"e1da":{"name":"Signal Wifi Off"},"e32b":{"name":"Sim Card"},"e624":{"name":"Sim Card Alert"},"e044":{"name":"Skip Next"},"e045":{"name":"Skip Previous"},"e41b":{"name":"Slideshow"},"e068":{"name":"Slow Motion Video"},"e32c":{"name":"Smartphone"},"eb4a":{"name":"Smoke Free"},"eb4b":{"name":"Smoking Rooms"},"e625":{"name":"Sms"},"e626":{"name":"Sms Failed"},"e046":{"name":"Snooze"},"e164":{"name":"Sort"},"e053":{"name":"Sort By Alpha"},"eb4c":{"name":"Spa"},"e256":{"name":"Space Bar"},"e32d":{"name":"Speaker"},"e32e":{"name":"Speaker Group"},"e8cd":{"name":"Speaker Notes"},"e92a":{"name":"Speaker Notes Off"},"e0d2":{"name":"Speaker Phone"},"e8ce":{"name":"Spellcheck"},"e838":{"name":"Star"},"e83a":{"name":"Star Border"},"e839":{"name":"Star Half"},"e8d0":{"name":"Stars"},"e0d3":{"name":"Stay Current Landscape"},"e0d4":{"name":"Stay Current Portrait"},"e0d5":{"name":"Stay Primary Landscape"},"e0d6":{"name":"Stay Primary Portrait"},"e047":{"name":"Stop"},"e0e3":{"name":"Stop Screen Share"},"e1db":{"name":"Storage"},"e8d1":{"name":"Store"},"e563":{"name":"Store Mall Directory"},"e41c":{"name":"Straighten"},"e56e":{"name":"Streetview"},"e257":{"name":"Strikethrough S"},"e41d":{"name":"Style"},"e5d9":{"name":"Subdirectory Arrow Left"},"e5da":{"name":"Subdirectory Arrow Right"},"e8d2":{"name":"Subject"},"e064":{"name":"Subscriptions"},"e048":{"name":"Subtitles"},"e56f":{"name":"Subway"},"e8d3":{"name":"Supervisor Account"},"e049":{"name":"Surround Sound"},"e0d7":{"name":"Swap Calls"},"e8d4":{"name":"Swap Horiz"},"e8d5":{"name":"Swap Vert"},"e8d6":{"name":"Swap Vertical Circle"},"e41e":{"name":"Switch Camera"},"e41f":{"name":"Switch Video"},"e627":{"name":"Sync"},"e628":{"name":"Sync Disabled"},"e629":{"name":"Sync Problem"},"e62a":{"name":"System Update"},"e8d7":{"name":"System Update Alt"},"e8d8":{"name":"Tab"},"e8d9":{"name":"Tab Unselected"},"e32f":{"name":"Tablet"},"e330":{"name":"Tablet Android"},"e331":{"name":"Tablet Mac"},"e420":{"name":"Tag Faces"},"e62b":{"name":"Tap And Play"},"e564":{"name":"Terrain"},"e262":{"name":"Text Fields"},"e165":{"name":"Text Format"},"e0d8":{"name":"Textsms"},"e421":{"name":"Texture"},"e8da":{"name":"Theaters"},"e8db":{"name":"Thumb Down"},"e8dc":{"name":"Thumb Up"},"e8dd":{"name":"Thumbs Up Down"},"e62c":{"name":"Time To Leave"},"e422":{"name":"Timelapse"},"e922":{"name":"Timeline"},"e425":{"name":"Timer"},"e423":{"name":"Timer 10"},"e424":{"name":"Timer 3"},"e426":{"name":"Timer Off"},"e264":{"name":"Title"},"e8de":{"name":"Toc"},"e8df":{"name":"Today"},"e8e0":{"name":"Toll"},"e427":{"name":"Tonality"},"e913":{"name":"Touch App"},"e332":{"name":"Toys"},"e8e1":{"name":"Track Changes"},"e565":{"name":"Traffic"},"e570":{"name":"Train"},"e571":{"name":"Tram"},"e572":{"name":"Transfer Within A Station"},"e428":{"name":"Transform"},"e8e2":{"name":"Translate"},"e8e3":{"name":"Trending Down"},"e8e4":{"name":"Trending Flat"},"e8e5":{"name":"Trending Up"},"e429":{"name":"Tune"},"e8e6":{"name":"Turned In"},"e8e7":{"name":"Turned In Not"},"e333":{"name":"Tv"},"e169":{"name":"Unarchive"},"e166":{"name":"Undo"},"e5d6":{"name":"Unfold Less"},"e5d7":{"name":"Unfold More"},"e923":{"name":"Update"},"e1e0":{"name":"Usb"},"e8e8":{"name":"Verified User"},"e258":{"name":"Vertical Align Bottom"},"e259":{"name":"Vertical Align Center"},"e25a":{"name":"Vertical Align Top"},"e62d":{"name":"Vibration"},"e070":{"name":"Video Call"},"e071":{"name":"Video Label"},"e04a":{"name":"Video Library"},"e04b":{"name":"Videocam"},"e04c":{"name":"Videocam Off"},"e338":{"name":"Videogame Asset"},"e8e9":{"name":"View Agenda"},"e8ea":{"name":"View Array"},"e8eb":{"name":"View Carousel"},"e8ec":{"name":"View Column"},"e42a":{"name":"View Comfy"},"e42b":{"name":"View Compact"},"e8ed":{"name":"View Day"},"e8ee":{"name":"View Headline"},"e8ef":{"name":"View List"},"e8f0":{"name":"View Module"},"e8f1":{"name":"View Quilt"},"e8f2":{"name":"View Stream"},"e8f3":{"name":"View Week"},"e435":{"name":"Vignette"},"e8f4":{"name":"Visibility"},"e8f5":{"name":"Visibility Off"},"e62e":{"name":"Voice Chat"},"e0d9":{"name":"Voicemail"},"e04d":{"name":"Volume Down"},"e04e":{"name":"Volume Mute"},"e04f":{"name":"Volume Off"},"e050":{"name":"Volume Up"},"e0da":{"name":"Vpn Key"},"e62f":{"name":"Vpn Lock"},"e1bc":{"name":"Wallpaper"},"e002":{"name":"Warning"},"e334":{"name":"Watch"},"e924":{"name":"Watch Later"},"e42c":{"name":"Wb Auto"},"e42d":{"name":"Wb Cloudy"},"e42e":{"name":"Wb Incandescent"},"e436":{"name":"Wb Iridescent"},"e430":{"name":"Wb Sunny"},"e63d":{"name":"Wc"},"e051":{"name":"Web"},"e069":{"name":"Web Asset"},"e16b":{"name":"Weekend"},"e80e":{"name":"Whatshot"},"e1bd":{"name":"Widgets"},"e63e":{"name":"Wifi"},"e1e1":{"name":"Wifi Lock"},"e1e2":{"name":"Wifi Tethering"},"e8f9":{"name":"Work"},"e25b":{"name":"Wrap Text"},"e8fa":{"name":"Youtube Searched For"},"e8ff":{"name":"Zoom In"},"e900":{"name":"Zoom Out"},"e56b":{"name":"Zoom Out Map"}}}
|