@firebase-oss/ui-angular 0.0.2-exp.c228b3f → 0.0.2-exp.cfc61d6
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/LICENSE +202 -0
- package/dist/fesm2022/firebase-oss-ui-angular.mjs +310 -118
- package/dist/fesm2022/firebase-oss-ui-angular.mjs.map +1 -1
- package/dist/index.d.ts +57 -43
- package/package.json +35 -35
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _tanstack_angular_form from '@tanstack/angular-form';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
3
|
import { EventEmitter, OnInit, ElementRef, Signal, EnvironmentProviders } from '@angular/core';
|
|
4
|
-
import { UserCredential,
|
|
4
|
+
import { UserCredential, OAuthProvider, FacebookAuthProvider, GithubAuthProvider, GoogleAuthProvider, AuthProvider, TwitterAuthProvider, User } from '@angular/fire/auth';
|
|
5
5
|
import * as firebase_auth from 'firebase/auth';
|
|
6
6
|
import { UserCredential as UserCredential$1, MultiFactorInfo, FactorId, RecaptchaVerifier, TotpSecret } from 'firebase/auth';
|
|
7
7
|
import * as libphonenumber_js from 'libphonenumber-js';
|
|
@@ -720,19 +720,19 @@ declare class TotpMultiFactorEnrollmentFormComponent {
|
|
|
720
720
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TotpMultiFactorEnrollmentFormComponent, "fui-totp-multi-factor-enrollment-form", never, {}, { "onEnrollment": "onEnrollment"; }, never, never, true, never>;
|
|
721
721
|
}
|
|
722
722
|
|
|
723
|
-
declare class
|
|
723
|
+
declare class AppleSignInButtonComponent {
|
|
724
724
|
ui: _angular_core.Signal<_firebase_oss_ui_core.FirebaseUI>;
|
|
725
|
-
|
|
725
|
+
signInWithAppleLabel: _angular_core.Signal<string>;
|
|
726
726
|
/** Whether to use themed styling. */
|
|
727
|
-
themed: _angular_core.InputSignal<boolean
|
|
727
|
+
themed: _angular_core.InputSignal<boolean>;
|
|
728
728
|
/** Event emitter for successful sign-in. */
|
|
729
729
|
signIn: _angular_core.OutputEmitterRef<UserCredential>;
|
|
730
730
|
private defaultProvider;
|
|
731
731
|
/** Optional custom OAuth provider configuration. */
|
|
732
|
-
provider: _angular_core.InputSignal<
|
|
733
|
-
get
|
|
734
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
735
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
732
|
+
provider: _angular_core.InputSignal<OAuthProvider>;
|
|
733
|
+
get appleProvider(): OAuthProvider;
|
|
734
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AppleSignInButtonComponent, never>;
|
|
735
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AppleSignInButtonComponent, "fui-apple-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
736
736
|
}
|
|
737
737
|
|
|
738
738
|
declare class FacebookSignInButtonComponent {
|
|
@@ -750,19 +750,33 @@ declare class FacebookSignInButtonComponent {
|
|
|
750
750
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FacebookSignInButtonComponent, "fui-facebook-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
751
751
|
}
|
|
752
752
|
|
|
753
|
-
declare class
|
|
754
|
-
|
|
755
|
-
signInWithAppleLabel: _angular_core.Signal<string>;
|
|
753
|
+
declare class GitHubSignInButtonComponent {
|
|
754
|
+
signInWithGitHubLabel: _angular_core.Signal<string>;
|
|
756
755
|
/** Whether to use themed styling. */
|
|
757
756
|
themed: _angular_core.InputSignal<boolean>;
|
|
758
757
|
/** Event emitter for successful sign-in. */
|
|
759
758
|
signIn: _angular_core.OutputEmitterRef<UserCredential>;
|
|
760
759
|
private defaultProvider;
|
|
761
760
|
/** Optional custom OAuth provider configuration. */
|
|
762
|
-
provider: _angular_core.InputSignal<
|
|
763
|
-
get
|
|
764
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
765
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
761
|
+
provider: _angular_core.InputSignal<GithubAuthProvider>;
|
|
762
|
+
get githubProvider(): GithubAuthProvider;
|
|
763
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GitHubSignInButtonComponent, never>;
|
|
764
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GitHubSignInButtonComponent, "fui-github-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
declare class GoogleSignInButtonComponent {
|
|
768
|
+
ui: _angular_core.Signal<_firebase_oss_ui_core.FirebaseUI>;
|
|
769
|
+
signInWithGoogleLabel: _angular_core.Signal<string>;
|
|
770
|
+
/** Whether to use themed styling. */
|
|
771
|
+
themed: _angular_core.InputSignal<boolean | "neutral">;
|
|
772
|
+
/** Event emitter for successful sign-in. */
|
|
773
|
+
signIn: _angular_core.OutputEmitterRef<UserCredential>;
|
|
774
|
+
private defaultProvider;
|
|
775
|
+
/** Optional custom OAuth provider configuration. */
|
|
776
|
+
provider: _angular_core.InputSignal<GoogleAuthProvider>;
|
|
777
|
+
get googleProvider(): GoogleAuthProvider;
|
|
778
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GoogleSignInButtonComponent, never>;
|
|
779
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GoogleSignInButtonComponent, "fui-google-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
766
780
|
}
|
|
767
781
|
|
|
768
782
|
declare class MicrosoftSignInButtonComponent {
|
|
@@ -779,6 +793,21 @@ declare class MicrosoftSignInButtonComponent {
|
|
|
779
793
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MicrosoftSignInButtonComponent, "fui-microsoft-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
780
794
|
}
|
|
781
795
|
|
|
796
|
+
declare class OAuthButtonComponent {
|
|
797
|
+
ui: _angular_core.Signal<_firebase_oss_ui_core.FirebaseUI>;
|
|
798
|
+
/** The OAuth provider to use for sign-in. */
|
|
799
|
+
provider: _angular_core.InputSignal<AuthProvider>;
|
|
800
|
+
/** Whether to use themed styling. */
|
|
801
|
+
themed: _angular_core.InputSignal<string | boolean>;
|
|
802
|
+
error: _angular_core.WritableSignal<string>;
|
|
803
|
+
/** Event emitter for successful sign-in. */
|
|
804
|
+
signIn: _angular_core.OutputEmitterRef<UserCredential>;
|
|
805
|
+
buttonVariant: _angular_core.Signal<"primary" | "secondary">;
|
|
806
|
+
handleOAuthSignIn(): Promise<void>;
|
|
807
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OAuthButtonComponent, never>;
|
|
808
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OAuthButtonComponent, "fui-oauth-button", never, { "provider": { "alias": "provider"; "required": true; "isSignal": true; }; "themed": { "alias": "themed"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, ["*"], true, never>;
|
|
809
|
+
}
|
|
810
|
+
|
|
782
811
|
declare class TwitterSignInButtonComponent {
|
|
783
812
|
signInWithTwitterLabel: _angular_core.Signal<string>;
|
|
784
813
|
/** Whether to use themed styling. */
|
|
@@ -793,33 +822,18 @@ declare class TwitterSignInButtonComponent {
|
|
|
793
822
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TwitterSignInButtonComponent, "fui-twitter-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
794
823
|
}
|
|
795
824
|
|
|
796
|
-
declare class
|
|
797
|
-
|
|
825
|
+
declare class YahooSignInButtonComponent {
|
|
826
|
+
signInWithYahooLabel: _angular_core.Signal<string>;
|
|
798
827
|
/** Whether to use themed styling. */
|
|
799
828
|
themed: _angular_core.InputSignal<boolean>;
|
|
800
829
|
/** Event emitter for successful sign-in. */
|
|
801
830
|
signIn: _angular_core.OutputEmitterRef<UserCredential>;
|
|
802
831
|
private defaultProvider;
|
|
803
832
|
/** Optional custom OAuth provider configuration. */
|
|
804
|
-
provider: _angular_core.InputSignal<
|
|
805
|
-
get
|
|
806
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
807
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
declare class OAuthButtonComponent {
|
|
811
|
-
ui: _angular_core.Signal<_firebase_oss_ui_core.FirebaseUI>;
|
|
812
|
-
/** The OAuth provider to use for sign-in. */
|
|
813
|
-
provider: _angular_core.InputSignal<AuthProvider>;
|
|
814
|
-
/** Whether to use themed styling. */
|
|
815
|
-
themed: _angular_core.InputSignal<string | boolean>;
|
|
816
|
-
error: _angular_core.WritableSignal<string>;
|
|
817
|
-
/** Event emitter for successful sign-in. */
|
|
818
|
-
signIn: _angular_core.OutputEmitterRef<UserCredential>;
|
|
819
|
-
buttonVariant: _angular_core.Signal<"primary" | "secondary">;
|
|
820
|
-
handleOAuthSignIn(): Promise<void>;
|
|
821
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OAuthButtonComponent, never>;
|
|
822
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OAuthButtonComponent, "fui-oauth-button", never, { "provider": { "alias": "provider"; "required": true; "isSignal": true; }; "themed": { "alias": "themed"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, ["*"], true, never>;
|
|
833
|
+
provider: _angular_core.InputSignal<OAuthProvider>;
|
|
834
|
+
get yahooProvider(): OAuthProvider;
|
|
835
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YahooSignInButtonComponent, never>;
|
|
836
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<YahooSignInButtonComponent, "fui-yahoo-sign-in-button", never, { "themed": { "alias": "themed"; "required": false; "isSignal": true; }; "provider": { "alias": "provider"; "required": false; "isSignal": true; }; }, { "signIn": "signIn"; }, never, never, true, never>;
|
|
823
837
|
}
|
|
824
838
|
|
|
825
839
|
declare class EmailLinkAuthScreenComponent {
|
|
@@ -951,6 +965,12 @@ declare class CardContentComponent {
|
|
|
951
965
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardContentComponent, "fui-card-content", never, {}, {}, never, ["*"], true, never>;
|
|
952
966
|
}
|
|
953
967
|
|
|
968
|
+
declare class ContentComponent {
|
|
969
|
+
dividerOrLabel: _angular_core.Signal<string>;
|
|
970
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContentComponent, never>;
|
|
971
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentComponent, "fui-content", never, {}, {}, never, ["*"], true, never>;
|
|
972
|
+
}
|
|
973
|
+
|
|
954
974
|
declare class CountrySelectorComponent {
|
|
955
975
|
countries: _angular_core.Signal<_firebase_oss_ui_core.CountryData[]>;
|
|
956
976
|
defaultCountry: _angular_core.Signal<_firebase_oss_ui_core.CountryData>;
|
|
@@ -1011,12 +1031,6 @@ declare class PoliciesComponent {
|
|
|
1011
1031
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PoliciesComponent, "fui-policies", never, {}, {}, never, never, true, never>;
|
|
1012
1032
|
}
|
|
1013
1033
|
|
|
1014
|
-
declare class ContentComponent {
|
|
1015
|
-
dividerOrLabel: _angular_core.Signal<string>;
|
|
1016
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContentComponent, never>;
|
|
1017
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentComponent, "fui-content", never, {}, {}, never, ["*"], true, never>;
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
1034
|
declare class RedirectErrorComponent {
|
|
1021
1035
|
error: _angular_core.Signal<string>;
|
|
1022
1036
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RedirectErrorComponent, never>;
|
|
@@ -1174,4 +1188,4 @@ declare function injectDefaultCountry(): Signal<CountryData>;
|
|
|
1174
1188
|
*/
|
|
1175
1189
|
declare function injectRedirectError(): Signal<string | undefined>;
|
|
1176
1190
|
|
|
1177
|
-
export { AppleSignInButtonComponent, ButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardSubtitleComponent, CardTitleComponent, ContentComponent, CountrySelectorComponent, DividerComponent, EmailLinkAuthFormComponent, EmailLinkAuthScreenComponent, FacebookSignInButtonComponent, ForgotPasswordAuthFormComponent, ForgotPasswordAuthScreenComponent, GitHubSignInButtonComponent, GoogleSignInButtonComponent, MicrosoftSignInButtonComponent, MultiFactorAuthAssertionFormComponent, MultiFactorAuthAssertionScreenComponent, MultiFactorAuthEnrollmentFormComponent, MultiFactorAuthEnrollmentScreenComponent, OAuthButtonComponent, OAuthScreenComponent, PhoneAuthFormComponent, PhoneAuthScreenComponent, PoliciesComponent, RedirectErrorComponent, SignInAuthFormComponent, SignInAuthScreenComponent, SignUpAuthFormComponent, SignUpAuthScreenComponent, SmsMultiFactorAssertionFormComponent, SmsMultiFactorAssertionPhoneFormComponent, SmsMultiFactorAssertionVerifyFormComponent, SmsMultiFactorEnrollmentFormComponent, TotpMultiFactorAssertionFormComponent, TotpMultiFactorEnrollmentFormComponent, TwitterSignInButtonComponent, injectCountries, injectDefaultCountry, injectEmailLinkAuthFormSchema, injectForgotPasswordAuthFormSchema, injectMultiFactorPhoneAuthAssertionFormSchema, injectMultiFactorPhoneAuthNumberFormSchema, injectMultiFactorPhoneAuthVerifyFormSchema, injectMultiFactorTotpAuthNumberFormSchema, injectMultiFactorTotpAuthVerifyFormSchema, injectPhoneAuthFormSchema, injectPhoneAuthVerifyFormSchema, injectPolicies, injectRecaptchaVerifier, injectRedirectError, injectSignInAuthFormSchema, injectSignUpAuthFormSchema, injectTranslation, injectUI, injectUserAuthenticated, provideFirebaseUI, provideFirebaseUIPolicies };
|
|
1191
|
+
export { AppleSignInButtonComponent, ButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardSubtitleComponent, CardTitleComponent, ContentComponent, CountrySelectorComponent, DividerComponent, EmailLinkAuthFormComponent, EmailLinkAuthScreenComponent, FacebookSignInButtonComponent, ForgotPasswordAuthFormComponent, ForgotPasswordAuthScreenComponent, GitHubSignInButtonComponent, GoogleSignInButtonComponent, MicrosoftSignInButtonComponent, MultiFactorAuthAssertionFormComponent, MultiFactorAuthAssertionScreenComponent, MultiFactorAuthEnrollmentFormComponent, MultiFactorAuthEnrollmentScreenComponent, OAuthButtonComponent, OAuthScreenComponent, PhoneAuthFormComponent, PhoneAuthScreenComponent, PoliciesComponent, RedirectErrorComponent, SignInAuthFormComponent, SignInAuthScreenComponent, SignUpAuthFormComponent, SignUpAuthScreenComponent, SmsMultiFactorAssertionFormComponent, SmsMultiFactorAssertionPhoneFormComponent, SmsMultiFactorAssertionVerifyFormComponent, SmsMultiFactorEnrollmentFormComponent, TotpMultiFactorAssertionFormComponent, TotpMultiFactorEnrollmentFormComponent, TwitterSignInButtonComponent, YahooSignInButtonComponent, injectCountries, injectDefaultCountry, injectEmailLinkAuthFormSchema, injectForgotPasswordAuthFormSchema, injectMultiFactorPhoneAuthAssertionFormSchema, injectMultiFactorPhoneAuthNumberFormSchema, injectMultiFactorPhoneAuthVerifyFormSchema, injectMultiFactorTotpAuthNumberFormSchema, injectMultiFactorTotpAuthVerifyFormSchema, injectPhoneAuthFormSchema, injectPhoneAuthVerifyFormSchema, injectPolicies, injectRecaptchaVerifier, injectRedirectError, injectSignInAuthFormSchema, injectSignUpAuthFormSchema, injectTranslation, injectUI, injectUserAuthenticated, provideFirebaseUI, provideFirebaseUIPolicies };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase-oss/ui-angular",
|
|
3
|
-
"version": "0.0.2-exp.
|
|
3
|
+
"version": "0.0.2-exp.cfc61d6",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -14,55 +14,55 @@
|
|
|
14
14
|
"default": "./dist/fesm2022/firebase-oss-ui-angular.mjs"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"prepare": "pnpm run build",
|
|
19
|
-
"build": "pnpm run build:logos && ng-packagr -p ng-package.json",
|
|
20
|
-
"build:logos": "tsx generate-logos.ts",
|
|
21
|
-
"test": "jest --silent",
|
|
22
|
-
"version:bump": "pnpm version patch",
|
|
23
|
-
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
|
|
24
|
-
"publish:npm": "../../publish.sh",
|
|
25
|
-
"release": "pnpm pack --pack-destination ../../releases/"
|
|
26
|
-
},
|
|
27
17
|
"peerDependencies": {
|
|
28
|
-
"@angular/fire": "
|
|
18
|
+
"@angular/fire": "^20"
|
|
29
19
|
},
|
|
30
20
|
"dependencies": {
|
|
31
|
-
"@firebase-oss/ui-core": "workspace:*",
|
|
32
|
-
"@firebase-oss/ui-styles": "workspace:*",
|
|
33
21
|
"@tanstack/angular-form": "^1.23.1",
|
|
34
|
-
"nanostores": "
|
|
35
|
-
"tslib": "^2.8.1"
|
|
22
|
+
"nanostores": "^1.1.0",
|
|
23
|
+
"tslib": "^2.8.1",
|
|
24
|
+
"@firebase-oss/ui-core": "0.0.2-exp.cfc61d6",
|
|
25
|
+
"@firebase-oss/ui-styles": "0.0.2-exp.cfc61d6"
|
|
36
26
|
},
|
|
37
27
|
"sideEffects": false,
|
|
38
28
|
"devDependencies": {
|
|
39
|
-
"@angular-devkit/build-angular": "
|
|
40
|
-
"@angular/cli": "
|
|
41
|
-
"@angular/common": "
|
|
42
|
-
"@angular/compiler": "
|
|
43
|
-
"@angular/compiler-cli": "
|
|
44
|
-
"@angular/core": "
|
|
45
|
-
"@angular/fire": "
|
|
46
|
-
"@angular/forms": "
|
|
47
|
-
"@angular/platform-browser": "
|
|
48
|
-
"@angular/platform-browser-dynamic": "
|
|
49
|
-
"@angular/router": "
|
|
29
|
+
"@angular-devkit/build-angular": "^20.2.2",
|
|
30
|
+
"@angular/cli": "^20.2.2",
|
|
31
|
+
"@angular/common": "^20.2.2",
|
|
32
|
+
"@angular/compiler": "^20.2.2",
|
|
33
|
+
"@angular/compiler-cli": "^20.2.2",
|
|
34
|
+
"@angular/core": "^20.2.2",
|
|
35
|
+
"@angular/fire": "^20.0.1",
|
|
36
|
+
"@angular/forms": "^20.2.2",
|
|
37
|
+
"@angular/platform-browser": "^20.2.2",
|
|
38
|
+
"@angular/platform-browser-dynamic": "^20.2.2",
|
|
39
|
+
"@angular/router": "^20.2.2",
|
|
50
40
|
"@testing-library/angular": "^18.1.0",
|
|
51
|
-
"@testing-library/jest-dom": "
|
|
41
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
52
42
|
"@types/jest": "^30.0.0",
|
|
53
|
-
"@types/node": "
|
|
54
|
-
"firebase": "
|
|
43
|
+
"@types/node": "^24.3.1",
|
|
44
|
+
"firebase": "^11.10.0",
|
|
55
45
|
"jest": "^30.2.0",
|
|
56
46
|
"jest-environment-jsdom": "^30.2.0",
|
|
57
47
|
"jest-preset-angular": "^15.0.2",
|
|
58
48
|
"jsdom": "^25.0.0",
|
|
59
49
|
"ng-packagr": "^20.0.0",
|
|
60
|
-
"rxjs": "
|
|
50
|
+
"rxjs": "^7.8.2",
|
|
61
51
|
"ts-node": "^10.9.2",
|
|
62
52
|
"tsx": "^4.20.6",
|
|
63
|
-
"typescript": "
|
|
53
|
+
"typescript": "^5.9.2",
|
|
64
54
|
"whatwg-fetch": "^3.6.20",
|
|
65
|
-
"zod": "
|
|
66
|
-
"zone.js": "
|
|
55
|
+
"zod": "4.1.12",
|
|
56
|
+
"zone.js": "^0.15.0"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "pnpm run update:version && pnpm run build:logos && ng-packagr -p ng-package.json",
|
|
60
|
+
"update:version": "tsx update-version.ts",
|
|
61
|
+
"build:logos": "tsx generate-logos.ts",
|
|
62
|
+
"test": "jest --silent",
|
|
63
|
+
"version:bump": "pnpm version patch",
|
|
64
|
+
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
|
|
65
|
+
"publish:npm": "../../publish.sh",
|
|
66
|
+
"release": "pnpm pack --pack-destination ../../releases/"
|
|
67
67
|
}
|
|
68
|
-
}
|
|
68
|
+
}
|