@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
|
@@ -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-
|
|
24186
|
+
extractedAt: "2026-03-26T21:04:11.154Z",
|
|
24187
24187
|
components: {
|
|
24188
24188
|
Accordion: {
|
|
24189
24189
|
name: "Accordion",
|
|
@@ -26545,13 +26545,13 @@ var types_default = {
|
|
|
26545
26545
|
},
|
|
26546
26546
|
{
|
|
26547
26547
|
name: "onPress",
|
|
26548
|
-
type:
|
|
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:
|
|
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: {
|
|
@@ -63206,13 +63206,13 @@ var types_default = {
|
|
|
63206
63206
|
},
|
|
63207
63207
|
onPress: {
|
|
63208
63208
|
name: "onPress",
|
|
63209
|
-
type: "(() => void) | undefined",
|
|
63209
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
63210
63210
|
description: "Called when the button is pressed",
|
|
63211
63211
|
required: false
|
|
63212
63212
|
},
|
|
63213
63213
|
onClick: {
|
|
63214
63214
|
name: "onClick",
|
|
63215
|
-
type: "(() => void) | undefined",
|
|
63215
|
+
type: "((event: PressEvent) => void) | undefined",
|
|
63216
63216
|
required: false
|
|
63217
63217
|
},
|
|
63218
63218
|
disabled: {
|
|
@@ -67731,4 +67731,4 @@ export {
|
|
|
67731
67731
|
toolHandlers,
|
|
67732
67732
|
callTool
|
|
67733
67733
|
};
|
|
67734
|
-
//# sourceMappingURL=chunk-
|
|
67734
|
+
//# sourceMappingURL=chunk-WWUXNKB4.js.map
|