@chrryai/chrry 1.7.12 → 1.7.14
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/Select.module.scss +1 -2
- package/agent/Agent.module.scss +1 -3
- package/dist/index.d.mts +1 -8
- package/dist/index.d.ts +1 -8
- package/dist/index.js +280 -293
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +269 -282
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/Select.module.scss
CHANGED
package/agent/Agent.module.scss
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
flex-wrap: wrap;
|
|
18
18
|
display: flex;
|
|
19
19
|
justify-content: center;
|
|
20
|
-
gap: toRem.toRem(
|
|
20
|
+
gap: toRem.toRem(7.5);
|
|
21
21
|
border-top: toRem.toRem(1) dashed var(--shade-2);
|
|
22
22
|
padding-top: toRem.toRem(10);
|
|
23
23
|
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
&:not(.currentTab):hover {
|
|
31
31
|
transition: all 0.2s ease;
|
|
32
32
|
|
|
33
|
-
transform: scale(1.1);
|
|
34
33
|
transition: transform 0.2s ease;
|
|
35
34
|
}
|
|
36
35
|
}
|
|
@@ -38,7 +37,6 @@
|
|
|
38
37
|
.currentTab {
|
|
39
38
|
font-size: toRem.toRem(13);
|
|
40
39
|
margin: 0 toRem.toRem(5);
|
|
41
|
-
transform: scale(1.1);
|
|
42
40
|
}
|
|
43
41
|
|
|
44
42
|
.placeholder {
|
package/dist/index.d.mts
CHANGED
|
@@ -1371,14 +1371,7 @@ declare const appSchema: z.ZodObject<{
|
|
|
1371
1371
|
public: "public";
|
|
1372
1372
|
unlisted: "unlisted";
|
|
1373
1373
|
}>>;
|
|
1374
|
-
extends: z.ZodOptional<z.ZodArray<z.
|
|
1375
|
-
Atlas: "Atlas";
|
|
1376
|
-
Peach: "Peach";
|
|
1377
|
-
Bloom: "Bloom";
|
|
1378
|
-
Vault: "Vault";
|
|
1379
|
-
Chrry: "Chrry";
|
|
1380
|
-
Vex: "Vex";
|
|
1381
|
-
}>, z.ZodString]>>>;
|
|
1374
|
+
extends: z.ZodOptional<z.ZodArray<z.ZodUUID>>;
|
|
1382
1375
|
onlyAgent: z.ZodOptional<z.ZodBoolean>;
|
|
1383
1376
|
themeColor: z.ZodOptional<z.ZodString>;
|
|
1384
1377
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1371,14 +1371,7 @@ declare const appSchema: z.ZodObject<{
|
|
|
1371
1371
|
public: "public";
|
|
1372
1372
|
unlisted: "unlisted";
|
|
1373
1373
|
}>>;
|
|
1374
|
-
extends: z.ZodOptional<z.ZodArray<z.
|
|
1375
|
-
Atlas: "Atlas";
|
|
1376
|
-
Peach: "Peach";
|
|
1377
|
-
Bloom: "Bloom";
|
|
1378
|
-
Vault: "Vault";
|
|
1379
|
-
Chrry: "Chrry";
|
|
1380
|
-
Vex: "Vex";
|
|
1381
|
-
}>, z.ZodString]>>>;
|
|
1374
|
+
extends: z.ZodOptional<z.ZodArray<z.ZodUUID>>;
|
|
1382
1375
|
onlyAgent: z.ZodOptional<z.ZodBoolean>;
|
|
1383
1376
|
themeColor: z.ZodOptional<z.ZodString>;
|
|
1384
1377
|
backgroundColor: z.ZodOptional<z.ZodString>;
|