@trops/dash-core 0.1.118 → 0.1.119
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/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -19171,7 +19171,8 @@ var WidgetRenderer = function WidgetRenderer(_ref) {
|
|
|
19171
19171
|
var uuidString = getUUID(params.uuid);
|
|
19172
19172
|
var widgetData = _objectSpread$m(_objectSpread$m({}, params), {}, {
|
|
19173
19173
|
uuidString: uuidString,
|
|
19174
|
-
providers: (config === null || config === void 0 ? void 0 : config.providers) || []
|
|
19174
|
+
providers: (config === null || config === void 0 ? void 0 : config.providers) || [],
|
|
19175
|
+
notifications: (config === null || config === void 0 ? void 0 : config.notifications) || []
|
|
19175
19176
|
});
|
|
19176
19177
|
|
|
19177
19178
|
// need to set the electron api here.
|
|
@@ -25131,6 +25132,7 @@ var ComponentManager = {
|
|
|
25131
25132
|
events: "events" in c ? c["events"] : [],
|
|
25132
25133
|
eventHandlers: "eventHandlers" in c ? c["eventHandlers"] : [],
|
|
25133
25134
|
providers: "providers" in c ? c["providers"] : [],
|
|
25135
|
+
notifications: "notifications" in c ? c["notifications"] : [],
|
|
25134
25136
|
icon: "icon" in c ? c["icon"] : null
|
|
25135
25137
|
};
|
|
25136
25138
|
}
|