You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.default = getAllConfigs; |
|
var _defaultConfigStubJs = _interopRequireDefault(require("../../stubs/defaultConfig.stub.js")); |
|
var _featureFlags = require("../featureFlags"); |
|
function getAllConfigs(config) { |
|
var ref; |
|
const configs = ((ref = config === null || config === void 0 ? void 0 : config.presets) !== null && ref !== void 0 ? ref : [ |
|
_defaultConfigStubJs.default |
|
]).slice().reverse().flatMap((preset)=>getAllConfigs(preset instanceof Function ? preset() : preset)); |
|
const features = { |
|
// Add experimental configs here... |
|
respectDefaultRingColorOpacity: { |
|
theme: { |
|
ringColor: { |
|
DEFAULT: "#3b82f67f" |
|
} |
|
} |
|
} |
|
}; |
|
const experimentals = Object.keys(features).filter((feature)=>(0, _featureFlags).flagEnabled(config, feature)).map((feature)=>features[feature]); |
|
return [ |
|
config, |
|
...experimentals, |
|
...configs |
|
]; |
|
} |
|
function _interopRequireDefault(obj) { |
|
return obj && obj.__esModule ? obj : { |
|
default: obj |
|
}; |
|
}
|
|
|