vueless 0.0.198 → 0.0.199

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.
@@ -399,7 +399,13 @@ function getNestedComponent(value) {
399
399
  @returns { Boolean }
400
400
  */
401
401
  function isSystemKey(key) {
402
- return Object.values(SYSTEM_CONFIG_KEY).some((value) => value.includes(key));
402
+ const isExactKey = Object.values(SYSTEM_CONFIG_KEY).some((value) => value === key);
403
+
404
+ return (
405
+ isExactKey ||
406
+ key.includes(SYSTEM_CONFIG_KEY.iconName) ||
407
+ key.includes(SYSTEM_CONFIG_KEY.iconNameCapitalize)
408
+ );
403
409
  }
404
410
 
405
411
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.198",
3
+ "version": "0.0.199",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -226,7 +226,6 @@ export const {
226
226
  setFavicon,
227
227
  setBrandColor,
228
228
  convertHexInRgb,
229
- isSystemKey,
230
229
  isMac,
231
230
  isPWA,
232
231
  isIOS,
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.198",
4
+ "version": "0.0.199",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",