@trops/dash-core 0.1.412 → 0.1.414
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/electron/index.js +85 -11
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +7 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -40542,7 +40542,13 @@ var PublishDashboardModal = function PublishDashboardModal(_ref) {
|
|
|
40542
40542
|
options = _objectSpread$q(_objectSpread$q({}, bump && bump !== "none" ? {
|
|
40543
40543
|
bump: bump
|
|
40544
40544
|
} : {}), {}, {
|
|
40545
|
-
visibility: _step3.selection.visibility
|
|
40545
|
+
visibility: _step3.selection.visibility,
|
|
40546
|
+
// Plumb the publisher's display name through to the widget
|
|
40547
|
+
// publish call so the manifest — and the rewritten dash.json
|
|
40548
|
+
// inside the zipped package — records the actual human who
|
|
40549
|
+
// published, not the AI Widget Builder's "AI Assistant"
|
|
40550
|
+
// placeholder.
|
|
40551
|
+
authorName: authorName.trim() || undefined
|
|
40546
40552
|
});
|
|
40547
40553
|
_context2.next = 15;
|
|
40548
40554
|
return window.mainApi.registry.publishWidget(appId, _step3.packageId, options);
|