@dereekb/dbx-web 2.0.0 → 2.1.0

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.
@@ -10,6 +10,7 @@ export declare abstract class AbstractDialogDirective<R = any, D = any, T = any>
10
10
  readonly dialogRef: MatDialogRef<T, R>;
11
11
  constructor(data: D, dialogRef: MatDialogRef<T, R>, dbNgxRouterTransitionService: DbxRouterTransitionService, ngZone: NgZone);
12
12
  protected updateForSuccessfulTransition(): void;
13
+ returnValue(value?: R): void;
13
14
  close(value?: R): void;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDialogDirective<any, any, any>, [{ optional: true; }, null, null, null]>;
15
16
  static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDialogDirective<any, any, any>, never, never, {}, {}, never>;
@@ -0,0 +1,21 @@
1
+ import { Observable } from 'rxjs';
2
+ import { OnInit, OnDestroy, ElementRef } from '@angular/core';
3
+ import { DbxActionContextStoreSourceInstance, AbstractDbxActionValueOnTriggerDirective } from '@dereekb/dbx-core';
4
+ import { IsModifiedFunction } from '@dereekb/rxjs';
5
+ import { Maybe } from '@dereekb/util';
6
+ import { MatDialogRef } from '@angular/material/dialog';
7
+ import * as i0 from "@angular/core";
8
+ export declare type DbxActionDialogFunction<T = any> = () => MatDialogRef<any, Maybe<T>>;
9
+ /**
10
+ * Action directive that is used to trigger/display a dialog, then watches that dialog for a value.
11
+ */
12
+ export declare class DbxActionDialogDirective<T = any> extends AbstractDbxActionValueOnTriggerDirective<T> implements OnInit, OnDestroy {
13
+ readonly elementRef: ElementRef;
14
+ fn?: DbxActionDialogFunction<T>;
15
+ set dbxActionDialogModified(isModifiedFunction: Maybe<IsModifiedFunction>);
16
+ constructor(elementRef: ElementRef, source: DbxActionContextStoreSourceInstance<T, any>);
17
+ protected _getDataFromDialog(): Observable<Maybe<T>>;
18
+ protected _makeDialogRef(): MatDialogRef<any, Maybe<T>>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionDialogDirective<any>, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionDialogDirective<any>, "[dbxActionDialog]", ["dbxActionDialog"], { "fn": "dbxActionDialog"; "dbxActionDialogModified": "dbxActionDialogModified"; }, {}, never>;
21
+ }
@@ -1,12 +1,13 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./dialog.content.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../layout/style/style.layout.module";
3
+ import * as i2 from "./dialog.action.directive";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../../layout/style/style.layout.module";
5
6
  /**
6
7
  * Module for block components.
7
8
  */
8
9
  export declare class DbxDialogInteractionModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxDialogInteractionModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<DbxDialogInteractionModule, [typeof i1.DbxDialogContentDirective], [typeof i2.CommonModule, typeof i3.DbxStyleLayoutModule], [typeof i1.DbxDialogContentDirective]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbxDialogInteractionModule, [typeof i1.DbxDialogContentDirective, typeof i2.DbxActionDialogDirective], [typeof i3.CommonModule, typeof i4.DbxStyleLayoutModule], [typeof i1.DbxDialogContentDirective, typeof i2.DbxActionDialogDirective]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<DbxDialogInteractionModule>;
12
13
  }
@@ -1,3 +1,4 @@
1
1
  export * from './abstract.dialog.directive';
2
2
  export * from './dialog.content.component';
3
+ export * from './dialog.action.directive';
3
4
  export * from './dialog.module';
@@ -1,6 +1,5 @@
1
1
  export * from './abstract.popover.directive';
2
2
  export * from './abstract.popover.ref.directive';
3
- export * from './popover.action.button.directive';
4
3
  export * from './popover.action.directive';
5
4
  export * from './popover.component';
6
5
  export * from './popover.content.component';
@@ -1,33 +1,24 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { OnInit, OnDestroy, ElementRef } from '@angular/core';
3
- import { NgPopoverCloseEvent, NgPopoverRef } from 'ng-overlay-container';
4
- import { AbstractPopoverRefWithEventsDirective } from './abstract.popover.ref.directive';
5
- import { DbxActionContextStoreSourceInstance } from '@dereekb/dbx-core';
3
+ import { NgPopoverRef } from 'ng-overlay-container';
4
+ import { DbxActionContextStoreSourceInstance, AbstractDbxActionValueOnTriggerDirective } from '@dereekb/dbx-core';
5
+ import { IsModifiedFunction } from '@dereekb/rxjs';
6
+ import { Maybe } from '@dereekb/util';
6
7
  import * as i0 from "@angular/core";
7
- export interface DbxPopoverActionFnParam {
8
+ export interface DbxActionPopoverFunctionParams {
8
9
  origin: ElementRef;
9
10
  }
10
- export declare type DbxPopoverActionFn<T = object> = (params: DbxPopoverActionFnParam) => NgPopoverRef<any, T>;
11
- export declare type DbxPopoverActionModifiedFn<T = any> = (value: T) => Observable<boolean>;
11
+ export declare type DbxActionPopoverFunction<T = any> = (params: DbxActionPopoverFunctionParams) => NgPopoverRef<any, Maybe<T>>;
12
12
  /**
13
- * Action directive that is used to trigger/display a popover,
14
- * then watches that popover for a value.
15
- *
16
- * The value is passed to the isModified function (ifProvided), and if that returns true it will
13
+ * Action directive that is used to trigger/display a popover, then watches that popover for a value.
17
14
  */
18
- export declare class DbxPopoverActionDirective<T = object> extends AbstractPopoverRefWithEventsDirective<any, T> implements OnInit, OnDestroy {
15
+ export declare class DbxActionPopoverDirective<T = any> extends AbstractDbxActionValueOnTriggerDirective<T> implements OnInit, OnDestroy {
19
16
  readonly elementRef: ElementRef;
20
- readonly source: DbxActionContextStoreSourceInstance<T, any>;
21
- fn?: DbxPopoverActionFn<T>;
22
- appPopoverActionModified?: DbxPopoverActionModifiedFn<T>;
23
- private _popoverValue;
24
- private _triggeredSub;
25
- private _isModifiedSub;
17
+ fn?: DbxActionPopoverFunction<T>;
18
+ set dbxActionPopoverModified(isModifiedFunction: Maybe<IsModifiedFunction>);
26
19
  constructor(elementRef: ElementRef, source: DbxActionContextStoreSourceInstance<T, any>);
27
- ngOnInit(): void;
28
- ngOnDestroy(): void;
29
- protected _makePopoverRef(): NgPopoverRef<any, T>;
30
- protected _afterClosed(event: NgPopoverCloseEvent<T>): void;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopoverActionDirective<any>, never>;
32
- static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPopoverActionDirective<any>, "[dbxPopoverAction]", ["popoverAction"], { "fn": "dbxPopoverAction"; "appPopoverActionModified": "appPopoverActionModified"; }, {}, never>;
20
+ protected _getDataFromPopover(): Observable<Maybe<T>>;
21
+ protected _makePopoverRef(): NgPopoverRef<any, Maybe<T>>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionPopoverDirective<any>, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionPopoverDirective<any>, "[dbxActionPopover]", ["dbxActionPopover"], { "fn": "dbxActionPopover"; "dbxActionPopoverModified": "dbxActionPopoverModified"; }, {}, never>;
33
24
  }
@@ -1,28 +1,27 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- import * as i1 from "./popover.action.button.directive";
4
- import * as i2 from "./popover.action.directive";
5
- import * as i3 from "./popover.component";
6
- import * as i4 from "./popover.coordinator.component";
7
- import * as i5 from "./popover.content.component";
8
- import * as i6 from "./popover.controls.directive";
9
- import * as i7 from "./popover.header.component";
10
- import * as i8 from "./popover.scroll.content.component";
11
- import * as i9 from "@angular/common";
12
- import * as i10 from "@angular/material/icon";
13
- import * as i11 from "@angular/material/button";
14
- import * as i12 from "@angular/material/divider";
15
- import * as i13 from "../../button/button.module";
16
- import * as i14 from "../../router/layout/anchor/anchor.module";
17
- import * as i15 from "../../action/action.module";
18
- import * as i16 from "../../keypress/keypress.module";
19
- import * as i17 from "../../layout/style/style.layout.module";
20
- import * as i18 from "@dereekb/dbx-core";
21
- import * as i19 from "ng-overlay-container";
22
- import * as i20 from "angular-resize-event";
3
+ import * as i1 from "./popover.action.directive";
4
+ import * as i2 from "./popover.component";
5
+ import * as i3 from "./popover.coordinator.component";
6
+ import * as i4 from "./popover.content.component";
7
+ import * as i5 from "./popover.controls.directive";
8
+ import * as i6 from "./popover.header.component";
9
+ import * as i7 from "./popover.scroll.content.component";
10
+ import * as i8 from "@angular/common";
11
+ import * as i9 from "@angular/material/icon";
12
+ import * as i10 from "@angular/material/button";
13
+ import * as i11 from "@angular/material/divider";
14
+ import * as i12 from "../../button/button.module";
15
+ import * as i13 from "../../router/layout/anchor/anchor.module";
16
+ import * as i14 from "../../action/action.module";
17
+ import * as i15 from "../../keypress/keypress.module";
18
+ import * as i16 from "../../layout/style/style.layout.module";
19
+ import * as i17 from "@dereekb/dbx-core";
20
+ import * as i18 from "ng-overlay-container";
21
+ import * as i19 from "angular-resize-event";
23
22
  export declare class DbxPopoverInteractionModule {
24
23
  static forRoot(): ModuleWithProviders<DbxPopoverInteractionModule>;
25
24
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopoverInteractionModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPopoverInteractionModule, [typeof i1.DbxPopoverActionButtonDirective, typeof i2.DbxPopoverActionDirective, typeof i3.DbxPopoverComponent, typeof i4.DbxPopoverCoordinatorComponent, typeof i5.DbxPopoverContentComponent, typeof i6.DbxPopoverControlsDirective, typeof i7.DbxPopoverHeaderComponent, typeof i8.DbxPopoverScrollContentComponent], [typeof i9.CommonModule, typeof i10.MatIconModule, typeof i11.MatButtonModule, typeof i12.MatDividerModule, typeof i13.DbxButtonModule, typeof i14.DbxAnchorModule, typeof i15.DbxActionModule, typeof i16.DbxKeypressModule, typeof i17.DbxStyleLayoutModule, typeof i18.DbxInjectedComponentModule, typeof i19.NgOverlayContainerModule, typeof i20.AngularResizeEventModule], [typeof i1.DbxPopoverActionButtonDirective, typeof i2.DbxPopoverActionDirective, typeof i5.DbxPopoverContentComponent, typeof i6.DbxPopoverControlsDirective, typeof i7.DbxPopoverHeaderComponent, typeof i8.DbxPopoverScrollContentComponent]>;
25
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPopoverInteractionModule, [typeof i1.DbxActionPopoverDirective, typeof i2.DbxPopoverComponent, typeof i3.DbxPopoverCoordinatorComponent, typeof i4.DbxPopoverContentComponent, typeof i5.DbxPopoverControlsDirective, typeof i6.DbxPopoverHeaderComponent, typeof i7.DbxPopoverScrollContentComponent], [typeof i8.CommonModule, typeof i9.MatIconModule, typeof i10.MatButtonModule, typeof i11.MatDividerModule, typeof i12.DbxButtonModule, typeof i13.DbxAnchorModule, typeof i14.DbxActionModule, typeof i15.DbxKeypressModule, typeof i16.DbxStyleLayoutModule, typeof i17.DbxInjectedComponentModule, typeof i18.NgOverlayContainerModule, typeof i19.AngularResizeEventModule], [typeof i1.DbxActionPopoverDirective, typeof i4.DbxPopoverContentComponent, typeof i5.DbxPopoverControlsDirective, typeof i6.DbxPopoverHeaderComponent, typeof i7.DbxPopoverScrollContentComponent]>;
27
26
  static ɵinj: i0.ɵɵInjectorDeclaration<DbxPopoverInteractionModule>;
28
27
  }
@@ -26,6 +26,11 @@
26
26
  cursor: pointer;
27
27
  }
28
28
 
29
+ .dbx-anchor-content {
30
+ display: flex;
31
+ align-items: center;
32
+ }
33
+
29
34
  }
30
35
 
31
36
  @mixin color($theme-config) {}
@@ -1,11 +1,22 @@
1
+ import { Observable } from 'rxjs';
2
+ import { OnDestroy } from '@angular/core';
1
3
  import { ClickableAnchorLink } from '@dereekb/dbx-core';
2
4
  import { Maybe } from '@dereekb/util';
5
+ import { DbxAnchorComponent } from './anchor.component';
3
6
  import * as i0 from "@angular/core";
4
7
  /**
5
8
  * Component that displays an anchor and a span with the title.
6
9
  */
7
- export declare class DbxAnchorContentComponent {
8
- anchor: Maybe<Partial<ClickableAnchorLink>>;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<DbxAnchorContentComponent, never>;
10
+ export declare class DbxAnchorContentComponent implements OnDestroy {
11
+ readonly parent?: DbxAnchorComponent | undefined;
12
+ private readonly _parentAnchor;
13
+ private _inputAnchor;
14
+ readonly anchor$: Observable<Maybe<Partial<ClickableAnchorLink>>>;
15
+ readonly icon$: Observable<string | undefined>;
16
+ readonly title$: Observable<string | undefined>;
17
+ set anchor(anchor: Maybe<Partial<ClickableAnchorLink>>);
18
+ constructor(parent?: DbxAnchorComponent | undefined);
19
+ ngOnDestroy(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxAnchorContentComponent, [{ optional: true; }]>;
10
21
  static ɵcmp: i0.ɵɵComponentDeclaration<DbxAnchorContentComponent, "dbx-anchor-content", never, { "anchor": "anchor"; }, {}, never, never>;
11
22
  }
package/package.json CHANGED
@@ -1,48 +1,21 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-web",
3
- "version": "2.0.0",
4
- "dependencies": {
5
- "tslib": "^2.3.0"
6
- },
7
- "module": "fesm2015/dereekb-dbx-web.mjs",
8
- "es2020": "fesm2020/dereekb-dbx-web.mjs",
9
- "esm2020": "esm2020/dereekb-dbx-web.mjs",
10
- "fesm2020": "fesm2020/dereekb-dbx-web.mjs",
11
- "fesm2015": "fesm2015/dereekb-dbx-web.mjs",
12
- "typings": "dereekb-dbx-web.d.ts",
13
- "exports": {
14
- "./package.json": {
15
- "default": "./package.json"
16
- },
17
- ".": {
18
- "types": "./dereekb-dbx-web.d.ts",
19
- "esm2020": "./esm2020/dereekb-dbx-web.mjs",
20
- "es2020": "./fesm2020/dereekb-dbx-web.mjs",
21
- "es2015": "./fesm2015/dereekb-dbx-web.mjs",
22
- "node": "./fesm2015/dereekb-dbx-web.mjs",
23
- "default": "./fesm2020/dereekb-dbx-web.mjs"
24
- }
25
- },
26
- "sideEffects": false,
3
+ "version": "2.1.0",
27
4
  "peerDependencies": {
5
+ "@angular/common": "^13.0.0",
28
6
  "@angular/core": "^13.0.0",
29
7
  "@angular/material": "^13.0.0",
30
- "@dereekb/rxjs": "2.0.0",
31
- "rxjs": "^7.5.2",
32
- "@dereekb/util": "2.0.0",
8
+ "@dereekb/rxjs": "2.1.0",
9
+ "rxjs": "^7.0.0",
10
+ "@dereekb/util": "2.1.0",
33
11
  "extra-set": "^2.2.11",
34
12
  "make-error": "^1.3.0",
35
13
  "ms": "^3.0.0-canary.1",
36
- "@dereekb/dbx-core": "2.0.0",
37
- "@angular/common": "^13.0.0",
14
+ "@dereekb/dbx-core": "2.1.0",
38
15
  "@ngrx/component-store": "^13.0.2",
39
- "@ngrx/data": "^13.0.2",
40
- "@ngrx/effects": "^13.0.2",
41
- "@ngrx/entity": "^13.0.2",
42
- "@ngrx/store": "^13.0.2",
43
16
  "@angular/platform-browser": "^13.0.0",
44
17
  "date-fns": "^2.28.0",
45
- "@dereekb/date": "2.0.0",
18
+ "@dereekb/date": "2.1.0",
46
19
  "class-transformer": "^0.5.1",
47
20
  "class-validator": "^0.13.2",
48
21
  "date-fns-tz": "^1.2.2",
@@ -51,11 +24,36 @@
51
24
  "@uirouter/core": "^6.0.8",
52
25
  "@uirouter/angular": "^9.1.0",
53
26
  "mat-progress-buttons": "git+https://git@github.com/dereekb/mat-progress-buttons.git#60b0374a45644e8756f20b8d761738151ca3df64",
27
+ "@ngrx/store": "^13.0.2",
54
28
  "@angular/flex-layout": "^13.0.0-beta.38",
55
29
  "ng-overlay-container": "^13.0.0",
56
30
  "@angular/cdk": "^13.0.0",
57
31
  "angular-resize-event": "^3.1.1",
58
32
  "ngx-infinite-scroll": "^10.0.1",
59
33
  "linkify-string": "4.0.0-beta.3"
60
- }
34
+ },
35
+ "dependencies": {
36
+ "tslib": "^2.3.0"
37
+ },
38
+ "exports": {
39
+ ".": {
40
+ "sass": "./_index.scss",
41
+ "types": "./dereekb-dbx-web.d.ts",
42
+ "esm2020": "./esm2020/dereekb-dbx-web.mjs",
43
+ "es2020": "./fesm2020/dereekb-dbx-web.mjs",
44
+ "es2015": "./fesm2015/dereekb-dbx-web.mjs",
45
+ "node": "./fesm2015/dereekb-dbx-web.mjs",
46
+ "default": "./fesm2020/dereekb-dbx-web.mjs"
47
+ },
48
+ "./package.json": {
49
+ "default": "./package.json"
50
+ }
51
+ },
52
+ "module": "fesm2015/dereekb-dbx-web.mjs",
53
+ "es2020": "fesm2020/dereekb-dbx-web.mjs",
54
+ "esm2020": "esm2020/dereekb-dbx-web.mjs",
55
+ "fesm2020": "fesm2020/dereekb-dbx-web.mjs",
56
+ "fesm2015": "fesm2015/dereekb-dbx-web.mjs",
57
+ "typings": "dereekb-dbx-web.d.ts",
58
+ "sideEffects": false
61
59
  }
@@ -1,29 +0,0 @@
1
- import { Directive, Host, ChangeDetectorRef } from '@angular/core';
2
- import { DbxButtonDirective, DbxActionButtonDirective, DbxActionContextStoreSourceInstance } from '@dereekb/dbx-core';
3
- import { DbxPopoverActionDirective } from './popover.action.directive';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@dereekb/dbx-core";
6
- import * as i2 from "./popover.action.directive";
7
- /**
8
- * Action directive that is used to link an DbxButton to an DbxPopoverActionDirective.
9
- */
10
- export class DbxPopoverActionButtonDirective extends DbxActionButtonDirective {
11
- constructor(button, source, cdRef, appPopoverActionDirective) {
12
- super(button, source, cdRef);
13
- this.appPopoverActionDirective = appPopoverActionDirective;
14
- }
15
- _buttonClicked() {
16
- this.appPopoverActionDirective.showPopover();
17
- }
18
- }
19
- DbxPopoverActionButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.4", ngImport: i0, type: DbxPopoverActionButtonDirective, deps: [{ token: i1.DbxButtonDirective, host: true }, { token: i1.DbxActionContextStoreSourceInstance }, { token: i0.ChangeDetectorRef }, { token: i2.DbxPopoverActionDirective }], target: i0.ɵɵFactoryTarget.Directive });
20
- DbxPopoverActionButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.4", type: DbxPopoverActionButtonDirective, selector: "[dbxPopoverActionButton]", usesInheritance: true, ngImport: i0 });
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.4", ngImport: i0, type: DbxPopoverActionButtonDirective, decorators: [{
22
- type: Directive,
23
- args: [{
24
- selector: '[dbxPopoverActionButton]'
25
- }]
26
- }], ctorParameters: function () { return [{ type: i1.DbxButtonDirective, decorators: [{
27
- type: Host
28
- }] }, { type: i1.DbxActionContextStoreSourceInstance }, { type: i0.ChangeDetectorRef }, { type: i2.DbxPopoverActionDirective }]; } });
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci5hY3Rpb24uYnV0dG9uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2RieC13ZWIvc3JjL2xpYi9pbnRlcmFjdGlvbi9wb3BvdmVyL3BvcG92ZXIuYWN0aW9uLmJ1dHRvbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQVUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLGtCQUFrQixFQUFFLHdCQUF3QixFQUFFLG1DQUFtQyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDdEgsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sNEJBQTRCLENBQUM7Ozs7QUFFdkU7O0dBRUc7QUFJSCxNQUFNLE9BQU8sK0JBQWdDLFNBQVEsd0JBQXdCO0lBRTNFLFlBQ1UsTUFBMEIsRUFDbEMsTUFBMkMsRUFDM0MsS0FBd0IsRUFDZix5QkFBb0Q7UUFDN0QsS0FBSyxDQUFDLE1BQU0sRUFBRSxNQUFNLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFEcEIsOEJBQXlCLEdBQXpCLHlCQUF5QixDQUEyQjtJQUUvRCxDQUFDO0lBRWtCLGNBQWM7UUFDL0IsSUFBSSxDQUFDLHlCQUF5QixDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQy9DLENBQUM7OzRIQVpVLCtCQUErQjtnSEFBL0IsK0JBQStCOzJGQUEvQiwrQkFBK0I7a0JBSDNDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDBCQUEwQjtpQkFDckM7OzBCQUlJLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEhvc3QsIE5nWm9uZSwgQ2hhbmdlRGV0ZWN0b3JSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERieEJ1dHRvbkRpcmVjdGl2ZSwgRGJ4QWN0aW9uQnV0dG9uRGlyZWN0aXZlLCBEYnhBY3Rpb25Db250ZXh0U3RvcmVTb3VyY2VJbnN0YW5jZSB9IGZyb20gJ0BkZXJlZWtiL2RieC1jb3JlJztcbmltcG9ydCB7IERieFBvcG92ZXJBY3Rpb25EaXJlY3RpdmUgfSBmcm9tICcuL3BvcG92ZXIuYWN0aW9uLmRpcmVjdGl2ZSc7XG5cbi8qKlxuICogQWN0aW9uIGRpcmVjdGl2ZSB0aGF0IGlzIHVzZWQgdG8gbGluayBhbiBEYnhCdXR0b24gdG8gYW4gRGJ4UG9wb3ZlckFjdGlvbkRpcmVjdGl2ZS5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2RieFBvcG92ZXJBY3Rpb25CdXR0b25dJ1xufSlcbmV4cG9ydCBjbGFzcyBEYnhQb3BvdmVyQWN0aW9uQnV0dG9uRGlyZWN0aXZlIGV4dGVuZHMgRGJ4QWN0aW9uQnV0dG9uRGlyZWN0aXZlIHtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBASG9zdCgpIGJ1dHRvbjogRGJ4QnV0dG9uRGlyZWN0aXZlLFxuICAgIHNvdXJjZTogRGJ4QWN0aW9uQ29udGV4dFN0b3JlU291cmNlSW5zdGFuY2UsXG4gICAgY2RSZWY6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHJlYWRvbmx5IGFwcFBvcG92ZXJBY3Rpb25EaXJlY3RpdmU6IERieFBvcG92ZXJBY3Rpb25EaXJlY3RpdmUpIHtcbiAgICBzdXBlcihidXR0b24sIHNvdXJjZSwgY2RSZWYpO1xuICB9XG5cbiAgcHJvdGVjdGVkIG92ZXJyaWRlIF9idXR0b25DbGlja2VkKCk6IHZvaWQge1xuICAgIHRoaXMuYXBwUG9wb3ZlckFjdGlvbkRpcmVjdGl2ZS5zaG93UG9wb3ZlcigpO1xuICB9XG5cbn1cbiJdfQ==
@@ -1,14 +0,0 @@
1
- import { ChangeDetectorRef } from '@angular/core';
2
- import { DbxButtonDirective, DbxActionButtonDirective, DbxActionContextStoreSourceInstance } from '@dereekb/dbx-core';
3
- import { DbxPopoverActionDirective } from './popover.action.directive';
4
- import * as i0 from "@angular/core";
5
- /**
6
- * Action directive that is used to link an DbxButton to an DbxPopoverActionDirective.
7
- */
8
- export declare class DbxPopoverActionButtonDirective extends DbxActionButtonDirective {
9
- readonly appPopoverActionDirective: DbxPopoverActionDirective;
10
- constructor(button: DbxButtonDirective, source: DbxActionContextStoreSourceInstance, cdRef: ChangeDetectorRef, appPopoverActionDirective: DbxPopoverActionDirective);
11
- protected _buttonClicked(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopoverActionButtonDirective, [{ host: true; }, null, null, null]>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPopoverActionButtonDirective, "[dbxPopoverActionButton]", never, {}, {}, never>;
14
- }