@dereekb/dbx-web 12.0.3 → 12.0.5
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/esm2022/calendar/lib/calendar.component.mjs +2 -2
- package/esm2022/lib/action/key.trigger.directive.mjs +6 -12
- package/esm2022/lib/action/snackbar/action.snackbar.directive.mjs +2 -2
- package/esm2022/lib/error/error.module.mjs +13 -2
- package/esm2022/lib/error/error.snackbar.action.directive.mjs +11 -12
- package/esm2022/lib/extension/download/text/download.text.component.mjs +3 -3
- package/esm2022/lib/extension/model/model.tracker.view.storage.mjs +2 -3
- package/esm2022/lib/interaction/dialog/dialog.module.mjs +21 -5
- package/esm2022/lib/interaction/interaction.module.mjs +6 -6
- package/esm2022/lib/keypress/keydown.listener.directive.mjs +15 -23
- package/esm2022/lib/layout/list/list.view.directive.mjs +19 -2
- package/esm2022/lib/layout/text/address.component.mjs +31 -33
- package/esm2022/lib/layout/text/detail.block.component.mjs +8 -12
- package/esm2022/lib/layout/text/detail.block.header.component.mjs +15 -19
- package/esm2022/lib/layout/text/label.block.component.mjs +7 -9
- package/esm2022/lib/layout/text/linkify.component.mjs +15 -32
- package/esm2022/lib/layout/text/text.chip.directive.mjs +11 -15
- package/esm2022/lib/router/layout/anchor/anchor.component.mjs +7 -9
- package/esm2022/lib/router/layout/anchor/anchor.content.component.mjs +8 -15
- package/esm2022/lib/router/layout/anchor/anchor.icon.component.mjs +9 -11
- package/esm2022/lib/router/layout/anchor/anchor.link.component.mjs +28 -27
- package/esm2022/table/lib/date/date.table.column.header.component.mjs +1 -1
- package/esm2022/table/lib/date/daterange.table.cell.input.component.mjs +9 -8
- package/esm2022/table/lib/table.directive.mjs +3 -1
- package/fesm2022/dereekb-dbx-web-calendar.mjs +2 -2
- package/fesm2022/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-table.mjs +10 -7
- package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +258 -271
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/action/key.trigger.directive.d.ts +2 -3
- package/lib/action/snackbar/action.snackbar.directive.d.ts +1 -1
- package/lib/error/error.module.d.ts +12 -1
- package/lib/error/error.snackbar.action.directive.d.ts +5 -6
- package/lib/extension/model/model.tracker.view.storage.d.ts +1 -1
- package/lib/interaction/dialog/dialog.module.d.ts +9 -1
- package/lib/interaction/interaction.module.d.ts +2 -2
- package/lib/keypress/keydown.listener.directive.d.ts +7 -8
- package/lib/layout/list/list.view.directive.d.ts +9 -0
- package/lib/layout/text/address.component.d.ts +2 -2
- package/lib/layout/text/detail.block.component.d.ts +3 -3
- package/lib/layout/text/detail.block.header.component.d.ts +3 -3
- package/lib/layout/text/label.block.component.d.ts +2 -2
- package/lib/layout/text/linkify.component.d.ts +4 -9
- package/lib/layout/text/text.chip.directive.d.ts +4 -4
- package/lib/router/layout/anchor/anchor.component.d.ts +1 -1
- package/lib/router/layout/anchor/anchor.content.component.d.ts +3 -5
- package/lib/router/layout/anchor/anchor.icon.component.d.ts +2 -2
- package/lib/router/layout/anchor/anchor.link.component.d.ts +5 -4
- package/package.json +1 -1
- package/table/lib/date/date.table.column.header.component.d.ts +2 -2
- package/table/lib/date/daterange.table.cell.input.component.d.ts +6 -6
|
@@ -8,9 +8,8 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class DbxActionKeyTriggerDirective<T = unknown, O = unknown> {
|
|
10
10
|
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
11
|
-
|
|
12
|
-
get key(): string;
|
|
11
|
+
readonly key: import("@angular/core").InputSignalWithTransform<string, Maybe<string>>;
|
|
13
12
|
onKeyupHandler(event: KeyboardEvent): void;
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionKeyTriggerDirective<any, any>, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionKeyTriggerDirective<any, any>, "[dbxActionKeyTrigger]", never, { "
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionKeyTriggerDirective<any, any>, "[dbxActionKeyTrigger]", never, { "key": { "alias": "dbxActionKeyTrigger"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
15
|
}
|
|
@@ -13,7 +13,7 @@ export declare class DbxActionSnackbarDirective<T = unknown, O = unknown> extend
|
|
|
13
13
|
readonly dbxActionSnackbarService: DbxActionSnackbarService<any>;
|
|
14
14
|
readonly dbxActionSnackbarDefault: import("@angular/core").InputSignal<Maybe<string>>;
|
|
15
15
|
readonly dbxActionSnackbarUndo: import("@angular/core").InputSignal<Maybe<DbxActionSnackbarGeneratorUndoInput<T, O>>>;
|
|
16
|
-
readonly dbxActionSnackbar: import("@angular/core").
|
|
16
|
+
readonly dbxActionSnackbar: import("@angular/core").InputSignalWithTransform<Maybe<DbxActionSnackbarDisplayConfigGeneratorFunction>, "" | Maybe<DbxActionSnackbarDisplayConfigGeneratorFunction>>;
|
|
17
17
|
ngOnInit(): void;
|
|
18
18
|
protected buildConfigurationForEvent(event: DbxActionSnackbarEvent<O>): Maybe<DbxActionSnackbarDisplayConfig<T, O>>;
|
|
19
19
|
protected showSnackbarForConfiguration(config: DbxActionSnackbarDisplayConfig<T, O>, event: DbxActionSnackbarEvent<O>): void;
|
|
@@ -10,7 +10,18 @@ import * as i8 from "./error.details.component";
|
|
|
10
10
|
import * as i9 from "./error.widget.component";
|
|
11
11
|
import * as i10 from "./default.error.widget.component";
|
|
12
12
|
/**
|
|
13
|
-
* @deprecated all components are now standalone
|
|
13
|
+
* @deprecated all components are now standalone. Consider importing those instead.
|
|
14
|
+
*
|
|
15
|
+
* @see DbxErrorComponent
|
|
16
|
+
* @see DbxLoadingErrorDirective
|
|
17
|
+
* @see DbxActionErrorDirective
|
|
18
|
+
* @see DbxActionSnackbarErrorDirective
|
|
19
|
+
* @see DbxErrorViewComponent
|
|
20
|
+
* @see DbxErrorSnackbarComponent
|
|
21
|
+
* @see DbxErrorPopoverComponent
|
|
22
|
+
* @see DbxErrorDetailsComponent
|
|
23
|
+
* @see DbxErrorWidgetViewComponent
|
|
24
|
+
* @see DbxErrorDefaultErrorWidgetComponent
|
|
14
25
|
*/
|
|
15
26
|
export declare class DbxReadableErrorModule {
|
|
16
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxReadableErrorModule, never>;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
1
|
import { DbxActionContextStoreSourceInstance, AbstractSubscriptionDirective } from '@dereekb/dbx-core';
|
|
3
2
|
import { DbxErrorSnackbarService } from './error.snackbar.service';
|
|
4
|
-
import { Maybe
|
|
3
|
+
import { Maybe } from '@dereekb/util';
|
|
5
4
|
import { DbxErrorSnackbarConfig } from './error.snackbar.component';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
/**
|
|
8
7
|
* Context used for displaying an error from an ActionContext a snackbar when an ReadableErrorComponent
|
|
9
8
|
*/
|
|
10
|
-
export declare class DbxActionSnackbarErrorDirective extends AbstractSubscriptionDirective
|
|
9
|
+
export declare class DbxActionSnackbarErrorDirective extends AbstractSubscriptionDirective {
|
|
11
10
|
readonly dbxErrorSnackbarService: DbxErrorSnackbarService;
|
|
12
11
|
readonly source: DbxActionContextStoreSourceInstance<any, any>;
|
|
13
|
-
config
|
|
14
|
-
|
|
12
|
+
readonly config: import("@angular/core").InputSignal<number | "" | Maybe<DbxErrorSnackbarConfig>>;
|
|
13
|
+
constructor();
|
|
15
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionSnackbarErrorDirective, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionSnackbarErrorDirective, "[dbxActionSnackbarError]", never, { "config": { "alias": "dbxActionSnackbarError"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionSnackbarErrorDirective, "[dbxActionSnackbarError]", never, { "config": { "alias": "dbxActionSnackbarError"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
16
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InjectionToken, OnDestroy } from '@angular/core';
|
|
2
|
-
import { StorageAccessor } from '@dereekb/dbx-core';
|
|
3
2
|
import { type Maybe } from '@dereekb/util';
|
|
3
|
+
import { StorageAccessor } from '@dereekb/dbx-core';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { DbxModelViewTrackerEventSet, DbxModelViewTrackerEvent } from './model.tracker';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -3,8 +3,16 @@ import * as i1 from "./dialog.content.directive";
|
|
|
3
3
|
import * as i2 from "./dialog.action.directive";
|
|
4
4
|
import * as i3 from "./dialog.content.footer.component";
|
|
5
5
|
import * as i4 from "./dialog.content.close.component";
|
|
6
|
+
export declare class DbxDialogModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDialogModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxDialogModule, never, [typeof i1.DbxDialogContentDirective, typeof i2.DbxActionDialogDirective, typeof i3.DbxDialogContentFooterComponent, typeof i4.DbxDialogContentCloseComponent], [typeof i1.DbxDialogContentDirective, typeof i2.DbxActionDialogDirective, typeof i3.DbxDialogContentFooterComponent, typeof i4.DbxDialogContentCloseComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbxDialogModule>;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated use DbxDialogModule instead.
|
|
13
|
+
*/
|
|
6
14
|
export declare class DbxDialogInteractionModule {
|
|
7
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDialogInteractionModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxDialogInteractionModule, never, [typeof
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxDialogInteractionModule, never, [typeof DbxDialogModule], [typeof DbxDialogModule]>;
|
|
9
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxDialogInteractionModule>;
|
|
10
18
|
}
|
|
@@ -7,7 +7,7 @@ import * as i5 from "./popup/popup.module";
|
|
|
7
7
|
/**
|
|
8
8
|
* @deprecated import individual modules instead.
|
|
9
9
|
*
|
|
10
|
-
* @see
|
|
10
|
+
* @see DbxDialogModule
|
|
11
11
|
* @see DbxFilterInteractionModule
|
|
12
12
|
* @see DbxPromptModule
|
|
13
13
|
* @see DbxPopoverInteractionModule
|
|
@@ -15,6 +15,6 @@ import * as i5 from "./popup/popup.module";
|
|
|
15
15
|
*/
|
|
16
16
|
export declare class DbxInteractionModule {
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxInteractionModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxInteractionModule, never, [typeof i1.DbxPromptModule, typeof i2.
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxInteractionModule, never, [typeof i1.DbxPromptModule, typeof i2.DbxDialogModule, typeof i3.DbxFilterInteractionModule, typeof i4.DbxPopoverInteractionModule, typeof i5.DbxPopupInteractionModule], [typeof i1.DbxPromptModule, typeof i2.DbxDialogModule, typeof i3.DbxFilterInteractionModule, typeof i4.DbxPopoverInteractionModule, typeof i5.DbxPopupInteractionModule]>;
|
|
19
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxInteractionModule>;
|
|
20
20
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type Maybe } from '@dereekb/util';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DbxWindowKeyDownListenerDirective
|
|
4
|
-
|
|
5
|
-
appWindowKeyDownEnabled: boolean
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
ngOnDestroy(): void;
|
|
3
|
+
export declare class DbxWindowKeyDownListenerDirective {
|
|
4
|
+
readonly dbxWindowKeyDownListener: import("@angular/core").OutputEmitterRef<KeyboardEvent>;
|
|
5
|
+
readonly appWindowKeyDownEnabled: import("@angular/core").InputSignal<boolean | undefined>;
|
|
6
|
+
readonly appWindowKeyDownFilter: import("@angular/core").InputSignal<Maybe<string[]>>;
|
|
7
|
+
readonly keysFilter: import("@angular/core").Signal<Maybe<Set<string>>>;
|
|
9
8
|
handleKeyboardEvent(event: KeyboardEvent): void;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxWindowKeyDownListenerDirective, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxWindowKeyDownListenerDirective, "[dbxWindowKeyDownListener]", never, { "appWindowKeyDownEnabled": { "alias": "appWindowKeyDownEnabled"; "required": false; }; "appWindowKeyDownFilter": { "alias": "appWindowKeyDownFilter"; "required": false; }; }, { "
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxWindowKeyDownListenerDirective, "[dbxWindowKeyDownListener]", never, { "appWindowKeyDownEnabled": { "alias": "appWindowKeyDownEnabled"; "required": false; "isSignal": true; }; "appWindowKeyDownFilter": { "alias": "appWindowKeyDownFilter"; "required": false; "isSignal": true; }; }, { "dbxWindowKeyDownListener": "dbxWindowKeyDownListener"; }, never, never, true, never>;
|
|
12
11
|
}
|
|
@@ -4,8 +4,17 @@ import { OnDestroy, TrackByFunction } from '@angular/core';
|
|
|
4
4
|
import { DbxListSelectionMode, DbxListView } from './list.view';
|
|
5
5
|
import { type Maybe } from '@dereekb/util';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "./list.view.value.component";
|
|
8
|
+
export declare const DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE = "<dbx-list-view [config]=\"config\"></dbx-list-view>";
|
|
9
|
+
export declare class DbxValueListViewComponentImportsModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxValueListViewComponentImportsModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxValueListViewComponentImportsModule, never, [typeof i1.DbxValueListViewComponent], [typeof i1.DbxValueListViewComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbxValueListViewComponentImportsModule>;
|
|
13
|
+
}
|
|
7
14
|
/**
|
|
8
15
|
* Abstract DbxListView implementation.
|
|
16
|
+
*
|
|
17
|
+
* You might consider extending AbstractDbxSelectionListViewDirective instead, as it includes selection support.
|
|
9
18
|
*/
|
|
10
19
|
export declare abstract class AbstractDbxListViewDirective<T> implements DbxListView<T>, OnDestroy {
|
|
11
20
|
readonly valuesArray: import("@angular/core").InputSignal<Maybe<T[]>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Maybe, UnitedStatesAddressWithContact } from '@dereekb/util';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class DbxUnitedStatesAddressComponent {
|
|
4
|
-
address
|
|
4
|
+
readonly address: import("@angular/core").InputSignal<Maybe<Partial<UnitedStatesAddressWithContact>>>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxUnitedStatesAddressComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxUnitedStatesAddressComponent, "dbx-us-address", never, { "address": { "alias": "address"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxUnitedStatesAddressComponent, "dbx-us-address", never, { "address": { "alias": "address"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7
7
|
}
|
|
@@ -4,8 +4,8 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* Header and details offset with an icon.
|
|
5
5
|
*/
|
|
6
6
|
export declare class DbxDetailBlockComponent {
|
|
7
|
-
icon
|
|
8
|
-
header
|
|
7
|
+
readonly icon: import("@angular/core").InputSignal<Maybe<string>>;
|
|
8
|
+
readonly header: import("@angular/core").InputSignal<Maybe<string>>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDetailBlockComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockComponent, "dbx-detail-block", never, { "icon": { "alias": "icon"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["[header]", "*"], true, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockComponent, "dbx-detail-block", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "*"], true, never>;
|
|
11
11
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type Maybe } from '@dereekb/util';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class DbxDetailBlockHeaderComponent {
|
|
4
|
-
icon
|
|
5
|
-
header
|
|
4
|
+
readonly icon: import("@angular/core").InputSignal<Maybe<string>>;
|
|
5
|
+
readonly header: import("@angular/core").InputSignal<Maybe<string>>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDetailBlockHeaderComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockHeaderComponent, "dbx-detail-block-header", never, { "icon": { "alias": "icon"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockHeaderComponent, "dbx-detail-block-header", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8
8
|
}
|
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* Combines a dbx-label and arbitrary content.
|
|
5
5
|
*/
|
|
6
6
|
export declare class DbxLabelBlockComponent {
|
|
7
|
-
header
|
|
7
|
+
readonly header: import("@angular/core").InputSignal<Maybe<string>>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLabelBlockComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLabelBlockComponent, "dbx-label-block", never, { "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLabelBlockComponent, "dbx-label-block", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
10
10
|
}
|
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
2
1
|
import { type Maybe } from '@dereekb/util';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
4
|
* Used to "linkify" the input text.
|
|
6
5
|
*/
|
|
7
|
-
export declare class DbxLinkifyComponent
|
|
6
|
+
export declare class DbxLinkifyComponent {
|
|
8
7
|
private readonly sanitizer;
|
|
9
|
-
|
|
10
|
-
readonly
|
|
11
|
-
readonly linkifiedBody$: import("rxjs").Observable<import("@angular/platform-browser").SafeHtml | undefined>;
|
|
8
|
+
readonly text: import("@angular/core").InputSignal<Maybe<string>>;
|
|
9
|
+
readonly linkifiedTextSignal: import("@angular/core").Signal<string | undefined>;
|
|
12
10
|
readonly linkifiedBodySignal: import("@angular/core").Signal<import("@angular/platform-browser").SafeHtml | undefined>;
|
|
13
|
-
ngOnDestroy(): void;
|
|
14
|
-
get text(): Maybe<string>;
|
|
15
|
-
set text(text: Maybe<string>);
|
|
16
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLinkifyComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLinkifyComponent, "dbx-linkify", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLinkifyComponent, "dbx-linkify", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
13
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type Maybe } from '@dereekb/util';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class DbxChipDirective {
|
|
4
|
-
small
|
|
5
|
-
block
|
|
6
|
-
|
|
4
|
+
readonly small: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
5
|
+
readonly block: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
6
|
+
readonly styleSignal: import("@angular/core").Signal<string>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxChipDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxChipDirective, "dbx-chip", never, { "small": { "alias": "small"; "required": false; }; "block": { "alias": "block"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxChipDirective, "dbx-chip", never, { "small": { "alias": "small"; "required": false; "isSignal": true; }; "block": { "alias": "block"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -11,7 +11,7 @@ export declare class DbxAnchorComponent extends AbstractDbxAnchorDirective {
|
|
|
11
11
|
readonly templateRef: import("@angular/core").Signal<Maybe<TemplateRef<unknown>>>;
|
|
12
12
|
readonly templateRef$: import("rxjs").Observable<Maybe<TemplateRef<unknown>>>;
|
|
13
13
|
readonly selectedClassSignal: import("@angular/core").Signal<"" | "dbx-anchor-selected">;
|
|
14
|
-
|
|
14
|
+
readonly srefAnchorConfig: DbxInjectionComponentConfig;
|
|
15
15
|
clickAnchor(event?: Maybe<MouseEvent>): void;
|
|
16
16
|
onMouseEnter(event?: Maybe<MouseEvent>): void;
|
|
17
17
|
onMouseLeave(event?: Maybe<MouseEvent>): void;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { OnDestroy } from '@angular/core';
|
|
3
2
|
import { ClickableAnchorLink } from '@dereekb/dbx-core';
|
|
4
3
|
import { type Maybe } from '@dereekb/util';
|
|
5
4
|
import { DbxAnchorComponent } from './anchor.component';
|
|
@@ -7,16 +6,15 @@ import * as i0 from "@angular/core";
|
|
|
7
6
|
/**
|
|
8
7
|
* Component that displays an anchor and a span with the title.
|
|
9
8
|
*/
|
|
10
|
-
export declare class DbxAnchorContentComponent
|
|
9
|
+
export declare class DbxAnchorContentComponent {
|
|
11
10
|
readonly parent: DbxAnchorComponent | null;
|
|
11
|
+
readonly inputAnchor: import("@angular/core").InputSignal<Maybe<Partial<ClickableAnchorLink>>>;
|
|
12
12
|
private readonly _inputAnchor;
|
|
13
13
|
private readonly _parentAnchor;
|
|
14
14
|
readonly anchor$: Observable<Maybe<Partial<ClickableAnchorLink>>>;
|
|
15
15
|
readonly anchorSignal: import("@angular/core").Signal<Maybe<Partial<ClickableAnchorLink>>>;
|
|
16
16
|
readonly iconSignal: import("@angular/core").Signal<Maybe<string>>;
|
|
17
17
|
readonly titleSignal: import("@angular/core").Signal<string | undefined>;
|
|
18
|
-
set anchor(anchor: Maybe<Partial<ClickableAnchorLink>>);
|
|
19
|
-
ngOnDestroy(): void;
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxAnchorContentComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxAnchorContentComponent, "dbx-anchor-content", never, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxAnchorContentComponent, "dbx-anchor-content", never, { "inputAnchor": { "alias": "anchor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
22
20
|
}
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
* Component that displays an anchor and a mat-button.
|
|
6
6
|
*/
|
|
7
7
|
export declare class DbxAnchorIconComponent {
|
|
8
|
-
anchor: Maybe<ClickableIconAnchorLink
|
|
8
|
+
readonly anchor: import("@angular/core").InputSignal<Maybe<ClickableIconAnchorLink>>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxAnchorIconComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxAnchorIconComponent, "dbx-anchor-icon", never, { "anchor": { "alias": "anchor"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxAnchorIconComponent, "dbx-anchor-icon", never, { "anchor": { "alias": "anchor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
11
|
}
|
|
@@ -5,9 +5,10 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
* Pre-styled text that can link to either a website or a ref using a dbx-anchor.
|
|
6
6
|
*/
|
|
7
7
|
export declare class DbxLinkComponent {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
readonly ref: import("@angular/core").InputSignal<Maybe<string>>;
|
|
9
|
+
readonly href: import("@angular/core").InputSignal<Maybe<string>>;
|
|
10
|
+
readonly anchor: import("@angular/core").InputSignal<Maybe<ClickableAnchor>>;
|
|
11
|
+
readonly anchorSignal: import("@angular/core").Signal<Maybe<ClickableAnchor>>;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLinkComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLinkComponent, "dbx-link", never, { "
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLinkComponent, "dbx-link", never, { "ref": { "alias": "ref"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "anchor": { "alias": "anchor"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
13
14
|
}
|
package/package.json
CHANGED
|
@@ -6,8 +6,8 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
* A table header component used for rendering date values on the header.
|
|
7
7
|
*/
|
|
8
8
|
export declare class DbxTableDateHeaderComponent {
|
|
9
|
-
left
|
|
10
|
-
right
|
|
9
|
+
readonly left = "E";
|
|
10
|
+
readonly right = "MMM d";
|
|
11
11
|
private readonly _dateSignal;
|
|
12
12
|
readonly dateSignal: import("@angular/core").Signal<Maybe<Date>>;
|
|
13
13
|
get date(): Maybe<Date>;
|
|
@@ -19,13 +19,13 @@ export interface DbxTableDateRangeDayDistanceInputCellInputComponentConfig {
|
|
|
19
19
|
/**
|
|
20
20
|
* Button format for the dates
|
|
21
21
|
*/
|
|
22
|
-
buttonFormat?: string;
|
|
22
|
+
readonly buttonFormat?: string;
|
|
23
23
|
/**
|
|
24
24
|
* Distance from the start to span.
|
|
25
25
|
*/
|
|
26
|
-
daysDistance: Days;
|
|
27
|
-
minDate?: Maybe<Date>;
|
|
28
|
-
maxDate?: Maybe<Date>;
|
|
26
|
+
readonly daysDistance: Days;
|
|
27
|
+
readonly minDate?: Maybe<Date>;
|
|
28
|
+
readonly maxDate?: Maybe<Date>;
|
|
29
29
|
}
|
|
30
30
|
export declare const DEFAULT_DBX_TABLE_DATE_RANGE_DAY_DISTIANCE_INPUT_CELL_COMPONENT_CONFIG: {
|
|
31
31
|
daysDistance: number;
|
|
@@ -48,8 +48,8 @@ export declare class DbxTableDateRangeDayDistanceInputCellInputComponent impleme
|
|
|
48
48
|
start: Maybe<Date>;
|
|
49
49
|
end: Maybe<Date>;
|
|
50
50
|
}>>;
|
|
51
|
-
readonly minDateSignal: import("@angular/core").Signal<
|
|
52
|
-
readonly maxDateSignal: import("@angular/core").Signal<
|
|
51
|
+
readonly minDateSignal: import("@angular/core").Signal<Date | null>;
|
|
52
|
+
readonly maxDateSignal: import("@angular/core").Signal<Date | null>;
|
|
53
53
|
readonly buttonFormatSignal: import("@angular/core").Signal<string>;
|
|
54
54
|
readonly rangeValue$: import("rxjs").Observable<Partial<{
|
|
55
55
|
start: Maybe<Date>;
|