@idealyst/mcp-server 1.2.133 → 1.2.135
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-QM67ZCZ4.js → chunk-WWUXNKB4.js} +9 -9
- package/dist/{chunk-QM67ZCZ4.js.map → chunk-WWUXNKB4.js.map} +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools/index.cjs +8 -8
- package/dist/tools/index.cjs.map +1 -1
- package/dist/tools/index.js +1 -1
- package/package.json +5 -5
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-
|
|
28898
|
+
extractedAt: "2026-03-26T21:04:11.154Z",
|
|
28899
28899
|
components: {
|
|
28900
28900
|
Accordion: {
|
|
28901
28901
|
name: "Accordion",
|
|
@@ -31257,13 +31257,13 @@ var types_default = {
|
|
|
31257
31257
|
},
|
|
31258
31258
|
{
|
|
31259
31259
|
name: "onPress",
|
|
31260
|
-
type:
|
|
31260
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
31261
31261
|
required: false,
|
|
31262
31262
|
description: "Called when the button is pressed"
|
|
31263
31263
|
},
|
|
31264
31264
|
{
|
|
31265
31265
|
name: "onClick",
|
|
31266
|
-
type:
|
|
31266
|
+
type: '((event: import("/home/nicho/Development/idealyst-framework/packages/components/src/utils/events/types").PressEvent) => void) | undefined',
|
|
31267
31267
|
required: false,
|
|
31268
31268
|
description: ""
|
|
31269
31269
|
},
|
|
@@ -31316,7 +31316,7 @@ var types_default = {
|
|
|
31316
31316
|
description: "Test ID for testing"
|
|
31317
31317
|
}
|
|
31318
31318
|
],
|
|
31319
|
-
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}",
|
|
31319
|
+
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}",
|
|
31320
31320
|
relatedTypes: {
|
|
31321
31321
|
IconButtonType: "export type IconButtonType = 'contained' | 'outlined' | 'text';",
|
|
31322
31322
|
IconButtonIntentVariant: "export type IconButtonIntentVariant = Intent;",
|
|
@@ -31339,13 +31339,13 @@ var types_default = {
|
|
|
31339
31339
|
},
|
|
31340
31340
|
onPress: {
|
|
31341
31341
|
name: "onPress",
|
|
31342
|
-
type: "(() => void) | undefined",
|
|
31342
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
31343
31343
|
description: "Called when the button is pressed",
|
|
31344
31344
|
required: false
|
|
31345
31345
|
},
|
|
31346
31346
|
onClick: {
|
|
31347
31347
|
name: "onClick",
|
|
31348
|
-
type: "(() => void) | undefined",
|
|
31348
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
31349
31349
|
required: false
|
|
31350
31350
|
},
|
|
31351
31351
|
disabled: {
|
|
@@ -67918,13 +67918,13 @@ var types_default = {
|
|
|
67918
67918
|
},
|
|
67919
67919
|
onPress: {
|
|
67920
67920
|
name: "onPress",
|
|
67921
|
-
type: "(() => void) | undefined",
|
|
67921
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
67922
67922
|
description: "Called when the button is pressed",
|
|
67923
67923
|
required: false
|
|
67924
67924
|
},
|
|
67925
67925
|
onClick: {
|
|
67926
67926
|
name: "onClick",
|
|
67927
|
-
type: "(() => void) | undefined",
|
|
67927
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
67928
67928
|
required: false
|
|
67929
67929
|
},
|
|
67930
67930
|
disabled: {
|