@nexxtmove/ui 0.1.8 → 0.1.9

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/dist/index.d.ts CHANGED
@@ -138,6 +138,17 @@ declare interface NexxtProgressBarProps {
138
138
  stepTitles?: string[];
139
139
  }
140
140
 
141
+ export declare const NexxtSocialIcons: DefineComponent<NexxtSocialIconsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtSocialIconsProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>;
142
+
143
+ declare interface NexxtSocialIconsProps {
144
+ facebook?: boolean;
145
+ instagram?: boolean;
146
+ linkedin?: boolean;
147
+ x?: boolean;
148
+ google?: boolean;
149
+ tiktok?: boolean;
150
+ }
151
+
141
152
  export declare const NexxtStepperHeader: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
142
153
 
143
154
  declare interface NexxtStepperHeaderProps {
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { defineComponent as d, ref as j, computed as m, watch as C, createBlock as x, openBlock as a, TransitionGroup as A, withCtx as h, createElementBlock as n, Fragment as B, renderList as S, createVNode as c, Transition as T, toDisplayString as b, normalizeClass as o, createCommentVNode as u, renderSlot as p, createElementVNode as i, createTextVNode as N, watchEffect as H, normalizeStyle as I, withKeys as w, withModifiers as M, createSlots as P } from "vue";
2
- const V = /* @__PURE__ */ d({
1
+ import { defineComponent as m, ref as j, computed as v, watch as I, createBlock as k, openBlock as a, TransitionGroup as C, withCtx as h, createElementBlock as n, Fragment as $, renderList as w, createVNode as d, Transition as T, toDisplayString as p, normalizeClass as c, createCommentVNode as b, renderSlot as g, createElementVNode as o, createTextVNode as N, watchEffect as A, normalizeStyle as H, withKeys as S, withModifiers as P, createSlots as M } from "vue";
2
+ const V = /* @__PURE__ */ m({
3
3
  __name: "AnimatedNumber",
4
4
  props: {
5
5
  value: {},
@@ -7,39 +7,39 @@ const V = /* @__PURE__ */ d({
7
7
  easing: { default: "ease-out" }
8
8
  },
9
9
  setup(e) {
10
- const t = j("up"), s = m(() => String(e.value).split("")), r = m(() => `duration-${e.duration}`);
11
- return C(
10
+ const t = j("up"), l = v(() => String(e.value).split("")), i = v(() => `duration-${e.duration}`);
11
+ return I(
12
12
  () => e.value,
13
- (f, v) => {
14
- t.value = f > v ? "up" : "down";
13
+ (r, f) => {
14
+ t.value = r > f ? "up" : "down";
15
15
  }
16
- ), (f, v) => (a(), x(A, {
16
+ ), (r, f) => (a(), k(C, {
17
17
  tag: "div",
18
18
  class: "relative flex shrink-0 items-center tabular-nums",
19
19
  "aria-label": e.value,
20
- "enter-active-class": `transition-all ${r.value} ${e.easing}`,
21
- "leave-active-class": `absolute transition-all ${r.value} ${e.easing}`,
20
+ "enter-active-class": `transition-all ${i.value} ${e.easing}`,
21
+ "leave-active-class": `absolute transition-all ${i.value} ${e.easing}`,
22
22
  "enter-from-class": t.value === "up" ? "translate-y-full opacity-0" : "-translate-y-full opacity-0",
23
23
  "leave-to-class": t.value === "up" ? "-translate-y-full opacity-0" : "translate-y-full opacity-0",
24
24
  "move-class": "transition-all duration-500 ease-in-out"
25
25
  }, {
26
26
  default: h(() => [
27
- (a(!0), n(B, null, S(s.value, (g, y) => (a(), n("div", {
27
+ (a(!0), n($, null, w(l.value, (u, y) => (a(), n("div", {
28
28
  key: y,
29
29
  class: "relative inline-flex h-[1.5em] w-[1ch] items-center justify-center overflow-hidden",
30
30
  "aria-hidden": "true"
31
31
  }, [
32
- c(T, {
33
- "enter-active-class": `transition-transform ${r.value} ${e.easing}`,
34
- "leave-active-class": `absolute inset-0 transition-transform ${r.value} ${e.easing}`,
32
+ d(T, {
33
+ "enter-active-class": `transition-transform ${i.value} ${e.easing}`,
34
+ "leave-active-class": `absolute inset-0 transition-transform ${i.value} ${e.easing}`,
35
35
  "enter-from-class": t.value === "up" ? "translate-y-full" : "-translate-y-full",
36
36
  "leave-to-class": t.value === "up" ? "-translate-y-full" : "translate-y-full"
37
37
  }, {
38
38
  default: h(() => [
39
39
  (a(), n("span", {
40
- key: g,
40
+ key: u,
41
41
  class: "flex h-full w-full items-center justify-center"
42
- }, b(g), 1))
42
+ }, p(u), 1))
43
43
  ]),
44
44
  _: 2
45
45
  }, 1032, ["enter-active-class", "leave-active-class", "enter-from-class", "leave-to-class"])
@@ -48,7 +48,7 @@ const V = /* @__PURE__ */ d({
48
48
  _: 1
49
49
  }, 8, ["aria-label", "enter-active-class", "leave-active-class", "enter-from-class", "leave-to-class"]));
50
50
  }
51
- }), $ = /* @__PURE__ */ d({
51
+ }), x = /* @__PURE__ */ m({
52
52
  name: "NexxtIcon",
53
53
  __name: "Icon",
54
54
  props: {
@@ -56,14 +56,14 @@ const V = /* @__PURE__ */ d({
56
56
  type: { default: "light" }
57
57
  },
58
58
  setup(e) {
59
- return (t, s) => (a(), n("i", {
60
- class: o([`fa-${e.type}`, `fa-${e.name}`, "items-center", "justify-center"])
59
+ return (t, l) => (a(), n("i", {
60
+ class: c([`fa-${e.type}`, `fa-${e.name}`, "items-center", "justify-center"])
61
61
  }, null, 2));
62
62
  }
63
63
  }), z = ["type", "disabled", "data-variant"], K = {
64
64
  key: 0,
65
- class: /* @__PURE__ */ o(["absolute inset-0 flex items-center justify-center rounded-lg"])
66
- }, E = /* @__PURE__ */ d({
65
+ class: /* @__PURE__ */ c(["absolute inset-0 flex items-center justify-center rounded-lg"])
66
+ }, L = /* @__PURE__ */ m({
67
67
  name: "NexxtButton",
68
68
  __name: "Button",
69
69
  props: {
@@ -75,10 +75,10 @@ const V = /* @__PURE__ */ d({
75
75
  buttonType: { default: "button" }
76
76
  },
77
77
  setup(e) {
78
- return (t, s) => (a(), n("button", {
78
+ return (t, l) => (a(), n("button", {
79
79
  type: e.buttonType,
80
80
  disabled: e.disabled,
81
- class: o([
81
+ class: c([
82
82
  "button relative flex h-10 cursor-pointer items-center justify-center overflow-hidden rounded-lg transition-colors duration-200 focus-visible:outline-3 disabled:cursor-not-allowed",
83
83
  `button-${e.variant}`,
84
84
  t.$slots.default ?? "w-10",
@@ -87,23 +87,23 @@ const V = /* @__PURE__ */ d({
87
87
  ]),
88
88
  "data-variant": e.variant
89
89
  }, [
90
- e.icon ? (a(), x($, {
90
+ e.icon ? (a(), k(x, {
91
91
  key: 0,
92
92
  name: e.icon,
93
- class: o(["transition-all duration-200", { "order-last": e.iconRight, "opacity-0": e.loading }])
94
- }, null, 8, ["name", "class"])) : u("", !0),
93
+ class: c(["transition-all duration-200", { "order-last": e.iconRight, "opacity-0": e.loading }])
94
+ }, null, 8, ["name", "class"])) : b("", !0),
95
95
  t.$slots.default ? (a(), n("span", {
96
96
  key: 1,
97
- class: o([
97
+ class: c([
98
98
  "inline-block transition-all duration-200",
99
99
  { "opacity-0": e.loading },
100
100
  e.variant === "link" ? "body-link underline-offset-1" : "body-normal",
101
101
  e.variant === "link" && !e.loading && !e.disabled ? "hover:underline-offset-2" : ""
102
102
  ])
103
103
  }, [
104
- p(t.$slots, "default")
105
- ], 2)) : u("", !0),
106
- c(T, {
104
+ g(t.$slots, "default")
105
+ ], 2)) : b("", !0),
106
+ d(T, {
107
107
  "enter-active-class": "transition-opacity duration-200",
108
108
  "enter-from-class": "opacity-0",
109
109
  "enter-to-class": "opacity-100",
@@ -113,21 +113,21 @@ const V = /* @__PURE__ */ d({
113
113
  }, {
114
114
  default: h(() => [
115
115
  e.loading ? (a(), n("div", K, [
116
- c($, {
116
+ d(x, {
117
117
  name: "spinner-third",
118
118
  type: "light",
119
119
  class: "fa-spin absolute text-sm"
120
120
  })
121
- ])) : u("", !0)
121
+ ])) : b("", !0)
122
122
  ]),
123
123
  _: 1
124
124
  })
125
125
  ], 10, z));
126
126
  }
127
- }), L = { class: "flex max-w-full items-center justify-start gap-4" }, q = { class: "block truncate heading-4 text-sapphire-500" }, D = {
127
+ }), E = { class: "flex max-w-full items-center justify-start gap-4" }, F = { class: "block truncate heading-4 text-sapphire-500" }, G = {
128
128
  key: 0,
129
129
  class: "col-span-1 col-start-2 flex justify-center"
130
- }, F = /* @__PURE__ */ d({
130
+ }, q = /* @__PURE__ */ m({
131
131
  name: "NexxtHeader",
132
132
  __name: "Header",
133
133
  props: {
@@ -138,61 +138,62 @@ const V = /* @__PURE__ */ d({
138
138
  } }
139
139
  },
140
140
  setup(e) {
141
- return (t, s) => (a(), n("div", {
142
- class: o(["header flex items-center", t.$slots.center ? "grid grid-cols-3" : ""])
141
+ return (t, l) => (a(), n("div", {
142
+ class: c(["header flex items-center", t.$slots.center ? "grid grid-cols-3" : ""])
143
143
  }, [
144
- i("div", L, [
145
- c(E, {
144
+ o("div", E, [
145
+ d(L, {
146
146
  class: "shrink-0",
147
147
  variant: "secondary",
148
148
  onClick: e.backButtonAction
149
149
  }, {
150
150
  default: h(() => [
151
- N(b(e.backButtonText), 1)
151
+ N(p(e.backButtonText), 1)
152
152
  ]),
153
153
  _: 1
154
154
  }, 8, ["onClick"]),
155
- i("span", q, b(e.title), 1)
155
+ o("span", F, p(e.title), 1)
156
156
  ]),
157
- t.$slots.center ? (a(), n("div", D, [
158
- p(t.$slots, "center")
159
- ])) : u("", !0),
157
+ t.$slots.center ? (a(), n("div", G, [
158
+ g(t.$slots, "center")
159
+ ])) : b("", !0),
160
160
  t.$slots.right ? (a(), n("div", {
161
161
  key: 1,
162
- class: o(t.$slots.center ? "col-span-1 col-start-3 flex justify-end" : "ml-auto")
162
+ class: c(t.$slots.center ? "col-span-1 col-start-3 flex justify-end" : "ml-auto")
163
163
  }, [
164
- p(t.$slots, "right")
165
- ], 2)) : u("", !0)
164
+ g(t.$slots, "right")
165
+ ], 2)) : b("", !0)
166
166
  ], 2));
167
167
  }
168
- }), G = {
168
+ }), D = {
169
169
  class: "info-block flex rounded-xl",
170
170
  role: "note"
171
171
  }, R = {
172
172
  class: "flex min-h-20 w-20 shrink-0 items-center justify-center bg-green-50",
173
173
  "aria-hidden": "true"
174
- }, U = { class: "flex aspect-square h-10 items-center justify-center rounded-full bg-green-500" }, J = { class: "p-5" }, ae = /* @__PURE__ */ d({
174
+ }, U = { class: "flex aspect-square h-10 items-center justify-center rounded-full bg-green-500" }, X = { class: "p-5" }, le = /* @__PURE__ */ m({
175
+ name: "NexxtInfoBlock",
175
176
  __name: "InfoBlock",
176
177
  setup(e) {
177
- return (t, s) => (a(), n("div", G, [
178
- i("div", R, [
179
- i("div", U, [
180
- c($, {
178
+ return (t, l) => (a(), n("div", D, [
179
+ o("div", R, [
180
+ o("div", U, [
181
+ d(x, {
181
182
  name: "thumbs-up",
182
183
  size: "lg",
183
184
  class: "text-white"
184
185
  })
185
186
  ])
186
187
  ]),
187
- i("div", J, [
188
- s[1] || (s[1] = i("span", { class: "body-semibold" }, "Tip!", -1)),
189
- p(t.$slots, "default", {}, () => [
190
- s[0] || (s[0] = N(" Koopwoningen doen het goed als post of reel: zo geef je de woning genoeg aandacht én vergroot je het bereik. ", -1))
188
+ o("div", X, [
189
+ l[1] || (l[1] = o("span", { class: "body-semibold" }, "Tip!", -1)),
190
+ g(t.$slots, "default", {}, () => [
191
+ l[0] || (l[0] = N(" Koopwoningen doen het goed als post of reel: zo geef je de woning genoeg aandacht én vergroot je het bereik. ", -1))
191
192
  ])
192
193
  ])
193
194
  ]));
194
195
  }
195
- }), O = { class: "@container" }, Q = { class: "flex flex-col @md:gap-2" }, W = { class: "flex items-center justify-between gap-2" }, X = ["aria-label", "aria-valuenow", "aria-valuetext"], Y = {
196
+ }), J = { class: "@container" }, O = { class: "flex flex-col @md:gap-2" }, Q = { class: "flex items-center justify-between gap-2" }, W = ["aria-label", "aria-valuenow", "aria-valuetext"], Y = {
196
197
  key: 0,
197
198
  class: "flex items-center small-normal tabular-nums @md:hidden",
198
199
  "aria-hidden": "true"
@@ -200,7 +201,7 @@ const V = /* @__PURE__ */ d({
200
201
  key: 0,
201
202
  class: "flex justify-between @max-md:order-first @max-md:justify-center",
202
203
  "aria-label": "Progress steps"
203
- }, _ = ["aria-current", "role", "tabindex", "aria-label", "onClick", "onKeydown"], ee = /* @__PURE__ */ d({
204
+ }, _ = ["aria-current", "role", "tabindex", "aria-label", "onClick", "onKeydown"], ee = /* @__PURE__ */ m({
204
205
  name: "NexxtProgressBar",
205
206
  __name: "ProgressBar",
206
207
  props: {
@@ -211,56 +212,96 @@ const V = /* @__PURE__ */ d({
211
212
  },
212
213
  emits: ["update:currentStep"],
213
214
  setup(e) {
214
- const t = m(() => Math.min(Math.max(0, e.currentStep), Math.max(0, e.steps - 1))), s = m(() => e.steps > 0 ? t.value + 1 : 0), r = m(() => e.steps <= 1 ? e.steps === 1 ? 100 : 0 : t.value / (e.steps - 1) * 100), f = m(() => !!e.stepTitles?.length);
215
- return H(() => {
215
+ const t = v(() => Math.min(Math.max(0, e.currentStep), Math.max(0, e.steps - 1))), l = v(() => e.steps > 0 ? t.value + 1 : 0), i = v(() => e.steps <= 1 ? e.steps === 1 ? 100 : 0 : t.value / (e.steps - 1) * 100), r = v(() => !!e.stepTitles?.length);
216
+ return A(() => {
216
217
  e.stepTitles && e.stepTitles.length !== e.steps && console.warn(
217
218
  `[NexxtProgressBar] The "stepTitles" array length (${e.stepTitles.length}) must match the "steps" prop (${e.steps}).`
218
219
  );
219
- }), (v, g) => (a(), n("div", O, [
220
- i("div", Q, [
221
- i("div", W, [
222
- i("div", {
220
+ }), (f, u) => (a(), n("div", J, [
221
+ o("div", O, [
222
+ o("div", Q, [
223
+ o("div", {
223
224
  class: "progress-bar progress-bar-bar h-2 w-full overflow-hidden rounded-full",
224
225
  role: "progressbar",
225
226
  "aria-label": e.progressLabel,
226
227
  "aria-valuemin": "0",
227
228
  "aria-valuemax": "100",
228
- "aria-valuenow": Math.round(r.value),
229
- "aria-valuetext": f.value && e.stepTitles?.[t.value] ? `Step ${s.value} of ${e.steps}: ${e.stepTitles[t.value]}` : `Step ${s.value} of ${e.steps}`
229
+ "aria-valuenow": Math.round(i.value),
230
+ "aria-valuetext": r.value && e.stepTitles?.[t.value] ? `Step ${l.value} of ${e.steps}: ${e.stepTitles[t.value]}` : `Step ${l.value} of ${e.steps}`
230
231
  }, [
231
- i("div", {
232
+ o("div", {
232
233
  class: "progress-bar-progress h-full transition-all duration-500 ease-out",
233
- style: I({ width: `${r.value}%` }),
234
+ style: H({ width: `${i.value}%` }),
234
235
  "aria-hidden": !0
235
236
  }, null, 4)
236
- ], 8, X),
237
- f.value ? (a(), n("div", Y, [
238
- c(V, { value: s.value }, null, 8, ["value"]),
239
- i("span", null, "/" + b(e.steps), 1)
240
- ])) : u("", !0)
237
+ ], 8, W),
238
+ r.value ? (a(), n("div", Y, [
239
+ d(V, { value: l.value }, null, 8, ["value"]),
240
+ o("span", null, "/" + p(e.steps), 1)
241
+ ])) : b("", !0)
241
242
  ]),
242
- f.value ? (a(), n("ol", Z, [
243
- (a(!0), n(B, null, S(e.stepTitles, (y, l) => (a(), n("li", {
243
+ r.value ? (a(), n("ol", Z, [
244
+ (a(!0), n($, null, w(e.stepTitles, (y, s) => (a(), n("li", {
244
245
  key: y,
245
- class: o(["rounded-xs transition-colors duration-500 focus-visible:outline-3 @max-md:hidden @max-md:body-normal @min-md:small-normal", [
246
- l === t.value ? "text-sapphire-500 @max-md:inline" : "",
247
- l < t.value ? "cursor-pointer duration-200! hover:text-sapphire-400" : ""
246
+ class: c(["rounded-xs transition-colors duration-500 focus-visible:outline-3 @max-md:hidden @max-md:body-normal @min-md:small-normal", [
247
+ s === t.value ? "text-sapphire-500 @max-md:inline" : "",
248
+ s < t.value ? "cursor-pointer duration-200! hover:text-sapphire-400" : ""
248
249
  ]]),
249
- "aria-current": l === t.value ? "step" : void 0,
250
- role: l < t.value ? "button" : void 0,
251
- tabindex: l < t.value ? 0 : void 0,
252
- "aria-label": l < t.value ? `Ga naar ${y}` : void 0,
253
- onClick: (k) => l < t.value && v.$emit("update:currentStep", l),
250
+ "aria-current": s === t.value ? "step" : void 0,
251
+ role: s < t.value ? "button" : void 0,
252
+ tabindex: s < t.value ? 0 : void 0,
253
+ "aria-label": s < t.value ? `Ga naar ${y}` : void 0,
254
+ onClick: (B) => s < t.value && f.$emit("update:currentStep", s),
254
255
  onKeydown: [
255
- w((k) => l < t.value && v.$emit("update:currentStep", l), ["enter"]),
256
- w(M((k) => l < t.value && v.$emit("update:currentStep", l), ["prevent"]), ["space"])
256
+ S((B) => s < t.value && f.$emit("update:currentStep", s), ["enter"]),
257
+ S(P((B) => s < t.value && f.$emit("update:currentStep", s), ["prevent"]), ["space"])
257
258
  ]
258
- }, b(y), 43, _))), 128))
259
- ])) : u("", !0)
259
+ }, p(y), 43, _))), 128))
260
+ ])) : b("", !0)
260
261
  ])
261
262
  ]));
262
263
  }
263
- }), se = /* @__PURE__ */ d({
264
+ }), te = {
265
+ class: "m-0 inline-flex list-none items-start justify-start gap-0.5 p-0",
266
+ "aria-label": "Sociale media kanalen"
267
+ }, ae = ["aria-label"], se = /* @__PURE__ */ m({
268
+ name: "NexxtSocialIcons",
269
+ __name: "SocialIcons",
270
+ props: {
271
+ facebook: { type: Boolean },
272
+ instagram: { type: Boolean },
273
+ linkedin: { type: Boolean },
274
+ x: { type: Boolean },
275
+ google: { type: Boolean },
276
+ tiktok: { type: Boolean }
277
+ },
278
+ setup(e) {
279
+ const t = e, l = [
280
+ { name: "facebook", label: "Facebook", icon: "facebook-f" },
281
+ { name: "instagram", label: "Instagram", icon: "instagram" },
282
+ { name: "linkedin", label: "LinkedIn", icon: "linkedin-in" },
283
+ { name: "x", label: "X (voorheen Twitter)", icon: "x-twitter" },
284
+ { name: "google", label: "Google", icon: "google" },
285
+ { name: "tiktok", label: "TikTok", icon: "tiktok" }
286
+ ], i = v(
287
+ () => l.filter((r) => t[r.name])
288
+ );
289
+ return (r, f) => (a(), n("ul", te, [
290
+ (a(!0), n($, null, w(i.value, (u) => (a(), n("li", {
291
+ key: u.name,
292
+ class: c(["inline-flex h-5 w-5 items-center justify-center rounded-full outline-1 outline-white", `bg-brands-${u.name}`]),
293
+ "aria-label": u.label
294
+ }, [
295
+ d(x, {
296
+ name: u.icon,
297
+ type: "brands",
298
+ class: "text-[10px] text-white",
299
+ "aria-hidden": "true"
300
+ }, null, 8, ["name"])
301
+ ], 10, ae))), 128))
302
+ ]));
303
+ }
304
+ }), ie = /* @__PURE__ */ m({
264
305
  name: "NexxtStepperHeader",
265
306
  __name: "StepperHeader",
266
307
  props: {
@@ -272,20 +313,20 @@ const V = /* @__PURE__ */ d({
272
313
  },
273
314
  emits: ["update:currentStep"],
274
315
  setup(e) {
275
- return (t, s) => (a(), x(F, {
316
+ return (t, l) => (a(), k(q, {
276
317
  title: e.title,
277
318
  "back-button-action": e.backButtonAction,
278
319
  "back-button-text": e.backButtonText
279
- }, P({ _: 2 }, [
320
+ }, M({ _: 2 }, [
280
321
  e.steps ? {
281
322
  name: "center",
282
323
  fn: h(() => [
283
- c(ee, {
324
+ d(ee, {
284
325
  class: "w-full",
285
326
  steps: e.steps.length,
286
327
  "step-titles": e.steps,
287
328
  "current-step": e.currentStep,
288
- "onUpdate:currentStep": s[0] || (s[0] = (r) => t.$emit("update:currentStep", r))
329
+ "onUpdate:currentStep": l[0] || (l[0] = (i) => t.$emit("update:currentStep", i))
289
330
  }, null, 8, ["steps", "step-titles", "current-step"])
290
331
  ]),
291
332
  key: "0"
@@ -293,7 +334,7 @@ const V = /* @__PURE__ */ d({
293
334
  t.$slots.default ? {
294
335
  name: "right",
295
336
  fn: h(() => [
296
- p(t.$slots, "default")
337
+ g(t.$slots, "default")
297
338
  ]),
298
339
  key: "1"
299
340
  } : void 0
@@ -302,10 +343,11 @@ const V = /* @__PURE__ */ d({
302
343
  });
303
344
  export {
304
345
  V as NexxtAnimatedNumber,
305
- E as NexxtButton,
306
- F as NexxtHeader,
307
- $ as NexxtIcon,
308
- ae as NexxtInfoBlock,
346
+ L as NexxtButton,
347
+ q as NexxtHeader,
348
+ x as NexxtIcon,
349
+ le as NexxtInfoBlock,
309
350
  ee as NexxtProgressBar,
310
- se as NexxtStepperHeader
351
+ se as NexxtSocialIcons,
352
+ ie as NexxtStepperHeader
311
353
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nexxtmove/ui",
3
3
  "type": "module",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",