magick-ui 0.2.2 → 0.2.3

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/schema.d.cts CHANGED
@@ -1851,6 +1851,120 @@ 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
+ }, "strip", z.ZodTypeAny, {
1892
+ center?: {
1893
+ lat: number;
1894
+ lng: number;
1895
+ } | undefined;
1896
+ zoom?: number | undefined;
1897
+ markers?: {
1898
+ lat: number;
1899
+ lng: number;
1900
+ title?: string | undefined;
1901
+ color?: string | undefined;
1902
+ description?: string | undefined;
1903
+ }[] | undefined;
1904
+ height?: string | undefined;
1905
+ width?: string | undefined;
1906
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
1907
+ disableDefaultUI?: boolean | undefined;
1908
+ }, {
1909
+ center?: {
1910
+ lat: number;
1911
+ lng: number;
1912
+ } | undefined;
1913
+ zoom?: number | undefined;
1914
+ markers?: {
1915
+ lat: number;
1916
+ lng: number;
1917
+ title?: string | undefined;
1918
+ color?: string | undefined;
1919
+ description?: string | undefined;
1920
+ }[] | undefined;
1921
+ height?: string | undefined;
1922
+ width?: string | undefined;
1923
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
1924
+ disableDefaultUI?: boolean | undefined;
1925
+ }>;
1926
+ }, "strip", z.ZodTypeAny, {
1927
+ type: "google-map";
1928
+ props: {
1929
+ center?: {
1930
+ lat: number;
1931
+ lng: number;
1932
+ } | undefined;
1933
+ zoom?: number | undefined;
1934
+ markers?: {
1935
+ lat: number;
1936
+ lng: number;
1937
+ title?: string | undefined;
1938
+ color?: string | undefined;
1939
+ description?: string | undefined;
1940
+ }[] | undefined;
1941
+ height?: string | undefined;
1942
+ width?: string | undefined;
1943
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
1944
+ disableDefaultUI?: boolean | undefined;
1945
+ };
1946
+ }, {
1947
+ type: "google-map";
1948
+ props: {
1949
+ center?: {
1950
+ lat: number;
1951
+ lng: number;
1952
+ } | undefined;
1953
+ zoom?: number | undefined;
1954
+ markers?: {
1955
+ lat: number;
1956
+ lng: number;
1957
+ title?: string | undefined;
1958
+ color?: string | undefined;
1959
+ description?: string | undefined;
1960
+ }[] | undefined;
1961
+ height?: string | undefined;
1962
+ width?: string | undefined;
1963
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
1964
+ disableDefaultUI?: boolean | undefined;
1965
+ };
1966
+ }>;
1967
+
1854
1968
  declare const calendarSchema: z.ZodObject<{
1855
1969
  type: z.ZodLiteral<"calendar">;
1856
1970
  props: z.ZodOptional<z.ZodObject<{
@@ -2008,12 +2122,12 @@ declare const iconContainerSchema: z.ZodObject<{
2008
2122
  colorInFill: z.ZodOptional<z.ZodBoolean>;
2009
2123
  disableTheme: z.ZodOptional<z.ZodBoolean>;
2010
2124
  }, "strip", z.ZodTypeAny, {
2011
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
2125
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
2012
2126
  icon?: string | undefined;
2013
2127
  colorInFill?: boolean | undefined;
2014
2128
  disableTheme?: boolean | undefined;
2015
2129
  }, {
2016
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
2130
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
2017
2131
  icon?: string | undefined;
2018
2132
  colorInFill?: boolean | undefined;
2019
2133
  disableTheme?: boolean | undefined;
@@ -2022,7 +2136,7 @@ declare const iconContainerSchema: z.ZodObject<{
2022
2136
  }, "strip", z.ZodTypeAny, {
2023
2137
  type: "icon-container";
2024
2138
  props?: {
2025
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
2139
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
2026
2140
  icon?: string | undefined;
2027
2141
  colorInFill?: boolean | undefined;
2028
2142
  disableTheme?: boolean | undefined;
@@ -2031,7 +2145,7 @@ declare const iconContainerSchema: z.ZodObject<{
2031
2145
  }, {
2032
2146
  type: "icon-container";
2033
2147
  props?: {
2034
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
2148
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
2035
2149
  icon?: string | undefined;
2036
2150
  colorInFill?: boolean | undefined;
2037
2151
  disableTheme?: boolean | undefined;
@@ -2269,24 +2383,24 @@ declare const dropdownMenuContentSchema: z.ZodObject<{
2269
2383
  align: z.ZodOptional<z.ZodEnum<["start", "center", "end"]>>;
2270
2384
  }, "strip", z.ZodTypeAny, {
2271
2385
  side?: "top" | "bottom" | "left" | "right" | undefined;
2272
- align?: "start" | "center" | "end" | undefined;
2386
+ align?: "center" | "start" | "end" | undefined;
2273
2387
  }, {
2274
2388
  side?: "top" | "bottom" | "left" | "right" | undefined;
2275
- align?: "start" | "center" | "end" | undefined;
2389
+ align?: "center" | "start" | "end" | undefined;
2276
2390
  }>>;
2277
2391
  children: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
2278
2392
  }, "strip", z.ZodTypeAny, {
2279
2393
  type: "dropdown-menu-content";
2280
2394
  props?: {
2281
2395
  side?: "top" | "bottom" | "left" | "right" | undefined;
2282
- align?: "start" | "center" | "end" | undefined;
2396
+ align?: "center" | "start" | "end" | undefined;
2283
2397
  } | undefined;
2284
2398
  children?: any[] | undefined;
2285
2399
  }, {
2286
2400
  type: "dropdown-menu-content";
2287
2401
  props?: {
2288
2402
  side?: "top" | "bottom" | "left" | "right" | undefined;
2289
- align?: "start" | "center" | "end" | undefined;
2403
+ align?: "center" | "start" | "end" | undefined;
2290
2404
  } | undefined;
2291
2405
  children?: any[] | undefined;
2292
2406
  }>;
@@ -2389,24 +2503,24 @@ declare const popoverContentSchema: z.ZodObject<{
2389
2503
  align: z.ZodOptional<z.ZodEnum<["start", "center", "end"]>>;
2390
2504
  sideOffset: z.ZodOptional<z.ZodNumber>;
2391
2505
  }, "strip", z.ZodTypeAny, {
2392
- align?: "start" | "center" | "end" | undefined;
2506
+ align?: "center" | "start" | "end" | undefined;
2393
2507
  sideOffset?: number | undefined;
2394
2508
  }, {
2395
- align?: "start" | "center" | "end" | undefined;
2509
+ align?: "center" | "start" | "end" | undefined;
2396
2510
  sideOffset?: number | undefined;
2397
2511
  }>>;
2398
2512
  children: z.ZodOptional<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
2399
2513
  }, "strip", z.ZodTypeAny, {
2400
2514
  type: "popover-content";
2401
2515
  props?: {
2402
- align?: "start" | "center" | "end" | undefined;
2516
+ align?: "center" | "start" | "end" | undefined;
2403
2517
  sideOffset?: number | undefined;
2404
2518
  } | undefined;
2405
2519
  children?: any[] | undefined;
2406
2520
  }, {
2407
2521
  type: "popover-content";
2408
2522
  props?: {
2409
- align?: "start" | "center" | "end" | undefined;
2523
+ align?: "center" | "start" | "end" | undefined;
2410
2524
  sideOffset?: number | undefined;
2411
2525
  } | undefined;
2412
2526
  children?: any[] | undefined;
@@ -4293,6 +4407,119 @@ declare const componentSchemas: {
4293
4407
  tableData: Record<string, unknown>[];
4294
4408
  };
4295
4409
  }>;
4410
+ readonly "google-map": zod.ZodObject<{
4411
+ type: zod.ZodLiteral<"google-map">;
4412
+ props: zod.ZodObject<{
4413
+ center: zod.ZodOptional<zod.ZodObject<{
4414
+ lat: zod.ZodNumber;
4415
+ lng: zod.ZodNumber;
4416
+ }, "strip", zod.ZodTypeAny, {
4417
+ lat: number;
4418
+ lng: number;
4419
+ }, {
4420
+ lat: number;
4421
+ lng: number;
4422
+ }>>;
4423
+ zoom: zod.ZodOptional<zod.ZodNumber>;
4424
+ markers: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
4425
+ lat: zod.ZodNumber;
4426
+ lng: zod.ZodNumber;
4427
+ title: zod.ZodOptional<zod.ZodString>;
4428
+ description: zod.ZodOptional<zod.ZodString>;
4429
+ color: zod.ZodOptional<zod.ZodString>;
4430
+ }, "strip", zod.ZodTypeAny, {
4431
+ lat: number;
4432
+ lng: number;
4433
+ title?: string | undefined;
4434
+ color?: string | undefined;
4435
+ description?: string | undefined;
4436
+ }, {
4437
+ lat: number;
4438
+ lng: number;
4439
+ title?: string | undefined;
4440
+ color?: string | undefined;
4441
+ description?: string | undefined;
4442
+ }>, "many">>;
4443
+ height: zod.ZodOptional<zod.ZodString>;
4444
+ width: zod.ZodOptional<zod.ZodString>;
4445
+ gestureHandling: zod.ZodOptional<zod.ZodEnum<["cooperative", "greedy", "none", "auto"]>>;
4446
+ disableDefaultUI: zod.ZodOptional<zod.ZodBoolean>;
4447
+ }, "strip", zod.ZodTypeAny, {
4448
+ center?: {
4449
+ lat: number;
4450
+ lng: number;
4451
+ } | undefined;
4452
+ zoom?: number | undefined;
4453
+ markers?: {
4454
+ lat: number;
4455
+ lng: number;
4456
+ title?: string | undefined;
4457
+ color?: string | undefined;
4458
+ description?: string | undefined;
4459
+ }[] | undefined;
4460
+ height?: string | undefined;
4461
+ width?: string | undefined;
4462
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
4463
+ disableDefaultUI?: boolean | undefined;
4464
+ }, {
4465
+ center?: {
4466
+ lat: number;
4467
+ lng: number;
4468
+ } | undefined;
4469
+ zoom?: number | undefined;
4470
+ markers?: {
4471
+ lat: number;
4472
+ lng: number;
4473
+ title?: string | undefined;
4474
+ color?: string | undefined;
4475
+ description?: string | undefined;
4476
+ }[] | undefined;
4477
+ height?: string | undefined;
4478
+ width?: string | undefined;
4479
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
4480
+ disableDefaultUI?: boolean | undefined;
4481
+ }>;
4482
+ }, "strip", zod.ZodTypeAny, {
4483
+ type: "google-map";
4484
+ props: {
4485
+ center?: {
4486
+ lat: number;
4487
+ lng: number;
4488
+ } | undefined;
4489
+ zoom?: number | undefined;
4490
+ markers?: {
4491
+ lat: number;
4492
+ lng: number;
4493
+ title?: string | undefined;
4494
+ color?: string | undefined;
4495
+ description?: string | undefined;
4496
+ }[] | undefined;
4497
+ height?: string | undefined;
4498
+ width?: string | undefined;
4499
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
4500
+ disableDefaultUI?: boolean | undefined;
4501
+ };
4502
+ }, {
4503
+ type: "google-map";
4504
+ props: {
4505
+ center?: {
4506
+ lat: number;
4507
+ lng: number;
4508
+ } | undefined;
4509
+ zoom?: number | undefined;
4510
+ markers?: {
4511
+ lat: number;
4512
+ lng: number;
4513
+ title?: string | undefined;
4514
+ color?: string | undefined;
4515
+ description?: string | undefined;
4516
+ }[] | undefined;
4517
+ height?: string | undefined;
4518
+ width?: string | undefined;
4519
+ gestureHandling?: "none" | "cooperative" | "greedy" | "auto" | undefined;
4520
+ disableDefaultUI?: boolean | undefined;
4521
+ };
4522
+ }>;
4296
4523
  readonly calendar: zod.ZodObject<{
4297
4524
  type: zod.ZodLiteral<"calendar">;
4298
4525
  props: zod.ZodOptional<zod.ZodObject<{
@@ -4446,12 +4673,12 @@ declare const componentSchemas: {
4446
4673
  colorInFill: zod.ZodOptional<zod.ZodBoolean>;
4447
4674
  disableTheme: zod.ZodOptional<zod.ZodBoolean>;
4448
4675
  }, "strip", zod.ZodTypeAny, {
4449
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
4676
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
4450
4677
  icon?: string | undefined;
4451
4678
  colorInFill?: boolean | undefined;
4452
4679
  disableTheme?: boolean | undefined;
4453
4680
  }, {
4454
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
4681
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
4455
4682
  icon?: string | undefined;
4456
4683
  colorInFill?: boolean | undefined;
4457
4684
  disableTheme?: boolean | undefined;
@@ -4460,7 +4687,7 @@ declare const componentSchemas: {
4460
4687
  }, "strip", zod.ZodTypeAny, {
4461
4688
  type: "icon-container";
4462
4689
  props?: {
4463
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
4690
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
4464
4691
  icon?: string | undefined;
4465
4692
  colorInFill?: boolean | undefined;
4466
4693
  disableTheme?: boolean | undefined;
@@ -4469,7 +4696,7 @@ declare const componentSchemas: {
4469
4696
  }, {
4470
4697
  type: "icon-container";
4471
4698
  props?: {
4472
- size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "auto" | undefined;
4699
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "auto" | "6xl" | undefined;
4473
4700
  icon?: string | undefined;
4474
4701
  colorInFill?: boolean | undefined;
4475
4702
  disableTheme?: boolean | undefined;
@@ -4703,24 +4930,24 @@ declare const componentSchemas: {
4703
4930
  align: zod.ZodOptional<zod.ZodEnum<["start", "center", "end"]>>;
4704
4931
  }, "strip", zod.ZodTypeAny, {
4705
4932
  side?: "top" | "bottom" | "left" | "right" | undefined;
4706
- align?: "start" | "center" | "end" | undefined;
4933
+ align?: "center" | "start" | "end" | undefined;
4707
4934
  }, {
4708
4935
  side?: "top" | "bottom" | "left" | "right" | undefined;
4709
- align?: "start" | "center" | "end" | undefined;
4936
+ align?: "center" | "start" | "end" | undefined;
4710
4937
  }>>;
4711
4938
  children: zod.ZodOptional<zod.ZodArray<zod.ZodType<any, zod.ZodTypeDef, any>, "many">>;
4712
4939
  }, "strip", zod.ZodTypeAny, {
4713
4940
  type: "dropdown-menu-content";
4714
4941
  props?: {
4715
4942
  side?: "top" | "bottom" | "left" | "right" | undefined;
4716
- align?: "start" | "center" | "end" | undefined;
4943
+ align?: "center" | "start" | "end" | undefined;
4717
4944
  } | undefined;
4718
4945
  children?: any[] | undefined;
4719
4946
  }, {
4720
4947
  type: "dropdown-menu-content";
4721
4948
  props?: {
4722
4949
  side?: "top" | "bottom" | "left" | "right" | undefined;
4723
- align?: "start" | "center" | "end" | undefined;
4950
+ align?: "center" | "start" | "end" | undefined;
4724
4951
  } | undefined;
4725
4952
  children?: any[] | undefined;
4726
4953
  }>;
@@ -4822,24 +5049,24 @@ declare const componentSchemas: {
4822
5049
  align: zod.ZodOptional<zod.ZodEnum<["start", "center", "end"]>>;
4823
5050
  sideOffset: zod.ZodOptional<zod.ZodNumber>;
4824
5051
  }, "strip", zod.ZodTypeAny, {
4825
- align?: "start" | "center" | "end" | undefined;
5052
+ align?: "center" | "start" | "end" | undefined;
4826
5053
  sideOffset?: number | undefined;
4827
5054
  }, {
4828
- align?: "start" | "center" | "end" | undefined;
5055
+ align?: "center" | "start" | "end" | undefined;
4829
5056
  sideOffset?: number | undefined;
4830
5057
  }>>;
4831
5058
  children: zod.ZodOptional<zod.ZodArray<zod.ZodType<any, zod.ZodTypeDef, any>, "many">>;
4832
5059
  }, "strip", zod.ZodTypeAny, {
4833
5060
  type: "popover-content";
4834
5061
  props?: {
4835
- align?: "start" | "center" | "end" | undefined;
5062
+ align?: "center" | "start" | "end" | undefined;
4836
5063
  sideOffset?: number | undefined;
4837
5064
  } | undefined;
4838
5065
  children?: any[] | undefined;
4839
5066
  }, {
4840
5067
  type: "popover-content";
4841
5068
  props?: {
4842
- align?: "start" | "center" | "end" | undefined;
5069
+ align?: "center" | "start" | "end" | undefined;
4843
5070
  sideOffset?: number | undefined;
4844
5071
  } | undefined;
4845
5072
  children?: any[] | undefined;
@@ -4928,4 +5155,4 @@ declare const componentSchemas: {
4928
5155
  }>;
4929
5156
  };
4930
5157
 
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 };
5158
+ 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 };