Skip to content

Commit bbff95b

Browse files
committed
fix: While Using POPUP mode, we click on login button multiple time it opens multiple popup instead of focusing already opened
1 parent 7adde5d commit bbff95b

31 files changed

+12185
-14257
lines changed

angular.json

+20-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prefix": "lib",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-ng-packagr:build",
13+
"builder": "@angular-devkit/build-angular:ng-packagr",
1414
"options": {
1515
"tsConfig": "projects/lib/tsconfig.lib.json",
1616
"project": "projects/lib/ng-package.json"
@@ -44,7 +44,6 @@
4444
"build": {
4545
"builder": "@angular-devkit/build-angular:browser",
4646
"options": {
47-
"aot": true,
4847
"outputPath": "dist/sample",
4948
"index": "projects/sample/src/index.html",
5049
"main": "projects/sample/src/main.ts",
@@ -59,7 +58,13 @@
5958
"projects/sample/src/styles.css",
6059
"node_modules/bootstrap/dist/css/bootstrap.css"
6160
],
62-
"scripts": []
61+
"scripts": [],
62+
"vendorChunk": true,
63+
"extractLicenses": false,
64+
"buildOptimizer": false,
65+
"sourceMap": true,
66+
"optimization": false,
67+
"namedChunks": true
6368
},
6469
"configurations": {
6570
"production": {
@@ -78,14 +83,13 @@
7883
"optimization": true,
7984
"outputHashing": "all",
8085
"sourceMap": false,
81-
"extractCss": true,
8286
"namedChunks": false,
83-
"aot": true,
8487
"extractLicenses": true,
8588
"vendorChunk": false,
8689
"buildOptimizer": true
8790
}
88-
}
91+
},
92+
"defaultConfiguration": ""
8993
},
9094
"serve": {
9195
"builder": "@angular-devkit/build-angular:dev-server",
@@ -156,7 +160,13 @@
156160
"projects/quickstart-demo/src/assets"
157161
],
158162
"styles": ["projects/quickstart-demo/src/styles.css"],
159-
"scripts": []
163+
"scripts": [],
164+
"vendorChunk": true,
165+
"extractLicenses": false,
166+
"buildOptimizer": false,
167+
"sourceMap": true,
168+
"optimization": false,
169+
"namedChunks": true
160170
},
161171
"configurations": {
162172
"production": {
@@ -169,7 +179,6 @@
169179
"optimization": true,
170180
"outputHashing": "all",
171181
"sourceMap": false,
172-
"extractCss": true,
173182
"namedChunks": false,
174183
"aot": true,
175184
"extractLicenses": true,
@@ -183,7 +192,8 @@
183192
}
184193
]
185194
}
186-
}
195+
},
196+
"defaultConfiguration": ""
187197
},
188198
"serve": {
189199
"builder": "@angular-devkit/build-angular:dev-server",
@@ -250,7 +260,7 @@
250260
"prefix": "lib",
251261
"architect": {
252262
"build": {
253-
"builder": "@angular-devkit/build-ng-packagr:build",
263+
"builder": "@angular-devkit/build-angular:ng-packagr",
254264
"options": {
255265
"tsConfig": "projects/angular-oauth2-oidc-jwks/tsconfig.lib.json",
256266
"project": "projects/angular-oauth2-oidc-jwks/ng-package.json"

e2e/tsconfig.e2e.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../tsconfig.base.json",
2+
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
55
"module": "commonjs",

0 commit comments

Comments
 (0)