@wix/ditto-codegen-public 1.0.256 → 1.0.257
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/out.js +39 -33
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -74142,6 +74142,37 @@ var require_DashboardPlugins = __commonJS({
|
|
|
74142
74142
|
}
|
|
74143
74143
|
});
|
|
74144
74144
|
|
|
74145
|
+
// ../codegen-common-logic/dist/extensions/DashboardMenuPlugins.js
|
|
74146
|
+
var require_DashboardMenuPlugins = __commonJS({
|
|
74147
|
+
"../codegen-common-logic/dist/extensions/DashboardMenuPlugins.js"(exports2) {
|
|
74148
|
+
"use strict";
|
|
74149
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
74150
|
+
exports2.getDashboardMenuPluginsDecisionGuide = exports2.getDashboardMenuPluginsAgentDocumentation = void 0;
|
|
74151
|
+
var getDashboardMenuPluginsAgentDocumentation = () => {
|
|
74152
|
+
return `<dashboard_menu_plugins>
|
|
74153
|
+
#### Dashboard Menu Plugins
|
|
74154
|
+
|
|
74155
|
+
- **Description**: Menu items added to dashboard page menus that can navigate to pages or open modals
|
|
74156
|
+
- **Use Cases**:
|
|
74157
|
+
- Quick access to app features
|
|
74158
|
+
- Navigation shortcuts
|
|
74159
|
+
- Context-specific actions
|
|
74160
|
+
- **When to Choose**: When you need to add navigation items or quick actions to existing dashboard menus
|
|
74161
|
+
</dashboard_menu_plugins>`;
|
|
74162
|
+
};
|
|
74163
|
+
exports2.getDashboardMenuPluginsAgentDocumentation = getDashboardMenuPluginsAgentDocumentation;
|
|
74164
|
+
var getDashboardMenuPluginsDecisionGuide = () => {
|
|
74165
|
+
return `### Choose Dashboard Menu Plugins when:
|
|
74166
|
+
|
|
74167
|
+
- \u2705 Need to add custom navigation items to the dashboard sidebar
|
|
74168
|
+
- \u2705 Want quick-access shortcuts to app features from the dashboard menu
|
|
74169
|
+
- \u2705 Need context-specific actions accessible from dashboard navigation
|
|
74170
|
+
- \u2705 Want to link dashboard menu items to Dashboard Pages`;
|
|
74171
|
+
};
|
|
74172
|
+
exports2.getDashboardMenuPluginsDecisionGuide = getDashboardMenuPluginsDecisionGuide;
|
|
74173
|
+
}
|
|
74174
|
+
});
|
|
74175
|
+
|
|
74145
74176
|
// ../codegen-common-logic/dist/extensions/DashboardExtensions.js
|
|
74146
74177
|
var require_DashboardExtensions = __commonJS({
|
|
74147
74178
|
"../codegen-common-logic/dist/extensions/DashboardExtensions.js"(exports2) {
|
|
@@ -74150,12 +74181,15 @@ var require_DashboardExtensions = __commonJS({
|
|
|
74150
74181
|
exports2.getDashboardExtensionsDocumentation = void 0;
|
|
74151
74182
|
var DashboardPageAgent_1 = require_DashboardPageAgent();
|
|
74152
74183
|
var DashboardPlugins_1 = require_DashboardPlugins();
|
|
74184
|
+
var DashboardMenuPlugins_1 = require_DashboardMenuPlugins();
|
|
74153
74185
|
var getDashboardExtensionsDocumentation = (options) => {
|
|
74154
74186
|
return `### Dashboard Extensions
|
|
74155
74187
|
Dashboard extensions add functionality to the Wix Dashboard for site administrators. They are not visible on live sites.
|
|
74156
74188
|
${(0, DashboardPageAgent_1.getDashboardPageAgentDocumentation)()}${options?.enableNewExtensions ? `
|
|
74157
74189
|
|
|
74158
|
-
${(0, DashboardPlugins_1.getDashboardPluginsAgentDocumentation)()}
|
|
74190
|
+
${(0, DashboardPlugins_1.getDashboardPluginsAgentDocumentation)()}
|
|
74191
|
+
|
|
74192
|
+
${(0, DashboardMenuPlugins_1.getDashboardMenuPluginsAgentDocumentation)()}` : ""}`;
|
|
74159
74193
|
};
|
|
74160
74194
|
exports2.getDashboardExtensionsDocumentation = getDashboardExtensionsDocumentation;
|
|
74161
74195
|
}
|
|
@@ -74330,37 +74364,6 @@ ${(0, SitePluginAgent_1.getSitePluginAgentDocumentation)()}` : ""}`;
|
|
|
74330
74364
|
}
|
|
74331
74365
|
});
|
|
74332
74366
|
|
|
74333
|
-
// ../codegen-common-logic/dist/extensions/DashboardMenuPlugins.js
|
|
74334
|
-
var require_DashboardMenuPlugins = __commonJS({
|
|
74335
|
-
"../codegen-common-logic/dist/extensions/DashboardMenuPlugins.js"(exports2) {
|
|
74336
|
-
"use strict";
|
|
74337
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
74338
|
-
exports2.getDashboardMenuPluginsDecisionGuide = exports2.getDashboardMenuPluginsAgentDocumentation = void 0;
|
|
74339
|
-
var getDashboardMenuPluginsAgentDocumentation = () => {
|
|
74340
|
-
return `<dashboard_menu_plugins>
|
|
74341
|
-
#### Dashboard Menu Plugins
|
|
74342
|
-
|
|
74343
|
-
- **Description**: Menu items added to dashboard page menus that can navigate to pages or open modals
|
|
74344
|
-
- **Use Cases**:
|
|
74345
|
-
- Quick access to app features
|
|
74346
|
-
- Navigation shortcuts
|
|
74347
|
-
- Context-specific actions
|
|
74348
|
-
- **When to Choose**: When you need to add navigation items or quick actions to existing dashboard menus
|
|
74349
|
-
</dashboard_menu_plugins>`;
|
|
74350
|
-
};
|
|
74351
|
-
exports2.getDashboardMenuPluginsAgentDocumentation = getDashboardMenuPluginsAgentDocumentation;
|
|
74352
|
-
var getDashboardMenuPluginsDecisionGuide = () => {
|
|
74353
|
-
return `### Choose Dashboard Menu Plugins when:
|
|
74354
|
-
|
|
74355
|
-
- \u2705 Need to add custom navigation items to the dashboard sidebar
|
|
74356
|
-
- \u2705 Want quick-access shortcuts to app features from the dashboard menu
|
|
74357
|
-
- \u2705 Need context-specific actions accessible from dashboard navigation
|
|
74358
|
-
- \u2705 Want to link dashboard menu items to Dashboard Pages`;
|
|
74359
|
-
};
|
|
74360
|
-
exports2.getDashboardMenuPluginsDecisionGuide = getDashboardMenuPluginsDecisionGuide;
|
|
74361
|
-
}
|
|
74362
|
-
});
|
|
74363
|
-
|
|
74364
74367
|
// ../codegen-common-logic/dist/extensions/DashboardModals.js
|
|
74365
74368
|
var require_DashboardModals = __commonJS({
|
|
74366
74369
|
"../codegen-common-logic/dist/extensions/DashboardModals.js"(exports2) {
|
|
@@ -74401,6 +74404,7 @@ var require_extensionsDecisionGuide = __commonJS({
|
|
|
74401
74404
|
exports2.getExtensionDecisionMatrix = void 0;
|
|
74402
74405
|
var DashboardPageAgent_1 = require_DashboardPageAgent();
|
|
74403
74406
|
var DashboardPlugins_1 = require_DashboardPlugins();
|
|
74407
|
+
var DashboardMenuPlugins_1 = require_DashboardMenuPlugins();
|
|
74404
74408
|
var EmbeddedScriptAgent_1 = require_EmbeddedScriptAgent();
|
|
74405
74409
|
var CustomElementAgent_1 = require_CustomElementAgent();
|
|
74406
74410
|
var SiteComponentAgent_1 = require_SiteComponentAgent();
|
|
@@ -74413,7 +74417,9 @@ var require_extensionsDecisionGuide = __commonJS({
|
|
|
74413
74417
|
return `## Decision Matrix
|
|
74414
74418
|
${(0, DashboardPageAgent_1.getDashboardPageDecisionGuide)()}${options?.enableNewExtensions ? `
|
|
74415
74419
|
|
|
74416
|
-
${(0, DashboardPlugins_1.getDashboardPluginsDecisionGuide)()}
|
|
74420
|
+
${(0, DashboardPlugins_1.getDashboardPluginsDecisionGuide)()}
|
|
74421
|
+
|
|
74422
|
+
${(0, DashboardMenuPlugins_1.getDashboardMenuPluginsDecisionGuide)()}` : ""}
|
|
74417
74423
|
|
|
74418
74424
|
${(0, EmbeddedScriptAgent_1.getEmbeddedScriptDecisionGuide)()}
|
|
74419
74425
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.257",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"@wix/ditto-codegen": "1.0.0",
|
|
29
29
|
"esbuild": "^0.27.2"
|
|
30
30
|
},
|
|
31
|
-
"falconPackageHash": "
|
|
31
|
+
"falconPackageHash": "2455a6117fa6491878908d825a2d5a0062badeb3dc5dfdd112e41d1e"
|
|
32
32
|
}
|