@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.js
CHANGED
|
@@ -45080,6 +45080,8 @@ var useInstalledWidgets = function useInstalledWidgets() {
|
|
|
45080
45080
|
cMap = ComponentManager.componentMap() || {};
|
|
45081
45081
|
builtinWidgets = Object.keys(cMap).filter(function (key) {
|
|
45082
45082
|
return cMap[key].type === "widget";
|
|
45083
|
+
}).filter(function (key) {
|
|
45084
|
+
return !cMap[key]._sourcePackage;
|
|
45083
45085
|
}).map(function (key) {
|
|
45084
45086
|
var config = cMap[key];
|
|
45085
45087
|
return {
|