@idealyst/mcp-server 1.2.132 → 1.2.133

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 CHANGED
@@ -28895,7 +28895,7 @@ var import_url = require("url");
28895
28895
  // src/generated/types.json
28896
28896
  var types_default = {
28897
28897
  version: "1.0.93",
28898
- extractedAt: "2026-03-24T21:22:27.272Z",
28898
+ extractedAt: "2026-03-26T20:48:57.849Z",
28899
28899
  components: {
28900
28900
  Accordion: {
28901
28901
  name: "Accordion",
@@ -29039,7 +29039,7 @@ var types_default = {
29039
29039
  }
29040
29040
  },
29041
29041
  category: "data",
29042
- filePath: "packages/components/src/Accordion",
29042
+ filePath: "../components/src/Accordion",
29043
29043
  sampleProps: {
29044
29044
  props: {
29045
29045
  items: [
@@ -29168,7 +29168,7 @@ var types_default = {
29168
29168
  }
29169
29169
  },
29170
29170
  category: "display",
29171
- filePath: "packages/components/src/ActivityIndicator"
29171
+ filePath: "../components/src/ActivityIndicator"
29172
29172
  }
29173
29173
  },
29174
29174
  Alert: {
@@ -29353,7 +29353,7 @@ var types_default = {
29353
29353
  }
29354
29354
  },
29355
29355
  category: "display",
29356
- filePath: "packages/components/src/Alert",
29356
+ filePath: "../components/src/Alert",
29357
29357
  sampleProps: {
29358
29358
  props: {
29359
29359
  title: "Alert Title",
@@ -29480,7 +29480,7 @@ var types_default = {
29480
29480
  }
29481
29481
  },
29482
29482
  category: "display",
29483
- filePath: "packages/components/src/Avatar",
29483
+ filePath: "../components/src/Avatar",
29484
29484
  sampleProps: {
29485
29485
  props: {
29486
29486
  fallback: "AB"
@@ -29616,7 +29616,7 @@ var types_default = {
29616
29616
  }
29617
29617
  },
29618
29618
  category: "display",
29619
- filePath: "packages/components/src/Badge",
29619
+ filePath: "../components/src/Badge",
29620
29620
  sampleProps: {
29621
29621
  children: "'3'"
29622
29622
  }
@@ -29780,7 +29780,7 @@ var types_default = {
29780
29780
  }
29781
29781
  },
29782
29782
  category: "navigation",
29783
- filePath: "packages/components/src/Breadcrumb",
29783
+ filePath: "../components/src/Breadcrumb",
29784
29784
  sampleProps: {
29785
29785
  props: {
29786
29786
  items: [
@@ -29810,13 +29810,13 @@ var types_default = {
29810
29810
  },
29811
29811
  {
29812
29812
  name: "onPress",
29813
- type: "(() => void) | undefined",
29813
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
29814
29814
  required: false,
29815
29815
  description: "Called when the button is pressed"
29816
29816
  },
29817
29817
  {
29818
29818
  name: "onClick",
29819
- type: "(() => void) | undefined",
29819
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
29820
29820
  required: false,
29821
29821
  description: ""
29822
29822
  },
@@ -29881,7 +29881,7 @@ var types_default = {
29881
29881
  description: "Test ID for testing"
29882
29882
  }
29883
29883
  ],
29884
- 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}",
29884
+ 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}",
29885
29885
  relatedTypes: {
29886
29886
  ButtonType: "export type ButtonType = 'contained' | 'outlined' | 'text';",
29887
29887
  ButtonIntentVariant: "export type ButtonIntentVariant = Intent;",
@@ -29894,13 +29894,13 @@ var types_default = {
29894
29894
  props: {
29895
29895
  onPress: {
29896
29896
  name: "onPress",
29897
- type: "(() => void) | undefined",
29897
+ type: "((event: PressEvent) => void) | undefined",
29898
29898
  description: "Called when the button is pressed",
29899
29899
  required: false
29900
29900
  },
29901
29901
  onClick: {
29902
29902
  name: "onClick",
29903
- type: "(() => void) | undefined",
29903
+ type: "((event: PressEvent) => void) | undefined",
29904
29904
  required: false
29905
29905
  },
29906
29906
  disabled: {
@@ -29984,7 +29984,7 @@ var types_default = {
29984
29984
  }
29985
29985
  },
29986
29986
  category: "form",
29987
- filePath: "packages/components/src/Button",
29987
+ filePath: "../components/src/Button",
29988
29988
  sampleProps: {
29989
29989
  children: "'Click Me'"
29990
29990
  }
@@ -30186,7 +30186,7 @@ var types_default = {
30186
30186
  }
30187
30187
  },
30188
30188
  category: "display",
30189
- filePath: "packages/components/src/Card",
30189
+ filePath: "../components/src/Card",
30190
30190
  sampleProps: {
30191
30191
  children: "'Card content goes here'"
30192
30192
  }
@@ -30403,7 +30403,7 @@ var types_default = {
30403
30403
  }
30404
30404
  },
30405
30405
  category: "form",
30406
- filePath: "packages/components/src/Checkbox",
30406
+ filePath: "../components/src/Checkbox",
30407
30407
  sampleProps: {
30408
30408
  props: {
30409
30409
  label: "Check me"
@@ -30636,7 +30636,7 @@ var types_default = {
30636
30636
  }
30637
30637
  },
30638
30638
  category: "display",
30639
- filePath: "packages/components/src/Chip",
30639
+ filePath: "../components/src/Chip",
30640
30640
  sampleProps: {
30641
30641
  props: {
30642
30642
  label: "Chip Label"
@@ -30917,7 +30917,7 @@ var types_default = {
30917
30917
  }
30918
30918
  },
30919
30919
  category: "overlay",
30920
- filePath: "packages/components/src/Dialog",
30920
+ filePath: "../components/src/Dialog",
30921
30921
  sampleProps: {
30922
30922
  props: {
30923
30923
  title: "Dialog Title"
@@ -31067,7 +31067,7 @@ var types_default = {
31067
31067
  }
31068
31068
  },
31069
31069
  category: "layout",
31070
- filePath: "packages/components/src/Divider"
31070
+ filePath: "../components/src/Divider"
31071
31071
  }
31072
31072
  },
31073
31073
  Form: {
@@ -31125,7 +31125,7 @@ var types_default = {
31125
31125
  }
31126
31126
  },
31127
31127
  category: "display",
31128
- filePath: "packages/components/src/Form"
31128
+ filePath: "../components/src/Form"
31129
31129
  }
31130
31130
  },
31131
31131
  Grid: {
@@ -31242,7 +31242,7 @@ var types_default = {
31242
31242
  }
31243
31243
  },
31244
31244
  category: "display",
31245
- filePath: "packages/components/src/Grid"
31245
+ filePath: "../components/src/Grid"
31246
31246
  }
31247
31247
  },
31248
31248
  IconButton: {
@@ -31409,7 +31409,7 @@ var types_default = {
31409
31409
  }
31410
31410
  },
31411
31411
  category: "display",
31412
- filePath: "packages/components/src/IconButton"
31412
+ filePath: "../components/src/IconButton"
31413
31413
  }
31414
31414
  },
31415
31415
  Image: {
@@ -31586,7 +31586,7 @@ var types_default = {
31586
31586
  }
31587
31587
  },
31588
31588
  category: "display",
31589
- filePath: "packages/components/src/Image",
31589
+ filePath: "../components/src/Image",
31590
31590
  sampleProps: {
31591
31591
  props: {
31592
31592
  source: {
@@ -31994,7 +31994,7 @@ var types_default = {
31994
31994
  }
31995
31995
  },
31996
31996
  category: "form",
31997
- filePath: "packages/components/src/Input",
31997
+ filePath: "../components/src/Input",
31998
31998
  sampleProps: {
31999
31999
  props: {
32000
32000
  placeholder: "Enter text..."
@@ -32102,7 +32102,7 @@ var types_default = {
32102
32102
  }
32103
32103
  },
32104
32104
  category: "navigation",
32105
- filePath: "packages/components/src/Link",
32105
+ filePath: "../components/src/Link",
32106
32106
  sampleProps: {
32107
32107
  props: {
32108
32108
  href: "#"
@@ -32246,7 +32246,7 @@ var types_default = {
32246
32246
  }
32247
32247
  },
32248
32248
  category: "navigation",
32249
- filePath: "packages/components/src/List",
32249
+ filePath: "../components/src/List",
32250
32250
  sampleProps: {
32251
32251
  children: "'List items go here'"
32252
32252
  }
@@ -32259,7 +32259,14 @@ var types_default = {
32259
32259
  {
32260
32260
  name: "children",
32261
32261
  type: "React.ReactNode",
32262
- required: true
32262
+ required: false,
32263
+ description: "Trigger element that opens the menu on press/click.\nEither `children` or `anchor` must be provided."
32264
+ },
32265
+ {
32266
+ name: "anchor",
32267
+ type: "React.RefObject<any> | undefined",
32268
+ required: false,
32269
+ description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close."
32263
32270
  },
32264
32271
  {
32265
32272
  name: "items",
@@ -32302,7 +32309,7 @@ var types_default = {
32302
32309
  required: false
32303
32310
  }
32304
32311
  ],
32305
- 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}",
32312
+ 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}",
32306
32313
  relatedTypes: {
32307
32314
  MenuIntentVariant: "export type MenuIntentVariant = Intent;",
32308
32315
  MenuSizeVariant: "export type MenuSizeVariant = Size;",
@@ -32312,6 +32319,12 @@ var types_default = {
32312
32319
  registry: {
32313
32320
  name: "Menu",
32314
32321
  props: {
32322
+ anchor: {
32323
+ name: "anchor",
32324
+ type: "RefObject<any> | undefined",
32325
+ description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.",
32326
+ required: false
32327
+ },
32315
32328
  items: {
32316
32329
  name: "items",
32317
32330
  type: "MenuItem[]",
@@ -32368,7 +32381,7 @@ var types_default = {
32368
32381
  }
32369
32382
  },
32370
32383
  category: "navigation",
32371
- filePath: "packages/components/src/Menu",
32384
+ filePath: "../components/src/Menu",
32372
32385
  sampleProps: {
32373
32386
  props: {
32374
32387
  items: [
@@ -32559,7 +32572,7 @@ var types_default = {
32559
32572
  }
32560
32573
  },
32561
32574
  category: "overlay",
32562
- filePath: "packages/components/src/Popover",
32575
+ filePath: "../components/src/Popover",
32563
32576
  sampleProps: {
32564
32577
  props: {
32565
32578
  open: false
@@ -32580,19 +32593,19 @@ var types_default = {
32580
32593
  },
32581
32594
  {
32582
32595
  name: "onPress",
32583
- type: "(() => void) | undefined",
32596
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
32584
32597
  required: false,
32585
32598
  description: "Called when the press gesture is activated"
32586
32599
  },
32587
32600
  {
32588
32601
  name: "onPressIn",
32589
- type: "(() => void) | undefined",
32602
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
32590
32603
  required: false,
32591
32604
  description: "Called when the press gesture starts"
32592
32605
  },
32593
32606
  {
32594
32607
  name: "onPressOut",
32595
- type: "(() => void) | undefined",
32608
+ type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
32596
32609
  required: false,
32597
32610
  description: "Called when the press gesture ends"
32598
32611
  },
@@ -32627,26 +32640,26 @@ var types_default = {
32627
32640
  description: "Accessibility role (web)"
32628
32641
  }
32629
32642
  ],
32630
- 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}",
32643
+ 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}",
32631
32644
  relatedTypes: {},
32632
32645
  registry: {
32633
32646
  name: "Pressable",
32634
32647
  props: {
32635
32648
  onPress: {
32636
32649
  name: "onPress",
32637
- type: "(() => void) | undefined",
32650
+ type: "((event: PressEvent) => void) | undefined",
32638
32651
  description: "Called when the press gesture is activated",
32639
32652
  required: false
32640
32653
  },
32641
32654
  onPressIn: {
32642
32655
  name: "onPressIn",
32643
- type: "(() => void) | undefined",
32656
+ type: "((event: PressEvent) => void) | undefined",
32644
32657
  description: "Called when the press gesture starts",
32645
32658
  required: false
32646
32659
  },
32647
32660
  onPressOut: {
32648
32661
  name: "onPressOut",
32649
- type: "(() => void) | undefined",
32662
+ type: "((event: PressEvent) => void) | undefined",
32650
32663
  description: "Called when the press gesture ends",
32651
32664
  required: false
32652
32665
  },
@@ -32686,7 +32699,7 @@ var types_default = {
32686
32699
  }
32687
32700
  },
32688
32701
  category: "display",
32689
- filePath: "packages/components/src/Pressable",
32702
+ filePath: "../components/src/Pressable",
32690
32703
  sampleProps: {
32691
32704
  children: "'Press me'"
32692
32705
  }
@@ -32833,7 +32846,7 @@ var types_default = {
32833
32846
  }
32834
32847
  },
32835
32848
  category: "data",
32836
- filePath: "packages/components/src/Progress",
32849
+ filePath: "../components/src/Progress",
32837
32850
  sampleProps: {
32838
32851
  props: {
32839
32852
  value: 65
@@ -32968,7 +32981,7 @@ var types_default = {
32968
32981
  }
32969
32982
  },
32970
32983
  category: "form",
32971
- filePath: "packages/components/src/RadioButton",
32984
+ filePath: "../components/src/RadioButton",
32972
32985
  sampleProps: {
32973
32986
  props: {
32974
32987
  value: "option1",
@@ -33080,7 +33093,7 @@ var types_default = {
33080
33093
  }
33081
33094
  },
33082
33095
  category: "display",
33083
- filePath: "packages/components/src/SVGImage",
33096
+ filePath: "../components/src/SVGImage",
33084
33097
  sampleProps: {
33085
33098
  props: {
33086
33099
  source: '<svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="currentColor"/></svg>',
@@ -33331,7 +33344,7 @@ var types_default = {
33331
33344
  }
33332
33345
  },
33333
33346
  category: "layout",
33334
- filePath: "packages/components/src/Screen",
33347
+ filePath: "../components/src/Screen",
33335
33348
  sampleProps: {
33336
33349
  children: "'Screen content'"
33337
33350
  }
@@ -33709,7 +33722,7 @@ var types_default = {
33709
33722
  }
33710
33723
  },
33711
33724
  category: "display",
33712
- filePath: "packages/components/src/ScrollView",
33725
+ filePath: "../components/src/ScrollView",
33713
33726
  sampleProps: {
33714
33727
  children: "'Scrollable content'"
33715
33728
  }
@@ -33969,7 +33982,7 @@ var types_default = {
33969
33982
  }
33970
33983
  },
33971
33984
  category: "form",
33972
- filePath: "packages/components/src/Select",
33985
+ filePath: "../components/src/Select",
33973
33986
  sampleProps: {
33974
33987
  props: {
33975
33988
  options: [
@@ -34105,7 +34118,7 @@ var types_default = {
34105
34118
  }
34106
34119
  },
34107
34120
  category: "display",
34108
- filePath: "packages/components/src/Skeleton",
34121
+ filePath: "../components/src/Skeleton",
34109
34122
  sampleProps: {
34110
34123
  props: {
34111
34124
  width: 200,
@@ -34363,7 +34376,7 @@ var types_default = {
34363
34376
  }
34364
34377
  },
34365
34378
  category: "form",
34366
- filePath: "packages/components/src/Slider",
34379
+ filePath: "../components/src/Slider",
34367
34380
  sampleProps: {
34368
34381
  props: {},
34369
34382
  state: {
@@ -34579,7 +34592,7 @@ var types_default = {
34579
34592
  }
34580
34593
  },
34581
34594
  category: "form",
34582
- filePath: "packages/components/src/Switch",
34595
+ filePath: "../components/src/Switch",
34583
34596
  sampleProps: {
34584
34597
  props: {},
34585
34598
  state: {
@@ -34789,7 +34802,7 @@ var types_default = {
34789
34802
  }
34790
34803
  },
34791
34804
  category: "navigation",
34792
- filePath: "packages/components/src/TabBar",
34805
+ filePath: "../components/src/TabBar",
34793
34806
  sampleProps: {
34794
34807
  props: {
34795
34808
  items: [
@@ -34992,7 +35005,7 @@ var types_default = {
34992
35005
  }
34993
35006
  },
34994
35007
  category: "data",
34995
- filePath: "packages/components/src/Table",
35008
+ filePath: "../components/src/Table",
34996
35009
  sampleProps: {
34997
35010
  props: {
34998
35011
  columns: [
@@ -35190,7 +35203,7 @@ var types_default = {
35190
35203
  }
35191
35204
  },
35192
35205
  category: "display",
35193
- filePath: "packages/components/src/Text",
35206
+ filePath: "../components/src/Text",
35194
35207
  sampleProps: {
35195
35208
  children: "'Sample text content'"
35196
35209
  }
@@ -35492,7 +35505,7 @@ var types_default = {
35492
35505
  }
35493
35506
  },
35494
35507
  category: "form",
35495
- filePath: "packages/components/src/TextArea",
35508
+ filePath: "../components/src/TextArea",
35496
35509
  sampleProps: {
35497
35510
  props: {
35498
35511
  placeholder: "Enter text...",
@@ -36053,7 +36066,7 @@ var types_default = {
36053
36066
  }
36054
36067
  },
36055
36068
  category: "display",
36056
- filePath: "packages/components/src/TextInput"
36069
+ filePath: "../components/src/TextInput"
36057
36070
  }
36058
36071
  },
36059
36072
  Tooltip: {
@@ -36156,7 +36169,7 @@ var types_default = {
36156
36169
  }
36157
36170
  },
36158
36171
  category: "display",
36159
- filePath: "packages/components/src/Tooltip",
36172
+ filePath: "../components/src/Tooltip",
36160
36173
  sampleProps: {
36161
36174
  props: {
36162
36175
  content: "Tooltip text"
@@ -36400,7 +36413,7 @@ var types_default = {
36400
36413
  }
36401
36414
  },
36402
36415
  category: "display",
36403
- filePath: "packages/components/src/Video",
36416
+ filePath: "../components/src/Video",
36404
36417
  sampleProps: {
36405
36418
  props: {
36406
36419
  source: "https://www.w3schools.com/html/mov_bbb.mp4",
@@ -36611,7 +36624,7 @@ var types_default = {
36611
36624
  }
36612
36625
  },
36613
36626
  category: "layout",
36614
- filePath: "packages/components/src/View",
36627
+ filePath: "../components/src/View",
36615
36628
  sampleProps: {
36616
36629
  children: "'View content'"
36617
36630
  }
@@ -51597,7 +51610,7 @@ var types_default = {
51597
51610
  }
51598
51611
  },
51599
51612
  category: "display",
51600
- filePath: "packages/components/src/Icon",
51613
+ filePath: "../components/src/Icon",
51601
51614
  sampleProps: {
51602
51615
  props: {
51603
51616
  name: "home"
@@ -51744,7 +51757,7 @@ var types_default = {
51744
51757
  }
51745
51758
  },
51746
51759
  category: "data",
51747
- filePath: "packages/components/src/Accordion",
51760
+ filePath: "../components/src/Accordion",
51748
51761
  sampleProps: {
51749
51762
  props: {
51750
51763
  items: [
@@ -51820,7 +51833,7 @@ var types_default = {
51820
51833
  }
51821
51834
  },
51822
51835
  category: "display",
51823
- filePath: "packages/components/src/ActivityIndicator"
51836
+ filePath: "../components/src/ActivityIndicator"
51824
51837
  },
51825
51838
  Alert: {
51826
51839
  name: "Alert",
@@ -51915,7 +51928,7 @@ var types_default = {
51915
51928
  }
51916
51929
  },
51917
51930
  category: "display",
51918
- filePath: "packages/components/src/Alert",
51931
+ filePath: "../components/src/Alert",
51919
51932
  sampleProps: {
51920
51933
  props: {
51921
51934
  title: "Alert Title",
@@ -51982,7 +51995,7 @@ var types_default = {
51982
51995
  }
51983
51996
  },
51984
51997
  category: "display",
51985
- filePath: "packages/components/src/Avatar",
51998
+ filePath: "../components/src/Avatar",
51986
51999
  sampleProps: {
51987
52000
  props: {
51988
52001
  fallback: "AB"
@@ -52051,7 +52064,7 @@ var types_default = {
52051
52064
  }
52052
52065
  },
52053
52066
  category: "display",
52054
- filePath: "packages/components/src/Badge",
52067
+ filePath: "../components/src/Badge",
52055
52068
  sampleProps: {
52056
52069
  children: "'3'"
52057
52070
  }
@@ -52137,7 +52150,7 @@ var types_default = {
52137
52150
  }
52138
52151
  },
52139
52152
  category: "navigation",
52140
- filePath: "packages/components/src/Breadcrumb",
52153
+ filePath: "../components/src/Breadcrumb",
52141
52154
  sampleProps: {
52142
52155
  props: {
52143
52156
  items: [
@@ -52160,13 +52173,13 @@ var types_default = {
52160
52173
  props: {
52161
52174
  onPress: {
52162
52175
  name: "onPress",
52163
- type: "(() => void) | undefined",
52176
+ type: "((event: PressEvent) => void) | undefined",
52164
52177
  description: "Called when the button is pressed",
52165
52178
  required: false
52166
52179
  },
52167
52180
  onClick: {
52168
52181
  name: "onClick",
52169
- type: "(() => void) | undefined",
52182
+ type: "((event: PressEvent) => void) | undefined",
52170
52183
  required: false
52171
52184
  },
52172
52185
  disabled: {
@@ -52250,7 +52263,7 @@ var types_default = {
52250
52263
  }
52251
52264
  },
52252
52265
  category: "form",
52253
- filePath: "packages/components/src/Button",
52266
+ filePath: "../components/src/Button",
52254
52267
  sampleProps: {
52255
52268
  children: "'Click Me'"
52256
52269
  }
@@ -52373,7 +52386,7 @@ var types_default = {
52373
52386
  }
52374
52387
  },
52375
52388
  category: "display",
52376
- filePath: "packages/components/src/Card",
52389
+ filePath: "../components/src/Card",
52377
52390
  sampleProps: {
52378
52391
  children: "'Card content goes here'"
52379
52392
  }
@@ -52494,7 +52507,7 @@ var types_default = {
52494
52507
  }
52495
52508
  },
52496
52509
  category: "form",
52497
- filePath: "packages/components/src/Checkbox",
52510
+ filePath: "../components/src/Checkbox",
52498
52511
  sampleProps: {
52499
52512
  props: {
52500
52513
  label: "Check me"
@@ -52625,7 +52638,7 @@ var types_default = {
52625
52638
  }
52626
52639
  },
52627
52640
  category: "display",
52628
- filePath: "packages/components/src/Chip",
52641
+ filePath: "../components/src/Chip",
52629
52642
  sampleProps: {
52630
52643
  props: {
52631
52644
  label: "Chip Label"
@@ -52780,7 +52793,7 @@ var types_default = {
52780
52793
  }
52781
52794
  },
52782
52795
  category: "overlay",
52783
- filePath: "packages/components/src/Dialog",
52796
+ filePath: "../components/src/Dialog",
52784
52797
  sampleProps: {
52785
52798
  props: {
52786
52799
  title: "Dialog Title"
@@ -52855,7 +52868,7 @@ var types_default = {
52855
52868
  }
52856
52869
  },
52857
52870
  category: "layout",
52858
- filePath: "packages/components/src/Divider"
52871
+ filePath: "../components/src/Divider"
52859
52872
  },
52860
52873
  Form: {
52861
52874
  name: "Form",
@@ -52872,7 +52885,7 @@ var types_default = {
52872
52885
  }
52873
52886
  },
52874
52887
  category: "display",
52875
- filePath: "packages/components/src/Form"
52888
+ filePath: "../components/src/Form"
52876
52889
  },
52877
52890
  Grid: {
52878
52891
  name: "Grid",
@@ -52942,7 +52955,7 @@ var types_default = {
52942
52955
  }
52943
52956
  },
52944
52957
  category: "display",
52945
- filePath: "packages/components/src/Grid"
52958
+ filePath: "../components/src/Grid"
52946
52959
  },
52947
52960
  Icon: {
52948
52961
  name: "Icon",
@@ -67882,7 +67895,7 @@ var types_default = {
67882
67895
  }
67883
67896
  },
67884
67897
  category: "display",
67885
- filePath: "packages/components/src/Icon",
67898
+ filePath: "../components/src/Icon",
67886
67899
  sampleProps: {
67887
67900
  props: {
67888
67901
  name: "home"
@@ -67975,7 +67988,7 @@ var types_default = {
67975
67988
  }
67976
67989
  },
67977
67990
  category: "display",
67978
- filePath: "packages/components/src/IconButton"
67991
+ filePath: "../components/src/IconButton"
67979
67992
  },
67980
67993
  Image: {
67981
67994
  name: "Image",
@@ -68067,7 +68080,7 @@ var types_default = {
68067
68080
  }
68068
68081
  },
68069
68082
  category: "display",
68070
- filePath: "packages/components/src/Image",
68083
+ filePath: "../components/src/Image",
68071
68084
  sampleProps: {
68072
68085
  props: {
68073
68086
  source: {
@@ -68251,7 +68264,7 @@ var types_default = {
68251
68264
  }
68252
68265
  },
68253
68266
  category: "form",
68254
- filePath: "packages/components/src/Input",
68267
+ filePath: "../components/src/Input",
68255
68268
  sampleProps: {
68256
68269
  props: {
68257
68270
  placeholder: "Enter text..."
@@ -68303,7 +68316,7 @@ var types_default = {
68303
68316
  }
68304
68317
  },
68305
68318
  category: "navigation",
68306
- filePath: "packages/components/src/Link",
68319
+ filePath: "../components/src/Link",
68307
68320
  sampleProps: {
68308
68321
  props: {
68309
68322
  href: "#"
@@ -68400,7 +68413,7 @@ var types_default = {
68400
68413
  }
68401
68414
  },
68402
68415
  category: "navigation",
68403
- filePath: "packages/components/src/List",
68416
+ filePath: "../components/src/List",
68404
68417
  sampleProps: {
68405
68418
  children: "'List items go here'"
68406
68419
  }
@@ -68408,6 +68421,12 @@ var types_default = {
68408
68421
  Menu: {
68409
68422
  name: "Menu",
68410
68423
  props: {
68424
+ anchor: {
68425
+ name: "anchor",
68426
+ type: "RefObject<any> | undefined",
68427
+ description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.",
68428
+ required: false
68429
+ },
68411
68430
  items: {
68412
68431
  name: "items",
68413
68432
  type: "MenuItem[]",
@@ -68464,7 +68483,7 @@ var types_default = {
68464
68483
  }
68465
68484
  },
68466
68485
  category: "navigation",
68467
- filePath: "packages/components/src/Menu",
68486
+ filePath: "../components/src/Menu",
68468
68487
  sampleProps: {
68469
68488
  props: {
68470
68489
  items: [
@@ -68579,7 +68598,7 @@ var types_default = {
68579
68598
  }
68580
68599
  },
68581
68600
  category: "overlay",
68582
- filePath: "packages/components/src/Popover",
68601
+ filePath: "../components/src/Popover",
68583
68602
  sampleProps: {
68584
68603
  props: {
68585
68604
  open: false
@@ -68592,19 +68611,19 @@ var types_default = {
68592
68611
  props: {
68593
68612
  onPress: {
68594
68613
  name: "onPress",
68595
- type: "(() => void) | undefined",
68614
+ type: "((event: PressEvent) => void) | undefined",
68596
68615
  description: "Called when the press gesture is activated",
68597
68616
  required: false
68598
68617
  },
68599
68618
  onPressIn: {
68600
68619
  name: "onPressIn",
68601
- type: "(() => void) | undefined",
68620
+ type: "((event: PressEvent) => void) | undefined",
68602
68621
  description: "Called when the press gesture starts",
68603
68622
  required: false
68604
68623
  },
68605
68624
  onPressOut: {
68606
68625
  name: "onPressOut",
68607
- type: "(() => void) | undefined",
68626
+ type: "((event: PressEvent) => void) | undefined",
68608
68627
  description: "Called when the press gesture ends",
68609
68628
  required: false
68610
68629
  },
@@ -68644,7 +68663,7 @@ var types_default = {
68644
68663
  }
68645
68664
  },
68646
68665
  category: "display",
68647
- filePath: "packages/components/src/Pressable",
68666
+ filePath: "../components/src/Pressable",
68648
68667
  sampleProps: {
68649
68668
  children: "'Press me'"
68650
68669
  }
@@ -68723,7 +68742,7 @@ var types_default = {
68723
68742
  }
68724
68743
  },
68725
68744
  category: "data",
68726
- filePath: "packages/components/src/Progress",
68745
+ filePath: "../components/src/Progress",
68727
68746
  sampleProps: {
68728
68747
  props: {
68729
68748
  value: 65
@@ -68802,7 +68821,7 @@ var types_default = {
68802
68821
  }
68803
68822
  },
68804
68823
  category: "form",
68805
- filePath: "packages/components/src/RadioButton",
68824
+ filePath: "../components/src/RadioButton",
68806
68825
  sampleProps: {
68807
68826
  props: {
68808
68827
  value: "option1",
@@ -68868,7 +68887,7 @@ var types_default = {
68868
68887
  }
68869
68888
  },
68870
68889
  category: "display",
68871
- filePath: "packages/components/src/SVGImage",
68890
+ filePath: "../components/src/SVGImage",
68872
68891
  sampleProps: {
68873
68892
  props: {
68874
68893
  source: '<svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="currentColor"/></svg>',
@@ -69027,7 +69046,7 @@ var types_default = {
69027
69046
  }
69028
69047
  },
69029
69048
  category: "layout",
69030
- filePath: "packages/components/src/Screen",
69049
+ filePath: "../components/src/Screen",
69031
69050
  sampleProps: {
69032
69051
  children: "'Screen content'"
69033
69052
  }
@@ -69243,7 +69262,7 @@ var types_default = {
69243
69262
  }
69244
69263
  },
69245
69264
  category: "display",
69246
- filePath: "packages/components/src/ScrollView",
69265
+ filePath: "../components/src/ScrollView",
69247
69266
  sampleProps: {
69248
69267
  children: "'Scrollable content'"
69249
69268
  }
@@ -69388,7 +69407,7 @@ var types_default = {
69388
69407
  }
69389
69408
  },
69390
69409
  category: "form",
69391
- filePath: "packages/components/src/Select",
69410
+ filePath: "../components/src/Select",
69392
69411
  sampleProps: {
69393
69412
  props: {
69394
69413
  options: [
@@ -69471,7 +69490,7 @@ var types_default = {
69471
69490
  }
69472
69491
  },
69473
69492
  category: "display",
69474
- filePath: "packages/components/src/Skeleton",
69493
+ filePath: "../components/src/Skeleton",
69475
69494
  sampleProps: {
69476
69495
  props: {
69477
69496
  width: 200,
@@ -69616,7 +69635,7 @@ var types_default = {
69616
69635
  }
69617
69636
  },
69618
69637
  category: "form",
69619
- filePath: "packages/components/src/Slider",
69638
+ filePath: "../components/src/Slider",
69620
69639
  sampleProps: {
69621
69640
  props: {},
69622
69641
  state: {
@@ -69743,7 +69762,7 @@ var types_default = {
69743
69762
  }
69744
69763
  },
69745
69764
  category: "form",
69746
- filePath: "packages/components/src/Switch",
69765
+ filePath: "../components/src/Switch",
69747
69766
  sampleProps: {
69748
69767
  props: {},
69749
69768
  state: {
@@ -69880,7 +69899,7 @@ var types_default = {
69880
69899
  }
69881
69900
  },
69882
69901
  category: "navigation",
69883
- filePath: "packages/components/src/TabBar",
69902
+ filePath: "../components/src/TabBar",
69884
69903
  sampleProps: {
69885
69904
  props: {
69886
69905
  items: [
@@ -70017,7 +70036,7 @@ var types_default = {
70017
70036
  }
70018
70037
  },
70019
70038
  category: "data",
70020
- filePath: "packages/components/src/Table",
70039
+ filePath: "../components/src/Table",
70021
70040
  sampleProps: {
70022
70041
  props: {
70023
70042
  columns: [
@@ -70147,7 +70166,7 @@ var types_default = {
70147
70166
  }
70148
70167
  },
70149
70168
  category: "display",
70150
- filePath: "packages/components/src/Text",
70169
+ filePath: "../components/src/Text",
70151
70170
  sampleProps: {
70152
70171
  children: "'Sample text content'"
70153
70172
  }
@@ -70317,7 +70336,7 @@ var types_default = {
70317
70336
  }
70318
70337
  },
70319
70338
  category: "form",
70320
- filePath: "packages/components/src/TextArea",
70339
+ filePath: "../components/src/TextArea",
70321
70340
  sampleProps: {
70322
70341
  props: {
70323
70342
  placeholder: "Enter text...",
@@ -70569,7 +70588,7 @@ var types_default = {
70569
70588
  }
70570
70589
  },
70571
70590
  category: "display",
70572
- filePath: "packages/components/src/TextInput"
70591
+ filePath: "../components/src/TextInput"
70573
70592
  },
70574
70593
  Tooltip: {
70575
70594
  name: "Tooltip",
@@ -70619,7 +70638,7 @@ var types_default = {
70619
70638
  }
70620
70639
  },
70621
70640
  category: "display",
70622
- filePath: "packages/components/src/Tooltip",
70641
+ filePath: "../components/src/Tooltip",
70623
70642
  sampleProps: {
70624
70643
  props: {
70625
70644
  content: "Tooltip text"
@@ -70753,7 +70772,7 @@ var types_default = {
70753
70772
  }
70754
70773
  },
70755
70774
  category: "display",
70756
- filePath: "packages/components/src/Video",
70775
+ filePath: "../components/src/Video",
70757
70776
  sampleProps: {
70758
70777
  props: {
70759
70778
  source: "https://www.w3schools.com/html/mov_bbb.mp4",
@@ -70879,7 +70898,7 @@ var types_default = {
70879
70898
  }
70880
70899
  },
70881
70900
  category: "layout",
70882
- filePath: "packages/components/src/View",
70901
+ filePath: "../components/src/View",
70883
70902
  sampleProps: {
70884
70903
  children: "'View content'"
70885
70904
  }