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.js
CHANGED
|
@@ -4384,13 +4384,13 @@ function createUserService(apiClient) {
|
|
|
4384
4384
|
* Get current authenticated user
|
|
4385
4385
|
*/
|
|
4386
4386
|
getMe() {
|
|
4387
|
-
return apiClient.GET(
|
|
4387
|
+
return apiClient.GET("/users/me");
|
|
4388
4388
|
},
|
|
4389
4389
|
/**
|
|
4390
4390
|
* List all users with optional filters
|
|
4391
4391
|
*/
|
|
4392
4392
|
getUsers(params) {
|
|
4393
|
-
return apiClient.GET(
|
|
4393
|
+
return apiClient.GET("/users", {
|
|
4394
4394
|
params: { query: params },
|
|
4395
4395
|
});
|
|
4396
4396
|
},
|
|
@@ -4398,7 +4398,7 @@ function createUserService(apiClient) {
|
|
|
4398
4398
|
* Get user by ID
|
|
4399
4399
|
*/
|
|
4400
4400
|
getUserById(id) {
|
|
4401
|
-
return apiClient.GET(
|
|
4401
|
+
return apiClient.GET("/users/{id}", {
|
|
4402
4402
|
params: { path: { id } },
|
|
4403
4403
|
});
|
|
4404
4404
|
},
|
|
@@ -4406,7 +4406,12 @@ function createUserService(apiClient) {
|
|
|
4406
4406
|
* Create a new user
|
|
4407
4407
|
*/
|
|
4408
4408
|
createUser(body) {
|
|
4409
|
-
return apiClient.POST(
|
|
4409
|
+
return apiClient.POST("/users", {
|
|
4410
|
+
body,
|
|
4411
|
+
});
|
|
4412
|
+
},
|
|
4413
|
+
createPublicUser(body) {
|
|
4414
|
+
return apiClient.POST("/users/register", {
|
|
4410
4415
|
body,
|
|
4411
4416
|
});
|
|
4412
4417
|
},
|
|
@@ -4414,7 +4419,7 @@ function createUserService(apiClient) {
|
|
|
4414
4419
|
* Update user information
|
|
4415
4420
|
*/
|
|
4416
4421
|
updateUser(id, body) {
|
|
4417
|
-
return apiClient.PATCH(
|
|
4422
|
+
return apiClient.PATCH("/users/{id}", {
|
|
4418
4423
|
params: { path: { id } },
|
|
4419
4424
|
body,
|
|
4420
4425
|
});
|
|
@@ -4423,7 +4428,7 @@ function createUserService(apiClient) {
|
|
|
4423
4428
|
* Delete user
|
|
4424
4429
|
*/
|
|
4425
4430
|
deleteUser(id) {
|
|
4426
|
-
return apiClient.DELETE(
|
|
4431
|
+
return apiClient.DELETE("/users/{id}", {
|
|
4427
4432
|
params: { path: { id } },
|
|
4428
4433
|
});
|
|
4429
4434
|
},
|
|
@@ -4431,7 +4436,7 @@ function createUserService(apiClient) {
|
|
|
4431
4436
|
* Get user's groups
|
|
4432
4437
|
*/
|
|
4433
4438
|
getUserGroups(id) {
|
|
4434
|
-
return apiClient.GET(
|
|
4439
|
+
return apiClient.GET("/users/{id}/groups", {
|
|
4435
4440
|
params: { path: { id } },
|
|
4436
4441
|
});
|
|
4437
4442
|
},
|
|
@@ -4439,7 +4444,7 @@ function createUserService(apiClient) {
|
|
|
4439
4444
|
* Get user's certificates
|
|
4440
4445
|
*/
|
|
4441
4446
|
getUserCertificates(id) {
|
|
4442
|
-
return apiClient.GET(
|
|
4447
|
+
return apiClient.GET("/users/{id}/certificates", {
|
|
4443
4448
|
params: { path: { id } },
|
|
4444
4449
|
});
|
|
4445
4450
|
},
|
|
@@ -4447,7 +4452,7 @@ function createUserService(apiClient) {
|
|
|
4447
4452
|
* Get user's institutions
|
|
4448
4453
|
*/
|
|
4449
4454
|
getUserInstitutions(id) {
|
|
4450
|
-
return apiClient.GET(
|
|
4455
|
+
return apiClient.GET("/users/{id}/institutions", {
|
|
4451
4456
|
params: { path: { id } },
|
|
4452
4457
|
});
|
|
4453
4458
|
},
|
|
@@ -4455,7 +4460,7 @@ function createUserService(apiClient) {
|
|
|
4455
4460
|
* Sync user with Keycloak
|
|
4456
4461
|
*/
|
|
4457
4462
|
syncUser(id) {
|
|
4458
|
-
return apiClient.POST(
|
|
4463
|
+
return apiClient.POST("/users/{id}/sync", {
|
|
4459
4464
|
params: { path: { id } },
|
|
4460
4465
|
});
|
|
4461
4466
|
},
|
|
@@ -4465,37 +4470,37 @@ function createUserService(apiClient) {
|
|
|
4465
4470
|
function createInstitutionService(apiClient) {
|
|
4466
4471
|
return {
|
|
4467
4472
|
getAll() {
|
|
4468
|
-
return apiClient.GET(
|
|
4473
|
+
return apiClient.GET("/institutions");
|
|
4469
4474
|
},
|
|
4470
4475
|
getById(id) {
|
|
4471
|
-
return apiClient.GET(
|
|
4476
|
+
return apiClient.GET("/institutions/{id}", { params: { path: { id } } });
|
|
4472
4477
|
},
|
|
4473
4478
|
// Institution Groups
|
|
4474
|
-
|
|
4475
|
-
return apiClient.GET(
|
|
4479
|
+
getSeats(institutionId) {
|
|
4480
|
+
return apiClient.GET("/institutions/{institutionId}/seats", {
|
|
4476
4481
|
params: { path: { institutionId } },
|
|
4477
4482
|
});
|
|
4478
4483
|
},
|
|
4479
|
-
|
|
4480
|
-
return apiClient.POST(
|
|
4484
|
+
addSeats(institutionId, data) {
|
|
4485
|
+
return apiClient.POST("/institutions/{institutionId}/seats", {
|
|
4481
4486
|
params: { path: { institutionId } },
|
|
4482
4487
|
body: data,
|
|
4483
4488
|
});
|
|
4484
4489
|
},
|
|
4485
|
-
|
|
4486
|
-
return apiClient.DELETE(
|
|
4490
|
+
removeSeats(institutionId, groupId) {
|
|
4491
|
+
return apiClient.DELETE("/institutions/{institutionId}/seats/{groupId}", {
|
|
4487
4492
|
params: { path: { institutionId, groupId } },
|
|
4488
4493
|
});
|
|
4489
4494
|
},
|
|
4490
|
-
|
|
4491
|
-
return apiClient.PATCH(
|
|
4495
|
+
updateSeats(institutionId, groupId, data) {
|
|
4496
|
+
return apiClient.PATCH("/institutions/{institutionId}/seats/{groupId}", {
|
|
4492
4497
|
params: { path: { institutionId, groupId } },
|
|
4493
4498
|
body: data,
|
|
4494
4499
|
});
|
|
4495
4500
|
},
|
|
4496
4501
|
// Institution Classrooms
|
|
4497
4502
|
getClassrooms(institutionId, options) {
|
|
4498
|
-
return apiClient.GET(
|
|
4503
|
+
return apiClient.GET("/institutions/{institutionId}/classrooms", {
|
|
4499
4504
|
params: {
|
|
4500
4505
|
path: { institutionId },
|
|
4501
4506
|
query: options,
|
|
@@ -4503,30 +4508,30 @@ function createInstitutionService(apiClient) {
|
|
|
4503
4508
|
});
|
|
4504
4509
|
},
|
|
4505
4510
|
getClassroomById(institutionId, classroomId) {
|
|
4506
|
-
return apiClient.GET(
|
|
4511
|
+
return apiClient.GET("/institutions/{institutionId}/classrooms/{classroomId}", {
|
|
4507
4512
|
params: { path: { institutionId, classroomId } },
|
|
4508
4513
|
});
|
|
4509
4514
|
},
|
|
4510
4515
|
addClassroom(institutionId, data) {
|
|
4511
|
-
return apiClient.POST(
|
|
4516
|
+
return apiClient.POST("/institutions/{institutionId}/classrooms", {
|
|
4512
4517
|
params: { path: { institutionId } },
|
|
4513
4518
|
body: data,
|
|
4514
4519
|
});
|
|
4515
4520
|
},
|
|
4516
4521
|
updateClassroom(institutionId, classroomId, data) {
|
|
4517
|
-
return apiClient.PATCH(
|
|
4522
|
+
return apiClient.PATCH("/institutions/{institutionId}/classrooms/{classroomId}", {
|
|
4518
4523
|
params: { path: { institutionId, classroomId } },
|
|
4519
4524
|
body: data,
|
|
4520
4525
|
});
|
|
4521
4526
|
},
|
|
4522
4527
|
removeClassroom(institutionId, classroomId) {
|
|
4523
|
-
return apiClient.DELETE(
|
|
4528
|
+
return apiClient.DELETE("/institutions/{institutionId}/classrooms/{classroomId}", {
|
|
4524
4529
|
params: { path: { institutionId, classroomId } },
|
|
4525
4530
|
});
|
|
4526
4531
|
},
|
|
4527
4532
|
// Institution Users (list all users with filters)
|
|
4528
4533
|
getUsers(institutionId, options) {
|
|
4529
|
-
return apiClient.GET(
|
|
4534
|
+
return apiClient.GET("/institutions/{institutionId}/users", {
|
|
4530
4535
|
params: {
|
|
4531
4536
|
path: { institutionId },
|
|
4532
4537
|
query: options,
|
|
@@ -4535,45 +4540,45 @@ function createInstitutionService(apiClient) {
|
|
|
4535
4540
|
},
|
|
4536
4541
|
// Institution Registrations (Users in Institution)
|
|
4537
4542
|
getRegistrations(institutionId) {
|
|
4538
|
-
return apiClient.GET(
|
|
4543
|
+
return apiClient.GET("/institutions/{institutionId}/registrations", {
|
|
4539
4544
|
params: { path: { institutionId } },
|
|
4540
4545
|
});
|
|
4541
4546
|
},
|
|
4542
4547
|
getRegistrationById(institutionId, registrationId) {
|
|
4543
|
-
return apiClient.GET(
|
|
4548
|
+
return apiClient.GET("/institutions/{institutionId}/registrations/{registrationId}", {
|
|
4544
4549
|
params: { path: { institutionId, registrationId } },
|
|
4545
4550
|
});
|
|
4546
4551
|
},
|
|
4547
4552
|
getRegistrationByUserId(institutionId, userId) {
|
|
4548
|
-
return apiClient.GET(
|
|
4553
|
+
return apiClient.GET("/institutions/{institutionId}/registrations/user/{userId}", {
|
|
4549
4554
|
params: { path: { institutionId, userId } },
|
|
4550
4555
|
});
|
|
4551
4556
|
},
|
|
4552
4557
|
registerUser(institutionId, data) {
|
|
4553
|
-
return apiClient.POST(
|
|
4558
|
+
return apiClient.POST("/institutions/{institutionId}/registrations", {
|
|
4554
4559
|
params: { path: { institutionId } },
|
|
4555
4560
|
body: data,
|
|
4556
4561
|
});
|
|
4557
4562
|
},
|
|
4558
4563
|
updateRegistration(institutionId, registrationId, data) {
|
|
4559
|
-
return apiClient.PATCH(
|
|
4564
|
+
return apiClient.PATCH("/institutions/{institutionId}/registrations/{registrationId}", {
|
|
4560
4565
|
params: { path: { institutionId, registrationId } },
|
|
4561
4566
|
body: data,
|
|
4562
4567
|
});
|
|
4563
4568
|
},
|
|
4564
4569
|
assignUserToClassroom(institutionId, registrationId, data) {
|
|
4565
|
-
return apiClient.PATCH(
|
|
4570
|
+
return apiClient.PATCH("/institutions/{institutionId}/registrations/{registrationId}/classroom", {
|
|
4566
4571
|
params: { path: { institutionId, registrationId } },
|
|
4567
4572
|
body: data,
|
|
4568
4573
|
});
|
|
4569
4574
|
},
|
|
4570
4575
|
removeRegistration(institutionId, registrationId) {
|
|
4571
|
-
return apiClient.DELETE(
|
|
4576
|
+
return apiClient.DELETE("/institutions/{institutionId}/registrations/{registrationId}", {
|
|
4572
4577
|
params: { path: { institutionId, registrationId } },
|
|
4573
4578
|
});
|
|
4574
4579
|
},
|
|
4575
4580
|
getGroupUsers(institutionId) {
|
|
4576
|
-
return apiClient.GET(
|
|
4581
|
+
return apiClient.GET("/institutions/{institutionId}/seats/users", {
|
|
4577
4582
|
params: { path: { institutionId } },
|
|
4578
4583
|
});
|
|
4579
4584
|
},
|
|
@@ -4683,13 +4688,13 @@ function createClassroomService(apiClient) {
|
|
|
4683
4688
|
* List all classrooms
|
|
4684
4689
|
*/
|
|
4685
4690
|
getAll() {
|
|
4686
|
-
return apiClient.GET(
|
|
4691
|
+
return apiClient.GET("/classrooms");
|
|
4687
4692
|
},
|
|
4688
4693
|
/**
|
|
4689
4694
|
* Get classroom by ID
|
|
4690
4695
|
*/
|
|
4691
4696
|
getById(id) {
|
|
4692
|
-
return apiClient.GET(
|
|
4697
|
+
return apiClient.GET("/classrooms/{id}", {
|
|
4693
4698
|
params: { path: { id } },
|
|
4694
4699
|
});
|
|
4695
4700
|
},
|
|
@@ -4697,18 +4702,25 @@ function createClassroomService(apiClient) {
|
|
|
4697
4702
|
* Get classrooms by institution ID
|
|
4698
4703
|
*/
|
|
4699
4704
|
getByInstitution(institutionId, params) {
|
|
4700
|
-
return apiClient.GET(
|
|
4705
|
+
return apiClient.GET("/classrooms/institution/{id}", {
|
|
4701
4706
|
params: {
|
|
4702
4707
|
path: { id: institutionId },
|
|
4703
4708
|
query: params,
|
|
4704
4709
|
},
|
|
4705
4710
|
});
|
|
4706
4711
|
},
|
|
4712
|
+
getBySeatCode(seatCodeId) {
|
|
4713
|
+
return apiClient.GET("/institutions/seat-code/{seatCodeId}/classrooms", {
|
|
4714
|
+
params: {
|
|
4715
|
+
path: { seatCodeId },
|
|
4716
|
+
},
|
|
4717
|
+
});
|
|
4718
|
+
},
|
|
4707
4719
|
/**
|
|
4708
4720
|
* Create a new classroom
|
|
4709
4721
|
*/
|
|
4710
4722
|
create(data) {
|
|
4711
|
-
return apiClient.POST(
|
|
4723
|
+
return apiClient.POST("/classrooms", {
|
|
4712
4724
|
body: data,
|
|
4713
4725
|
});
|
|
4714
4726
|
},
|
|
@@ -4716,7 +4728,7 @@ function createClassroomService(apiClient) {
|
|
|
4716
4728
|
* Update classroom
|
|
4717
4729
|
*/
|
|
4718
4730
|
update(id, data) {
|
|
4719
|
-
return apiClient.PATCH(
|
|
4731
|
+
return apiClient.PATCH("/classrooms/{id}", {
|
|
4720
4732
|
params: { path: { id } },
|
|
4721
4733
|
body: data,
|
|
4722
4734
|
});
|
|
@@ -4725,7 +4737,7 @@ function createClassroomService(apiClient) {
|
|
|
4725
4737
|
* Delete classroom
|
|
4726
4738
|
*/
|
|
4727
4739
|
delete(id) {
|
|
4728
|
-
return apiClient.DELETE(
|
|
4740
|
+
return apiClient.DELETE("/classrooms/{id}", {
|
|
4729
4741
|
params: { path: { id } },
|
|
4730
4742
|
});
|
|
4731
4743
|
},
|
|
@@ -4919,6 +4931,277 @@ function createGuardianService(apiClient) {
|
|
|
4919
4931
|
};
|
|
4920
4932
|
}
|
|
4921
4933
|
|
|
4934
|
+
function createAuthService(apiClient) {
|
|
4935
|
+
return {
|
|
4936
|
+
/**
|
|
4937
|
+
* Generate TheMembers JWT token for authenticated user
|
|
4938
|
+
* @description Generates a signed JWT token for TheMembers platform authentication.
|
|
4939
|
+
* This endpoint requires the user to be already authenticated with Keycloak.
|
|
4940
|
+
*/
|
|
4941
|
+
getToken() {
|
|
4942
|
+
return apiClient.POST('/auth/token');
|
|
4943
|
+
},
|
|
4944
|
+
};
|
|
4945
|
+
}
|
|
4946
|
+
|
|
4947
|
+
function createGroupService(apiClient) {
|
|
4948
|
+
return {
|
|
4949
|
+
/**
|
|
4950
|
+
* List all groups
|
|
4951
|
+
*/
|
|
4952
|
+
getAll() {
|
|
4953
|
+
return apiClient.GET("/groups");
|
|
4954
|
+
},
|
|
4955
|
+
/**
|
|
4956
|
+
* Get group by ID
|
|
4957
|
+
*/
|
|
4958
|
+
getById(id) {
|
|
4959
|
+
return apiClient.GET("/groups/{id}", {
|
|
4960
|
+
params: { path: { id } },
|
|
4961
|
+
});
|
|
4962
|
+
},
|
|
4963
|
+
/**
|
|
4964
|
+
* Create a new group
|
|
4965
|
+
*/
|
|
4966
|
+
create(data) {
|
|
4967
|
+
return apiClient.POST("/groups", {
|
|
4968
|
+
body: data,
|
|
4969
|
+
});
|
|
4970
|
+
},
|
|
4971
|
+
/**
|
|
4972
|
+
* Update group
|
|
4973
|
+
*/
|
|
4974
|
+
update(id, data) {
|
|
4975
|
+
return apiClient.PATCH("/groups/{id}", {
|
|
4976
|
+
params: { path: { id } },
|
|
4977
|
+
body: data,
|
|
4978
|
+
});
|
|
4979
|
+
},
|
|
4980
|
+
/**
|
|
4981
|
+
* Delete group
|
|
4982
|
+
*/
|
|
4983
|
+
delete(id) {
|
|
4984
|
+
return apiClient.DELETE("/groups/{id}", {
|
|
4985
|
+
params: { path: { id } },
|
|
4986
|
+
});
|
|
4987
|
+
},
|
|
4988
|
+
/**
|
|
4989
|
+
* Get group users
|
|
4990
|
+
*/
|
|
4991
|
+
getUsers(id) {
|
|
4992
|
+
return apiClient.GET("/groups/{id}/users", {
|
|
4993
|
+
params: { path: { id } },
|
|
4994
|
+
});
|
|
4995
|
+
},
|
|
4996
|
+
/**
|
|
4997
|
+
* Get group roles
|
|
4998
|
+
*/
|
|
4999
|
+
getRoles(id) {
|
|
5000
|
+
return apiClient.GET("/groups/{id}/roles", {
|
|
5001
|
+
params: { path: { id } },
|
|
5002
|
+
});
|
|
5003
|
+
},
|
|
5004
|
+
/**
|
|
5005
|
+
* Assign user to group
|
|
5006
|
+
*/
|
|
5007
|
+
assignUser(data) {
|
|
5008
|
+
return apiClient.POST("/groups/assign", {
|
|
5009
|
+
body: data,
|
|
5010
|
+
});
|
|
5011
|
+
},
|
|
5012
|
+
/**
|
|
5013
|
+
* Remove user from group
|
|
5014
|
+
*/
|
|
5015
|
+
removeUser(groupId, userId) {
|
|
5016
|
+
return apiClient.DELETE("/groups/{groupId}/users/{userId}", {
|
|
5017
|
+
params: { path: { groupId, userId } },
|
|
5018
|
+
});
|
|
5019
|
+
},
|
|
5020
|
+
/**
|
|
5021
|
+
* Assign role to group
|
|
5022
|
+
*/
|
|
5023
|
+
assignRole(groupId, roleId) {
|
|
5024
|
+
return apiClient.POST("/groups/roles", {
|
|
5025
|
+
body: { groupId, roleId },
|
|
5026
|
+
});
|
|
5027
|
+
},
|
|
5028
|
+
/**
|
|
5029
|
+
* Delete group role
|
|
5030
|
+
*/
|
|
5031
|
+
deleteRole(id) {
|
|
5032
|
+
return apiClient.DELETE("/groups/roles/{id}", {
|
|
5033
|
+
params: { path: { id } },
|
|
5034
|
+
});
|
|
5035
|
+
},
|
|
5036
|
+
/**
|
|
5037
|
+
* Update group role
|
|
5038
|
+
*/
|
|
5039
|
+
updateRole(id, data) {
|
|
5040
|
+
return apiClient.PATCH("/groups/roles/{id}", {
|
|
5041
|
+
params: { path: { id } },
|
|
5042
|
+
body: data,
|
|
5043
|
+
});
|
|
5044
|
+
},
|
|
5045
|
+
};
|
|
5046
|
+
}
|
|
5047
|
+
|
|
5048
|
+
function createQuizService(apiClient) {
|
|
5049
|
+
return {
|
|
5050
|
+
/**
|
|
5051
|
+
* List all quizzes
|
|
5052
|
+
*/
|
|
5053
|
+
getAll(params) {
|
|
5054
|
+
return apiClient.GET('/quiz', {
|
|
5055
|
+
params: {
|
|
5056
|
+
query: params,
|
|
5057
|
+
},
|
|
5058
|
+
});
|
|
5059
|
+
},
|
|
5060
|
+
/**
|
|
5061
|
+
* Get quiz by ID
|
|
5062
|
+
*/
|
|
5063
|
+
getById(id) {
|
|
5064
|
+
return apiClient.GET('/quiz/{id}', {
|
|
5065
|
+
params: { path: { id } },
|
|
5066
|
+
});
|
|
5067
|
+
},
|
|
5068
|
+
/**
|
|
5069
|
+
* Create a new quiz
|
|
5070
|
+
*/
|
|
5071
|
+
create(data) {
|
|
5072
|
+
return apiClient.POST('/quiz', {
|
|
5073
|
+
body: data,
|
|
5074
|
+
});
|
|
5075
|
+
},
|
|
5076
|
+
/**
|
|
5077
|
+
* Update quiz
|
|
5078
|
+
*/
|
|
5079
|
+
update(id, data) {
|
|
5080
|
+
return apiClient.PATCH('/quiz/{id}', {
|
|
5081
|
+
params: { path: { id } },
|
|
5082
|
+
body: data,
|
|
5083
|
+
});
|
|
5084
|
+
},
|
|
5085
|
+
/**
|
|
5086
|
+
* Delete quiz
|
|
5087
|
+
*/
|
|
5088
|
+
delete(id) {
|
|
5089
|
+
return apiClient.DELETE('/quiz/{id}', {
|
|
5090
|
+
params: { path: { id } },
|
|
5091
|
+
});
|
|
5092
|
+
},
|
|
5093
|
+
};
|
|
5094
|
+
}
|
|
5095
|
+
|
|
5096
|
+
function createCertificateService(apiClient) {
|
|
5097
|
+
return {
|
|
5098
|
+
/**
|
|
5099
|
+
* List all certificates
|
|
5100
|
+
*/
|
|
5101
|
+
getAll() {
|
|
5102
|
+
return apiClient.GET('/certificates');
|
|
5103
|
+
},
|
|
5104
|
+
/**
|
|
5105
|
+
* Get certificate by ID
|
|
5106
|
+
*/
|
|
5107
|
+
getById(id) {
|
|
5108
|
+
return apiClient.GET('/certificates/{id}', {
|
|
5109
|
+
params: { path: { id } },
|
|
5110
|
+
});
|
|
5111
|
+
},
|
|
5112
|
+
/**
|
|
5113
|
+
* Create a new certificate
|
|
5114
|
+
*/
|
|
5115
|
+
create(data) {
|
|
5116
|
+
return apiClient.POST('/certificates', {
|
|
5117
|
+
body: data,
|
|
5118
|
+
});
|
|
5119
|
+
},
|
|
5120
|
+
/**
|
|
5121
|
+
* Update certificate
|
|
5122
|
+
*/
|
|
5123
|
+
update(id, data) {
|
|
5124
|
+
return apiClient.PATCH('/certificates/{id}', {
|
|
5125
|
+
params: { path: { id } },
|
|
5126
|
+
body: data,
|
|
5127
|
+
});
|
|
5128
|
+
},
|
|
5129
|
+
/**
|
|
5130
|
+
* Delete certificate
|
|
5131
|
+
*/
|
|
5132
|
+
delete(id) {
|
|
5133
|
+
return apiClient.DELETE('/certificates/{id}', {
|
|
5134
|
+
params: { path: { id } },
|
|
5135
|
+
});
|
|
5136
|
+
},
|
|
5137
|
+
};
|
|
5138
|
+
}
|
|
5139
|
+
|
|
5140
|
+
function createSeatCodeService(apiClient) {
|
|
5141
|
+
return {
|
|
5142
|
+
getAll(institutionId, options) {
|
|
5143
|
+
return apiClient.GET("/institutions/{institutionId}/seat-codes", {
|
|
5144
|
+
params: {
|
|
5145
|
+
path: { institutionId },
|
|
5146
|
+
query: options,
|
|
5147
|
+
},
|
|
5148
|
+
});
|
|
5149
|
+
},
|
|
5150
|
+
generate(institutionId, data) {
|
|
5151
|
+
return apiClient.POST("/institutions/{institutionId}/seat-codes", {
|
|
5152
|
+
params: { path: { institutionId } },
|
|
5153
|
+
body: data,
|
|
5154
|
+
});
|
|
5155
|
+
},
|
|
5156
|
+
getById(institutionId, seatCodeId) {
|
|
5157
|
+
return apiClient.GET("/institutions/{institutionId}/seat-codes/{seatCodeId}", {
|
|
5158
|
+
params: { path: { institutionId, seatCodeId } },
|
|
5159
|
+
});
|
|
5160
|
+
},
|
|
5161
|
+
update(institutionId, seatCodeId, data) {
|
|
5162
|
+
return apiClient.PATCH("/institutions/{institutionId}/seat-codes/{seatCodeId}", {
|
|
5163
|
+
params: { path: { institutionId, seatCodeId } },
|
|
5164
|
+
body: data,
|
|
5165
|
+
});
|
|
5166
|
+
},
|
|
5167
|
+
delete(institutionId, seatCodeId) {
|
|
5168
|
+
return apiClient.DELETE("/institutions/{institutionId}/seat-codes/{seatCodeId}", {
|
|
5169
|
+
params: { path: { institutionId, seatCodeId } },
|
|
5170
|
+
});
|
|
5171
|
+
},
|
|
5172
|
+
getBySeatId(institutionId, seatId) {
|
|
5173
|
+
return apiClient.GET("/institutions/{institutionId}/seats/{seatId}/codes", {
|
|
5174
|
+
params: { path: { institutionId, seatId } },
|
|
5175
|
+
});
|
|
5176
|
+
},
|
|
5177
|
+
deleteAllBySeatId(institutionId, seatId) {
|
|
5178
|
+
return apiClient.DELETE("/institutions/{institutionId}/seats/{seatId}/codes", {
|
|
5179
|
+
params: { path: { institutionId, seatId } },
|
|
5180
|
+
});
|
|
5181
|
+
},
|
|
5182
|
+
getAvailableBySeatId(institutionId, seatId) {
|
|
5183
|
+
return apiClient.GET("/institutions/{institutionId}/seats/{seatId}/codes/available", {
|
|
5184
|
+
params: { path: { institutionId, seatId } },
|
|
5185
|
+
});
|
|
5186
|
+
},
|
|
5187
|
+
validate(code) {
|
|
5188
|
+
return apiClient.GET("/seat-codes/validate/{code}", {
|
|
5189
|
+
params: { path: { code } },
|
|
5190
|
+
});
|
|
5191
|
+
},
|
|
5192
|
+
reserve(code) {
|
|
5193
|
+
return apiClient.POST("/seat-codes/reserve/{code}", {
|
|
5194
|
+
params: { path: { code } },
|
|
5195
|
+
});
|
|
5196
|
+
},
|
|
5197
|
+
sendCode(data) {
|
|
5198
|
+
return apiClient.POST("/seat-codes/send-code", {
|
|
5199
|
+
body: data,
|
|
5200
|
+
});
|
|
5201
|
+
},
|
|
5202
|
+
};
|
|
5203
|
+
}
|
|
5204
|
+
|
|
4922
5205
|
function createAcademeApiClient(baseUrl) {
|
|
4923
5206
|
return createClient({ baseUrl });
|
|
4924
5207
|
}
|
|
@@ -4932,6 +5215,11 @@ function createAcademeServices(apiClient) {
|
|
|
4932
5215
|
serie: createSerieService(apiClient),
|
|
4933
5216
|
shift: createShiftService(apiClient),
|
|
4934
5217
|
guardian: createGuardianService(apiClient),
|
|
5218
|
+
auth: createAuthService(apiClient),
|
|
5219
|
+
group: createGroupService(apiClient),
|
|
5220
|
+
quiz: createQuizService(apiClient),
|
|
5221
|
+
certificate: createCertificateService(apiClient),
|
|
5222
|
+
seatCode: createSeatCodeService(apiClient),
|
|
4935
5223
|
};
|
|
4936
5224
|
}
|
|
4937
5225
|
|
|
@@ -4944,7 +5232,7 @@ exports.GLOBAL_ROLES = void 0;
|
|
|
4944
5232
|
GLOBAL_ROLES["GUARDIAN"] = "guardian";
|
|
4945
5233
|
})(exports.GLOBAL_ROLES || (exports.GLOBAL_ROLES = {}));
|
|
4946
5234
|
|
|
4947
|
-
const AcademeAuthProvider = ({ realm, hubUrl, children, clientId, keycloakUrl, apiBaseUrl,
|
|
5235
|
+
const AcademeAuthProvider = ({ realm, hubUrl, children, clientId, keycloakUrl, apiBaseUrl, skipApiUserFetch, }) => {
|
|
4948
5236
|
const oidcConfig = {
|
|
4949
5237
|
authority: `${keycloakUrl}/realms/${realm}`,
|
|
4950
5238
|
client_id: clientId,
|
|
@@ -8335,10 +8623,10 @@ function styleInject(css, ref) {
|
|
|
8335
8623
|
}
|
|
8336
8624
|
}
|
|
8337
8625
|
|
|
8338
|
-
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}";
|
|
8626
|
+
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}";
|
|
8339
8627
|
styleInject(css_248z$1,{"insertAt":"top"});
|
|
8340
8628
|
|
|
8341
|
-
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}";
|
|
8629
|
+
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}";
|
|
8342
8630
|
styleInject(css_248z,{"insertAt":"top"});
|
|
8343
8631
|
|
|
8344
8632
|
exports.BACKOFFICE_ROLES = void 0;
|