@corva/ui 3.54.0-7 → 3.54.0-8
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/cjs-bundle/componentsV2/AppContainer/AppContainer.js +1 -1
- package/cjs-bundle/componentsV2/AppHeader/AppHeader.js +1 -1
- package/cjs-bundle/componentsV2/AppHeader/V3/Actions/Actions.js +1 -1
- package/cjs-bundle/componentsV2/AppHeader/V3/AppHeaderV3.js +1 -1
- package/cjs-bundle/componentsV2/AppSettings/AppSettings.js +1 -1
- package/cjs-bundle/componentsV2/AppSettings/AppSettingsPinningContext.js +1 -1
- package/componentsV2/AppContainer/AppContainer.d.ts +2 -0
- package/componentsV2/AppContainer/AppContainer.d.ts.map +1 -1
- package/componentsV2/AppContainer/AppContainer.js +1 -1
- package/componentsV2/AppHeader/AppHeader.d.ts +1 -5
- package/componentsV2/AppHeader/AppHeader.d.ts.map +1 -1
- package/componentsV2/AppHeader/AppHeader.js +1 -1
- package/componentsV2/AppHeader/V3/Actions/Actions.d.ts +1 -2
- package/componentsV2/AppHeader/V3/Actions/Actions.d.ts.map +1 -1
- package/componentsV2/AppHeader/V3/Actions/Actions.js +1 -1
- package/componentsV2/AppHeader/V3/AppHeaderV3.d.ts +0 -1
- package/componentsV2/AppHeader/V3/AppHeaderV3.d.ts.map +1 -1
- package/componentsV2/AppHeader/V3/AppHeaderV3.js +1 -1
- package/componentsV2/AppHeader/V3/AppHeaderV3.stories.d.ts +2 -1
- package/componentsV2/AppHeader/V3/AppHeaderV3.stories.d.ts.map +1 -1
- package/componentsV2/AppSettings/AppSettings.d.ts +0 -1
- package/componentsV2/AppSettings/AppSettings.d.ts.map +1 -1
- package/componentsV2/AppSettings/AppSettings.js +1 -1
- package/componentsV2/AppSettings/AppSettingsPinningContext.d.ts +3 -1
- package/componentsV2/AppSettings/AppSettingsPinningContext.d.ts.map +1 -1
- package/componentsV2/AppSettings/AppSettingsPinningContext.js +1 -1
- package/mcp-server/server.mjs +13 -13
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/mcp-server/server.mjs
CHANGED
|
@@ -227,7 +227,7 @@ const validateDsn = (dsn) => {
|
|
|
227
227
|
|
|
228
228
|
const MCP_SERVER_VERSION = '1.0.0';
|
|
229
229
|
|
|
230
|
-
var version = "3.54.0-
|
|
230
|
+
var version = "3.54.0-8";
|
|
231
231
|
|
|
232
232
|
const CORVA_UI_VERSION = version;
|
|
233
233
|
|
|
@@ -881,6 +881,18 @@ var componentsV2Data = [
|
|
|
881
881
|
required: false,
|
|
882
882
|
description: "An escape hatch to tweak styling of internal elements"
|
|
883
883
|
},
|
|
884
|
+
{
|
|
885
|
+
name: "settingsInitiallyPinned",
|
|
886
|
+
type: "boolean",
|
|
887
|
+
required: false,
|
|
888
|
+
description: ""
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
name: "settingsPinningEnabled",
|
|
892
|
+
type: "boolean",
|
|
893
|
+
required: false,
|
|
894
|
+
description: ""
|
|
895
|
+
},
|
|
884
896
|
{
|
|
885
897
|
name: "className",
|
|
886
898
|
type: "string",
|
|
@@ -1212,12 +1224,6 @@ var componentsV2Data = [
|
|
|
1212
1224
|
required: false,
|
|
1213
1225
|
description: "**(V3 only)** Disables settings button"
|
|
1214
1226
|
},
|
|
1215
|
-
{
|
|
1216
|
-
name: "disableSettingsPin",
|
|
1217
|
-
type: "boolean",
|
|
1218
|
-
required: false,
|
|
1219
|
-
description: "**(V3 only)** Disables Settings pinning (you still can unpin)"
|
|
1220
|
-
},
|
|
1221
1227
|
{
|
|
1222
1228
|
name: "showAssetChips",
|
|
1223
1229
|
type: "boolean",
|
|
@@ -1333,12 +1339,6 @@ var componentsV2Data = [
|
|
|
1333
1339
|
type: "CSSProperties",
|
|
1334
1340
|
required: false,
|
|
1335
1341
|
description: ""
|
|
1336
|
-
},
|
|
1337
|
-
{
|
|
1338
|
-
name: "disableSettingsPin",
|
|
1339
|
-
type: "boolean",
|
|
1340
|
-
required: false,
|
|
1341
|
-
description: ""
|
|
1342
1342
|
}
|
|
1343
1343
|
],
|
|
1344
1344
|
examples: [
|