sprintify-ui 0.10.76 → 0.10.78

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.
@@ -9259,7 +9259,7 @@ const uv = {
9259
9259
  B("div", dv, [
9260
9260
  B("div", {
9261
9261
  class: H(["mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full sm:mx-0 sm:h-10 sm:w-10", {
9262
- "bg-primary-100": t.color == "info",
9262
+ "bg-blue-100": t.color == "info",
9263
9263
  "bg-red-100": t.color == "danger",
9264
9264
  "bg-yellow-100": t.color == "warning",
9265
9265
  "bg-green-100": t.color == "success"
@@ -9279,7 +9279,7 @@ const uv = {
9279
9279
  icon: "heroicons:check-circle-20-solid"
9280
9280
  })) : (b(), ee(c(Ye), {
9281
9281
  key: 3,
9282
- class: "h-5 w-5 text-primary-600",
9282
+ class: "h-5 w-5 text-blue-600",
9283
9283
  icon: "heroicons:information-circle-20-solid"
9284
9284
  }))
9285
9285
  ], 2),
@@ -25634,6 +25634,10 @@ const J1 = ["onClick"], ew = { class: "px-2 flex items-center" }, tw = { class:
25634
25634
  size: {
25635
25635
  default: "md",
25636
25636
  type: String
25637
+ },
25638
+ containerSize: {
25639
+ default: "7xl",
25640
+ type: String
25637
25641
  }
25638
25642
  },
25639
25643
  setup(t) {
@@ -25668,7 +25672,7 @@ const J1 = ["onClick"], ew = { class: "px-2 flex items-center" }, tw = { class:
25668
25672
  maxHeight: `${c(d)}px`
25669
25673
  })
25670
25674
  }, [
25671
- Z(Lc, { size: "7xl" }, {
25675
+ Z(Lc, { size: t.containerSize }, {
25672
25676
  default: K(() => [
25673
25677
  B("div", {
25674
25678
  style: He({
@@ -25708,7 +25712,7 @@ const J1 = ["onClick"], ew = { class: "px-2 flex items-center" }, tw = { class:
25708
25712
  ], 4)
25709
25713
  ]),
25710
25714
  _: 3
25711
- }),
25715
+ }, 8, ["size"]),
25712
25716
  c(o) && c(f) ? (b(), z("div", {
25713
25717
  key: 0,
25714
25718
  class: H(["w-full", c(a)])
@@ -48,6 +48,10 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
48
48
  default: string;
49
49
  type: PropType<"xs" | "sm" | "md">;
50
50
  };
51
+ containerSize: {
52
+ default: string;
53
+ type: StringConstructor;
54
+ };
51
55
  }>, {
52
56
  BaseIcon: typeof BaseIcon;
53
57
  BaseContainer: typeof BaseContainer;
@@ -82,12 +86,17 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
82
86
  default: string;
83
87
  type: PropType<"xs" | "sm" | "md">;
84
88
  };
89
+ containerSize: {
90
+ default: string;
91
+ type: StringConstructor;
92
+ };
85
93
  }>> & Readonly<{}>, {
86
94
  dark: boolean;
87
95
  class: string | string[];
88
96
  size: "xs" | "sm" | "md";
89
97
  height: number;
90
98
  breakpoint: number;
99
+ containerSize: string;
91
100
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
92
101
  declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
93
102
  dark: {
@@ -110,6 +119,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
110
119
  default: string;
111
120
  type: PropType<"xs" | "sm" | "md">;
112
121
  };
122
+ containerSize: {
123
+ default: string;
124
+ type: StringConstructor;
125
+ };
113
126
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
114
127
  dark: {
115
128
  default: boolean;
@@ -131,12 +144,17 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
131
144
  default: string;
132
145
  type: PropType<"xs" | "sm" | "md">;
133
146
  };
147
+ containerSize: {
148
+ default: string;
149
+ type: StringConstructor;
150
+ };
134
151
  }>> & Readonly<{}>, {
135
152
  dark: boolean;
136
153
  class: string | string[];
137
154
  size: "xs" | "sm" | "md";
138
155
  height: number;
139
156
  breakpoint: number;
157
+ containerSize: string;
140
158
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
141
159
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
142
160
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.10.76",
3
+ "version": "0.10.78",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -7,7 +7,7 @@
7
7
  <div
8
8
  class="mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full sm:mx-0 sm:h-10 sm:w-10"
9
9
  :class="{
10
- 'bg-primary-100': color == 'info',
10
+ 'bg-blue-100': color == 'info',
11
11
  'bg-red-100': color == 'danger',
12
12
  'bg-yellow-100': color == 'warning',
13
13
  'bg-green-100': color == 'success',
@@ -30,7 +30,7 @@
30
30
  />
31
31
  <BaseIcon
32
32
  v-else
33
- class="h-5 w-5 text-primary-600"
33
+ class="h-5 w-5 text-blue-600"
34
34
  icon="heroicons:information-circle-20-solid"
35
35
  />
36
36
  </div>
@@ -6,7 +6,7 @@
6
6
  maxHeight: `${maxHeight}px`,
7
7
  }"
8
8
  >
9
- <BaseContainer size="7xl">
9
+ <BaseContainer :size="containerSize">
10
10
  <div
11
11
  :style="{
12
12
  height: `${heightInner}px`,
@@ -106,6 +106,10 @@ const props = defineProps({
106
106
  default: 'md',
107
107
  type: String as PropType<'xs' | 'sm' | 'md'>,
108
108
  },
109
+ containerSize: {
110
+ default: '7xl',
111
+ type: String,
112
+ },
109
113
  });
110
114
 
111
115
  const window = useWindowSize();