@almadar/ui 4.56.4 → 4.57.2

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.
@@ -1901,7 +1901,7 @@ var init_Badge = __esm({
1901
1901
  lg: "px-3 py-1.5 text-base"
1902
1902
  };
1903
1903
  Badge = React83__namespace.default.forwardRef(
1904
- ({ className, variant = "default", size = "sm", amount, label, icon, children, ...props }, ref) => {
1904
+ ({ className, variant = "default", size = "sm", amount, label, icon, children, onRemove, removeLabel, ...props }, ref) => {
1905
1905
  const iconSizes3 = { sm: "w-3 h-3", md: "w-3.5 h-3.5", lg: "w-4 h-4" };
1906
1906
  const resolvedIcon = typeof icon === "string" ? (() => {
1907
1907
  const I = resolveIcon(icon);
@@ -1915,12 +1915,31 @@ var init_Badge = __esm({
1915
1915
  "inline-flex items-center gap-1 font-bold rounded-sm",
1916
1916
  variantStyles3[variant],
1917
1917
  sizeStyles3[size],
1918
+ onRemove && "pr-1",
1918
1919
  className
1919
1920
  ),
1920
1921
  ...props,
1921
1922
  children: [
1922
1923
  resolvedIcon,
1923
- children || (amount != null ? `${label ? `${label} ` : ""}${amount}` : label)
1924
+ children || (amount != null ? `${label ? `${label} ` : ""}${amount}` : label),
1925
+ onRemove ? /* @__PURE__ */ jsxRuntime.jsx(
1926
+ "button",
1927
+ {
1928
+ type: "button",
1929
+ "aria-label": removeLabel ?? "Remove",
1930
+ onClick: (e) => {
1931
+ e.stopPropagation();
1932
+ onRemove();
1933
+ },
1934
+ className: cn(
1935
+ "inline-flex items-center justify-center rounded-sm",
1936
+ "hover:bg-foreground/10 focus:outline-none focus:ring-1 focus:ring-ring",
1937
+ "transition-colors",
1938
+ size === "sm" ? "w-4 h-4 ml-0.5" : size === "md" ? "w-5 h-5 ml-1" : "w-6 h-6 ml-1"
1939
+ ),
1940
+ children: /* @__PURE__ */ jsxRuntime.jsx(LucideIcons.X, { className: iconSizes3[size] })
1941
+ }
1942
+ ) : null
1924
1943
  ]
1925
1944
  }
1926
1945
  );
@@ -9326,7 +9345,7 @@ var init_MapView = __esm({
9326
9345
  shadowSize: [41, 41]
9327
9346
  });
9328
9347
  L.Marker.prototype.options.icon = defaultIcon;
9329
- const { useEffect: useEffect69, useRef: useRef65, useCallback: useCallback112, useState: useState100 } = React83__namespace.default;
9348
+ const { useEffect: useEffect69, useRef: useRef65, useCallback: useCallback113, useState: useState101 } = React83__namespace.default;
9330
9349
  const { Typography: Typography2 } = await Promise.resolve().then(() => (init_Typography(), Typography_exports));
9331
9350
  const { useEventBus: useEventBus2 } = await Promise.resolve().then(() => (init_useEventBus(), useEventBus_exports));
9332
9351
  function MapUpdater({ centerLat, centerLng, zoom }) {
@@ -9371,8 +9390,8 @@ var init_MapView = __esm({
9371
9390
  showAttribution = true
9372
9391
  }) {
9373
9392
  const eventBus = useEventBus2();
9374
- const [clickedPosition, setClickedPosition] = useState100(null);
9375
- const handleMapClick = useCallback112((lat, lng) => {
9393
+ const [clickedPosition, setClickedPosition] = useState101(null);
9394
+ const handleMapClick = useCallback113((lat, lng) => {
9376
9395
  if (showClickedPin) {
9377
9396
  setClickedPosition({ lat, lng });
9378
9397
  }
@@ -9381,7 +9400,7 @@ var init_MapView = __esm({
9381
9400
  eventBus.emit(`UI:${mapClickEvent}`, { latitude: lat, longitude: lng });
9382
9401
  }
9383
9402
  }, [onMapClick, mapClickEvent, eventBus, showClickedPin]);
9384
- const handleMarkerClick = useCallback112((marker) => {
9403
+ const handleMarkerClick = useCallback113((marker) => {
9385
9404
  onMarkerClick?.(marker);
9386
9405
  if (markerClickEvent) {
9387
9406
  eventBus.emit(`UI:${markerClickEvent}`, { ...marker });
@@ -29264,6 +29283,98 @@ var init_TagCloud = __esm({
29264
29283
  TagCloud.displayName = "TagCloud";
29265
29284
  }
29266
29285
  });
29286
+ var TagInput;
29287
+ var init_TagInput = __esm({
29288
+ "components/molecules/TagInput.tsx"() {
29289
+ "use client";
29290
+ init_cn();
29291
+ init_useEventBus();
29292
+ init_Input();
29293
+ init_Badge();
29294
+ init_Stack();
29295
+ init_Typography();
29296
+ TagInput = ({
29297
+ value,
29298
+ onChange,
29299
+ placeholder,
29300
+ disabled = false,
29301
+ variant = "default",
29302
+ unique = true,
29303
+ helperText,
29304
+ className,
29305
+ addEvent,
29306
+ removeEvent
29307
+ }) => {
29308
+ const eventBus = useEventBus();
29309
+ const [draft, setDraft] = React83.useState("");
29310
+ const commit = React83.useCallback(() => {
29311
+ const tag = draft.trim();
29312
+ if (!tag) return;
29313
+ if (unique && value.includes(tag)) {
29314
+ setDraft("");
29315
+ return;
29316
+ }
29317
+ const next = [...value, tag];
29318
+ onChange?.(next);
29319
+ if (addEvent) {
29320
+ eventBus.emit(`UI:${addEvent}`, { tag, value: next });
29321
+ }
29322
+ setDraft("");
29323
+ }, [draft, value, onChange, unique, addEvent, eventBus]);
29324
+ const removeAt = React83.useCallback(
29325
+ (index) => {
29326
+ if (disabled) return;
29327
+ const tag = value[index];
29328
+ const next = value.slice();
29329
+ next.splice(index, 1);
29330
+ onChange?.(next);
29331
+ if (removeEvent) {
29332
+ eventBus.emit(`UI:${removeEvent}`, { tag, index, value: next });
29333
+ }
29334
+ },
29335
+ [value, onChange, disabled, removeEvent, eventBus]
29336
+ );
29337
+ const handleKeyDown = React83.useCallback(
29338
+ (e) => {
29339
+ if (disabled) return;
29340
+ if (e.key === "Enter") {
29341
+ e.preventDefault();
29342
+ commit();
29343
+ } else if (e.key === "Backspace" && draft.length === 0 && value.length > 0) {
29344
+ e.preventDefault();
29345
+ removeAt(value.length - 1);
29346
+ }
29347
+ },
29348
+ [commit, draft.length, value, removeAt, disabled]
29349
+ );
29350
+ return /* @__PURE__ */ jsxRuntime.jsxs(VStack, { gap: "xs", className: cn("w-full", className), children: [
29351
+ value.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(HStack, { gap: "xs", className: "flex-wrap", children: value.map((tag, index) => /* @__PURE__ */ jsxRuntime.jsx(
29352
+ Badge,
29353
+ {
29354
+ variant,
29355
+ size: "sm",
29356
+ onRemove: disabled ? void 0 : () => removeAt(index),
29357
+ removeLabel: `Remove ${tag}`,
29358
+ children: tag
29359
+ },
29360
+ `${tag}-${index}`
29361
+ )) }) : null,
29362
+ /* @__PURE__ */ jsxRuntime.jsx(
29363
+ Input,
29364
+ {
29365
+ value: draft,
29366
+ placeholder: placeholder ?? "Type and press Enter\u2026",
29367
+ disabled,
29368
+ onChange: (e) => setDraft(e.target.value),
29369
+ onKeyDown: handleKeyDown
29370
+ }
29371
+ ),
29372
+ helperText ? /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "caption", color: "muted", children: helperText }) : null
29373
+ ] });
29374
+ };
29375
+ TagInput.displayName = "TagInput";
29376
+ }
29377
+ });
29267
29378
  var ShowcaseCard;
29268
29379
  var init_ShowcaseCard = __esm({
29269
29380
  "components/molecules/ShowcaseCard.tsx"() {
@@ -32882,6 +32993,75 @@ var init_GradientDivider = __esm({
32882
32993
  GradientDivider.displayName = "GradientDivider";
32883
32994
  }
32884
32995
  });
32996
+ var MarketingFooter;
32997
+ var init_MarketingFooter = __esm({
32998
+ "components/molecules/MarketingFooter.tsx"() {
32999
+ "use client";
33000
+ init_cn();
33001
+ init_Box();
33002
+ init_Stack();
33003
+ init_Typography();
33004
+ MarketingFooter = ({
33005
+ columns,
33006
+ copyright,
33007
+ logo,
33008
+ className
33009
+ }) => {
33010
+ return /* @__PURE__ */ jsxRuntime.jsx(
33011
+ Box,
33012
+ {
33013
+ as: "footer",
33014
+ className: cn(
33015
+ "bg-surface",
33016
+ "border-t border-border",
33017
+ "pt-12 pb-8 px-4",
33018
+ className
33019
+ ),
33020
+ children: /* @__PURE__ */ jsxRuntime.jsxs(VStack, { gap: "lg", className: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8", children: [
33021
+ /* @__PURE__ */ jsxRuntime.jsxs(HStack, { gap: "lg", align: "start", className: "flex-wrap w-full justify-between", children: [
33022
+ logo && /* @__PURE__ */ jsxRuntime.jsx(VStack, { gap: "sm", className: "min-w-[140px] mb-4", children: logo.href ? /* @__PURE__ */ jsxRuntime.jsx("a", { href: logo.href, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: logo.src, alt: logo.alt, className: "h-8 w-auto" }) }) : /* @__PURE__ */ jsxRuntime.jsx("img", { src: logo.src, alt: logo.alt, className: "h-8 w-auto" }) }),
33023
+ columns.map((col) => /* @__PURE__ */ jsxRuntime.jsxs(VStack, { gap: "sm", className: "min-w-[140px] mb-4", children: [
33024
+ /* @__PURE__ */ jsxRuntime.jsx(
33025
+ Typography,
33026
+ {
33027
+ variant: "body2",
33028
+ className: "font-semibold text-foreground mb-1",
33029
+ children: col.title
33030
+ }
33031
+ ),
33032
+ col.items.map((item) => /* @__PURE__ */ jsxRuntime.jsx(
33033
+ "a",
33034
+ {
33035
+ href: item.href,
33036
+ className: cn(
33037
+ "text-sm no-underline",
33038
+ "text-foreground/60",
33039
+ "hover:text-accent",
33040
+ "transition-colors duration-150"
33041
+ ),
33042
+ target: item.href.startsWith("http") ? "_blank" : void 0,
33043
+ rel: item.href.startsWith("http") ? "noopener noreferrer" : void 0,
33044
+ children: item.label
33045
+ },
33046
+ item.label
33047
+ ))
33048
+ ] }, col.title))
33049
+ ] }),
33050
+ copyright && /* @__PURE__ */ jsxRuntime.jsx(
33051
+ Typography,
33052
+ {
33053
+ variant: "caption",
33054
+ className: "text-foreground/30 text-center w-full pt-6",
33055
+ children: copyright
33056
+ }
33057
+ )
33058
+ ] })
33059
+ }
33060
+ );
33061
+ };
33062
+ MarketingFooter.displayName = "MarketingFooter";
33063
+ }
33064
+ });
32885
33065
  var PullQuote;
32886
33066
  var init_PullQuote = __esm({
32887
33067
  "components/molecules/PullQuote.tsx"() {
@@ -44637,6 +44817,7 @@ var init_component_registry_generated = __esm({
44637
44817
  init_List();
44638
44818
  init_LoadingState();
44639
44819
  init_MarkdownContent();
44820
+ init_MarketingFooter();
44640
44821
  init_MasterDetail();
44641
44822
  init_MasterDetailLayout();
44642
44823
  init_MatrixQuestion();
@@ -44736,6 +44917,7 @@ var init_component_registry_generated = __esm({
44736
44917
  init_Table();
44737
44918
  init_Tabs();
44738
44919
  init_TagCloud();
44920
+ init_TagInput();
44739
44921
  init_TeamCard();
44740
44922
  init_TeamOrganism();
44741
44923
  init_TextHighlight();
@@ -44936,6 +45118,7 @@ var init_component_registry_generated = __esm({
44936
45118
  "MapView": MapViewPattern,
44937
45119
  "MapViewPattern": MapViewPattern,
44938
45120
  "MarkdownContent": MarkdownContent,
45121
+ "MarketingFooter": MarketingFooter,
44939
45122
  "MasterDetail": MasterDetail,
44940
45123
  "MasterDetailLayout": MasterDetailLayout,
44941
45124
  "MatrixQuestion": MatrixQuestion,
@@ -45051,6 +45234,7 @@ var init_component_registry_generated = __esm({
45051
45234
  "Table": Table,
45052
45235
  "Tabs": Tabs,
45053
45236
  "TagCloud": TagCloud,
45237
+ "TagInput": TagInput,
45054
45238
  "TeamCard": TeamCard,
45055
45239
  "TeamOrganism": TeamOrganism,
45056
45240
  "TextHighlight": TextHighlight,
@@ -1855,7 +1855,7 @@ var init_Badge = __esm({
1855
1855
  lg: "px-3 py-1.5 text-base"
1856
1856
  };
1857
1857
  Badge = React83__default.forwardRef(
1858
- ({ className, variant = "default", size = "sm", amount, label, icon, children, ...props }, ref) => {
1858
+ ({ className, variant = "default", size = "sm", amount, label, icon, children, onRemove, removeLabel, ...props }, ref) => {
1859
1859
  const iconSizes3 = { sm: "w-3 h-3", md: "w-3.5 h-3.5", lg: "w-4 h-4" };
1860
1860
  const resolvedIcon = typeof icon === "string" ? (() => {
1861
1861
  const I = resolveIcon(icon);
@@ -1869,12 +1869,31 @@ var init_Badge = __esm({
1869
1869
  "inline-flex items-center gap-1 font-bold rounded-sm",
1870
1870
  variantStyles3[variant],
1871
1871
  sizeStyles3[size],
1872
+ onRemove && "pr-1",
1872
1873
  className
1873
1874
  ),
1874
1875
  ...props,
1875
1876
  children: [
1876
1877
  resolvedIcon,
1877
- children || (amount != null ? `${label ? `${label} ` : ""}${amount}` : label)
1878
+ children || (amount != null ? `${label ? `${label} ` : ""}${amount}` : label),
1879
+ onRemove ? /* @__PURE__ */ jsx(
1880
+ "button",
1881
+ {
1882
+ type: "button",
1883
+ "aria-label": removeLabel ?? "Remove",
1884
+ onClick: (e) => {
1885
+ e.stopPropagation();
1886
+ onRemove();
1887
+ },
1888
+ className: cn(
1889
+ "inline-flex items-center justify-center rounded-sm",
1890
+ "hover:bg-foreground/10 focus:outline-none focus:ring-1 focus:ring-ring",
1891
+ "transition-colors",
1892
+ size === "sm" ? "w-4 h-4 ml-0.5" : size === "md" ? "w-5 h-5 ml-1" : "w-6 h-6 ml-1"
1893
+ ),
1894
+ children: /* @__PURE__ */ jsx(X, { className: iconSizes3[size] })
1895
+ }
1896
+ ) : null
1878
1897
  ]
1879
1898
  }
1880
1899
  );
@@ -9280,7 +9299,7 @@ var init_MapView = __esm({
9280
9299
  shadowSize: [41, 41]
9281
9300
  });
9282
9301
  L.Marker.prototype.options.icon = defaultIcon;
9283
- const { useEffect: useEffect69, useRef: useRef65, useCallback: useCallback112, useState: useState100 } = React83__default;
9302
+ const { useEffect: useEffect69, useRef: useRef65, useCallback: useCallback113, useState: useState101 } = React83__default;
9284
9303
  const { Typography: Typography2 } = await Promise.resolve().then(() => (init_Typography(), Typography_exports));
9285
9304
  const { useEventBus: useEventBus2 } = await Promise.resolve().then(() => (init_useEventBus(), useEventBus_exports));
9286
9305
  function MapUpdater({ centerLat, centerLng, zoom }) {
@@ -9325,8 +9344,8 @@ var init_MapView = __esm({
9325
9344
  showAttribution = true
9326
9345
  }) {
9327
9346
  const eventBus = useEventBus2();
9328
- const [clickedPosition, setClickedPosition] = useState100(null);
9329
- const handleMapClick = useCallback112((lat, lng) => {
9347
+ const [clickedPosition, setClickedPosition] = useState101(null);
9348
+ const handleMapClick = useCallback113((lat, lng) => {
9330
9349
  if (showClickedPin) {
9331
9350
  setClickedPosition({ lat, lng });
9332
9351
  }
@@ -9335,7 +9354,7 @@ var init_MapView = __esm({
9335
9354
  eventBus.emit(`UI:${mapClickEvent}`, { latitude: lat, longitude: lng });
9336
9355
  }
9337
9356
  }, [onMapClick, mapClickEvent, eventBus, showClickedPin]);
9338
- const handleMarkerClick = useCallback112((marker) => {
9357
+ const handleMarkerClick = useCallback113((marker) => {
9339
9358
  onMarkerClick?.(marker);
9340
9359
  if (markerClickEvent) {
9341
9360
  eventBus.emit(`UI:${markerClickEvent}`, { ...marker });
@@ -29218,6 +29237,98 @@ var init_TagCloud = __esm({
29218
29237
  TagCloud.displayName = "TagCloud";
29219
29238
  }
29220
29239
  });
29240
+ var TagInput;
29241
+ var init_TagInput = __esm({
29242
+ "components/molecules/TagInput.tsx"() {
29243
+ "use client";
29244
+ init_cn();
29245
+ init_useEventBus();
29246
+ init_Input();
29247
+ init_Badge();
29248
+ init_Stack();
29249
+ init_Typography();
29250
+ TagInput = ({
29251
+ value,
29252
+ onChange,
29253
+ placeholder,
29254
+ disabled = false,
29255
+ variant = "default",
29256
+ unique = true,
29257
+ helperText,
29258
+ className,
29259
+ addEvent,
29260
+ removeEvent
29261
+ }) => {
29262
+ const eventBus = useEventBus();
29263
+ const [draft, setDraft] = useState("");
29264
+ const commit = useCallback(() => {
29265
+ const tag = draft.trim();
29266
+ if (!tag) return;
29267
+ if (unique && value.includes(tag)) {
29268
+ setDraft("");
29269
+ return;
29270
+ }
29271
+ const next = [...value, tag];
29272
+ onChange?.(next);
29273
+ if (addEvent) {
29274
+ eventBus.emit(`UI:${addEvent}`, { tag, value: next });
29275
+ }
29276
+ setDraft("");
29277
+ }, [draft, value, onChange, unique, addEvent, eventBus]);
29278
+ const removeAt = useCallback(
29279
+ (index) => {
29280
+ if (disabled) return;
29281
+ const tag = value[index];
29282
+ const next = value.slice();
29283
+ next.splice(index, 1);
29284
+ onChange?.(next);
29285
+ if (removeEvent) {
29286
+ eventBus.emit(`UI:${removeEvent}`, { tag, index, value: next });
29287
+ }
29288
+ },
29289
+ [value, onChange, disabled, removeEvent, eventBus]
29290
+ );
29291
+ const handleKeyDown = useCallback(
29292
+ (e) => {
29293
+ if (disabled) return;
29294
+ if (e.key === "Enter") {
29295
+ e.preventDefault();
29296
+ commit();
29297
+ } else if (e.key === "Backspace" && draft.length === 0 && value.length > 0) {
29298
+ e.preventDefault();
29299
+ removeAt(value.length - 1);
29300
+ }
29301
+ },
29302
+ [commit, draft.length, value, removeAt, disabled]
29303
+ );
29304
+ return /* @__PURE__ */ jsxs(VStack, { gap: "xs", className: cn("w-full", className), children: [
29305
+ value.length > 0 ? /* @__PURE__ */ jsx(HStack, { gap: "xs", className: "flex-wrap", children: value.map((tag, index) => /* @__PURE__ */ jsx(
29306
+ Badge,
29307
+ {
29308
+ variant,
29309
+ size: "sm",
29310
+ onRemove: disabled ? void 0 : () => removeAt(index),
29311
+ removeLabel: `Remove ${tag}`,
29312
+ children: tag
29313
+ },
29314
+ `${tag}-${index}`
29315
+ )) }) : null,
29316
+ /* @__PURE__ */ jsx(
29317
+ Input,
29318
+ {
29319
+ value: draft,
29320
+ placeholder: placeholder ?? "Type and press Enter\u2026",
29321
+ disabled,
29322
+ onChange: (e) => setDraft(e.target.value),
29323
+ onKeyDown: handleKeyDown
29324
+ }
29325
+ ),
29326
+ helperText ? /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "muted", children: helperText }) : null
29327
+ ] });
29328
+ };
29329
+ TagInput.displayName = "TagInput";
29330
+ }
29331
+ });
29221
29332
  var ShowcaseCard;
29222
29333
  var init_ShowcaseCard = __esm({
29223
29334
  "components/molecules/ShowcaseCard.tsx"() {
@@ -32836,6 +32947,75 @@ var init_GradientDivider = __esm({
32836
32947
  GradientDivider.displayName = "GradientDivider";
32837
32948
  }
32838
32949
  });
32950
+ var MarketingFooter;
32951
+ var init_MarketingFooter = __esm({
32952
+ "components/molecules/MarketingFooter.tsx"() {
32953
+ "use client";
32954
+ init_cn();
32955
+ init_Box();
32956
+ init_Stack();
32957
+ init_Typography();
32958
+ MarketingFooter = ({
32959
+ columns,
32960
+ copyright,
32961
+ logo,
32962
+ className
32963
+ }) => {
32964
+ return /* @__PURE__ */ jsx(
32965
+ Box,
32966
+ {
32967
+ as: "footer",
32968
+ className: cn(
32969
+ "bg-surface",
32970
+ "border-t border-border",
32971
+ "pt-12 pb-8 px-4",
32972
+ className
32973
+ ),
32974
+ children: /* @__PURE__ */ jsxs(VStack, { gap: "lg", className: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8", children: [
32975
+ /* @__PURE__ */ jsxs(HStack, { gap: "lg", align: "start", className: "flex-wrap w-full justify-between", children: [
32976
+ logo && /* @__PURE__ */ jsx(VStack, { gap: "sm", className: "min-w-[140px] mb-4", children: logo.href ? /* @__PURE__ */ jsx("a", { href: logo.href, children: /* @__PURE__ */ jsx("img", { src: logo.src, alt: logo.alt, className: "h-8 w-auto" }) }) : /* @__PURE__ */ jsx("img", { src: logo.src, alt: logo.alt, className: "h-8 w-auto" }) }),
32977
+ columns.map((col) => /* @__PURE__ */ jsxs(VStack, { gap: "sm", className: "min-w-[140px] mb-4", children: [
32978
+ /* @__PURE__ */ jsx(
32979
+ Typography,
32980
+ {
32981
+ variant: "body2",
32982
+ className: "font-semibold text-foreground mb-1",
32983
+ children: col.title
32984
+ }
32985
+ ),
32986
+ col.items.map((item) => /* @__PURE__ */ jsx(
32987
+ "a",
32988
+ {
32989
+ href: item.href,
32990
+ className: cn(
32991
+ "text-sm no-underline",
32992
+ "text-foreground/60",
32993
+ "hover:text-accent",
32994
+ "transition-colors duration-150"
32995
+ ),
32996
+ target: item.href.startsWith("http") ? "_blank" : void 0,
32997
+ rel: item.href.startsWith("http") ? "noopener noreferrer" : void 0,
32998
+ children: item.label
32999
+ },
33000
+ item.label
33001
+ ))
33002
+ ] }, col.title))
33003
+ ] }),
33004
+ copyright && /* @__PURE__ */ jsx(
33005
+ Typography,
33006
+ {
33007
+ variant: "caption",
33008
+ className: "text-foreground/30 text-center w-full pt-6",
33009
+ children: copyright
33010
+ }
33011
+ )
33012
+ ] })
33013
+ }
33014
+ );
33015
+ };
33016
+ MarketingFooter.displayName = "MarketingFooter";
33017
+ }
33018
+ });
32839
33019
  var PullQuote;
32840
33020
  var init_PullQuote = __esm({
32841
33021
  "components/molecules/PullQuote.tsx"() {
@@ -44591,6 +44771,7 @@ var init_component_registry_generated = __esm({
44591
44771
  init_List();
44592
44772
  init_LoadingState();
44593
44773
  init_MarkdownContent();
44774
+ init_MarketingFooter();
44594
44775
  init_MasterDetail();
44595
44776
  init_MasterDetailLayout();
44596
44777
  init_MatrixQuestion();
@@ -44690,6 +44871,7 @@ var init_component_registry_generated = __esm({
44690
44871
  init_Table();
44691
44872
  init_Tabs();
44692
44873
  init_TagCloud();
44874
+ init_TagInput();
44693
44875
  init_TeamCard();
44694
44876
  init_TeamOrganism();
44695
44877
  init_TextHighlight();
@@ -44890,6 +45072,7 @@ var init_component_registry_generated = __esm({
44890
45072
  "MapView": MapViewPattern,
44891
45073
  "MapViewPattern": MapViewPattern,
44892
45074
  "MarkdownContent": MarkdownContent,
45075
+ "MarketingFooter": MarketingFooter,
44893
45076
  "MasterDetail": MasterDetail,
44894
45077
  "MasterDetailLayout": MasterDetailLayout,
44895
45078
  "MatrixQuestion": MatrixQuestion,
@@ -45005,6 +45188,7 @@ var init_component_registry_generated = __esm({
45005
45188
  "Table": Table,
45006
45189
  "Tabs": Tabs,
45007
45190
  "TagCloud": TagCloud,
45191
+ "TagInput": TagInput,
45008
45192
  "TeamCard": TeamCard,
45009
45193
  "TeamOrganism": TeamOrganism,
45010
45194
  "TextHighlight": TextHighlight,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "4.56.4",
3
+ "version": "4.57.2",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "sideEffects": [