@almadar/core 9.10.2 → 9.11.0
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/builders.d.ts +3 -3
- package/dist/{compose-behaviors-DpYntG1r.d.ts → compose-behaviors-CC57nx7Q.d.ts} +1 -1
- package/dist/factory/index.d.ts +3 -3
- package/dist/factory/index.js +3 -0
- package/dist/factory/index.js.map +1 -1
- package/dist/index.d.ts +7 -7
- package/dist/index.js +62 -5
- package/dist/index.js.map +1 -1
- package/dist/{schema-kJUA2M6H.d.ts → schema-B3LLJzA1.d.ts} +301 -301
- package/dist/state-machine/index.d.ts +20 -4
- package/dist/state-machine/index.js +41 -5
- package/dist/state-machine/index.js.map +1 -1
- package/dist/types/index.d.ts +6 -6
- package/dist/types/index.js +9 -0
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CQF32lJA.d.ts → types-BQcbhvP3.d.ts} +1 -1
- package/package.json +1 -1
- package/dist/{trait-C61Wxi3a.d.ts → trait-BGCXN5LO.d.ts} +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { d as Expression, S as SExpr } from './expression-BVRFm0sV.js';
|
|
2
|
-
import { e as TraitConfig, bw as TraitConfigObject, b9 as ServiceRef, c as Entity, f as EntityField, g as EntityPersistence, i as TraitRef, a3 as EventPayloadField, y as ConfigFieldDeclaration, b5 as ServiceDefinition, T as Trait } from './trait-
|
|
2
|
+
import { e as TraitConfig, bw as TraitConfigObject, b9 as ServiceRef, c as Entity, f as EntityField, g as EntityPersistence, i as TraitRef, a3 as EventPayloadField, y as ConfigFieldDeclaration, b5 as ServiceDefinition, T as Trait } from './trait-BGCXN5LO.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -135,7 +135,7 @@ declare const OrbitalPageSchema: z.ZodObject<{
|
|
|
135
135
|
linkedEntity?: string | undefined;
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
primaryEntity?: string | undefined;
|
|
138
|
-
viewType?: "custom" | "create" | "
|
|
138
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
139
139
|
}, {
|
|
140
140
|
path: string;
|
|
141
141
|
name: string;
|
|
@@ -147,7 +147,7 @@ declare const OrbitalPageSchema: z.ZodObject<{
|
|
|
147
147
|
linkedEntity?: string | undefined;
|
|
148
148
|
}[] | undefined;
|
|
149
149
|
primaryEntity?: string | undefined;
|
|
150
|
-
viewType?: "custom" | "create" | "
|
|
150
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
151
151
|
}>;
|
|
152
152
|
type OrbitalPageInput = z.input<typeof OrbitalPageSchema>;
|
|
153
153
|
type OrbitalPageStrictInput = z.input<typeof OrbitalPageStrictSchema>;
|
|
@@ -185,7 +185,7 @@ declare const PageSchema: z.ZodObject<{
|
|
|
185
185
|
linkedEntity?: string | undefined;
|
|
186
186
|
}[] | undefined;
|
|
187
187
|
primaryEntity?: string | undefined;
|
|
188
|
-
viewType?: "custom" | "create" | "
|
|
188
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
189
189
|
}, {
|
|
190
190
|
path: string;
|
|
191
191
|
name: string;
|
|
@@ -197,7 +197,7 @@ declare const PageSchema: z.ZodObject<{
|
|
|
197
197
|
linkedEntity?: string | undefined;
|
|
198
198
|
}[] | undefined;
|
|
199
199
|
primaryEntity?: string | undefined;
|
|
200
|
-
viewType?: "custom" | "create" | "
|
|
200
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
201
201
|
}>;
|
|
202
202
|
|
|
203
203
|
/**
|
|
@@ -2299,14 +2299,15 @@ declare const ColorTokensSchema: z.ZodObject<{
|
|
|
2299
2299
|
primary?: string | undefined;
|
|
2300
2300
|
secondary?: string | undefined;
|
|
2301
2301
|
success?: string | undefined;
|
|
2302
|
-
error?: string | undefined;
|
|
2303
2302
|
warning?: string | undefined;
|
|
2304
2303
|
info?: string | undefined;
|
|
2304
|
+
error?: string | undefined;
|
|
2305
2305
|
muted?: string | undefined;
|
|
2306
2306
|
accent?: string | undefined;
|
|
2307
2307
|
surface?: string | undefined;
|
|
2308
2308
|
background?: string | undefined;
|
|
2309
2309
|
ring?: string | undefined;
|
|
2310
|
+
border?: string | undefined;
|
|
2310
2311
|
primaryHover?: string | undefined;
|
|
2311
2312
|
primaryForeground?: string | undefined;
|
|
2312
2313
|
secondaryHover?: string | undefined;
|
|
@@ -2315,7 +2316,6 @@ declare const ColorTokensSchema: z.ZodObject<{
|
|
|
2315
2316
|
mutedForeground?: string | undefined;
|
|
2316
2317
|
foreground?: string | undefined;
|
|
2317
2318
|
cardForeground?: string | undefined;
|
|
2318
|
-
border?: string | undefined;
|
|
2319
2319
|
errorForeground?: string | undefined;
|
|
2320
2320
|
successForeground?: string | undefined;
|
|
2321
2321
|
warningForeground?: string | undefined;
|
|
@@ -2332,14 +2332,15 @@ declare const ColorTokensSchema: z.ZodObject<{
|
|
|
2332
2332
|
primary?: string | undefined;
|
|
2333
2333
|
secondary?: string | undefined;
|
|
2334
2334
|
success?: string | undefined;
|
|
2335
|
-
error?: string | undefined;
|
|
2336
2335
|
warning?: string | undefined;
|
|
2337
2336
|
info?: string | undefined;
|
|
2337
|
+
error?: string | undefined;
|
|
2338
2338
|
muted?: string | undefined;
|
|
2339
2339
|
accent?: string | undefined;
|
|
2340
2340
|
surface?: string | undefined;
|
|
2341
2341
|
background?: string | undefined;
|
|
2342
2342
|
ring?: string | undefined;
|
|
2343
|
+
border?: string | undefined;
|
|
2343
2344
|
primaryHover?: string | undefined;
|
|
2344
2345
|
primaryForeground?: string | undefined;
|
|
2345
2346
|
secondaryHover?: string | undefined;
|
|
@@ -2348,7 +2349,6 @@ declare const ColorTokensSchema: z.ZodObject<{
|
|
|
2348
2349
|
mutedForeground?: string | undefined;
|
|
2349
2350
|
foreground?: string | undefined;
|
|
2350
2351
|
cardForeground?: string | undefined;
|
|
2351
|
-
border?: string | undefined;
|
|
2352
2352
|
errorForeground?: string | undefined;
|
|
2353
2353
|
successForeground?: string | undefined;
|
|
2354
2354
|
warningForeground?: string | undefined;
|
|
@@ -2482,14 +2482,15 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
2482
2482
|
primary?: string | undefined;
|
|
2483
2483
|
secondary?: string | undefined;
|
|
2484
2484
|
success?: string | undefined;
|
|
2485
|
-
error?: string | undefined;
|
|
2486
2485
|
warning?: string | undefined;
|
|
2487
2486
|
info?: string | undefined;
|
|
2487
|
+
error?: string | undefined;
|
|
2488
2488
|
muted?: string | undefined;
|
|
2489
2489
|
accent?: string | undefined;
|
|
2490
2490
|
surface?: string | undefined;
|
|
2491
2491
|
background?: string | undefined;
|
|
2492
2492
|
ring?: string | undefined;
|
|
2493
|
+
border?: string | undefined;
|
|
2493
2494
|
primaryHover?: string | undefined;
|
|
2494
2495
|
primaryForeground?: string | undefined;
|
|
2495
2496
|
secondaryHover?: string | undefined;
|
|
@@ -2498,7 +2499,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
2498
2499
|
mutedForeground?: string | undefined;
|
|
2499
2500
|
foreground?: string | undefined;
|
|
2500
2501
|
cardForeground?: string | undefined;
|
|
2501
|
-
border?: string | undefined;
|
|
2502
2502
|
errorForeground?: string | undefined;
|
|
2503
2503
|
successForeground?: string | undefined;
|
|
2504
2504
|
warningForeground?: string | undefined;
|
|
@@ -2515,14 +2515,15 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
2515
2515
|
primary?: string | undefined;
|
|
2516
2516
|
secondary?: string | undefined;
|
|
2517
2517
|
success?: string | undefined;
|
|
2518
|
-
error?: string | undefined;
|
|
2519
2518
|
warning?: string | undefined;
|
|
2520
2519
|
info?: string | undefined;
|
|
2520
|
+
error?: string | undefined;
|
|
2521
2521
|
muted?: string | undefined;
|
|
2522
2522
|
accent?: string | undefined;
|
|
2523
2523
|
surface?: string | undefined;
|
|
2524
2524
|
background?: string | undefined;
|
|
2525
2525
|
ring?: string | undefined;
|
|
2526
|
+
border?: string | undefined;
|
|
2526
2527
|
primaryHover?: string | undefined;
|
|
2527
2528
|
primaryForeground?: string | undefined;
|
|
2528
2529
|
secondaryHover?: string | undefined;
|
|
@@ -2531,7 +2532,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
2531
2532
|
mutedForeground?: string | undefined;
|
|
2532
2533
|
foreground?: string | undefined;
|
|
2533
2534
|
cardForeground?: string | undefined;
|
|
2534
|
-
border?: string | undefined;
|
|
2535
2535
|
errorForeground?: string | undefined;
|
|
2536
2536
|
successForeground?: string | undefined;
|
|
2537
2537
|
warningForeground?: string | undefined;
|
|
@@ -3494,14 +3494,15 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
3494
3494
|
primary?: string | undefined;
|
|
3495
3495
|
secondary?: string | undefined;
|
|
3496
3496
|
success?: string | undefined;
|
|
3497
|
-
error?: string | undefined;
|
|
3498
3497
|
warning?: string | undefined;
|
|
3499
3498
|
info?: string | undefined;
|
|
3499
|
+
error?: string | undefined;
|
|
3500
3500
|
muted?: string | undefined;
|
|
3501
3501
|
accent?: string | undefined;
|
|
3502
3502
|
surface?: string | undefined;
|
|
3503
3503
|
background?: string | undefined;
|
|
3504
3504
|
ring?: string | undefined;
|
|
3505
|
+
border?: string | undefined;
|
|
3505
3506
|
primaryHover?: string | undefined;
|
|
3506
3507
|
primaryForeground?: string | undefined;
|
|
3507
3508
|
secondaryHover?: string | undefined;
|
|
@@ -3510,7 +3511,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
3510
3511
|
mutedForeground?: string | undefined;
|
|
3511
3512
|
foreground?: string | undefined;
|
|
3512
3513
|
cardForeground?: string | undefined;
|
|
3513
|
-
border?: string | undefined;
|
|
3514
3514
|
errorForeground?: string | undefined;
|
|
3515
3515
|
successForeground?: string | undefined;
|
|
3516
3516
|
warningForeground?: string | undefined;
|
|
@@ -3716,14 +3716,15 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
3716
3716
|
primary?: string | undefined;
|
|
3717
3717
|
secondary?: string | undefined;
|
|
3718
3718
|
success?: string | undefined;
|
|
3719
|
-
error?: string | undefined;
|
|
3720
3719
|
warning?: string | undefined;
|
|
3721
3720
|
info?: string | undefined;
|
|
3721
|
+
error?: string | undefined;
|
|
3722
3722
|
muted?: string | undefined;
|
|
3723
3723
|
accent?: string | undefined;
|
|
3724
3724
|
surface?: string | undefined;
|
|
3725
3725
|
background?: string | undefined;
|
|
3726
3726
|
ring?: string | undefined;
|
|
3727
|
+
border?: string | undefined;
|
|
3727
3728
|
primaryHover?: string | undefined;
|
|
3728
3729
|
primaryForeground?: string | undefined;
|
|
3729
3730
|
secondaryHover?: string | undefined;
|
|
@@ -3732,7 +3733,6 @@ declare const ThemeTokensSchema: z.ZodObject<{
|
|
|
3732
3733
|
mutedForeground?: string | undefined;
|
|
3733
3734
|
foreground?: string | undefined;
|
|
3734
3735
|
cardForeground?: string | undefined;
|
|
3735
|
-
border?: string | undefined;
|
|
3736
3736
|
errorForeground?: string | undefined;
|
|
3737
3737
|
successForeground?: string | undefined;
|
|
3738
3738
|
warningForeground?: string | undefined;
|
|
@@ -4003,14 +4003,15 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
4003
4003
|
primary?: string | undefined;
|
|
4004
4004
|
secondary?: string | undefined;
|
|
4005
4005
|
success?: string | undefined;
|
|
4006
|
-
error?: string | undefined;
|
|
4007
4006
|
warning?: string | undefined;
|
|
4008
4007
|
info?: string | undefined;
|
|
4008
|
+
error?: string | undefined;
|
|
4009
4009
|
muted?: string | undefined;
|
|
4010
4010
|
accent?: string | undefined;
|
|
4011
4011
|
surface?: string | undefined;
|
|
4012
4012
|
background?: string | undefined;
|
|
4013
4013
|
ring?: string | undefined;
|
|
4014
|
+
border?: string | undefined;
|
|
4014
4015
|
primaryHover?: string | undefined;
|
|
4015
4016
|
primaryForeground?: string | undefined;
|
|
4016
4017
|
secondaryHover?: string | undefined;
|
|
@@ -4019,7 +4020,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
4019
4020
|
mutedForeground?: string | undefined;
|
|
4020
4021
|
foreground?: string | undefined;
|
|
4021
4022
|
cardForeground?: string | undefined;
|
|
4022
|
-
border?: string | undefined;
|
|
4023
4023
|
errorForeground?: string | undefined;
|
|
4024
4024
|
successForeground?: string | undefined;
|
|
4025
4025
|
warningForeground?: string | undefined;
|
|
@@ -4036,14 +4036,15 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
4036
4036
|
primary?: string | undefined;
|
|
4037
4037
|
secondary?: string | undefined;
|
|
4038
4038
|
success?: string | undefined;
|
|
4039
|
-
error?: string | undefined;
|
|
4040
4039
|
warning?: string | undefined;
|
|
4041
4040
|
info?: string | undefined;
|
|
4041
|
+
error?: string | undefined;
|
|
4042
4042
|
muted?: string | undefined;
|
|
4043
4043
|
accent?: string | undefined;
|
|
4044
4044
|
surface?: string | undefined;
|
|
4045
4045
|
background?: string | undefined;
|
|
4046
4046
|
ring?: string | undefined;
|
|
4047
|
+
border?: string | undefined;
|
|
4047
4048
|
primaryHover?: string | undefined;
|
|
4048
4049
|
primaryForeground?: string | undefined;
|
|
4049
4050
|
secondaryHover?: string | undefined;
|
|
@@ -4052,7 +4053,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
4052
4053
|
mutedForeground?: string | undefined;
|
|
4053
4054
|
foreground?: string | undefined;
|
|
4054
4055
|
cardForeground?: string | undefined;
|
|
4055
|
-
border?: string | undefined;
|
|
4056
4056
|
errorForeground?: string | undefined;
|
|
4057
4057
|
successForeground?: string | undefined;
|
|
4058
4058
|
warningForeground?: string | undefined;
|
|
@@ -5015,14 +5015,15 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
5015
5015
|
primary?: string | undefined;
|
|
5016
5016
|
secondary?: string | undefined;
|
|
5017
5017
|
success?: string | undefined;
|
|
5018
|
-
error?: string | undefined;
|
|
5019
5018
|
warning?: string | undefined;
|
|
5020
5019
|
info?: string | undefined;
|
|
5020
|
+
error?: string | undefined;
|
|
5021
5021
|
muted?: string | undefined;
|
|
5022
5022
|
accent?: string | undefined;
|
|
5023
5023
|
surface?: string | undefined;
|
|
5024
5024
|
background?: string | undefined;
|
|
5025
5025
|
ring?: string | undefined;
|
|
5026
|
+
border?: string | undefined;
|
|
5026
5027
|
primaryHover?: string | undefined;
|
|
5027
5028
|
primaryForeground?: string | undefined;
|
|
5028
5029
|
secondaryHover?: string | undefined;
|
|
@@ -5031,7 +5032,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
5031
5032
|
mutedForeground?: string | undefined;
|
|
5032
5033
|
foreground?: string | undefined;
|
|
5033
5034
|
cardForeground?: string | undefined;
|
|
5034
|
-
border?: string | undefined;
|
|
5035
5035
|
errorForeground?: string | undefined;
|
|
5036
5036
|
successForeground?: string | undefined;
|
|
5037
5037
|
warningForeground?: string | undefined;
|
|
@@ -5237,14 +5237,15 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
5237
5237
|
primary?: string | undefined;
|
|
5238
5238
|
secondary?: string | undefined;
|
|
5239
5239
|
success?: string | undefined;
|
|
5240
|
-
error?: string | undefined;
|
|
5241
5240
|
warning?: string | undefined;
|
|
5242
5241
|
info?: string | undefined;
|
|
5242
|
+
error?: string | undefined;
|
|
5243
5243
|
muted?: string | undefined;
|
|
5244
5244
|
accent?: string | undefined;
|
|
5245
5245
|
surface?: string | undefined;
|
|
5246
5246
|
background?: string | undefined;
|
|
5247
5247
|
ring?: string | undefined;
|
|
5248
|
+
border?: string | undefined;
|
|
5248
5249
|
primaryHover?: string | undefined;
|
|
5249
5250
|
primaryForeground?: string | undefined;
|
|
5250
5251
|
secondaryHover?: string | undefined;
|
|
@@ -5253,7 +5254,6 @@ declare const ThemeVariantSchema: z.ZodObject<{
|
|
|
5253
5254
|
mutedForeground?: string | undefined;
|
|
5254
5255
|
foreground?: string | undefined;
|
|
5255
5256
|
cardForeground?: string | undefined;
|
|
5256
|
-
border?: string | undefined;
|
|
5257
5257
|
errorForeground?: string | undefined;
|
|
5258
5258
|
successForeground?: string | undefined;
|
|
5259
5259
|
warningForeground?: string | undefined;
|
|
@@ -5505,14 +5505,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
5505
5505
|
primary?: string | undefined;
|
|
5506
5506
|
secondary?: string | undefined;
|
|
5507
5507
|
success?: string | undefined;
|
|
5508
|
-
error?: string | undefined;
|
|
5509
5508
|
warning?: string | undefined;
|
|
5510
5509
|
info?: string | undefined;
|
|
5510
|
+
error?: string | undefined;
|
|
5511
5511
|
muted?: string | undefined;
|
|
5512
5512
|
accent?: string | undefined;
|
|
5513
5513
|
surface?: string | undefined;
|
|
5514
5514
|
background?: string | undefined;
|
|
5515
5515
|
ring?: string | undefined;
|
|
5516
|
+
border?: string | undefined;
|
|
5516
5517
|
primaryHover?: string | undefined;
|
|
5517
5518
|
primaryForeground?: string | undefined;
|
|
5518
5519
|
secondaryHover?: string | undefined;
|
|
@@ -5521,7 +5522,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
5521
5522
|
mutedForeground?: string | undefined;
|
|
5522
5523
|
foreground?: string | undefined;
|
|
5523
5524
|
cardForeground?: string | undefined;
|
|
5524
|
-
border?: string | undefined;
|
|
5525
5525
|
errorForeground?: string | undefined;
|
|
5526
5526
|
successForeground?: string | undefined;
|
|
5527
5527
|
warningForeground?: string | undefined;
|
|
@@ -5538,14 +5538,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
5538
5538
|
primary?: string | undefined;
|
|
5539
5539
|
secondary?: string | undefined;
|
|
5540
5540
|
success?: string | undefined;
|
|
5541
|
-
error?: string | undefined;
|
|
5542
5541
|
warning?: string | undefined;
|
|
5543
5542
|
info?: string | undefined;
|
|
5543
|
+
error?: string | undefined;
|
|
5544
5544
|
muted?: string | undefined;
|
|
5545
5545
|
accent?: string | undefined;
|
|
5546
5546
|
surface?: string | undefined;
|
|
5547
5547
|
background?: string | undefined;
|
|
5548
5548
|
ring?: string | undefined;
|
|
5549
|
+
border?: string | undefined;
|
|
5549
5550
|
primaryHover?: string | undefined;
|
|
5550
5551
|
primaryForeground?: string | undefined;
|
|
5551
5552
|
secondaryHover?: string | undefined;
|
|
@@ -5554,7 +5555,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
5554
5555
|
mutedForeground?: string | undefined;
|
|
5555
5556
|
foreground?: string | undefined;
|
|
5556
5557
|
cardForeground?: string | undefined;
|
|
5557
|
-
border?: string | undefined;
|
|
5558
5558
|
errorForeground?: string | undefined;
|
|
5559
5559
|
successForeground?: string | undefined;
|
|
5560
5560
|
warningForeground?: string | undefined;
|
|
@@ -6517,14 +6517,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
6517
6517
|
primary?: string | undefined;
|
|
6518
6518
|
secondary?: string | undefined;
|
|
6519
6519
|
success?: string | undefined;
|
|
6520
|
-
error?: string | undefined;
|
|
6521
6520
|
warning?: string | undefined;
|
|
6522
6521
|
info?: string | undefined;
|
|
6522
|
+
error?: string | undefined;
|
|
6523
6523
|
muted?: string | undefined;
|
|
6524
6524
|
accent?: string | undefined;
|
|
6525
6525
|
surface?: string | undefined;
|
|
6526
6526
|
background?: string | undefined;
|
|
6527
6527
|
ring?: string | undefined;
|
|
6528
|
+
border?: string | undefined;
|
|
6528
6529
|
primaryHover?: string | undefined;
|
|
6529
6530
|
primaryForeground?: string | undefined;
|
|
6530
6531
|
secondaryHover?: string | undefined;
|
|
@@ -6533,7 +6534,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
6533
6534
|
mutedForeground?: string | undefined;
|
|
6534
6535
|
foreground?: string | undefined;
|
|
6535
6536
|
cardForeground?: string | undefined;
|
|
6536
|
-
border?: string | undefined;
|
|
6537
6537
|
errorForeground?: string | undefined;
|
|
6538
6538
|
successForeground?: string | undefined;
|
|
6539
6539
|
warningForeground?: string | undefined;
|
|
@@ -6739,14 +6739,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
6739
6739
|
primary?: string | undefined;
|
|
6740
6740
|
secondary?: string | undefined;
|
|
6741
6741
|
success?: string | undefined;
|
|
6742
|
-
error?: string | undefined;
|
|
6743
6742
|
warning?: string | undefined;
|
|
6744
6743
|
info?: string | undefined;
|
|
6744
|
+
error?: string | undefined;
|
|
6745
6745
|
muted?: string | undefined;
|
|
6746
6746
|
accent?: string | undefined;
|
|
6747
6747
|
surface?: string | undefined;
|
|
6748
6748
|
background?: string | undefined;
|
|
6749
6749
|
ring?: string | undefined;
|
|
6750
|
+
border?: string | undefined;
|
|
6750
6751
|
primaryHover?: string | undefined;
|
|
6751
6752
|
primaryForeground?: string | undefined;
|
|
6752
6753
|
secondaryHover?: string | undefined;
|
|
@@ -6755,7 +6756,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
6755
6756
|
mutedForeground?: string | undefined;
|
|
6756
6757
|
foreground?: string | undefined;
|
|
6757
6758
|
cardForeground?: string | undefined;
|
|
6758
|
-
border?: string | undefined;
|
|
6759
6759
|
errorForeground?: string | undefined;
|
|
6760
6760
|
successForeground?: string | undefined;
|
|
6761
6761
|
warningForeground?: string | undefined;
|
|
@@ -6994,14 +6994,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
6994
6994
|
primary?: string | undefined;
|
|
6995
6995
|
secondary?: string | undefined;
|
|
6996
6996
|
success?: string | undefined;
|
|
6997
|
-
error?: string | undefined;
|
|
6998
6997
|
warning?: string | undefined;
|
|
6999
6998
|
info?: string | undefined;
|
|
6999
|
+
error?: string | undefined;
|
|
7000
7000
|
muted?: string | undefined;
|
|
7001
7001
|
accent?: string | undefined;
|
|
7002
7002
|
surface?: string | undefined;
|
|
7003
7003
|
background?: string | undefined;
|
|
7004
7004
|
ring?: string | undefined;
|
|
7005
|
+
border?: string | undefined;
|
|
7005
7006
|
primaryHover?: string | undefined;
|
|
7006
7007
|
primaryForeground?: string | undefined;
|
|
7007
7008
|
secondaryHover?: string | undefined;
|
|
@@ -7010,7 +7011,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
7010
7011
|
mutedForeground?: string | undefined;
|
|
7011
7012
|
foreground?: string | undefined;
|
|
7012
7013
|
cardForeground?: string | undefined;
|
|
7013
|
-
border?: string | undefined;
|
|
7014
7014
|
errorForeground?: string | undefined;
|
|
7015
7015
|
successForeground?: string | undefined;
|
|
7016
7016
|
warningForeground?: string | undefined;
|
|
@@ -7027,14 +7027,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
7027
7027
|
primary?: string | undefined;
|
|
7028
7028
|
secondary?: string | undefined;
|
|
7029
7029
|
success?: string | undefined;
|
|
7030
|
-
error?: string | undefined;
|
|
7031
7030
|
warning?: string | undefined;
|
|
7032
7031
|
info?: string | undefined;
|
|
7032
|
+
error?: string | undefined;
|
|
7033
7033
|
muted?: string | undefined;
|
|
7034
7034
|
accent?: string | undefined;
|
|
7035
7035
|
surface?: string | undefined;
|
|
7036
7036
|
background?: string | undefined;
|
|
7037
7037
|
ring?: string | undefined;
|
|
7038
|
+
border?: string | undefined;
|
|
7038
7039
|
primaryHover?: string | undefined;
|
|
7039
7040
|
primaryForeground?: string | undefined;
|
|
7040
7041
|
secondaryHover?: string | undefined;
|
|
@@ -7043,7 +7044,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
7043
7044
|
mutedForeground?: string | undefined;
|
|
7044
7045
|
foreground?: string | undefined;
|
|
7045
7046
|
cardForeground?: string | undefined;
|
|
7046
|
-
border?: string | undefined;
|
|
7047
7047
|
errorForeground?: string | undefined;
|
|
7048
7048
|
successForeground?: string | undefined;
|
|
7049
7049
|
warningForeground?: string | undefined;
|
|
@@ -8006,14 +8006,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8006
8006
|
primary?: string | undefined;
|
|
8007
8007
|
secondary?: string | undefined;
|
|
8008
8008
|
success?: string | undefined;
|
|
8009
|
-
error?: string | undefined;
|
|
8010
8009
|
warning?: string | undefined;
|
|
8011
8010
|
info?: string | undefined;
|
|
8011
|
+
error?: string | undefined;
|
|
8012
8012
|
muted?: string | undefined;
|
|
8013
8013
|
accent?: string | undefined;
|
|
8014
8014
|
surface?: string | undefined;
|
|
8015
8015
|
background?: string | undefined;
|
|
8016
8016
|
ring?: string | undefined;
|
|
8017
|
+
border?: string | undefined;
|
|
8017
8018
|
primaryHover?: string | undefined;
|
|
8018
8019
|
primaryForeground?: string | undefined;
|
|
8019
8020
|
secondaryHover?: string | undefined;
|
|
@@ -8022,7 +8023,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8022
8023
|
mutedForeground?: string | undefined;
|
|
8023
8024
|
foreground?: string | undefined;
|
|
8024
8025
|
cardForeground?: string | undefined;
|
|
8025
|
-
border?: string | undefined;
|
|
8026
8026
|
errorForeground?: string | undefined;
|
|
8027
8027
|
successForeground?: string | undefined;
|
|
8028
8028
|
warningForeground?: string | undefined;
|
|
@@ -8228,14 +8228,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8228
8228
|
primary?: string | undefined;
|
|
8229
8229
|
secondary?: string | undefined;
|
|
8230
8230
|
success?: string | undefined;
|
|
8231
|
-
error?: string | undefined;
|
|
8232
8231
|
warning?: string | undefined;
|
|
8233
8232
|
info?: string | undefined;
|
|
8233
|
+
error?: string | undefined;
|
|
8234
8234
|
muted?: string | undefined;
|
|
8235
8235
|
accent?: string | undefined;
|
|
8236
8236
|
surface?: string | undefined;
|
|
8237
8237
|
background?: string | undefined;
|
|
8238
8238
|
ring?: string | undefined;
|
|
8239
|
+
border?: string | undefined;
|
|
8239
8240
|
primaryHover?: string | undefined;
|
|
8240
8241
|
primaryForeground?: string | undefined;
|
|
8241
8242
|
secondaryHover?: string | undefined;
|
|
@@ -8244,7 +8245,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8244
8245
|
mutedForeground?: string | undefined;
|
|
8245
8246
|
foreground?: string | undefined;
|
|
8246
8247
|
cardForeground?: string | undefined;
|
|
8247
|
-
border?: string | undefined;
|
|
8248
8248
|
errorForeground?: string | undefined;
|
|
8249
8249
|
successForeground?: string | undefined;
|
|
8250
8250
|
warningForeground?: string | undefined;
|
|
@@ -8453,14 +8453,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8453
8453
|
primary?: string | undefined;
|
|
8454
8454
|
secondary?: string | undefined;
|
|
8455
8455
|
success?: string | undefined;
|
|
8456
|
-
error?: string | undefined;
|
|
8457
8456
|
warning?: string | undefined;
|
|
8458
8457
|
info?: string | undefined;
|
|
8458
|
+
error?: string | undefined;
|
|
8459
8459
|
muted?: string | undefined;
|
|
8460
8460
|
accent?: string | undefined;
|
|
8461
8461
|
surface?: string | undefined;
|
|
8462
8462
|
background?: string | undefined;
|
|
8463
8463
|
ring?: string | undefined;
|
|
8464
|
+
border?: string | undefined;
|
|
8464
8465
|
primaryHover?: string | undefined;
|
|
8465
8466
|
primaryForeground?: string | undefined;
|
|
8466
8467
|
secondaryHover?: string | undefined;
|
|
@@ -8469,7 +8470,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8469
8470
|
mutedForeground?: string | undefined;
|
|
8470
8471
|
foreground?: string | undefined;
|
|
8471
8472
|
cardForeground?: string | undefined;
|
|
8472
|
-
border?: string | undefined;
|
|
8473
8473
|
errorForeground?: string | undefined;
|
|
8474
8474
|
successForeground?: string | undefined;
|
|
8475
8475
|
warningForeground?: string | undefined;
|
|
@@ -8676,14 +8676,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8676
8676
|
primary?: string | undefined;
|
|
8677
8677
|
secondary?: string | undefined;
|
|
8678
8678
|
success?: string | undefined;
|
|
8679
|
-
error?: string | undefined;
|
|
8680
8679
|
warning?: string | undefined;
|
|
8681
8680
|
info?: string | undefined;
|
|
8681
|
+
error?: string | undefined;
|
|
8682
8682
|
muted?: string | undefined;
|
|
8683
8683
|
accent?: string | undefined;
|
|
8684
8684
|
surface?: string | undefined;
|
|
8685
8685
|
background?: string | undefined;
|
|
8686
8686
|
ring?: string | undefined;
|
|
8687
|
+
border?: string | undefined;
|
|
8687
8688
|
primaryHover?: string | undefined;
|
|
8688
8689
|
primaryForeground?: string | undefined;
|
|
8689
8690
|
secondaryHover?: string | undefined;
|
|
@@ -8692,7 +8693,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8692
8693
|
mutedForeground?: string | undefined;
|
|
8693
8694
|
foreground?: string | undefined;
|
|
8694
8695
|
cardForeground?: string | undefined;
|
|
8695
|
-
border?: string | undefined;
|
|
8696
8696
|
errorForeground?: string | undefined;
|
|
8697
8697
|
successForeground?: string | undefined;
|
|
8698
8698
|
warningForeground?: string | undefined;
|
|
@@ -8901,14 +8901,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8901
8901
|
primary?: string | undefined;
|
|
8902
8902
|
secondary?: string | undefined;
|
|
8903
8903
|
success?: string | undefined;
|
|
8904
|
-
error?: string | undefined;
|
|
8905
8904
|
warning?: string | undefined;
|
|
8906
8905
|
info?: string | undefined;
|
|
8906
|
+
error?: string | undefined;
|
|
8907
8907
|
muted?: string | undefined;
|
|
8908
8908
|
accent?: string | undefined;
|
|
8909
8909
|
surface?: string | undefined;
|
|
8910
8910
|
background?: string | undefined;
|
|
8911
8911
|
ring?: string | undefined;
|
|
8912
|
+
border?: string | undefined;
|
|
8912
8913
|
primaryHover?: string | undefined;
|
|
8913
8914
|
primaryForeground?: string | undefined;
|
|
8914
8915
|
secondaryHover?: string | undefined;
|
|
@@ -8917,7 +8918,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
8917
8918
|
mutedForeground?: string | undefined;
|
|
8918
8919
|
foreground?: string | undefined;
|
|
8919
8920
|
cardForeground?: string | undefined;
|
|
8920
|
-
border?: string | undefined;
|
|
8921
8921
|
errorForeground?: string | undefined;
|
|
8922
8922
|
successForeground?: string | undefined;
|
|
8923
8923
|
warningForeground?: string | undefined;
|
|
@@ -9124,14 +9124,15 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
9124
9124
|
primary?: string | undefined;
|
|
9125
9125
|
secondary?: string | undefined;
|
|
9126
9126
|
success?: string | undefined;
|
|
9127
|
-
error?: string | undefined;
|
|
9128
9127
|
warning?: string | undefined;
|
|
9129
9128
|
info?: string | undefined;
|
|
9129
|
+
error?: string | undefined;
|
|
9130
9130
|
muted?: string | undefined;
|
|
9131
9131
|
accent?: string | undefined;
|
|
9132
9132
|
surface?: string | undefined;
|
|
9133
9133
|
background?: string | undefined;
|
|
9134
9134
|
ring?: string | undefined;
|
|
9135
|
+
border?: string | undefined;
|
|
9135
9136
|
primaryHover?: string | undefined;
|
|
9136
9137
|
primaryForeground?: string | undefined;
|
|
9137
9138
|
secondaryHover?: string | undefined;
|
|
@@ -9140,7 +9141,6 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
9140
9141
|
mutedForeground?: string | undefined;
|
|
9141
9142
|
foreground?: string | undefined;
|
|
9142
9143
|
cardForeground?: string | undefined;
|
|
9143
|
-
border?: string | undefined;
|
|
9144
9144
|
errorForeground?: string | undefined;
|
|
9145
9145
|
successForeground?: string | undefined;
|
|
9146
9146
|
warningForeground?: string | undefined;
|
|
@@ -9406,14 +9406,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9406
9406
|
primary?: string | undefined;
|
|
9407
9407
|
secondary?: string | undefined;
|
|
9408
9408
|
success?: string | undefined;
|
|
9409
|
-
error?: string | undefined;
|
|
9410
9409
|
warning?: string | undefined;
|
|
9411
9410
|
info?: string | undefined;
|
|
9411
|
+
error?: string | undefined;
|
|
9412
9412
|
muted?: string | undefined;
|
|
9413
9413
|
accent?: string | undefined;
|
|
9414
9414
|
surface?: string | undefined;
|
|
9415
9415
|
background?: string | undefined;
|
|
9416
9416
|
ring?: string | undefined;
|
|
9417
|
+
border?: string | undefined;
|
|
9417
9418
|
primaryHover?: string | undefined;
|
|
9418
9419
|
primaryForeground?: string | undefined;
|
|
9419
9420
|
secondaryHover?: string | undefined;
|
|
@@ -9422,7 +9423,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9422
9423
|
mutedForeground?: string | undefined;
|
|
9423
9424
|
foreground?: string | undefined;
|
|
9424
9425
|
cardForeground?: string | undefined;
|
|
9425
|
-
border?: string | undefined;
|
|
9426
9426
|
errorForeground?: string | undefined;
|
|
9427
9427
|
successForeground?: string | undefined;
|
|
9428
9428
|
warningForeground?: string | undefined;
|
|
@@ -9439,14 +9439,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9439
9439
|
primary?: string | undefined;
|
|
9440
9440
|
secondary?: string | undefined;
|
|
9441
9441
|
success?: string | undefined;
|
|
9442
|
-
error?: string | undefined;
|
|
9443
9442
|
warning?: string | undefined;
|
|
9444
9443
|
info?: string | undefined;
|
|
9444
|
+
error?: string | undefined;
|
|
9445
9445
|
muted?: string | undefined;
|
|
9446
9446
|
accent?: string | undefined;
|
|
9447
9447
|
surface?: string | undefined;
|
|
9448
9448
|
background?: string | undefined;
|
|
9449
9449
|
ring?: string | undefined;
|
|
9450
|
+
border?: string | undefined;
|
|
9450
9451
|
primaryHover?: string | undefined;
|
|
9451
9452
|
primaryForeground?: string | undefined;
|
|
9452
9453
|
secondaryHover?: string | undefined;
|
|
@@ -9455,7 +9456,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9455
9456
|
mutedForeground?: string | undefined;
|
|
9456
9457
|
foreground?: string | undefined;
|
|
9457
9458
|
cardForeground?: string | undefined;
|
|
9458
|
-
border?: string | undefined;
|
|
9459
9459
|
errorForeground?: string | undefined;
|
|
9460
9460
|
successForeground?: string | undefined;
|
|
9461
9461
|
warningForeground?: string | undefined;
|
|
@@ -10418,14 +10418,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10418
10418
|
primary?: string | undefined;
|
|
10419
10419
|
secondary?: string | undefined;
|
|
10420
10420
|
success?: string | undefined;
|
|
10421
|
-
error?: string | undefined;
|
|
10422
10421
|
warning?: string | undefined;
|
|
10423
10422
|
info?: string | undefined;
|
|
10423
|
+
error?: string | undefined;
|
|
10424
10424
|
muted?: string | undefined;
|
|
10425
10425
|
accent?: string | undefined;
|
|
10426
10426
|
surface?: string | undefined;
|
|
10427
10427
|
background?: string | undefined;
|
|
10428
10428
|
ring?: string | undefined;
|
|
10429
|
+
border?: string | undefined;
|
|
10429
10430
|
primaryHover?: string | undefined;
|
|
10430
10431
|
primaryForeground?: string | undefined;
|
|
10431
10432
|
secondaryHover?: string | undefined;
|
|
@@ -10434,7 +10435,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10434
10435
|
mutedForeground?: string | undefined;
|
|
10435
10436
|
foreground?: string | undefined;
|
|
10436
10437
|
cardForeground?: string | undefined;
|
|
10437
|
-
border?: string | undefined;
|
|
10438
10438
|
errorForeground?: string | undefined;
|
|
10439
10439
|
successForeground?: string | undefined;
|
|
10440
10440
|
warningForeground?: string | undefined;
|
|
@@ -10640,14 +10640,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10640
10640
|
primary?: string | undefined;
|
|
10641
10641
|
secondary?: string | undefined;
|
|
10642
10642
|
success?: string | undefined;
|
|
10643
|
-
error?: string | undefined;
|
|
10644
10643
|
warning?: string | undefined;
|
|
10645
10644
|
info?: string | undefined;
|
|
10645
|
+
error?: string | undefined;
|
|
10646
10646
|
muted?: string | undefined;
|
|
10647
10647
|
accent?: string | undefined;
|
|
10648
10648
|
surface?: string | undefined;
|
|
10649
10649
|
background?: string | undefined;
|
|
10650
10650
|
ring?: string | undefined;
|
|
10651
|
+
border?: string | undefined;
|
|
10651
10652
|
primaryHover?: string | undefined;
|
|
10652
10653
|
primaryForeground?: string | undefined;
|
|
10653
10654
|
secondaryHover?: string | undefined;
|
|
@@ -10656,7 +10657,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10656
10657
|
mutedForeground?: string | undefined;
|
|
10657
10658
|
foreground?: string | undefined;
|
|
10658
10659
|
cardForeground?: string | undefined;
|
|
10659
|
-
border?: string | undefined;
|
|
10660
10660
|
errorForeground?: string | undefined;
|
|
10661
10661
|
successForeground?: string | undefined;
|
|
10662
10662
|
warningForeground?: string | undefined;
|
|
@@ -10895,14 +10895,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10895
10895
|
primary?: string | undefined;
|
|
10896
10896
|
secondary?: string | undefined;
|
|
10897
10897
|
success?: string | undefined;
|
|
10898
|
-
error?: string | undefined;
|
|
10899
10898
|
warning?: string | undefined;
|
|
10900
10899
|
info?: string | undefined;
|
|
10900
|
+
error?: string | undefined;
|
|
10901
10901
|
muted?: string | undefined;
|
|
10902
10902
|
accent?: string | undefined;
|
|
10903
10903
|
surface?: string | undefined;
|
|
10904
10904
|
background?: string | undefined;
|
|
10905
10905
|
ring?: string | undefined;
|
|
10906
|
+
border?: string | undefined;
|
|
10906
10907
|
primaryHover?: string | undefined;
|
|
10907
10908
|
primaryForeground?: string | undefined;
|
|
10908
10909
|
secondaryHover?: string | undefined;
|
|
@@ -10911,7 +10912,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10911
10912
|
mutedForeground?: string | undefined;
|
|
10912
10913
|
foreground?: string | undefined;
|
|
10913
10914
|
cardForeground?: string | undefined;
|
|
10914
|
-
border?: string | undefined;
|
|
10915
10915
|
errorForeground?: string | undefined;
|
|
10916
10916
|
successForeground?: string | undefined;
|
|
10917
10917
|
warningForeground?: string | undefined;
|
|
@@ -10928,14 +10928,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10928
10928
|
primary?: string | undefined;
|
|
10929
10929
|
secondary?: string | undefined;
|
|
10930
10930
|
success?: string | undefined;
|
|
10931
|
-
error?: string | undefined;
|
|
10932
10931
|
warning?: string | undefined;
|
|
10933
10932
|
info?: string | undefined;
|
|
10933
|
+
error?: string | undefined;
|
|
10934
10934
|
muted?: string | undefined;
|
|
10935
10935
|
accent?: string | undefined;
|
|
10936
10936
|
surface?: string | undefined;
|
|
10937
10937
|
background?: string | undefined;
|
|
10938
10938
|
ring?: string | undefined;
|
|
10939
|
+
border?: string | undefined;
|
|
10939
10940
|
primaryHover?: string | undefined;
|
|
10940
10941
|
primaryForeground?: string | undefined;
|
|
10941
10942
|
secondaryHover?: string | undefined;
|
|
@@ -10944,7 +10945,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10944
10945
|
mutedForeground?: string | undefined;
|
|
10945
10946
|
foreground?: string | undefined;
|
|
10946
10947
|
cardForeground?: string | undefined;
|
|
10947
|
-
border?: string | undefined;
|
|
10948
10948
|
errorForeground?: string | undefined;
|
|
10949
10949
|
successForeground?: string | undefined;
|
|
10950
10950
|
warningForeground?: string | undefined;
|
|
@@ -11907,14 +11907,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11907
11907
|
primary?: string | undefined;
|
|
11908
11908
|
secondary?: string | undefined;
|
|
11909
11909
|
success?: string | undefined;
|
|
11910
|
-
error?: string | undefined;
|
|
11911
11910
|
warning?: string | undefined;
|
|
11912
11911
|
info?: string | undefined;
|
|
11912
|
+
error?: string | undefined;
|
|
11913
11913
|
muted?: string | undefined;
|
|
11914
11914
|
accent?: string | undefined;
|
|
11915
11915
|
surface?: string | undefined;
|
|
11916
11916
|
background?: string | undefined;
|
|
11917
11917
|
ring?: string | undefined;
|
|
11918
|
+
border?: string | undefined;
|
|
11918
11919
|
primaryHover?: string | undefined;
|
|
11919
11920
|
primaryForeground?: string | undefined;
|
|
11920
11921
|
secondaryHover?: string | undefined;
|
|
@@ -11923,7 +11924,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11923
11924
|
mutedForeground?: string | undefined;
|
|
11924
11925
|
foreground?: string | undefined;
|
|
11925
11926
|
cardForeground?: string | undefined;
|
|
11926
|
-
border?: string | undefined;
|
|
11927
11927
|
errorForeground?: string | undefined;
|
|
11928
11928
|
successForeground?: string | undefined;
|
|
11929
11929
|
warningForeground?: string | undefined;
|
|
@@ -12129,14 +12129,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12129
12129
|
primary?: string | undefined;
|
|
12130
12130
|
secondary?: string | undefined;
|
|
12131
12131
|
success?: string | undefined;
|
|
12132
|
-
error?: string | undefined;
|
|
12133
12132
|
warning?: string | undefined;
|
|
12134
12133
|
info?: string | undefined;
|
|
12134
|
+
error?: string | undefined;
|
|
12135
12135
|
muted?: string | undefined;
|
|
12136
12136
|
accent?: string | undefined;
|
|
12137
12137
|
surface?: string | undefined;
|
|
12138
12138
|
background?: string | undefined;
|
|
12139
12139
|
ring?: string | undefined;
|
|
12140
|
+
border?: string | undefined;
|
|
12140
12141
|
primaryHover?: string | undefined;
|
|
12141
12142
|
primaryForeground?: string | undefined;
|
|
12142
12143
|
secondaryHover?: string | undefined;
|
|
@@ -12145,7 +12146,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12145
12146
|
mutedForeground?: string | undefined;
|
|
12146
12147
|
foreground?: string | undefined;
|
|
12147
12148
|
cardForeground?: string | undefined;
|
|
12148
|
-
border?: string | undefined;
|
|
12149
12149
|
errorForeground?: string | undefined;
|
|
12150
12150
|
successForeground?: string | undefined;
|
|
12151
12151
|
warningForeground?: string | undefined;
|
|
@@ -12354,14 +12354,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12354
12354
|
primary?: string | undefined;
|
|
12355
12355
|
secondary?: string | undefined;
|
|
12356
12356
|
success?: string | undefined;
|
|
12357
|
-
error?: string | undefined;
|
|
12358
12357
|
warning?: string | undefined;
|
|
12359
12358
|
info?: string | undefined;
|
|
12359
|
+
error?: string | undefined;
|
|
12360
12360
|
muted?: string | undefined;
|
|
12361
12361
|
accent?: string | undefined;
|
|
12362
12362
|
surface?: string | undefined;
|
|
12363
12363
|
background?: string | undefined;
|
|
12364
12364
|
ring?: string | undefined;
|
|
12365
|
+
border?: string | undefined;
|
|
12365
12366
|
primaryHover?: string | undefined;
|
|
12366
12367
|
primaryForeground?: string | undefined;
|
|
12367
12368
|
secondaryHover?: string | undefined;
|
|
@@ -12370,7 +12371,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12370
12371
|
mutedForeground?: string | undefined;
|
|
12371
12372
|
foreground?: string | undefined;
|
|
12372
12373
|
cardForeground?: string | undefined;
|
|
12373
|
-
border?: string | undefined;
|
|
12374
12374
|
errorForeground?: string | undefined;
|
|
12375
12375
|
successForeground?: string | undefined;
|
|
12376
12376
|
warningForeground?: string | undefined;
|
|
@@ -12577,14 +12577,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12577
12577
|
primary?: string | undefined;
|
|
12578
12578
|
secondary?: string | undefined;
|
|
12579
12579
|
success?: string | undefined;
|
|
12580
|
-
error?: string | undefined;
|
|
12581
12580
|
warning?: string | undefined;
|
|
12582
12581
|
info?: string | undefined;
|
|
12582
|
+
error?: string | undefined;
|
|
12583
12583
|
muted?: string | undefined;
|
|
12584
12584
|
accent?: string | undefined;
|
|
12585
12585
|
surface?: string | undefined;
|
|
12586
12586
|
background?: string | undefined;
|
|
12587
12587
|
ring?: string | undefined;
|
|
12588
|
+
border?: string | undefined;
|
|
12588
12589
|
primaryHover?: string | undefined;
|
|
12589
12590
|
primaryForeground?: string | undefined;
|
|
12590
12591
|
secondaryHover?: string | undefined;
|
|
@@ -12593,7 +12594,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12593
12594
|
mutedForeground?: string | undefined;
|
|
12594
12595
|
foreground?: string | undefined;
|
|
12595
12596
|
cardForeground?: string | undefined;
|
|
12596
|
-
border?: string | undefined;
|
|
12597
12597
|
errorForeground?: string | undefined;
|
|
12598
12598
|
successForeground?: string | undefined;
|
|
12599
12599
|
warningForeground?: string | undefined;
|
|
@@ -12802,14 +12802,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12802
12802
|
primary?: string | undefined;
|
|
12803
12803
|
secondary?: string | undefined;
|
|
12804
12804
|
success?: string | undefined;
|
|
12805
|
-
error?: string | undefined;
|
|
12806
12805
|
warning?: string | undefined;
|
|
12807
12806
|
info?: string | undefined;
|
|
12807
|
+
error?: string | undefined;
|
|
12808
12808
|
muted?: string | undefined;
|
|
12809
12809
|
accent?: string | undefined;
|
|
12810
12810
|
surface?: string | undefined;
|
|
12811
12811
|
background?: string | undefined;
|
|
12812
12812
|
ring?: string | undefined;
|
|
12813
|
+
border?: string | undefined;
|
|
12813
12814
|
primaryHover?: string | undefined;
|
|
12814
12815
|
primaryForeground?: string | undefined;
|
|
12815
12816
|
secondaryHover?: string | undefined;
|
|
@@ -12818,7 +12819,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12818
12819
|
mutedForeground?: string | undefined;
|
|
12819
12820
|
foreground?: string | undefined;
|
|
12820
12821
|
cardForeground?: string | undefined;
|
|
12821
|
-
border?: string | undefined;
|
|
12822
12822
|
errorForeground?: string | undefined;
|
|
12823
12823
|
successForeground?: string | undefined;
|
|
12824
12824
|
warningForeground?: string | undefined;
|
|
@@ -13025,14 +13025,15 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13025
13025
|
primary?: string | undefined;
|
|
13026
13026
|
secondary?: string | undefined;
|
|
13027
13027
|
success?: string | undefined;
|
|
13028
|
-
error?: string | undefined;
|
|
13029
13028
|
warning?: string | undefined;
|
|
13030
13029
|
info?: string | undefined;
|
|
13030
|
+
error?: string | undefined;
|
|
13031
13031
|
muted?: string | undefined;
|
|
13032
13032
|
accent?: string | undefined;
|
|
13033
13033
|
surface?: string | undefined;
|
|
13034
13034
|
background?: string | undefined;
|
|
13035
13035
|
ring?: string | undefined;
|
|
13036
|
+
border?: string | undefined;
|
|
13036
13037
|
primaryHover?: string | undefined;
|
|
13037
13038
|
primaryForeground?: string | undefined;
|
|
13038
13039
|
secondaryHover?: string | undefined;
|
|
@@ -13041,7 +13042,6 @@ declare const ThemeRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13041
13042
|
mutedForeground?: string | undefined;
|
|
13042
13043
|
foreground?: string | undefined;
|
|
13043
13044
|
cardForeground?: string | undefined;
|
|
13044
|
-
border?: string | undefined;
|
|
13045
13045
|
errorForeground?: string | undefined;
|
|
13046
13046
|
successForeground?: string | undefined;
|
|
13047
13047
|
warningForeground?: string | undefined;
|
|
@@ -13294,14 +13294,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
13294
13294
|
primary?: string | undefined;
|
|
13295
13295
|
secondary?: string | undefined;
|
|
13296
13296
|
success?: string | undefined;
|
|
13297
|
-
error?: string | undefined;
|
|
13298
13297
|
warning?: string | undefined;
|
|
13299
13298
|
info?: string | undefined;
|
|
13299
|
+
error?: string | undefined;
|
|
13300
13300
|
muted?: string | undefined;
|
|
13301
13301
|
accent?: string | undefined;
|
|
13302
13302
|
surface?: string | undefined;
|
|
13303
13303
|
background?: string | undefined;
|
|
13304
13304
|
ring?: string | undefined;
|
|
13305
|
+
border?: string | undefined;
|
|
13305
13306
|
primaryHover?: string | undefined;
|
|
13306
13307
|
primaryForeground?: string | undefined;
|
|
13307
13308
|
secondaryHover?: string | undefined;
|
|
@@ -13310,7 +13311,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
13310
13311
|
mutedForeground?: string | undefined;
|
|
13311
13312
|
foreground?: string | undefined;
|
|
13312
13313
|
cardForeground?: string | undefined;
|
|
13313
|
-
border?: string | undefined;
|
|
13314
13314
|
errorForeground?: string | undefined;
|
|
13315
13315
|
successForeground?: string | undefined;
|
|
13316
13316
|
warningForeground?: string | undefined;
|
|
@@ -13327,14 +13327,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
13327
13327
|
primary?: string | undefined;
|
|
13328
13328
|
secondary?: string | undefined;
|
|
13329
13329
|
success?: string | undefined;
|
|
13330
|
-
error?: string | undefined;
|
|
13331
13330
|
warning?: string | undefined;
|
|
13332
13331
|
info?: string | undefined;
|
|
13332
|
+
error?: string | undefined;
|
|
13333
13333
|
muted?: string | undefined;
|
|
13334
13334
|
accent?: string | undefined;
|
|
13335
13335
|
surface?: string | undefined;
|
|
13336
13336
|
background?: string | undefined;
|
|
13337
13337
|
ring?: string | undefined;
|
|
13338
|
+
border?: string | undefined;
|
|
13338
13339
|
primaryHover?: string | undefined;
|
|
13339
13340
|
primaryForeground?: string | undefined;
|
|
13340
13341
|
secondaryHover?: string | undefined;
|
|
@@ -13343,7 +13344,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
13343
13344
|
mutedForeground?: string | undefined;
|
|
13344
13345
|
foreground?: string | undefined;
|
|
13345
13346
|
cardForeground?: string | undefined;
|
|
13346
|
-
border?: string | undefined;
|
|
13347
13347
|
errorForeground?: string | undefined;
|
|
13348
13348
|
successForeground?: string | undefined;
|
|
13349
13349
|
warningForeground?: string | undefined;
|
|
@@ -14306,14 +14306,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14306
14306
|
primary?: string | undefined;
|
|
14307
14307
|
secondary?: string | undefined;
|
|
14308
14308
|
success?: string | undefined;
|
|
14309
|
-
error?: string | undefined;
|
|
14310
14309
|
warning?: string | undefined;
|
|
14311
14310
|
info?: string | undefined;
|
|
14311
|
+
error?: string | undefined;
|
|
14312
14312
|
muted?: string | undefined;
|
|
14313
14313
|
accent?: string | undefined;
|
|
14314
14314
|
surface?: string | undefined;
|
|
14315
14315
|
background?: string | undefined;
|
|
14316
14316
|
ring?: string | undefined;
|
|
14317
|
+
border?: string | undefined;
|
|
14317
14318
|
primaryHover?: string | undefined;
|
|
14318
14319
|
primaryForeground?: string | undefined;
|
|
14319
14320
|
secondaryHover?: string | undefined;
|
|
@@ -14322,7 +14323,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14322
14323
|
mutedForeground?: string | undefined;
|
|
14323
14324
|
foreground?: string | undefined;
|
|
14324
14325
|
cardForeground?: string | undefined;
|
|
14325
|
-
border?: string | undefined;
|
|
14326
14326
|
errorForeground?: string | undefined;
|
|
14327
14327
|
successForeground?: string | undefined;
|
|
14328
14328
|
warningForeground?: string | undefined;
|
|
@@ -14528,14 +14528,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14528
14528
|
primary?: string | undefined;
|
|
14529
14529
|
secondary?: string | undefined;
|
|
14530
14530
|
success?: string | undefined;
|
|
14531
|
-
error?: string | undefined;
|
|
14532
14531
|
warning?: string | undefined;
|
|
14533
14532
|
info?: string | undefined;
|
|
14533
|
+
error?: string | undefined;
|
|
14534
14534
|
muted?: string | undefined;
|
|
14535
14535
|
accent?: string | undefined;
|
|
14536
14536
|
surface?: string | undefined;
|
|
14537
14537
|
background?: string | undefined;
|
|
14538
14538
|
ring?: string | undefined;
|
|
14539
|
+
border?: string | undefined;
|
|
14539
14540
|
primaryHover?: string | undefined;
|
|
14540
14541
|
primaryForeground?: string | undefined;
|
|
14541
14542
|
secondaryHover?: string | undefined;
|
|
@@ -14544,7 +14545,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14544
14545
|
mutedForeground?: string | undefined;
|
|
14545
14546
|
foreground?: string | undefined;
|
|
14546
14547
|
cardForeground?: string | undefined;
|
|
14547
|
-
border?: string | undefined;
|
|
14548
14548
|
errorForeground?: string | undefined;
|
|
14549
14549
|
successForeground?: string | undefined;
|
|
14550
14550
|
warningForeground?: string | undefined;
|
|
@@ -14783,14 +14783,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14783
14783
|
primary?: string | undefined;
|
|
14784
14784
|
secondary?: string | undefined;
|
|
14785
14785
|
success?: string | undefined;
|
|
14786
|
-
error?: string | undefined;
|
|
14787
14786
|
warning?: string | undefined;
|
|
14788
14787
|
info?: string | undefined;
|
|
14788
|
+
error?: string | undefined;
|
|
14789
14789
|
muted?: string | undefined;
|
|
14790
14790
|
accent?: string | undefined;
|
|
14791
14791
|
surface?: string | undefined;
|
|
14792
14792
|
background?: string | undefined;
|
|
14793
14793
|
ring?: string | undefined;
|
|
14794
|
+
border?: string | undefined;
|
|
14794
14795
|
primaryHover?: string | undefined;
|
|
14795
14796
|
primaryForeground?: string | undefined;
|
|
14796
14797
|
secondaryHover?: string | undefined;
|
|
@@ -14799,7 +14800,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14799
14800
|
mutedForeground?: string | undefined;
|
|
14800
14801
|
foreground?: string | undefined;
|
|
14801
14802
|
cardForeground?: string | undefined;
|
|
14802
|
-
border?: string | undefined;
|
|
14803
14803
|
errorForeground?: string | undefined;
|
|
14804
14804
|
successForeground?: string | undefined;
|
|
14805
14805
|
warningForeground?: string | undefined;
|
|
@@ -14816,14 +14816,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14816
14816
|
primary?: string | undefined;
|
|
14817
14817
|
secondary?: string | undefined;
|
|
14818
14818
|
success?: string | undefined;
|
|
14819
|
-
error?: string | undefined;
|
|
14820
14819
|
warning?: string | undefined;
|
|
14821
14820
|
info?: string | undefined;
|
|
14821
|
+
error?: string | undefined;
|
|
14822
14822
|
muted?: string | undefined;
|
|
14823
14823
|
accent?: string | undefined;
|
|
14824
14824
|
surface?: string | undefined;
|
|
14825
14825
|
background?: string | undefined;
|
|
14826
14826
|
ring?: string | undefined;
|
|
14827
|
+
border?: string | undefined;
|
|
14827
14828
|
primaryHover?: string | undefined;
|
|
14828
14829
|
primaryForeground?: string | undefined;
|
|
14829
14830
|
secondaryHover?: string | undefined;
|
|
@@ -14832,7 +14833,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
14832
14833
|
mutedForeground?: string | undefined;
|
|
14833
14834
|
foreground?: string | undefined;
|
|
14834
14835
|
cardForeground?: string | undefined;
|
|
14835
|
-
border?: string | undefined;
|
|
14836
14836
|
errorForeground?: string | undefined;
|
|
14837
14837
|
successForeground?: string | undefined;
|
|
14838
14838
|
warningForeground?: string | undefined;
|
|
@@ -15795,14 +15795,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
15795
15795
|
primary?: string | undefined;
|
|
15796
15796
|
secondary?: string | undefined;
|
|
15797
15797
|
success?: string | undefined;
|
|
15798
|
-
error?: string | undefined;
|
|
15799
15798
|
warning?: string | undefined;
|
|
15800
15799
|
info?: string | undefined;
|
|
15800
|
+
error?: string | undefined;
|
|
15801
15801
|
muted?: string | undefined;
|
|
15802
15802
|
accent?: string | undefined;
|
|
15803
15803
|
surface?: string | undefined;
|
|
15804
15804
|
background?: string | undefined;
|
|
15805
15805
|
ring?: string | undefined;
|
|
15806
|
+
border?: string | undefined;
|
|
15806
15807
|
primaryHover?: string | undefined;
|
|
15807
15808
|
primaryForeground?: string | undefined;
|
|
15808
15809
|
secondaryHover?: string | undefined;
|
|
@@ -15811,7 +15812,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
15811
15812
|
mutedForeground?: string | undefined;
|
|
15812
15813
|
foreground?: string | undefined;
|
|
15813
15814
|
cardForeground?: string | undefined;
|
|
15814
|
-
border?: string | undefined;
|
|
15815
15815
|
errorForeground?: string | undefined;
|
|
15816
15816
|
successForeground?: string | undefined;
|
|
15817
15817
|
warningForeground?: string | undefined;
|
|
@@ -16017,14 +16017,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16017
16017
|
primary?: string | undefined;
|
|
16018
16018
|
secondary?: string | undefined;
|
|
16019
16019
|
success?: string | undefined;
|
|
16020
|
-
error?: string | undefined;
|
|
16021
16020
|
warning?: string | undefined;
|
|
16022
16021
|
info?: string | undefined;
|
|
16022
|
+
error?: string | undefined;
|
|
16023
16023
|
muted?: string | undefined;
|
|
16024
16024
|
accent?: string | undefined;
|
|
16025
16025
|
surface?: string | undefined;
|
|
16026
16026
|
background?: string | undefined;
|
|
16027
16027
|
ring?: string | undefined;
|
|
16028
|
+
border?: string | undefined;
|
|
16028
16029
|
primaryHover?: string | undefined;
|
|
16029
16030
|
primaryForeground?: string | undefined;
|
|
16030
16031
|
secondaryHover?: string | undefined;
|
|
@@ -16033,7 +16034,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16033
16034
|
mutedForeground?: string | undefined;
|
|
16034
16035
|
foreground?: string | undefined;
|
|
16035
16036
|
cardForeground?: string | undefined;
|
|
16036
|
-
border?: string | undefined;
|
|
16037
16037
|
errorForeground?: string | undefined;
|
|
16038
16038
|
successForeground?: string | undefined;
|
|
16039
16039
|
warningForeground?: string | undefined;
|
|
@@ -16242,14 +16242,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16242
16242
|
primary?: string | undefined;
|
|
16243
16243
|
secondary?: string | undefined;
|
|
16244
16244
|
success?: string | undefined;
|
|
16245
|
-
error?: string | undefined;
|
|
16246
16245
|
warning?: string | undefined;
|
|
16247
16246
|
info?: string | undefined;
|
|
16247
|
+
error?: string | undefined;
|
|
16248
16248
|
muted?: string | undefined;
|
|
16249
16249
|
accent?: string | undefined;
|
|
16250
16250
|
surface?: string | undefined;
|
|
16251
16251
|
background?: string | undefined;
|
|
16252
16252
|
ring?: string | undefined;
|
|
16253
|
+
border?: string | undefined;
|
|
16253
16254
|
primaryHover?: string | undefined;
|
|
16254
16255
|
primaryForeground?: string | undefined;
|
|
16255
16256
|
secondaryHover?: string | undefined;
|
|
@@ -16258,7 +16259,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16258
16259
|
mutedForeground?: string | undefined;
|
|
16259
16260
|
foreground?: string | undefined;
|
|
16260
16261
|
cardForeground?: string | undefined;
|
|
16261
|
-
border?: string | undefined;
|
|
16262
16262
|
errorForeground?: string | undefined;
|
|
16263
16263
|
successForeground?: string | undefined;
|
|
16264
16264
|
warningForeground?: string | undefined;
|
|
@@ -16465,14 +16465,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16465
16465
|
primary?: string | undefined;
|
|
16466
16466
|
secondary?: string | undefined;
|
|
16467
16467
|
success?: string | undefined;
|
|
16468
|
-
error?: string | undefined;
|
|
16469
16468
|
warning?: string | undefined;
|
|
16470
16469
|
info?: string | undefined;
|
|
16470
|
+
error?: string | undefined;
|
|
16471
16471
|
muted?: string | undefined;
|
|
16472
16472
|
accent?: string | undefined;
|
|
16473
16473
|
surface?: string | undefined;
|
|
16474
16474
|
background?: string | undefined;
|
|
16475
16475
|
ring?: string | undefined;
|
|
16476
|
+
border?: string | undefined;
|
|
16476
16477
|
primaryHover?: string | undefined;
|
|
16477
16478
|
primaryForeground?: string | undefined;
|
|
16478
16479
|
secondaryHover?: string | undefined;
|
|
@@ -16481,7 +16482,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16481
16482
|
mutedForeground?: string | undefined;
|
|
16482
16483
|
foreground?: string | undefined;
|
|
16483
16484
|
cardForeground?: string | undefined;
|
|
16484
|
-
border?: string | undefined;
|
|
16485
16485
|
errorForeground?: string | undefined;
|
|
16486
16486
|
successForeground?: string | undefined;
|
|
16487
16487
|
warningForeground?: string | undefined;
|
|
@@ -16690,14 +16690,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16690
16690
|
primary?: string | undefined;
|
|
16691
16691
|
secondary?: string | undefined;
|
|
16692
16692
|
success?: string | undefined;
|
|
16693
|
-
error?: string | undefined;
|
|
16694
16693
|
warning?: string | undefined;
|
|
16695
16694
|
info?: string | undefined;
|
|
16695
|
+
error?: string | undefined;
|
|
16696
16696
|
muted?: string | undefined;
|
|
16697
16697
|
accent?: string | undefined;
|
|
16698
16698
|
surface?: string | undefined;
|
|
16699
16699
|
background?: string | undefined;
|
|
16700
16700
|
ring?: string | undefined;
|
|
16701
|
+
border?: string | undefined;
|
|
16701
16702
|
primaryHover?: string | undefined;
|
|
16702
16703
|
primaryForeground?: string | undefined;
|
|
16703
16704
|
secondaryHover?: string | undefined;
|
|
@@ -16706,7 +16707,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16706
16707
|
mutedForeground?: string | undefined;
|
|
16707
16708
|
foreground?: string | undefined;
|
|
16708
16709
|
cardForeground?: string | undefined;
|
|
16709
|
-
border?: string | undefined;
|
|
16710
16710
|
errorForeground?: string | undefined;
|
|
16711
16711
|
successForeground?: string | undefined;
|
|
16712
16712
|
warningForeground?: string | undefined;
|
|
@@ -16913,14 +16913,15 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16913
16913
|
primary?: string | undefined;
|
|
16914
16914
|
secondary?: string | undefined;
|
|
16915
16915
|
success?: string | undefined;
|
|
16916
|
-
error?: string | undefined;
|
|
16917
16916
|
warning?: string | undefined;
|
|
16918
16917
|
info?: string | undefined;
|
|
16918
|
+
error?: string | undefined;
|
|
16919
16919
|
muted?: string | undefined;
|
|
16920
16920
|
accent?: string | undefined;
|
|
16921
16921
|
surface?: string | undefined;
|
|
16922
16922
|
background?: string | undefined;
|
|
16923
16923
|
ring?: string | undefined;
|
|
16924
|
+
border?: string | undefined;
|
|
16924
16925
|
primaryHover?: string | undefined;
|
|
16925
16926
|
primaryForeground?: string | undefined;
|
|
16926
16927
|
secondaryHover?: string | undefined;
|
|
@@ -16929,7 +16930,6 @@ declare const SkinSpecSchema: z.ZodObject<{
|
|
|
16929
16930
|
mutedForeground?: string | undefined;
|
|
16930
16931
|
foreground?: string | undefined;
|
|
16931
16932
|
cardForeground?: string | undefined;
|
|
16932
|
-
border?: string | undefined;
|
|
16933
16933
|
errorForeground?: string | undefined;
|
|
16934
16934
|
successForeground?: string | undefined;
|
|
16935
16935
|
warningForeground?: string | undefined;
|
|
@@ -17182,14 +17182,15 @@ declare const ColorSliceSchema: z.ZodObject<{
|
|
|
17182
17182
|
primary?: string | undefined;
|
|
17183
17183
|
secondary?: string | undefined;
|
|
17184
17184
|
success?: string | undefined;
|
|
17185
|
-
error?: string | undefined;
|
|
17186
17185
|
warning?: string | undefined;
|
|
17187
17186
|
info?: string | undefined;
|
|
17187
|
+
error?: string | undefined;
|
|
17188
17188
|
muted?: string | undefined;
|
|
17189
17189
|
accent?: string | undefined;
|
|
17190
17190
|
surface?: string | undefined;
|
|
17191
17191
|
background?: string | undefined;
|
|
17192
17192
|
ring?: string | undefined;
|
|
17193
|
+
border?: string | undefined;
|
|
17193
17194
|
primaryHover?: string | undefined;
|
|
17194
17195
|
primaryForeground?: string | undefined;
|
|
17195
17196
|
secondaryHover?: string | undefined;
|
|
@@ -17198,7 +17199,6 @@ declare const ColorSliceSchema: z.ZodObject<{
|
|
|
17198
17199
|
mutedForeground?: string | undefined;
|
|
17199
17200
|
foreground?: string | undefined;
|
|
17200
17201
|
cardForeground?: string | undefined;
|
|
17201
|
-
border?: string | undefined;
|
|
17202
17202
|
errorForeground?: string | undefined;
|
|
17203
17203
|
successForeground?: string | undefined;
|
|
17204
17204
|
warningForeground?: string | undefined;
|
|
@@ -17215,14 +17215,15 @@ declare const ColorSliceSchema: z.ZodObject<{
|
|
|
17215
17215
|
primary?: string | undefined;
|
|
17216
17216
|
secondary?: string | undefined;
|
|
17217
17217
|
success?: string | undefined;
|
|
17218
|
-
error?: string | undefined;
|
|
17219
17218
|
warning?: string | undefined;
|
|
17220
17219
|
info?: string | undefined;
|
|
17220
|
+
error?: string | undefined;
|
|
17221
17221
|
muted?: string | undefined;
|
|
17222
17222
|
accent?: string | undefined;
|
|
17223
17223
|
surface?: string | undefined;
|
|
17224
17224
|
background?: string | undefined;
|
|
17225
17225
|
ring?: string | undefined;
|
|
17226
|
+
border?: string | undefined;
|
|
17226
17227
|
primaryHover?: string | undefined;
|
|
17227
17228
|
primaryForeground?: string | undefined;
|
|
17228
17229
|
secondaryHover?: string | undefined;
|
|
@@ -17231,7 +17232,6 @@ declare const ColorSliceSchema: z.ZodObject<{
|
|
|
17231
17232
|
mutedForeground?: string | undefined;
|
|
17232
17233
|
foreground?: string | undefined;
|
|
17233
17234
|
cardForeground?: string | undefined;
|
|
17234
|
-
border?: string | undefined;
|
|
17235
17235
|
errorForeground?: string | undefined;
|
|
17236
17236
|
successForeground?: string | undefined;
|
|
17237
17237
|
warningForeground?: string | undefined;
|
|
@@ -18232,13 +18232,13 @@ declare const CustomPatternDefinitionSchema: z.ZodObject<{
|
|
|
18232
18232
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18233
18233
|
}, "strip", z.ZodTypeAny, {
|
|
18234
18234
|
type: "custom";
|
|
18235
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
18235
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
18236
18236
|
className: string;
|
|
18237
18237
|
slots?: string[] | undefined;
|
|
18238
18238
|
props?: string[] | undefined;
|
|
18239
18239
|
}, {
|
|
18240
18240
|
type: "custom";
|
|
18241
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
18241
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
18242
18242
|
className: string;
|
|
18243
18243
|
slots?: string[] | undefined;
|
|
18244
18244
|
props?: string[] | undefined;
|
|
@@ -18255,13 +18255,13 @@ declare const CustomPatternMapSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.Z
|
|
|
18255
18255
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18256
18256
|
}, "strip", z.ZodTypeAny, {
|
|
18257
18257
|
type: "custom";
|
|
18258
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
18258
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
18259
18259
|
className: string;
|
|
18260
18260
|
slots?: string[] | undefined;
|
|
18261
18261
|
props?: string[] | undefined;
|
|
18262
18262
|
}, {
|
|
18263
18263
|
type: "custom";
|
|
18264
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
18264
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
18265
18265
|
className: string;
|
|
18266
18266
|
slots?: string[] | undefined;
|
|
18267
18267
|
props?: string[] | undefined;
|
|
@@ -19498,6 +19498,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19498
19498
|
ref: string;
|
|
19499
19499
|
path?: string | undefined;
|
|
19500
19500
|
from?: string | undefined;
|
|
19501
|
+
linkedEntity?: string | undefined;
|
|
19501
19502
|
traits?: (string | {
|
|
19502
19503
|
name: string;
|
|
19503
19504
|
scope: "instance" | "collection";
|
|
@@ -19650,11 +19651,11 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19650
19651
|
events?: Record<string, string> | undefined;
|
|
19651
19652
|
linkedEntity?: string | undefined;
|
|
19652
19653
|
})[] | undefined;
|
|
19653
|
-
linkedEntity?: string | undefined;
|
|
19654
19654
|
}, {
|
|
19655
19655
|
ref: string;
|
|
19656
19656
|
path?: string | undefined;
|
|
19657
19657
|
from?: string | undefined;
|
|
19658
|
+
linkedEntity?: string | undefined;
|
|
19658
19659
|
traits?: (string | {
|
|
19659
19660
|
name: string;
|
|
19660
19661
|
scope: "instance" | "collection";
|
|
@@ -19807,7 +19808,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19807
19808
|
events?: Record<string, string> | undefined;
|
|
19808
19809
|
linkedEntity?: string | undefined;
|
|
19809
19810
|
})[] | undefined;
|
|
19810
|
-
linkedEntity?: string | undefined;
|
|
19811
19811
|
}>;
|
|
19812
19812
|
declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
19813
19813
|
name: z.ZodString;
|
|
@@ -19840,7 +19840,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19840
19840
|
linkedEntity?: string | undefined;
|
|
19841
19841
|
}[] | undefined;
|
|
19842
19842
|
primaryEntity?: string | undefined;
|
|
19843
|
-
viewType?: "custom" | "create" | "
|
|
19843
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
19844
19844
|
}, {
|
|
19845
19845
|
path: string;
|
|
19846
19846
|
name: string;
|
|
@@ -19852,7 +19852,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19852
19852
|
linkedEntity?: string | undefined;
|
|
19853
19853
|
}[] | undefined;
|
|
19854
19854
|
primaryEntity?: string | undefined;
|
|
19855
|
-
viewType?: "custom" | "create" | "
|
|
19855
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
19856
19856
|
}>, z.ZodString, z.ZodObject<{
|
|
19857
19857
|
ref: z.ZodString;
|
|
19858
19858
|
from: z.ZodOptional<z.ZodString>;
|
|
@@ -20686,6 +20686,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20686
20686
|
ref: string;
|
|
20687
20687
|
path?: string | undefined;
|
|
20688
20688
|
from?: string | undefined;
|
|
20689
|
+
linkedEntity?: string | undefined;
|
|
20689
20690
|
traits?: (string | {
|
|
20690
20691
|
name: string;
|
|
20691
20692
|
scope: "instance" | "collection";
|
|
@@ -20838,11 +20839,11 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20838
20839
|
events?: Record<string, string> | undefined;
|
|
20839
20840
|
linkedEntity?: string | undefined;
|
|
20840
20841
|
})[] | undefined;
|
|
20841
|
-
linkedEntity?: string | undefined;
|
|
20842
20842
|
}, {
|
|
20843
20843
|
ref: string;
|
|
20844
20844
|
path?: string | undefined;
|
|
20845
20845
|
from?: string | undefined;
|
|
20846
|
+
linkedEntity?: string | undefined;
|
|
20846
20847
|
traits?: (string | {
|
|
20847
20848
|
name: string;
|
|
20848
20849
|
scope: "instance" | "collection";
|
|
@@ -20995,7 +20996,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20995
20996
|
events?: Record<string, string> | undefined;
|
|
20996
20997
|
linkedEntity?: string | undefined;
|
|
20997
20998
|
})[] | undefined;
|
|
20998
|
-
linkedEntity?: string | undefined;
|
|
20999
20999
|
}>]>;
|
|
21000
21000
|
/**
|
|
21001
21001
|
* Checks if a trait reference is an imported reference.
|
|
@@ -21446,14 +21446,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
21446
21446
|
primary?: string | undefined;
|
|
21447
21447
|
secondary?: string | undefined;
|
|
21448
21448
|
success?: string | undefined;
|
|
21449
|
-
error?: string | undefined;
|
|
21450
21449
|
warning?: string | undefined;
|
|
21451
21450
|
info?: string | undefined;
|
|
21451
|
+
error?: string | undefined;
|
|
21452
21452
|
muted?: string | undefined;
|
|
21453
21453
|
accent?: string | undefined;
|
|
21454
21454
|
surface?: string | undefined;
|
|
21455
21455
|
background?: string | undefined;
|
|
21456
21456
|
ring?: string | undefined;
|
|
21457
|
+
border?: string | undefined;
|
|
21457
21458
|
primaryHover?: string | undefined;
|
|
21458
21459
|
primaryForeground?: string | undefined;
|
|
21459
21460
|
secondaryHover?: string | undefined;
|
|
@@ -21462,7 +21463,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
21462
21463
|
mutedForeground?: string | undefined;
|
|
21463
21464
|
foreground?: string | undefined;
|
|
21464
21465
|
cardForeground?: string | undefined;
|
|
21465
|
-
border?: string | undefined;
|
|
21466
21466
|
errorForeground?: string | undefined;
|
|
21467
21467
|
successForeground?: string | undefined;
|
|
21468
21468
|
warningForeground?: string | undefined;
|
|
@@ -21479,14 +21479,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
21479
21479
|
primary?: string | undefined;
|
|
21480
21480
|
secondary?: string | undefined;
|
|
21481
21481
|
success?: string | undefined;
|
|
21482
|
-
error?: string | undefined;
|
|
21483
21482
|
warning?: string | undefined;
|
|
21484
21483
|
info?: string | undefined;
|
|
21484
|
+
error?: string | undefined;
|
|
21485
21485
|
muted?: string | undefined;
|
|
21486
21486
|
accent?: string | undefined;
|
|
21487
21487
|
surface?: string | undefined;
|
|
21488
21488
|
background?: string | undefined;
|
|
21489
21489
|
ring?: string | undefined;
|
|
21490
|
+
border?: string | undefined;
|
|
21490
21491
|
primaryHover?: string | undefined;
|
|
21491
21492
|
primaryForeground?: string | undefined;
|
|
21492
21493
|
secondaryHover?: string | undefined;
|
|
@@ -21495,7 +21496,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
21495
21496
|
mutedForeground?: string | undefined;
|
|
21496
21497
|
foreground?: string | undefined;
|
|
21497
21498
|
cardForeground?: string | undefined;
|
|
21498
|
-
border?: string | undefined;
|
|
21499
21499
|
errorForeground?: string | undefined;
|
|
21500
21500
|
successForeground?: string | undefined;
|
|
21501
21501
|
warningForeground?: string | undefined;
|
|
@@ -22458,14 +22458,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22458
22458
|
primary?: string | undefined;
|
|
22459
22459
|
secondary?: string | undefined;
|
|
22460
22460
|
success?: string | undefined;
|
|
22461
|
-
error?: string | undefined;
|
|
22462
22461
|
warning?: string | undefined;
|
|
22463
22462
|
info?: string | undefined;
|
|
22463
|
+
error?: string | undefined;
|
|
22464
22464
|
muted?: string | undefined;
|
|
22465
22465
|
accent?: string | undefined;
|
|
22466
22466
|
surface?: string | undefined;
|
|
22467
22467
|
background?: string | undefined;
|
|
22468
22468
|
ring?: string | undefined;
|
|
22469
|
+
border?: string | undefined;
|
|
22469
22470
|
primaryHover?: string | undefined;
|
|
22470
22471
|
primaryForeground?: string | undefined;
|
|
22471
22472
|
secondaryHover?: string | undefined;
|
|
@@ -22474,7 +22475,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22474
22475
|
mutedForeground?: string | undefined;
|
|
22475
22476
|
foreground?: string | undefined;
|
|
22476
22477
|
cardForeground?: string | undefined;
|
|
22477
|
-
border?: string | undefined;
|
|
22478
22478
|
errorForeground?: string | undefined;
|
|
22479
22479
|
successForeground?: string | undefined;
|
|
22480
22480
|
warningForeground?: string | undefined;
|
|
@@ -22680,14 +22680,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22680
22680
|
primary?: string | undefined;
|
|
22681
22681
|
secondary?: string | undefined;
|
|
22682
22682
|
success?: string | undefined;
|
|
22683
|
-
error?: string | undefined;
|
|
22684
22683
|
warning?: string | undefined;
|
|
22685
22684
|
info?: string | undefined;
|
|
22685
|
+
error?: string | undefined;
|
|
22686
22686
|
muted?: string | undefined;
|
|
22687
22687
|
accent?: string | undefined;
|
|
22688
22688
|
surface?: string | undefined;
|
|
22689
22689
|
background?: string | undefined;
|
|
22690
22690
|
ring?: string | undefined;
|
|
22691
|
+
border?: string | undefined;
|
|
22691
22692
|
primaryHover?: string | undefined;
|
|
22692
22693
|
primaryForeground?: string | undefined;
|
|
22693
22694
|
secondaryHover?: string | undefined;
|
|
@@ -22696,7 +22697,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22696
22697
|
mutedForeground?: string | undefined;
|
|
22697
22698
|
foreground?: string | undefined;
|
|
22698
22699
|
cardForeground?: string | undefined;
|
|
22699
|
-
border?: string | undefined;
|
|
22700
22700
|
errorForeground?: string | undefined;
|
|
22701
22701
|
successForeground?: string | undefined;
|
|
22702
22702
|
warningForeground?: string | undefined;
|
|
@@ -22935,14 +22935,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22935
22935
|
primary?: string | undefined;
|
|
22936
22936
|
secondary?: string | undefined;
|
|
22937
22937
|
success?: string | undefined;
|
|
22938
|
-
error?: string | undefined;
|
|
22939
22938
|
warning?: string | undefined;
|
|
22940
22939
|
info?: string | undefined;
|
|
22940
|
+
error?: string | undefined;
|
|
22941
22941
|
muted?: string | undefined;
|
|
22942
22942
|
accent?: string | undefined;
|
|
22943
22943
|
surface?: string | undefined;
|
|
22944
22944
|
background?: string | undefined;
|
|
22945
22945
|
ring?: string | undefined;
|
|
22946
|
+
border?: string | undefined;
|
|
22946
22947
|
primaryHover?: string | undefined;
|
|
22947
22948
|
primaryForeground?: string | undefined;
|
|
22948
22949
|
secondaryHover?: string | undefined;
|
|
@@ -22951,7 +22952,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22951
22952
|
mutedForeground?: string | undefined;
|
|
22952
22953
|
foreground?: string | undefined;
|
|
22953
22954
|
cardForeground?: string | undefined;
|
|
22954
|
-
border?: string | undefined;
|
|
22955
22955
|
errorForeground?: string | undefined;
|
|
22956
22956
|
successForeground?: string | undefined;
|
|
22957
22957
|
warningForeground?: string | undefined;
|
|
@@ -22968,14 +22968,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22968
22968
|
primary?: string | undefined;
|
|
22969
22969
|
secondary?: string | undefined;
|
|
22970
22970
|
success?: string | undefined;
|
|
22971
|
-
error?: string | undefined;
|
|
22972
22971
|
warning?: string | undefined;
|
|
22973
22972
|
info?: string | undefined;
|
|
22973
|
+
error?: string | undefined;
|
|
22974
22974
|
muted?: string | undefined;
|
|
22975
22975
|
accent?: string | undefined;
|
|
22976
22976
|
surface?: string | undefined;
|
|
22977
22977
|
background?: string | undefined;
|
|
22978
22978
|
ring?: string | undefined;
|
|
22979
|
+
border?: string | undefined;
|
|
22979
22980
|
primaryHover?: string | undefined;
|
|
22980
22981
|
primaryForeground?: string | undefined;
|
|
22981
22982
|
secondaryHover?: string | undefined;
|
|
@@ -22984,7 +22985,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22984
22985
|
mutedForeground?: string | undefined;
|
|
22985
22986
|
foreground?: string | undefined;
|
|
22986
22987
|
cardForeground?: string | undefined;
|
|
22987
|
-
border?: string | undefined;
|
|
22988
22988
|
errorForeground?: string | undefined;
|
|
22989
22989
|
successForeground?: string | undefined;
|
|
22990
22990
|
warningForeground?: string | undefined;
|
|
@@ -23947,14 +23947,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
23947
23947
|
primary?: string | undefined;
|
|
23948
23948
|
secondary?: string | undefined;
|
|
23949
23949
|
success?: string | undefined;
|
|
23950
|
-
error?: string | undefined;
|
|
23951
23950
|
warning?: string | undefined;
|
|
23952
23951
|
info?: string | undefined;
|
|
23952
|
+
error?: string | undefined;
|
|
23953
23953
|
muted?: string | undefined;
|
|
23954
23954
|
accent?: string | undefined;
|
|
23955
23955
|
surface?: string | undefined;
|
|
23956
23956
|
background?: string | undefined;
|
|
23957
23957
|
ring?: string | undefined;
|
|
23958
|
+
border?: string | undefined;
|
|
23958
23959
|
primaryHover?: string | undefined;
|
|
23959
23960
|
primaryForeground?: string | undefined;
|
|
23960
23961
|
secondaryHover?: string | undefined;
|
|
@@ -23963,7 +23964,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
23963
23964
|
mutedForeground?: string | undefined;
|
|
23964
23965
|
foreground?: string | undefined;
|
|
23965
23966
|
cardForeground?: string | undefined;
|
|
23966
|
-
border?: string | undefined;
|
|
23967
23967
|
errorForeground?: string | undefined;
|
|
23968
23968
|
successForeground?: string | undefined;
|
|
23969
23969
|
warningForeground?: string | undefined;
|
|
@@ -24169,14 +24169,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24169
24169
|
primary?: string | undefined;
|
|
24170
24170
|
secondary?: string | undefined;
|
|
24171
24171
|
success?: string | undefined;
|
|
24172
|
-
error?: string | undefined;
|
|
24173
24172
|
warning?: string | undefined;
|
|
24174
24173
|
info?: string | undefined;
|
|
24174
|
+
error?: string | undefined;
|
|
24175
24175
|
muted?: string | undefined;
|
|
24176
24176
|
accent?: string | undefined;
|
|
24177
24177
|
surface?: string | undefined;
|
|
24178
24178
|
background?: string | undefined;
|
|
24179
24179
|
ring?: string | undefined;
|
|
24180
|
+
border?: string | undefined;
|
|
24180
24181
|
primaryHover?: string | undefined;
|
|
24181
24182
|
primaryForeground?: string | undefined;
|
|
24182
24183
|
secondaryHover?: string | undefined;
|
|
@@ -24185,7 +24186,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24185
24186
|
mutedForeground?: string | undefined;
|
|
24186
24187
|
foreground?: string | undefined;
|
|
24187
24188
|
cardForeground?: string | undefined;
|
|
24188
|
-
border?: string | undefined;
|
|
24189
24189
|
errorForeground?: string | undefined;
|
|
24190
24190
|
successForeground?: string | undefined;
|
|
24191
24191
|
warningForeground?: string | undefined;
|
|
@@ -24394,14 +24394,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24394
24394
|
primary?: string | undefined;
|
|
24395
24395
|
secondary?: string | undefined;
|
|
24396
24396
|
success?: string | undefined;
|
|
24397
|
-
error?: string | undefined;
|
|
24398
24397
|
warning?: string | undefined;
|
|
24399
24398
|
info?: string | undefined;
|
|
24399
|
+
error?: string | undefined;
|
|
24400
24400
|
muted?: string | undefined;
|
|
24401
24401
|
accent?: string | undefined;
|
|
24402
24402
|
surface?: string | undefined;
|
|
24403
24403
|
background?: string | undefined;
|
|
24404
24404
|
ring?: string | undefined;
|
|
24405
|
+
border?: string | undefined;
|
|
24405
24406
|
primaryHover?: string | undefined;
|
|
24406
24407
|
primaryForeground?: string | undefined;
|
|
24407
24408
|
secondaryHover?: string | undefined;
|
|
@@ -24410,7 +24411,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24410
24411
|
mutedForeground?: string | undefined;
|
|
24411
24412
|
foreground?: string | undefined;
|
|
24412
24413
|
cardForeground?: string | undefined;
|
|
24413
|
-
border?: string | undefined;
|
|
24414
24414
|
errorForeground?: string | undefined;
|
|
24415
24415
|
successForeground?: string | undefined;
|
|
24416
24416
|
warningForeground?: string | undefined;
|
|
@@ -24617,14 +24617,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24617
24617
|
primary?: string | undefined;
|
|
24618
24618
|
secondary?: string | undefined;
|
|
24619
24619
|
success?: string | undefined;
|
|
24620
|
-
error?: string | undefined;
|
|
24621
24620
|
warning?: string | undefined;
|
|
24622
24621
|
info?: string | undefined;
|
|
24622
|
+
error?: string | undefined;
|
|
24623
24623
|
muted?: string | undefined;
|
|
24624
24624
|
accent?: string | undefined;
|
|
24625
24625
|
surface?: string | undefined;
|
|
24626
24626
|
background?: string | undefined;
|
|
24627
24627
|
ring?: string | undefined;
|
|
24628
|
+
border?: string | undefined;
|
|
24628
24629
|
primaryHover?: string | undefined;
|
|
24629
24630
|
primaryForeground?: string | undefined;
|
|
24630
24631
|
secondaryHover?: string | undefined;
|
|
@@ -24633,7 +24634,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24633
24634
|
mutedForeground?: string | undefined;
|
|
24634
24635
|
foreground?: string | undefined;
|
|
24635
24636
|
cardForeground?: string | undefined;
|
|
24636
|
-
border?: string | undefined;
|
|
24637
24637
|
errorForeground?: string | undefined;
|
|
24638
24638
|
successForeground?: string | undefined;
|
|
24639
24639
|
warningForeground?: string | undefined;
|
|
@@ -24842,14 +24842,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24842
24842
|
primary?: string | undefined;
|
|
24843
24843
|
secondary?: string | undefined;
|
|
24844
24844
|
success?: string | undefined;
|
|
24845
|
-
error?: string | undefined;
|
|
24846
24845
|
warning?: string | undefined;
|
|
24847
24846
|
info?: string | undefined;
|
|
24847
|
+
error?: string | undefined;
|
|
24848
24848
|
muted?: string | undefined;
|
|
24849
24849
|
accent?: string | undefined;
|
|
24850
24850
|
surface?: string | undefined;
|
|
24851
24851
|
background?: string | undefined;
|
|
24852
24852
|
ring?: string | undefined;
|
|
24853
|
+
border?: string | undefined;
|
|
24853
24854
|
primaryHover?: string | undefined;
|
|
24854
24855
|
primaryForeground?: string | undefined;
|
|
24855
24856
|
secondaryHover?: string | undefined;
|
|
@@ -24858,7 +24859,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
24858
24859
|
mutedForeground?: string | undefined;
|
|
24859
24860
|
foreground?: string | undefined;
|
|
24860
24861
|
cardForeground?: string | undefined;
|
|
24861
|
-
border?: string | undefined;
|
|
24862
24862
|
errorForeground?: string | undefined;
|
|
24863
24863
|
successForeground?: string | undefined;
|
|
24864
24864
|
warningForeground?: string | undefined;
|
|
@@ -25065,14 +25065,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25065
25065
|
primary?: string | undefined;
|
|
25066
25066
|
secondary?: string | undefined;
|
|
25067
25067
|
success?: string | undefined;
|
|
25068
|
-
error?: string | undefined;
|
|
25069
25068
|
warning?: string | undefined;
|
|
25070
25069
|
info?: string | undefined;
|
|
25070
|
+
error?: string | undefined;
|
|
25071
25071
|
muted?: string | undefined;
|
|
25072
25072
|
accent?: string | undefined;
|
|
25073
25073
|
surface?: string | undefined;
|
|
25074
25074
|
background?: string | undefined;
|
|
25075
25075
|
ring?: string | undefined;
|
|
25076
|
+
border?: string | undefined;
|
|
25076
25077
|
primaryHover?: string | undefined;
|
|
25077
25078
|
primaryForeground?: string | undefined;
|
|
25078
25079
|
secondaryHover?: string | undefined;
|
|
@@ -25081,7 +25082,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25081
25082
|
mutedForeground?: string | undefined;
|
|
25082
25083
|
foreground?: string | undefined;
|
|
25083
25084
|
cardForeground?: string | undefined;
|
|
25084
|
-
border?: string | undefined;
|
|
25085
25085
|
errorForeground?: string | undefined;
|
|
25086
25086
|
successForeground?: string | undefined;
|
|
25087
25087
|
warningForeground?: string | undefined;
|
|
@@ -26378,7 +26378,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26378
26378
|
linkedEntity?: string | undefined;
|
|
26379
26379
|
}[] | undefined;
|
|
26380
26380
|
primaryEntity?: string | undefined;
|
|
26381
|
-
viewType?: "custom" | "create" | "
|
|
26381
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
26382
26382
|
}, {
|
|
26383
26383
|
path: string;
|
|
26384
26384
|
name: string;
|
|
@@ -26390,7 +26390,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26390
26390
|
linkedEntity?: string | undefined;
|
|
26391
26391
|
}[] | undefined;
|
|
26392
26392
|
primaryEntity?: string | undefined;
|
|
26393
|
-
viewType?: "custom" | "create" | "
|
|
26393
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
26394
26394
|
}>, z.ZodString, z.ZodObject<{
|
|
26395
26395
|
ref: z.ZodString;
|
|
26396
26396
|
from: z.ZodOptional<z.ZodString>;
|
|
@@ -27224,6 +27224,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27224
27224
|
ref: string;
|
|
27225
27225
|
path?: string | undefined;
|
|
27226
27226
|
from?: string | undefined;
|
|
27227
|
+
linkedEntity?: string | undefined;
|
|
27227
27228
|
traits?: (string | {
|
|
27228
27229
|
name: string;
|
|
27229
27230
|
scope: "instance" | "collection";
|
|
@@ -27376,11 +27377,11 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27376
27377
|
events?: Record<string, string> | undefined;
|
|
27377
27378
|
linkedEntity?: string | undefined;
|
|
27378
27379
|
})[] | undefined;
|
|
27379
|
-
linkedEntity?: string | undefined;
|
|
27380
27380
|
}, {
|
|
27381
27381
|
ref: string;
|
|
27382
27382
|
path?: string | undefined;
|
|
27383
27383
|
from?: string | undefined;
|
|
27384
|
+
linkedEntity?: string | undefined;
|
|
27384
27385
|
traits?: (string | {
|
|
27385
27386
|
name: string;
|
|
27386
27387
|
scope: "instance" | "collection";
|
|
@@ -27533,7 +27534,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27533
27534
|
events?: Record<string, string> | undefined;
|
|
27534
27535
|
linkedEntity?: string | undefined;
|
|
27535
27536
|
})[] | undefined;
|
|
27536
|
-
linkedEntity?: string | undefined;
|
|
27537
27537
|
}>]>, "many">;
|
|
27538
27538
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27539
27539
|
event: z.ZodString;
|
|
@@ -27965,11 +27965,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27965
27965
|
linkedEntity?: string | undefined;
|
|
27966
27966
|
}[] | undefined;
|
|
27967
27967
|
primaryEntity?: string | undefined;
|
|
27968
|
-
viewType?: "custom" | "create" | "
|
|
27968
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
27969
27969
|
} | {
|
|
27970
27970
|
ref: string;
|
|
27971
27971
|
path?: string | undefined;
|
|
27972
27972
|
from?: string | undefined;
|
|
27973
|
+
linkedEntity?: string | undefined;
|
|
27973
27974
|
traits?: (string | {
|
|
27974
27975
|
name: string;
|
|
27975
27976
|
scope: "instance" | "collection";
|
|
@@ -28122,7 +28123,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28122
28123
|
events?: Record<string, string> | undefined;
|
|
28123
28124
|
linkedEntity?: string | undefined;
|
|
28124
28125
|
})[] | undefined;
|
|
28125
|
-
linkedEntity?: string | undefined;
|
|
28126
28126
|
})[];
|
|
28127
28127
|
description?: string | undefined;
|
|
28128
28128
|
visual_prompt?: string | undefined;
|
|
@@ -28136,14 +28136,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28136
28136
|
primary?: string | undefined;
|
|
28137
28137
|
secondary?: string | undefined;
|
|
28138
28138
|
success?: string | undefined;
|
|
28139
|
-
error?: string | undefined;
|
|
28140
28139
|
warning?: string | undefined;
|
|
28141
28140
|
info?: string | undefined;
|
|
28141
|
+
error?: string | undefined;
|
|
28142
28142
|
muted?: string | undefined;
|
|
28143
28143
|
accent?: string | undefined;
|
|
28144
28144
|
surface?: string | undefined;
|
|
28145
28145
|
background?: string | undefined;
|
|
28146
28146
|
ring?: string | undefined;
|
|
28147
|
+
border?: string | undefined;
|
|
28147
28148
|
primaryHover?: string | undefined;
|
|
28148
28149
|
primaryForeground?: string | undefined;
|
|
28149
28150
|
secondaryHover?: string | undefined;
|
|
@@ -28152,7 +28153,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28152
28153
|
mutedForeground?: string | undefined;
|
|
28153
28154
|
foreground?: string | undefined;
|
|
28154
28155
|
cardForeground?: string | undefined;
|
|
28155
|
-
border?: string | undefined;
|
|
28156
28156
|
errorForeground?: string | undefined;
|
|
28157
28157
|
successForeground?: string | undefined;
|
|
28158
28158
|
warningForeground?: string | undefined;
|
|
@@ -28359,14 +28359,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28359
28359
|
primary?: string | undefined;
|
|
28360
28360
|
secondary?: string | undefined;
|
|
28361
28361
|
success?: string | undefined;
|
|
28362
|
-
error?: string | undefined;
|
|
28363
28362
|
warning?: string | undefined;
|
|
28364
28363
|
info?: string | undefined;
|
|
28364
|
+
error?: string | undefined;
|
|
28365
28365
|
muted?: string | undefined;
|
|
28366
28366
|
accent?: string | undefined;
|
|
28367
28367
|
surface?: string | undefined;
|
|
28368
28368
|
background?: string | undefined;
|
|
28369
28369
|
ring?: string | undefined;
|
|
28370
|
+
border?: string | undefined;
|
|
28370
28371
|
primaryHover?: string | undefined;
|
|
28371
28372
|
primaryForeground?: string | undefined;
|
|
28372
28373
|
secondaryHover?: string | undefined;
|
|
@@ -28375,7 +28376,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28375
28376
|
mutedForeground?: string | undefined;
|
|
28376
28377
|
foreground?: string | undefined;
|
|
28377
28378
|
cardForeground?: string | undefined;
|
|
28378
|
-
border?: string | undefined;
|
|
28379
28379
|
errorForeground?: string | undefined;
|
|
28380
28380
|
successForeground?: string | undefined;
|
|
28381
28381
|
warningForeground?: string | undefined;
|
|
@@ -28873,11 +28873,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28873
28873
|
linkedEntity?: string | undefined;
|
|
28874
28874
|
}[] | undefined;
|
|
28875
28875
|
primaryEntity?: string | undefined;
|
|
28876
|
-
viewType?: "custom" | "create" | "
|
|
28876
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
28877
28877
|
} | {
|
|
28878
28878
|
ref: string;
|
|
28879
28879
|
path?: string | undefined;
|
|
28880
28880
|
from?: string | undefined;
|
|
28881
|
+
linkedEntity?: string | undefined;
|
|
28881
28882
|
traits?: (string | {
|
|
28882
28883
|
name: string;
|
|
28883
28884
|
scope: "instance" | "collection";
|
|
@@ -29030,7 +29031,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29030
29031
|
events?: Record<string, string> | undefined;
|
|
29031
29032
|
linkedEntity?: string | undefined;
|
|
29032
29033
|
})[] | undefined;
|
|
29033
|
-
linkedEntity?: string | undefined;
|
|
29034
29034
|
})[];
|
|
29035
29035
|
description?: string | undefined;
|
|
29036
29036
|
visual_prompt?: string | undefined;
|
|
@@ -29044,14 +29044,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29044
29044
|
primary?: string | undefined;
|
|
29045
29045
|
secondary?: string | undefined;
|
|
29046
29046
|
success?: string | undefined;
|
|
29047
|
-
error?: string | undefined;
|
|
29048
29047
|
warning?: string | undefined;
|
|
29049
29048
|
info?: string | undefined;
|
|
29049
|
+
error?: string | undefined;
|
|
29050
29050
|
muted?: string | undefined;
|
|
29051
29051
|
accent?: string | undefined;
|
|
29052
29052
|
surface?: string | undefined;
|
|
29053
29053
|
background?: string | undefined;
|
|
29054
29054
|
ring?: string | undefined;
|
|
29055
|
+
border?: string | undefined;
|
|
29055
29056
|
primaryHover?: string | undefined;
|
|
29056
29057
|
primaryForeground?: string | undefined;
|
|
29057
29058
|
secondaryHover?: string | undefined;
|
|
@@ -29060,7 +29061,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29060
29061
|
mutedForeground?: string | undefined;
|
|
29061
29062
|
foreground?: string | undefined;
|
|
29062
29063
|
cardForeground?: string | undefined;
|
|
29063
|
-
border?: string | undefined;
|
|
29064
29064
|
errorForeground?: string | undefined;
|
|
29065
29065
|
successForeground?: string | undefined;
|
|
29066
29066
|
warningForeground?: string | undefined;
|
|
@@ -29267,14 +29267,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29267
29267
|
primary?: string | undefined;
|
|
29268
29268
|
secondary?: string | undefined;
|
|
29269
29269
|
success?: string | undefined;
|
|
29270
|
-
error?: string | undefined;
|
|
29271
29270
|
warning?: string | undefined;
|
|
29272
29271
|
info?: string | undefined;
|
|
29272
|
+
error?: string | undefined;
|
|
29273
29273
|
muted?: string | undefined;
|
|
29274
29274
|
accent?: string | undefined;
|
|
29275
29275
|
surface?: string | undefined;
|
|
29276
29276
|
background?: string | undefined;
|
|
29277
29277
|
ring?: string | undefined;
|
|
29278
|
+
border?: string | undefined;
|
|
29278
29279
|
primaryHover?: string | undefined;
|
|
29279
29280
|
primaryForeground?: string | undefined;
|
|
29280
29281
|
secondaryHover?: string | undefined;
|
|
@@ -29283,7 +29284,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29283
29284
|
mutedForeground?: string | undefined;
|
|
29284
29285
|
foreground?: string | undefined;
|
|
29285
29286
|
cardForeground?: string | undefined;
|
|
29286
|
-
border?: string | undefined;
|
|
29287
29287
|
errorForeground?: string | undefined;
|
|
29288
29288
|
successForeground?: string | undefined;
|
|
29289
29289
|
warningForeground?: string | undefined;
|
|
@@ -29649,14 +29649,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
29649
29649
|
primary?: string | undefined;
|
|
29650
29650
|
secondary?: string | undefined;
|
|
29651
29651
|
success?: string | undefined;
|
|
29652
|
-
error?: string | undefined;
|
|
29653
29652
|
warning?: string | undefined;
|
|
29654
29653
|
info?: string | undefined;
|
|
29654
|
+
error?: string | undefined;
|
|
29655
29655
|
muted?: string | undefined;
|
|
29656
29656
|
accent?: string | undefined;
|
|
29657
29657
|
surface?: string | undefined;
|
|
29658
29658
|
background?: string | undefined;
|
|
29659
29659
|
ring?: string | undefined;
|
|
29660
|
+
border?: string | undefined;
|
|
29660
29661
|
primaryHover?: string | undefined;
|
|
29661
29662
|
primaryForeground?: string | undefined;
|
|
29662
29663
|
secondaryHover?: string | undefined;
|
|
@@ -29665,7 +29666,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
29665
29666
|
mutedForeground?: string | undefined;
|
|
29666
29667
|
foreground?: string | undefined;
|
|
29667
29668
|
cardForeground?: string | undefined;
|
|
29668
|
-
border?: string | undefined;
|
|
29669
29669
|
errorForeground?: string | undefined;
|
|
29670
29670
|
successForeground?: string | undefined;
|
|
29671
29671
|
warningForeground?: string | undefined;
|
|
@@ -29682,14 +29682,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
29682
29682
|
primary?: string | undefined;
|
|
29683
29683
|
secondary?: string | undefined;
|
|
29684
29684
|
success?: string | undefined;
|
|
29685
|
-
error?: string | undefined;
|
|
29686
29685
|
warning?: string | undefined;
|
|
29687
29686
|
info?: string | undefined;
|
|
29687
|
+
error?: string | undefined;
|
|
29688
29688
|
muted?: string | undefined;
|
|
29689
29689
|
accent?: string | undefined;
|
|
29690
29690
|
surface?: string | undefined;
|
|
29691
29691
|
background?: string | undefined;
|
|
29692
29692
|
ring?: string | undefined;
|
|
29693
|
+
border?: string | undefined;
|
|
29693
29694
|
primaryHover?: string | undefined;
|
|
29694
29695
|
primaryForeground?: string | undefined;
|
|
29695
29696
|
secondaryHover?: string | undefined;
|
|
@@ -29698,7 +29699,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
29698
29699
|
mutedForeground?: string | undefined;
|
|
29699
29700
|
foreground?: string | undefined;
|
|
29700
29701
|
cardForeground?: string | undefined;
|
|
29701
|
-
border?: string | undefined;
|
|
29702
29702
|
errorForeground?: string | undefined;
|
|
29703
29703
|
successForeground?: string | undefined;
|
|
29704
29704
|
warningForeground?: string | undefined;
|
|
@@ -30661,14 +30661,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
30661
30661
|
primary?: string | undefined;
|
|
30662
30662
|
secondary?: string | undefined;
|
|
30663
30663
|
success?: string | undefined;
|
|
30664
|
-
error?: string | undefined;
|
|
30665
30664
|
warning?: string | undefined;
|
|
30666
30665
|
info?: string | undefined;
|
|
30666
|
+
error?: string | undefined;
|
|
30667
30667
|
muted?: string | undefined;
|
|
30668
30668
|
accent?: string | undefined;
|
|
30669
30669
|
surface?: string | undefined;
|
|
30670
30670
|
background?: string | undefined;
|
|
30671
30671
|
ring?: string | undefined;
|
|
30672
|
+
border?: string | undefined;
|
|
30672
30673
|
primaryHover?: string | undefined;
|
|
30673
30674
|
primaryForeground?: string | undefined;
|
|
30674
30675
|
secondaryHover?: string | undefined;
|
|
@@ -30677,7 +30678,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
30677
30678
|
mutedForeground?: string | undefined;
|
|
30678
30679
|
foreground?: string | undefined;
|
|
30679
30680
|
cardForeground?: string | undefined;
|
|
30680
|
-
border?: string | undefined;
|
|
30681
30681
|
errorForeground?: string | undefined;
|
|
30682
30682
|
successForeground?: string | undefined;
|
|
30683
30683
|
warningForeground?: string | undefined;
|
|
@@ -30883,14 +30883,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
30883
30883
|
primary?: string | undefined;
|
|
30884
30884
|
secondary?: string | undefined;
|
|
30885
30885
|
success?: string | undefined;
|
|
30886
|
-
error?: string | undefined;
|
|
30887
30886
|
warning?: string | undefined;
|
|
30888
30887
|
info?: string | undefined;
|
|
30888
|
+
error?: string | undefined;
|
|
30889
30889
|
muted?: string | undefined;
|
|
30890
30890
|
accent?: string | undefined;
|
|
30891
30891
|
surface?: string | undefined;
|
|
30892
30892
|
background?: string | undefined;
|
|
30893
30893
|
ring?: string | undefined;
|
|
30894
|
+
border?: string | undefined;
|
|
30894
30895
|
primaryHover?: string | undefined;
|
|
30895
30896
|
primaryForeground?: string | undefined;
|
|
30896
30897
|
secondaryHover?: string | undefined;
|
|
@@ -30899,7 +30900,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
30899
30900
|
mutedForeground?: string | undefined;
|
|
30900
30901
|
foreground?: string | undefined;
|
|
30901
30902
|
cardForeground?: string | undefined;
|
|
30902
|
-
border?: string | undefined;
|
|
30903
30903
|
errorForeground?: string | undefined;
|
|
30904
30904
|
successForeground?: string | undefined;
|
|
30905
30905
|
warningForeground?: string | undefined;
|
|
@@ -31138,14 +31138,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
31138
31138
|
primary?: string | undefined;
|
|
31139
31139
|
secondary?: string | undefined;
|
|
31140
31140
|
success?: string | undefined;
|
|
31141
|
-
error?: string | undefined;
|
|
31142
31141
|
warning?: string | undefined;
|
|
31143
31142
|
info?: string | undefined;
|
|
31143
|
+
error?: string | undefined;
|
|
31144
31144
|
muted?: string | undefined;
|
|
31145
31145
|
accent?: string | undefined;
|
|
31146
31146
|
surface?: string | undefined;
|
|
31147
31147
|
background?: string | undefined;
|
|
31148
31148
|
ring?: string | undefined;
|
|
31149
|
+
border?: string | undefined;
|
|
31149
31150
|
primaryHover?: string | undefined;
|
|
31150
31151
|
primaryForeground?: string | undefined;
|
|
31151
31152
|
secondaryHover?: string | undefined;
|
|
@@ -31154,7 +31155,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
31154
31155
|
mutedForeground?: string | undefined;
|
|
31155
31156
|
foreground?: string | undefined;
|
|
31156
31157
|
cardForeground?: string | undefined;
|
|
31157
|
-
border?: string | undefined;
|
|
31158
31158
|
errorForeground?: string | undefined;
|
|
31159
31159
|
successForeground?: string | undefined;
|
|
31160
31160
|
warningForeground?: string | undefined;
|
|
@@ -31171,14 +31171,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
31171
31171
|
primary?: string | undefined;
|
|
31172
31172
|
secondary?: string | undefined;
|
|
31173
31173
|
success?: string | undefined;
|
|
31174
|
-
error?: string | undefined;
|
|
31175
31174
|
warning?: string | undefined;
|
|
31176
31175
|
info?: string | undefined;
|
|
31176
|
+
error?: string | undefined;
|
|
31177
31177
|
muted?: string | undefined;
|
|
31178
31178
|
accent?: string | undefined;
|
|
31179
31179
|
surface?: string | undefined;
|
|
31180
31180
|
background?: string | undefined;
|
|
31181
31181
|
ring?: string | undefined;
|
|
31182
|
+
border?: string | undefined;
|
|
31182
31183
|
primaryHover?: string | undefined;
|
|
31183
31184
|
primaryForeground?: string | undefined;
|
|
31184
31185
|
secondaryHover?: string | undefined;
|
|
@@ -31187,7 +31188,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
31187
31188
|
mutedForeground?: string | undefined;
|
|
31188
31189
|
foreground?: string | undefined;
|
|
31189
31190
|
cardForeground?: string | undefined;
|
|
31190
|
-
border?: string | undefined;
|
|
31191
31191
|
errorForeground?: string | undefined;
|
|
31192
31192
|
successForeground?: string | undefined;
|
|
31193
31193
|
warningForeground?: string | undefined;
|
|
@@ -32150,14 +32150,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32150
32150
|
primary?: string | undefined;
|
|
32151
32151
|
secondary?: string | undefined;
|
|
32152
32152
|
success?: string | undefined;
|
|
32153
|
-
error?: string | undefined;
|
|
32154
32153
|
warning?: string | undefined;
|
|
32155
32154
|
info?: string | undefined;
|
|
32155
|
+
error?: string | undefined;
|
|
32156
32156
|
muted?: string | undefined;
|
|
32157
32157
|
accent?: string | undefined;
|
|
32158
32158
|
surface?: string | undefined;
|
|
32159
32159
|
background?: string | undefined;
|
|
32160
32160
|
ring?: string | undefined;
|
|
32161
|
+
border?: string | undefined;
|
|
32161
32162
|
primaryHover?: string | undefined;
|
|
32162
32163
|
primaryForeground?: string | undefined;
|
|
32163
32164
|
secondaryHover?: string | undefined;
|
|
@@ -32166,7 +32167,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32166
32167
|
mutedForeground?: string | undefined;
|
|
32167
32168
|
foreground?: string | undefined;
|
|
32168
32169
|
cardForeground?: string | undefined;
|
|
32169
|
-
border?: string | undefined;
|
|
32170
32170
|
errorForeground?: string | undefined;
|
|
32171
32171
|
successForeground?: string | undefined;
|
|
32172
32172
|
warningForeground?: string | undefined;
|
|
@@ -32372,14 +32372,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32372
32372
|
primary?: string | undefined;
|
|
32373
32373
|
secondary?: string | undefined;
|
|
32374
32374
|
success?: string | undefined;
|
|
32375
|
-
error?: string | undefined;
|
|
32376
32375
|
warning?: string | undefined;
|
|
32377
32376
|
info?: string | undefined;
|
|
32377
|
+
error?: string | undefined;
|
|
32378
32378
|
muted?: string | undefined;
|
|
32379
32379
|
accent?: string | undefined;
|
|
32380
32380
|
surface?: string | undefined;
|
|
32381
32381
|
background?: string | undefined;
|
|
32382
32382
|
ring?: string | undefined;
|
|
32383
|
+
border?: string | undefined;
|
|
32383
32384
|
primaryHover?: string | undefined;
|
|
32384
32385
|
primaryForeground?: string | undefined;
|
|
32385
32386
|
secondaryHover?: string | undefined;
|
|
@@ -32388,7 +32389,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32388
32389
|
mutedForeground?: string | undefined;
|
|
32389
32390
|
foreground?: string | undefined;
|
|
32390
32391
|
cardForeground?: string | undefined;
|
|
32391
|
-
border?: string | undefined;
|
|
32392
32392
|
errorForeground?: string | undefined;
|
|
32393
32393
|
successForeground?: string | undefined;
|
|
32394
32394
|
warningForeground?: string | undefined;
|
|
@@ -32597,14 +32597,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32597
32597
|
primary?: string | undefined;
|
|
32598
32598
|
secondary?: string | undefined;
|
|
32599
32599
|
success?: string | undefined;
|
|
32600
|
-
error?: string | undefined;
|
|
32601
32600
|
warning?: string | undefined;
|
|
32602
32601
|
info?: string | undefined;
|
|
32602
|
+
error?: string | undefined;
|
|
32603
32603
|
muted?: string | undefined;
|
|
32604
32604
|
accent?: string | undefined;
|
|
32605
32605
|
surface?: string | undefined;
|
|
32606
32606
|
background?: string | undefined;
|
|
32607
32607
|
ring?: string | undefined;
|
|
32608
|
+
border?: string | undefined;
|
|
32608
32609
|
primaryHover?: string | undefined;
|
|
32609
32610
|
primaryForeground?: string | undefined;
|
|
32610
32611
|
secondaryHover?: string | undefined;
|
|
@@ -32613,7 +32614,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32613
32614
|
mutedForeground?: string | undefined;
|
|
32614
32615
|
foreground?: string | undefined;
|
|
32615
32616
|
cardForeground?: string | undefined;
|
|
32616
|
-
border?: string | undefined;
|
|
32617
32617
|
errorForeground?: string | undefined;
|
|
32618
32618
|
successForeground?: string | undefined;
|
|
32619
32619
|
warningForeground?: string | undefined;
|
|
@@ -32820,14 +32820,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32820
32820
|
primary?: string | undefined;
|
|
32821
32821
|
secondary?: string | undefined;
|
|
32822
32822
|
success?: string | undefined;
|
|
32823
|
-
error?: string | undefined;
|
|
32824
32823
|
warning?: string | undefined;
|
|
32825
32824
|
info?: string | undefined;
|
|
32825
|
+
error?: string | undefined;
|
|
32826
32826
|
muted?: string | undefined;
|
|
32827
32827
|
accent?: string | undefined;
|
|
32828
32828
|
surface?: string | undefined;
|
|
32829
32829
|
background?: string | undefined;
|
|
32830
32830
|
ring?: string | undefined;
|
|
32831
|
+
border?: string | undefined;
|
|
32831
32832
|
primaryHover?: string | undefined;
|
|
32832
32833
|
primaryForeground?: string | undefined;
|
|
32833
32834
|
secondaryHover?: string | undefined;
|
|
@@ -32836,7 +32837,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32836
32837
|
mutedForeground?: string | undefined;
|
|
32837
32838
|
foreground?: string | undefined;
|
|
32838
32839
|
cardForeground?: string | undefined;
|
|
32839
|
-
border?: string | undefined;
|
|
32840
32840
|
errorForeground?: string | undefined;
|
|
32841
32841
|
successForeground?: string | undefined;
|
|
32842
32842
|
warningForeground?: string | undefined;
|
|
@@ -33045,14 +33045,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33045
33045
|
primary?: string | undefined;
|
|
33046
33046
|
secondary?: string | undefined;
|
|
33047
33047
|
success?: string | undefined;
|
|
33048
|
-
error?: string | undefined;
|
|
33049
33048
|
warning?: string | undefined;
|
|
33050
33049
|
info?: string | undefined;
|
|
33050
|
+
error?: string | undefined;
|
|
33051
33051
|
muted?: string | undefined;
|
|
33052
33052
|
accent?: string | undefined;
|
|
33053
33053
|
surface?: string | undefined;
|
|
33054
33054
|
background?: string | undefined;
|
|
33055
33055
|
ring?: string | undefined;
|
|
33056
|
+
border?: string | undefined;
|
|
33056
33057
|
primaryHover?: string | undefined;
|
|
33057
33058
|
primaryForeground?: string | undefined;
|
|
33058
33059
|
secondaryHover?: string | undefined;
|
|
@@ -33061,7 +33062,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33061
33062
|
mutedForeground?: string | undefined;
|
|
33062
33063
|
foreground?: string | undefined;
|
|
33063
33064
|
cardForeground?: string | undefined;
|
|
33064
|
-
border?: string | undefined;
|
|
33065
33065
|
errorForeground?: string | undefined;
|
|
33066
33066
|
successForeground?: string | undefined;
|
|
33067
33067
|
warningForeground?: string | undefined;
|
|
@@ -33268,14 +33268,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33268
33268
|
primary?: string | undefined;
|
|
33269
33269
|
secondary?: string | undefined;
|
|
33270
33270
|
success?: string | undefined;
|
|
33271
|
-
error?: string | undefined;
|
|
33272
33271
|
warning?: string | undefined;
|
|
33273
33272
|
info?: string | undefined;
|
|
33273
|
+
error?: string | undefined;
|
|
33274
33274
|
muted?: string | undefined;
|
|
33275
33275
|
accent?: string | undefined;
|
|
33276
33276
|
surface?: string | undefined;
|
|
33277
33277
|
background?: string | undefined;
|
|
33278
33278
|
ring?: string | undefined;
|
|
33279
|
+
border?: string | undefined;
|
|
33279
33280
|
primaryHover?: string | undefined;
|
|
33280
33281
|
primaryForeground?: string | undefined;
|
|
33281
33282
|
secondaryHover?: string | undefined;
|
|
@@ -33284,7 +33285,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33284
33285
|
mutedForeground?: string | undefined;
|
|
33285
33286
|
foreground?: string | undefined;
|
|
33286
33287
|
cardForeground?: string | undefined;
|
|
33287
|
-
border?: string | undefined;
|
|
33288
33288
|
errorForeground?: string | undefined;
|
|
33289
33289
|
successForeground?: string | undefined;
|
|
33290
33290
|
warningForeground?: string | undefined;
|
|
@@ -34581,7 +34581,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34581
34581
|
linkedEntity?: string | undefined;
|
|
34582
34582
|
}[] | undefined;
|
|
34583
34583
|
primaryEntity?: string | undefined;
|
|
34584
|
-
viewType?: "custom" | "create" | "
|
|
34584
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
34585
34585
|
}, {
|
|
34586
34586
|
path: string;
|
|
34587
34587
|
name: string;
|
|
@@ -34593,7 +34593,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34593
34593
|
linkedEntity?: string | undefined;
|
|
34594
34594
|
}[] | undefined;
|
|
34595
34595
|
primaryEntity?: string | undefined;
|
|
34596
|
-
viewType?: "custom" | "create" | "
|
|
34596
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
34597
34597
|
}>, z.ZodString, z.ZodObject<{
|
|
34598
34598
|
ref: z.ZodString;
|
|
34599
34599
|
from: z.ZodOptional<z.ZodString>;
|
|
@@ -35427,6 +35427,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35427
35427
|
ref: string;
|
|
35428
35428
|
path?: string | undefined;
|
|
35429
35429
|
from?: string | undefined;
|
|
35430
|
+
linkedEntity?: string | undefined;
|
|
35430
35431
|
traits?: (string | {
|
|
35431
35432
|
name: string;
|
|
35432
35433
|
scope: "instance" | "collection";
|
|
@@ -35579,11 +35580,11 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35579
35580
|
events?: Record<string, string> | undefined;
|
|
35580
35581
|
linkedEntity?: string | undefined;
|
|
35581
35582
|
})[] | undefined;
|
|
35582
|
-
linkedEntity?: string | undefined;
|
|
35583
35583
|
}, {
|
|
35584
35584
|
ref: string;
|
|
35585
35585
|
path?: string | undefined;
|
|
35586
35586
|
from?: string | undefined;
|
|
35587
|
+
linkedEntity?: string | undefined;
|
|
35587
35588
|
traits?: (string | {
|
|
35588
35589
|
name: string;
|
|
35589
35590
|
scope: "instance" | "collection";
|
|
@@ -35736,7 +35737,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35736
35737
|
events?: Record<string, string> | undefined;
|
|
35737
35738
|
linkedEntity?: string | undefined;
|
|
35738
35739
|
})[] | undefined;
|
|
35739
|
-
linkedEntity?: string | undefined;
|
|
35740
35740
|
}>]>, "many">;
|
|
35741
35741
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
35742
35742
|
event: z.ZodString;
|
|
@@ -36168,11 +36168,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36168
36168
|
linkedEntity?: string | undefined;
|
|
36169
36169
|
}[] | undefined;
|
|
36170
36170
|
primaryEntity?: string | undefined;
|
|
36171
|
-
viewType?: "custom" | "create" | "
|
|
36171
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
36172
36172
|
} | {
|
|
36173
36173
|
ref: string;
|
|
36174
36174
|
path?: string | undefined;
|
|
36175
36175
|
from?: string | undefined;
|
|
36176
|
+
linkedEntity?: string | undefined;
|
|
36176
36177
|
traits?: (string | {
|
|
36177
36178
|
name: string;
|
|
36178
36179
|
scope: "instance" | "collection";
|
|
@@ -36325,7 +36326,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36325
36326
|
events?: Record<string, string> | undefined;
|
|
36326
36327
|
linkedEntity?: string | undefined;
|
|
36327
36328
|
})[] | undefined;
|
|
36328
|
-
linkedEntity?: string | undefined;
|
|
36329
36329
|
})[];
|
|
36330
36330
|
description?: string | undefined;
|
|
36331
36331
|
visual_prompt?: string | undefined;
|
|
@@ -36339,14 +36339,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36339
36339
|
primary?: string | undefined;
|
|
36340
36340
|
secondary?: string | undefined;
|
|
36341
36341
|
success?: string | undefined;
|
|
36342
|
-
error?: string | undefined;
|
|
36343
36342
|
warning?: string | undefined;
|
|
36344
36343
|
info?: string | undefined;
|
|
36344
|
+
error?: string | undefined;
|
|
36345
36345
|
muted?: string | undefined;
|
|
36346
36346
|
accent?: string | undefined;
|
|
36347
36347
|
surface?: string | undefined;
|
|
36348
36348
|
background?: string | undefined;
|
|
36349
36349
|
ring?: string | undefined;
|
|
36350
|
+
border?: string | undefined;
|
|
36350
36351
|
primaryHover?: string | undefined;
|
|
36351
36352
|
primaryForeground?: string | undefined;
|
|
36352
36353
|
secondaryHover?: string | undefined;
|
|
@@ -36355,7 +36356,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36355
36356
|
mutedForeground?: string | undefined;
|
|
36356
36357
|
foreground?: string | undefined;
|
|
36357
36358
|
cardForeground?: string | undefined;
|
|
36358
|
-
border?: string | undefined;
|
|
36359
36359
|
errorForeground?: string | undefined;
|
|
36360
36360
|
successForeground?: string | undefined;
|
|
36361
36361
|
warningForeground?: string | undefined;
|
|
@@ -36562,14 +36562,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36562
36562
|
primary?: string | undefined;
|
|
36563
36563
|
secondary?: string | undefined;
|
|
36564
36564
|
success?: string | undefined;
|
|
36565
|
-
error?: string | undefined;
|
|
36566
36565
|
warning?: string | undefined;
|
|
36567
36566
|
info?: string | undefined;
|
|
36567
|
+
error?: string | undefined;
|
|
36568
36568
|
muted?: string | undefined;
|
|
36569
36569
|
accent?: string | undefined;
|
|
36570
36570
|
surface?: string | undefined;
|
|
36571
36571
|
background?: string | undefined;
|
|
36572
36572
|
ring?: string | undefined;
|
|
36573
|
+
border?: string | undefined;
|
|
36573
36574
|
primaryHover?: string | undefined;
|
|
36574
36575
|
primaryForeground?: string | undefined;
|
|
36575
36576
|
secondaryHover?: string | undefined;
|
|
@@ -36578,7 +36579,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36578
36579
|
mutedForeground?: string | undefined;
|
|
36579
36580
|
foreground?: string | undefined;
|
|
36580
36581
|
cardForeground?: string | undefined;
|
|
36581
|
-
border?: string | undefined;
|
|
36582
36582
|
errorForeground?: string | undefined;
|
|
36583
36583
|
successForeground?: string | undefined;
|
|
36584
36584
|
warningForeground?: string | undefined;
|
|
@@ -37076,11 +37076,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37076
37076
|
linkedEntity?: string | undefined;
|
|
37077
37077
|
}[] | undefined;
|
|
37078
37078
|
primaryEntity?: string | undefined;
|
|
37079
|
-
viewType?: "custom" | "create" | "
|
|
37079
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
37080
37080
|
} | {
|
|
37081
37081
|
ref: string;
|
|
37082
37082
|
path?: string | undefined;
|
|
37083
37083
|
from?: string | undefined;
|
|
37084
|
+
linkedEntity?: string | undefined;
|
|
37084
37085
|
traits?: (string | {
|
|
37085
37086
|
name: string;
|
|
37086
37087
|
scope: "instance" | "collection";
|
|
@@ -37233,7 +37234,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37233
37234
|
events?: Record<string, string> | undefined;
|
|
37234
37235
|
linkedEntity?: string | undefined;
|
|
37235
37236
|
})[] | undefined;
|
|
37236
|
-
linkedEntity?: string | undefined;
|
|
37237
37237
|
})[];
|
|
37238
37238
|
description?: string | undefined;
|
|
37239
37239
|
visual_prompt?: string | undefined;
|
|
@@ -37247,14 +37247,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37247
37247
|
primary?: string | undefined;
|
|
37248
37248
|
secondary?: string | undefined;
|
|
37249
37249
|
success?: string | undefined;
|
|
37250
|
-
error?: string | undefined;
|
|
37251
37250
|
warning?: string | undefined;
|
|
37252
37251
|
info?: string | undefined;
|
|
37252
|
+
error?: string | undefined;
|
|
37253
37253
|
muted?: string | undefined;
|
|
37254
37254
|
accent?: string | undefined;
|
|
37255
37255
|
surface?: string | undefined;
|
|
37256
37256
|
background?: string | undefined;
|
|
37257
37257
|
ring?: string | undefined;
|
|
37258
|
+
border?: string | undefined;
|
|
37258
37259
|
primaryHover?: string | undefined;
|
|
37259
37260
|
primaryForeground?: string | undefined;
|
|
37260
37261
|
secondaryHover?: string | undefined;
|
|
@@ -37263,7 +37264,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37263
37264
|
mutedForeground?: string | undefined;
|
|
37264
37265
|
foreground?: string | undefined;
|
|
37265
37266
|
cardForeground?: string | undefined;
|
|
37266
|
-
border?: string | undefined;
|
|
37267
37267
|
errorForeground?: string | undefined;
|
|
37268
37268
|
successForeground?: string | undefined;
|
|
37269
37269
|
warningForeground?: string | undefined;
|
|
@@ -37470,14 +37470,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37470
37470
|
primary?: string | undefined;
|
|
37471
37471
|
secondary?: string | undefined;
|
|
37472
37472
|
success?: string | undefined;
|
|
37473
|
-
error?: string | undefined;
|
|
37474
37473
|
warning?: string | undefined;
|
|
37475
37474
|
info?: string | undefined;
|
|
37475
|
+
error?: string | undefined;
|
|
37476
37476
|
muted?: string | undefined;
|
|
37477
37477
|
accent?: string | undefined;
|
|
37478
37478
|
surface?: string | undefined;
|
|
37479
37479
|
background?: string | undefined;
|
|
37480
37480
|
ring?: string | undefined;
|
|
37481
|
+
border?: string | undefined;
|
|
37481
37482
|
primaryHover?: string | undefined;
|
|
37482
37483
|
primaryForeground?: string | undefined;
|
|
37483
37484
|
secondaryHover?: string | undefined;
|
|
@@ -37486,7 +37487,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37486
37487
|
mutedForeground?: string | undefined;
|
|
37487
37488
|
foreground?: string | undefined;
|
|
37488
37489
|
cardForeground?: string | undefined;
|
|
37489
|
-
border?: string | undefined;
|
|
37490
37490
|
errorForeground?: string | undefined;
|
|
37491
37491
|
successForeground?: string | undefined;
|
|
37492
37492
|
warningForeground?: string | undefined;
|
|
@@ -37859,14 +37859,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
37859
37859
|
primary?: string | undefined;
|
|
37860
37860
|
secondary?: string | undefined;
|
|
37861
37861
|
success?: string | undefined;
|
|
37862
|
-
error?: string | undefined;
|
|
37863
37862
|
warning?: string | undefined;
|
|
37864
37863
|
info?: string | undefined;
|
|
37864
|
+
error?: string | undefined;
|
|
37865
37865
|
muted?: string | undefined;
|
|
37866
37866
|
accent?: string | undefined;
|
|
37867
37867
|
surface?: string | undefined;
|
|
37868
37868
|
background?: string | undefined;
|
|
37869
37869
|
ring?: string | undefined;
|
|
37870
|
+
border?: string | undefined;
|
|
37870
37871
|
primaryHover?: string | undefined;
|
|
37871
37872
|
primaryForeground?: string | undefined;
|
|
37872
37873
|
secondaryHover?: string | undefined;
|
|
@@ -37875,7 +37876,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
37875
37876
|
mutedForeground?: string | undefined;
|
|
37876
37877
|
foreground?: string | undefined;
|
|
37877
37878
|
cardForeground?: string | undefined;
|
|
37878
|
-
border?: string | undefined;
|
|
37879
37879
|
errorForeground?: string | undefined;
|
|
37880
37880
|
successForeground?: string | undefined;
|
|
37881
37881
|
warningForeground?: string | undefined;
|
|
@@ -37892,14 +37892,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
37892
37892
|
primary?: string | undefined;
|
|
37893
37893
|
secondary?: string | undefined;
|
|
37894
37894
|
success?: string | undefined;
|
|
37895
|
-
error?: string | undefined;
|
|
37896
37895
|
warning?: string | undefined;
|
|
37897
37896
|
info?: string | undefined;
|
|
37897
|
+
error?: string | undefined;
|
|
37898
37898
|
muted?: string | undefined;
|
|
37899
37899
|
accent?: string | undefined;
|
|
37900
37900
|
surface?: string | undefined;
|
|
37901
37901
|
background?: string | undefined;
|
|
37902
37902
|
ring?: string | undefined;
|
|
37903
|
+
border?: string | undefined;
|
|
37903
37904
|
primaryHover?: string | undefined;
|
|
37904
37905
|
primaryForeground?: string | undefined;
|
|
37905
37906
|
secondaryHover?: string | undefined;
|
|
@@ -37908,7 +37909,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
37908
37909
|
mutedForeground?: string | undefined;
|
|
37909
37910
|
foreground?: string | undefined;
|
|
37910
37911
|
cardForeground?: string | undefined;
|
|
37911
|
-
border?: string | undefined;
|
|
37912
37912
|
errorForeground?: string | undefined;
|
|
37913
37913
|
successForeground?: string | undefined;
|
|
37914
37914
|
warningForeground?: string | undefined;
|
|
@@ -38871,14 +38871,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
38871
38871
|
primary?: string | undefined;
|
|
38872
38872
|
secondary?: string | undefined;
|
|
38873
38873
|
success?: string | undefined;
|
|
38874
|
-
error?: string | undefined;
|
|
38875
38874
|
warning?: string | undefined;
|
|
38876
38875
|
info?: string | undefined;
|
|
38876
|
+
error?: string | undefined;
|
|
38877
38877
|
muted?: string | undefined;
|
|
38878
38878
|
accent?: string | undefined;
|
|
38879
38879
|
surface?: string | undefined;
|
|
38880
38880
|
background?: string | undefined;
|
|
38881
38881
|
ring?: string | undefined;
|
|
38882
|
+
border?: string | undefined;
|
|
38882
38883
|
primaryHover?: string | undefined;
|
|
38883
38884
|
primaryForeground?: string | undefined;
|
|
38884
38885
|
secondaryHover?: string | undefined;
|
|
@@ -38887,7 +38888,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
38887
38888
|
mutedForeground?: string | undefined;
|
|
38888
38889
|
foreground?: string | undefined;
|
|
38889
38890
|
cardForeground?: string | undefined;
|
|
38890
|
-
border?: string | undefined;
|
|
38891
38891
|
errorForeground?: string | undefined;
|
|
38892
38892
|
successForeground?: string | undefined;
|
|
38893
38893
|
warningForeground?: string | undefined;
|
|
@@ -39093,14 +39093,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
39093
39093
|
primary?: string | undefined;
|
|
39094
39094
|
secondary?: string | undefined;
|
|
39095
39095
|
success?: string | undefined;
|
|
39096
|
-
error?: string | undefined;
|
|
39097
39096
|
warning?: string | undefined;
|
|
39098
39097
|
info?: string | undefined;
|
|
39098
|
+
error?: string | undefined;
|
|
39099
39099
|
muted?: string | undefined;
|
|
39100
39100
|
accent?: string | undefined;
|
|
39101
39101
|
surface?: string | undefined;
|
|
39102
39102
|
background?: string | undefined;
|
|
39103
39103
|
ring?: string | undefined;
|
|
39104
|
+
border?: string | undefined;
|
|
39104
39105
|
primaryHover?: string | undefined;
|
|
39105
39106
|
primaryForeground?: string | undefined;
|
|
39106
39107
|
secondaryHover?: string | undefined;
|
|
@@ -39109,7 +39110,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
39109
39110
|
mutedForeground?: string | undefined;
|
|
39110
39111
|
foreground?: string | undefined;
|
|
39111
39112
|
cardForeground?: string | undefined;
|
|
39112
|
-
border?: string | undefined;
|
|
39113
39113
|
errorForeground?: string | undefined;
|
|
39114
39114
|
successForeground?: string | undefined;
|
|
39115
39115
|
warningForeground?: string | undefined;
|
|
@@ -39348,14 +39348,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
39348
39348
|
primary?: string | undefined;
|
|
39349
39349
|
secondary?: string | undefined;
|
|
39350
39350
|
success?: string | undefined;
|
|
39351
|
-
error?: string | undefined;
|
|
39352
39351
|
warning?: string | undefined;
|
|
39353
39352
|
info?: string | undefined;
|
|
39353
|
+
error?: string | undefined;
|
|
39354
39354
|
muted?: string | undefined;
|
|
39355
39355
|
accent?: string | undefined;
|
|
39356
39356
|
surface?: string | undefined;
|
|
39357
39357
|
background?: string | undefined;
|
|
39358
39358
|
ring?: string | undefined;
|
|
39359
|
+
border?: string | undefined;
|
|
39359
39360
|
primaryHover?: string | undefined;
|
|
39360
39361
|
primaryForeground?: string | undefined;
|
|
39361
39362
|
secondaryHover?: string | undefined;
|
|
@@ -39364,7 +39365,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
39364
39365
|
mutedForeground?: string | undefined;
|
|
39365
39366
|
foreground?: string | undefined;
|
|
39366
39367
|
cardForeground?: string | undefined;
|
|
39367
|
-
border?: string | undefined;
|
|
39368
39368
|
errorForeground?: string | undefined;
|
|
39369
39369
|
successForeground?: string | undefined;
|
|
39370
39370
|
warningForeground?: string | undefined;
|
|
@@ -39381,14 +39381,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
39381
39381
|
primary?: string | undefined;
|
|
39382
39382
|
secondary?: string | undefined;
|
|
39383
39383
|
success?: string | undefined;
|
|
39384
|
-
error?: string | undefined;
|
|
39385
39384
|
warning?: string | undefined;
|
|
39386
39385
|
info?: string | undefined;
|
|
39386
|
+
error?: string | undefined;
|
|
39387
39387
|
muted?: string | undefined;
|
|
39388
39388
|
accent?: string | undefined;
|
|
39389
39389
|
surface?: string | undefined;
|
|
39390
39390
|
background?: string | undefined;
|
|
39391
39391
|
ring?: string | undefined;
|
|
39392
|
+
border?: string | undefined;
|
|
39392
39393
|
primaryHover?: string | undefined;
|
|
39393
39394
|
primaryForeground?: string | undefined;
|
|
39394
39395
|
secondaryHover?: string | undefined;
|
|
@@ -39397,7 +39398,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
39397
39398
|
mutedForeground?: string | undefined;
|
|
39398
39399
|
foreground?: string | undefined;
|
|
39399
39400
|
cardForeground?: string | undefined;
|
|
39400
|
-
border?: string | undefined;
|
|
39401
39401
|
errorForeground?: string | undefined;
|
|
39402
39402
|
successForeground?: string | undefined;
|
|
39403
39403
|
warningForeground?: string | undefined;
|
|
@@ -40360,14 +40360,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
40360
40360
|
primary?: string | undefined;
|
|
40361
40361
|
secondary?: string | undefined;
|
|
40362
40362
|
success?: string | undefined;
|
|
40363
|
-
error?: string | undefined;
|
|
40364
40363
|
warning?: string | undefined;
|
|
40365
40364
|
info?: string | undefined;
|
|
40365
|
+
error?: string | undefined;
|
|
40366
40366
|
muted?: string | undefined;
|
|
40367
40367
|
accent?: string | undefined;
|
|
40368
40368
|
surface?: string | undefined;
|
|
40369
40369
|
background?: string | undefined;
|
|
40370
40370
|
ring?: string | undefined;
|
|
40371
|
+
border?: string | undefined;
|
|
40371
40372
|
primaryHover?: string | undefined;
|
|
40372
40373
|
primaryForeground?: string | undefined;
|
|
40373
40374
|
secondaryHover?: string | undefined;
|
|
@@ -40376,7 +40377,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
40376
40377
|
mutedForeground?: string | undefined;
|
|
40377
40378
|
foreground?: string | undefined;
|
|
40378
40379
|
cardForeground?: string | undefined;
|
|
40379
|
-
border?: string | undefined;
|
|
40380
40380
|
errorForeground?: string | undefined;
|
|
40381
40381
|
successForeground?: string | undefined;
|
|
40382
40382
|
warningForeground?: string | undefined;
|
|
@@ -40582,14 +40582,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
40582
40582
|
primary?: string | undefined;
|
|
40583
40583
|
secondary?: string | undefined;
|
|
40584
40584
|
success?: string | undefined;
|
|
40585
|
-
error?: string | undefined;
|
|
40586
40585
|
warning?: string | undefined;
|
|
40587
40586
|
info?: string | undefined;
|
|
40587
|
+
error?: string | undefined;
|
|
40588
40588
|
muted?: string | undefined;
|
|
40589
40589
|
accent?: string | undefined;
|
|
40590
40590
|
surface?: string | undefined;
|
|
40591
40591
|
background?: string | undefined;
|
|
40592
40592
|
ring?: string | undefined;
|
|
40593
|
+
border?: string | undefined;
|
|
40593
40594
|
primaryHover?: string | undefined;
|
|
40594
40595
|
primaryForeground?: string | undefined;
|
|
40595
40596
|
secondaryHover?: string | undefined;
|
|
@@ -40598,7 +40599,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
40598
40599
|
mutedForeground?: string | undefined;
|
|
40599
40600
|
foreground?: string | undefined;
|
|
40600
40601
|
cardForeground?: string | undefined;
|
|
40601
|
-
border?: string | undefined;
|
|
40602
40602
|
errorForeground?: string | undefined;
|
|
40603
40603
|
successForeground?: string | undefined;
|
|
40604
40604
|
warningForeground?: string | undefined;
|
|
@@ -40807,14 +40807,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
40807
40807
|
primary?: string | undefined;
|
|
40808
40808
|
secondary?: string | undefined;
|
|
40809
40809
|
success?: string | undefined;
|
|
40810
|
-
error?: string | undefined;
|
|
40811
40810
|
warning?: string | undefined;
|
|
40812
40811
|
info?: string | undefined;
|
|
40812
|
+
error?: string | undefined;
|
|
40813
40813
|
muted?: string | undefined;
|
|
40814
40814
|
accent?: string | undefined;
|
|
40815
40815
|
surface?: string | undefined;
|
|
40816
40816
|
background?: string | undefined;
|
|
40817
40817
|
ring?: string | undefined;
|
|
40818
|
+
border?: string | undefined;
|
|
40818
40819
|
primaryHover?: string | undefined;
|
|
40819
40820
|
primaryForeground?: string | undefined;
|
|
40820
40821
|
secondaryHover?: string | undefined;
|
|
@@ -40823,7 +40824,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
40823
40824
|
mutedForeground?: string | undefined;
|
|
40824
40825
|
foreground?: string | undefined;
|
|
40825
40826
|
cardForeground?: string | undefined;
|
|
40826
|
-
border?: string | undefined;
|
|
40827
40827
|
errorForeground?: string | undefined;
|
|
40828
40828
|
successForeground?: string | undefined;
|
|
40829
40829
|
warningForeground?: string | undefined;
|
|
@@ -41030,14 +41030,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41030
41030
|
primary?: string | undefined;
|
|
41031
41031
|
secondary?: string | undefined;
|
|
41032
41032
|
success?: string | undefined;
|
|
41033
|
-
error?: string | undefined;
|
|
41034
41033
|
warning?: string | undefined;
|
|
41035
41034
|
info?: string | undefined;
|
|
41035
|
+
error?: string | undefined;
|
|
41036
41036
|
muted?: string | undefined;
|
|
41037
41037
|
accent?: string | undefined;
|
|
41038
41038
|
surface?: string | undefined;
|
|
41039
41039
|
background?: string | undefined;
|
|
41040
41040
|
ring?: string | undefined;
|
|
41041
|
+
border?: string | undefined;
|
|
41041
41042
|
primaryHover?: string | undefined;
|
|
41042
41043
|
primaryForeground?: string | undefined;
|
|
41043
41044
|
secondaryHover?: string | undefined;
|
|
@@ -41046,7 +41047,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41046
41047
|
mutedForeground?: string | undefined;
|
|
41047
41048
|
foreground?: string | undefined;
|
|
41048
41049
|
cardForeground?: string | undefined;
|
|
41049
|
-
border?: string | undefined;
|
|
41050
41050
|
errorForeground?: string | undefined;
|
|
41051
41051
|
successForeground?: string | undefined;
|
|
41052
41052
|
warningForeground?: string | undefined;
|
|
@@ -41255,14 +41255,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41255
41255
|
primary?: string | undefined;
|
|
41256
41256
|
secondary?: string | undefined;
|
|
41257
41257
|
success?: string | undefined;
|
|
41258
|
-
error?: string | undefined;
|
|
41259
41258
|
warning?: string | undefined;
|
|
41260
41259
|
info?: string | undefined;
|
|
41260
|
+
error?: string | undefined;
|
|
41261
41261
|
muted?: string | undefined;
|
|
41262
41262
|
accent?: string | undefined;
|
|
41263
41263
|
surface?: string | undefined;
|
|
41264
41264
|
background?: string | undefined;
|
|
41265
41265
|
ring?: string | undefined;
|
|
41266
|
+
border?: string | undefined;
|
|
41266
41267
|
primaryHover?: string | undefined;
|
|
41267
41268
|
primaryForeground?: string | undefined;
|
|
41268
41269
|
secondaryHover?: string | undefined;
|
|
@@ -41271,7 +41272,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41271
41272
|
mutedForeground?: string | undefined;
|
|
41272
41273
|
foreground?: string | undefined;
|
|
41273
41274
|
cardForeground?: string | undefined;
|
|
41274
|
-
border?: string | undefined;
|
|
41275
41275
|
errorForeground?: string | undefined;
|
|
41276
41276
|
successForeground?: string | undefined;
|
|
41277
41277
|
warningForeground?: string | undefined;
|
|
@@ -41478,14 +41478,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41478
41478
|
primary?: string | undefined;
|
|
41479
41479
|
secondary?: string | undefined;
|
|
41480
41480
|
success?: string | undefined;
|
|
41481
|
-
error?: string | undefined;
|
|
41482
41481
|
warning?: string | undefined;
|
|
41483
41482
|
info?: string | undefined;
|
|
41483
|
+
error?: string | undefined;
|
|
41484
41484
|
muted?: string | undefined;
|
|
41485
41485
|
accent?: string | undefined;
|
|
41486
41486
|
surface?: string | undefined;
|
|
41487
41487
|
background?: string | undefined;
|
|
41488
41488
|
ring?: string | undefined;
|
|
41489
|
+
border?: string | undefined;
|
|
41489
41490
|
primaryHover?: string | undefined;
|
|
41490
41491
|
primaryForeground?: string | undefined;
|
|
41491
41492
|
secondaryHover?: string | undefined;
|
|
@@ -41494,7 +41495,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41494
41495
|
mutedForeground?: string | undefined;
|
|
41495
41496
|
foreground?: string | undefined;
|
|
41496
41497
|
cardForeground?: string | undefined;
|
|
41497
|
-
border?: string | undefined;
|
|
41498
41498
|
errorForeground?: string | undefined;
|
|
41499
41499
|
successForeground?: string | undefined;
|
|
41500
41500
|
warningForeground?: string | undefined;
|
|
@@ -42791,7 +42791,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42791
42791
|
linkedEntity?: string | undefined;
|
|
42792
42792
|
}[] | undefined;
|
|
42793
42793
|
primaryEntity?: string | undefined;
|
|
42794
|
-
viewType?: "custom" | "create" | "
|
|
42794
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
42795
42795
|
}, {
|
|
42796
42796
|
path: string;
|
|
42797
42797
|
name: string;
|
|
@@ -42803,7 +42803,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42803
42803
|
linkedEntity?: string | undefined;
|
|
42804
42804
|
}[] | undefined;
|
|
42805
42805
|
primaryEntity?: string | undefined;
|
|
42806
|
-
viewType?: "custom" | "create" | "
|
|
42806
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
42807
42807
|
}>, z.ZodString, z.ZodObject<{
|
|
42808
42808
|
ref: z.ZodString;
|
|
42809
42809
|
from: z.ZodOptional<z.ZodString>;
|
|
@@ -43637,6 +43637,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43637
43637
|
ref: string;
|
|
43638
43638
|
path?: string | undefined;
|
|
43639
43639
|
from?: string | undefined;
|
|
43640
|
+
linkedEntity?: string | undefined;
|
|
43640
43641
|
traits?: (string | {
|
|
43641
43642
|
name: string;
|
|
43642
43643
|
scope: "instance" | "collection";
|
|
@@ -43789,11 +43790,11 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43789
43790
|
events?: Record<string, string> | undefined;
|
|
43790
43791
|
linkedEntity?: string | undefined;
|
|
43791
43792
|
})[] | undefined;
|
|
43792
|
-
linkedEntity?: string | undefined;
|
|
43793
43793
|
}, {
|
|
43794
43794
|
ref: string;
|
|
43795
43795
|
path?: string | undefined;
|
|
43796
43796
|
from?: string | undefined;
|
|
43797
|
+
linkedEntity?: string | undefined;
|
|
43797
43798
|
traits?: (string | {
|
|
43798
43799
|
name: string;
|
|
43799
43800
|
scope: "instance" | "collection";
|
|
@@ -43946,7 +43947,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43946
43947
|
events?: Record<string, string> | undefined;
|
|
43947
43948
|
linkedEntity?: string | undefined;
|
|
43948
43949
|
})[] | undefined;
|
|
43949
|
-
linkedEntity?: string | undefined;
|
|
43950
43950
|
}>]>, "many">;
|
|
43951
43951
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
43952
43952
|
event: z.ZodString;
|
|
@@ -44378,11 +44378,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44378
44378
|
linkedEntity?: string | undefined;
|
|
44379
44379
|
}[] | undefined;
|
|
44380
44380
|
primaryEntity?: string | undefined;
|
|
44381
|
-
viewType?: "custom" | "create" | "
|
|
44381
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
44382
44382
|
} | {
|
|
44383
44383
|
ref: string;
|
|
44384
44384
|
path?: string | undefined;
|
|
44385
44385
|
from?: string | undefined;
|
|
44386
|
+
linkedEntity?: string | undefined;
|
|
44386
44387
|
traits?: (string | {
|
|
44387
44388
|
name: string;
|
|
44388
44389
|
scope: "instance" | "collection";
|
|
@@ -44535,7 +44536,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44535
44536
|
events?: Record<string, string> | undefined;
|
|
44536
44537
|
linkedEntity?: string | undefined;
|
|
44537
44538
|
})[] | undefined;
|
|
44538
|
-
linkedEntity?: string | undefined;
|
|
44539
44539
|
})[];
|
|
44540
44540
|
description?: string | undefined;
|
|
44541
44541
|
visual_prompt?: string | undefined;
|
|
@@ -44549,14 +44549,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44549
44549
|
primary?: string | undefined;
|
|
44550
44550
|
secondary?: string | undefined;
|
|
44551
44551
|
success?: string | undefined;
|
|
44552
|
-
error?: string | undefined;
|
|
44553
44552
|
warning?: string | undefined;
|
|
44554
44553
|
info?: string | undefined;
|
|
44554
|
+
error?: string | undefined;
|
|
44555
44555
|
muted?: string | undefined;
|
|
44556
44556
|
accent?: string | undefined;
|
|
44557
44557
|
surface?: string | undefined;
|
|
44558
44558
|
background?: string | undefined;
|
|
44559
44559
|
ring?: string | undefined;
|
|
44560
|
+
border?: string | undefined;
|
|
44560
44561
|
primaryHover?: string | undefined;
|
|
44561
44562
|
primaryForeground?: string | undefined;
|
|
44562
44563
|
secondaryHover?: string | undefined;
|
|
@@ -44565,7 +44566,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44565
44566
|
mutedForeground?: string | undefined;
|
|
44566
44567
|
foreground?: string | undefined;
|
|
44567
44568
|
cardForeground?: string | undefined;
|
|
44568
|
-
border?: string | undefined;
|
|
44569
44569
|
errorForeground?: string | undefined;
|
|
44570
44570
|
successForeground?: string | undefined;
|
|
44571
44571
|
warningForeground?: string | undefined;
|
|
@@ -44772,14 +44772,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44772
44772
|
primary?: string | undefined;
|
|
44773
44773
|
secondary?: string | undefined;
|
|
44774
44774
|
success?: string | undefined;
|
|
44775
|
-
error?: string | undefined;
|
|
44776
44775
|
warning?: string | undefined;
|
|
44777
44776
|
info?: string | undefined;
|
|
44777
|
+
error?: string | undefined;
|
|
44778
44778
|
muted?: string | undefined;
|
|
44779
44779
|
accent?: string | undefined;
|
|
44780
44780
|
surface?: string | undefined;
|
|
44781
44781
|
background?: string | undefined;
|
|
44782
44782
|
ring?: string | undefined;
|
|
44783
|
+
border?: string | undefined;
|
|
44783
44784
|
primaryHover?: string | undefined;
|
|
44784
44785
|
primaryForeground?: string | undefined;
|
|
44785
44786
|
secondaryHover?: string | undefined;
|
|
@@ -44788,7 +44789,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44788
44789
|
mutedForeground?: string | undefined;
|
|
44789
44790
|
foreground?: string | undefined;
|
|
44790
44791
|
cardForeground?: string | undefined;
|
|
44791
|
-
border?: string | undefined;
|
|
44792
44792
|
errorForeground?: string | undefined;
|
|
44793
44793
|
successForeground?: string | undefined;
|
|
44794
44794
|
warningForeground?: string | undefined;
|
|
@@ -45286,11 +45286,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45286
45286
|
linkedEntity?: string | undefined;
|
|
45287
45287
|
}[] | undefined;
|
|
45288
45288
|
primaryEntity?: string | undefined;
|
|
45289
|
-
viewType?: "custom" | "create" | "
|
|
45289
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
45290
45290
|
} | {
|
|
45291
45291
|
ref: string;
|
|
45292
45292
|
path?: string | undefined;
|
|
45293
45293
|
from?: string | undefined;
|
|
45294
|
+
linkedEntity?: string | undefined;
|
|
45294
45295
|
traits?: (string | {
|
|
45295
45296
|
name: string;
|
|
45296
45297
|
scope: "instance" | "collection";
|
|
@@ -45443,7 +45444,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45443
45444
|
events?: Record<string, string> | undefined;
|
|
45444
45445
|
linkedEntity?: string | undefined;
|
|
45445
45446
|
})[] | undefined;
|
|
45446
|
-
linkedEntity?: string | undefined;
|
|
45447
45447
|
})[];
|
|
45448
45448
|
description?: string | undefined;
|
|
45449
45449
|
visual_prompt?: string | undefined;
|
|
@@ -45457,14 +45457,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45457
45457
|
primary?: string | undefined;
|
|
45458
45458
|
secondary?: string | undefined;
|
|
45459
45459
|
success?: string | undefined;
|
|
45460
|
-
error?: string | undefined;
|
|
45461
45460
|
warning?: string | undefined;
|
|
45462
45461
|
info?: string | undefined;
|
|
45462
|
+
error?: string | undefined;
|
|
45463
45463
|
muted?: string | undefined;
|
|
45464
45464
|
accent?: string | undefined;
|
|
45465
45465
|
surface?: string | undefined;
|
|
45466
45466
|
background?: string | undefined;
|
|
45467
45467
|
ring?: string | undefined;
|
|
45468
|
+
border?: string | undefined;
|
|
45468
45469
|
primaryHover?: string | undefined;
|
|
45469
45470
|
primaryForeground?: string | undefined;
|
|
45470
45471
|
secondaryHover?: string | undefined;
|
|
@@ -45473,7 +45474,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45473
45474
|
mutedForeground?: string | undefined;
|
|
45474
45475
|
foreground?: string | undefined;
|
|
45475
45476
|
cardForeground?: string | undefined;
|
|
45476
|
-
border?: string | undefined;
|
|
45477
45477
|
errorForeground?: string | undefined;
|
|
45478
45478
|
successForeground?: string | undefined;
|
|
45479
45479
|
warningForeground?: string | undefined;
|
|
@@ -45680,14 +45680,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45680
45680
|
primary?: string | undefined;
|
|
45681
45681
|
secondary?: string | undefined;
|
|
45682
45682
|
success?: string | undefined;
|
|
45683
|
-
error?: string | undefined;
|
|
45684
45683
|
warning?: string | undefined;
|
|
45685
45684
|
info?: string | undefined;
|
|
45685
|
+
error?: string | undefined;
|
|
45686
45686
|
muted?: string | undefined;
|
|
45687
45687
|
accent?: string | undefined;
|
|
45688
45688
|
surface?: string | undefined;
|
|
45689
45689
|
background?: string | undefined;
|
|
45690
45690
|
ring?: string | undefined;
|
|
45691
|
+
border?: string | undefined;
|
|
45691
45692
|
primaryHover?: string | undefined;
|
|
45692
45693
|
primaryForeground?: string | undefined;
|
|
45693
45694
|
secondaryHover?: string | undefined;
|
|
@@ -45696,7 +45697,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45696
45697
|
mutedForeground?: string | undefined;
|
|
45697
45698
|
foreground?: string | undefined;
|
|
45698
45699
|
cardForeground?: string | undefined;
|
|
45699
|
-
border?: string | undefined;
|
|
45700
45700
|
errorForeground?: string | undefined;
|
|
45701
45701
|
successForeground?: string | undefined;
|
|
45702
45702
|
warningForeground?: string | undefined;
|
|
@@ -46339,13 +46339,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
46339
46339
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46340
46340
|
}, "strip", z.ZodTypeAny, {
|
|
46341
46341
|
type: "custom";
|
|
46342
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
46342
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
46343
46343
|
className: string;
|
|
46344
46344
|
slots?: string[] | undefined;
|
|
46345
46345
|
props?: string[] | undefined;
|
|
46346
46346
|
}, {
|
|
46347
46347
|
type: "custom";
|
|
46348
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
46348
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
46349
46349
|
className: string;
|
|
46350
46350
|
slots?: string[] | undefined;
|
|
46351
46351
|
props?: string[] | undefined;
|
|
@@ -46406,14 +46406,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
46406
46406
|
primary?: string | undefined;
|
|
46407
46407
|
secondary?: string | undefined;
|
|
46408
46408
|
success?: string | undefined;
|
|
46409
|
-
error?: string | undefined;
|
|
46410
46409
|
warning?: string | undefined;
|
|
46411
46410
|
info?: string | undefined;
|
|
46411
|
+
error?: string | undefined;
|
|
46412
46412
|
muted?: string | undefined;
|
|
46413
46413
|
accent?: string | undefined;
|
|
46414
46414
|
surface?: string | undefined;
|
|
46415
46415
|
background?: string | undefined;
|
|
46416
46416
|
ring?: string | undefined;
|
|
46417
|
+
border?: string | undefined;
|
|
46417
46418
|
primaryHover?: string | undefined;
|
|
46418
46419
|
primaryForeground?: string | undefined;
|
|
46419
46420
|
secondaryHover?: string | undefined;
|
|
@@ -46422,7 +46423,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
46422
46423
|
mutedForeground?: string | undefined;
|
|
46423
46424
|
foreground?: string | undefined;
|
|
46424
46425
|
cardForeground?: string | undefined;
|
|
46425
|
-
border?: string | undefined;
|
|
46426
46426
|
errorForeground?: string | undefined;
|
|
46427
46427
|
successForeground?: string | undefined;
|
|
46428
46428
|
warningForeground?: string | undefined;
|
|
@@ -46439,14 +46439,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
46439
46439
|
primary?: string | undefined;
|
|
46440
46440
|
secondary?: string | undefined;
|
|
46441
46441
|
success?: string | undefined;
|
|
46442
|
-
error?: string | undefined;
|
|
46443
46442
|
warning?: string | undefined;
|
|
46444
46443
|
info?: string | undefined;
|
|
46444
|
+
error?: string | undefined;
|
|
46445
46445
|
muted?: string | undefined;
|
|
46446
46446
|
accent?: string | undefined;
|
|
46447
46447
|
surface?: string | undefined;
|
|
46448
46448
|
background?: string | undefined;
|
|
46449
46449
|
ring?: string | undefined;
|
|
46450
|
+
border?: string | undefined;
|
|
46450
46451
|
primaryHover?: string | undefined;
|
|
46451
46452
|
primaryForeground?: string | undefined;
|
|
46452
46453
|
secondaryHover?: string | undefined;
|
|
@@ -46455,7 +46456,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
46455
46456
|
mutedForeground?: string | undefined;
|
|
46456
46457
|
foreground?: string | undefined;
|
|
46457
46458
|
cardForeground?: string | undefined;
|
|
46458
|
-
border?: string | undefined;
|
|
46459
46459
|
errorForeground?: string | undefined;
|
|
46460
46460
|
successForeground?: string | undefined;
|
|
46461
46461
|
warningForeground?: string | undefined;
|
|
@@ -47418,14 +47418,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47418
47418
|
primary?: string | undefined;
|
|
47419
47419
|
secondary?: string | undefined;
|
|
47420
47420
|
success?: string | undefined;
|
|
47421
|
-
error?: string | undefined;
|
|
47422
47421
|
warning?: string | undefined;
|
|
47423
47422
|
info?: string | undefined;
|
|
47423
|
+
error?: string | undefined;
|
|
47424
47424
|
muted?: string | undefined;
|
|
47425
47425
|
accent?: string | undefined;
|
|
47426
47426
|
surface?: string | undefined;
|
|
47427
47427
|
background?: string | undefined;
|
|
47428
47428
|
ring?: string | undefined;
|
|
47429
|
+
border?: string | undefined;
|
|
47429
47430
|
primaryHover?: string | undefined;
|
|
47430
47431
|
primaryForeground?: string | undefined;
|
|
47431
47432
|
secondaryHover?: string | undefined;
|
|
@@ -47434,7 +47435,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47434
47435
|
mutedForeground?: string | undefined;
|
|
47435
47436
|
foreground?: string | undefined;
|
|
47436
47437
|
cardForeground?: string | undefined;
|
|
47437
|
-
border?: string | undefined;
|
|
47438
47438
|
errorForeground?: string | undefined;
|
|
47439
47439
|
successForeground?: string | undefined;
|
|
47440
47440
|
warningForeground?: string | undefined;
|
|
@@ -47640,14 +47640,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47640
47640
|
primary?: string | undefined;
|
|
47641
47641
|
secondary?: string | undefined;
|
|
47642
47642
|
success?: string | undefined;
|
|
47643
|
-
error?: string | undefined;
|
|
47644
47643
|
warning?: string | undefined;
|
|
47645
47644
|
info?: string | undefined;
|
|
47645
|
+
error?: string | undefined;
|
|
47646
47646
|
muted?: string | undefined;
|
|
47647
47647
|
accent?: string | undefined;
|
|
47648
47648
|
surface?: string | undefined;
|
|
47649
47649
|
background?: string | undefined;
|
|
47650
47650
|
ring?: string | undefined;
|
|
47651
|
+
border?: string | undefined;
|
|
47651
47652
|
primaryHover?: string | undefined;
|
|
47652
47653
|
primaryForeground?: string | undefined;
|
|
47653
47654
|
secondaryHover?: string | undefined;
|
|
@@ -47656,7 +47657,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47656
47657
|
mutedForeground?: string | undefined;
|
|
47657
47658
|
foreground?: string | undefined;
|
|
47658
47659
|
cardForeground?: string | undefined;
|
|
47659
|
-
border?: string | undefined;
|
|
47660
47660
|
errorForeground?: string | undefined;
|
|
47661
47661
|
successForeground?: string | undefined;
|
|
47662
47662
|
warningForeground?: string | undefined;
|
|
@@ -47895,14 +47895,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47895
47895
|
primary?: string | undefined;
|
|
47896
47896
|
secondary?: string | undefined;
|
|
47897
47897
|
success?: string | undefined;
|
|
47898
|
-
error?: string | undefined;
|
|
47899
47898
|
warning?: string | undefined;
|
|
47900
47899
|
info?: string | undefined;
|
|
47900
|
+
error?: string | undefined;
|
|
47901
47901
|
muted?: string | undefined;
|
|
47902
47902
|
accent?: string | undefined;
|
|
47903
47903
|
surface?: string | undefined;
|
|
47904
47904
|
background?: string | undefined;
|
|
47905
47905
|
ring?: string | undefined;
|
|
47906
|
+
border?: string | undefined;
|
|
47906
47907
|
primaryHover?: string | undefined;
|
|
47907
47908
|
primaryForeground?: string | undefined;
|
|
47908
47909
|
secondaryHover?: string | undefined;
|
|
@@ -47911,7 +47912,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47911
47912
|
mutedForeground?: string | undefined;
|
|
47912
47913
|
foreground?: string | undefined;
|
|
47913
47914
|
cardForeground?: string | undefined;
|
|
47914
|
-
border?: string | undefined;
|
|
47915
47915
|
errorForeground?: string | undefined;
|
|
47916
47916
|
successForeground?: string | undefined;
|
|
47917
47917
|
warningForeground?: string | undefined;
|
|
@@ -47928,14 +47928,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47928
47928
|
primary?: string | undefined;
|
|
47929
47929
|
secondary?: string | undefined;
|
|
47930
47930
|
success?: string | undefined;
|
|
47931
|
-
error?: string | undefined;
|
|
47932
47931
|
warning?: string | undefined;
|
|
47933
47932
|
info?: string | undefined;
|
|
47933
|
+
error?: string | undefined;
|
|
47934
47934
|
muted?: string | undefined;
|
|
47935
47935
|
accent?: string | undefined;
|
|
47936
47936
|
surface?: string | undefined;
|
|
47937
47937
|
background?: string | undefined;
|
|
47938
47938
|
ring?: string | undefined;
|
|
47939
|
+
border?: string | undefined;
|
|
47939
47940
|
primaryHover?: string | undefined;
|
|
47940
47941
|
primaryForeground?: string | undefined;
|
|
47941
47942
|
secondaryHover?: string | undefined;
|
|
@@ -47944,7 +47945,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
47944
47945
|
mutedForeground?: string | undefined;
|
|
47945
47946
|
foreground?: string | undefined;
|
|
47946
47947
|
cardForeground?: string | undefined;
|
|
47947
|
-
border?: string | undefined;
|
|
47948
47948
|
errorForeground?: string | undefined;
|
|
47949
47949
|
successForeground?: string | undefined;
|
|
47950
47950
|
warningForeground?: string | undefined;
|
|
@@ -48907,14 +48907,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
48907
48907
|
primary?: string | undefined;
|
|
48908
48908
|
secondary?: string | undefined;
|
|
48909
48909
|
success?: string | undefined;
|
|
48910
|
-
error?: string | undefined;
|
|
48911
48910
|
warning?: string | undefined;
|
|
48912
48911
|
info?: string | undefined;
|
|
48912
|
+
error?: string | undefined;
|
|
48913
48913
|
muted?: string | undefined;
|
|
48914
48914
|
accent?: string | undefined;
|
|
48915
48915
|
surface?: string | undefined;
|
|
48916
48916
|
background?: string | undefined;
|
|
48917
48917
|
ring?: string | undefined;
|
|
48918
|
+
border?: string | undefined;
|
|
48918
48919
|
primaryHover?: string | undefined;
|
|
48919
48920
|
primaryForeground?: string | undefined;
|
|
48920
48921
|
secondaryHover?: string | undefined;
|
|
@@ -48923,7 +48924,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
48923
48924
|
mutedForeground?: string | undefined;
|
|
48924
48925
|
foreground?: string | undefined;
|
|
48925
48926
|
cardForeground?: string | undefined;
|
|
48926
|
-
border?: string | undefined;
|
|
48927
48927
|
errorForeground?: string | undefined;
|
|
48928
48928
|
successForeground?: string | undefined;
|
|
48929
48929
|
warningForeground?: string | undefined;
|
|
@@ -49129,14 +49129,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49129
49129
|
primary?: string | undefined;
|
|
49130
49130
|
secondary?: string | undefined;
|
|
49131
49131
|
success?: string | undefined;
|
|
49132
|
-
error?: string | undefined;
|
|
49133
49132
|
warning?: string | undefined;
|
|
49134
49133
|
info?: string | undefined;
|
|
49134
|
+
error?: string | undefined;
|
|
49135
49135
|
muted?: string | undefined;
|
|
49136
49136
|
accent?: string | undefined;
|
|
49137
49137
|
surface?: string | undefined;
|
|
49138
49138
|
background?: string | undefined;
|
|
49139
49139
|
ring?: string | undefined;
|
|
49140
|
+
border?: string | undefined;
|
|
49140
49141
|
primaryHover?: string | undefined;
|
|
49141
49142
|
primaryForeground?: string | undefined;
|
|
49142
49143
|
secondaryHover?: string | undefined;
|
|
@@ -49145,7 +49146,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49145
49146
|
mutedForeground?: string | undefined;
|
|
49146
49147
|
foreground?: string | undefined;
|
|
49147
49148
|
cardForeground?: string | undefined;
|
|
49148
|
-
border?: string | undefined;
|
|
49149
49149
|
errorForeground?: string | undefined;
|
|
49150
49150
|
successForeground?: string | undefined;
|
|
49151
49151
|
warningForeground?: string | undefined;
|
|
@@ -49354,14 +49354,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49354
49354
|
primary?: string | undefined;
|
|
49355
49355
|
secondary?: string | undefined;
|
|
49356
49356
|
success?: string | undefined;
|
|
49357
|
-
error?: string | undefined;
|
|
49358
49357
|
warning?: string | undefined;
|
|
49359
49358
|
info?: string | undefined;
|
|
49359
|
+
error?: string | undefined;
|
|
49360
49360
|
muted?: string | undefined;
|
|
49361
49361
|
accent?: string | undefined;
|
|
49362
49362
|
surface?: string | undefined;
|
|
49363
49363
|
background?: string | undefined;
|
|
49364
49364
|
ring?: string | undefined;
|
|
49365
|
+
border?: string | undefined;
|
|
49365
49366
|
primaryHover?: string | undefined;
|
|
49366
49367
|
primaryForeground?: string | undefined;
|
|
49367
49368
|
secondaryHover?: string | undefined;
|
|
@@ -49370,7 +49371,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49370
49371
|
mutedForeground?: string | undefined;
|
|
49371
49372
|
foreground?: string | undefined;
|
|
49372
49373
|
cardForeground?: string | undefined;
|
|
49373
|
-
border?: string | undefined;
|
|
49374
49374
|
errorForeground?: string | undefined;
|
|
49375
49375
|
successForeground?: string | undefined;
|
|
49376
49376
|
warningForeground?: string | undefined;
|
|
@@ -49577,14 +49577,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49577
49577
|
primary?: string | undefined;
|
|
49578
49578
|
secondary?: string | undefined;
|
|
49579
49579
|
success?: string | undefined;
|
|
49580
|
-
error?: string | undefined;
|
|
49581
49580
|
warning?: string | undefined;
|
|
49582
49581
|
info?: string | undefined;
|
|
49582
|
+
error?: string | undefined;
|
|
49583
49583
|
muted?: string | undefined;
|
|
49584
49584
|
accent?: string | undefined;
|
|
49585
49585
|
surface?: string | undefined;
|
|
49586
49586
|
background?: string | undefined;
|
|
49587
49587
|
ring?: string | undefined;
|
|
49588
|
+
border?: string | undefined;
|
|
49588
49589
|
primaryHover?: string | undefined;
|
|
49589
49590
|
primaryForeground?: string | undefined;
|
|
49590
49591
|
secondaryHover?: string | undefined;
|
|
@@ -49593,7 +49594,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49593
49594
|
mutedForeground?: string | undefined;
|
|
49594
49595
|
foreground?: string | undefined;
|
|
49595
49596
|
cardForeground?: string | undefined;
|
|
49596
|
-
border?: string | undefined;
|
|
49597
49597
|
errorForeground?: string | undefined;
|
|
49598
49598
|
successForeground?: string | undefined;
|
|
49599
49599
|
warningForeground?: string | undefined;
|
|
@@ -49802,14 +49802,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49802
49802
|
primary?: string | undefined;
|
|
49803
49803
|
secondary?: string | undefined;
|
|
49804
49804
|
success?: string | undefined;
|
|
49805
|
-
error?: string | undefined;
|
|
49806
49805
|
warning?: string | undefined;
|
|
49807
49806
|
info?: string | undefined;
|
|
49807
|
+
error?: string | undefined;
|
|
49808
49808
|
muted?: string | undefined;
|
|
49809
49809
|
accent?: string | undefined;
|
|
49810
49810
|
surface?: string | undefined;
|
|
49811
49811
|
background?: string | undefined;
|
|
49812
49812
|
ring?: string | undefined;
|
|
49813
|
+
border?: string | undefined;
|
|
49813
49814
|
primaryHover?: string | undefined;
|
|
49814
49815
|
primaryForeground?: string | undefined;
|
|
49815
49816
|
secondaryHover?: string | undefined;
|
|
@@ -49818,7 +49819,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
49818
49819
|
mutedForeground?: string | undefined;
|
|
49819
49820
|
foreground?: string | undefined;
|
|
49820
49821
|
cardForeground?: string | undefined;
|
|
49821
|
-
border?: string | undefined;
|
|
49822
49822
|
errorForeground?: string | undefined;
|
|
49823
49823
|
successForeground?: string | undefined;
|
|
49824
49824
|
warningForeground?: string | undefined;
|
|
@@ -50025,14 +50025,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50025
50025
|
primary?: string | undefined;
|
|
50026
50026
|
secondary?: string | undefined;
|
|
50027
50027
|
success?: string | undefined;
|
|
50028
|
-
error?: string | undefined;
|
|
50029
50028
|
warning?: string | undefined;
|
|
50030
50029
|
info?: string | undefined;
|
|
50030
|
+
error?: string | undefined;
|
|
50031
50031
|
muted?: string | undefined;
|
|
50032
50032
|
accent?: string | undefined;
|
|
50033
50033
|
surface?: string | undefined;
|
|
50034
50034
|
background?: string | undefined;
|
|
50035
50035
|
ring?: string | undefined;
|
|
50036
|
+
border?: string | undefined;
|
|
50036
50037
|
primaryHover?: string | undefined;
|
|
50037
50038
|
primaryForeground?: string | undefined;
|
|
50038
50039
|
secondaryHover?: string | undefined;
|
|
@@ -50041,7 +50042,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50041
50042
|
mutedForeground?: string | undefined;
|
|
50042
50043
|
foreground?: string | undefined;
|
|
50043
50044
|
cardForeground?: string | undefined;
|
|
50044
|
-
border?: string | undefined;
|
|
50045
50045
|
errorForeground?: string | undefined;
|
|
50046
50046
|
successForeground?: string | undefined;
|
|
50047
50047
|
warningForeground?: string | undefined;
|
|
@@ -51338,7 +51338,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51338
51338
|
linkedEntity?: string | undefined;
|
|
51339
51339
|
}[] | undefined;
|
|
51340
51340
|
primaryEntity?: string | undefined;
|
|
51341
|
-
viewType?: "custom" | "create" | "
|
|
51341
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
51342
51342
|
}, {
|
|
51343
51343
|
path: string;
|
|
51344
51344
|
name: string;
|
|
@@ -51350,7 +51350,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51350
51350
|
linkedEntity?: string | undefined;
|
|
51351
51351
|
}[] | undefined;
|
|
51352
51352
|
primaryEntity?: string | undefined;
|
|
51353
|
-
viewType?: "custom" | "create" | "
|
|
51353
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
51354
51354
|
}>, z.ZodString, z.ZodObject<{
|
|
51355
51355
|
ref: z.ZodString;
|
|
51356
51356
|
from: z.ZodOptional<z.ZodString>;
|
|
@@ -52184,6 +52184,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52184
52184
|
ref: string;
|
|
52185
52185
|
path?: string | undefined;
|
|
52186
52186
|
from?: string | undefined;
|
|
52187
|
+
linkedEntity?: string | undefined;
|
|
52187
52188
|
traits?: (string | {
|
|
52188
52189
|
name: string;
|
|
52189
52190
|
scope: "instance" | "collection";
|
|
@@ -52336,11 +52337,11 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52336
52337
|
events?: Record<string, string> | undefined;
|
|
52337
52338
|
linkedEntity?: string | undefined;
|
|
52338
52339
|
})[] | undefined;
|
|
52339
|
-
linkedEntity?: string | undefined;
|
|
52340
52340
|
}, {
|
|
52341
52341
|
ref: string;
|
|
52342
52342
|
path?: string | undefined;
|
|
52343
52343
|
from?: string | undefined;
|
|
52344
|
+
linkedEntity?: string | undefined;
|
|
52344
52345
|
traits?: (string | {
|
|
52345
52346
|
name: string;
|
|
52346
52347
|
scope: "instance" | "collection";
|
|
@@ -52493,7 +52494,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52493
52494
|
events?: Record<string, string> | undefined;
|
|
52494
52495
|
linkedEntity?: string | undefined;
|
|
52495
52496
|
})[] | undefined;
|
|
52496
|
-
linkedEntity?: string | undefined;
|
|
52497
52497
|
}>]>, "many">;
|
|
52498
52498
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
52499
52499
|
event: z.ZodString;
|
|
@@ -52925,11 +52925,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52925
52925
|
linkedEntity?: string | undefined;
|
|
52926
52926
|
}[] | undefined;
|
|
52927
52927
|
primaryEntity?: string | undefined;
|
|
52928
|
-
viewType?: "custom" | "create" | "
|
|
52928
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
52929
52929
|
} | {
|
|
52930
52930
|
ref: string;
|
|
52931
52931
|
path?: string | undefined;
|
|
52932
52932
|
from?: string | undefined;
|
|
52933
|
+
linkedEntity?: string | undefined;
|
|
52933
52934
|
traits?: (string | {
|
|
52934
52935
|
name: string;
|
|
52935
52936
|
scope: "instance" | "collection";
|
|
@@ -53082,7 +53083,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53082
53083
|
events?: Record<string, string> | undefined;
|
|
53083
53084
|
linkedEntity?: string | undefined;
|
|
53084
53085
|
})[] | undefined;
|
|
53085
|
-
linkedEntity?: string | undefined;
|
|
53086
53086
|
})[];
|
|
53087
53087
|
description?: string | undefined;
|
|
53088
53088
|
visual_prompt?: string | undefined;
|
|
@@ -53096,14 +53096,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53096
53096
|
primary?: string | undefined;
|
|
53097
53097
|
secondary?: string | undefined;
|
|
53098
53098
|
success?: string | undefined;
|
|
53099
|
-
error?: string | undefined;
|
|
53100
53099
|
warning?: string | undefined;
|
|
53101
53100
|
info?: string | undefined;
|
|
53101
|
+
error?: string | undefined;
|
|
53102
53102
|
muted?: string | undefined;
|
|
53103
53103
|
accent?: string | undefined;
|
|
53104
53104
|
surface?: string | undefined;
|
|
53105
53105
|
background?: string | undefined;
|
|
53106
53106
|
ring?: string | undefined;
|
|
53107
|
+
border?: string | undefined;
|
|
53107
53108
|
primaryHover?: string | undefined;
|
|
53108
53109
|
primaryForeground?: string | undefined;
|
|
53109
53110
|
secondaryHover?: string | undefined;
|
|
@@ -53112,7 +53113,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53112
53113
|
mutedForeground?: string | undefined;
|
|
53113
53114
|
foreground?: string | undefined;
|
|
53114
53115
|
cardForeground?: string | undefined;
|
|
53115
|
-
border?: string | undefined;
|
|
53116
53116
|
errorForeground?: string | undefined;
|
|
53117
53117
|
successForeground?: string | undefined;
|
|
53118
53118
|
warningForeground?: string | undefined;
|
|
@@ -53319,14 +53319,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53319
53319
|
primary?: string | undefined;
|
|
53320
53320
|
secondary?: string | undefined;
|
|
53321
53321
|
success?: string | undefined;
|
|
53322
|
-
error?: string | undefined;
|
|
53323
53322
|
warning?: string | undefined;
|
|
53324
53323
|
info?: string | undefined;
|
|
53324
|
+
error?: string | undefined;
|
|
53325
53325
|
muted?: string | undefined;
|
|
53326
53326
|
accent?: string | undefined;
|
|
53327
53327
|
surface?: string | undefined;
|
|
53328
53328
|
background?: string | undefined;
|
|
53329
53329
|
ring?: string | undefined;
|
|
53330
|
+
border?: string | undefined;
|
|
53330
53331
|
primaryHover?: string | undefined;
|
|
53331
53332
|
primaryForeground?: string | undefined;
|
|
53332
53333
|
secondaryHover?: string | undefined;
|
|
@@ -53335,7 +53336,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53335
53336
|
mutedForeground?: string | undefined;
|
|
53336
53337
|
foreground?: string | undefined;
|
|
53337
53338
|
cardForeground?: string | undefined;
|
|
53338
|
-
border?: string | undefined;
|
|
53339
53339
|
errorForeground?: string | undefined;
|
|
53340
53340
|
successForeground?: string | undefined;
|
|
53341
53341
|
warningForeground?: string | undefined;
|
|
@@ -53833,11 +53833,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53833
53833
|
linkedEntity?: string | undefined;
|
|
53834
53834
|
}[] | undefined;
|
|
53835
53835
|
primaryEntity?: string | undefined;
|
|
53836
|
-
viewType?: "custom" | "create" | "
|
|
53836
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
53837
53837
|
} | {
|
|
53838
53838
|
ref: string;
|
|
53839
53839
|
path?: string | undefined;
|
|
53840
53840
|
from?: string | undefined;
|
|
53841
|
+
linkedEntity?: string | undefined;
|
|
53841
53842
|
traits?: (string | {
|
|
53842
53843
|
name: string;
|
|
53843
53844
|
scope: "instance" | "collection";
|
|
@@ -53990,7 +53991,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53990
53991
|
events?: Record<string, string> | undefined;
|
|
53991
53992
|
linkedEntity?: string | undefined;
|
|
53992
53993
|
})[] | undefined;
|
|
53993
|
-
linkedEntity?: string | undefined;
|
|
53994
53994
|
})[];
|
|
53995
53995
|
description?: string | undefined;
|
|
53996
53996
|
visual_prompt?: string | undefined;
|
|
@@ -54004,14 +54004,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54004
54004
|
primary?: string | undefined;
|
|
54005
54005
|
secondary?: string | undefined;
|
|
54006
54006
|
success?: string | undefined;
|
|
54007
|
-
error?: string | undefined;
|
|
54008
54007
|
warning?: string | undefined;
|
|
54009
54008
|
info?: string | undefined;
|
|
54009
|
+
error?: string | undefined;
|
|
54010
54010
|
muted?: string | undefined;
|
|
54011
54011
|
accent?: string | undefined;
|
|
54012
54012
|
surface?: string | undefined;
|
|
54013
54013
|
background?: string | undefined;
|
|
54014
54014
|
ring?: string | undefined;
|
|
54015
|
+
border?: string | undefined;
|
|
54015
54016
|
primaryHover?: string | undefined;
|
|
54016
54017
|
primaryForeground?: string | undefined;
|
|
54017
54018
|
secondaryHover?: string | undefined;
|
|
@@ -54020,7 +54021,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54020
54021
|
mutedForeground?: string | undefined;
|
|
54021
54022
|
foreground?: string | undefined;
|
|
54022
54023
|
cardForeground?: string | undefined;
|
|
54023
|
-
border?: string | undefined;
|
|
54024
54024
|
errorForeground?: string | undefined;
|
|
54025
54025
|
successForeground?: string | undefined;
|
|
54026
54026
|
warningForeground?: string | undefined;
|
|
@@ -54227,14 +54227,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54227
54227
|
primary?: string | undefined;
|
|
54228
54228
|
secondary?: string | undefined;
|
|
54229
54229
|
success?: string | undefined;
|
|
54230
|
-
error?: string | undefined;
|
|
54231
54230
|
warning?: string | undefined;
|
|
54232
54231
|
info?: string | undefined;
|
|
54232
|
+
error?: string | undefined;
|
|
54233
54233
|
muted?: string | undefined;
|
|
54234
54234
|
accent?: string | undefined;
|
|
54235
54235
|
surface?: string | undefined;
|
|
54236
54236
|
background?: string | undefined;
|
|
54237
54237
|
ring?: string | undefined;
|
|
54238
|
+
border?: string | undefined;
|
|
54238
54239
|
primaryHover?: string | undefined;
|
|
54239
54240
|
primaryForeground?: string | undefined;
|
|
54240
54241
|
secondaryHover?: string | undefined;
|
|
@@ -54243,7 +54244,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54243
54244
|
mutedForeground?: string | undefined;
|
|
54244
54245
|
foreground?: string | undefined;
|
|
54245
54246
|
cardForeground?: string | undefined;
|
|
54246
|
-
border?: string | undefined;
|
|
54247
54247
|
errorForeground?: string | undefined;
|
|
54248
54248
|
successForeground?: string | undefined;
|
|
54249
54249
|
warningForeground?: string | undefined;
|
|
@@ -54963,11 +54963,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54963
54963
|
linkedEntity?: string | undefined;
|
|
54964
54964
|
}[] | undefined;
|
|
54965
54965
|
primaryEntity?: string | undefined;
|
|
54966
|
-
viewType?: "custom" | "create" | "
|
|
54966
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
54967
54967
|
} | {
|
|
54968
54968
|
ref: string;
|
|
54969
54969
|
path?: string | undefined;
|
|
54970
54970
|
from?: string | undefined;
|
|
54971
|
+
linkedEntity?: string | undefined;
|
|
54971
54972
|
traits?: (string | {
|
|
54972
54973
|
name: string;
|
|
54973
54974
|
scope: "instance" | "collection";
|
|
@@ -55120,7 +55121,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55120
55121
|
events?: Record<string, string> | undefined;
|
|
55121
55122
|
linkedEntity?: string | undefined;
|
|
55122
55123
|
})[] | undefined;
|
|
55123
|
-
linkedEntity?: string | undefined;
|
|
55124
55124
|
})[];
|
|
55125
55125
|
description?: string | undefined;
|
|
55126
55126
|
visual_prompt?: string | undefined;
|
|
@@ -55134,14 +55134,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55134
55134
|
primary?: string | undefined;
|
|
55135
55135
|
secondary?: string | undefined;
|
|
55136
55136
|
success?: string | undefined;
|
|
55137
|
-
error?: string | undefined;
|
|
55138
55137
|
warning?: string | undefined;
|
|
55139
55138
|
info?: string | undefined;
|
|
55139
|
+
error?: string | undefined;
|
|
55140
55140
|
muted?: string | undefined;
|
|
55141
55141
|
accent?: string | undefined;
|
|
55142
55142
|
surface?: string | undefined;
|
|
55143
55143
|
background?: string | undefined;
|
|
55144
55144
|
ring?: string | undefined;
|
|
55145
|
+
border?: string | undefined;
|
|
55145
55146
|
primaryHover?: string | undefined;
|
|
55146
55147
|
primaryForeground?: string | undefined;
|
|
55147
55148
|
secondaryHover?: string | undefined;
|
|
@@ -55150,7 +55151,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55150
55151
|
mutedForeground?: string | undefined;
|
|
55151
55152
|
foreground?: string | undefined;
|
|
55152
55153
|
cardForeground?: string | undefined;
|
|
55153
|
-
border?: string | undefined;
|
|
55154
55154
|
errorForeground?: string | undefined;
|
|
55155
55155
|
successForeground?: string | undefined;
|
|
55156
55156
|
warningForeground?: string | undefined;
|
|
@@ -55357,14 +55357,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55357
55357
|
primary?: string | undefined;
|
|
55358
55358
|
secondary?: string | undefined;
|
|
55359
55359
|
success?: string | undefined;
|
|
55360
|
-
error?: string | undefined;
|
|
55361
55360
|
warning?: string | undefined;
|
|
55362
55361
|
info?: string | undefined;
|
|
55362
|
+
error?: string | undefined;
|
|
55363
55363
|
muted?: string | undefined;
|
|
55364
55364
|
accent?: string | undefined;
|
|
55365
55365
|
surface?: string | undefined;
|
|
55366
55366
|
background?: string | undefined;
|
|
55367
55367
|
ring?: string | undefined;
|
|
55368
|
+
border?: string | undefined;
|
|
55368
55369
|
primaryHover?: string | undefined;
|
|
55369
55370
|
primaryForeground?: string | undefined;
|
|
55370
55371
|
secondaryHover?: string | undefined;
|
|
@@ -55373,7 +55374,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55373
55374
|
mutedForeground?: string | undefined;
|
|
55374
55375
|
foreground?: string | undefined;
|
|
55375
55376
|
cardForeground?: string | undefined;
|
|
55376
|
-
border?: string | undefined;
|
|
55377
55377
|
errorForeground?: string | undefined;
|
|
55378
55378
|
successForeground?: string | undefined;
|
|
55379
55379
|
warningForeground?: string | undefined;
|
|
@@ -55765,7 +55765,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55765
55765
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
55766
55766
|
customPatterns?: Record<string, {
|
|
55767
55767
|
type: "custom";
|
|
55768
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
55768
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
55769
55769
|
className: string;
|
|
55770
55770
|
slots?: string[] | undefined;
|
|
55771
55771
|
props?: string[] | undefined;
|
|
@@ -55973,11 +55973,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55973
55973
|
linkedEntity?: string | undefined;
|
|
55974
55974
|
}[] | undefined;
|
|
55975
55975
|
primaryEntity?: string | undefined;
|
|
55976
|
-
viewType?: "custom" | "create" | "
|
|
55976
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
55977
55977
|
} | {
|
|
55978
55978
|
ref: string;
|
|
55979
55979
|
path?: string | undefined;
|
|
55980
55980
|
from?: string | undefined;
|
|
55981
|
+
linkedEntity?: string | undefined;
|
|
55981
55982
|
traits?: (string | {
|
|
55982
55983
|
name: string;
|
|
55983
55984
|
scope: "instance" | "collection";
|
|
@@ -56130,7 +56131,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56130
56131
|
events?: Record<string, string> | undefined;
|
|
56131
56132
|
linkedEntity?: string | undefined;
|
|
56132
56133
|
})[] | undefined;
|
|
56133
|
-
linkedEntity?: string | undefined;
|
|
56134
56134
|
})[];
|
|
56135
56135
|
description?: string | undefined;
|
|
56136
56136
|
visual_prompt?: string | undefined;
|
|
@@ -56144,14 +56144,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56144
56144
|
primary?: string | undefined;
|
|
56145
56145
|
secondary?: string | undefined;
|
|
56146
56146
|
success?: string | undefined;
|
|
56147
|
-
error?: string | undefined;
|
|
56148
56147
|
warning?: string | undefined;
|
|
56149
56148
|
info?: string | undefined;
|
|
56149
|
+
error?: string | undefined;
|
|
56150
56150
|
muted?: string | undefined;
|
|
56151
56151
|
accent?: string | undefined;
|
|
56152
56152
|
surface?: string | undefined;
|
|
56153
56153
|
background?: string | undefined;
|
|
56154
56154
|
ring?: string | undefined;
|
|
56155
|
+
border?: string | undefined;
|
|
56155
56156
|
primaryHover?: string | undefined;
|
|
56156
56157
|
primaryForeground?: string | undefined;
|
|
56157
56158
|
secondaryHover?: string | undefined;
|
|
@@ -56160,7 +56161,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56160
56161
|
mutedForeground?: string | undefined;
|
|
56161
56162
|
foreground?: string | undefined;
|
|
56162
56163
|
cardForeground?: string | undefined;
|
|
56163
|
-
border?: string | undefined;
|
|
56164
56164
|
errorForeground?: string | undefined;
|
|
56165
56165
|
successForeground?: string | undefined;
|
|
56166
56166
|
warningForeground?: string | undefined;
|
|
@@ -56367,14 +56367,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56367
56367
|
primary?: string | undefined;
|
|
56368
56368
|
secondary?: string | undefined;
|
|
56369
56369
|
success?: string | undefined;
|
|
56370
|
-
error?: string | undefined;
|
|
56371
56370
|
warning?: string | undefined;
|
|
56372
56371
|
info?: string | undefined;
|
|
56372
|
+
error?: string | undefined;
|
|
56373
56373
|
muted?: string | undefined;
|
|
56374
56374
|
accent?: string | undefined;
|
|
56375
56375
|
surface?: string | undefined;
|
|
56376
56376
|
background?: string | undefined;
|
|
56377
56377
|
ring?: string | undefined;
|
|
56378
|
+
border?: string | undefined;
|
|
56378
56379
|
primaryHover?: string | undefined;
|
|
56379
56380
|
primaryForeground?: string | undefined;
|
|
56380
56381
|
secondaryHover?: string | undefined;
|
|
@@ -56383,7 +56384,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56383
56384
|
mutedForeground?: string | undefined;
|
|
56384
56385
|
foreground?: string | undefined;
|
|
56385
56386
|
cardForeground?: string | undefined;
|
|
56386
|
-
border?: string | undefined;
|
|
56387
56387
|
errorForeground?: string | undefined;
|
|
56388
56388
|
successForeground?: string | undefined;
|
|
56389
56389
|
warningForeground?: string | undefined;
|
|
@@ -56775,7 +56775,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56775
56775
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
56776
56776
|
customPatterns?: Record<string, {
|
|
56777
56777
|
type: "custom";
|
|
56778
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
56778
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
56779
56779
|
className: string;
|
|
56780
56780
|
slots?: string[] | undefined;
|
|
56781
56781
|
props?: string[] | undefined;
|
|
@@ -57048,11 +57048,12 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57048
57048
|
linkedEntity?: string | undefined;
|
|
57049
57049
|
}[] | undefined;
|
|
57050
57050
|
primaryEntity?: string | undefined;
|
|
57051
|
-
viewType?: "custom" | "create" | "
|
|
57051
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
57052
57052
|
} | {
|
|
57053
57053
|
ref: string;
|
|
57054
57054
|
path?: string | undefined;
|
|
57055
57055
|
from?: string | undefined;
|
|
57056
|
+
linkedEntity?: string | undefined;
|
|
57056
57057
|
traits?: (string | {
|
|
57057
57058
|
name: string;
|
|
57058
57059
|
scope: "instance" | "collection";
|
|
@@ -57205,7 +57206,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57205
57206
|
events?: Record<string, string> | undefined;
|
|
57206
57207
|
linkedEntity?: string | undefined;
|
|
57207
57208
|
})[] | undefined;
|
|
57208
|
-
linkedEntity?: string | undefined;
|
|
57209
57209
|
})[];
|
|
57210
57210
|
description?: string | undefined;
|
|
57211
57211
|
visual_prompt?: string | undefined;
|
|
@@ -57219,14 +57219,15 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57219
57219
|
primary?: string | undefined;
|
|
57220
57220
|
secondary?: string | undefined;
|
|
57221
57221
|
success?: string | undefined;
|
|
57222
|
-
error?: string | undefined;
|
|
57223
57222
|
warning?: string | undefined;
|
|
57224
57223
|
info?: string | undefined;
|
|
57224
|
+
error?: string | undefined;
|
|
57225
57225
|
muted?: string | undefined;
|
|
57226
57226
|
accent?: string | undefined;
|
|
57227
57227
|
surface?: string | undefined;
|
|
57228
57228
|
background?: string | undefined;
|
|
57229
57229
|
ring?: string | undefined;
|
|
57230
|
+
border?: string | undefined;
|
|
57230
57231
|
primaryHover?: string | undefined;
|
|
57231
57232
|
primaryForeground?: string | undefined;
|
|
57232
57233
|
secondaryHover?: string | undefined;
|
|
@@ -57235,7 +57236,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57235
57236
|
mutedForeground?: string | undefined;
|
|
57236
57237
|
foreground?: string | undefined;
|
|
57237
57238
|
cardForeground?: string | undefined;
|
|
57238
|
-
border?: string | undefined;
|
|
57239
57239
|
errorForeground?: string | undefined;
|
|
57240
57240
|
successForeground?: string | undefined;
|
|
57241
57241
|
warningForeground?: string | undefined;
|
|
@@ -57442,14 +57442,15 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57442
57442
|
primary?: string | undefined;
|
|
57443
57443
|
secondary?: string | undefined;
|
|
57444
57444
|
success?: string | undefined;
|
|
57445
|
-
error?: string | undefined;
|
|
57446
57445
|
warning?: string | undefined;
|
|
57447
57446
|
info?: string | undefined;
|
|
57447
|
+
error?: string | undefined;
|
|
57448
57448
|
muted?: string | undefined;
|
|
57449
57449
|
accent?: string | undefined;
|
|
57450
57450
|
surface?: string | undefined;
|
|
57451
57451
|
background?: string | undefined;
|
|
57452
57452
|
ring?: string | undefined;
|
|
57453
|
+
border?: string | undefined;
|
|
57453
57454
|
primaryHover?: string | undefined;
|
|
57454
57455
|
primaryForeground?: string | undefined;
|
|
57455
57456
|
secondaryHover?: string | undefined;
|
|
@@ -57458,7 +57459,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57458
57459
|
mutedForeground?: string | undefined;
|
|
57459
57460
|
foreground?: string | undefined;
|
|
57460
57461
|
cardForeground?: string | undefined;
|
|
57461
|
-
border?: string | undefined;
|
|
57462
57462
|
errorForeground?: string | undefined;
|
|
57463
57463
|
successForeground?: string | undefined;
|
|
57464
57464
|
warningForeground?: string | undefined;
|
|
@@ -57850,7 +57850,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57850
57850
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
57851
57851
|
customPatterns?: Record<string, {
|
|
57852
57852
|
type: "custom";
|
|
57853
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
57853
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
57854
57854
|
className: string;
|
|
57855
57855
|
slots?: string[] | undefined;
|
|
57856
57856
|
props?: string[] | undefined;
|
|
@@ -58058,11 +58058,12 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58058
58058
|
linkedEntity?: string | undefined;
|
|
58059
58059
|
}[] | undefined;
|
|
58060
58060
|
primaryEntity?: string | undefined;
|
|
58061
|
-
viewType?: "custom" | "create" | "
|
|
58061
|
+
viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
|
|
58062
58062
|
} | {
|
|
58063
58063
|
ref: string;
|
|
58064
58064
|
path?: string | undefined;
|
|
58065
58065
|
from?: string | undefined;
|
|
58066
|
+
linkedEntity?: string | undefined;
|
|
58066
58067
|
traits?: (string | {
|
|
58067
58068
|
name: string;
|
|
58068
58069
|
scope: "instance" | "collection";
|
|
@@ -58215,7 +58216,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58215
58216
|
events?: Record<string, string> | undefined;
|
|
58216
58217
|
linkedEntity?: string | undefined;
|
|
58217
58218
|
})[] | undefined;
|
|
58218
|
-
linkedEntity?: string | undefined;
|
|
58219
58219
|
})[];
|
|
58220
58220
|
description?: string | undefined;
|
|
58221
58221
|
visual_prompt?: string | undefined;
|
|
@@ -58229,14 +58229,15 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58229
58229
|
primary?: string | undefined;
|
|
58230
58230
|
secondary?: string | undefined;
|
|
58231
58231
|
success?: string | undefined;
|
|
58232
|
-
error?: string | undefined;
|
|
58233
58232
|
warning?: string | undefined;
|
|
58234
58233
|
info?: string | undefined;
|
|
58234
|
+
error?: string | undefined;
|
|
58235
58235
|
muted?: string | undefined;
|
|
58236
58236
|
accent?: string | undefined;
|
|
58237
58237
|
surface?: string | undefined;
|
|
58238
58238
|
background?: string | undefined;
|
|
58239
58239
|
ring?: string | undefined;
|
|
58240
|
+
border?: string | undefined;
|
|
58240
58241
|
primaryHover?: string | undefined;
|
|
58241
58242
|
primaryForeground?: string | undefined;
|
|
58242
58243
|
secondaryHover?: string | undefined;
|
|
@@ -58245,7 +58246,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58245
58246
|
mutedForeground?: string | undefined;
|
|
58246
58247
|
foreground?: string | undefined;
|
|
58247
58248
|
cardForeground?: string | undefined;
|
|
58248
|
-
border?: string | undefined;
|
|
58249
58249
|
errorForeground?: string | undefined;
|
|
58250
58250
|
successForeground?: string | undefined;
|
|
58251
58251
|
warningForeground?: string | undefined;
|
|
@@ -58452,14 +58452,15 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58452
58452
|
primary?: string | undefined;
|
|
58453
58453
|
secondary?: string | undefined;
|
|
58454
58454
|
success?: string | undefined;
|
|
58455
|
-
error?: string | undefined;
|
|
58456
58455
|
warning?: string | undefined;
|
|
58457
58456
|
info?: string | undefined;
|
|
58457
|
+
error?: string | undefined;
|
|
58458
58458
|
muted?: string | undefined;
|
|
58459
58459
|
accent?: string | undefined;
|
|
58460
58460
|
surface?: string | undefined;
|
|
58461
58461
|
background?: string | undefined;
|
|
58462
58462
|
ring?: string | undefined;
|
|
58463
|
+
border?: string | undefined;
|
|
58463
58464
|
primaryHover?: string | undefined;
|
|
58464
58465
|
primaryForeground?: string | undefined;
|
|
58465
58466
|
secondaryHover?: string | undefined;
|
|
@@ -58468,7 +58469,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58468
58469
|
mutedForeground?: string | undefined;
|
|
58469
58470
|
foreground?: string | undefined;
|
|
58470
58471
|
cardForeground?: string | undefined;
|
|
58471
|
-
border?: string | undefined;
|
|
58472
58472
|
errorForeground?: string | undefined;
|
|
58473
58473
|
successForeground?: string | undefined;
|
|
58474
58474
|
warningForeground?: string | undefined;
|
|
@@ -58860,7 +58860,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58860
58860
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
58861
58861
|
customPatterns?: Record<string, {
|
|
58862
58862
|
type: "custom";
|
|
58863
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "
|
|
58863
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "footer" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "aside" | "div" | "span" | "a" | "p" | "ul" | "ol" | "li" | "img";
|
|
58864
58864
|
className: string;
|
|
58865
58865
|
slots?: string[] | undefined;
|
|
58866
58866
|
props?: string[] | undefined;
|