@trops/dash-core 0.1.281 → 0.1.283
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/README.md +170 -7
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -6434,7 +6434,7 @@ var WizardDiscoverStep = function WizardDiscoverStep(_ref) {
|
|
|
6434
6434
|
onClick: function onClick() {
|
|
6435
6435
|
return handleToggleCategory(tag);
|
|
6436
6436
|
},
|
|
6437
|
-
|
|
6437
|
+
active: filters.categories.includes(tag)
|
|
6438
6438
|
}, tag);
|
|
6439
6439
|
})
|
|
6440
6440
|
})]
|
|
@@ -6451,7 +6451,7 @@ var WizardDiscoverStep = function WizardDiscoverStep(_ref) {
|
|
|
6451
6451
|
onClick: function onClick() {
|
|
6452
6452
|
return handleToggleProvider(prov.key);
|
|
6453
6453
|
},
|
|
6454
|
-
|
|
6454
|
+
active: filters.providers.includes(prov.key)
|
|
6455
6455
|
}, prov.key);
|
|
6456
6456
|
})
|
|
6457
6457
|
})]
|