sprintify-ui 0.9.2 → 0.9.3

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.
@@ -7062,7 +7062,7 @@ const VT = {
7062
7062
  }
7063
7063
  return {};
7064
7064
  }), u = A(() => {
7065
- const p = ["flex items-center justify-center"];
7065
+ const p = ["flex items-center justify-between w-full"];
7066
7066
  return i.loading && p.push("opacity-0"), i.icon && (s.value == "xs" || s.value == "sm" ? p.push("gap-0.5") : (s.value == "md" || s.value == "lg" || s.value == "xl") && p.push("gap-1")), p;
7067
7067
  }), d = A(() => {
7068
7068
  const p = ["shrink-0"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -170,7 +170,7 @@ const styles = computed(() => {
170
170
  });
171
171
 
172
172
  const containerClass = computed(() => {
173
- const classes = ['flex items-center justify-center'];
173
+ const classes = ['flex items-center justify-between w-full'];
174
174
 
175
175
  if (props.loading) {
176
176
  classes.push('opacity-0');