@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/{chunk-L3TA6GOW.js → chunk-QM67ZCZ4.js} +120 -101
- package/dist/{chunk-L3TA6GOW.js.map → chunk-QM67ZCZ4.js.map} +1 -1
- package/dist/index.cjs +119 -100
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools/index.cjs +119 -100
- package/dist/tools/index.cjs.map +1 -1
- package/dist/tools/index.js +1 -1
- package/examples/components/Menu.examples.tsx +27 -0
- package/package.json +5 -5
package/dist/tools/index.cjs
CHANGED
|
@@ -24295,7 +24295,7 @@ var import_url = require("url");
|
|
|
24295
24295
|
// src/generated/types.json
|
|
24296
24296
|
var types_default = {
|
|
24297
24297
|
version: "1.0.93",
|
|
24298
|
-
extractedAt: "2026-03-
|
|
24298
|
+
extractedAt: "2026-03-26T20:48:57.849Z",
|
|
24299
24299
|
components: {
|
|
24300
24300
|
Accordion: {
|
|
24301
24301
|
name: "Accordion",
|
|
@@ -24439,7 +24439,7 @@ var types_default = {
|
|
|
24439
24439
|
}
|
|
24440
24440
|
},
|
|
24441
24441
|
category: "data",
|
|
24442
|
-
filePath: "
|
|
24442
|
+
filePath: "../components/src/Accordion",
|
|
24443
24443
|
sampleProps: {
|
|
24444
24444
|
props: {
|
|
24445
24445
|
items: [
|
|
@@ -24568,7 +24568,7 @@ var types_default = {
|
|
|
24568
24568
|
}
|
|
24569
24569
|
},
|
|
24570
24570
|
category: "display",
|
|
24571
|
-
filePath: "
|
|
24571
|
+
filePath: "../components/src/ActivityIndicator"
|
|
24572
24572
|
}
|
|
24573
24573
|
},
|
|
24574
24574
|
Alert: {
|
|
@@ -24753,7 +24753,7 @@ var types_default = {
|
|
|
24753
24753
|
}
|
|
24754
24754
|
},
|
|
24755
24755
|
category: "display",
|
|
24756
|
-
filePath: "
|
|
24756
|
+
filePath: "../components/src/Alert",
|
|
24757
24757
|
sampleProps: {
|
|
24758
24758
|
props: {
|
|
24759
24759
|
title: "Alert Title",
|
|
@@ -24880,7 +24880,7 @@ var types_default = {
|
|
|
24880
24880
|
}
|
|
24881
24881
|
},
|
|
24882
24882
|
category: "display",
|
|
24883
|
-
filePath: "
|
|
24883
|
+
filePath: "../components/src/Avatar",
|
|
24884
24884
|
sampleProps: {
|
|
24885
24885
|
props: {
|
|
24886
24886
|
fallback: "AB"
|
|
@@ -25016,7 +25016,7 @@ var types_default = {
|
|
|
25016
25016
|
}
|
|
25017
25017
|
},
|
|
25018
25018
|
category: "display",
|
|
25019
|
-
filePath: "
|
|
25019
|
+
filePath: "../components/src/Badge",
|
|
25020
25020
|
sampleProps: {
|
|
25021
25021
|
children: "'3'"
|
|
25022
25022
|
}
|
|
@@ -25180,7 +25180,7 @@ var types_default = {
|
|
|
25180
25180
|
}
|
|
25181
25181
|
},
|
|
25182
25182
|
category: "navigation",
|
|
25183
|
-
filePath: "
|
|
25183
|
+
filePath: "../components/src/Breadcrumb",
|
|
25184
25184
|
sampleProps: {
|
|
25185
25185
|
props: {
|
|
25186
25186
|
items: [
|
|
@@ -25210,13 +25210,13 @@ var types_default = {
|
|
|
25210
25210
|
},
|
|
25211
25211
|
{
|
|
25212
25212
|
name: "onPress",
|
|
25213
|
-
type:
|
|
25213
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
25214
25214
|
required: false,
|
|
25215
25215
|
description: "Called when the button is pressed"
|
|
25216
25216
|
},
|
|
25217
25217
|
{
|
|
25218
25218
|
name: "onClick",
|
|
25219
|
-
type:
|
|
25219
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
25220
25220
|
required: false,
|
|
25221
25221
|
description: ""
|
|
25222
25222
|
},
|
|
@@ -25281,7 +25281,7 @@ var types_default = {
|
|
|
25281
25281
|
description: "Test ID for testing"
|
|
25282
25282
|
}
|
|
25283
25283
|
],
|
|
25284
|
-
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}",
|
|
25284
|
+
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}",
|
|
25285
25285
|
relatedTypes: {
|
|
25286
25286
|
ButtonType: "export type ButtonType = 'contained' | 'outlined' | 'text';",
|
|
25287
25287
|
ButtonIntentVariant: "export type ButtonIntentVariant = Intent;",
|
|
@@ -25294,13 +25294,13 @@ var types_default = {
|
|
|
25294
25294
|
props: {
|
|
25295
25295
|
onPress: {
|
|
25296
25296
|
name: "onPress",
|
|
25297
|
-
type: "(() => void) | undefined",
|
|
25297
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
25298
25298
|
description: "Called when the button is pressed",
|
|
25299
25299
|
required: false
|
|
25300
25300
|
},
|
|
25301
25301
|
onClick: {
|
|
25302
25302
|
name: "onClick",
|
|
25303
|
-
type: "(() => void) | undefined",
|
|
25303
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
25304
25304
|
required: false
|
|
25305
25305
|
},
|
|
25306
25306
|
disabled: {
|
|
@@ -25384,7 +25384,7 @@ var types_default = {
|
|
|
25384
25384
|
}
|
|
25385
25385
|
},
|
|
25386
25386
|
category: "form",
|
|
25387
|
-
filePath: "
|
|
25387
|
+
filePath: "../components/src/Button",
|
|
25388
25388
|
sampleProps: {
|
|
25389
25389
|
children: "'Click Me'"
|
|
25390
25390
|
}
|
|
@@ -25586,7 +25586,7 @@ var types_default = {
|
|
|
25586
25586
|
}
|
|
25587
25587
|
},
|
|
25588
25588
|
category: "display",
|
|
25589
|
-
filePath: "
|
|
25589
|
+
filePath: "../components/src/Card",
|
|
25590
25590
|
sampleProps: {
|
|
25591
25591
|
children: "'Card content goes here'"
|
|
25592
25592
|
}
|
|
@@ -25803,7 +25803,7 @@ var types_default = {
|
|
|
25803
25803
|
}
|
|
25804
25804
|
},
|
|
25805
25805
|
category: "form",
|
|
25806
|
-
filePath: "
|
|
25806
|
+
filePath: "../components/src/Checkbox",
|
|
25807
25807
|
sampleProps: {
|
|
25808
25808
|
props: {
|
|
25809
25809
|
label: "Check me"
|
|
@@ -26036,7 +26036,7 @@ var types_default = {
|
|
|
26036
26036
|
}
|
|
26037
26037
|
},
|
|
26038
26038
|
category: "display",
|
|
26039
|
-
filePath: "
|
|
26039
|
+
filePath: "../components/src/Chip",
|
|
26040
26040
|
sampleProps: {
|
|
26041
26041
|
props: {
|
|
26042
26042
|
label: "Chip Label"
|
|
@@ -26317,7 +26317,7 @@ var types_default = {
|
|
|
26317
26317
|
}
|
|
26318
26318
|
},
|
|
26319
26319
|
category: "overlay",
|
|
26320
|
-
filePath: "
|
|
26320
|
+
filePath: "../components/src/Dialog",
|
|
26321
26321
|
sampleProps: {
|
|
26322
26322
|
props: {
|
|
26323
26323
|
title: "Dialog Title"
|
|
@@ -26467,7 +26467,7 @@ var types_default = {
|
|
|
26467
26467
|
}
|
|
26468
26468
|
},
|
|
26469
26469
|
category: "layout",
|
|
26470
|
-
filePath: "
|
|
26470
|
+
filePath: "../components/src/Divider"
|
|
26471
26471
|
}
|
|
26472
26472
|
},
|
|
26473
26473
|
Form: {
|
|
@@ -26525,7 +26525,7 @@ var types_default = {
|
|
|
26525
26525
|
}
|
|
26526
26526
|
},
|
|
26527
26527
|
category: "display",
|
|
26528
|
-
filePath: "
|
|
26528
|
+
filePath: "../components/src/Form"
|
|
26529
26529
|
}
|
|
26530
26530
|
},
|
|
26531
26531
|
Grid: {
|
|
@@ -26642,7 +26642,7 @@ var types_default = {
|
|
|
26642
26642
|
}
|
|
26643
26643
|
},
|
|
26644
26644
|
category: "display",
|
|
26645
|
-
filePath: "
|
|
26645
|
+
filePath: "../components/src/Grid"
|
|
26646
26646
|
}
|
|
26647
26647
|
},
|
|
26648
26648
|
IconButton: {
|
|
@@ -26809,7 +26809,7 @@ var types_default = {
|
|
|
26809
26809
|
}
|
|
26810
26810
|
},
|
|
26811
26811
|
category: "display",
|
|
26812
|
-
filePath: "
|
|
26812
|
+
filePath: "../components/src/IconButton"
|
|
26813
26813
|
}
|
|
26814
26814
|
},
|
|
26815
26815
|
Image: {
|
|
@@ -26986,7 +26986,7 @@ var types_default = {
|
|
|
26986
26986
|
}
|
|
26987
26987
|
},
|
|
26988
26988
|
category: "display",
|
|
26989
|
-
filePath: "
|
|
26989
|
+
filePath: "../components/src/Image",
|
|
26990
26990
|
sampleProps: {
|
|
26991
26991
|
props: {
|
|
26992
26992
|
source: {
|
|
@@ -27394,7 +27394,7 @@ var types_default = {
|
|
|
27394
27394
|
}
|
|
27395
27395
|
},
|
|
27396
27396
|
category: "form",
|
|
27397
|
-
filePath: "
|
|
27397
|
+
filePath: "../components/src/Input",
|
|
27398
27398
|
sampleProps: {
|
|
27399
27399
|
props: {
|
|
27400
27400
|
placeholder: "Enter text..."
|
|
@@ -27502,7 +27502,7 @@ var types_default = {
|
|
|
27502
27502
|
}
|
|
27503
27503
|
},
|
|
27504
27504
|
category: "navigation",
|
|
27505
|
-
filePath: "
|
|
27505
|
+
filePath: "../components/src/Link",
|
|
27506
27506
|
sampleProps: {
|
|
27507
27507
|
props: {
|
|
27508
27508
|
href: "#"
|
|
@@ -27646,7 +27646,7 @@ var types_default = {
|
|
|
27646
27646
|
}
|
|
27647
27647
|
},
|
|
27648
27648
|
category: "navigation",
|
|
27649
|
-
filePath: "
|
|
27649
|
+
filePath: "../components/src/List",
|
|
27650
27650
|
sampleProps: {
|
|
27651
27651
|
children: "'List items go here'"
|
|
27652
27652
|
}
|
|
@@ -27659,7 +27659,14 @@ var types_default = {
|
|
|
27659
27659
|
{
|
|
27660
27660
|
name: "children",
|
|
27661
27661
|
type: "React.ReactNode",
|
|
27662
|
-
required:
|
|
27662
|
+
required: false,
|
|
27663
|
+
description: "Trigger element that opens the menu on press/click.\nEither `children` or `anchor` must be provided."
|
|
27664
|
+
},
|
|
27665
|
+
{
|
|
27666
|
+
name: "anchor",
|
|
27667
|
+
type: "React.RefObject<any> | undefined",
|
|
27668
|
+
required: false,
|
|
27669
|
+
description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close."
|
|
27663
27670
|
},
|
|
27664
27671
|
{
|
|
27665
27672
|
name: "items",
|
|
@@ -27702,7 +27709,7 @@ var types_default = {
|
|
|
27702
27709
|
required: false
|
|
27703
27710
|
}
|
|
27704
27711
|
],
|
|
27705
|
-
typeDefinition: "export interface MenuProps extends BaseProps, InteractiveAccessibilityProps {\n children
|
|
27712
|
+
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}",
|
|
27706
27713
|
relatedTypes: {
|
|
27707
27714
|
MenuIntentVariant: "export type MenuIntentVariant = Intent;",
|
|
27708
27715
|
MenuSizeVariant: "export type MenuSizeVariant = Size;",
|
|
@@ -27712,6 +27719,12 @@ var types_default = {
|
|
|
27712
27719
|
registry: {
|
|
27713
27720
|
name: "Menu",
|
|
27714
27721
|
props: {
|
|
27722
|
+
anchor: {
|
|
27723
|
+
name: "anchor",
|
|
27724
|
+
type: "RefObject<any> | undefined",
|
|
27725
|
+
description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.",
|
|
27726
|
+
required: false
|
|
27727
|
+
},
|
|
27715
27728
|
items: {
|
|
27716
27729
|
name: "items",
|
|
27717
27730
|
type: "MenuItem[]",
|
|
@@ -27768,7 +27781,7 @@ var types_default = {
|
|
|
27768
27781
|
}
|
|
27769
27782
|
},
|
|
27770
27783
|
category: "navigation",
|
|
27771
|
-
filePath: "
|
|
27784
|
+
filePath: "../components/src/Menu",
|
|
27772
27785
|
sampleProps: {
|
|
27773
27786
|
props: {
|
|
27774
27787
|
items: [
|
|
@@ -27959,7 +27972,7 @@ var types_default = {
|
|
|
27959
27972
|
}
|
|
27960
27973
|
},
|
|
27961
27974
|
category: "overlay",
|
|
27962
|
-
filePath: "
|
|
27975
|
+
filePath: "../components/src/Popover",
|
|
27963
27976
|
sampleProps: {
|
|
27964
27977
|
props: {
|
|
27965
27978
|
open: false
|
|
@@ -27980,19 +27993,19 @@ var types_default = {
|
|
|
27980
27993
|
},
|
|
27981
27994
|
{
|
|
27982
27995
|
name: "onPress",
|
|
27983
|
-
type:
|
|
27996
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
27984
27997
|
required: false,
|
|
27985
27998
|
description: "Called when the press gesture is activated"
|
|
27986
27999
|
},
|
|
27987
28000
|
{
|
|
27988
28001
|
name: "onPressIn",
|
|
27989
|
-
type:
|
|
28002
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
27990
28003
|
required: false,
|
|
27991
28004
|
description: "Called when the press gesture starts"
|
|
27992
28005
|
},
|
|
27993
28006
|
{
|
|
27994
28007
|
name: "onPressOut",
|
|
27995
|
-
type:
|
|
28008
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
27996
28009
|
required: false,
|
|
27997
28010
|
description: "Called when the press gesture ends"
|
|
27998
28011
|
},
|
|
@@ -28027,26 +28040,26 @@ var types_default = {
|
|
|
28027
28040
|
description: "Accessibility role (web)"
|
|
28028
28041
|
}
|
|
28029
28042
|
],
|
|
28030
|
-
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}",
|
|
28043
|
+
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}",
|
|
28031
28044
|
relatedTypes: {},
|
|
28032
28045
|
registry: {
|
|
28033
28046
|
name: "Pressable",
|
|
28034
28047
|
props: {
|
|
28035
28048
|
onPress: {
|
|
28036
28049
|
name: "onPress",
|
|
28037
|
-
type: "(() => void) | undefined",
|
|
28050
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
28038
28051
|
description: "Called when the press gesture is activated",
|
|
28039
28052
|
required: false
|
|
28040
28053
|
},
|
|
28041
28054
|
onPressIn: {
|
|
28042
28055
|
name: "onPressIn",
|
|
28043
|
-
type: "(() => void) | undefined",
|
|
28056
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
28044
28057
|
description: "Called when the press gesture starts",
|
|
28045
28058
|
required: false
|
|
28046
28059
|
},
|
|
28047
28060
|
onPressOut: {
|
|
28048
28061
|
name: "onPressOut",
|
|
28049
|
-
type: "(() => void) | undefined",
|
|
28062
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
28050
28063
|
description: "Called when the press gesture ends",
|
|
28051
28064
|
required: false
|
|
28052
28065
|
},
|
|
@@ -28086,7 +28099,7 @@ var types_default = {
|
|
|
28086
28099
|
}
|
|
28087
28100
|
},
|
|
28088
28101
|
category: "display",
|
|
28089
|
-
filePath: "
|
|
28102
|
+
filePath: "../components/src/Pressable",
|
|
28090
28103
|
sampleProps: {
|
|
28091
28104
|
children: "'Press me'"
|
|
28092
28105
|
}
|
|
@@ -28233,7 +28246,7 @@ var types_default = {
|
|
|
28233
28246
|
}
|
|
28234
28247
|
},
|
|
28235
28248
|
category: "data",
|
|
28236
|
-
filePath: "
|
|
28249
|
+
filePath: "../components/src/Progress",
|
|
28237
28250
|
sampleProps: {
|
|
28238
28251
|
props: {
|
|
28239
28252
|
value: 65
|
|
@@ -28368,7 +28381,7 @@ var types_default = {
|
|
|
28368
28381
|
}
|
|
28369
28382
|
},
|
|
28370
28383
|
category: "form",
|
|
28371
|
-
filePath: "
|
|
28384
|
+
filePath: "../components/src/RadioButton",
|
|
28372
28385
|
sampleProps: {
|
|
28373
28386
|
props: {
|
|
28374
28387
|
value: "option1",
|
|
@@ -28480,7 +28493,7 @@ var types_default = {
|
|
|
28480
28493
|
}
|
|
28481
28494
|
},
|
|
28482
28495
|
category: "display",
|
|
28483
|
-
filePath: "
|
|
28496
|
+
filePath: "../components/src/SVGImage",
|
|
28484
28497
|
sampleProps: {
|
|
28485
28498
|
props: {
|
|
28486
28499
|
source: '<svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="currentColor"/></svg>',
|
|
@@ -28731,7 +28744,7 @@ var types_default = {
|
|
|
28731
28744
|
}
|
|
28732
28745
|
},
|
|
28733
28746
|
category: "layout",
|
|
28734
|
-
filePath: "
|
|
28747
|
+
filePath: "../components/src/Screen",
|
|
28735
28748
|
sampleProps: {
|
|
28736
28749
|
children: "'Screen content'"
|
|
28737
28750
|
}
|
|
@@ -29109,7 +29122,7 @@ var types_default = {
|
|
|
29109
29122
|
}
|
|
29110
29123
|
},
|
|
29111
29124
|
category: "display",
|
|
29112
|
-
filePath: "
|
|
29125
|
+
filePath: "../components/src/ScrollView",
|
|
29113
29126
|
sampleProps: {
|
|
29114
29127
|
children: "'Scrollable content'"
|
|
29115
29128
|
}
|
|
@@ -29369,7 +29382,7 @@ var types_default = {
|
|
|
29369
29382
|
}
|
|
29370
29383
|
},
|
|
29371
29384
|
category: "form",
|
|
29372
|
-
filePath: "
|
|
29385
|
+
filePath: "../components/src/Select",
|
|
29373
29386
|
sampleProps: {
|
|
29374
29387
|
props: {
|
|
29375
29388
|
options: [
|
|
@@ -29505,7 +29518,7 @@ var types_default = {
|
|
|
29505
29518
|
}
|
|
29506
29519
|
},
|
|
29507
29520
|
category: "display",
|
|
29508
|
-
filePath: "
|
|
29521
|
+
filePath: "../components/src/Skeleton",
|
|
29509
29522
|
sampleProps: {
|
|
29510
29523
|
props: {
|
|
29511
29524
|
width: 200,
|
|
@@ -29763,7 +29776,7 @@ var types_default = {
|
|
|
29763
29776
|
}
|
|
29764
29777
|
},
|
|
29765
29778
|
category: "form",
|
|
29766
|
-
filePath: "
|
|
29779
|
+
filePath: "../components/src/Slider",
|
|
29767
29780
|
sampleProps: {
|
|
29768
29781
|
props: {},
|
|
29769
29782
|
state: {
|
|
@@ -29979,7 +29992,7 @@ var types_default = {
|
|
|
29979
29992
|
}
|
|
29980
29993
|
},
|
|
29981
29994
|
category: "form",
|
|
29982
|
-
filePath: "
|
|
29995
|
+
filePath: "../components/src/Switch",
|
|
29983
29996
|
sampleProps: {
|
|
29984
29997
|
props: {},
|
|
29985
29998
|
state: {
|
|
@@ -30189,7 +30202,7 @@ var types_default = {
|
|
|
30189
30202
|
}
|
|
30190
30203
|
},
|
|
30191
30204
|
category: "navigation",
|
|
30192
|
-
filePath: "
|
|
30205
|
+
filePath: "../components/src/TabBar",
|
|
30193
30206
|
sampleProps: {
|
|
30194
30207
|
props: {
|
|
30195
30208
|
items: [
|
|
@@ -30392,7 +30405,7 @@ var types_default = {
|
|
|
30392
30405
|
}
|
|
30393
30406
|
},
|
|
30394
30407
|
category: "data",
|
|
30395
|
-
filePath: "
|
|
30408
|
+
filePath: "../components/src/Table",
|
|
30396
30409
|
sampleProps: {
|
|
30397
30410
|
props: {
|
|
30398
30411
|
columns: [
|
|
@@ -30590,7 +30603,7 @@ var types_default = {
|
|
|
30590
30603
|
}
|
|
30591
30604
|
},
|
|
30592
30605
|
category: "display",
|
|
30593
|
-
filePath: "
|
|
30606
|
+
filePath: "../components/src/Text",
|
|
30594
30607
|
sampleProps: {
|
|
30595
30608
|
children: "'Sample text content'"
|
|
30596
30609
|
}
|
|
@@ -30892,7 +30905,7 @@ var types_default = {
|
|
|
30892
30905
|
}
|
|
30893
30906
|
},
|
|
30894
30907
|
category: "form",
|
|
30895
|
-
filePath: "
|
|
30908
|
+
filePath: "../components/src/TextArea",
|
|
30896
30909
|
sampleProps: {
|
|
30897
30910
|
props: {
|
|
30898
30911
|
placeholder: "Enter text...",
|
|
@@ -31453,7 +31466,7 @@ var types_default = {
|
|
|
31453
31466
|
}
|
|
31454
31467
|
},
|
|
31455
31468
|
category: "display",
|
|
31456
|
-
filePath: "
|
|
31469
|
+
filePath: "../components/src/TextInput"
|
|
31457
31470
|
}
|
|
31458
31471
|
},
|
|
31459
31472
|
Tooltip: {
|
|
@@ -31556,7 +31569,7 @@ var types_default = {
|
|
|
31556
31569
|
}
|
|
31557
31570
|
},
|
|
31558
31571
|
category: "display",
|
|
31559
|
-
filePath: "
|
|
31572
|
+
filePath: "../components/src/Tooltip",
|
|
31560
31573
|
sampleProps: {
|
|
31561
31574
|
props: {
|
|
31562
31575
|
content: "Tooltip text"
|
|
@@ -31800,7 +31813,7 @@ var types_default = {
|
|
|
31800
31813
|
}
|
|
31801
31814
|
},
|
|
31802
31815
|
category: "display",
|
|
31803
|
-
filePath: "
|
|
31816
|
+
filePath: "../components/src/Video",
|
|
31804
31817
|
sampleProps: {
|
|
31805
31818
|
props: {
|
|
31806
31819
|
source: "https://www.w3schools.com/html/mov_bbb.mp4",
|
|
@@ -32011,7 +32024,7 @@ var types_default = {
|
|
|
32011
32024
|
}
|
|
32012
32025
|
},
|
|
32013
32026
|
category: "layout",
|
|
32014
|
-
filePath: "
|
|
32027
|
+
filePath: "../components/src/View",
|
|
32015
32028
|
sampleProps: {
|
|
32016
32029
|
children: "'View content'"
|
|
32017
32030
|
}
|
|
@@ -46997,7 +47010,7 @@ var types_default = {
|
|
|
46997
47010
|
}
|
|
46998
47011
|
},
|
|
46999
47012
|
category: "display",
|
|
47000
|
-
filePath: "
|
|
47013
|
+
filePath: "../components/src/Icon",
|
|
47001
47014
|
sampleProps: {
|
|
47002
47015
|
props: {
|
|
47003
47016
|
name: "home"
|
|
@@ -47144,7 +47157,7 @@ var types_default = {
|
|
|
47144
47157
|
}
|
|
47145
47158
|
},
|
|
47146
47159
|
category: "data",
|
|
47147
|
-
filePath: "
|
|
47160
|
+
filePath: "../components/src/Accordion",
|
|
47148
47161
|
sampleProps: {
|
|
47149
47162
|
props: {
|
|
47150
47163
|
items: [
|
|
@@ -47220,7 +47233,7 @@ var types_default = {
|
|
|
47220
47233
|
}
|
|
47221
47234
|
},
|
|
47222
47235
|
category: "display",
|
|
47223
|
-
filePath: "
|
|
47236
|
+
filePath: "../components/src/ActivityIndicator"
|
|
47224
47237
|
},
|
|
47225
47238
|
Alert: {
|
|
47226
47239
|
name: "Alert",
|
|
@@ -47315,7 +47328,7 @@ var types_default = {
|
|
|
47315
47328
|
}
|
|
47316
47329
|
},
|
|
47317
47330
|
category: "display",
|
|
47318
|
-
filePath: "
|
|
47331
|
+
filePath: "../components/src/Alert",
|
|
47319
47332
|
sampleProps: {
|
|
47320
47333
|
props: {
|
|
47321
47334
|
title: "Alert Title",
|
|
@@ -47382,7 +47395,7 @@ var types_default = {
|
|
|
47382
47395
|
}
|
|
47383
47396
|
},
|
|
47384
47397
|
category: "display",
|
|
47385
|
-
filePath: "
|
|
47398
|
+
filePath: "../components/src/Avatar",
|
|
47386
47399
|
sampleProps: {
|
|
47387
47400
|
props: {
|
|
47388
47401
|
fallback: "AB"
|
|
@@ -47451,7 +47464,7 @@ var types_default = {
|
|
|
47451
47464
|
}
|
|
47452
47465
|
},
|
|
47453
47466
|
category: "display",
|
|
47454
|
-
filePath: "
|
|
47467
|
+
filePath: "../components/src/Badge",
|
|
47455
47468
|
sampleProps: {
|
|
47456
47469
|
children: "'3'"
|
|
47457
47470
|
}
|
|
@@ -47537,7 +47550,7 @@ var types_default = {
|
|
|
47537
47550
|
}
|
|
47538
47551
|
},
|
|
47539
47552
|
category: "navigation",
|
|
47540
|
-
filePath: "
|
|
47553
|
+
filePath: "../components/src/Breadcrumb",
|
|
47541
47554
|
sampleProps: {
|
|
47542
47555
|
props: {
|
|
47543
47556
|
items: [
|
|
@@ -47560,13 +47573,13 @@ var types_default = {
|
|
|
47560
47573
|
props: {
|
|
47561
47574
|
onPress: {
|
|
47562
47575
|
name: "onPress",
|
|
47563
|
-
type: "(() => void) | undefined",
|
|
47576
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
47564
47577
|
description: "Called when the button is pressed",
|
|
47565
47578
|
required: false
|
|
47566
47579
|
},
|
|
47567
47580
|
onClick: {
|
|
47568
47581
|
name: "onClick",
|
|
47569
|
-
type: "(() => void) | undefined",
|
|
47582
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
47570
47583
|
required: false
|
|
47571
47584
|
},
|
|
47572
47585
|
disabled: {
|
|
@@ -47650,7 +47663,7 @@ var types_default = {
|
|
|
47650
47663
|
}
|
|
47651
47664
|
},
|
|
47652
47665
|
category: "form",
|
|
47653
|
-
filePath: "
|
|
47666
|
+
filePath: "../components/src/Button",
|
|
47654
47667
|
sampleProps: {
|
|
47655
47668
|
children: "'Click Me'"
|
|
47656
47669
|
}
|
|
@@ -47773,7 +47786,7 @@ var types_default = {
|
|
|
47773
47786
|
}
|
|
47774
47787
|
},
|
|
47775
47788
|
category: "display",
|
|
47776
|
-
filePath: "
|
|
47789
|
+
filePath: "../components/src/Card",
|
|
47777
47790
|
sampleProps: {
|
|
47778
47791
|
children: "'Card content goes here'"
|
|
47779
47792
|
}
|
|
@@ -47894,7 +47907,7 @@ var types_default = {
|
|
|
47894
47907
|
}
|
|
47895
47908
|
},
|
|
47896
47909
|
category: "form",
|
|
47897
|
-
filePath: "
|
|
47910
|
+
filePath: "../components/src/Checkbox",
|
|
47898
47911
|
sampleProps: {
|
|
47899
47912
|
props: {
|
|
47900
47913
|
label: "Check me"
|
|
@@ -48025,7 +48038,7 @@ var types_default = {
|
|
|
48025
48038
|
}
|
|
48026
48039
|
},
|
|
48027
48040
|
category: "display",
|
|
48028
|
-
filePath: "
|
|
48041
|
+
filePath: "../components/src/Chip",
|
|
48029
48042
|
sampleProps: {
|
|
48030
48043
|
props: {
|
|
48031
48044
|
label: "Chip Label"
|
|
@@ -48180,7 +48193,7 @@ var types_default = {
|
|
|
48180
48193
|
}
|
|
48181
48194
|
},
|
|
48182
48195
|
category: "overlay",
|
|
48183
|
-
filePath: "
|
|
48196
|
+
filePath: "../components/src/Dialog",
|
|
48184
48197
|
sampleProps: {
|
|
48185
48198
|
props: {
|
|
48186
48199
|
title: "Dialog Title"
|
|
@@ -48255,7 +48268,7 @@ var types_default = {
|
|
|
48255
48268
|
}
|
|
48256
48269
|
},
|
|
48257
48270
|
category: "layout",
|
|
48258
|
-
filePath: "
|
|
48271
|
+
filePath: "../components/src/Divider"
|
|
48259
48272
|
},
|
|
48260
48273
|
Form: {
|
|
48261
48274
|
name: "Form",
|
|
@@ -48272,7 +48285,7 @@ var types_default = {
|
|
|
48272
48285
|
}
|
|
48273
48286
|
},
|
|
48274
48287
|
category: "display",
|
|
48275
|
-
filePath: "
|
|
48288
|
+
filePath: "../components/src/Form"
|
|
48276
48289
|
},
|
|
48277
48290
|
Grid: {
|
|
48278
48291
|
name: "Grid",
|
|
@@ -48342,7 +48355,7 @@ var types_default = {
|
|
|
48342
48355
|
}
|
|
48343
48356
|
},
|
|
48344
48357
|
category: "display",
|
|
48345
|
-
filePath: "
|
|
48358
|
+
filePath: "../components/src/Grid"
|
|
48346
48359
|
},
|
|
48347
48360
|
Icon: {
|
|
48348
48361
|
name: "Icon",
|
|
@@ -63282,7 +63295,7 @@ var types_default = {
|
|
|
63282
63295
|
}
|
|
63283
63296
|
},
|
|
63284
63297
|
category: "display",
|
|
63285
|
-
filePath: "
|
|
63298
|
+
filePath: "../components/src/Icon",
|
|
63286
63299
|
sampleProps: {
|
|
63287
63300
|
props: {
|
|
63288
63301
|
name: "home"
|
|
@@ -63375,7 +63388,7 @@ var types_default = {
|
|
|
63375
63388
|
}
|
|
63376
63389
|
},
|
|
63377
63390
|
category: "display",
|
|
63378
|
-
filePath: "
|
|
63391
|
+
filePath: "../components/src/IconButton"
|
|
63379
63392
|
},
|
|
63380
63393
|
Image: {
|
|
63381
63394
|
name: "Image",
|
|
@@ -63467,7 +63480,7 @@ var types_default = {
|
|
|
63467
63480
|
}
|
|
63468
63481
|
},
|
|
63469
63482
|
category: "display",
|
|
63470
|
-
filePath: "
|
|
63483
|
+
filePath: "../components/src/Image",
|
|
63471
63484
|
sampleProps: {
|
|
63472
63485
|
props: {
|
|
63473
63486
|
source: {
|
|
@@ -63651,7 +63664,7 @@ var types_default = {
|
|
|
63651
63664
|
}
|
|
63652
63665
|
},
|
|
63653
63666
|
category: "form",
|
|
63654
|
-
filePath: "
|
|
63667
|
+
filePath: "../components/src/Input",
|
|
63655
63668
|
sampleProps: {
|
|
63656
63669
|
props: {
|
|
63657
63670
|
placeholder: "Enter text..."
|
|
@@ -63703,7 +63716,7 @@ var types_default = {
|
|
|
63703
63716
|
}
|
|
63704
63717
|
},
|
|
63705
63718
|
category: "navigation",
|
|
63706
|
-
filePath: "
|
|
63719
|
+
filePath: "../components/src/Link",
|
|
63707
63720
|
sampleProps: {
|
|
63708
63721
|
props: {
|
|
63709
63722
|
href: "#"
|
|
@@ -63800,7 +63813,7 @@ var types_default = {
|
|
|
63800
63813
|
}
|
|
63801
63814
|
},
|
|
63802
63815
|
category: "navigation",
|
|
63803
|
-
filePath: "
|
|
63816
|
+
filePath: "../components/src/List",
|
|
63804
63817
|
sampleProps: {
|
|
63805
63818
|
children: "'List items go here'"
|
|
63806
63819
|
}
|
|
@@ -63808,6 +63821,12 @@ var types_default = {
|
|
|
63808
63821
|
Menu: {
|
|
63809
63822
|
name: "Menu",
|
|
63810
63823
|
props: {
|
|
63824
|
+
anchor: {
|
|
63825
|
+
name: "anchor",
|
|
63826
|
+
type: "RefObject<any> | undefined",
|
|
63827
|
+
description: "External anchor ref to position the menu relative to.\nWhen provided, no trigger wrapper is rendered \u2014 the consumer controls open/close.",
|
|
63828
|
+
required: false
|
|
63829
|
+
},
|
|
63811
63830
|
items: {
|
|
63812
63831
|
name: "items",
|
|
63813
63832
|
type: "MenuItem[]",
|
|
@@ -63864,7 +63883,7 @@ var types_default = {
|
|
|
63864
63883
|
}
|
|
63865
63884
|
},
|
|
63866
63885
|
category: "navigation",
|
|
63867
|
-
filePath: "
|
|
63886
|
+
filePath: "../components/src/Menu",
|
|
63868
63887
|
sampleProps: {
|
|
63869
63888
|
props: {
|
|
63870
63889
|
items: [
|
|
@@ -63979,7 +63998,7 @@ var types_default = {
|
|
|
63979
63998
|
}
|
|
63980
63999
|
},
|
|
63981
64000
|
category: "overlay",
|
|
63982
|
-
filePath: "
|
|
64001
|
+
filePath: "../components/src/Popover",
|
|
63983
64002
|
sampleProps: {
|
|
63984
64003
|
props: {
|
|
63985
64004
|
open: false
|
|
@@ -63992,19 +64011,19 @@ var types_default = {
|
|
|
63992
64011
|
props: {
|
|
63993
64012
|
onPress: {
|
|
63994
64013
|
name: "onPress",
|
|
63995
|
-
type: "(() => void) | undefined",
|
|
64014
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
63996
64015
|
description: "Called when the press gesture is activated",
|
|
63997
64016
|
required: false
|
|
63998
64017
|
},
|
|
63999
64018
|
onPressIn: {
|
|
64000
64019
|
name: "onPressIn",
|
|
64001
|
-
type: "(() => void) | undefined",
|
|
64020
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
64002
64021
|
description: "Called when the press gesture starts",
|
|
64003
64022
|
required: false
|
|
64004
64023
|
},
|
|
64005
64024
|
onPressOut: {
|
|
64006
64025
|
name: "onPressOut",
|
|
64007
|
-
type: "(() => void) | undefined",
|
|
64026
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
64008
64027
|
description: "Called when the press gesture ends",
|
|
64009
64028
|
required: false
|
|
64010
64029
|
},
|
|
@@ -64044,7 +64063,7 @@ var types_default = {
|
|
|
64044
64063
|
}
|
|
64045
64064
|
},
|
|
64046
64065
|
category: "display",
|
|
64047
|
-
filePath: "
|
|
64066
|
+
filePath: "../components/src/Pressable",
|
|
64048
64067
|
sampleProps: {
|
|
64049
64068
|
children: "'Press me'"
|
|
64050
64069
|
}
|
|
@@ -64123,7 +64142,7 @@ var types_default = {
|
|
|
64123
64142
|
}
|
|
64124
64143
|
},
|
|
64125
64144
|
category: "data",
|
|
64126
|
-
filePath: "
|
|
64145
|
+
filePath: "../components/src/Progress",
|
|
64127
64146
|
sampleProps: {
|
|
64128
64147
|
props: {
|
|
64129
64148
|
value: 65
|
|
@@ -64202,7 +64221,7 @@ var types_default = {
|
|
|
64202
64221
|
}
|
|
64203
64222
|
},
|
|
64204
64223
|
category: "form",
|
|
64205
|
-
filePath: "
|
|
64224
|
+
filePath: "../components/src/RadioButton",
|
|
64206
64225
|
sampleProps: {
|
|
64207
64226
|
props: {
|
|
64208
64227
|
value: "option1",
|
|
@@ -64268,7 +64287,7 @@ var types_default = {
|
|
|
64268
64287
|
}
|
|
64269
64288
|
},
|
|
64270
64289
|
category: "display",
|
|
64271
|
-
filePath: "
|
|
64290
|
+
filePath: "../components/src/SVGImage",
|
|
64272
64291
|
sampleProps: {
|
|
64273
64292
|
props: {
|
|
64274
64293
|
source: '<svg viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="currentColor"/></svg>',
|
|
@@ -64427,7 +64446,7 @@ var types_default = {
|
|
|
64427
64446
|
}
|
|
64428
64447
|
},
|
|
64429
64448
|
category: "layout",
|
|
64430
|
-
filePath: "
|
|
64449
|
+
filePath: "../components/src/Screen",
|
|
64431
64450
|
sampleProps: {
|
|
64432
64451
|
children: "'Screen content'"
|
|
64433
64452
|
}
|
|
@@ -64643,7 +64662,7 @@ var types_default = {
|
|
|
64643
64662
|
}
|
|
64644
64663
|
},
|
|
64645
64664
|
category: "display",
|
|
64646
|
-
filePath: "
|
|
64665
|
+
filePath: "../components/src/ScrollView",
|
|
64647
64666
|
sampleProps: {
|
|
64648
64667
|
children: "'Scrollable content'"
|
|
64649
64668
|
}
|
|
@@ -64788,7 +64807,7 @@ var types_default = {
|
|
|
64788
64807
|
}
|
|
64789
64808
|
},
|
|
64790
64809
|
category: "form",
|
|
64791
|
-
filePath: "
|
|
64810
|
+
filePath: "../components/src/Select",
|
|
64792
64811
|
sampleProps: {
|
|
64793
64812
|
props: {
|
|
64794
64813
|
options: [
|
|
@@ -64871,7 +64890,7 @@ var types_default = {
|
|
|
64871
64890
|
}
|
|
64872
64891
|
},
|
|
64873
64892
|
category: "display",
|
|
64874
|
-
filePath: "
|
|
64893
|
+
filePath: "../components/src/Skeleton",
|
|
64875
64894
|
sampleProps: {
|
|
64876
64895
|
props: {
|
|
64877
64896
|
width: 200,
|
|
@@ -65016,7 +65035,7 @@ var types_default = {
|
|
|
65016
65035
|
}
|
|
65017
65036
|
},
|
|
65018
65037
|
category: "form",
|
|
65019
|
-
filePath: "
|
|
65038
|
+
filePath: "../components/src/Slider",
|
|
65020
65039
|
sampleProps: {
|
|
65021
65040
|
props: {},
|
|
65022
65041
|
state: {
|
|
@@ -65143,7 +65162,7 @@ var types_default = {
|
|
|
65143
65162
|
}
|
|
65144
65163
|
},
|
|
65145
65164
|
category: "form",
|
|
65146
|
-
filePath: "
|
|
65165
|
+
filePath: "../components/src/Switch",
|
|
65147
65166
|
sampleProps: {
|
|
65148
65167
|
props: {},
|
|
65149
65168
|
state: {
|
|
@@ -65280,7 +65299,7 @@ var types_default = {
|
|
|
65280
65299
|
}
|
|
65281
65300
|
},
|
|
65282
65301
|
category: "navigation",
|
|
65283
|
-
filePath: "
|
|
65302
|
+
filePath: "../components/src/TabBar",
|
|
65284
65303
|
sampleProps: {
|
|
65285
65304
|
props: {
|
|
65286
65305
|
items: [
|
|
@@ -65417,7 +65436,7 @@ var types_default = {
|
|
|
65417
65436
|
}
|
|
65418
65437
|
},
|
|
65419
65438
|
category: "data",
|
|
65420
|
-
filePath: "
|
|
65439
|
+
filePath: "../components/src/Table",
|
|
65421
65440
|
sampleProps: {
|
|
65422
65441
|
props: {
|
|
65423
65442
|
columns: [
|
|
@@ -65547,7 +65566,7 @@ var types_default = {
|
|
|
65547
65566
|
}
|
|
65548
65567
|
},
|
|
65549
65568
|
category: "display",
|
|
65550
|
-
filePath: "
|
|
65569
|
+
filePath: "../components/src/Text",
|
|
65551
65570
|
sampleProps: {
|
|
65552
65571
|
children: "'Sample text content'"
|
|
65553
65572
|
}
|
|
@@ -65717,7 +65736,7 @@ var types_default = {
|
|
|
65717
65736
|
}
|
|
65718
65737
|
},
|
|
65719
65738
|
category: "form",
|
|
65720
|
-
filePath: "
|
|
65739
|
+
filePath: "../components/src/TextArea",
|
|
65721
65740
|
sampleProps: {
|
|
65722
65741
|
props: {
|
|
65723
65742
|
placeholder: "Enter text...",
|
|
@@ -65969,7 +65988,7 @@ var types_default = {
|
|
|
65969
65988
|
}
|
|
65970
65989
|
},
|
|
65971
65990
|
category: "display",
|
|
65972
|
-
filePath: "
|
|
65991
|
+
filePath: "../components/src/TextInput"
|
|
65973
65992
|
},
|
|
65974
65993
|
Tooltip: {
|
|
65975
65994
|
name: "Tooltip",
|
|
@@ -66019,7 +66038,7 @@ var types_default = {
|
|
|
66019
66038
|
}
|
|
66020
66039
|
},
|
|
66021
66040
|
category: "display",
|
|
66022
|
-
filePath: "
|
|
66041
|
+
filePath: "../components/src/Tooltip",
|
|
66023
66042
|
sampleProps: {
|
|
66024
66043
|
props: {
|
|
66025
66044
|
content: "Tooltip text"
|
|
@@ -66153,7 +66172,7 @@ var types_default = {
|
|
|
66153
66172
|
}
|
|
66154
66173
|
},
|
|
66155
66174
|
category: "display",
|
|
66156
|
-
filePath: "
|
|
66175
|
+
filePath: "../components/src/Video",
|
|
66157
66176
|
sampleProps: {
|
|
66158
66177
|
props: {
|
|
66159
66178
|
source: "https://www.w3schools.com/html/mov_bbb.mp4",
|
|
@@ -66279,7 +66298,7 @@ var types_default = {
|
|
|
66279
66298
|
}
|
|
66280
66299
|
},
|
|
66281
66300
|
category: "layout",
|
|
66282
|
-
filePath: "
|
|
66301
|
+
filePath: "../components/src/View",
|
|
66283
66302
|
sampleProps: {
|
|
66284
66303
|
children: "'View content'"
|
|
66285
66304
|
}
|