@dereekb/dbx-firebase 13.9.0 → 13.10.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.
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs +8 -5
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-firebase.mjs +168 -136
- package/fesm2022/dereekb-dbx-firebase.mjs.map +1 -1
- package/package.json +11 -11
- package/types/dereekb-dbx-firebase-oidc.d.ts +8 -7
- package/types/dereekb-dbx-firebase.d.ts +134 -17
|
@@ -9,7 +9,7 @@ import { DbxFirebaseAuthService, AbstractDbxFirebaseDocumentStore, firebaseDocum
|
|
|
9
9
|
import { HttpClient } from '@angular/common/http';
|
|
10
10
|
import { first, switchMap, of, map, BehaviorSubject, tap } from 'rxjs';
|
|
11
11
|
import * as i1 from '@dereekb/dbx-form';
|
|
12
|
-
import { dbxForgeValueSelectionField, dbxForgeTextField, dbxForgeSearchableStringChipField, isWebsiteUrlValidator,
|
|
12
|
+
import { dbxForgeValueSelectionField, dbxForgeTextField, dbxForgeSearchableStringChipField, isWebsiteUrlValidator, dbxForgeContainer, dbxForgePickableChipField, pickableValueFieldValuesConfigForStaticLabeledValues, AbstractConfigAsyncForgeFormDirective, DbxForgeFormComponentImportsModule, dbxForgeFormComponentProviders, DBX_FORGE_FORM_COMPONENT_TEMPLATE, DbxActionFormDirective, DbxFormSourceDirective, DbxFormValueChangeDirective } from '@dereekb/dbx-form';
|
|
13
13
|
import { ALL_OIDC_TOKEN_ENDPOINT_AUTH_METHOD_OPTIONS, PRIVATE_KEY_JWT_TOKEN_ENDPOINT_AUTH_METHOD, OIDC_ENTRY_CLIENT_TYPE, OidcModelFunctions, OidcModelFirestoreCollections } from '@dereekb/firebase';
|
|
14
14
|
import { CommonModule } from '@angular/common';
|
|
15
15
|
|
|
@@ -714,13 +714,16 @@ function oidcClientRedirectUrisForgeField() {
|
|
|
714
714
|
});
|
|
715
715
|
}
|
|
716
716
|
/**
|
|
717
|
-
* Creates a forge
|
|
718
|
-
* when the token endpoint auth method is not `private_key_jwt`.
|
|
717
|
+
* Creates a forge container wrapping the JWKS URI field, conditionally hidden
|
|
718
|
+
* when the token endpoint auth method is not `private_key_jwt`. A container
|
|
719
|
+
* (not a group) is used so the `jwks_uri` field stays at the root level of
|
|
720
|
+
* the form value rather than being nested under an extra object.
|
|
719
721
|
*
|
|
720
|
-
* @returns A forge
|
|
722
|
+
* @returns A forge container field with conditional visibility logic.
|
|
721
723
|
*/
|
|
722
724
|
function oidcClientJwksUriForgeField() {
|
|
723
|
-
return
|
|
725
|
+
return dbxForgeContainer({
|
|
726
|
+
key: 'jwks_uri_container',
|
|
724
727
|
fields: [
|
|
725
728
|
dbxForgeTextField({
|
|
726
729
|
key: 'jwks_uri',
|