vueless 0.0.60 → 0.0.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.60",
3
+ "version": "0.0.62",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -166,14 +166,8 @@ export default class UIServiceDefault {
166
166
  @returns { Object }
167
167
  */
168
168
  static get(defaultConfig, name) {
169
- const globalVuelessColor = brand ? { color: brand } : {};
170
-
171
169
  return {
172
- default: merge(
173
- defaultConfig.defaultVariants,
174
- globalVuelessColor,
175
- globalComponentConfig[name]?.defaultVariants,
176
- ),
170
+ default: merge(defaultConfig.defaultVariants, globalComponentConfig[name]?.defaultVariants),
177
171
  };
178
172
  }
179
173
  }
@@ -13,7 +13,8 @@
13
13
  import { computed } from "vue";
14
14
 
15
15
  import { useAttrs } from "./composables/attrs.composable";
16
- import useLoaderRendering from "./composables/useLoaderRendering";
16
+ // Should be uncommented after fixing composable bug.
17
+ // import useLoaderRendering from "./composables/useLoaderRendering";
17
18
 
18
19
  /* Should be a string for correct web-types gen */
19
20
  defineOptions({ name: "ULoaderRendering", inheritAttrs: false });
@@ -26,10 +27,10 @@ const props = defineProps({
26
27
  });
27
28
 
28
29
  const { wrapperAttrs, loaderAttrs, rippleAttrs, rippleElementAttrs, config } = useAttrs(props);
29
- const { isRenderingPage } = useLoaderRendering();
30
+ // const { isRenderingPage } = useLoaderRendering();
30
31
 
31
32
  const showLoader = computed(() => {
32
- return props.loading || isRenderingPage.value;
33
+ return props.loading; // || isRenderingPage.value;
33
34
  });
34
35
  </script>
35
36
 
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.60",
4
+ "version": "0.0.62",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",