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.
@@ -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("Passing component safelist by `config` prop is not supported.");
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.98",
3
+ "version": "0.0.99",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.98",
4
+ "version": "0.0.99",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",