@dangl/angular-ava 0.1.1-beta0093

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/README.md +1 -0
  2. package/esm2022/dangl-angular-ava.mjs +5 -0
  3. package/esm2022/lib/angular-ava.module.mjs +91 -0
  4. package/esm2022/lib/ava-tree/tree/components/ava-tree/ava-tree.component.mjs +412 -0
  5. package/esm2022/lib/ava-tree/tree/components/list-structure/list-structure.component.mjs +41 -0
  6. package/esm2022/lib/ava-tree/tree/components/table-structure/table-structure.component.mjs +110 -0
  7. package/esm2022/lib/ava-tree/tree/components/tree-item/tree-item.component.mjs +102 -0
  8. package/esm2022/lib/ava-tree/tree/components/tree-node/tree-node.component.mjs +53 -0
  9. package/esm2022/lib/ava-tree/tree/components/tree-structure/tree-structure.component.mjs +33 -0
  10. package/esm2022/lib/ava-tree/tree/constants/defaultFilters.mjs +23 -0
  11. package/esm2022/lib/ava-tree/tree/constants/defaultTextWords.mjs +11 -0
  12. package/esm2022/lib/ava-tree/tree/constants/defaults.mjs +4 -0
  13. package/esm2022/lib/ava-tree/tree/constants/index.mjs +5 -0
  14. package/esm2022/lib/ava-tree/tree/directives/save-changing-view.directive.mjs +47 -0
  15. package/esm2022/lib/ava-tree/tree/model/ava-models.mjs +199 -0
  16. package/esm2022/lib/ava-tree/tree/model/context-menu-data.model.mjs +2 -0
  17. package/esm2022/lib/ava-tree/tree/model/function-view-line.model.mjs +2 -0
  18. package/esm2022/lib/ava-tree/tree/model/index.mjs +4 -0
  19. package/esm2022/lib/ava-tree/tree/model/selecting.model.mjs +2 -0
  20. package/esm2022/lib/ava-tree/tree/model/tableColumnType.mjs +2 -0
  21. package/esm2022/lib/ava-tree/tree/model/tree-mode.model.mjs +7 -0
  22. package/esm2022/lib/ava-tree/tree/pipes/element-icon-name.pipe.mjs +27 -0
  23. package/esm2022/lib/ava-tree/tree/pipes/element-item-number.pipe.mjs +23 -0
  24. package/esm2022/lib/ava-tree/tree/pipes/element-text.pipe.mjs +27 -0
  25. package/esm2022/lib/ava-tree/tree/pipes/group-child-elements.pipe.mjs +20 -0
  26. package/esm2022/lib/ava-tree/tree/services/expand-parent-group.service.mjs +32 -0
  27. package/esm2022/lib/ava-tree/tree/services/flat-elements.service.mjs +96 -0
  28. package/esm2022/lib/ava-tree/tree/services/keyboard-operation.service.mjs +116 -0
  29. package/esm2022/lib/ava-tree/tree/services/select-element.service.mjs +41 -0
  30. package/esm2022/lib/ava-tree/tree/services/tree-node-selection.service.mjs +133 -0
  31. package/esm2022/lib/version.mjs +10 -0
  32. package/esm2022/public-api.mjs +8 -0
  33. package/fesm2022/dangl-angular-ava.mjs +1574 -0
  34. package/fesm2022/dangl-angular-ava.mjs.map +1 -0
  35. package/index.d.ts +5 -0
  36. package/lib/angular-ava.module.d.ts +27 -0
  37. package/lib/ava-tree/tree/components/ava-tree/ava-tree.component.d.ts +165 -0
  38. package/lib/ava-tree/tree/components/list-structure/list-structure.component.d.ts +18 -0
  39. package/lib/ava-tree/tree/components/table-structure/table-structure.component.d.ts +34 -0
  40. package/lib/ava-tree/tree/components/tree-item/tree-item.component.d.ts +35 -0
  41. package/lib/ava-tree/tree/components/tree-node/tree-node.component.d.ts +23 -0
  42. package/lib/ava-tree/tree/components/tree-structure/tree-structure.component.d.ts +14 -0
  43. package/lib/ava-tree/tree/constants/defaultFilters.d.ts +2 -0
  44. package/lib/ava-tree/tree/constants/defaultTextWords.d.ts +11 -0
  45. package/lib/ava-tree/tree/constants/defaults.d.ts +3 -0
  46. package/lib/ava-tree/tree/constants/index.d.ts +4 -0
  47. package/lib/ava-tree/tree/directives/save-changing-view.directive.d.ts +13 -0
  48. package/lib/ava-tree/tree/model/ava-models.d.ts +1041 -0
  49. package/lib/ava-tree/tree/model/context-menu-data.model.d.ts +8 -0
  50. package/lib/ava-tree/tree/model/function-view-line.model.d.ts +12 -0
  51. package/lib/ava-tree/tree/model/index.d.ts +7 -0
  52. package/lib/ava-tree/tree/model/selecting.model.d.ts +14 -0
  53. package/lib/ava-tree/tree/model/tableColumnType.d.ts +6 -0
  54. package/lib/ava-tree/tree/model/tree-mode.model.d.ts +5 -0
  55. package/lib/ava-tree/tree/pipes/element-icon-name.pipe.d.ts +8 -0
  56. package/lib/ava-tree/tree/pipes/element-item-number.pipe.d.ts +8 -0
  57. package/lib/ava-tree/tree/pipes/element-text.pipe.d.ts +8 -0
  58. package/lib/ava-tree/tree/pipes/group-child-elements.pipe.d.ts +8 -0
  59. package/lib/ava-tree/tree/services/expand-parent-group.service.d.ts +7 -0
  60. package/lib/ava-tree/tree/services/flat-elements.service.d.ts +28 -0
  61. package/lib/ava-tree/tree/services/keyboard-operation.service.d.ts +35 -0
  62. package/lib/ava-tree/tree/services/select-element.service.d.ts +31 -0
  63. package/lib/ava-tree/tree/services/tree-node-selection.service.d.ts +23 -0
  64. package/lib/version.d.ts +8 -0
  65. package/package.json +31 -0
  66. package/public-api.d.ts +4 -0
@@ -0,0 +1,165 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
+ import { ITextWords } from '../../constants/defaultTextWords';
3
+ import { ContextMenuDataType, IElementDto, IFunctionViewLine, ModeViewType, ProjectDto, SelectedElement, ServiceSpecificationDto, TableColumnType } from '../../model';
4
+ import { ExpandParentGroupService } from '../../services/expand-parent-group.service';
5
+ import { FlatElementsService } from '../../services/flat-elements.service';
6
+ import { IKeyboardOperationConfig, KeyboardOperationService } from '../../services/keyboard-operation.service';
7
+ import { SelectElementService } from '../../services/select-element.service';
8
+ import { TreeNodeSelectionService } from '../../services/tree-node-selection.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class AvaTreeComponent implements OnInit, OnChanges, OnDestroy, AfterViewInit {
11
+ private flatElementsService;
12
+ private selectElementService;
13
+ private treeNodeSelectionService;
14
+ private expandParentGroupService;
15
+ private keyboardOperationService;
16
+ private ngZone;
17
+ /**
18
+ * This is the main data element for the tree structure. You should supply a ProjectDto with
19
+ * exactly one service specification in it.
20
+ */
21
+ project: ProjectDto | null;
22
+ /**
23
+ * Optionally, you can supply a map of expansion states for the tree. The keys should be the
24
+ * id properties of the elements in the tree, and the values should be true if the element is
25
+ * expanded, and false if it is collapsed.
26
+ */
27
+ expansionState: {
28
+ [id: string]: boolean;
29
+ };
30
+ /**
31
+ * Optionally, you can supply the id of the node that should be selected in the tree initially.
32
+ */
33
+ selectedNodeId: string | null;
34
+ /**
35
+ * Optional, defaults to 20px. If this is set, then the tree will be indented by the given value each level.
36
+ * This can be any valid CSS value for the padding-left property, such as 20px, 1em, or 5%.
37
+ *
38
+ */
39
+ indent: string;
40
+ /**
41
+ * Optional, you can supply a color to be used as the background color for the selected line. Defaults to the primary
42
+ * color from the Material theme, which is #00acc1.
43
+ */
44
+ selectedColor: string | null;
45
+ /**
46
+ * You can specify which view type to use for the tree. The default is ModeViewType.Tree, but you can also use
47
+ * ModeViewType.List or ModeViewType.Table.
48
+ */
49
+ modeView: ModeViewType;
50
+ /** Optional, defaults to true. If this is disabled, then the double click event for elements is not raised,
51
+ * and clicking on an elemt sends an immediate result since the component has not to wait and check if a double click event
52
+ * is fired.
53
+ */
54
+ allowDblClick: boolean;
55
+ /**
56
+ * If this is set to true, then the tree will be in selection mode, and the user can select elements
57
+ * by clicking on them. The selected elements will be emitted in the selectedElementsChanged event.
58
+ */
59
+ isSelectionMode: boolean;
60
+ /**
61
+ * You can optionally supply a list of elements that should be selected initially. This is only used if
62
+ * isSelectionMode is true.
63
+ */
64
+ initiallySelectedElements: SelectedElement[] | null;
65
+ /**
66
+ * You can supply a map of strings to be used for the text in the tree. This allows you to translate
67
+ * the text in the tree to other languages.
68
+ * {
69
+ * textSearch: string,
70
+ * textNothing: string,
71
+ * textNothingFiltered: string,
72
+ * textAll: string,
73
+ * tooltipAllOpen: string,
74
+ * tooltipAllClose: string,
75
+ * tooltipAllAdd:string,
76
+ * tooltipAllRemove: string,
77
+ * }
78
+ */
79
+ set textWords(words: ITextWords | null);
80
+ get textWords(): ITextWords | null;
81
+ private _textWords;
82
+ /**
83
+ * Defaults to true. If this is enabled, then navigating in the tree with the keyboard only works
84
+ * if the mouse is over the tree area. This limitation is useful if you have multiple trees or other components
85
+ * that might be using keyboard input.
86
+ */
87
+ mouseAwareKeyboardControl: boolean;
88
+ /**
89
+ * With this parameter, you can configure which keys will be listenend to to switch the tree elements,
90
+ * and also to disable the functionality of the keys */
91
+ set customKeyboardOperationConfig(config: IKeyboardOperationConfig);
92
+ /**
93
+ * You can supply custom filters that are processed when the filter input is changed. Default filters are used
94
+ * that check for short text and item number matches, and you can either add custom filters or replace the default ones.
95
+ */
96
+ listFilterFunc: ((element: IElementDto, filter: string) => boolean | undefined)[];
97
+ /**
98
+ * Optional. For table views, this allows you to add custom columns to the table.
99
+ * addTableColumns: Array of objects
100
+ * {
101
+ * name: string, // name of column
102
+ * title: string, // showed title of column
103
+ * align?: string, // optional alight: left(default) / center / right
104
+ * numberFormat?: string // optional format of number value, example: '1.2-2'
105
+ * }
106
+ */
107
+ addTableColumns: TableColumnType[];
108
+ /**
109
+ * This allows you to supply a list of functions that can be used to change the appearance of elements.
110
+ * They objects contain a predicate function that is evaluated, along with an option to configure the
111
+ * appearance of the element.
112
+ * functionView: Array of objects
113
+ * {
114
+ * name: string, // name of view part: you can add/remove it when it need
115
+ * func: (element: any, result?: any) => boolean, // this filter function calculate condition to change view
116
+ * view: {
117
+ * iconName?: string, // changed name of icon
118
+ * iconColor?: string, // changed color of icon
119
+ * textBold?: string, // changed weight of text
120
+ * textColor?: string // changed color of text
121
+ * }
122
+ * }
123
+ */
124
+ functionView: IFunctionViewLine[] | null;
125
+ selectClick: EventEmitter<IElementDto | null>;
126
+ selectDblClick: EventEmitter<IElementDto>;
127
+ contextMenuEvent: EventEmitter<ContextMenuDataType>;
128
+ selectedElementsChanged: EventEmitter<SelectedElement[]>;
129
+ avaTreeWrapper: ElementRef<HTMLDivElement>;
130
+ avaMainWrapper: ElementRef<HTMLDivElement>;
131
+ avaTreeFilterInput: ElementRef<HTMLInputElement>;
132
+ selectedElement: IElementDto | null;
133
+ serviceSpecification: ServiceSpecificationDto;
134
+ isListenKeyboard: boolean;
135
+ private isEmiteSelectedElements;
136
+ private selectingElementsTreeData;
137
+ flatElements: IElementDto[] | null;
138
+ preselectedElement: IElementDto | null;
139
+ filterInput: string;
140
+ listModeViewType: typeof ModeViewType;
141
+ private filter;
142
+ private $filter;
143
+ filteredElementList: IElementDto[];
144
+ private $destroy;
145
+ constructor(flatElementsService: FlatElementsService, selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, expandParentGroupService: ExpandParentGroupService, keyboardOperationService: KeyboardOperationService, ngZone: NgZone);
146
+ ngOnInit(): void;
147
+ ngAfterViewInit(): void;
148
+ ngOnChanges(changes: SimpleChanges): void;
149
+ ngOnDestroy(): void;
150
+ private mouseOver;
151
+ private mouseOut;
152
+ private handleGlobalKeyboardEvent;
153
+ private showElement;
154
+ private scrollLine;
155
+ private correctScrollTableLine;
156
+ expandParentGroups(element: IElementDto): void;
157
+ onFilter(value: string): void;
158
+ changeAllElementsExpansionStatus(isExpanded: boolean): void;
159
+ private formSelectingList;
160
+ selectOrDeselectAll(value: boolean): void;
161
+ private getFilteredList;
162
+ private initializeEventListeners;
163
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvaTreeComponent, [{ self: true; }, { self: true; }, { self: true; }, { self: true; }, { self: true; }, null]>;
164
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvaTreeComponent, "ava-tree", never, { "project": { "alias": "project"; "required": false; }; "expansionState": { "alias": "expansionState"; "required": false; }; "selectedNodeId": { "alias": "selectedNodeId"; "required": false; }; "indent": { "alias": "indent"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "modeView": { "alias": "modeView"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "initiallySelectedElements": { "alias": "initiallySelectedElements"; "required": false; }; "textWords": { "alias": "textWords"; "required": false; }; "mouseAwareKeyboardControl": { "alias": "mouseAwareKeyboardControl"; "required": false; }; "customKeyboardOperationConfig": { "alias": "customKeyboardOperationConfig"; "required": false; }; "listFilterFunc": { "alias": "listFilterFunc"; "required": false; }; "addTableColumns": { "alias": "addTableColumns"; "required": false; }; "functionView": { "alias": "functionView"; "required": false; }; }, { "selectClick": "selectClick"; "selectDblClick": "selectDblClick"; "contextMenuEvent": "contextMenuEvent"; "selectedElementsChanged": "selectedElementsChanged"; }, never, never, false, never>;
165
+ }
@@ -0,0 +1,18 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { IElementDto } from '../../model';
3
+ import { SelectElementService } from '../../services/select-element.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ListStructureComponent implements OnDestroy, OnInit {
6
+ selectElementService: SelectElementService;
7
+ filteredElementList: IElementDto[];
8
+ isSelectionMode: boolean;
9
+ selectedColor: string | null;
10
+ allowDblClick: boolean;
11
+ selectedElement: IElementDto | null;
12
+ private $destroy;
13
+ constructor(selectElementService: SelectElementService);
14
+ ngOnInit(): void;
15
+ ngOnDestroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListStructureComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListStructureComponent, "ava-list-structure", never, { "filteredElementList": { "alias": "filteredElementList"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, false, never>;
18
+ }
@@ -0,0 +1,34 @@
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { IElementDto, TableColumnType } from '../../model';
3
+ import { SelectingElementsType } from '../../model/selecting.model';
4
+ import { SelectElementService } from '../../services/select-element.service';
5
+ import { TreeNodeSelectionService } from '../../services/tree-node-selection.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class TableStructureComponent implements OnInit, OnDestroy {
8
+ selectElementService: SelectElementService;
9
+ private treeNodeSelectionService;
10
+ private cdr;
11
+ filteredElementList: IElementDto[];
12
+ isSelectionMode: boolean;
13
+ addTableColumns: TableColumnType[];
14
+ selectedColor: string | null;
15
+ allowDblClick: boolean;
16
+ displayedColumns: string[];
17
+ private isAllowOneClick;
18
+ selectedElement: IElementDto | null;
19
+ preselectedElement: IElementDto | null;
20
+ private timerStop;
21
+ checkedElements: {
22
+ [elementId: string]: SelectingElementsType;
23
+ };
24
+ private $destroy;
25
+ constructor(selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, cdr: ChangeDetectorRef);
26
+ ngOnInit(): void;
27
+ ngOnDestroy(): void;
28
+ select(row: IElementDto): void;
29
+ dblSelect(row: IElementDto): void;
30
+ openContextMenu(event: MouseEvent, row: IElementDto): void;
31
+ changeSelecting(element: IElementDto, event: boolean): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableStructureComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableStructureComponent, "ava-table-structure", never, { "filteredElementList": { "alias": "filteredElementList"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "addTableColumns": { "alias": "addTableColumns"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, false, never>;
34
+ }
@@ -0,0 +1,35 @@
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { IElementDto } from '../../model';
3
+ import { SelectingElementsType } from '../../model/selecting.model';
4
+ import { SelectElementService } from '../../services/select-element.service';
5
+ import { TreeNodeSelectionService } from '../../services/tree-node-selection.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class TreeItemComponent implements OnInit, OnDestroy {
8
+ selectElementService: SelectElementService;
9
+ private treeNodeSelectionService;
10
+ private cdr;
11
+ element: IElementDto;
12
+ expansionState: {
13
+ [id: string]: boolean;
14
+ };
15
+ isSelectionMode: boolean;
16
+ allowDblClick: boolean;
17
+ selectedElement: IElementDto | null;
18
+ preselectedElement: IElementDto | null;
19
+ private isAllowOneClick;
20
+ private timerStop;
21
+ private $destroy;
22
+ checkedElements: {
23
+ [elementId: string]: SelectingElementsType;
24
+ };
25
+ constructor(selectElementService: SelectElementService, treeNodeSelectionService: TreeNodeSelectionService, cdr: ChangeDetectorRef);
26
+ ngOnInit(): void;
27
+ ngOnDestroy(): void;
28
+ private expand;
29
+ select(): void;
30
+ dblSelect(): void;
31
+ openContextMenu(event: MouseEvent): void;
32
+ changeSelecting(element: IElementDto, isSelected: boolean): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<TreeItemComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreeItemComponent, "ava-tree-item", never, { "element": { "alias": "element"; "required": false; }; "expansionState": { "alias": "expansionState"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, false, never>;
35
+ }
@@ -0,0 +1,23 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { IElementDto } from '../../model';
3
+ import { SelectElementService } from '../../services/select-element.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TreeNodeComponent implements OnDestroy, OnInit {
6
+ selectElementService: SelectElementService;
7
+ elementList?: IElementDto[] | null;
8
+ indent: string;
9
+ expansionState: {
10
+ [id: string]: boolean;
11
+ };
12
+ isSelectionMode: boolean;
13
+ selectedColor: string | null;
14
+ allowDblClick: boolean;
15
+ selectedElement: IElementDto | null;
16
+ private $destroy;
17
+ constructor(selectElementService: SelectElementService);
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ expand(element: IElementDto): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<TreeNodeComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreeNodeComponent, "ava-tree-node", never, { "elementList": { "alias": "elementList"; "required": false; }; "indent": { "alias": "indent"; "required": false; }; "expansionState": { "alias": "expansionState"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, false, never>;
23
+ }
@@ -0,0 +1,14 @@
1
+ import { ServiceSpecificationDto } from '../../model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TreeStructureComponent {
4
+ serviceSpecification: ServiceSpecificationDto | null;
5
+ indent: string;
6
+ expansionState: {
7
+ [id: string]: boolean;
8
+ };
9
+ isSelectionMode: boolean;
10
+ selectedColor: string | null;
11
+ allowDblClick: boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TreeStructureComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreeStructureComponent, "ava-tree-structure", never, { "serviceSpecification": { "alias": "serviceSpecification"; "required": false; }; "indent": { "alias": "indent"; "required": false; }; "expansionState": { "alias": "expansionState"; "required": false; }; "isSelectionMode": { "alias": "isSelectionMode"; "required": false; }; "selectedColor": { "alias": "selectedColor"; "required": false; }; "allowDblClick": { "alias": "allowDblClick"; "required": false; }; }, {}, never, never, false, never>;
14
+ }
@@ -0,0 +1,2 @@
1
+ import { IElementDto } from '../model';
2
+ export declare const DEFAULT_FILTERS: ((element: IElementDto, filter: string) => boolean | undefined)[];
@@ -0,0 +1,11 @@
1
+ export interface ITextWords {
2
+ textSearch?: string;
3
+ textNothing?: string;
4
+ textNothingFiltered?: string;
5
+ textAll?: string;
6
+ tooltipAllOpen?: string;
7
+ tooltipAllClose?: string;
8
+ tooltipAllAdd?: string;
9
+ tooltipAllRemove?: string;
10
+ }
11
+ export declare const DEFAULT_TEXT_WORDS: ITextWords;
@@ -0,0 +1,3 @@
1
+ export declare const defaults: {
2
+ doubleClickTimeoutInMilliseconds: number;
3
+ };
@@ -0,0 +1,4 @@
1
+ import { DEFAULT_FILTERS } from './defaultFilters';
2
+ import { DEFAULT_TEXT_WORDS } from './defaultTextWords';
3
+ import { defaults } from './defaults';
4
+ export { DEFAULT_FILTERS, DEFAULT_TEXT_WORDS, defaults };
@@ -0,0 +1,13 @@
1
+ import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
2
+ import { FlatElementsService } from '../services/flat-elements.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SaveChangingViewDirective implements AfterViewInit {
5
+ private el;
6
+ private renderer;
7
+ private flatElementsService;
8
+ attributeValue: string;
9
+ constructor(el: ElementRef, renderer: Renderer2, flatElementsService: FlatElementsService);
10
+ ngAfterViewInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SaveChangingViewDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SaveChangingViewDirective, "[saveChangingView]", never, { "attributeValue": { "alias": "attributeValue"; "required": false; }; }, {}, never, never, false, never>;
13
+ }