magick-ui 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +663 -406
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +664 -402
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +297 -158
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +262 -25
- package/dist/schema.d.ts +262 -25
- package/dist/schema.js +296 -158
- package/dist/schema.js.map +1 -1
- package/dist/ui/index.cjs +369 -248
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.d.cts +27 -1
- package/dist/ui/index.d.ts +27 -1
- package/dist/ui/index.js +370 -244
- package/dist/ui/index.js.map +1 -1
- package/package.json +2 -1
- package/schema/component-schema.json +110 -0
package/dist/schema.d.ts
CHANGED
|
@@ -1851,6 +1851,125 @@ declare const tableSchema: z.ZodObject<{
|
|
|
1851
1851
|
};
|
|
1852
1852
|
}>;
|
|
1853
1853
|
|
|
1854
|
+
declare const googleMapSchema: z.ZodObject<{
|
|
1855
|
+
type: z.ZodLiteral<"google-map">;
|
|
1856
|
+
props: z.ZodObject<{
|
|
1857
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
1858
|
+
lat: z.ZodNumber;
|
|
1859
|
+
lng: z.ZodNumber;
|
|
1860
|
+
}, "strip", z.ZodTypeAny, {
|
|
1861
|
+
lat: number;
|
|
1862
|
+
lng: number;
|
|
1863
|
+
}, {
|
|
1864
|
+
lat: number;
|
|
1865
|
+
lng: number;
|
|
1866
|
+
}>>;
|
|
1867
|
+
zoom: z.ZodOptional<z.ZodNumber>;
|
|
1868
|
+
markers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1869
|
+
lat: z.ZodNumber;
|
|
1870
|
+
lng: z.ZodNumber;
|
|
1871
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1872
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1873
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1874
|
+
}, "strip", z.ZodTypeAny, {
|
|
1875
|
+
lat: number;
|
|
1876
|
+
lng: number;
|
|
1877
|
+
title?: string | undefined;
|
|
1878
|
+
color?: string | undefined;
|
|
1879
|
+
description?: string | undefined;
|
|
1880
|
+
}, {
|
|
1881
|
+
lat: number;
|
|
1882
|
+
lng: number;
|
|
1883
|
+
title?: string | undefined;
|
|
1884
|
+
color?: string | undefined;
|
|
1885
|
+
description?: string | undefined;
|
|
1886
|
+
}>, "many">>;
|
|
1887
|
+
height: z.ZodOptional<z.ZodString>;
|
|
1888
|
+
width: z.ZodOptional<z.ZodString>;
|
|
1889
|
+
gestureHandling: z.ZodOptional<z.ZodEnum<["cooperative", "greedy", "none", "auto"]>>;
|
|
1890
|
+
disableDefaultUI: z.ZodOptional<z.ZodBoolean>;
|
|
1891
|
+
showCurrentLocation: z.ZodOptional<z.ZodBoolean>;
|
|
1892
|
+
}, "strip", z.ZodTypeAny, {
|
|
1893
|
+
center?: {
|
|
1894
|
+
lat: number;
|
|
1895
|
+
lng: number;
|
|
1896
|
+
} | undefined;
|
|
1897
|
+
zoom?: number | undefined;
|
|
1898
|
+
markers?: {
|
|
1899
|
+
lat: number;
|
|
1900
|
+
lng: number;
|
|
1901
|
+
title?: string | undefined;
|
|
1902
|
+
color?: string | undefined;
|
|
1903
|
+
description?: string | undefined;
|
|
1904
|
+
}[] | undefined;
|
|
1905
|
+
height?: string | undefined;
|
|
1906
|
+
width?: string | undefined;
|
|
1907
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
1908
|
+
disableDefaultUI?: boolean | undefined;
|
|
1909
|
+
showCurrentLocation?: boolean | undefined;
|
|
1910
|
+
}, {
|
|
1911
|
+
center?: {
|
|
1912
|
+
lat: number;
|
|
1913
|
+
lng: number;
|
|
1914
|
+
} | undefined;
|
|
1915
|
+
zoom?: number | undefined;
|
|
1916
|
+
markers?: {
|
|
1917
|
+
lat: number;
|
|
1918
|
+
lng: number;
|
|
1919
|
+
title?: string | undefined;
|
|
1920
|
+
color?: string | undefined;
|
|
1921
|
+
description?: string | undefined;
|
|
1922
|
+
}[] | undefined;
|
|
1923
|
+
height?: string | undefined;
|
|
1924
|
+
width?: string | undefined;
|
|
1925
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
1926
|
+
disableDefaultUI?: boolean | undefined;
|
|
1927
|
+
showCurrentLocation?: boolean | undefined;
|
|
1928
|
+
}>;
|
|
1929
|
+
}, "strip", z.ZodTypeAny, {
|
|
1930
|
+
type: "google-map";
|
|
1931
|
+
props: {
|
|
1932
|
+
center?: {
|
|
1933
|
+
lat: number;
|
|
1934
|
+
lng: number;
|
|
1935
|
+
} | undefined;
|
|
1936
|
+
zoom?: number | undefined;
|
|
1937
|
+
markers?: {
|
|
1938
|
+
lat: number;
|
|
1939
|
+
lng: number;
|
|
1940
|
+
title?: string | undefined;
|
|
1941
|
+
color?: string | undefined;
|
|
1942
|
+
description?: string | undefined;
|
|
1943
|
+
}[] | undefined;
|
|
1944
|
+
height?: string | undefined;
|
|
1945
|
+
width?: string | undefined;
|
|
1946
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
1947
|
+
disableDefaultUI?: boolean | undefined;
|
|
1948
|
+
showCurrentLocation?: boolean | undefined;
|
|
1949
|
+
};
|
|
1950
|
+
}, {
|
|
1951
|
+
type: "google-map";
|
|
1952
|
+
props: {
|
|
1953
|
+
center?: {
|
|
1954
|
+
lat: number;
|
|
1955
|
+
lng: number;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
zoom?: number | undefined;
|
|
1958
|
+
markers?: {
|
|
1959
|
+
lat: number;
|
|
1960
|
+
lng: number;
|
|
1961
|
+
title?: string | undefined;
|
|
1962
|
+
color?: string | undefined;
|
|
1963
|
+
description?: string | undefined;
|
|
1964
|
+
}[] | undefined;
|
|
1965
|
+
height?: string | undefined;
|
|
1966
|
+
width?: string | undefined;
|
|
1967
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
1968
|
+
disableDefaultUI?: boolean | undefined;
|
|
1969
|
+
showCurrentLocation?: boolean | undefined;
|
|
1970
|
+
};
|
|
1971
|
+
}>;
|
|
1972
|
+
|
|
1854
1973
|
declare const calendarSchema: z.ZodObject<{
|
|
1855
1974
|
type: z.ZodLiteral<"calendar">;
|
|
1856
1975
|
props: z.ZodOptional<z.ZodObject<{
|
|
@@ -2008,12 +2127,12 @@ declare const iconContainerSchema: z.ZodObject<{
|
|
|
2008
2127
|
colorInFill: z.ZodOptional<z.ZodBoolean>;
|
|
2009
2128
|
disableTheme: z.ZodOptional<z.ZodBoolean>;
|
|
2010
2129
|
}, "strip", z.ZodTypeAny, {
|
|
2011
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
2130
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
2012
2131
|
icon?: string | undefined;
|
|
2013
2132
|
colorInFill?: boolean | undefined;
|
|
2014
2133
|
disableTheme?: boolean | undefined;
|
|
2015
2134
|
}, {
|
|
2016
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
2135
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
2017
2136
|
icon?: string | undefined;
|
|
2018
2137
|
colorInFill?: boolean | undefined;
|
|
2019
2138
|
disableTheme?: boolean | undefined;
|
|
@@ -2022,7 +2141,7 @@ declare const iconContainerSchema: z.ZodObject<{
|
|
|
2022
2141
|
}, "strip", z.ZodTypeAny, {
|
|
2023
2142
|
type: "icon-container";
|
|
2024
2143
|
props?: {
|
|
2025
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
2144
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
2026
2145
|
icon?: string | undefined;
|
|
2027
2146
|
colorInFill?: boolean | undefined;
|
|
2028
2147
|
disableTheme?: boolean | undefined;
|
|
@@ -2031,7 +2150,7 @@ declare const iconContainerSchema: z.ZodObject<{
|
|
|
2031
2150
|
}, {
|
|
2032
2151
|
type: "icon-container";
|
|
2033
2152
|
props?: {
|
|
2034
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
2153
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
2035
2154
|
icon?: string | undefined;
|
|
2036
2155
|
colorInFill?: boolean | undefined;
|
|
2037
2156
|
disableTheme?: boolean | undefined;
|
|
@@ -2269,24 +2388,24 @@ declare const dropdownMenuContentSchema: z.ZodObject<{
|
|
|
2269
2388
|
align: z.ZodOptional<z.ZodEnum<["start", "center", "end"]>>;
|
|
2270
2389
|
}, "strip", z.ZodTypeAny, {
|
|
2271
2390
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
2272
|
-
align?: "
|
|
2391
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2273
2392
|
}, {
|
|
2274
2393
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
2275
|
-
align?: "
|
|
2394
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2276
2395
|
}>>;
|
|
2277
2396
|
children: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
2278
2397
|
}, "strip", z.ZodTypeAny, {
|
|
2279
2398
|
type: "dropdown-menu-content";
|
|
2280
2399
|
props?: {
|
|
2281
2400
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
2282
|
-
align?: "
|
|
2401
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2283
2402
|
} | undefined;
|
|
2284
2403
|
children?: any[] | undefined;
|
|
2285
2404
|
}, {
|
|
2286
2405
|
type: "dropdown-menu-content";
|
|
2287
2406
|
props?: {
|
|
2288
2407
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
2289
|
-
align?: "
|
|
2408
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2290
2409
|
} | undefined;
|
|
2291
2410
|
children?: any[] | undefined;
|
|
2292
2411
|
}>;
|
|
@@ -2389,24 +2508,24 @@ declare const popoverContentSchema: z.ZodObject<{
|
|
|
2389
2508
|
align: z.ZodOptional<z.ZodEnum<["start", "center", "end"]>>;
|
|
2390
2509
|
sideOffset: z.ZodOptional<z.ZodNumber>;
|
|
2391
2510
|
}, "strip", z.ZodTypeAny, {
|
|
2392
|
-
align?: "
|
|
2511
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2393
2512
|
sideOffset?: number | undefined;
|
|
2394
2513
|
}, {
|
|
2395
|
-
align?: "
|
|
2514
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2396
2515
|
sideOffset?: number | undefined;
|
|
2397
2516
|
}>>;
|
|
2398
2517
|
children: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
2399
2518
|
}, "strip", z.ZodTypeAny, {
|
|
2400
2519
|
type: "popover-content";
|
|
2401
2520
|
props?: {
|
|
2402
|
-
align?: "
|
|
2521
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2403
2522
|
sideOffset?: number | undefined;
|
|
2404
2523
|
} | undefined;
|
|
2405
2524
|
children?: any[] | undefined;
|
|
2406
2525
|
}, {
|
|
2407
2526
|
type: "popover-content";
|
|
2408
2527
|
props?: {
|
|
2409
|
-
align?: "
|
|
2528
|
+
align?: "center" | "start" | "end" | undefined;
|
|
2410
2529
|
sideOffset?: number | undefined;
|
|
2411
2530
|
} | undefined;
|
|
2412
2531
|
children?: any[] | undefined;
|
|
@@ -4293,6 +4412,124 @@ declare const componentSchemas: {
|
|
|
4293
4412
|
tableData: Record<string, unknown>[];
|
|
4294
4413
|
};
|
|
4295
4414
|
}>;
|
|
4415
|
+
readonly "google-map": zod.ZodObject<{
|
|
4416
|
+
type: zod.ZodLiteral<"google-map">;
|
|
4417
|
+
props: zod.ZodObject<{
|
|
4418
|
+
center: zod.ZodOptional<zod.ZodObject<{
|
|
4419
|
+
lat: zod.ZodNumber;
|
|
4420
|
+
lng: zod.ZodNumber;
|
|
4421
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4422
|
+
lat: number;
|
|
4423
|
+
lng: number;
|
|
4424
|
+
}, {
|
|
4425
|
+
lat: number;
|
|
4426
|
+
lng: number;
|
|
4427
|
+
}>>;
|
|
4428
|
+
zoom: zod.ZodOptional<zod.ZodNumber>;
|
|
4429
|
+
markers: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
4430
|
+
lat: zod.ZodNumber;
|
|
4431
|
+
lng: zod.ZodNumber;
|
|
4432
|
+
title: zod.ZodOptional<zod.ZodString>;
|
|
4433
|
+
description: zod.ZodOptional<zod.ZodString>;
|
|
4434
|
+
color: zod.ZodOptional<zod.ZodString>;
|
|
4435
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4436
|
+
lat: number;
|
|
4437
|
+
lng: number;
|
|
4438
|
+
title?: string | undefined;
|
|
4439
|
+
color?: string | undefined;
|
|
4440
|
+
description?: string | undefined;
|
|
4441
|
+
}, {
|
|
4442
|
+
lat: number;
|
|
4443
|
+
lng: number;
|
|
4444
|
+
title?: string | undefined;
|
|
4445
|
+
color?: string | undefined;
|
|
4446
|
+
description?: string | undefined;
|
|
4447
|
+
}>, "many">>;
|
|
4448
|
+
height: zod.ZodOptional<zod.ZodString>;
|
|
4449
|
+
width: zod.ZodOptional<zod.ZodString>;
|
|
4450
|
+
gestureHandling: zod.ZodOptional<zod.ZodEnum<["cooperative", "greedy", "none", "auto"]>>;
|
|
4451
|
+
disableDefaultUI: zod.ZodOptional<zod.ZodBoolean>;
|
|
4452
|
+
showCurrentLocation: zod.ZodOptional<zod.ZodBoolean>;
|
|
4453
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4454
|
+
center?: {
|
|
4455
|
+
lat: number;
|
|
4456
|
+
lng: number;
|
|
4457
|
+
} | undefined;
|
|
4458
|
+
zoom?: number | undefined;
|
|
4459
|
+
markers?: {
|
|
4460
|
+
lat: number;
|
|
4461
|
+
lng: number;
|
|
4462
|
+
title?: string | undefined;
|
|
4463
|
+
color?: string | undefined;
|
|
4464
|
+
description?: string | undefined;
|
|
4465
|
+
}[] | undefined;
|
|
4466
|
+
height?: string | undefined;
|
|
4467
|
+
width?: string | undefined;
|
|
4468
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
4469
|
+
disableDefaultUI?: boolean | undefined;
|
|
4470
|
+
showCurrentLocation?: boolean | undefined;
|
|
4471
|
+
}, {
|
|
4472
|
+
center?: {
|
|
4473
|
+
lat: number;
|
|
4474
|
+
lng: number;
|
|
4475
|
+
} | undefined;
|
|
4476
|
+
zoom?: number | undefined;
|
|
4477
|
+
markers?: {
|
|
4478
|
+
lat: number;
|
|
4479
|
+
lng: number;
|
|
4480
|
+
title?: string | undefined;
|
|
4481
|
+
color?: string | undefined;
|
|
4482
|
+
description?: string | undefined;
|
|
4483
|
+
}[] | undefined;
|
|
4484
|
+
height?: string | undefined;
|
|
4485
|
+
width?: string | undefined;
|
|
4486
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
4487
|
+
disableDefaultUI?: boolean | undefined;
|
|
4488
|
+
showCurrentLocation?: boolean | undefined;
|
|
4489
|
+
}>;
|
|
4490
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4491
|
+
type: "google-map";
|
|
4492
|
+
props: {
|
|
4493
|
+
center?: {
|
|
4494
|
+
lat: number;
|
|
4495
|
+
lng: number;
|
|
4496
|
+
} | undefined;
|
|
4497
|
+
zoom?: number | undefined;
|
|
4498
|
+
markers?: {
|
|
4499
|
+
lat: number;
|
|
4500
|
+
lng: number;
|
|
4501
|
+
title?: string | undefined;
|
|
4502
|
+
color?: string | undefined;
|
|
4503
|
+
description?: string | undefined;
|
|
4504
|
+
}[] | undefined;
|
|
4505
|
+
height?: string | undefined;
|
|
4506
|
+
width?: string | undefined;
|
|
4507
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
4508
|
+
disableDefaultUI?: boolean | undefined;
|
|
4509
|
+
showCurrentLocation?: boolean | undefined;
|
|
4510
|
+
};
|
|
4511
|
+
}, {
|
|
4512
|
+
type: "google-map";
|
|
4513
|
+
props: {
|
|
4514
|
+
center?: {
|
|
4515
|
+
lat: number;
|
|
4516
|
+
lng: number;
|
|
4517
|
+
} | undefined;
|
|
4518
|
+
zoom?: number | undefined;
|
|
4519
|
+
markers?: {
|
|
4520
|
+
lat: number;
|
|
4521
|
+
lng: number;
|
|
4522
|
+
title?: string | undefined;
|
|
4523
|
+
color?: string | undefined;
|
|
4524
|
+
description?: string | undefined;
|
|
4525
|
+
}[] | undefined;
|
|
4526
|
+
height?: string | undefined;
|
|
4527
|
+
width?: string | undefined;
|
|
4528
|
+
gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
|
|
4529
|
+
disableDefaultUI?: boolean | undefined;
|
|
4530
|
+
showCurrentLocation?: boolean | undefined;
|
|
4531
|
+
};
|
|
4532
|
+
}>;
|
|
4296
4533
|
readonly calendar: zod.ZodObject<{
|
|
4297
4534
|
type: zod.ZodLiteral<"calendar">;
|
|
4298
4535
|
props: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -4446,12 +4683,12 @@ declare const componentSchemas: {
|
|
|
4446
4683
|
colorInFill: zod.ZodOptional<zod.ZodBoolean>;
|
|
4447
4684
|
disableTheme: zod.ZodOptional<zod.ZodBoolean>;
|
|
4448
4685
|
}, "strip", zod.ZodTypeAny, {
|
|
4449
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
4686
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
4450
4687
|
icon?: string | undefined;
|
|
4451
4688
|
colorInFill?: boolean | undefined;
|
|
4452
4689
|
disableTheme?: boolean | undefined;
|
|
4453
4690
|
}, {
|
|
4454
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
4691
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
4455
4692
|
icon?: string | undefined;
|
|
4456
4693
|
colorInFill?: boolean | undefined;
|
|
4457
4694
|
disableTheme?: boolean | undefined;
|
|
@@ -4460,7 +4697,7 @@ declare const componentSchemas: {
|
|
|
4460
4697
|
}, "strip", zod.ZodTypeAny, {
|
|
4461
4698
|
type: "icon-container";
|
|
4462
4699
|
props?: {
|
|
4463
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
4700
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
4464
4701
|
icon?: string | undefined;
|
|
4465
4702
|
colorInFill?: boolean | undefined;
|
|
4466
4703
|
disableTheme?: boolean | undefined;
|
|
@@ -4469,7 +4706,7 @@ declare const componentSchemas: {
|
|
|
4469
4706
|
}, {
|
|
4470
4707
|
type: "icon-container";
|
|
4471
4708
|
props?: {
|
|
4472
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "
|
|
4709
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
|
|
4473
4710
|
icon?: string | undefined;
|
|
4474
4711
|
colorInFill?: boolean | undefined;
|
|
4475
4712
|
disableTheme?: boolean | undefined;
|
|
@@ -4703,24 +4940,24 @@ declare const componentSchemas: {
|
|
|
4703
4940
|
align: zod.ZodOptional<zod.ZodEnum<["start", "center", "end"]>>;
|
|
4704
4941
|
}, "strip", zod.ZodTypeAny, {
|
|
4705
4942
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
4706
|
-
align?: "
|
|
4943
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4707
4944
|
}, {
|
|
4708
4945
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
4709
|
-
align?: "
|
|
4946
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4710
4947
|
}>>;
|
|
4711
4948
|
children: zod.ZodOptional<zod.ZodArray<zod.ZodType<any, zod.ZodTypeDef, any>, "many">>;
|
|
4712
4949
|
}, "strip", zod.ZodTypeAny, {
|
|
4713
4950
|
type: "dropdown-menu-content";
|
|
4714
4951
|
props?: {
|
|
4715
4952
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
4716
|
-
align?: "
|
|
4953
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4717
4954
|
} | undefined;
|
|
4718
4955
|
children?: any[] | undefined;
|
|
4719
4956
|
}, {
|
|
4720
4957
|
type: "dropdown-menu-content";
|
|
4721
4958
|
props?: {
|
|
4722
4959
|
side?: "top" | "bottom" | "left" | "right" | undefined;
|
|
4723
|
-
align?: "
|
|
4960
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4724
4961
|
} | undefined;
|
|
4725
4962
|
children?: any[] | undefined;
|
|
4726
4963
|
}>;
|
|
@@ -4822,24 +5059,24 @@ declare const componentSchemas: {
|
|
|
4822
5059
|
align: zod.ZodOptional<zod.ZodEnum<["start", "center", "end"]>>;
|
|
4823
5060
|
sideOffset: zod.ZodOptional<zod.ZodNumber>;
|
|
4824
5061
|
}, "strip", zod.ZodTypeAny, {
|
|
4825
|
-
align?: "
|
|
5062
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4826
5063
|
sideOffset?: number | undefined;
|
|
4827
5064
|
}, {
|
|
4828
|
-
align?: "
|
|
5065
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4829
5066
|
sideOffset?: number | undefined;
|
|
4830
5067
|
}>>;
|
|
4831
5068
|
children: zod.ZodOptional<zod.ZodArray<zod.ZodType<any, zod.ZodTypeDef, any>, "many">>;
|
|
4832
5069
|
}, "strip", zod.ZodTypeAny, {
|
|
4833
5070
|
type: "popover-content";
|
|
4834
5071
|
props?: {
|
|
4835
|
-
align?: "
|
|
5072
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4836
5073
|
sideOffset?: number | undefined;
|
|
4837
5074
|
} | undefined;
|
|
4838
5075
|
children?: any[] | undefined;
|
|
4839
5076
|
}, {
|
|
4840
5077
|
type: "popover-content";
|
|
4841
5078
|
props?: {
|
|
4842
|
-
align?: "
|
|
5079
|
+
align?: "center" | "start" | "end" | undefined;
|
|
4843
5080
|
sideOffset?: number | undefined;
|
|
4844
5081
|
} | undefined;
|
|
4845
5082
|
children?: any[] | undefined;
|
|
@@ -4928,4 +5165,4 @@ declare const componentSchemas: {
|
|
|
4928
5165
|
}>;
|
|
4929
5166
|
};
|
|
4930
5167
|
|
|
4931
|
-
export { type ComponentSchema, type UINode, accordionContentSchema, accordionItemSchema, accordionSchema, accordionTriggerSchema, alertSchema, avatarListItemSchema, avatarSchema, badgeSchema, breadcrumbSchema, buttonLinkSchema, buttonSchema, buttonWithTooltipSchema, calendarSchema, cardActionSchema, cardContentSchema, cardDescriptionSchema, cardFooterSchema, cardHeaderSchema, cardSchema, cardTitleSchema, carouselContentSchema, carouselItemSchema, carouselSchema, checkboxFieldSchema, chipSchema, comboboxFieldSchema, componentSchema, componentSchemas, contextMenuContentSchema, contextMenuItemSchema, contextMenuSchema, contextMenuSeparatorSchema, contextMenuTriggerSchema, dateFieldSchema, dropdownMenuContentSchema, dropdownMenuItemSchema, dropdownMenuLabelSchema, dropdownMenuSchema, dropdownMenuSeparatorSchema, dropdownMenuTriggerSchema, fileInputSchema, fileUploadFieldSchema, formSchema, getComponentSchemas, gradientContainerSchema, gridSchema, iconButtonSchema, iconContainerSchema, iconProfileSchema, inputFieldSchema, labelSchema, linkButtonSchema, mediaSchema, multiSelectFieldSchema, otpFieldSchema, passwordFieldSchema, popoverContentSchema, popoverSchema, popoverTriggerSchema, progressIndicatorSchema, radioFieldSchema, searchInputSchema, selectFieldSchema, selectHoverSchema, sheetContentSchema, sheetDescriptionSchema, sheetFooterSchema, sheetHeaderSchema, sheetSchema, sheetTitleSchema, sheetTriggerSchema, skeletonSchema, sliderSchema, switchFieldSchema, tableSchema, tabsSchema, tagSchema, textSchema, textareaFieldSchema, timeFieldSchema, titleSchema, toggleDropdownButtonSchema, toggleSchema, toolButtonSchema, toolToggleSchema, tooltipSchema, uiNodeSchema, wrapperCardSchema };
|
|
5168
|
+
export { type ComponentSchema, type UINode, accordionContentSchema, accordionItemSchema, accordionSchema, accordionTriggerSchema, alertSchema, avatarListItemSchema, avatarSchema, badgeSchema, breadcrumbSchema, buttonLinkSchema, buttonSchema, buttonWithTooltipSchema, calendarSchema, cardActionSchema, cardContentSchema, cardDescriptionSchema, cardFooterSchema, cardHeaderSchema, cardSchema, cardTitleSchema, carouselContentSchema, carouselItemSchema, carouselSchema, checkboxFieldSchema, chipSchema, comboboxFieldSchema, componentSchema, componentSchemas, contextMenuContentSchema, contextMenuItemSchema, contextMenuSchema, contextMenuSeparatorSchema, contextMenuTriggerSchema, dateFieldSchema, dropdownMenuContentSchema, dropdownMenuItemSchema, dropdownMenuLabelSchema, dropdownMenuSchema, dropdownMenuSeparatorSchema, dropdownMenuTriggerSchema, fileInputSchema, fileUploadFieldSchema, formSchema, getComponentSchemas, googleMapSchema, gradientContainerSchema, gridSchema, iconButtonSchema, iconContainerSchema, iconProfileSchema, inputFieldSchema, labelSchema, linkButtonSchema, mediaSchema, multiSelectFieldSchema, otpFieldSchema, passwordFieldSchema, popoverContentSchema, popoverSchema, popoverTriggerSchema, progressIndicatorSchema, radioFieldSchema, searchInputSchema, selectFieldSchema, selectHoverSchema, sheetContentSchema, sheetDescriptionSchema, sheetFooterSchema, sheetHeaderSchema, sheetSchema, sheetTitleSchema, sheetTriggerSchema, skeletonSchema, sliderSchema, switchFieldSchema, tableSchema, tabsSchema, tagSchema, textSchema, textareaFieldSchema, timeFieldSchema, titleSchema, toggleDropdownButtonSchema, toggleSchema, toolButtonSchema, toolToggleSchema, tooltipSchema, uiNodeSchema, wrapperCardSchema };
|