@dereekb/dbx-firebase 13.11.5 → 13.11.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-firebase",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "21.2.11",
|
|
6
6
|
"@angular/core": "21.2.11",
|
|
7
7
|
"@angular/material": "^21.2.9",
|
|
8
|
-
"@dereekb/date": "13.11.
|
|
9
|
-
"@dereekb/dbx-analytics": "13.11.
|
|
10
|
-
"@dereekb/dbx-core": "13.11.
|
|
11
|
-
"@dereekb/dbx-form": "13.11.
|
|
12
|
-
"@dereekb/dbx-web": "13.11.
|
|
13
|
-
"@dereekb/firebase": "13.11.
|
|
14
|
-
"@dereekb/model": "13.11.
|
|
15
|
-
"@dereekb/rxjs": "13.11.
|
|
16
|
-
"@dereekb/util": "13.11.
|
|
17
|
-
"@dereekb/vitest": "13.11.
|
|
8
|
+
"@dereekb/date": "13.11.6",
|
|
9
|
+
"@dereekb/dbx-analytics": "13.11.6",
|
|
10
|
+
"@dereekb/dbx-core": "13.11.6",
|
|
11
|
+
"@dereekb/dbx-form": "13.11.6",
|
|
12
|
+
"@dereekb/dbx-web": "13.11.6",
|
|
13
|
+
"@dereekb/firebase": "13.11.6",
|
|
14
|
+
"@dereekb/model": "13.11.6",
|
|
15
|
+
"@dereekb/rxjs": "13.11.6",
|
|
16
|
+
"@dereekb/util": "13.11.6",
|
|
17
|
+
"@dereekb/vitest": "13.11.6",
|
|
18
18
|
"@ng-forge/dynamic-forms": "0.9.0-next.6",
|
|
19
19
|
"@ngrx/component-store": "^21.1.0",
|
|
20
20
|
"@ngx-formly/core": "git+https://git@github.com/dereekb/ngx-formly#996d1041c8d2afbe429985a5ad394e59327bfa1d",
|
|
@@ -18,7 +18,7 @@ import * as _dereekb_rxjs from '@dereekb/rxjs';
|
|
|
18
18
|
import { WorkUsingContext, WorkUsingObservable, ObservableOrValue, IsModifiedFunction, PageListLoadingState, ItemAccumulatorNextPageUntilResultsCountResult, SubscriptionObject, ObservableDecisionFunction, ListLoadingState, LoadingState, MaybeObservableOrValue, SwitchMapToDefaultFilterFunction, MaybeObservableOrValueGetter } from '@dereekb/rxjs';
|
|
19
19
|
import * as dist_packages_dbx_form_types_dereekb_dbx_form from 'dist/packages/dbx-form/types/dereekb-dbx-form';
|
|
20
20
|
import * as i1 from '@dereekb/dbx-web';
|
|
21
|
-
import {
|
|
21
|
+
import { DbxColorInput, DbxActionConfirmConfig, DbxWidgetEntry, DbxPopupService, DbxWidgetService, DbxWidgetType, TwoColumnsContextStore, AbstractPopupDirective, DbxPopupKey, AbstractDbxSelectionListWrapperDirective, AbstractDbxSelectionListViewDirective, DbxSelectionValueListViewConfig, DbxValueAsListItem, AbstractDbxValueListViewItemComponent, DbxModelTypesService, DbxModelTypeInfo, DbxModelTypesMap, DbxModelTrackerService, AnchorForValueFunction, AbstractPopoverDirective, DbxPopoverService, DbxPopoverKey, AbstractPopoverRefDirective, DbxPopoverConfigSizing, DbxButtonStyle, DownloadTextContent, DbxModelObjectStateService, DbxListViewWrapper, DbxWidgetViewComponentConfig, AbstractDbxWidgetComponent, DbxWebFilePreviewService, DbxActionDialogFunction, FileAcceptFilterTypeString, DbxFileUploadComponent, DbxActionModule, DbxLoadingComponent, DbxActionSnackbarErrorDirective, DbxActionLoadingContextDirective, DbxFileUploadActionSyncDirective } from '@dereekb/dbx-web';
|
|
22
22
|
import { FormConfig } from '@ng-forge/dynamic-forms';
|
|
23
23
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
24
24
|
import { NgPopoverRef } from 'ng-overlay-container';
|
|
@@ -611,9 +611,9 @@ interface DbxFirebaseLoginButtonConfig {
|
|
|
611
611
|
buttonColor?: string;
|
|
612
612
|
buttonTextColor?: string;
|
|
613
613
|
/**
|
|
614
|
-
* Material theme color to apply (e.g., 'warn', 'primary').
|
|
614
|
+
* Material theme color or {@link DbxColorConfig} to apply to the underlying button (e.g., 'warn', 'primary').
|
|
615
615
|
*/
|
|
616
|
-
color?:
|
|
616
|
+
color?: DbxColorInput;
|
|
617
617
|
/**
|
|
618
618
|
* Optional confirmation dialog config. When set, the action will prompt the user before executing.
|
|
619
619
|
*/
|
|
@@ -633,7 +633,7 @@ declare class DbxFirebaseLoginButtonComponent {
|
|
|
633
633
|
readonly textSignal: i0.Signal<string>;
|
|
634
634
|
readonly buttonColorSignal: i0.Signal<string | undefined>;
|
|
635
635
|
readonly buttonTextColorSignal: i0.Signal<string | undefined>;
|
|
636
|
-
readonly colorSignal: i0.Signal<
|
|
636
|
+
readonly colorSignal: i0.Signal<DbxColorInput | undefined>;
|
|
637
637
|
readonly confirmConfigSignal: i0.Signal<DbxActionConfirmConfig<unknown> | undefined>;
|
|
638
638
|
setConfig(config: Maybe<DbxFirebaseLoginButtonConfig>): void;
|
|
639
639
|
readonly handleAction: WorkUsingContext;
|