academe-kit 0.3.7 → 0.3.8
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/dist/index.d.ts +8028 -3252
- package/dist/index.esm.js +331 -43
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +331 -43
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/services/AuthService.d.ts +132 -0
- package/dist/types/services/CertificateService.d.ts +221 -0
- package/dist/types/services/ClassroomService.d.ts +55 -4
- package/dist/types/services/GroupService.d.ts +515 -0
- package/dist/types/services/InstitutionService.d.ts +26 -19
- package/dist/types/services/QuizService.d.ts +223 -0
- package/dist/types/services/SeatCodeService.d.ts +456 -0
- package/dist/types/services/UserService.d.ts +112 -16
- package/dist/types/services/index.d.ts +32 -17
- package/dist/types/types/academe-api.d.ts +3598 -534
- package/dist/types/types/index.d.ts +18 -9
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4382,13 +4382,13 @@ function createUserService(apiClient) {
|
|
|
4382
4382
|
* Get current authenticated user
|
|
4383
4383
|
*/
|
|
4384
4384
|
getMe() {
|
|
4385
|
-
return apiClient.GET(
|
|
4385
|
+
return apiClient.GET("/users/me");
|
|
4386
4386
|
},
|
|
4387
4387
|
/**
|
|
4388
4388
|
* List all users with optional filters
|
|
4389
4389
|
*/
|
|
4390
4390
|
getUsers(params) {
|
|
4391
|
-
return apiClient.GET(
|
|
4391
|
+
return apiClient.GET("/users", {
|
|
4392
4392
|
params: { query: params },
|
|
4393
4393
|
});
|
|
4394
4394
|
},
|
|
@@ -4396,7 +4396,7 @@ function createUserService(apiClient) {
|
|
|
4396
4396
|
* Get user by ID
|
|
4397
4397
|
*/
|
|
4398
4398
|
getUserById(id) {
|
|
4399
|
-
return apiClient.GET(
|
|
4399
|
+
return apiClient.GET("/users/{id}", {
|
|
4400
4400
|
params: { path: { id } },
|
|
4401
4401
|
});
|
|
4402
4402
|
},
|
|
@@ -4404,7 +4404,12 @@ function createUserService(apiClient) {
|
|
|
4404
4404
|
* Create a new user
|
|
4405
4405
|
*/
|
|
4406
4406
|
createUser(body) {
|
|
4407
|
-
return apiClient.POST(
|
|
4407
|
+
return apiClient.POST("/users", {
|
|
4408
|
+
body,
|
|
4409
|
+
});
|
|
4410
|
+
},
|
|
4411
|
+
createPublicUser(body) {
|
|
4412
|
+
return apiClient.POST("/users/register", {
|
|
4408
4413
|
body,
|
|
4409
4414
|
});
|
|
4410
4415
|
},
|
|
@@ -4412,7 +4417,7 @@ function createUserService(apiClient) {
|
|
|
4412
4417
|
* Update user information
|
|
4413
4418
|
*/
|
|
4414
4419
|
updateUser(id, body) {
|
|
4415
|
-
return apiClient.PATCH(
|
|
4420
|
+
return apiClient.PATCH("/users/{id}", {
|
|
4416
4421
|
params: { path: { id } },
|
|
4417
4422
|
body,
|
|
4418
4423
|
});
|
|
@@ -4421,7 +4426,7 @@ function createUserService(apiClient) {
|
|
|
4421
4426
|
* Delete user
|
|
4422
4427
|
*/
|
|
4423
4428
|
deleteUser(id) {
|
|
4424
|
-
return apiClient.DELETE(
|
|
4429
|
+
return apiClient.DELETE("/users/{id}", {
|
|
4425
4430
|
params: { path: { id } },
|
|
4426
4431
|
});
|
|
4427
4432
|
},
|
|
@@ -4429,7 +4434,7 @@ function createUserService(apiClient) {
|
|
|
4429
4434
|
* Get user's groups
|
|
4430
4435
|
*/
|
|
4431
4436
|
getUserGroups(id) {
|
|
4432
|
-
return apiClient.GET(
|
|
4437
|
+
return apiClient.GET("/users/{id}/groups", {
|
|
4433
4438
|
params: { path: { id } },
|
|
4434
4439
|
});
|
|
4435
4440
|
},
|
|
@@ -4437,7 +4442,7 @@ function createUserService(apiClient) {
|
|
|
4437
4442
|
* Get user's certificates
|
|
4438
4443
|
*/
|
|
4439
4444
|
getUserCertificates(id) {
|
|
4440
|
-
return apiClient.GET(
|
|
4445
|
+
return apiClient.GET("/users/{id}/certificates", {
|
|
4441
4446
|
params: { path: { id } },
|
|
4442
4447
|
});
|
|
4443
4448
|
},
|
|
@@ -4445,7 +4450,7 @@ function createUserService(apiClient) {
|
|
|
4445
4450
|
* Get user's institutions
|
|
4446
4451
|
*/
|
|
4447
4452
|
getUserInstitutions(id) {
|
|
4448
|
-
return apiClient.GET(
|
|
4453
|
+
return apiClient.GET("/users/{id}/institutions", {
|
|
4449
4454
|
params: { path: { id } },
|
|
4450
4455
|
});
|
|
4451
4456
|
},
|
|
@@ -4453,7 +4458,7 @@ function createUserService(apiClient) {
|
|
|
4453
4458
|
* Sync user with Keycloak
|
|
4454
4459
|
*/
|
|
4455
4460
|
syncUser(id) {
|
|
4456
|
-
return apiClient.POST(
|
|
4461
|
+
return apiClient.POST("/users/{id}/sync", {
|
|
4457
4462
|
params: { path: { id } },
|
|
4458
4463
|
});
|
|
4459
4464
|
},
|
|
@@ -4463,37 +4468,37 @@ function createUserService(apiClient) {
|
|
|
4463
4468
|
function createInstitutionService(apiClient) {
|
|
4464
4469
|
return {
|
|
4465
4470
|
getAll() {
|
|
4466
|
-
return apiClient.GET(
|
|
4471
|
+
return apiClient.GET("/institutions");
|
|
4467
4472
|
},
|
|
4468
4473
|
getById(id) {
|
|
4469
|
-
return apiClient.GET(
|
|
4474
|
+
return apiClient.GET("/institutions/{id}", { params: { path: { id } } });
|
|
4470
4475
|
},
|
|
4471
4476
|
// Institution Groups
|
|
4472
|
-
|
|
4473
|
-
return apiClient.GET(
|
|
4477
|
+
getSeats(institutionId) {
|
|
4478
|
+
return apiClient.GET("/institutions/{institutionId}/seats", {
|
|
4474
4479
|
params: { path: { institutionId } },
|
|
4475
4480
|
});
|
|
4476
4481
|
},
|
|
4477
|
-
|
|
4478
|
-
return apiClient.POST(
|
|
4482
|
+
addSeats(institutionId, data) {
|
|
4483
|
+
return apiClient.POST("/institutions/{institutionId}/seats", {
|
|
4479
4484
|
params: { path: { institutionId } },
|
|
4480
4485
|
body: data,
|
|
4481
4486
|
});
|
|
4482
4487
|
},
|
|
4483
|
-
|
|
4484
|
-
return apiClient.DELETE(
|
|
4488
|
+
removeSeats(institutionId, groupId) {
|
|
4489
|
+
return apiClient.DELETE("/institutions/{institutionId}/seats/{groupId}", {
|
|
4485
4490
|
params: { path: { institutionId, groupId } },
|
|
4486
4491
|
});
|
|
4487
4492
|
},
|
|
4488
|
-
|
|
4489
|
-
return apiClient.PATCH(
|
|
4493
|
+
updateSeats(institutionId, groupId, data) {
|
|
4494
|
+
return apiClient.PATCH("/institutions/{institutionId}/seats/{groupId}", {
|
|
4490
4495
|
params: { path: { institutionId, groupId } },
|
|
4491
4496
|
body: data,
|
|
4492
4497
|
});
|
|
4493
4498
|
},
|
|
4494
4499
|
// Institution Classrooms
|
|
4495
4500
|
getClassrooms(institutionId, options) {
|
|
4496
|
-
return apiClient.GET(
|
|
4501
|
+
return apiClient.GET("/institutions/{institutionId}/classrooms", {
|
|
4497
4502
|
params: {
|
|
4498
4503
|
path: { institutionId },
|
|
4499
4504
|
query: options,
|
|
@@ -4501,30 +4506,30 @@ function createInstitutionService(apiClient) {
|
|
|
4501
4506
|
});
|
|
4502
4507
|
},
|
|
4503
4508
|
getClassroomById(institutionId, classroomId) {
|
|
4504
|
-
return apiClient.GET(
|
|
4509
|
+
return apiClient.GET("/institutions/{institutionId}/classrooms/{classroomId}", {
|
|
4505
4510
|
params: { path: { institutionId, classroomId } },
|
|
4506
4511
|
});
|
|
4507
4512
|
},
|
|
4508
4513
|
addClassroom(institutionId, data) {
|
|
4509
|
-
return apiClient.POST(
|
|
4514
|
+
return apiClient.POST("/institutions/{institutionId}/classrooms", {
|
|
4510
4515
|
params: { path: { institutionId } },
|
|
4511
4516
|
body: data,
|
|
4512
4517
|
});
|
|
4513
4518
|
},
|
|
4514
4519
|
updateClassroom(institutionId, classroomId, data) {
|
|
4515
|
-
return apiClient.PATCH(
|
|
4520
|
+
return apiClient.PATCH("/institutions/{institutionId}/classrooms/{classroomId}", {
|
|
4516
4521
|
params: { path: { institutionId, classroomId } },
|
|
4517
4522
|
body: data,
|
|
4518
4523
|
});
|
|
4519
4524
|
},
|
|
4520
4525
|
removeClassroom(institutionId, classroomId) {
|
|
4521
|
-
return apiClient.DELETE(
|
|
4526
|
+
return apiClient.DELETE("/institutions/{institutionId}/classrooms/{classroomId}", {
|
|
4522
4527
|
params: { path: { institutionId, classroomId } },
|
|
4523
4528
|
});
|
|
4524
4529
|
},
|
|
4525
4530
|
// Institution Users (list all users with filters)
|
|
4526
4531
|
getUsers(institutionId, options) {
|
|
4527
|
-
return apiClient.GET(
|
|
4532
|
+
return apiClient.GET("/institutions/{institutionId}/users", {
|
|
4528
4533
|
params: {
|
|
4529
4534
|
path: { institutionId },
|
|
4530
4535
|
query: options,
|
|
@@ -4533,45 +4538,45 @@ function createInstitutionService(apiClient) {
|
|
|
4533
4538
|
},
|
|
4534
4539
|
// Institution Registrations (Users in Institution)
|
|
4535
4540
|
getRegistrations(institutionId) {
|
|
4536
|
-
return apiClient.GET(
|
|
4541
|
+
return apiClient.GET("/institutions/{institutionId}/registrations", {
|
|
4537
4542
|
params: { path: { institutionId } },
|
|
4538
4543
|
});
|
|
4539
4544
|
},
|
|
4540
4545
|
getRegistrationById(institutionId, registrationId) {
|
|
4541
|
-
return apiClient.GET(
|
|
4546
|
+
return apiClient.GET("/institutions/{institutionId}/registrations/{registrationId}", {
|
|
4542
4547
|
params: { path: { institutionId, registrationId } },
|
|
4543
4548
|
});
|
|
4544
4549
|
},
|
|
4545
4550
|
getRegistrationByUserId(institutionId, userId) {
|
|
4546
|
-
return apiClient.GET(
|
|
4551
|
+
return apiClient.GET("/institutions/{institutionId}/registrations/user/{userId}", {
|
|
4547
4552
|
params: { path: { institutionId, userId } },
|
|
4548
4553
|
});
|
|
4549
4554
|
},
|
|
4550
4555
|
registerUser(institutionId, data) {
|
|
4551
|
-
return apiClient.POST(
|
|
4556
|
+
return apiClient.POST("/institutions/{institutionId}/registrations", {
|
|
4552
4557
|
params: { path: { institutionId } },
|
|
4553
4558
|
body: data,
|
|
4554
4559
|
});
|
|
4555
4560
|
},
|
|
4556
4561
|
updateRegistration(institutionId, registrationId, data) {
|
|
4557
|
-
return apiClient.PATCH(
|
|
4562
|
+
return apiClient.PATCH("/institutions/{institutionId}/registrations/{registrationId}", {
|
|
4558
4563
|
params: { path: { institutionId, registrationId } },
|
|
4559
4564
|
body: data,
|
|
4560
4565
|
});
|
|
4561
4566
|
},
|
|
4562
4567
|
assignUserToClassroom(institutionId, registrationId, data) {
|
|
4563
|
-
return apiClient.PATCH(
|
|
4568
|
+
return apiClient.PATCH("/institutions/{institutionId}/registrations/{registrationId}/classroom", {
|
|
4564
4569
|
params: { path: { institutionId, registrationId } },
|
|
4565
4570
|
body: data,
|
|
4566
4571
|
});
|
|
4567
4572
|
},
|
|
4568
4573
|
removeRegistration(institutionId, registrationId) {
|
|
4569
|
-
return apiClient.DELETE(
|
|
4574
|
+
return apiClient.DELETE("/institutions/{institutionId}/registrations/{registrationId}", {
|
|
4570
4575
|
params: { path: { institutionId, registrationId } },
|
|
4571
4576
|
});
|
|
4572
4577
|
},
|
|
4573
4578
|
getGroupUsers(institutionId) {
|
|
4574
|
-
return apiClient.GET(
|
|
4579
|
+
return apiClient.GET("/institutions/{institutionId}/seats/users", {
|
|
4575
4580
|
params: { path: { institutionId } },
|
|
4576
4581
|
});
|
|
4577
4582
|
},
|
|
@@ -4681,13 +4686,13 @@ function createClassroomService(apiClient) {
|
|
|
4681
4686
|
* List all classrooms
|
|
4682
4687
|
*/
|
|
4683
4688
|
getAll() {
|
|
4684
|
-
return apiClient.GET(
|
|
4689
|
+
return apiClient.GET("/classrooms");
|
|
4685
4690
|
},
|
|
4686
4691
|
/**
|
|
4687
4692
|
* Get classroom by ID
|
|
4688
4693
|
*/
|
|
4689
4694
|
getById(id) {
|
|
4690
|
-
return apiClient.GET(
|
|
4695
|
+
return apiClient.GET("/classrooms/{id}", {
|
|
4691
4696
|
params: { path: { id } },
|
|
4692
4697
|
});
|
|
4693
4698
|
},
|
|
@@ -4695,18 +4700,25 @@ function createClassroomService(apiClient) {
|
|
|
4695
4700
|
* Get classrooms by institution ID
|
|
4696
4701
|
*/
|
|
4697
4702
|
getByInstitution(institutionId, params) {
|
|
4698
|
-
return apiClient.GET(
|
|
4703
|
+
return apiClient.GET("/classrooms/institution/{id}", {
|
|
4699
4704
|
params: {
|
|
4700
4705
|
path: { id: institutionId },
|
|
4701
4706
|
query: params,
|
|
4702
4707
|
},
|
|
4703
4708
|
});
|
|
4704
4709
|
},
|
|
4710
|
+
getBySeatCode(seatCodeId) {
|
|
4711
|
+
return apiClient.GET("/institutions/seat-code/{seatCodeId}/classrooms", {
|
|
4712
|
+
params: {
|
|
4713
|
+
path: { seatCodeId },
|
|
4714
|
+
},
|
|
4715
|
+
});
|
|
4716
|
+
},
|
|
4705
4717
|
/**
|
|
4706
4718
|
* Create a new classroom
|
|
4707
4719
|
*/
|
|
4708
4720
|
create(data) {
|
|
4709
|
-
return apiClient.POST(
|
|
4721
|
+
return apiClient.POST("/classrooms", {
|
|
4710
4722
|
body: data,
|
|
4711
4723
|
});
|
|
4712
4724
|
},
|
|
@@ -4714,7 +4726,7 @@ function createClassroomService(apiClient) {
|
|
|
4714
4726
|
* Update classroom
|
|
4715
4727
|
*/
|
|
4716
4728
|
update(id, data) {
|
|
4717
|
-
return apiClient.PATCH(
|
|
4729
|
+
return apiClient.PATCH("/classrooms/{id}", {
|
|
4718
4730
|
params: { path: { id } },
|
|
4719
4731
|
body: data,
|
|
4720
4732
|
});
|
|
@@ -4723,7 +4735,7 @@ function createClassroomService(apiClient) {
|
|
|
4723
4735
|
* Delete classroom
|
|
4724
4736
|
*/
|
|
4725
4737
|
delete(id) {
|
|
4726
|
-
return apiClient.DELETE(
|
|
4738
|
+
return apiClient.DELETE("/classrooms/{id}", {
|
|
4727
4739
|
params: { path: { id } },
|
|
4728
4740
|
});
|
|
4729
4741
|
},
|
|
@@ -4917,6 +4929,277 @@ function createGuardianService(apiClient) {
|
|
|
4917
4929
|
};
|
|
4918
4930
|
}
|
|
4919
4931
|
|
|
4932
|
+
function createAuthService(apiClient) {
|
|
4933
|
+
return {
|
|
4934
|
+
/**
|
|
4935
|
+
* Generate TheMembers JWT token for authenticated user
|
|
4936
|
+
* @description Generates a signed JWT token for TheMembers platform authentication.
|
|
4937
|
+
* This endpoint requires the user to be already authenticated with Keycloak.
|
|
4938
|
+
*/
|
|
4939
|
+
getToken() {
|
|
4940
|
+
return apiClient.POST('/auth/token');
|
|
4941
|
+
},
|
|
4942
|
+
};
|
|
4943
|
+
}
|
|
4944
|
+
|
|
4945
|
+
function createGroupService(apiClient) {
|
|
4946
|
+
return {
|
|
4947
|
+
/**
|
|
4948
|
+
* List all groups
|
|
4949
|
+
*/
|
|
4950
|
+
getAll() {
|
|
4951
|
+
return apiClient.GET("/groups");
|
|
4952
|
+
},
|
|
4953
|
+
/**
|
|
4954
|
+
* Get group by ID
|
|
4955
|
+
*/
|
|
4956
|
+
getById(id) {
|
|
4957
|
+
return apiClient.GET("/groups/{id}", {
|
|
4958
|
+
params: { path: { id } },
|
|
4959
|
+
});
|
|
4960
|
+
},
|
|
4961
|
+
/**
|
|
4962
|
+
* Create a new group
|
|
4963
|
+
*/
|
|
4964
|
+
create(data) {
|
|
4965
|
+
return apiClient.POST("/groups", {
|
|
4966
|
+
body: data,
|
|
4967
|
+
});
|
|
4968
|
+
},
|
|
4969
|
+
/**
|
|
4970
|
+
* Update group
|
|
4971
|
+
*/
|
|
4972
|
+
update(id, data) {
|
|
4973
|
+
return apiClient.PATCH("/groups/{id}", {
|
|
4974
|
+
params: { path: { id } },
|
|
4975
|
+
body: data,
|
|
4976
|
+
});
|
|
4977
|
+
},
|
|
4978
|
+
/**
|
|
4979
|
+
* Delete group
|
|
4980
|
+
*/
|
|
4981
|
+
delete(id) {
|
|
4982
|
+
return apiClient.DELETE("/groups/{id}", {
|
|
4983
|
+
params: { path: { id } },
|
|
4984
|
+
});
|
|
4985
|
+
},
|
|
4986
|
+
/**
|
|
4987
|
+
* Get group users
|
|
4988
|
+
*/
|
|
4989
|
+
getUsers(id) {
|
|
4990
|
+
return apiClient.GET("/groups/{id}/users", {
|
|
4991
|
+
params: { path: { id } },
|
|
4992
|
+
});
|
|
4993
|
+
},
|
|
4994
|
+
/**
|
|
4995
|
+
* Get group roles
|
|
4996
|
+
*/
|
|
4997
|
+
getRoles(id) {
|
|
4998
|
+
return apiClient.GET("/groups/{id}/roles", {
|
|
4999
|
+
params: { path: { id } },
|
|
5000
|
+
});
|
|
5001
|
+
},
|
|
5002
|
+
/**
|
|
5003
|
+
* Assign user to group
|
|
5004
|
+
*/
|
|
5005
|
+
assignUser(data) {
|
|
5006
|
+
return apiClient.POST("/groups/assign", {
|
|
5007
|
+
body: data,
|
|
5008
|
+
});
|
|
5009
|
+
},
|
|
5010
|
+
/**
|
|
5011
|
+
* Remove user from group
|
|
5012
|
+
*/
|
|
5013
|
+
removeUser(groupId, userId) {
|
|
5014
|
+
return apiClient.DELETE("/groups/{groupId}/users/{userId}", {
|
|
5015
|
+
params: { path: { groupId, userId } },
|
|
5016
|
+
});
|
|
5017
|
+
},
|
|
5018
|
+
/**
|
|
5019
|
+
* Assign role to group
|
|
5020
|
+
*/
|
|
5021
|
+
assignRole(groupId, roleId) {
|
|
5022
|
+
return apiClient.POST("/groups/roles", {
|
|
5023
|
+
body: { groupId, roleId },
|
|
5024
|
+
});
|
|
5025
|
+
},
|
|
5026
|
+
/**
|
|
5027
|
+
* Delete group role
|
|
5028
|
+
*/
|
|
5029
|
+
deleteRole(id) {
|
|
5030
|
+
return apiClient.DELETE("/groups/roles/{id}", {
|
|
5031
|
+
params: { path: { id } },
|
|
5032
|
+
});
|
|
5033
|
+
},
|
|
5034
|
+
/**
|
|
5035
|
+
* Update group role
|
|
5036
|
+
*/
|
|
5037
|
+
updateRole(id, data) {
|
|
5038
|
+
return apiClient.PATCH("/groups/roles/{id}", {
|
|
5039
|
+
params: { path: { id } },
|
|
5040
|
+
body: data,
|
|
5041
|
+
});
|
|
5042
|
+
},
|
|
5043
|
+
};
|
|
5044
|
+
}
|
|
5045
|
+
|
|
5046
|
+
function createQuizService(apiClient) {
|
|
5047
|
+
return {
|
|
5048
|
+
/**
|
|
5049
|
+
* List all quizzes
|
|
5050
|
+
*/
|
|
5051
|
+
getAll(params) {
|
|
5052
|
+
return apiClient.GET('/quiz', {
|
|
5053
|
+
params: {
|
|
5054
|
+
query: params,
|
|
5055
|
+
},
|
|
5056
|
+
});
|
|
5057
|
+
},
|
|
5058
|
+
/**
|
|
5059
|
+
* Get quiz by ID
|
|
5060
|
+
*/
|
|
5061
|
+
getById(id) {
|
|
5062
|
+
return apiClient.GET('/quiz/{id}', {
|
|
5063
|
+
params: { path: { id } },
|
|
5064
|
+
});
|
|
5065
|
+
},
|
|
5066
|
+
/**
|
|
5067
|
+
* Create a new quiz
|
|
5068
|
+
*/
|
|
5069
|
+
create(data) {
|
|
5070
|
+
return apiClient.POST('/quiz', {
|
|
5071
|
+
body: data,
|
|
5072
|
+
});
|
|
5073
|
+
},
|
|
5074
|
+
/**
|
|
5075
|
+
* Update quiz
|
|
5076
|
+
*/
|
|
5077
|
+
update(id, data) {
|
|
5078
|
+
return apiClient.PATCH('/quiz/{id}', {
|
|
5079
|
+
params: { path: { id } },
|
|
5080
|
+
body: data,
|
|
5081
|
+
});
|
|
5082
|
+
},
|
|
5083
|
+
/**
|
|
5084
|
+
* Delete quiz
|
|
5085
|
+
*/
|
|
5086
|
+
delete(id) {
|
|
5087
|
+
return apiClient.DELETE('/quiz/{id}', {
|
|
5088
|
+
params: { path: { id } },
|
|
5089
|
+
});
|
|
5090
|
+
},
|
|
5091
|
+
};
|
|
5092
|
+
}
|
|
5093
|
+
|
|
5094
|
+
function createCertificateService(apiClient) {
|
|
5095
|
+
return {
|
|
5096
|
+
/**
|
|
5097
|
+
* List all certificates
|
|
5098
|
+
*/
|
|
5099
|
+
getAll() {
|
|
5100
|
+
return apiClient.GET('/certificates');
|
|
5101
|
+
},
|
|
5102
|
+
/**
|
|
5103
|
+
* Get certificate by ID
|
|
5104
|
+
*/
|
|
5105
|
+
getById(id) {
|
|
5106
|
+
return apiClient.GET('/certificates/{id}', {
|
|
5107
|
+
params: { path: { id } },
|
|
5108
|
+
});
|
|
5109
|
+
},
|
|
5110
|
+
/**
|
|
5111
|
+
* Create a new certificate
|
|
5112
|
+
*/
|
|
5113
|
+
create(data) {
|
|
5114
|
+
return apiClient.POST('/certificates', {
|
|
5115
|
+
body: data,
|
|
5116
|
+
});
|
|
5117
|
+
},
|
|
5118
|
+
/**
|
|
5119
|
+
* Update certificate
|
|
5120
|
+
*/
|
|
5121
|
+
update(id, data) {
|
|
5122
|
+
return apiClient.PATCH('/certificates/{id}', {
|
|
5123
|
+
params: { path: { id } },
|
|
5124
|
+
body: data,
|
|
5125
|
+
});
|
|
5126
|
+
},
|
|
5127
|
+
/**
|
|
5128
|
+
* Delete certificate
|
|
5129
|
+
*/
|
|
5130
|
+
delete(id) {
|
|
5131
|
+
return apiClient.DELETE('/certificates/{id}', {
|
|
5132
|
+
params: { path: { id } },
|
|
5133
|
+
});
|
|
5134
|
+
},
|
|
5135
|
+
};
|
|
5136
|
+
}
|
|
5137
|
+
|
|
5138
|
+
function createSeatCodeService(apiClient) {
|
|
5139
|
+
return {
|
|
5140
|
+
getAll(institutionId, options) {
|
|
5141
|
+
return apiClient.GET("/institutions/{institutionId}/seat-codes", {
|
|
5142
|
+
params: {
|
|
5143
|
+
path: { institutionId },
|
|
5144
|
+
query: options,
|
|
5145
|
+
},
|
|
5146
|
+
});
|
|
5147
|
+
},
|
|
5148
|
+
generate(institutionId, data) {
|
|
5149
|
+
return apiClient.POST("/institutions/{institutionId}/seat-codes", {
|
|
5150
|
+
params: { path: { institutionId } },
|
|
5151
|
+
body: data,
|
|
5152
|
+
});
|
|
5153
|
+
},
|
|
5154
|
+
getById(institutionId, seatCodeId) {
|
|
5155
|
+
return apiClient.GET("/institutions/{institutionId}/seat-codes/{seatCodeId}", {
|
|
5156
|
+
params: { path: { institutionId, seatCodeId } },
|
|
5157
|
+
});
|
|
5158
|
+
},
|
|
5159
|
+
update(institutionId, seatCodeId, data) {
|
|
5160
|
+
return apiClient.PATCH("/institutions/{institutionId}/seat-codes/{seatCodeId}", {
|
|
5161
|
+
params: { path: { institutionId, seatCodeId } },
|
|
5162
|
+
body: data,
|
|
5163
|
+
});
|
|
5164
|
+
},
|
|
5165
|
+
delete(institutionId, seatCodeId) {
|
|
5166
|
+
return apiClient.DELETE("/institutions/{institutionId}/seat-codes/{seatCodeId}", {
|
|
5167
|
+
params: { path: { institutionId, seatCodeId } },
|
|
5168
|
+
});
|
|
5169
|
+
},
|
|
5170
|
+
getBySeatId(institutionId, seatId) {
|
|
5171
|
+
return apiClient.GET("/institutions/{institutionId}/seats/{seatId}/codes", {
|
|
5172
|
+
params: { path: { institutionId, seatId } },
|
|
5173
|
+
});
|
|
5174
|
+
},
|
|
5175
|
+
deleteAllBySeatId(institutionId, seatId) {
|
|
5176
|
+
return apiClient.DELETE("/institutions/{institutionId}/seats/{seatId}/codes", {
|
|
5177
|
+
params: { path: { institutionId, seatId } },
|
|
5178
|
+
});
|
|
5179
|
+
},
|
|
5180
|
+
getAvailableBySeatId(institutionId, seatId) {
|
|
5181
|
+
return apiClient.GET("/institutions/{institutionId}/seats/{seatId}/codes/available", {
|
|
5182
|
+
params: { path: { institutionId, seatId } },
|
|
5183
|
+
});
|
|
5184
|
+
},
|
|
5185
|
+
validate(code) {
|
|
5186
|
+
return apiClient.GET("/seat-codes/validate/{code}", {
|
|
5187
|
+
params: { path: { code } },
|
|
5188
|
+
});
|
|
5189
|
+
},
|
|
5190
|
+
reserve(code) {
|
|
5191
|
+
return apiClient.POST("/seat-codes/reserve/{code}", {
|
|
5192
|
+
params: { path: { code } },
|
|
5193
|
+
});
|
|
5194
|
+
},
|
|
5195
|
+
sendCode(data) {
|
|
5196
|
+
return apiClient.POST("/seat-codes/send-code", {
|
|
5197
|
+
body: data,
|
|
5198
|
+
});
|
|
5199
|
+
},
|
|
5200
|
+
};
|
|
5201
|
+
}
|
|
5202
|
+
|
|
4920
5203
|
function createAcademeApiClient(baseUrl) {
|
|
4921
5204
|
return createClient({ baseUrl });
|
|
4922
5205
|
}
|
|
@@ -4930,6 +5213,11 @@ function createAcademeServices(apiClient) {
|
|
|
4930
5213
|
serie: createSerieService(apiClient),
|
|
4931
5214
|
shift: createShiftService(apiClient),
|
|
4932
5215
|
guardian: createGuardianService(apiClient),
|
|
5216
|
+
auth: createAuthService(apiClient),
|
|
5217
|
+
group: createGroupService(apiClient),
|
|
5218
|
+
quiz: createQuizService(apiClient),
|
|
5219
|
+
certificate: createCertificateService(apiClient),
|
|
5220
|
+
seatCode: createSeatCodeService(apiClient),
|
|
4933
5221
|
};
|
|
4934
5222
|
}
|
|
4935
5223
|
|
|
@@ -4942,7 +5230,7 @@ var GLOBAL_ROLES;
|
|
|
4942
5230
|
GLOBAL_ROLES["GUARDIAN"] = "guardian";
|
|
4943
5231
|
})(GLOBAL_ROLES || (GLOBAL_ROLES = {}));
|
|
4944
5232
|
|
|
4945
|
-
const AcademeAuthProvider = ({ realm, hubUrl, children, clientId, keycloakUrl, apiBaseUrl,
|
|
5233
|
+
const AcademeAuthProvider = ({ realm, hubUrl, children, clientId, keycloakUrl, apiBaseUrl, skipApiUserFetch, }) => {
|
|
4946
5234
|
const oidcConfig = {
|
|
4947
5235
|
authority: `${keycloakUrl}/realms/${realm}`,
|
|
4948
5236
|
client_id: clientId,
|
|
@@ -8333,10 +8621,10 @@ function styleInject(css, ref) {
|
|
|
8333
8621
|
}
|
|
8334
8622
|
}
|
|
8335
8623
|
|
|
8336
|
-
var css_248z$1 = "*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}:root{--background:0 0% 100%;--foreground:222.2 84% 4.9%;--card:0 0% 100%;--card-foreground:222.2 84% 4.9%;--popover:0 0% 100%;--popover-foreground:222.2 84% 4.9%;--primary:222.2 47.4% 11.2%;--primary-foreground:210 40% 98%;--secondary:210 40% 96.1%;--secondary-foreground:222.2 47.4% 11.2%;--muted:210 40% 96.1%;--muted-foreground:215.4 16.3% 46.9%;--accent:210 40% 96.1%;--accent-foreground:222.2 47.4% 11.2%;--destructive:0 84.2% 60.2%;--destructive-foreground:210 40% 98%;--border:214.3 31.8% 91.4%;--input:214.3 31.8% 91.4%;--ring:222.2 84% 4.9%;--radius:0.5rem}*{border-color:hsl(var(--border))}body{background-color:hsl(var(--background));color:hsl(var(--foreground))}.flex{display:flex}.size-10{height:2.5rem;width:2.5rem}.h-screen{height:100vh}.w-screen{width:100vw}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.items-center{align-items:center}.justify-center{justify-content:center}.rounded-lg{border-radius:var(--radius)}.border-2{border-width:2px}.border-blue-600{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity,1))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity,1))}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity,1))}.text-violet-500{--tw-text-opacity:1;color:rgb(139 92 246/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}.duration-200{animation-duration:.2s}.hover\\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity,1))}.hover\\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity,1))}.hover\\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity,1))}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity,1))}.focus\\:ring-gray-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(107 114 128/var(--tw-ring-opacity,1))}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}";
|
|
8624
|
+
var css_248z$1 = "*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}:root{--background:0 0% 100%;--foreground:222.2 84% 4.9%;--card:0 0% 100%;--card-foreground:222.2 84% 4.9%;--popover:0 0% 100%;--popover-foreground:222.2 84% 4.9%;--primary:222.2 47.4% 11.2%;--primary-foreground:210 40% 98%;--secondary:210 40% 96.1%;--secondary-foreground:222.2 47.4% 11.2%;--muted:210 40% 96.1%;--muted-foreground:215.4 16.3% 46.9%;--accent:210 40% 96.1%;--accent-foreground:222.2 47.4% 11.2%;--destructive:0 84.2% 60.2%;--destructive-foreground:210 40% 98%;--border:214.3 31.8% 91.4%;--input:214.3 31.8% 91.4%;--ring:222.2 84% 4.9%;--radius:0.5rem}*{border-color:hsl(var(--border))}body{background-color:hsl(var(--background));color:hsl(var(--foreground))}.flex{display:flex}.table{display:table}.size-10{height:2.5rem;width:2.5rem}.h-screen{height:100vh}.w-screen{width:100vw}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.items-center{align-items:center}.justify-center{justify-content:center}.rounded-lg{border-radius:var(--radius)}.border-2{border-width:2px}.border-blue-600{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity,1))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity,1))}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity,1))}.text-violet-500{--tw-text-opacity:1;color:rgb(139 92 246/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}.duration-200{animation-duration:.2s}.hover\\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity,1))}.hover\\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity,1))}.hover\\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity,1))}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity,1))}.focus\\:ring-gray-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(107 114 128/var(--tw-ring-opacity,1))}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}";
|
|
8337
8625
|
styleInject(css_248z$1,{"insertAt":"top"});
|
|
8338
8626
|
|
|
8339
|
-
var css_248z = "*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}.flex{display:flex}.size-10{height:2.5rem;width:2.5rem}.h-screen{height:100vh}.w-screen{width:100vw}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.items-center{align-items:center}.justify-center{justify-content:center}.rounded-lg{border-radius:var(--radius)}.border-2{border-width:2px}.border-blue-600{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity,1))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity,1))}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity,1))}.text-violet-500{--tw-text-opacity:1;color:rgb(139 92 246/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}.duration-200{animation-duration:.2s}.hover\\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity,1))}.hover\\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity,1))}.hover\\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity,1))}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity,1))}.focus\\:ring-gray-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(107 114 128/var(--tw-ring-opacity,1))}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}";
|
|
8627
|
+
var css_248z = "*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}.flex{display:flex}.table{display:table}.size-10{height:2.5rem;width:2.5rem}.h-screen{height:100vh}.w-screen{width:100vw}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.items-center{align-items:center}.justify-center{justify-content:center}.rounded-lg{border-radius:var(--radius)}.border-2{border-width:2px}.border-blue-600{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity,1))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity,1))}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity,1))}.text-violet-500{--tw-text-opacity:1;color:rgb(139 92 246/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}.duration-200{animation-duration:.2s}.hover\\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity,1))}.hover\\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity,1))}.hover\\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity,1))}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity,1))}.focus\\:ring-gray-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(107 114 128/var(--tw-ring-opacity,1))}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}";
|
|
8340
8628
|
styleInject(css_248z,{"insertAt":"top"});
|
|
8341
8629
|
|
|
8342
8630
|
var BACKOFFICE_ROLES;
|