@dereekb/dbx-firebase 13.11.5 → 13.11.7
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.7",
|
|
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.7",
|
|
9
|
+
"@dereekb/dbx-analytics": "13.11.7",
|
|
10
|
+
"@dereekb/dbx-core": "13.11.7",
|
|
11
|
+
"@dereekb/dbx-form": "13.11.7",
|
|
12
|
+
"@dereekb/dbx-web": "13.11.7",
|
|
13
|
+
"@dereekb/firebase": "13.11.7",
|
|
14
|
+
"@dereekb/model": "13.11.7",
|
|
15
|
+
"@dereekb/rxjs": "13.11.7",
|
|
16
|
+
"@dereekb/util": "13.11.7",
|
|
17
|
+
"@dereekb/vitest": "13.11.7",
|
|
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",
|
|
@@ -798,6 +798,18 @@ declare abstract class DbxFirebaseOidcConfig {
|
|
|
798
798
|
* Available scopes for the OIDC provider. Used in scope picker fields.
|
|
799
799
|
*/
|
|
800
800
|
abstract readonly availableScopes: OidcScopeDetails[];
|
|
801
|
+
/**
|
|
802
|
+
* Optional API origin (scheme + host, e.g. `https://api.example.com`) prepended to the OIDC
|
|
803
|
+
* authorization and interaction endpoint paths when set.
|
|
804
|
+
*
|
|
805
|
+
* Use this when the OIDC provider is hosted on a different origin than the frontend so that
|
|
806
|
+
* the authorization redirect and interaction POSTs target the issuer host directly (e.g. to
|
|
807
|
+
* avoid an intermediate hosting layer that strips cookies). Should not include a trailing
|
|
808
|
+
* slash and should not include the `/api` path segment — OIDC endpoints live at the root.
|
|
809
|
+
*
|
|
810
|
+
* Leave unset for single-origin deployments; the endpoint paths stay relative.
|
|
811
|
+
*/
|
|
812
|
+
readonly oidcApiOrigin?: Maybe<string>;
|
|
801
813
|
/**
|
|
802
814
|
* Path to the authorization endpoint. Defaults to '/oidc/auth'.
|
|
803
815
|
*/
|
|
@@ -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;
|