@idealyst/mcp-server 1.2.132 → 1.2.134

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.
@@ -24183,7 +24183,7 @@ import { fileURLToPath } from "url";
24183
24183
  // src/generated/types.json
24184
24184
  var types_default = {
24185
24185
  version: "1.0.93",
24186
- extractedAt: "2026-03-24T21:22:27.272Z",
24186
+ extractedAt: "2026-03-26T21:04:11.154Z",
24187
24187
  components: {
24188
24188
  Accordion: {
24189
24189
  name: "Accordion",
@@ -24327,7 +24327,7 @@ var types_default = {
24327
24327
  }
24328
24328
  },
24329
24329
  category: "data",
24330
- filePath: "packages/components/src/Accordion",
24330
+ filePath: "../components/src/Accordion",
24331
24331
  sampleProps: {
24332
24332
  props: {
24333
24333
  items: [
@@ -24456,7 +24456,7 @@ var types_default = {
24456
24456
  }
24457
24457
  },
24458
24458
  category: "display",
24459
- filePath: "packages/components/src/ActivityIndicator"
24459
+ filePath: "../components/src/ActivityIndicator"
24460
24460
  }
24461
24461
  },
24462
24462
  Alert: {
@@ -24641,7 +24641,7 @@ var types_default = {
24641
24641
  }
24642
24642
  },
24643
24643
  category: "display",
24644
- filePath: "packages/components/src/Alert",
24644
+ filePath: "../components/src/Alert",
24645
24645
  sampleProps: {
24646
24646
  props: {
24647
24647
  title: "Alert Title",
@@ -24768,7 +24768,7 @@ var types_default = {
24768
24768
  }
24769
24769
  },
24770
24770
  category: "display",
24771
- filePath: "packages/components/src/Avatar",
24771
+ filePath: "../components/src/Avatar",
24772
24772
  sampleProps: {
24773
24773
  props: {
24774
24774
  fallback: "AB"
@@ -24904,7 +24904,7 @@ var types_default = {
24904
24904
  }
24905
24905
  },
24906
24906
  category: "display",
24907
- filePath: "packages/components/src/Badge",
24907
+ filePath: "../components/src/Badge",
24908
24908
  sampleProps: {
24909
24909
  children: "'3'"
24910
24910
  }
@@ -25068,7 +25068,7 @@ var types_default = {
25068
25068
  }
25069
25069
  },
25070
25070
  category: "navigation",
25071
- filePath: "packages/components/src/Breadcrumb",
25071
+ filePath: "../components/src/Breadcrumb",
25072
25072
  sampleProps: {
25073
25073
  props: {
25074
25074
  items: [
@@ -25098,13 +25098,13 @@ var types_default = {
25098
25098
  },
25099
25099
  {
25100
25100
  name: "onPress",
25101
- type: "(() => void) | undefined",
25101
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
25102
25102
  required: false,
25103
25103
  description: "Called when the button is pressed"
25104
25104
  },
25105
25105
  {
25106
25106
  name: "onClick",
25107
- type: "(() => void) | undefined",
25107
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
25108
25108
  required: false,
25109
25109
  description: ""
25110
25110
  },
@@ -25169,7 +25169,7 @@ var types_default = {
25169
25169
  description: "Test ID for testing"
25170
25170
  }
25171
25171
  ],
25172
- typeDefinition: "export interface ButtonProps extends BaseProps, InteractiveAccessibilityProps {\n /**\n * The content to display inside the button\n */\n children?: ReactNode;\n\n /**\n * Called when the button is pressed\n */\n onPress?: () => void;\n\n /**\n * @deprecated Use `onPress` instead. This prop exists for web compatibility only.\n * Using onClick will log a deprecation warning in development.\n */\n onClick?: () => void;\n\n /**\n * Whether the button is disabled\n */\n disabled?: boolean;\n\n /**\n * The visual style type of the button\n */\n type?: ButtonType;\n\n /**\n * The intent/color scheme of the button\n */\n intent?: ButtonIntentVariant;\n\n /**\n * The size of the button\n */\n size?: ButtonSizeVariant;\n\n /**\n * Apply a gradient background enhancement.\n * Only applies to 'contained' button type.\n * Options: 'color-to-dark', 'color-to-light', 'light-to-color', 'dark-to-color'\n */\n gradient?: ButtonGradient;\n\n /**\n * Icon to display on the left side. Can be an icon name or custom component (ReactNode)\n */\n leftIcon?: IconName | ReactNode;\n\n /**\n * Icon to display on the right side. Can be an icon name or custom component (ReactNode)\n */\n rightIcon?: IconName | ReactNode;\n\n /**\n * Whether the button is in a loading state.\n * When true, shows a spinner and disables interaction.\n * The spinner color matches the button text color.\n */\n loading?: boolean;\n\n /**\n * Additional styles (platform-specific)\n */\n style?: StyleProp<ViewStyle>;\n\n /**\n * Test ID for testing\n */\n testID?: string;\n}",
25172
+ typeDefinition: "export interface ButtonProps extends BaseProps, InteractiveAccessibilityProps {\n /**\n * The content to display inside the button\n */\n children?: ReactNode;\n\n /**\n * Called when the button is pressed\n */\n onPress?: (event: PressEvent) => void;\n\n /**\n * @deprecated Use `onPress` instead. This prop exists for web compatibility only.\n * Using onClick will log a deprecation warning in development.\n */\n onClick?: (event: PressEvent) => void;\n\n /**\n * Whether the button is disabled\n */\n disabled?: boolean;\n\n /**\n * The visual style type of the button\n */\n type?: ButtonType;\n\n /**\n * The intent/color scheme of the button\n */\n intent?: ButtonIntentVariant;\n\n /**\n * The size of the button\n */\n size?: ButtonSizeVariant;\n\n /**\n * Apply a gradient background enhancement.\n * Only applies to 'contained' button type.\n * Options: 'color-to-dark', 'color-to-light', 'light-to-color', 'dark-to-color'\n */\n gradient?: ButtonGradient;\n\n /**\n * Icon to display on the left side. Can be an icon name or custom component (ReactNode)\n */\n leftIcon?: IconName | ReactNode;\n\n /**\n * Icon to display on the right side. Can be an icon name or custom component (ReactNode)\n */\n rightIcon?: IconName | ReactNode;\n\n /**\n * Whether the button is in a loading state.\n * When true, shows a spinner and disables interaction.\n * The spinner color matches the button text color.\n */\n loading?: boolean;\n\n /**\n * Additional styles (platform-specific)\n */\n style?: StyleProp<ViewStyle>;\n\n /**\n * Test ID for testing\n */\n testID?: string;\n}",
25173
25173
  relatedTypes: {
25174
25174
  ButtonType: "export type ButtonType = 'contained' | 'outlined' | 'text';",
25175
25175
  ButtonIntentVariant: "export type ButtonIntentVariant = Intent;",
@@ -25182,13 +25182,13 @@ var types_default = {
25182
25182
  props: {
25183
25183
  onPress: {
25184
25184
  name: "onPress",
25185
- type: "(() => void) | undefined",
25185
+ type: "((event: PressEvent) => void) | undefined",
25186
25186
  description: "Called when the button is pressed",
25187
25187
  required: false
25188
25188
  },
25189
25189
  onClick: {
25190
25190
  name: "onClick",
25191
- type: "(() => void) | undefined",
25191
+ type: "((event: PressEvent) => void) | undefined",
25192
25192
  required: false
25193
25193
  },
25194
25194
  disabled: {
@@ -25272,7 +25272,7 @@ var types_default = {
25272
25272
  }
25273
25273
  },
25274
25274
  category: "form",
25275
- filePath: "packages/components/src/Button",
25275
+ filePath: "../components/src/Button",
25276
25276
  sampleProps: {
25277
25277
  children: "'Click Me'"
25278
25278
  }
@@ -25474,7 +25474,7 @@ var types_default = {
25474
25474
  }
25475
25475
  },
25476
25476
  category: "display",
25477
- filePath: "packages/components/src/Card",
25477
+ filePath: "../components/src/Card",
25478
25478
  sampleProps: {
25479
25479
  children: "'Card content goes here'"
25480
25480
  }
@@ -25691,7 +25691,7 @@ var types_default = {
25691
25691
  }
25692
25692
  },
25693
25693
  category: "form",
25694
- filePath: "packages/components/src/Checkbox",
25694
+ filePath: "../components/src/Checkbox",
25695
25695
  sampleProps: {
25696
25696
  props: {
25697
25697
  label: "Check me"
@@ -25924,7 +25924,7 @@ var types_default = {
25924
25924
  }
25925
25925
  },
25926
25926
  category: "display",
25927
- filePath: "packages/components/src/Chip",
25927
+ filePath: "../components/src/Chip",
25928
25928
  sampleProps: {
25929
25929
  props: {
25930
25930
  label: "Chip Label"
@@ -26205,7 +26205,7 @@ var types_default = {
26205
26205
  }
26206
26206
  },
26207
26207
  category: "overlay",
26208
- filePath: "packages/components/src/Dialog",
26208
+ filePath: "../components/src/Dialog",
26209
26209
  sampleProps: {
26210
26210
  props: {
26211
26211
  title: "Dialog Title"
@@ -26355,7 +26355,7 @@ var types_default = {
26355
26355
  }
26356
26356
  },
26357
26357
  category: "layout",
26358
- filePath: "packages/components/src/Divider"
26358
+ filePath: "../components/src/Divider"
26359
26359
  }
26360
26360
  },
26361
26361
  Form: {
@@ -26413,7 +26413,7 @@ var types_default = {
26413
26413
  }
26414
26414
  },
26415
26415
  category: "display",
26416
- filePath: "packages/components/src/Form"
26416
+ filePath: "../components/src/Form"
26417
26417
  }
26418
26418
  },
26419
26419
  Grid: {
@@ -26530,7 +26530,7 @@ var types_default = {
26530
26530
  }
26531
26531
  },
26532
26532
  category: "display",
26533
- filePath: "packages/components/src/Grid"
26533
+ filePath: "../components/src/Grid"
26534
26534
  }
26535
26535
  },
26536
26536
  IconButton: {
@@ -26545,13 +26545,13 @@ var types_default = {
26545
26545
  },
26546
26546
  {
26547
26547
  name: "onPress",
26548
- type: "(() => void) | undefined",
26548
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
26549
26549
  required: false,
26550
26550
  description: "Called when the button is pressed"
26551
26551
  },
26552
26552
  {
26553
26553
  name: "onClick",
26554
- type: "(() => void) | undefined",
26554
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
26555
26555
  required: false,
26556
26556
  description: ""
26557
26557
  },
@@ -26604,7 +26604,7 @@ var types_default = {
26604
26604
  description: "Test ID for testing"
26605
26605
  }
26606
26606
  ],
26607
- typeDefinition: "export interface IconButtonProps extends BaseProps, InteractiveAccessibilityProps {\n /**\n * The icon to display. Can be an icon name string or a custom ReactNode.\n */\n icon: IconName | ReactNode;\n\n /**\n * Called when the button is pressed\n */\n onPress?: () => void;\n\n /**\n * @deprecated Use `onPress` instead. This prop exists for web compatibility only.\n * Using onClick will log a deprecation warning in development.\n */\n onClick?: () => void;\n\n /**\n * Whether the button is disabled\n */\n disabled?: boolean;\n\n /**\n * The visual style type of the button\n */\n type?: IconButtonType;\n\n /**\n * The intent/color scheme of the button\n */\n intent?: IconButtonIntentVariant;\n\n /**\n * The size of the button\n */\n size?: IconButtonSizeVariant;\n\n /**\n * Apply a gradient background enhancement.\n * Only applies to 'contained' button type.\n */\n gradient?: IconButtonGradient;\n\n /**\n * Whether the button is in a loading state.\n * When true, shows a spinner and disables interaction.\n * The spinner color matches the icon color.\n */\n loading?: boolean;\n\n /**\n * Additional styles (platform-specific)\n */\n style?: StyleProp<ViewStyle>;\n\n /**\n * Test ID for testing\n */\n testID?: string;\n}",
26607
+ typeDefinition: "export interface IconButtonProps extends BaseProps, InteractiveAccessibilityProps {\n /**\n * The icon to display. Can be an icon name string or a custom ReactNode.\n */\n icon: IconName | ReactNode;\n\n /**\n * Called when the button is pressed\n */\n onPress?: (event: PressEvent) => void;\n\n /**\n * @deprecated Use `onPress` instead. This prop exists for web compatibility only.\n * Using onClick will log a deprecation warning in development.\n */\n onClick?: (event: PressEvent) => void;\n\n /**\n * Whether the button is disabled\n */\n disabled?: boolean;\n\n /**\n * The visual style type of the button\n */\n type?: IconButtonType;\n\n /**\n * The intent/color scheme of the button\n */\n intent?: IconButtonIntentVariant;\n\n /**\n * The size of the button\n */\n size?: IconButtonSizeVariant;\n\n /**\n * Apply a gradient background enhancement.\n * Only applies to 'contained' button type.\n */\n gradient?: IconButtonGradient;\n\n /**\n * Whether the button is in a loading state.\n * When true, shows a spinner and disables interaction.\n * The spinner color matches the icon color.\n */\n loading?: boolean;\n\n /**\n * Additional styles (platform-specific)\n */\n style?: StyleProp<ViewStyle>;\n\n /**\n * Test ID for testing\n */\n testID?: string;\n}",
26608
26608
  relatedTypes: {
26609
26609
  IconButtonType: "export type IconButtonType = 'contained' | 'outlined' | 'text';",
26610
26610
  IconButtonIntentVariant: "export type IconButtonIntentVariant = Intent;",
@@ -26627,13 +26627,13 @@ var types_default = {
26627
26627
  },
26628
26628
  onPress: {
26629
26629
  name: "onPress",
26630
- type: "(() => void) | undefined",
26630
+ type: "((event: PressEvent) => void) | undefined",
26631
26631
  description: "Called when the button is pressed",
26632
26632
  required: false
26633
26633
  },
26634
26634
  onClick: {
26635
26635
  name: "onClick",
26636
- type: "(() => void) | undefined",
26636
+ type: "((event: PressEvent) => void) | undefined",
26637
26637
  required: false
26638
26638
  },
26639
26639
  disabled: {
@@ -26697,7 +26697,7 @@ var types_default = {
26697
26697
  }
26698
26698
  },
26699
26699
  category: "display",
26700
- filePath: "packages/components/src/IconButton"
26700
+ filePath: "../components/src/IconButton"
26701
26701
  }
26702
26702
  },
26703
26703
  Image: {
@@ -26874,7 +26874,7 @@ var types_default = {
26874
26874
  }
26875
26875
  },
26876
26876
  category: "display",
26877
- filePath: "packages/components/src/Image",
26877
+ filePath: "../components/src/Image",
26878
26878
  sampleProps: {
26879
26879
  props: {
26880
26880
  source: {
@@ -27282,7 +27282,7 @@ var types_default = {
27282
27282
  }
27283
27283
  },
27284
27284
  category: "form",
27285
- filePath: "packages/components/src/Input",
27285
+ filePath: "../components/src/Input",
27286
27286
  sampleProps: {
27287
27287
  props: {
27288
27288
  placeholder: "Enter text..."
@@ -27390,7 +27390,7 @@ var types_default = {
27390
27390
  }
27391
27391
  },
27392
27392
  category: "navigation",
27393
- filePath: "packages/components/src/Link",
27393
+ filePath: "../components/src/Link",
27394
27394
  sampleProps: {
27395
27395
  props: {
27396
27396
  href: "#"
@@ -27534,7 +27534,7 @@ var types_default = {
27534
27534
  }
27535
27535
  },
27536
27536
  category: "navigation",
27537
- filePath: "packages/components/src/List",
27537
+ filePath: "../components/src/List",
27538
27538
  sampleProps: {
27539
27539
  children: "'List items go here'"
27540
27540
  }
@@ -27547,7 +27547,14 @@ var types_default = {
27547
27547
  {
27548
27548
  name: "children",
27549
27549
  type: "React.ReactNode",
27550
- required: true
27550
+ required: false,
27551
+ description: "Trigger element that opens the menu on press/click.\nEither `children` or `anchor` must be provided."
27552
+ },
27553
+ {
27554
+ name: "anchor",
27555
+ type: "React.RefObject<any> | undefined",
27556
+ required: false,
27557
+ description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close."
27551
27558
  },
27552
27559
  {
27553
27560
  name: "items",
@@ -27590,7 +27597,7 @@ var types_default = {
27590
27597
  required: false
27591
27598
  }
27592
27599
  ],
27593
- typeDefinition: "export interface MenuProps extends BaseProps, InteractiveAccessibilityProps {\n children: React.ReactNode;\n items: MenuItem[];\n open?: boolean;\n onOpenChange?: (open: boolean) => void;\n placement?: MenuPlacement;\n closeOnSelection?: boolean;\n size?: MenuSizeVariant;\n style?: StyleProp<ViewStyle>;\n testID?: string;\n}",
27600
+ typeDefinition: "export interface MenuProps extends BaseProps, InteractiveAccessibilityProps {\n /**\n * Trigger element that opens the menu on press/click.\n * Either `children` or `anchor` must be provided.\n */\n children?: React.ReactNode;\n\n /**\n * External anchor ref to position the menu relative to.\n * When provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.\n *\n * @example\n * ```tsx\n * const ref = useRef<IdealystElement>(null);\n * <Button ref={ref} onPress={() => setOpen(true)}>Actions</Button>\n * <Menu anchor={ref} open={open} onOpenChange={setOpen} items={items} />\n * ```\n */\n anchor?: RefObject<IdealystElement>;\n\n items: MenuItem[];\n open?: boolean;\n onOpenChange?: (open: boolean) => void;\n placement?: MenuPlacement;\n closeOnSelection?: boolean;\n size?: MenuSizeVariant;\n style?: StyleProp<ViewStyle>;\n testID?: string;\n}",
27594
27601
  relatedTypes: {
27595
27602
  MenuIntentVariant: "export type MenuIntentVariant = Intent;",
27596
27603
  MenuSizeVariant: "export type MenuSizeVariant = Size;",
@@ -27600,6 +27607,12 @@ var types_default = {
27600
27607
  registry: {
27601
27608
  name: "Menu",
27602
27609
  props: {
27610
+ anchor: {
27611
+ name: "anchor",
27612
+ type: "RefObject<any> | undefined",
27613
+ description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.",
27614
+ required: false
27615
+ },
27603
27616
  items: {
27604
27617
  name: "items",
27605
27618
  type: "MenuItem[]",
@@ -27656,7 +27669,7 @@ var types_default = {
27656
27669
  }
27657
27670
  },
27658
27671
  category: "navigation",
27659
- filePath: "packages/components/src/Menu",
27672
+ filePath: "../components/src/Menu",
27660
27673
  sampleProps: {
27661
27674
  props: {
27662
27675
  items: [
@@ -27847,7 +27860,7 @@ var types_default = {
27847
27860
  }
27848
27861
  },
27849
27862
  category: "overlay",
27850
- filePath: "packages/components/src/Popover",
27863
+ filePath: "../components/src/Popover",
27851
27864
  sampleProps: {
27852
27865
  props: {
27853
27866
  open: false
@@ -27868,19 +27881,19 @@ var types_default = {
27868
27881
  },
27869
27882
  {
27870
27883
  name: "onPress",
27871
- type: "(() => void) | undefined",
27884
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
27872
27885
  required: false,
27873
27886
  description: "Called when the press gesture is activated"
27874
27887
  },
27875
27888
  {
27876
27889
  name: "onPressIn",
27877
- type: "(() => void) | undefined",
27890
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
27878
27891
  required: false,
27879
27892
  description: "Called when the press gesture starts"
27880
27893
  },
27881
27894
  {
27882
27895
  name: "onPressOut",
27883
- type: "(() => void) | undefined",
27896
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
27884
27897
  required: false,
27885
27898
  description: "Called when the press gesture ends"
27886
27899
  },
@@ -27915,26 +27928,26 @@ var types_default = {
27915
27928
  description: "Accessibility role (web)"
27916
27929
  }
27917
27930
  ],
27918
- typeDefinition: "export interface PressableProps extends PressableSpacingStyleProps {\n /**\n * Content to render inside the pressable area\n */\n children?: ReactNode;\n\n /**\n * Called when the press gesture is activated\n */\n onPress?: () => void;\n\n /**\n * Called when the press gesture starts\n */\n onPressIn?: () => void;\n\n /**\n * Called when the press gesture ends\n */\n onPressOut?: () => void;\n\n /**\n * Whether the pressable is disabled\n */\n disabled?: boolean;\n\n /**\n * Additional styles to apply\n */\n style?: StyleProp<ViewStyle>;\n\n /**\n * Test ID for testing\n */\n testID?: string;\n\n /**\n * Accessibility label for screen readers\n */\n accessibilityLabel?: string;\n\n /**\n * Accessibility role (web)\n */\n accessibilityRole?: string;\n}",
27931
+ typeDefinition: "export interface PressableProps extends PressableSpacingStyleProps {\n /**\n * Content to render inside the pressable area\n */\n children?: ReactNode;\n\n /**\n * Called when the press gesture is activated\n */\n onPress?: (event: PressEvent) => void;\n\n /**\n * Called when the press gesture starts\n */\n onPressIn?: (event: PressEvent) => void;\n\n /**\n * Called when the press gesture ends\n */\n onPressOut?: (event: PressEvent) => void;\n\n /**\n * Whether the pressable is disabled\n */\n disabled?: boolean;\n\n /**\n * Additional styles to apply\n */\n style?: StyleProp<ViewStyle>;\n\n /**\n * Test ID for testing\n */\n testID?: string;\n\n /**\n * Accessibility label for screen readers\n */\n accessibilityLabel?: string;\n\n /**\n * Accessibility role (web)\n */\n accessibilityRole?: string;\n}",
27919
27932
  relatedTypes: {},
27920
27933
  registry: {
27921
27934
  name: "Pressable",
27922
27935
  props: {
27923
27936
  onPress: {
27924
27937
  name: "onPress",
27925
- type: "(() => void) | undefined",
27938
+ type: "((event: PressEvent) => void) | undefined",
27926
27939
  description: "Called when the press gesture is activated",
27927
27940
  required: false
27928
27941
  },
27929
27942
  onPressIn: {
27930
27943
  name: "onPressIn",
27931
- type: "(() => void) | undefined",
27944
+ type: "((event: PressEvent) => void) | undefined",
27932
27945
  description: "Called when the press gesture starts",
27933
27946
  required: false
27934
27947
  },
27935
27948
  onPressOut: {
27936
27949
  name: "onPressOut",
27937
- type: "(() => void) | undefined",
27950
+ type: "((event: PressEvent) => void) | undefined",
27938
27951
  description: "Called when the press gesture ends",
27939
27952
  required: false
27940
27953
  },
@@ -27974,7 +27987,7 @@ var types_default = {
27974
27987
  }
27975
27988
  },
27976
27989
  category: "display",
27977
- filePath: "packages/components/src/Pressable",
27990
+ filePath: "../components/src/Pressable",
27978
27991
  sampleProps: {
27979
27992
  children: "'Press me'"
27980
27993
  }
@@ -28121,7 +28134,7 @@ var types_default = {
28121
28134
  }
28122
28135
  },
28123
28136
  category: "data",
28124
- filePath: "packages/components/src/Progress",
28137
+ filePath: "../components/src/Progress",
28125
28138
  sampleProps: {
28126
28139
  props: {
28127
28140
  value: 65
@@ -28256,7 +28269,7 @@ var types_default = {
28256
28269
  }
28257
28270
  },
28258
28271
  category: "form",
28259
- filePath: "packages/components/src/RadioButton",
28272
+ filePath: "../components/src/RadioButton",
28260
28273
  sampleProps: {
28261
28274
  props: {
28262
28275
  value: "option1",
@@ -28368,7 +28381,7 @@ var types_default = {
28368
28381
  }
28369
28382
  },
28370
28383
  category: "display",
28371
- filePath: "packages/components/src/SVGImage",
28384
+ filePath: "../components/src/SVGImage",
28372
28385
  sampleProps: {
28373
28386
  props: {
28374
28387
  source: '<svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="currentColor"/></svg>',
@@ -28619,7 +28632,7 @@ var types_default = {
28619
28632
  }
28620
28633
  },
28621
28634
  category: "layout",
28622
- filePath: "packages/components/src/Screen",
28635
+ filePath: "../components/src/Screen",
28623
28636
  sampleProps: {
28624
28637
  children: "'Screen content'"
28625
28638
  }
@@ -28997,7 +29010,7 @@ var types_default = {
28997
29010
  }
28998
29011
  },
28999
29012
  category: "display",
29000
- filePath: "packages/components/src/ScrollView",
29013
+ filePath: "../components/src/ScrollView",
29001
29014
  sampleProps: {
29002
29015
  children: "'Scrollable content'"
29003
29016
  }
@@ -29257,7 +29270,7 @@ var types_default = {
29257
29270
  }
29258
29271
  },
29259
29272
  category: "form",
29260
- filePath: "packages/components/src/Select",
29273
+ filePath: "../components/src/Select",
29261
29274
  sampleProps: {
29262
29275
  props: {
29263
29276
  options: [
@@ -29393,7 +29406,7 @@ var types_default = {
29393
29406
  }
29394
29407
  },
29395
29408
  category: "display",
29396
- filePath: "packages/components/src/Skeleton",
29409
+ filePath: "../components/src/Skeleton",
29397
29410
  sampleProps: {
29398
29411
  props: {
29399
29412
  width: 200,
@@ -29651,7 +29664,7 @@ var types_default = {
29651
29664
  }
29652
29665
  },
29653
29666
  category: "form",
29654
- filePath: "packages/components/src/Slider",
29667
+ filePath: "../components/src/Slider",
29655
29668
  sampleProps: {
29656
29669
  props: {},
29657
29670
  state: {
@@ -29867,7 +29880,7 @@ var types_default = {
29867
29880
  }
29868
29881
  },
29869
29882
  category: "form",
29870
- filePath: "packages/components/src/Switch",
29883
+ filePath: "../components/src/Switch",
29871
29884
  sampleProps: {
29872
29885
  props: {},
29873
29886
  state: {
@@ -30077,7 +30090,7 @@ var types_default = {
30077
30090
  }
30078
30091
  },
30079
30092
  category: "navigation",
30080
- filePath: "packages/components/src/TabBar",
30093
+ filePath: "../components/src/TabBar",
30081
30094
  sampleProps: {
30082
30095
  props: {
30083
30096
  items: [
@@ -30280,7 +30293,7 @@ var types_default = {
30280
30293
  }
30281
30294
  },
30282
30295
  category: "data",
30283
- filePath: "packages/components/src/Table",
30296
+ filePath: "../components/src/Table",
30284
30297
  sampleProps: {
30285
30298
  props: {
30286
30299
  columns: [
@@ -30478,7 +30491,7 @@ var types_default = {
30478
30491
  }
30479
30492
  },
30480
30493
  category: "display",
30481
- filePath: "packages/components/src/Text",
30494
+ filePath: "../components/src/Text",
30482
30495
  sampleProps: {
30483
30496
  children: "'Sample text content'"
30484
30497
  }
@@ -30780,7 +30793,7 @@ var types_default = {
30780
30793
  }
30781
30794
  },
30782
30795
  category: "form",
30783
- filePath: "packages/components/src/TextArea",
30796
+ filePath: "../components/src/TextArea",
30784
30797
  sampleProps: {
30785
30798
  props: {
30786
30799
  placeholder: "Enter text...",
@@ -31341,7 +31354,7 @@ var types_default = {
31341
31354
  }
31342
31355
  },
31343
31356
  category: "display",
31344
- filePath: "packages/components/src/TextInput"
31357
+ filePath: "../components/src/TextInput"
31345
31358
  }
31346
31359
  },
31347
31360
  Tooltip: {
@@ -31444,7 +31457,7 @@ var types_default = {
31444
31457
  }
31445
31458
  },
31446
31459
  category: "display",
31447
- filePath: "packages/components/src/Tooltip",
31460
+ filePath: "../components/src/Tooltip",
31448
31461
  sampleProps: {
31449
31462
  props: {
31450
31463
  content: "Tooltip text"
@@ -31688,7 +31701,7 @@ var types_default = {
31688
31701
  }
31689
31702
  },
31690
31703
  category: "display",
31691
- filePath: "packages/components/src/Video",
31704
+ filePath: "../components/src/Video",
31692
31705
  sampleProps: {
31693
31706
  props: {
31694
31707
  source: "https://www.w3schools.com/html/mov_bbb.mp4",
@@ -31899,7 +31912,7 @@ var types_default = {
31899
31912
  }
31900
31913
  },
31901
31914
  category: "layout",
31902
- filePath: "packages/components/src/View",
31915
+ filePath: "../components/src/View",
31903
31916
  sampleProps: {
31904
31917
  children: "'View content'"
31905
31918
  }
@@ -46885,7 +46898,7 @@ var types_default = {
46885
46898
  }
46886
46899
  },
46887
46900
  category: "display",
46888
- filePath: "packages/components/src/Icon",
46901
+ filePath: "../components/src/Icon",
46889
46902
  sampleProps: {
46890
46903
  props: {
46891
46904
  name: "home"
@@ -47032,7 +47045,7 @@ var types_default = {
47032
47045
  }
47033
47046
  },
47034
47047
  category: "data",
47035
- filePath: "packages/components/src/Accordion",
47048
+ filePath: "../components/src/Accordion",
47036
47049
  sampleProps: {
47037
47050
  props: {
47038
47051
  items: [
@@ -47108,7 +47121,7 @@ var types_default = {
47108
47121
  }
47109
47122
  },
47110
47123
  category: "display",
47111
- filePath: "packages/components/src/ActivityIndicator"
47124
+ filePath: "../components/src/ActivityIndicator"
47112
47125
  },
47113
47126
  Alert: {
47114
47127
  name: "Alert",
@@ -47203,7 +47216,7 @@ var types_default = {
47203
47216
  }
47204
47217
  },
47205
47218
  category: "display",
47206
- filePath: "packages/components/src/Alert",
47219
+ filePath: "../components/src/Alert",
47207
47220
  sampleProps: {
47208
47221
  props: {
47209
47222
  title: "Alert Title",
@@ -47270,7 +47283,7 @@ var types_default = {
47270
47283
  }
47271
47284
  },
47272
47285
  category: "display",
47273
- filePath: "packages/components/src/Avatar",
47286
+ filePath: "../components/src/Avatar",
47274
47287
  sampleProps: {
47275
47288
  props: {
47276
47289
  fallback: "AB"
@@ -47339,7 +47352,7 @@ var types_default = {
47339
47352
  }
47340
47353
  },
47341
47354
  category: "display",
47342
- filePath: "packages/components/src/Badge",
47355
+ filePath: "../components/src/Badge",
47343
47356
  sampleProps: {
47344
47357
  children: "'3'"
47345
47358
  }
@@ -47425,7 +47438,7 @@ var types_default = {
47425
47438
  }
47426
47439
  },
47427
47440
  category: "navigation",
47428
- filePath: "packages/components/src/Breadcrumb",
47441
+ filePath: "../components/src/Breadcrumb",
47429
47442
  sampleProps: {
47430
47443
  props: {
47431
47444
  items: [
@@ -47448,13 +47461,13 @@ var types_default = {
47448
47461
  props: {
47449
47462
  onPress: {
47450
47463
  name: "onPress",
47451
- type: "(() => void) | undefined",
47464
+ type: "((event: PressEvent) => void) | undefined",
47452
47465
  description: "Called when the button is pressed",
47453
47466
  required: false
47454
47467
  },
47455
47468
  onClick: {
47456
47469
  name: "onClick",
47457
- type: "(() => void) | undefined",
47470
+ type: "((event: PressEvent) => void) | undefined",
47458
47471
  required: false
47459
47472
  },
47460
47473
  disabled: {
@@ -47538,7 +47551,7 @@ var types_default = {
47538
47551
  }
47539
47552
  },
47540
47553
  category: "form",
47541
- filePath: "packages/components/src/Button",
47554
+ filePath: "../components/src/Button",
47542
47555
  sampleProps: {
47543
47556
  children: "'Click Me'"
47544
47557
  }
@@ -47661,7 +47674,7 @@ var types_default = {
47661
47674
  }
47662
47675
  },
47663
47676
  category: "display",
47664
- filePath: "packages/components/src/Card",
47677
+ filePath: "../components/src/Card",
47665
47678
  sampleProps: {
47666
47679
  children: "'Card content goes here'"
47667
47680
  }
@@ -47782,7 +47795,7 @@ var types_default = {
47782
47795
  }
47783
47796
  },
47784
47797
  category: "form",
47785
- filePath: "packages/components/src/Checkbox",
47798
+ filePath: "../components/src/Checkbox",
47786
47799
  sampleProps: {
47787
47800
  props: {
47788
47801
  label: "Check me"
@@ -47913,7 +47926,7 @@ var types_default = {
47913
47926
  }
47914
47927
  },
47915
47928
  category: "display",
47916
- filePath: "packages/components/src/Chip",
47929
+ filePath: "../components/src/Chip",
47917
47930
  sampleProps: {
47918
47931
  props: {
47919
47932
  label: "Chip Label"
@@ -48068,7 +48081,7 @@ var types_default = {
48068
48081
  }
48069
48082
  },
48070
48083
  category: "overlay",
48071
- filePath: "packages/components/src/Dialog",
48084
+ filePath: "../components/src/Dialog",
48072
48085
  sampleProps: {
48073
48086
  props: {
48074
48087
  title: "Dialog Title"
@@ -48143,7 +48156,7 @@ var types_default = {
48143
48156
  }
48144
48157
  },
48145
48158
  category: "layout",
48146
- filePath: "packages/components/src/Divider"
48159
+ filePath: "../components/src/Divider"
48147
48160
  },
48148
48161
  Form: {
48149
48162
  name: "Form",
@@ -48160,7 +48173,7 @@ var types_default = {
48160
48173
  }
48161
48174
  },
48162
48175
  category: "display",
48163
- filePath: "packages/components/src/Form"
48176
+ filePath: "../components/src/Form"
48164
48177
  },
48165
48178
  Grid: {
48166
48179
  name: "Grid",
@@ -48230,7 +48243,7 @@ var types_default = {
48230
48243
  }
48231
48244
  },
48232
48245
  category: "display",
48233
- filePath: "packages/components/src/Grid"
48246
+ filePath: "../components/src/Grid"
48234
48247
  },
48235
48248
  Icon: {
48236
48249
  name: "Icon",
@@ -63170,7 +63183,7 @@ var types_default = {
63170
63183
  }
63171
63184
  },
63172
63185
  category: "display",
63173
- filePath: "packages/components/src/Icon",
63186
+ filePath: "../components/src/Icon",
63174
63187
  sampleProps: {
63175
63188
  props: {
63176
63189
  name: "home"
@@ -63193,13 +63206,13 @@ var types_default = {
63193
63206
  },
63194
63207
  onPress: {
63195
63208
  name: "onPress",
63196
- type: "(() => void) | undefined",
63209
+ type: "((event: PressEvent) => void) | undefined",
63197
63210
  description: "Called when the button is pressed",
63198
63211
  required: false
63199
63212
  },
63200
63213
  onClick: {
63201
63214
  name: "onClick",
63202
- type: "(() => void) | undefined",
63215
+ type: "((event: PressEvent) => void) | undefined",
63203
63216
  required: false
63204
63217
  },
63205
63218
  disabled: {
@@ -63263,7 +63276,7 @@ var types_default = {
63263
63276
  }
63264
63277
  },
63265
63278
  category: "display",
63266
- filePath: "packages/components/src/IconButton"
63279
+ filePath: "../components/src/IconButton"
63267
63280
  },
63268
63281
  Image: {
63269
63282
  name: "Image",
@@ -63355,7 +63368,7 @@ var types_default = {
63355
63368
  }
63356
63369
  },
63357
63370
  category: "display",
63358
- filePath: "packages/components/src/Image",
63371
+ filePath: "../components/src/Image",
63359
63372
  sampleProps: {
63360
63373
  props: {
63361
63374
  source: {
@@ -63539,7 +63552,7 @@ var types_default = {
63539
63552
  }
63540
63553
  },
63541
63554
  category: "form",
63542
- filePath: "packages/components/src/Input",
63555
+ filePath: "../components/src/Input",
63543
63556
  sampleProps: {
63544
63557
  props: {
63545
63558
  placeholder: "Enter text..."
@@ -63591,7 +63604,7 @@ var types_default = {
63591
63604
  }
63592
63605
  },
63593
63606
  category: "navigation",
63594
- filePath: "packages/components/src/Link",
63607
+ filePath: "../components/src/Link",
63595
63608
  sampleProps: {
63596
63609
  props: {
63597
63610
  href: "#"
@@ -63688,7 +63701,7 @@ var types_default = {
63688
63701
  }
63689
63702
  },
63690
63703
  category: "navigation",
63691
- filePath: "packages/components/src/List",
63704
+ filePath: "../components/src/List",
63692
63705
  sampleProps: {
63693
63706
  children: "'List items go here'"
63694
63707
  }
@@ -63696,6 +63709,12 @@ var types_default = {
63696
63709
  Menu: {
63697
63710
  name: "Menu",
63698
63711
  props: {
63712
+ anchor: {
63713
+ name: "anchor",
63714
+ type: "RefObject<any> | undefined",
63715
+ description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.",
63716
+ required: false
63717
+ },
63699
63718
  items: {
63700
63719
  name: "items",
63701
63720
  type: "MenuItem[]",
@@ -63752,7 +63771,7 @@ var types_default = {
63752
63771
  }
63753
63772
  },
63754
63773
  category: "navigation",
63755
- filePath: "packages/components/src/Menu",
63774
+ filePath: "../components/src/Menu",
63756
63775
  sampleProps: {
63757
63776
  props: {
63758
63777
  items: [
@@ -63867,7 +63886,7 @@ var types_default = {
63867
63886
  }
63868
63887
  },
63869
63888
  category: "overlay",
63870
- filePath: "packages/components/src/Popover",
63889
+ filePath: "../components/src/Popover",
63871
63890
  sampleProps: {
63872
63891
  props: {
63873
63892
  open: false
@@ -63880,19 +63899,19 @@ var types_default = {
63880
63899
  props: {
63881
63900
  onPress: {
63882
63901
  name: "onPress",
63883
- type: "(() => void) | undefined",
63902
+ type: "((event: PressEvent) => void) | undefined",
63884
63903
  description: "Called when the press gesture is activated",
63885
63904
  required: false
63886
63905
  },
63887
63906
  onPressIn: {
63888
63907
  name: "onPressIn",
63889
- type: "(() => void) | undefined",
63908
+ type: "((event: PressEvent) => void) | undefined",
63890
63909
  description: "Called when the press gesture starts",
63891
63910
  required: false
63892
63911
  },
63893
63912
  onPressOut: {
63894
63913
  name: "onPressOut",
63895
- type: "(() => void) | undefined",
63914
+ type: "((event: PressEvent) => void) | undefined",
63896
63915
  description: "Called when the press gesture ends",
63897
63916
  required: false
63898
63917
  },
@@ -63932,7 +63951,7 @@ var types_default = {
63932
63951
  }
63933
63952
  },
63934
63953
  category: "display",
63935
- filePath: "packages/components/src/Pressable",
63954
+ filePath: "../components/src/Pressable",
63936
63955
  sampleProps: {
63937
63956
  children: "'Press me'"
63938
63957
  }
@@ -64011,7 +64030,7 @@ var types_default = {
64011
64030
  }
64012
64031
  },
64013
64032
  category: "data",
64014
- filePath: "packages/components/src/Progress",
64033
+ filePath: "../components/src/Progress",
64015
64034
  sampleProps: {
64016
64035
  props: {
64017
64036
  value: 65
@@ -64090,7 +64109,7 @@ var types_default = {
64090
64109
  }
64091
64110
  },
64092
64111
  category: "form",
64093
- filePath: "packages/components/src/RadioButton",
64112
+ filePath: "../components/src/RadioButton",
64094
64113
  sampleProps: {
64095
64114
  props: {
64096
64115
  value: "option1",
@@ -64156,7 +64175,7 @@ var types_default = {
64156
64175
  }
64157
64176
  },
64158
64177
  category: "display",
64159
- filePath: "packages/components/src/SVGImage",
64178
+ filePath: "../components/src/SVGImage",
64160
64179
  sampleProps: {
64161
64180
  props: {
64162
64181
  source: '<svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="currentColor"/></svg>',
@@ -64315,7 +64334,7 @@ var types_default = {
64315
64334
  }
64316
64335
  },
64317
64336
  category: "layout",
64318
- filePath: "packages/components/src/Screen",
64337
+ filePath: "../components/src/Screen",
64319
64338
  sampleProps: {
64320
64339
  children: "'Screen content'"
64321
64340
  }
@@ -64531,7 +64550,7 @@ var types_default = {
64531
64550
  }
64532
64551
  },
64533
64552
  category: "display",
64534
- filePath: "packages/components/src/ScrollView",
64553
+ filePath: "../components/src/ScrollView",
64535
64554
  sampleProps: {
64536
64555
  children: "'Scrollable content'"
64537
64556
  }
@@ -64676,7 +64695,7 @@ var types_default = {
64676
64695
  }
64677
64696
  },
64678
64697
  category: "form",
64679
- filePath: "packages/components/src/Select",
64698
+ filePath: "../components/src/Select",
64680
64699
  sampleProps: {
64681
64700
  props: {
64682
64701
  options: [
@@ -64759,7 +64778,7 @@ var types_default = {
64759
64778
  }
64760
64779
  },
64761
64780
  category: "display",
64762
- filePath: "packages/components/src/Skeleton",
64781
+ filePath: "../components/src/Skeleton",
64763
64782
  sampleProps: {
64764
64783
  props: {
64765
64784
  width: 200,
@@ -64904,7 +64923,7 @@ var types_default = {
64904
64923
  }
64905
64924
  },
64906
64925
  category: "form",
64907
- filePath: "packages/components/src/Slider",
64926
+ filePath: "../components/src/Slider",
64908
64927
  sampleProps: {
64909
64928
  props: {},
64910
64929
  state: {
@@ -65031,7 +65050,7 @@ var types_default = {
65031
65050
  }
65032
65051
  },
65033
65052
  category: "form",
65034
- filePath: "packages/components/src/Switch",
65053
+ filePath: "../components/src/Switch",
65035
65054
  sampleProps: {
65036
65055
  props: {},
65037
65056
  state: {
@@ -65168,7 +65187,7 @@ var types_default = {
65168
65187
  }
65169
65188
  },
65170
65189
  category: "navigation",
65171
- filePath: "packages/components/src/TabBar",
65190
+ filePath: "../components/src/TabBar",
65172
65191
  sampleProps: {
65173
65192
  props: {
65174
65193
  items: [
@@ -65305,7 +65324,7 @@ var types_default = {
65305
65324
  }
65306
65325
  },
65307
65326
  category: "data",
65308
- filePath: "packages/components/src/Table",
65327
+ filePath: "../components/src/Table",
65309
65328
  sampleProps: {
65310
65329
  props: {
65311
65330
  columns: [
@@ -65435,7 +65454,7 @@ var types_default = {
65435
65454
  }
65436
65455
  },
65437
65456
  category: "display",
65438
- filePath: "packages/components/src/Text",
65457
+ filePath: "../components/src/Text",
65439
65458
  sampleProps: {
65440
65459
  children: "'Sample text content'"
65441
65460
  }
@@ -65605,7 +65624,7 @@ var types_default = {
65605
65624
  }
65606
65625
  },
65607
65626
  category: "form",
65608
- filePath: "packages/components/src/TextArea",
65627
+ filePath: "../components/src/TextArea",
65609
65628
  sampleProps: {
65610
65629
  props: {
65611
65630
  placeholder: "Enter text...",
@@ -65857,7 +65876,7 @@ var types_default = {
65857
65876
  }
65858
65877
  },
65859
65878
  category: "display",
65860
- filePath: "packages/components/src/TextInput"
65879
+ filePath: "../components/src/TextInput"
65861
65880
  },
65862
65881
  Tooltip: {
65863
65882
  name: "Tooltip",
@@ -65907,7 +65926,7 @@ var types_default = {
65907
65926
  }
65908
65927
  },
65909
65928
  category: "display",
65910
- filePath: "packages/components/src/Tooltip",
65929
+ filePath: "../components/src/Tooltip",
65911
65930
  sampleProps: {
65912
65931
  props: {
65913
65932
  content: "Tooltip text"
@@ -66041,7 +66060,7 @@ var types_default = {
66041
66060
  }
66042
66061
  },
66043
66062
  category: "display",
66044
- filePath: "packages/components/src/Video",
66063
+ filePath: "../components/src/Video",
66045
66064
  sampleProps: {
66046
66065
  props: {
66047
66066
  source: "https://www.w3schools.com/html/mov_bbb.mp4",
@@ -66167,7 +66186,7 @@ var types_default = {
66167
66186
  }
66168
66187
  },
66169
66188
  category: "layout",
66170
- filePath: "packages/components/src/View",
66189
+ filePath: "../components/src/View",
66171
66190
  sampleProps: {
66172
66191
  children: "'View content'"
66173
66192
  }
@@ -67712,4 +67731,4 @@ export {
67712
67731
  toolHandlers,
67713
67732
  callTool
67714
67733
  };
67715
- //# sourceMappingURL=chunk-L3TA6GOW.js.map
67734
+ //# sourceMappingURL=chunk-WWUXNKB4.js.map