ngx-edu-sharing-ui 9.1.3 → 9.1.4

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 (33) hide show
  1. package/esm2022/lib/actionbar/actionbar.component.mjs +1 -1
  2. package/esm2022/lib/index.mjs +85 -0
  3. package/esm2022/lib/node-entries/list-item-label.pipe.mjs +9 -6
  4. package/esm2022/lib/node-entries/node-entries-card/node-entries-card.component.mjs +3 -21
  5. package/esm2022/lib/node-entries/node-entries-card-grid/node-entries-card-grid.component.mjs +43 -37
  6. package/esm2022/lib/node-entries/node-entries-table/node-entries-table.component.mjs +45 -55
  7. package/esm2022/lib/services/abstract/options-helper.service.mjs +1 -1
  8. package/esm2022/lib/services/node-entries.service.mjs +26 -5
  9. package/esm2022/lib/services/node-helper.service.mjs +14 -1
  10. package/esm2022/lib/services/options-helper-data.service.mjs +3 -3
  11. package/esm2022/lib/services/search-helper.service.mjs +3 -3
  12. package/esm2022/lib/spinner/spinner.component.mjs +5 -5
  13. package/esm2022/lib/translations/translation-loader.mjs +2 -1
  14. package/esm2022/lib/types/option-item.mjs +8 -7
  15. package/esm2022/ngx-edu-sharing-ui.mjs +2 -2
  16. package/esm2022/public-api.mjs +2 -0
  17. package/fesm2022/ngx-edu-sharing-ui.mjs +287 -273
  18. package/fesm2022/ngx-edu-sharing-ui.mjs.map +1 -1
  19. package/index.d.ts +1 -1
  20. package/lib/index.d.ts +81 -0
  21. package/lib/list-items/list-widget.d.ts +1 -1
  22. package/lib/node-entries/list-item-label.pipe.d.ts +3 -1
  23. package/lib/node-entries/node-entries-card-grid/node-entries-card-grid.component.d.ts +4 -2
  24. package/lib/node-entries/node-entries-table/node-entries-table.component.d.ts +3 -1
  25. package/lib/services/abstract/options-helper.service.d.ts +1 -1
  26. package/lib/services/node-entries.service.d.ts +5 -1
  27. package/lib/services/node-helper.service.d.ts +9 -0
  28. package/lib/services/options-helper-data.service.d.ts +4 -4
  29. package/lib/types/option-item.d.ts +7 -6
  30. package/package.json +1 -1
  31. package/public-api.d.ts +1 -0
  32. package/esm2022/module.mjs +0 -85
  33. package/module.d.ts +0 -81
package/index.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  /// <amd-module name="ngx-edu-sharing-ui" />
5
- export * from './module';
5
+ export * from './public-api';
package/lib/index.d.ts ADDED
@@ -0,0 +1,81 @@
1
+ export * from './actionbar/actionbar.component';
2
+ export * from './common/edu-sharing-ui-common.module';
3
+ export * from './mds/mds.module';
4
+ export * from './directives/border-box-observer.directive';
5
+ export * from './directives/check-text-overflow.directive';
6
+ export * from './directives/drag-nodes/drag-nodes';
7
+ export * from './directives/drag-nodes/nodes-drag-source.directive';
8
+ export * from './directives/drag-nodes/nodes-drag.directive';
9
+ export * from './directives/drag-nodes/nodes-drop-target.directive';
10
+ export * from './directives/focus-state.directive';
11
+ export * from './directives/icon.directive';
12
+ export * from './directives/infinite-scroll.directive';
13
+ export * from './dropdown/dropdown.component';
14
+ export * from './edu-sharing-ui-configuration';
15
+ export * from './edu-sharing-ui.module';
16
+ export * from './list-items/format-duration.pipe';
17
+ export * from './list-items/list-base/list-base.component';
18
+ export * from './list-items/list-counts/list-counts.component';
19
+ export * from './list-items/list-items.module';
20
+ export * from './list-items/list-text/list-text.component';
21
+ export * from './list-items/node-row/node-row.component';
22
+ export * from './node-entries/combined-data-source';
23
+ export * from './node-entries/custom-templates-data-source';
24
+ export * from './node-entries/entries-model';
25
+ export * from './node-entries/items-cap';
26
+ export * from './node-entries/list-item-label.pipe';
27
+ export * from './node-entries/node-cache';
28
+ export * from './node-entries/node-data-source';
29
+ export * from './node-entries/node-data-source-remote';
30
+ export * from './node-entries/node-entries-global.service';
31
+ export * from './node-entries/node-entries-wrapper.component';
32
+ export * from './node-entries/node-entries.module';
33
+ export * from './node-url/node-url.component';
34
+ export * from './pipes/property-slug.pipe';
35
+ export * from './pipes/file-size.pipe';
36
+ export * from './pipes/format-date.pipe';
37
+ export * from './pipes/node-icon.pipe';
38
+ export * from './pipes/node-image-size.pipe';
39
+ export * from './pipes/node-image.pipe';
40
+ export * from './pipes/node-person-name.pipe';
41
+ export * from './pipes/node-title.pipe';
42
+ export * from './pipes/vcard-name.pipe';
43
+ export * from './services/abstract/app.service';
44
+ export * from './services/abstract/keyboard-shortcuts.service';
45
+ export * from './services/abstract/options-helper.service';
46
+ export * from './services/abstract/toast.service';
47
+ export * from './services/accessibility.service';
48
+ export * from './services/app-container.service';
49
+ export * from './services/local-events.service';
50
+ export * from './services/node-helper.service';
51
+ export * from './services/nodes-drag-drop.service';
52
+ export * from './services/options-helper-data.service';
53
+ export * from './services/repo-url.service';
54
+ export * from './services/temporary-storage.service';
55
+ export * from './services/ui.service';
56
+ export * from './sort-dropdown/sort-dropdown.component';
57
+ export * from './spinner/spinner.component';
58
+ export * from './translations/fallback-translation-handler';
59
+ export * from './translations/translation-loader';
60
+ export * from './translations/translations.module';
61
+ export * from './translations/translations.service';
62
+ export * from './types/api-models';
63
+ export * from './types/accessibillity';
64
+ export * from './types/drag-drop';
65
+ export * from './types/injection-tokens';
66
+ export * from './types/keyboard-shortcuts';
67
+ export * from './types/list-item';
68
+ export * from './types/option-item';
69
+ export * from './types/workflow';
70
+ export * from './util/DateHelper';
71
+ export * from './util/VCard';
72
+ export * from './util/color-helper';
73
+ export * from './util/duration-helper';
74
+ export * from './util/functions';
75
+ export * from './util/helper';
76
+ export * from './util/isNumeric';
77
+ export * from './util/rest-helper';
78
+ export * from './util/ui-animation';
79
+ export * from './util/ui-constants';
80
+ export * from './mds/mds-helper.service';
81
+ export * from './services/search-helper.service';
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  export declare class ListWidget {
8
8
  get node(): Node | ProposalNode | Group | Person | Statistics;
9
9
  set node(value: Node | ProposalNode | Group | Person | Statistics);
10
- protected readonly nodeSubject: BehaviorSubject<Node | Group | ProposalNode | Person | Statistics>;
10
+ protected readonly nodeSubject: BehaviorSubject<Node | Group | Person | ProposalNode | Statistics>;
11
11
  get item(): ListItem;
12
12
  set item(value: ListItem);
13
13
  protected readonly itemSubject: BehaviorSubject<ListItem>;
@@ -2,10 +2,12 @@ import { PipeTransform } from '@angular/core';
2
2
  import { TranslateService } from '@ngx-translate/core';
3
3
  import { Observable } from 'rxjs';
4
4
  import { ListItem } from '../types/list-item';
5
+ import { TranslationsService } from '../translations/translations.service';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class ListItemLabelPipe implements PipeTransform {
7
8
  private translate;
8
- constructor(translate: TranslateService);
9
+ private translations;
10
+ constructor(translate: TranslateService, translations: TranslationsService);
9
11
  transform(item: ListItem, args?: {
10
12
  fallback: string;
11
13
  }): Observable<string>;
@@ -14,11 +14,13 @@ import { UIService } from '../../services/ui.service';
14
14
  import { ListItemSort } from '../../types/list-item';
15
15
  import { DragData } from '../../types/drag-drop';
16
16
  import { CdkOverlayOrigin } from '@angular/cdk/overlay';
17
+ import { NodeHelperService } from '../../services/node-helper.service';
17
18
  import * as i0 from "@angular/core";
18
19
  export declare class NodeEntriesCardGridComponent<T extends Node> implements OnInit, OnDestroy {
19
20
  entriesService: NodeEntriesService<T>;
20
21
  entriesGlobalService: NodeEntriesGlobalService;
21
22
  templatesService: NodeEntriesTemplatesService;
23
+ nodeHelperService: NodeHelperService;
22
24
  ui: UIService;
23
25
  private ngZone;
24
26
  readonly NodeEntriesDisplayType: typeof NodeEntriesDisplayType;
@@ -61,7 +63,7 @@ export declare class NodeEntriesCardGridComponent<T extends Node> implements OnI
61
63
  private globalCursorStyle;
62
64
  private destroyed;
63
65
  scrollGradientColor: string;
64
- constructor(entriesService: NodeEntriesService<T>, entriesGlobalService: NodeEntriesGlobalService, templatesService: NodeEntriesTemplatesService, ui: UIService, ngZone: NgZone);
66
+ constructor(entriesService: NodeEntriesService<T>, entriesGlobalService: NodeEntriesGlobalService, templatesService: NodeEntriesTemplatesService, nodeHelperService: NodeHelperService, ui: UIService, ngZone: NgZone);
65
67
  ngOnInit(): void;
66
68
  ngOnDestroy(): void;
67
69
  private registerGridTop;
@@ -90,7 +92,7 @@ export declare class NodeEntriesCardGridComponent<T extends Node> implements OnI
90
92
  private canScroll;
91
93
  updateScrollState(): void;
92
94
  doScroll(direction: 'left' | 'right'): void;
93
- isCustomTemplate(): boolean;
95
+ isCustomTemplate(node: T): any;
94
96
  isBlocked(node: Node): boolean;
95
97
  static ɵfac: i0.ɵɵFactoryDeclaration<NodeEntriesCardGridComponent<any>, never>;
96
98
  static ɵcmp: i0.ɵɵComponentDeclaration<NodeEntriesCardGridComponent<any>, "es-node-entries-card-grid", never, { "displayType": { "alias": "displayType"; "required": false; }; }, {}, never, never, false, never>;
@@ -16,6 +16,7 @@ import { Target } from '../../types/option-item';
16
16
  import { Toast } from '../../services/abstract/toast.service';
17
17
  import { DropdownComponent } from '../../dropdown/dropdown.component';
18
18
  import { TranslationsService } from '../../translations/translations.service';
19
+ import { NodeHelperService } from '../../services/node-helper.service';
19
20
  import * as i0 from "@angular/core";
20
21
  export declare class NodeEntriesTableComponent<T extends NodeEntriesDataType> implements OnChanges, AfterViewInit, OnDestroy {
21
22
  entriesService: NodeEntriesService<T>;
@@ -23,6 +24,7 @@ export declare class NodeEntriesTableComponent<T extends NodeEntriesDataType> im
23
24
  private applicationRef;
24
25
  private toast;
25
26
  private translations;
27
+ private nodeHelperService;
26
28
  private changeDetectorRef;
27
29
  ui: UIService;
28
30
  private ngZone;
@@ -50,7 +52,7 @@ export declare class NodeEntriesTableComponent<T extends NodeEntriesDataType> im
50
52
  readonly visibleDataColumns$: rxjs.Observable<ListItem[]>;
51
53
  readonly visibleColumnNames$: rxjs.Observable<string[]>;
52
54
  private destroyed;
53
- constructor(entriesService: NodeEntriesService<T>, entriesGlobalService: NodeEntriesGlobalService, applicationRef: ApplicationRef, toast: Toast, translations: TranslationsService, changeDetectorRef: ChangeDetectorRef, ui: UIService, ngZone: NgZone, elementRef: ElementRef<HTMLElement>);
55
+ constructor(entriesService: NodeEntriesService<T>, entriesGlobalService: NodeEntriesGlobalService, applicationRef: ApplicationRef, toast: Toast, translations: TranslationsService, nodeHelperService: NodeHelperService, changeDetectorRef: ChangeDetectorRef, ui: UIService, ngZone: NgZone, elementRef: ElementRef<HTMLElement>);
54
56
  ngAfterViewInit(): void;
55
57
  ngOnChanges(changes: SimpleChanges): void;
56
58
  ngOnDestroy(): void;
@@ -3,7 +3,7 @@ import { OptionItem, Target } from '../../types/option-item';
3
3
  import { Node } from 'ngx-edu-sharing-api';
4
4
  export declare abstract class OptionsHelperService {
5
5
  abstract wrapOptionCallbacks(data: OptionData): OptionData;
6
- abstract refreshComponents(components: OptionsHelperComponents, data: OptionData, refreshListOptions: boolean): Promise<void>;
6
+ abstract refreshComponents(components: OptionsHelperComponents, data: OptionData): Promise<void>;
7
7
  abstract getAvailableOptions(target: Target, objects: Node[], components: OptionsHelperComponents, data: OptionData): Promise<OptionItem[]>;
8
8
  abstract pasteNode(components: OptionsHelperComponents, data: OptionData, addVirutalNodes: boolean, nodes: Node[]): void;
9
9
  abstract filterOptions(options: OptionItem[], target: Target, data: OptionData, objects: Node[] | any): Promise<OptionItem[]>;
@@ -7,6 +7,8 @@ import { NodeEntriesGlobalService, PaginationStrategy } from '../node-entries/no
7
7
  import { OptionItem, Scope } from '../types/option-item';
8
8
  import { ListItem } from '../types/list-item';
9
9
  import { UIService } from './ui.service';
10
+ import { DropdownComponent } from '../dropdown/dropdown.component';
11
+ import { Toast } from './abstract/toast.service';
10
12
  import * as i0 from "@angular/core";
11
13
  /**
12
14
  Custom selection model which adds the click source of the selection.
@@ -35,6 +37,7 @@ export declare class CustomSelectionModel<T> extends SelectionModel<T> {
35
37
  }
36
38
  export declare class NodeEntriesService<T extends NodeEntriesDataType> {
37
39
  private uiService;
40
+ private toast;
38
41
  private entriesGlobal;
39
42
  list: ListEventInterface<T>;
40
43
  readonly dataSource$: BehaviorSubject<NodeDataSource<T>>;
@@ -79,7 +82,7 @@ export declare class NodeEntriesService<T extends NodeEntriesDataType> {
79
82
  singleClickHint: 'dynamic' | 'static';
80
83
  disableInfiniteScroll: boolean;
81
84
  scrollGradientColor: WritableSignal<string>;
82
- constructor(uiService: UIService, entriesGlobal: NodeEntriesGlobalService);
85
+ constructor(uiService: UIService, toast: Toast, entriesGlobal: NodeEntriesGlobalService);
83
86
  onClicked({ event, ...data }: NodeClickEvent<T> & {
84
87
  event: MouseEvent;
85
88
  }): void;
@@ -89,6 +92,7 @@ export declare class NodeEntriesService<T extends NodeEntriesDataType> {
89
92
  private selectAll;
90
93
  private isAllSelected;
91
94
  private expandSelectionTo;
95
+ openDropdown(dropdown: DropdownComponent, node: T, onDone?: () => void): void;
92
96
  static ɵfac: i0.ɵɵFactoryDeclaration<NodeEntriesService<any>, never>;
93
97
  static ɵprov: i0.ɵɵInjectableDeclaration<NodeEntriesService<any>>;
94
98
  }
@@ -53,6 +53,15 @@ export declare class NodeHelperService {
53
53
  isNodeCollection(node: Node): boolean;
54
54
  getSourceIconPath(src: string): string;
55
55
  getNodeLink(mode: 'routerLink' | 'queryParams', node: Node): string | Params;
56
+ /**
57
+ * Returns true if this node is a copy of another node, just used as a publish target.
58
+ */
59
+ isNodePublishedCopy(o: Node): boolean;
60
+ /**
61
+ * returns true if this is a revoked node
62
+ * (published copy that has been revoked)
63
+ */
64
+ isNodeRevoked(node: Node): boolean;
56
65
  static ɵfac: i0.ɵɵFactoryDeclaration<NodeHelperService, [null, null, null, null, null, { optional: true; }]>;
57
66
  static ɵprov: i0.ɵɵInjectableDeclaration<NodeHelperService>;
58
67
  }
@@ -15,9 +15,9 @@ type DeleteEvent = {
15
15
  error: boolean;
16
16
  };
17
17
  export interface OptionsHelperComponents {
18
- actionbar: ActionbarComponent;
19
- dropdown: DropdownComponent;
20
- list: ListEventInterface<NodeEntriesDataType>;
18
+ actionbar?: ActionbarComponent;
19
+ dropdown?: DropdownComponent;
20
+ list?: ListEventInterface<NodeEntriesDataType>;
21
21
  }
22
22
  export interface OptionData {
23
23
  scope: Scope;
@@ -56,7 +56,7 @@ export declare class OptionsHelperDataService implements OnDestroy {
56
56
  initComponents(actionbar?: ActionbarComponent, list?: ListEventInterface<NodeEntriesDataType>, dropdown?: DropdownComponent): Promise<void>;
57
57
  getData(): OptionData;
58
58
  setData(data: OptionData): void;
59
- refreshComponents(refreshListOptions?: boolean): Promise<void>;
59
+ refreshComponents(): Promise<void>;
60
60
  getAvailableOptions(target: Target, objects?: Node[]): Promise<OptionItem[]>;
61
61
  private addVirtualObjects;
62
62
  registerGlobalKeyboardShortcuts(): void;
@@ -185,12 +185,13 @@ export declare enum ElementType {
185
185
  NodeChild = 1,
186
186
  MapRef = 2,
187
187
  NodePublishedCopy = 3,
188
- NodeBlockedImport = 4,
189
- NodeProposal = 5,
190
- Person = 6,
191
- Group = 7,
192
- SavedSearch = 8,
193
- Unknown = 9
188
+ NodeRevoked = 4,
189
+ NodeBlockedImport = 5,
190
+ NodeProposal = 6,
191
+ Person = 7,
192
+ Group = 8,
193
+ SavedSearch = 9,
194
+ Unknown = 10
194
195
  }
195
196
  export declare class OptionGroup {
196
197
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-edu-sharing-ui",
3
- "version": "9.1.3",
3
+ "version": "9.1.4",
4
4
  "license": "GNU GPL v2",
5
5
  "description": "Angular components for Edu-Sharing UX parts",
6
6
  "peerDependencies": {
@@ -0,0 +1 @@
1
+ export * from './lib/index';
@@ -1,85 +0,0 @@
1
- /*
2
- * Public API Surface of edu-sharing-ui
3
- */
4
- export * from './lib/actionbar/actionbar.component';
5
- export * from './lib/common/edu-sharing-ui-common.module';
6
- export * from './lib/mds/mds.module';
7
- export * from './lib/directives/border-box-observer.directive';
8
- export * from './lib/directives/check-text-overflow.directive';
9
- export * from './lib/directives/drag-nodes/drag-nodes';
10
- export * from './lib/directives/drag-nodes/nodes-drag-source.directive';
11
- export * from './lib/directives/drag-nodes/nodes-drag.directive';
12
- export * from './lib/directives/drag-nodes/nodes-drop-target.directive';
13
- export * from './lib/directives/focus-state.directive';
14
- export * from './lib/directives/icon.directive';
15
- export * from './lib/directives/infinite-scroll.directive';
16
- export * from './lib/dropdown/dropdown.component';
17
- export * from './lib/edu-sharing-ui-configuration';
18
- export * from './lib/edu-sharing-ui.module';
19
- export * from './lib/list-items/format-duration.pipe';
20
- export * from './lib/list-items/list-base/list-base.component';
21
- export * from './lib/list-items/list-counts/list-counts.component';
22
- export * from './lib/list-items/list-items.module';
23
- export * from './lib/list-items/list-text/list-text.component';
24
- export * from './lib/list-items/node-row/node-row.component';
25
- export * from './lib/node-entries/combined-data-source';
26
- export * from './lib/node-entries/custom-templates-data-source';
27
- export * from './lib/node-entries/entries-model';
28
- export * from './lib/node-entries/items-cap';
29
- export * from './lib/node-entries/list-item-label.pipe';
30
- export * from './lib/node-entries/node-cache';
31
- export * from './lib/node-entries/node-data-source';
32
- export * from './lib/node-entries/node-data-source-remote';
33
- export * from './lib/node-entries/node-entries-global.service';
34
- export * from './lib/node-entries/node-entries-wrapper.component';
35
- export * from './lib/node-entries/node-entries.module';
36
- export * from './lib/node-url/node-url.component';
37
- export * from './lib/pipes/property-slug.pipe';
38
- export * from './lib/pipes/file-size.pipe';
39
- export * from './lib/pipes/format-date.pipe';
40
- export * from './lib/pipes/node-icon.pipe';
41
- export * from './lib/pipes/node-image-size.pipe';
42
- export * from './lib/pipes/node-image.pipe';
43
- export * from './lib/pipes/node-person-name.pipe';
44
- export * from './lib/pipes/node-title.pipe';
45
- export * from './lib/pipes/vcard-name.pipe';
46
- export * from './lib/services/abstract/app.service';
47
- export * from './lib/services/abstract/keyboard-shortcuts.service';
48
- export * from './lib/services/abstract/options-helper.service';
49
- export * from './lib/services/abstract/toast.service';
50
- export * from './lib/services/accessibility.service';
51
- export * from './lib/services/app-container.service';
52
- export * from './lib/services/local-events.service';
53
- export * from './lib/services/node-helper.service';
54
- export * from './lib/services/nodes-drag-drop.service';
55
- export * from './lib/services/options-helper-data.service';
56
- export * from './lib/services/repo-url.service';
57
- export * from './lib/services/temporary-storage.service';
58
- export * from './lib/services/ui.service';
59
- export * from './lib/sort-dropdown/sort-dropdown.component';
60
- export * from './lib/spinner/spinner.component';
61
- export * from './lib/translations/fallback-translation-handler';
62
- export * from './lib/translations/translation-loader';
63
- export * from './lib/translations/translations.module';
64
- export * from './lib/translations/translations.service';
65
- export * from './lib/types/api-models';
66
- export * from './lib/types/accessibillity';
67
- export * from './lib/types/drag-drop';
68
- export * from './lib/types/injection-tokens';
69
- export * from './lib/types/keyboard-shortcuts';
70
- export * from './lib/types/list-item';
71
- export * from './lib/types/option-item';
72
- export * from './lib/types/workflow';
73
- export * from './lib/util/DateHelper';
74
- export * from './lib/util/VCard';
75
- export * from './lib/util/color-helper';
76
- export * from './lib/util/duration-helper';
77
- export * from './lib/util/functions';
78
- export * from './lib/util/helper';
79
- export * from './lib/util/isNumeric';
80
- export * from './lib/util/rest-helper';
81
- export * from './lib/util/ui-animation';
82
- export * from './lib/util/ui-constants';
83
- export * from './lib/mds/mds-helper.service';
84
- export * from './lib/services/search-helper.service';
85
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvZWR1LXNoYXJpbmctdWkvc3JjL21vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsZ0RBQWdELENBQUM7QUFDL0QsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLHdDQUF3QyxDQUFDO0FBQ3ZELGNBQWMseURBQXlELENBQUM7QUFDeEUsY0FBYyxrREFBa0QsQ0FBQztBQUNqRSxjQUFjLHlEQUF5RCxDQUFDO0FBQ3hFLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLDRDQUE0QyxDQUFDO0FBQzNELGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLG9EQUFvRCxDQUFDO0FBQ25FLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyxpREFBaUQsQ0FBQztBQUNoRSxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyx5Q0FBeUMsQ0FBQztBQUN4RCxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyw0Q0FBNEMsQ0FBQztBQUMzRCxjQUFjLGdEQUFnRCxDQUFDO0FBQy9ELGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYyx3Q0FBd0MsQ0FBQztBQUN2RCxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyxvREFBb0QsQ0FBQztBQUNuRSxjQUFjLGdEQUFnRCxDQUFDO0FBQy9ELGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLHdDQUF3QyxDQUFDO0FBQ3ZELGNBQWMsNENBQTRDLENBQUM7QUFDM0QsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsaURBQWlELENBQUM7QUFDaEUsY0FBYyx1Q0FBdUMsQ0FBQztBQUN0RCxjQUFjLHdDQUF3QyxDQUFDO0FBQ3ZELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLHNDQUFzQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBlZHUtc2hhcmluZy11aVxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL2FjdGlvbmJhci9hY3Rpb25iYXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbW1vbi9lZHUtc2hhcmluZy11aS1jb21tb24ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL21kcy9tZHMubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvYm9yZGVyLWJveC1vYnNlcnZlci5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9jaGVjay10ZXh0LW92ZXJmbG93LmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2RyYWctbm9kZXMvZHJhZy1ub2Rlcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2RyYWctbm9kZXMvbm9kZXMtZHJhZy1zb3VyY2UuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvZHJhZy1ub2Rlcy9ub2Rlcy1kcmFnLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2RyYWctbm9kZXMvbm9kZXMtZHJvcC10YXJnZXQuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvZm9jdXMtc3RhdGUuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvaWNvbi5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9pbmZpbml0ZS1zY3JvbGwuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Ryb3Bkb3duL2Ryb3Bkb3duLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9lZHUtc2hhcmluZy11aS1jb25maWd1cmF0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2VkdS1zaGFyaW5nLXVpLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9saXN0LWl0ZW1zL2Zvcm1hdC1kdXJhdGlvbi5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2xpc3QtaXRlbXMvbGlzdC1iYXNlL2xpc3QtYmFzZS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGlzdC1pdGVtcy9saXN0LWNvdW50cy9saXN0LWNvdW50cy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGlzdC1pdGVtcy9saXN0LWl0ZW1zLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9saXN0LWl0ZW1zL2xpc3QtdGV4dC9saXN0LXRleHQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2xpc3QtaXRlbXMvbm9kZS1yb3cvbm9kZS1yb3cuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL25vZGUtZW50cmllcy9jb21iaW5lZC1kYXRhLXNvdXJjZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvY3VzdG9tLXRlbXBsYXRlcy1kYXRhLXNvdXJjZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvZW50cmllcy1tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvaXRlbXMtY2FwJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL25vZGUtZW50cmllcy9saXN0LWl0ZW0tbGFiZWwucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvbm9kZS1jYWNoZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvbm9kZS1kYXRhLXNvdXJjZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvbm9kZS1kYXRhLXNvdXJjZS1yZW1vdGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbm9kZS1lbnRyaWVzL25vZGUtZW50cmllcy1nbG9iYWwuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub2RlLWVudHJpZXMvbm9kZS1lbnRyaWVzLXdyYXBwZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL25vZGUtZW50cmllcy9ub2RlLWVudHJpZXMubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL25vZGUtdXJsL25vZGUtdXJsLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9wcm9wZXJ0eS1zbHVnLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcGlwZXMvZmlsZS1zaXplLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcGlwZXMvZm9ybWF0LWRhdGUucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9ub2RlLWljb24ucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9ub2RlLWltYWdlLXNpemUucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9ub2RlLWltYWdlLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcGlwZXMvbm9kZS1wZXJzb24tbmFtZS5waXBlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3BpcGVzL25vZGUtdGl0bGUucGlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy92Y2FyZC1uYW1lLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvYWJzdHJhY3QvYXBwLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvYWJzdHJhY3Qva2V5Ym9hcmQtc2hvcnRjdXRzLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvYWJzdHJhY3Qvb3B0aW9ucy1oZWxwZXIuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy9hYnN0cmFjdC90b2FzdC5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzL2FjY2Vzc2liaWxpdHkuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy9hcHAtY29udGFpbmVyLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvbG9jYWwtZXZlbnRzLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvbm9kZS1oZWxwZXIuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy9ub2Rlcy1kcmFnLWRyb3Auc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy9vcHRpb25zLWhlbHBlci1kYXRhLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvcmVwby11cmwuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy90ZW1wb3Jhcnktc3RvcmFnZS5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzL3VpLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc29ydC1kcm9wZG93bi9zb3J0LWRyb3Bkb3duLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zcGlubmVyL3NwaW5uZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3RyYW5zbGF0aW9ucy9mYWxsYmFjay10cmFuc2xhdGlvbi1oYW5kbGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3RyYW5zbGF0aW9ucy90cmFuc2xhdGlvbi1sb2FkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdHJhbnNsYXRpb25zL3RyYW5zbGF0aW9ucy5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdHJhbnNsYXRpb25zL3RyYW5zbGF0aW9ucy5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3R5cGVzL2FwaS1tb2RlbHMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdHlwZXMvYWNjZXNzaWJpbGxpdHknO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdHlwZXMvZHJhZy1kcm9wJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3R5cGVzL2luamVjdGlvbi10b2tlbnMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdHlwZXMva2V5Ym9hcmQtc2hvcnRjdXRzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3R5cGVzL2xpc3QtaXRlbSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi90eXBlcy9vcHRpb24taXRlbSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi90eXBlcy93b3JrZmxvdyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL0RhdGVIZWxwZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbC9WQ2FyZCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL2NvbG9yLWhlbHBlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL2R1cmF0aW9uLWhlbHBlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL2Z1bmN0aW9ucyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL2hlbHBlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL2lzTnVtZXJpYyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlsL3Jlc3QtaGVscGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWwvdWktYW5pbWF0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWwvdWktY29uc3RhbnRzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL21kcy9tZHMtaGVscGVyLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvc2VhcmNoLWhlbHBlci5zZXJ2aWNlJztcbiJdfQ==
package/module.d.ts DELETED
@@ -1,81 +0,0 @@
1
- export * from './lib/actionbar/actionbar.component';
2
- export * from './lib/common/edu-sharing-ui-common.module';
3
- export * from './lib/mds/mds.module';
4
- export * from './lib/directives/border-box-observer.directive';
5
- export * from './lib/directives/check-text-overflow.directive';
6
- export * from './lib/directives/drag-nodes/drag-nodes';
7
- export * from './lib/directives/drag-nodes/nodes-drag-source.directive';
8
- export * from './lib/directives/drag-nodes/nodes-drag.directive';
9
- export * from './lib/directives/drag-nodes/nodes-drop-target.directive';
10
- export * from './lib/directives/focus-state.directive';
11
- export * from './lib/directives/icon.directive';
12
- export * from './lib/directives/infinite-scroll.directive';
13
- export * from './lib/dropdown/dropdown.component';
14
- export * from './lib/edu-sharing-ui-configuration';
15
- export * from './lib/edu-sharing-ui.module';
16
- export * from './lib/list-items/format-duration.pipe';
17
- export * from './lib/list-items/list-base/list-base.component';
18
- export * from './lib/list-items/list-counts/list-counts.component';
19
- export * from './lib/list-items/list-items.module';
20
- export * from './lib/list-items/list-text/list-text.component';
21
- export * from './lib/list-items/node-row/node-row.component';
22
- export * from './lib/node-entries/combined-data-source';
23
- export * from './lib/node-entries/custom-templates-data-source';
24
- export * from './lib/node-entries/entries-model';
25
- export * from './lib/node-entries/items-cap';
26
- export * from './lib/node-entries/list-item-label.pipe';
27
- export * from './lib/node-entries/node-cache';
28
- export * from './lib/node-entries/node-data-source';
29
- export * from './lib/node-entries/node-data-source-remote';
30
- export * from './lib/node-entries/node-entries-global.service';
31
- export * from './lib/node-entries/node-entries-wrapper.component';
32
- export * from './lib/node-entries/node-entries.module';
33
- export * from './lib/node-url/node-url.component';
34
- export * from './lib/pipes/property-slug.pipe';
35
- export * from './lib/pipes/file-size.pipe';
36
- export * from './lib/pipes/format-date.pipe';
37
- export * from './lib/pipes/node-icon.pipe';
38
- export * from './lib/pipes/node-image-size.pipe';
39
- export * from './lib/pipes/node-image.pipe';
40
- export * from './lib/pipes/node-person-name.pipe';
41
- export * from './lib/pipes/node-title.pipe';
42
- export * from './lib/pipes/vcard-name.pipe';
43
- export * from './lib/services/abstract/app.service';
44
- export * from './lib/services/abstract/keyboard-shortcuts.service';
45
- export * from './lib/services/abstract/options-helper.service';
46
- export * from './lib/services/abstract/toast.service';
47
- export * from './lib/services/accessibility.service';
48
- export * from './lib/services/app-container.service';
49
- export * from './lib/services/local-events.service';
50
- export * from './lib/services/node-helper.service';
51
- export * from './lib/services/nodes-drag-drop.service';
52
- export * from './lib/services/options-helper-data.service';
53
- export * from './lib/services/repo-url.service';
54
- export * from './lib/services/temporary-storage.service';
55
- export * from './lib/services/ui.service';
56
- export * from './lib/sort-dropdown/sort-dropdown.component';
57
- export * from './lib/spinner/spinner.component';
58
- export * from './lib/translations/fallback-translation-handler';
59
- export * from './lib/translations/translation-loader';
60
- export * from './lib/translations/translations.module';
61
- export * from './lib/translations/translations.service';
62
- export * from './lib/types/api-models';
63
- export * from './lib/types/accessibillity';
64
- export * from './lib/types/drag-drop';
65
- export * from './lib/types/injection-tokens';
66
- export * from './lib/types/keyboard-shortcuts';
67
- export * from './lib/types/list-item';
68
- export * from './lib/types/option-item';
69
- export * from './lib/types/workflow';
70
- export * from './lib/util/DateHelper';
71
- export * from './lib/util/VCard';
72
- export * from './lib/util/color-helper';
73
- export * from './lib/util/duration-helper';
74
- export * from './lib/util/functions';
75
- export * from './lib/util/helper';
76
- export * from './lib/util/isNumeric';
77
- export * from './lib/util/rest-helper';
78
- export * from './lib/util/ui-animation';
79
- export * from './lib/util/ui-constants';
80
- export * from './lib/mds/mds-helper.service';
81
- export * from './lib/services/search-helper.service';