@giddaa-housing/ui 3.0.1 → 3.1.0

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.
Files changed (45) hide show
  1. package/css/generated/shared.css +1 -1
  2. package/css/giddaa.css +162 -0
  3. package/css/preset.css +8 -1
  4. package/dist/activity-timeline.js +3 -3
  5. package/dist/auth-layout.js +18 -18
  6. package/dist/bar-chart.d.ts +1 -1
  7. package/dist/bullet-chart.d.ts +1 -1
  8. package/dist/button-group.d.ts +1 -1
  9. package/dist/carousel.d.ts +1 -1
  10. package/dist/chart.d.ts +1 -1
  11. package/dist/combobox.d.ts +1 -1
  12. package/dist/dropdown-menu.d.ts +1 -1
  13. package/dist/footer.d.ts +4 -2
  14. package/dist/footer.js +38 -34
  15. package/dist/funnel-chart.d.ts +1 -1
  16. package/dist/heatmap-chart.d.ts +1 -1
  17. package/dist/input-group.js +4 -5
  18. package/dist/input-size-context.js +4 -2
  19. package/dist/input.js +1 -1
  20. package/dist/line-chart.d.ts +1 -1
  21. package/dist/mask-input.d.ts +61 -0
  22. package/dist/mask-input.js +0 -0
  23. package/dist/mobile-sidebar.d.ts +57 -0
  24. package/dist/mobile-sidebar.js +196 -0
  25. package/dist/number-input.d.ts +1 -1
  26. package/dist/phone-input.d.ts +1 -1
  27. package/dist/pie-chart.d.ts +1 -1
  28. package/dist/popover.d.ts +1 -1
  29. package/dist/radar-chart.d.ts +1 -1
  30. package/dist/rich-text-editor.d.ts +1 -1
  31. package/dist/scatter-chart.d.ts +1 -1
  32. package/dist/select.d.ts +1 -1
  33. package/dist/{size-context-D4mYvcg8.d.ts → size-context-BX6kAdVj.d.ts} +2 -1
  34. package/dist/size-context.d.ts +2 -2
  35. package/dist/size-context.js +5 -2
  36. package/dist/sparkline.d.ts +1 -1
  37. package/dist/styles.css +505 -111
  38. package/dist/table.js +2 -2
  39. package/dist/tabs.d.ts +1 -1
  40. package/dist/tag.d.ts +1 -1
  41. package/dist/top-navbar.d.ts +100 -0
  42. package/dist/top-navbar.js +295 -0
  43. package/dist/tree-map.d.ts +1 -1
  44. package/dist/waterfall-chart.d.ts +1 -1
  45. package/package.json +13 -1
package/css/giddaa.css CHANGED
@@ -268,6 +268,168 @@
268
268
  0 24px 64px rgb(from var(--color-stone-900) r g b / 0.16);
269
269
  }
270
270
 
271
+ /*
272
+ * Light theme scope. `@theme` already sets these on the root, so this block
273
+ * exists to re-declare them on a wrapper — that is what lets a light subtree
274
+ * live inside `.dark`. It must stay a complete mirror of the `.dark` block
275
+ * below: any token `.dark` overrides and this block omits keeps its dark value
276
+ * when the two are nested.
277
+ */
278
+ .light {
279
+ --color-canvas: var(--color-stone-0);
280
+ --color-surface: var(--color-stone-50);
281
+ --color-surface-raised: var(--color-stone-200);
282
+ --color-surface-overlay: var(--color-stone-0);
283
+ --color-surface-brand: var(--color-forest-500);
284
+ --color-surface-brand-subtle: var(--color-forest-50);
285
+ --color-surface-accent: var(--color-brass-400);
286
+ --color-surface-accent-subtle: var(--color-brass-50);
287
+ --color-surface-danger-subtle: var(--color-clay-50);
288
+ --color-surface-info-subtle: var(--color-moss-50);
289
+ --color-surface-glass-button: var(--color-stone-950);
290
+ --color-surface-glass-overlay-button: var(--color-button-glass-overlay);
291
+ --color-surface-glass-overlay-container-1: var(
292
+ --color-container-glass-overlay-1
293
+ );
294
+ --color-surface-glass-overlay-container-2: var(
295
+ --color-container-glass-overlay-2
296
+ );
297
+
298
+ --color-fg-primary: var(--color-stone-900);
299
+ --color-fg-secondary: var(--color-stone-600);
300
+ --color-fg-caption-placeholder: var(--color-stone-500);
301
+ --color-fg-brand: var(--color-forest-600);
302
+ --color-fg-danger: var(--color-clay-600);
303
+ --color-fg-info: var(--color-moss-600);
304
+ --color-fg-accent: var(--color-brass-600);
305
+ --color-fg-on-brand: var(--color-forest-50);
306
+ --color-fg-on-accent: var(--color-brass-900);
307
+
308
+ --color-line-subtle: var(--color-stone-200);
309
+ --color-line: var(--color-stone-300);
310
+ --color-line-strong: var(--color-stone-400);
311
+ --color-line-focus: var(--color-forest-500);
312
+ --color-line-danger: var(--color-clay-500);
313
+
314
+ --color-action-primary: var(--color-forest-500);
315
+ --color-action-primary-hover: var(--color-forest-600);
316
+ --color-action-primary-pressed: var(--color-forest-700);
317
+ --color-action-secondary: var(--color-forest-500);
318
+ --color-action-secondary-hover: var(--color-forest-600);
319
+ --color-action-secondary-pressed: var(--color-forest-700);
320
+ --color-action-tertiary: var(--color-stone-200);
321
+ --color-action-tertiary-hover: var(--color-stone-300);
322
+ --color-action-tertiary-pressed: var(--color-stone-400);
323
+ --color-action-accent: var(--color-brass-400);
324
+ --color-action-danger: var(--color-clay-500);
325
+ --color-action-danger-hover: var(--color-clay-600);
326
+ --color-action-danger-pressed: var(--color-clay-700);
327
+ --color-whatsapp-button: #00d158;
328
+
329
+ --color-status-success: var(--color-forest-500);
330
+ --color-status-warning: var(--color-brass-400);
331
+ --color-status-danger: var(--color-clay-500);
332
+ --color-status-info: var(--color-moss-500);
333
+
334
+ --color-chart-1: var(--color-forest-dark-600);
335
+ --color-chart-2: var(--color-brass-400);
336
+ --color-chart-3: var(--color-clay-400);
337
+
338
+ --gradient-hero-forest: linear-gradient(
339
+ 45deg,
340
+ var(--color-forest-700) 50%,
341
+ var(--color-forest-500) 80%,
342
+ var(--color-forest-400) 100%
343
+ );
344
+ --gradient-hero-forest-moss: linear-gradient(
345
+ 45deg,
346
+ var(--color-forest-600) 50%,
347
+ var(--color-moss-500) 100%
348
+ );
349
+ --gradient-surface-canvas-lift: linear-gradient(
350
+ 180deg,
351
+ var(--color-stone-0) 0%,
352
+ var(--color-stone-50) 100%
353
+ );
354
+ --gradient-surface-card-lift: linear-gradient(
355
+ 180deg,
356
+ var(--color-stone-0) 0%,
357
+ var(--color-stone-200) 100%
358
+ );
359
+ --gradient-surface-brand-tint: linear-gradient(
360
+ 45deg,
361
+ var(--color-forest-50) 50%,
362
+ var(--color-stone-50) 100%
363
+ );
364
+ --gradient-accent-brass-rise: linear-gradient(
365
+ 45deg,
366
+ var(--color-brass-400) 50%,
367
+ var(--color-brass-300) 80%,
368
+ var(--color-brass-200) 100%
369
+ );
370
+ --gradient-accent-forest-to-brass: linear-gradient(
371
+ 45deg,
372
+ var(--color-forest-700) 50%,
373
+ var(--color-forest-500) 75%,
374
+ var(--color-brass-400) 100%
375
+ );
376
+ --gradient-accent-emerald-to-brass: var(--gradient-accent-forest-to-brass);
377
+ --gradient-overlay-photo-bottom: linear-gradient(
378
+ 180deg,
379
+ rgb(from var(--color-forest-900) r g b / 0) 0%,
380
+ rgb(from var(--color-forest-900) r g b / 0) 40%,
381
+ rgb(from var(--color-forest-900) r g b / 0.88) 100%
382
+ );
383
+ --gradient-overlay-photo-dual: linear-gradient(
384
+ 180deg,
385
+ rgb(from var(--color-forest-900) r g b / 0.6) 0%,
386
+ rgb(from var(--color-forest-900) r g b / 0) 40%,
387
+ rgb(from var(--color-forest-900) r g b / 0) 60%,
388
+ rgb(from var(--color-forest-900) r g b / 0.78) 100%
389
+ );
390
+
391
+ --shadow-1: 0 1px 2px rgb(from var(--color-forest-700) r g b / 0.06);
392
+ --shadow-2:
393
+ 0 4px 8px rgb(from var(--color-forest-700) r g b / 0.1),
394
+ 0 8px 16px rgb(from var(--color-forest-700) r g b / 0.06);
395
+ --shadow-3:
396
+ 0 8px 16px rgb(from var(--color-forest-700) r g b / 0.14),
397
+ 0 16px 32px rgb(from var(--color-forest-700) r g b / 0.1),
398
+ 0 24px 48px rgb(from var(--color-forest-700) r g b / 0.06);
399
+ --shadow-4:
400
+ 0 8px 16px rgb(from var(--color-forest-700) r g b / 0.14),
401
+ 0 16px 32px rgb(from var(--color-forest-700) r g b / 0.1),
402
+ 0 24px 48px rgb(from var(--color-forest-700) r g b / 0.06);
403
+
404
+ --elevation-e0-bg: var(--color-stone-50);
405
+ --elevation-e0-border: var(--color-line-subtle);
406
+ --elevation-e0-shadow: none;
407
+
408
+ --elevation-e1-bg: var(--color-stone-0);
409
+ --elevation-e1-border: var(--color-line-subtle);
410
+ --elevation-e1-shadow:
411
+ 0 1px 2px rgb(from var(--color-stone-900) r g b / 0.06),
412
+ 0 1px 1px rgb(from var(--color-stone-900) r g b / 0.04);
413
+
414
+ --elevation-e2-bg: var(--color-stone-0);
415
+ --elevation-e2-border: var(--color-line-subtle);
416
+ --elevation-e2-shadow:
417
+ 0 2px 6px rgb(from var(--color-stone-900) r g b / 0.08),
418
+ 0 8px 24px rgb(from var(--color-stone-900) r g b / 0.06);
419
+
420
+ --elevation-e3-bg: var(--color-stone-0);
421
+ --elevation-e3-border: var(--color-line);
422
+ --elevation-e3-shadow:
423
+ 0 4px 12px rgb(from var(--color-stone-900) r g b / 0.1),
424
+ 0 16px 40px rgb(from var(--color-stone-900) r g b / 0.1);
425
+
426
+ --elevation-e4-bg: var(--color-stone-0);
427
+ --elevation-e4-border: var(--color-line);
428
+ --elevation-e4-shadow:
429
+ 0 8px 20px rgb(from var(--color-stone-900) r g b / 0.14),
430
+ 0 24px 64px rgb(from var(--color-stone-900) r g b / 0.16);
431
+ }
432
+
271
433
  .dark {
272
434
  --color-canvas: var(--color-stone-dark-0);
273
435
  --color-surface: var(--color-stone-dark-875);
package/css/preset.css CHANGED
@@ -4,7 +4,14 @@
4
4
  @import "./generated/shared.css";
5
5
  @plugin "tailwindcss-animate";
6
6
 
7
- @custom-variant dark (&:where(.dark, .dark *));
7
+ /*
8
+ * Theme scopes are class-based and symmetric: `.dark` opts a subtree into the
9
+ * dark tokens, `.light` opts one back into the light tokens (both re-declare
10
+ * every themed token, so either can nest inside the other). The `:not()` keeps
11
+ * `dark:` utilities from leaking into a `.light` island inside `.dark`.
12
+ * Alternating deeper than one level (.dark > .light > .dark) is not supported.
13
+ */
14
+ @custom-variant dark (&:where(.dark, .dark *):not(:where(.light, .light *)));
8
15
 
9
16
  @utility elevation-e0 {
10
17
  border-style: solid;
@@ -37,7 +37,7 @@ function ActivityTimelineItem({ className, highlighted = false, highlightOnHover
37
37
  function ActivityTimelineRail({ className, ...props }) {
38
38
  return /* @__PURE__ */ jsx("div", {
39
39
  "data-slot": "activity-timeline-rail",
40
- className: cn("flex w-10 shrink-0 flex-col items-center gap-1.5", className),
40
+ className: cn("relative flex w-10 shrink-0 self-stretch flex-col items-center", className),
41
41
  ...props
42
42
  });
43
43
  }
@@ -45,7 +45,7 @@ function ActivityTimelineAvatar({ className, src, alt = "", initials, children,
45
45
  return /* @__PURE__ */ jsx(Avatar, {
46
46
  "data-slot": "activity-timeline-avatar",
47
47
  size: "md",
48
- className: cn("bg-surface-brand", className),
48
+ className: cn("relative z-1 bg-surface-brand", className),
49
49
  ...props,
50
50
  children: children ?? /* @__PURE__ */ jsxs(Fragment, { children: [src ? /* @__PURE__ */ jsx(AvatarImage, {
51
51
  src,
@@ -60,7 +60,7 @@ function ActivityTimelineConnector({ className, ...props }) {
60
60
  return /* @__PURE__ */ jsx("span", {
61
61
  "aria-hidden": "true",
62
62
  "data-slot": "activity-timeline-connector",
63
- className: cn("h-6 w-0.5 shrink-0 rounded-full bg-line-subtle", className),
63
+ className: cn("absolute top-10 -bottom-6 z-0 w-0.5 rounded-full bg-line-subtle", className),
64
64
  ...props
65
65
  });
66
66
  }
@@ -5,14 +5,14 @@ import { jsx, jsxs } from "react/jsx-runtime";
5
5
  function AuthLayout({ className, ...props }) {
6
6
  return /* @__PURE__ */ jsx("main", {
7
7
  "data-slot": "auth-layout",
8
- className: cn("grid min-h-svh bg-surface p-gdt-lg text-fg-primary lg:grid-cols-[minmax(0,1fr)_minmax(30rem,1fr)] lg:bg-surface-brand lg:p-0", className),
8
+ className: cn("grid min-h-svh bg-canvas text-fg-primary lg:grid-cols-[minmax(0,1fr)_minmax(30rem,1fr)] lg:bg-[linear-gradient(180deg,var(--color-surface-brand)_0%,var(--color-moss-600)_100%)]", className),
9
9
  ...props
10
10
  });
11
11
  }
12
12
  function AuthLayoutBrandPanel({ className, children, ...props }) {
13
13
  return /* @__PURE__ */ jsx("section", {
14
14
  "data-slot": "auth-layout-brand-panel",
15
- className: cn("relative hidden min-h-svh overflow-hidden bg-surface-brand px-gdt-5xl py-gdt-5xl text-fg-on-brand lg:flex lg:flex-col", "before:absolute before:inset-0 before:bg-[radial-gradient(circle_at_20%_20%,rgb(255_255_255_/_0.12),transparent_24rem),radial-gradient(circle_at_80%_70%,rgb(0_0_0_/_0.14),transparent_28rem)] before:content-['']", "after:absolute after:inset-0 after:opacity-18 after:[background-image:radial-gradient(currentColor_0.7px,transparent_0.7px)] after:[background-size:7px_7px] after:content-['']", className),
15
+ className: cn("relative hidden min-h-svh overflow-hidden bg-[linear-gradient(180deg,var(--color-surface-brand)_0%,var(--color-moss-600)_100%)] px-gdt-3xl py-gdt-5xl text-fg-on-brand lg:flex lg:flex-col", "after:absolute after:inset-0 after:opacity-18 after:[background-image:radial-gradient(currentColor_0.7px,transparent_0.7px)] after:[background-size:7px_7px] after:content-['']", className),
16
16
  ...props,
17
17
  children: /* @__PURE__ */ jsx("div", {
18
18
  className: "relative z-10 flex min-h-0 flex-1 flex-col",
@@ -23,7 +23,7 @@ function AuthLayoutBrandPanel({ className, children, ...props }) {
23
23
  function AuthLayoutBrandLogo({ children, className, ...props }) {
24
24
  return /* @__PURE__ */ jsx("div", {
25
25
  "data-slot": "auth-layout-brand-logo",
26
- className: cn("mb-gdt-3xl flex items-center text-fg-on-brand", className),
26
+ className: cn("mb-[1.125rem] flex items-center text-fg-on-brand", className),
27
27
  ...props,
28
28
  children: children ?? /* @__PURE__ */ jsx(GiddaaLogo, { className: "h-auto w-35" })
29
29
  });
@@ -38,49 +38,49 @@ function AuthLayoutBrandContent({ className, ...props }) {
38
38
  function AuthLayoutBrandTitle({ className, ...props }) {
39
39
  return /* @__PURE__ */ jsx("h2", {
40
40
  "data-slot": "auth-layout-brand-title",
41
- className: cn("text-gdt-h1 text-balance", className),
41
+ className: cn("text-gdt-h1 text-balance xl:text-gdt-display", className),
42
42
  ...props
43
43
  });
44
44
  }
45
45
  function AuthLayoutBrandDescription({ className, ...props }) {
46
46
  return /* @__PURE__ */ jsx("p", {
47
47
  "data-slot": "auth-layout-brand-description",
48
- className: cn("mt-gdt-lg text-gdt-md text-pretty opacity-90", className),
48
+ className: cn("mt-[1.125rem] text-gdt-md text-pretty", className),
49
49
  ...props
50
50
  });
51
51
  }
52
52
  function AuthLayoutMedia({ className, ...props }) {
53
53
  return /* @__PURE__ */ jsx("div", {
54
54
  "data-slot": "auth-layout-media",
55
- className: cn("mt-auto grid h-58 grid-cols-3 items-end gap-gdt-lg pt-gdt-5xl", className),
55
+ className: cn("-mb-gdt-5xl mt-auto grid h-58 grid-cols-3 items-end gap-gdt-lg xl:-mb-[9rem] xl:h-[23.25rem]", className),
56
56
  ...props
57
57
  });
58
58
  }
59
59
  function AuthLayoutMediaItem({ className, ...props }) {
60
60
  return /* @__PURE__ */ jsx("div", {
61
61
  "data-slot": "auth-layout-media-item",
62
- className: cn("min-h-32 overflow-hidden rounded-t-4xl bg-surface-glass-overlay-container-1 shadow-3 odd:h-36 even:h-52", className),
62
+ className: cn("min-h-32 overflow-hidden rounded-t-3xl bg-surface-glass-overlay-container-1 shadow-3 odd:h-36 even:h-52 xl:odd:h-[17rem] xl:even:h-[23.25rem]", className),
63
63
  ...props
64
64
  });
65
65
  }
66
66
  function AuthLayoutMain({ className, ...props }) {
67
67
  return /* @__PURE__ */ jsx("section", {
68
68
  "data-slot": "auth-layout-main",
69
- className: cn("flex min-h-[calc(100svh-2rem)] items-stretch justify-center bg-canvas lg:min-h-svh lg:rounded-l-[5rem]", className),
69
+ className: cn("flex min-h-svh items-stretch justify-center bg-canvas lg:rounded-l-[5rem]", className),
70
70
  ...props
71
71
  });
72
72
  }
73
73
  function AuthLayoutCard({ className, ...props }) {
74
74
  return /* @__PURE__ */ jsx("div", {
75
75
  "data-slot": "auth-layout-card",
76
- className: cn("flex w-full max-w-[26.5rem] flex-col border border-line-subtle bg-canvas px-gdt-lg py-gdt-2xl sm:px-gdt-2xl lg:max-w-[32rem] lg:border-0 lg:px-0 lg:py-gdt-5xl", className),
76
+ className: cn("flex min-h-svh w-full max-w-none flex-col bg-canvas px-5 py-gdt-xl sm:max-w-[26.5rem] sm:px-gdt-2xl lg:max-w-[35rem] lg:px-gdt-2xl lg:pt-gdt-4xl lg:pb-gdt-3xl xl:px-0", className),
77
77
  ...props
78
78
  });
79
79
  }
80
80
  function AuthLayoutTopAction({ className, ...props }) {
81
81
  return /* @__PURE__ */ jsx("div", {
82
82
  "data-slot": "auth-layout-top-action",
83
- className: cn("mb-gdt-4xl text-gdt-xs text-fg-secondary", className),
83
+ className: cn("mb-gdt-xl text-gdt-sm text-fg-secondary lg:mb-gdt-6xl", className),
84
84
  ...props
85
85
  });
86
86
  }
@@ -89,34 +89,34 @@ function AuthLayoutMobileLogo({ children, className, ...props }) {
89
89
  "data-slot": "auth-layout-mobile-logo",
90
90
  className: cn("mb-gdt-xl flex items-center text-fg-brand lg:hidden", className),
91
91
  ...props,
92
- children: children ?? /* @__PURE__ */ jsx(GiddaaLogo, { className: "h-auto w-30" })
92
+ children: children ?? /* @__PURE__ */ jsx(GiddaaLogo, { className: "h-auto w-[8.875rem]" })
93
93
  });
94
94
  }
95
95
  function AuthLayoutHeader({ className, ...props }) {
96
96
  return /* @__PURE__ */ jsx("header", {
97
97
  "data-slot": "auth-layout-header",
98
- className: cn("mb-gdt-xl flex flex-col gap-gdt-sm", className),
98
+ className: cn("mb-gdt-xl flex flex-col gap-gdt-sm lg:mb-[1.125rem] lg:gap-[1.125rem]", className),
99
99
  ...props
100
100
  });
101
101
  }
102
102
  function AuthLayoutTitle({ className, ...props }) {
103
103
  return /* @__PURE__ */ jsx("h1", {
104
104
  "data-slot": "auth-layout-title",
105
- className: cn("text-gdt-h2 text-fg-primary", className),
105
+ className: cn("text-gdt-h1 text-fg-primary lg:text-[3rem] lg:leading-[4.25rem] lg:tracking-normal", className),
106
106
  ...props
107
107
  });
108
108
  }
109
109
  function AuthLayoutDescription({ className, ...props }) {
110
110
  return /* @__PURE__ */ jsx("p", {
111
111
  "data-slot": "auth-layout-description",
112
- className: cn("text-gdt-sm text-fg-secondary", className),
112
+ className: cn("text-gdt-md text-fg-secondary", className),
113
113
  ...props
114
114
  });
115
115
  }
116
116
  function AuthLayoutForm({ className, ...props }) {
117
117
  return /* @__PURE__ */ jsx("form", {
118
118
  "data-slot": "auth-layout-form",
119
- className: cn("flex flex-col gap-gdt-lg", className),
119
+ className: cn("flex flex-col gap-gdt-xl lg:gap-[1.125rem]", className),
120
120
  ...props
121
121
  });
122
122
  }
@@ -130,12 +130,12 @@ function AuthLayoutActions({ className, ...props }) {
130
130
  function AuthLayoutDivider({ children = "Or continue with", className, ...props }) {
131
131
  return /* @__PURE__ */ jsxs("div", {
132
132
  "data-slot": "auth-layout-divider",
133
- className: cn("relative flex items-center py-gdt-sm text-gdt-sm text-fg-secondary", className),
133
+ className: cn("relative flex items-center text-gdt-md font-semibold text-fg-secondary", className),
134
134
  ...props,
135
135
  children: [
136
136
  /* @__PURE__ */ jsx("div", { className: "h-px flex-1 bg-line-subtle" }),
137
137
  /* @__PURE__ */ jsx("span", {
138
- className: "px-gdt-md",
138
+ className: "px-[0.875rem]",
139
139
  children
140
140
  }),
141
141
  /* @__PURE__ */ jsx("div", { className: "h-px flex-1 bg-line-subtle" })
@@ -145,7 +145,7 @@ function AuthLayoutDivider({ children = "Or continue with", className, ...props
145
145
  function AuthLayoutFooter({ className, ...props }) {
146
146
  return /* @__PURE__ */ jsx("footer", {
147
147
  "data-slot": "auth-layout-footer",
148
- className: cn("mt-auto flex items-center justify-between gap-gdt-lg pt-gdt-5xl text-gdt-subtext text-fg-secondary", className),
148
+ className: cn("mt-auto flex items-center justify-between gap-gdt-lg pt-gdt-5xl text-gdt-xs text-fg-secondary", className),
149
149
  ...props
150
150
  });
151
151
  }
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import { ChartConfig } from "./chart.js";
3
3
  import * as React from "react";
4
4
  import { Bar, BarChart as BarChart$1, CartesianGrid, XAxis, YAxis } from "recharts";
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import * as React from "react";
3
3
  //#region src/bullet-chart.d.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import { Separator } from "./separator.js";
3
3
  import { useRender } from "@base-ui/react/use-render";
4
4
  import { VariantProps } from "class-variance-authority";
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  import * as React from "react";
4
4
  import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
package/dist/chart.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  import * as React from "react";
4
4
  import * as RechartsPrimitive from "recharts";
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import * as React from "react";
3
3
  import { Combobox as Combobox$1 } from "@base-ui/react";
4
4
  import { Virtualizer } from "@tanstack/react-virtual";
@@ -1,4 +1,4 @@
1
- import { t as ComponentSize } from "./size-context-D4mYvcg8.js";
1
+ import { t as ComponentSize } from "./size-context-BX6kAdVj.js";
2
2
  import * as React from "react";
3
3
  import { Menu } from "@base-ui/react/menu";
4
4
  //#region src/dropdown-menu.d.ts
package/dist/footer.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { InputGroup } from "./input-group.js";
1
+ import { n as InputSize } from "./input-CfoEJ8A6.js";
2
2
  import { useRender } from "@base-ui/react/use-render";
3
3
  import * as React from "react";
4
4
  //#region src/footer.d.ts
@@ -33,7 +33,9 @@ declare function FooterSocialLink({ className, ...props }: React.ComponentProps<
33
33
  declare function FooterNewsletter({ className, ...props }: React.ComponentProps<"form">): React.JSX.Element;
34
34
  declare function FooterNewsletterTitle({ className, ...props }: React.ComponentProps<"h3">): React.JSX.Element;
35
35
  declare function FooterNewsletterDescription({ className, ...props }: React.ComponentProps<"p">): React.JSX.Element;
36
- declare function FooterNewsletterControl({ className, children, ...props }: React.ComponentProps<typeof InputGroup>): React.JSX.Element;
36
+ declare function FooterNewsletterControl({ className, children, size, ...props }: React.ComponentProps<"div"> & {
37
+ size?: InputSize;
38
+ }): React.JSX.Element;
37
39
  declare function FooterBottom({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
38
40
  declare function FooterLegalLinks({ className, ...props }: React.ComponentProps<"nav">): React.JSX.Element;
39
41
  //#endregion