vueless 0.0.98 → 0.0.99
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/composable.ui/index.js +2 -2
- package/package.json +1 -1
- package/web-types.json +1 -1
package/composable.ui/index.js
CHANGED
|
@@ -176,10 +176,10 @@ function mergeConfigs({
|
|
|
176
176
|
if (isGlobalConfig || isPropsConfig) {
|
|
177
177
|
if (key === "strategy") {
|
|
178
178
|
config[key] = propsConfig[key] || globalConfig[key] || defaultConfig[key];
|
|
179
|
-
} else if (key === "safelist") {
|
|
179
|
+
} else if (key === "safelist" || key === "safelistColors") {
|
|
180
180
|
if (propsConfig[key]) {
|
|
181
181
|
// eslint-disable-next-line no-console
|
|
182
|
-
console.warn(
|
|
182
|
+
console.warn(`Passing '${key}' key by 'config' prop is not allowed.`);
|
|
183
183
|
}
|
|
184
184
|
} else if (key === "defaultVariants") {
|
|
185
185
|
config[key] = { ...defaultConfig[key], ...globalConfig[key], ...propsConfig[key] };
|
package/package.json
CHANGED