@trops/dash-core 0.1.263 → 0.1.265
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 +26 -1
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -45062,6 +45062,8 @@ var useInstalledWidgets = function useInstalledWidgets() {
|
|
|
45062
45062
|
cMap = ComponentManager.componentMap() || {};
|
|
45063
45063
|
builtinWidgets = Object.keys(cMap).filter(function (key) {
|
|
45064
45064
|
return cMap[key].type === "widget";
|
|
45065
|
+
}).filter(function (key) {
|
|
45066
|
+
return !cMap[key]._sourcePackage;
|
|
45065
45067
|
}).map(function (key) {
|
|
45066
45068
|
var config = cMap[key];
|
|
45067
45069
|
return {
|