@parto-system-design/ui 1.1.19 → 1.1.21

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 (29) hide show
  1. package/dist/components/ui/alert-rule-card.d.cts +1 -1
  2. package/dist/components/ui/alert-rule-card.d.ts +1 -1
  3. package/dist/components/ui/badge.d.cts +1 -1
  4. package/dist/components/ui/badge.d.ts +1 -1
  5. package/dist/components/ui/button.d.cts +2 -2
  6. package/dist/components/ui/button.d.ts +2 -2
  7. package/dist/components/ui/concept-card.cjs +40 -12
  8. package/dist/components/ui/concept-card.d.cts +2 -2
  9. package/dist/components/ui/concept-card.d.ts +2 -2
  10. package/dist/components/ui/concept-card.js +40 -12
  11. package/dist/components/ui/page-card.d.cts +2 -2
  12. package/dist/components/ui/page-card.d.ts +2 -2
  13. package/dist/components/ui/switch.d.cts +1 -1
  14. package/dist/components/ui/switch.d.ts +1 -1
  15. package/dist/{concept-card-D7PfDkNR.d.ts → concept-card-DX5zRCk2.d.ts} +15 -4
  16. package/dist/{concept-card-BU8JL-gj.d.cts → concept-card-dZeBeup5.d.cts} +15 -4
  17. package/dist/{i18n-DD3DMY8O.d.cts → i18n-B4rvgH-T.d.cts} +1 -1
  18. package/dist/{i18n-UEClNsBy.d.ts → i18n-CZQ2kPWD.d.ts} +1 -1
  19. package/dist/index.cjs +49 -23
  20. package/dist/index.d.cts +20 -9
  21. package/dist/index.d.ts +20 -9
  22. package/dist/index.js +49 -23
  23. package/dist/{page-card-sIE4lvnb.d.ts → page-card-CU6_AmNR.d.ts} +1 -1
  24. package/dist/{page-card-DjztZrFM.d.cts → page-card-DWBUZYwM.d.cts} +1 -1
  25. package/dist/{server-FTUA8opZ.d.cts → server-BxuDPPiW.d.cts} +1 -1
  26. package/dist/{server-m6tiB6DB.d.ts → server-Cfw5kIug.d.ts} +1 -1
  27. package/dist/server.d.cts +2 -2
  28. package/dist/server.d.ts +2 -2
  29. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -7376,12 +7376,24 @@ var StatusBadge = React127__namespace.forwardRef(
7376
7376
  }
7377
7377
  );
7378
7378
  StatusBadge.displayName = "StatusBadge";
7379
- function calcPercents(data) {
7380
- const total = FLOW_KEYS.reduce((s, k) => s + (data[k] ?? 0), 0);
7379
+ function normalizeFlowData(data) {
7380
+ const counts = Object.fromEntries(FLOW_KEYS.map((k) => [k, 0]));
7381
+ if (Array.isArray(data)) {
7382
+ for (const item of data) {
7383
+ const key = resolveFlow(item.type);
7384
+ if (key) counts[key] += item.value ?? 0;
7385
+ }
7386
+ } else {
7387
+ for (const k of FLOW_KEYS) counts[k] = data[k] ?? 0;
7388
+ }
7389
+ return counts;
7390
+ }
7391
+ function calcPercents(counts) {
7392
+ const total = FLOW_KEYS.reduce((s, k) => s + counts[k], 0);
7381
7393
  const result = Object.fromEntries(FLOW_KEYS.map((k) => [k, 0]));
7382
7394
  if (total === 0) return result;
7383
- const floats = FLOW_KEYS.filter((k) => (data[k] ?? 0) > 0).map((k) => {
7384
- const v = (data[k] ?? 0) / total * 100;
7395
+ const floats = FLOW_KEYS.filter((k) => counts[k] > 0).map((k) => {
7396
+ const v = counts[k] / total * 100;
7385
7397
  return { k, floor: Math.floor(v), rem: v - Math.floor(v) };
7386
7398
  });
7387
7399
  const remaining = 100 - floats.reduce((s, f) => s + f.floor, 0);
@@ -7412,7 +7424,8 @@ var FlowDistribution = React127__namespace.forwardRef(
7412
7424
  ...props
7413
7425
  }, ref) => {
7414
7426
  const labels = flowLabels[locale] ?? flowLabels.fa;
7415
- const percents = calcPercents(data);
7427
+ const counts = normalizeFlowData(data);
7428
+ const percents = calcPercents(counts);
7416
7429
  const percentSign = locale === "en" ? "%" : "\u066A";
7417
7430
  if (isLoading) {
7418
7431
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-slot": "flow-distribution", className: cn("space-y-2", className), ...props, children: variant === "stacked" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-3 w-full rounded-full bg-muted animate-pulse" }) : variant === "compact" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-2", children: [0, 1, 2].map((i) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-5 w-20 rounded-full bg-muted animate-pulse" }, i)) }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-2", children: [0, 1, 2, 3].map((i) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
@@ -7422,7 +7435,7 @@ var FlowDistribution = React127__namespace.forwardRef(
7422
7435
  ] }, i)) }) });
7423
7436
  }
7424
7437
  if (variant === "stacked") {
7425
- const active = STACKED_ORDER.filter((k) => (data[k] ?? 0) > 0);
7438
+ const active = STACKED_ORDER.filter((k) => counts[k] > 0);
7426
7439
  const srLabel = active.map((k) => `${labels[k]} ${convertToLocalNumbers(percents[k], locale)}${percentSign}`).join("\u060C ");
7427
7440
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref, "data-slot": "flow-distribution", className: cn("space-y-2", className), ...props, children: [
7428
7441
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-3 w-full overflow-hidden rounded-full bg-muted", role: "img", "aria-label": srLabel, children: active.map((k) => /* @__PURE__ */ jsxRuntime.jsx(
@@ -7448,14 +7461,14 @@ var FlowDistribution = React127__namespace.forwardRef(
7448
7461
  ] }),
7449
7462
  showCounts && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-xs text-foreground-muted tabular-nums", children: [
7450
7463
  "(",
7451
- convertToLocalNumbers(data[k] ?? 0, locale),
7464
+ convertToLocalNumbers(counts[k], locale),
7452
7465
  ")"
7453
7466
  ] })
7454
7467
  ] }, k)) })
7455
7468
  ] });
7456
7469
  }
7457
7470
  if (variant === "compact") {
7458
- const active = FLOW_KEYS.filter((k) => (data[k] ?? 0) > 0).sort((a, b) => (data[b] ?? 0) - (data[a] ?? 0));
7471
+ const active = FLOW_KEYS.filter((k) => counts[k] > 0).sort((a, b) => counts[b] - counts[a]);
7459
7472
  return /* @__PURE__ */ jsxRuntime.jsx(
7460
7473
  "div",
7461
7474
  {
@@ -7479,7 +7492,7 @@ var FlowDistribution = React127__namespace.forwardRef(
7479
7492
  ] }),
7480
7493
  showCounts && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-xs text-foreground-muted tabular-nums", children: [
7481
7494
  "(",
7482
- convertToLocalNumbers(data[k] ?? 0, locale),
7495
+ convertToLocalNumbers(counts[k], locale),
7483
7496
  ")"
7484
7497
  ] })
7485
7498
  ]
@@ -7489,7 +7502,7 @@ var FlowDistribution = React127__namespace.forwardRef(
7489
7502
  }
7490
7503
  );
7491
7504
  }
7492
- const sorted = FLOW_KEYS.filter((k) => (data[k] ?? 0) > 0).sort((a, b) => (data[b] ?? 0) - (data[a] ?? 0));
7505
+ const sorted = FLOW_KEYS.filter((k) => counts[k] > 0).sort((a, b) => counts[b] - counts[a]);
7493
7506
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-slot": "flow-distribution", className: cn("space-y-1.5", className), ...props, children: sorted.map((k) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
7494
7507
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "w-24 shrink-0 text-xs text-foreground-light text-end", children: labels[k] }),
7495
7508
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex-1 h-2 rounded-full bg-muted overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -7512,7 +7525,7 @@ var FlowDistribution = React127__namespace.forwardRef(
7512
7525
  {
7513
7526
  className: "w-12 shrink-0 text-xs font-medium tabular-nums text-start",
7514
7527
  style: { color: `var(${tokenVar3(k)})` },
7515
- children: showCounts ? convertToLocalNumbers((data[k] ?? 0).toLocaleString(), locale) : `${convertToLocalNumbers(percents[k], locale)}${percentSign}`
7528
+ children: showCounts ? convertToLocalNumbers(counts[k].toLocaleString(), locale) : `${convertToLocalNumbers(percents[k], locale)}${percentSign}`
7516
7529
  }
7517
7530
  )
7518
7531
  ] }, k)) });
@@ -21903,12 +21916,24 @@ var JobWizardSuccess = React127__namespace.forwardRef(
21903
21916
  }
21904
21917
  );
21905
21918
  JobWizardSuccess.displayName = "JobWizardSuccess";
21906
- function calcPercents4(data, keys) {
21907
- const total = keys.reduce((sum, k) => sum + (data[k] ?? 0), 0);
21919
+ function normalizeEmotionData(data) {
21920
+ const counts = Object.fromEntries(EMOTION_KEYS.map((k) => [k, 0]));
21921
+ if (Array.isArray(data)) {
21922
+ for (const item of data) {
21923
+ const key = resolveEmotion(item.type);
21924
+ if (key) counts[key] += item.value ?? 0;
21925
+ }
21926
+ } else {
21927
+ for (const k of EMOTION_KEYS) counts[k] = data[k] ?? 0;
21928
+ }
21929
+ return counts;
21930
+ }
21931
+ function calcPercents4(counts) {
21932
+ const total = EMOTION_KEYS.reduce((sum, k) => sum + counts[k], 0);
21908
21933
  const result = Object.fromEntries(EMOTION_KEYS.map((k) => [k, 0]));
21909
21934
  if (total === 0) return result;
21910
- const floats = keys.filter((k) => (data[k] ?? 0) > 0).map((k) => {
21911
- const v = (data[k] ?? 0) / total * 100;
21935
+ const floats = EMOTION_KEYS.filter((k) => counts[k] > 0).map((k) => {
21936
+ const v = counts[k] / total * 100;
21912
21937
  return { k, floor: Math.floor(v), rem: v - Math.floor(v) };
21913
21938
  });
21914
21939
  const remaining = 100 - floats.reduce((s, f) => s + f.floor, 0);
@@ -21928,8 +21953,8 @@ var STACKED_ORDER2 = [
21928
21953
  "disgust",
21929
21954
  "anger"
21930
21955
  ];
21931
- function applyTopN(data, percents, topN) {
21932
- const active = EMOTION_KEYS.filter((k) => (data[k] ?? 0) > 0).map((k) => ({ key: k, count: data[k] ?? 0, percent: percents[k] })).sort((a, b) => b.count - a.count);
21956
+ function applyTopN(counts, percents, topN) {
21957
+ const active = EMOTION_KEYS.filter((k) => counts[k] > 0).map((k) => ({ key: k, count: counts[k], percent: percents[k] })).sort((a, b) => b.count - a.count);
21933
21958
  if (!topN || active.length <= topN) return active;
21934
21959
  const head = active.slice(0, topN);
21935
21960
  const tail = active.slice(topN);
@@ -21960,7 +21985,8 @@ var EmotionDistribution2 = React127__namespace.forwardRef(
21960
21985
  isLoading = false,
21961
21986
  ...props
21962
21987
  }, ref) => {
21963
- const percents = calcPercents4(data, EMOTION_KEYS);
21988
+ const counts = normalizeEmotionData(data);
21989
+ const percents = calcPercents4(counts);
21964
21990
  const labels = emotionLabels[locale] ?? emotionLabels.fa;
21965
21991
  const percentSign = locale === "en" ? "%" : "\u066A";
21966
21992
  if (isLoading) {
@@ -21971,7 +21997,7 @@ var EmotionDistribution2 = React127__namespace.forwardRef(
21971
21997
  ] }, i)) }) });
21972
21998
  }
21973
21999
  if (variant === "stacked") {
21974
- const active = STACKED_ORDER2.filter((k) => (data[k] ?? 0) > 0);
22000
+ const active = STACKED_ORDER2.filter((k) => counts[k] > 0);
21975
22001
  const srLabel = active.map((k) => `${labels[k]} ${convertToLocalNumbers(percents[k], locale)}${percentSign}`).join("\u060C ");
21976
22002
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref, "data-slot": "emotion-distribution", className: cn("space-y-2", className), ...props, children: [
21977
22003
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-3 w-full overflow-hidden rounded-full bg-muted", role: "img", "aria-label": srLabel, children: active.map((k) => /* @__PURE__ */ jsxRuntime.jsx(
@@ -21997,13 +22023,13 @@ var EmotionDistribution2 = React127__namespace.forwardRef(
21997
22023
  ] }),
21998
22024
  showCounts && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-xs text-foreground-muted tabular-nums", children: [
21999
22025
  "(",
22000
- convertToLocalNumbers(data[k] ?? 0, locale),
22026
+ convertToLocalNumbers(counts[k], locale),
22001
22027
  ")"
22002
22028
  ] })
22003
22029
  ] }, k)) })
22004
22030
  ] });
22005
22031
  }
22006
- const rollup = applyTopN(data, percents, variant === "compact" ? topN : void 0);
22032
+ const rollup = applyTopN(counts, percents, variant === "compact" ? topN : void 0);
22007
22033
  if (variant === "compact") {
22008
22034
  return /* @__PURE__ */ jsxRuntime.jsx(
22009
22035
  "div",
@@ -22043,7 +22069,7 @@ var EmotionDistribution2 = React127__namespace.forwardRef(
22043
22069
  }
22044
22070
  );
22045
22071
  }
22046
- const sorted = EMOTION_KEYS.filter((k) => (data[k] ?? 0) > 0).sort((a, b) => (data[b] ?? 0) - (data[a] ?? 0));
22072
+ const sorted = EMOTION_KEYS.filter((k) => counts[k] > 0).sort((a, b) => counts[b] - counts[a]);
22047
22073
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-slot": "emotion-distribution", className: cn("space-y-1.5", className), ...props, children: sorted.map((k) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
22048
22074
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "w-16 shrink-0 text-xs text-foreground-light text-end", children: labels[k] }),
22049
22075
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex-1 h-2 rounded-full bg-muted overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -22066,7 +22092,7 @@ var EmotionDistribution2 = React127__namespace.forwardRef(
22066
22092
  {
22067
22093
  className: "w-12 shrink-0 text-xs font-medium tabular-nums text-start",
22068
22094
  style: { color: `var(${tokenVar4(k)})` },
22069
- children: showCounts ? convertToLocalNumbers((data[k] ?? 0).toLocaleString(), locale) : `${convertToLocalNumbers(percents[k], locale)}${percentSign}`
22095
+ children: showCounts ? convertToLocalNumbers(counts[k].toLocaleString(), locale) : `${convertToLocalNumbers(percents[k], locale)}${percentSign}`
22070
22096
  }
22071
22097
  )
22072
22098
  ] }, k)) });
package/dist/index.d.cts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { S as SupportedLocale } from './utils-Czyp5Ned.cjs';
2
2
  export { c as cn, a as convertToLocalNumbers, f as formatAbsoluteTime, b as formatLargeNumber, d as formatNumber, e as formatRelativeTime } from './utils-Czyp5Ned.cjs';
3
- import { I as IranProvinceSlug, C as Country, P as PostData, a as PostView, b as PostAction, c as PostMediaItem, d as PostAuthor, e as PostPlatform, f as PostSentiment, g as PostEnrichmentFlags, h as PostDensity, i as PostOutlet, j as PostBodyData, S as StoryItem, k as PostMetrics, l as PostSeverity, m as PostCluster, n as PostRepostInfo, o as PostThreadInfo, p as PostUrlPreview$1, q as PostBulkAction, r as PostDetails, s as PostComment } from './server-FTUA8opZ.cjs';
4
- export { t as COUNTRIES, u as CountryCode, E as ENGAGEMENT_RANGES, v as EngagementRange, w as EngagementRangeWithDisplay, x as EngagementTier, F as FollowerGroup, G as GROUP_LABELS, y as IRAN_PROVINCES, z as IranProvince, L as LegacySize, A as PERSIAN_MONTHS, B as PERSIAN_MONTHS_SHORT, D as PERSIAN_WEEKDAYS, H as PERSIAN_WEEKDAYS_SHORT, J as PlatformMetadata, K as PostAiAnalysis, M as PostAiEntity, N as PostAuthorityTier, O as PostCommentAuthor, Q as PostEmotion, R as PostFlags, T as PostFlow, U as PostIntent, V as PostMediaSensitivity, W as PostMediaStatus, X as PostSource, Y as PostSourceCategory, Z as PostStatus, _ as ReactionBreakdown, $ as SizeWithLegacy, a0 as StandardSize, a1 as TIER_LABELS, a2 as countryFlag, a3 as findCountry, a4 as findProvince, a5 as formatJalaliDate, a6 as formatPersianDateRange, a7 as getCountryLabel, a8 as getCurrentRangeIndex, a9 as getEngagementRanges, aa as getFollowerGroup, ab as getMetricLabel, ac as getPersianDay, ad as getPersianMonth, ae as getPersianMonthName, af as getPersianMonthNameShort, ag as getPersianMonthsForDropdown, ah as getPersianWeekdayName, ai as getPersianYear, aj as getPersianYearsForDropdown, ak as getPostSourceConfig, al as getProvinceLabel, am as getSourceColorVar, an as jalaliToGregorian, ao as normalizeSize, ap as sourceCategory, aq as toEnglishDigits, ar as toPersianDigits } from './server-FTUA8opZ.cjs';
5
- import { A as ActionStatusKey, b as ActionTypeKey, E as EntityHealthKey, J as JobStatusKey, c as EmotionKey, F as FlowKey, d as StageStatusKey, e as EmotionInput, f as FlowInput, g as StatusInput, h as SeverityInput, a as StatusKey } from './i18n-DD3DMY8O.cjs';
6
- export { i as ACTION_STATUS_KEYS, j as ACTION_TYPE_KEYS, k as EMOTION_KEYS, l as EMOTION_KEY_TO_VALUE, m as EMOTION_VALUE_MAP, n as ENTITY_HEALTH_KEYS, o as FLOW_KEYS, p as FLOW_KEY_TO_VALUE, q as FLOW_VALUE_MAP, r as JOB_STATUS_KEYS, L as Locale, s as SEVERITY_KEYS, t as SEVERITY_KEY_TO_VALUE, u as SEVERITY_VALUE_MAP, v as STAGE_STATUS_KEYS, w as STATUS_KEYS, x as STATUS_KEY_TO_VALUE, y as STATUS_VALUE_MAP, S as SeverityKey, U as UIStringKeys, z as UIStrings, B as UI_STRINGS, C as actionStatusLabels, D as actionTypeLabels, G as actionTypeVerbs, H as emotionLabels, I as engagementUiTranslations, K as entityHealthLabels, M as entityHealthPriority, N as flowLabels, O as formatRelativeLocaleTime, P as formatTimeRemaining, Q as getUIStrings, R as isActiveJobStatus, T as isCriticalEntityHealth, V as isRTL, W as jobStatusLabels, X as resolveEmotion, Y as resolveFlow, Z as resolveSeverity, _ as resolveStatus, $ as sentimentLabels, a0 as severityLabels, a1 as stageStatusLabels, a2 as statusLabels } from './i18n-DD3DMY8O.cjs';
3
+ import { I as IranProvinceSlug, C as Country, P as PostData, a as PostView, b as PostAction, c as PostMediaItem, d as PostAuthor, e as PostPlatform, f as PostSentiment, g as PostEnrichmentFlags, h as PostDensity, i as PostOutlet, j as PostBodyData, S as StoryItem, k as PostMetrics, l as PostSeverity, m as PostCluster, n as PostRepostInfo, o as PostThreadInfo, p as PostUrlPreview$1, q as PostBulkAction, r as PostDetails, s as PostComment } from './server-BxuDPPiW.cjs';
4
+ export { t as COUNTRIES, u as CountryCode, E as ENGAGEMENT_RANGES, v as EngagementRange, w as EngagementRangeWithDisplay, x as EngagementTier, F as FollowerGroup, G as GROUP_LABELS, y as IRAN_PROVINCES, z as IranProvince, L as LegacySize, A as PERSIAN_MONTHS, B as PERSIAN_MONTHS_SHORT, D as PERSIAN_WEEKDAYS, H as PERSIAN_WEEKDAYS_SHORT, J as PlatformMetadata, K as PostAiAnalysis, M as PostAiEntity, N as PostAuthorityTier, O as PostCommentAuthor, Q as PostEmotion, R as PostFlags, T as PostFlow, U as PostIntent, V as PostMediaSensitivity, W as PostMediaStatus, X as PostSource, Y as PostSourceCategory, Z as PostStatus, _ as ReactionBreakdown, $ as SizeWithLegacy, a0 as StandardSize, a1 as TIER_LABELS, a2 as countryFlag, a3 as findCountry, a4 as findProvince, a5 as formatJalaliDate, a6 as formatPersianDateRange, a7 as getCountryLabel, a8 as getCurrentRangeIndex, a9 as getEngagementRanges, aa as getFollowerGroup, ab as getMetricLabel, ac as getPersianDay, ad as getPersianMonth, ae as getPersianMonthName, af as getPersianMonthNameShort, ag as getPersianMonthsForDropdown, ah as getPersianWeekdayName, ai as getPersianYear, aj as getPersianYearsForDropdown, ak as getPostSourceConfig, al as getProvinceLabel, am as getSourceColorVar, an as jalaliToGregorian, ao as normalizeSize, ap as sourceCategory, aq as toEnglishDigits, ar as toPersianDigits } from './server-BxuDPPiW.cjs';
5
+ import { A as ActionStatusKey, c as ActionTypeKey, E as EntityHealthKey, J as JobStatusKey, d as EmotionKey, b as FlowKey, e as StageStatusKey, f as EmotionInput, F as FlowInput, g as StatusInput, h as SeverityInput, a as StatusKey } from './i18n-B4rvgH-T.cjs';
6
+ export { i as ACTION_STATUS_KEYS, j as ACTION_TYPE_KEYS, k as EMOTION_KEYS, l as EMOTION_KEY_TO_VALUE, m as EMOTION_VALUE_MAP, n as ENTITY_HEALTH_KEYS, o as FLOW_KEYS, p as FLOW_KEY_TO_VALUE, q as FLOW_VALUE_MAP, r as JOB_STATUS_KEYS, L as Locale, s as SEVERITY_KEYS, t as SEVERITY_KEY_TO_VALUE, u as SEVERITY_VALUE_MAP, v as STAGE_STATUS_KEYS, w as STATUS_KEYS, x as STATUS_KEY_TO_VALUE, y as STATUS_VALUE_MAP, S as SeverityKey, U as UIStringKeys, z as UIStrings, B as UI_STRINGS, C as actionStatusLabels, D as actionTypeLabels, G as actionTypeVerbs, H as emotionLabels, I as engagementUiTranslations, K as entityHealthLabels, M as entityHealthPriority, N as flowLabels, O as formatRelativeLocaleTime, P as formatTimeRemaining, Q as getUIStrings, R as isActiveJobStatus, T as isCriticalEntityHealth, V as isRTL, W as jobStatusLabels, X as resolveEmotion, Y as resolveFlow, Z as resolveSeverity, _ as resolveStatus, $ as sentimentLabels, a0 as severityLabels, a1 as stageStatusLabels, a2 as statusLabels } from './i18n-B4rvgH-T.cjs';
7
7
  import * as React$1 from 'react';
8
8
  import { LucideIcon } from 'lucide-react';
9
9
  export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './components/ui/accordion.cjs';
@@ -32,8 +32,8 @@ export { DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHead
32
32
  import { HotkeyCombo } from './hooks/use-hotkeys.cjs';
33
33
  export { UseHotkeysOptions, formatHotkey, useHotkeys } from './hooks/use-hotkeys.cjs';
34
34
  import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
35
- import { F as FlowData, S as SentimentData } from './concept-card-BU8JL-gj.cjs';
36
- export { C as ConceptCard, a as ConceptCardProps, b as FlowDistribution, c as FlowDistributionProps, d as SentimentDistribution, e as SentimentDistributionProps } from './concept-card-BU8JL-gj.cjs';
35
+ import { F as FlowData, S as SentimentData } from './concept-card-dZeBeup5.cjs';
36
+ export { C as ConceptCard, a as ConceptCardProps, b as FlowDataItem, c as FlowDistribution, d as FlowDistributionProps, e as SentimentDistribution, f as SentimentDistributionProps } from './concept-card-dZeBeup5.cjs';
37
37
  import { DateRange } from 'react-day-picker';
38
38
  import { Drawer as Drawer$1 } from 'vaul';
39
39
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from './components/ui/dropdown-menu.cjs';
@@ -48,7 +48,7 @@ export { IranProvinceCell, IranProvinceHeat, IranProvinceHeatProps, IranProvince
48
48
  import { OTPInput } from 'input-otp';
49
49
  import * as MenubarPrimitive from '@radix-ui/react-menubar';
50
50
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
51
- export { B as BotDetectionData, a as BotDetectionKey, b as BotDetectionMeter, c as BotDetectionMeterProps, P as PageCard, d as PageCardContentMix, e as PageCardProps } from './page-card-DjztZrFM.cjs';
51
+ export { B as BotDetectionData, a as BotDetectionKey, b as BotDetectionMeter, c as BotDetectionMeterProps, P as PageCard, d as PageCardContentMix, e as PageCardProps } from './page-card-DWBUZYwM.cjs';
52
52
  export { PageHeader, PageHeaderProps } from './components/ui/page-header.cjs';
53
53
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from './components/ui/popover.cjs';
54
54
  export { Progress, ProgressProps } from './components/ui/progress.cjs';
@@ -3811,7 +3811,18 @@ interface EmotionBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement> {
3811
3811
  }
3812
3812
  declare const EmotionBadge: React$1.ForwardRefExoticComponent<EmotionBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
3813
3813
 
3814
- type EmotionData = Partial<Record<EmotionKey, number>>;
3814
+ /** A single emotion entry: `type` accepts a key, a numeric code `1–9`, or a label. */
3815
+ interface EmotionDataItem {
3816
+ /** Emotion identity — `EmotionKey` (`'anger'`…), numeric code `1–9`, or localized label. */
3817
+ type: EmotionInput;
3818
+ /** Numeric count for this emotion. */
3819
+ value: number;
3820
+ }
3821
+ /**
3822
+ * Emotion counts. Either an array of `{ type, value }` entries (type as a key,
3823
+ * a numeric code `1–9`, or a label) or a keyed object `{ anger: 420, … }`.
3824
+ */
3825
+ type EmotionData = EmotionDataItem[] | Partial<Record<EmotionKey, number>>;
3815
3826
  interface EmotionDistributionProps extends React$1.HTMLAttributes<HTMLDivElement> {
3816
3827
  /** Emotion counts (auto-normalized to 100%). Missing keys are treated as 0. */
3817
3828
  data: EmotionData;
@@ -5280,4 +5291,4 @@ interface UseFilterPresetsReturn<T extends FilterStateShape> {
5280
5291
  */
5281
5292
  declare function useFilterPresets<T extends FilterStateShape>(options: UseFilterPresetsOptions): UseFilterPresetsReturn<T>;
5282
5293
 
5283
- export { ACTION_TYPE_META, ActionStatusKey, ActionTimeline, type ActionTimelineDensity, type ActionTimelineGroupBy, ActionTimelineItem, type ActionTimelineItemData, type ActionTimelineItemProps, type ActionTimelineProps, ActionTypeChip, type ActionTypeChipProps, ActionTypeKey, ActiveFiltersBar, type ActiveFiltersBarProps, ActiveFiltersClearAll, type ActiveFiltersClearAllProps, AnimatedNumber, type AnimatedNumberProps, AppLayout, AppLayoutContent, AppSecondary, AppSecondaryContent, AppSecondaryFooter, AppSecondaryHeader, AspectRatio, type AsyncStatus, Autocomplete, type AutocompleteItem, type AutocompleteProps, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, Banner, type BannerProps, type BenchmarkMarker, type BenchmarkTier, BlurBackdrop, BulletinViewer, type BulletinViewerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, CENTERED_CONTAINER_CLS, CHART_FONT_FAMILY, CRITERION_TIER_KEYS, Callout, CalloutDescription, type CalloutProps, CalloutTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartGradientLegend, type ChartGradientLegendProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingSkeleton, ChartTooltip, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandPaletteRecentsConfig, CommandSeparator, CommandShortcut, CommentCard, type CommentCardProps, type CommentTag, ComparisonCard, type ComparisonCardProps, type ComparisonEntity, type ComparisonMetric, ComparisonRadar, type ComparisonRadarProps, type ComparisonWinner, type CompositionScale, type ConceptComposition, type ConceptPoint, ConceptPulseChart, type ConceptPulseChartProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, Country, CountryPicker, type CountryPickerProps, type CriterionInputSpec, CriterionScoreCard, type CriterionScoreCardProps, type CriterionTierKey, type CriterionTierThresholds, type CriterionTrend, DEFAULT_CRITERION_THRESHOLDS, DEFAULT_PERIODS, DEFAULT_THRESHOLDS, DataTableColumn, DataTableColumnVisibility, DataTableColumnVisibilityToggle, type DataTableColumnVisibilityToggleProps, DataTableExportButton, type DataTableExportButtonProps, DatePicker, type DatePickerProps, DateRangePicker, DateRangePickerInline, type DateRangePickerProps, Dialog, type Direction, DirectionalBox, type DirectionalBoxProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, EmotionBadge, type EmotionBadgeProps, type EmotionData, EmotionDistribution, type EmotionDistributionProps, EmotionInput, EmotionKey, Empty, EmptyAction, EmptyChart, type EmptyChartProps, type EmptyChartShape, EmptyDescription, EmptyIcon, EmptyTitle, EngagementRate, EngagementRateBar, type EngagementRateBarProps, EngagementRateBenchmark, type EngagementRateBenchmarkProps, type EngagementRateProps, EntityHealthCard, EntityHealthCardActions, EntityHealthCardFooter, EntityHealthCardHeader, EntityHealthCardHeaderEnd, EntityHealthCardHeaderText, EntityHealthCardMeta, EntityHealthCardMetric, type EntityHealthCardMetricProps, EntityHealthCardMetrics, type EntityHealthCardMetricsProps, EntityHealthCardNarrative, EntityHealthCardPhase, type EntityHealthCardPhaseProps, type EntityHealthCardProps, EntityHealthCardScore, type EntityHealthCardScoreProps, EntityHealthCardSeverityBadge, type EntityHealthCardSeverityBadgeProps, EntityHealthCardSubtitle, EntityHealthCardTitle, type EntityHealthCardTitleProps, EntityHealthCardTrust, type EntityHealthCardTrustProps, EntityHealthKey, ErrorBoundary, type ErrorBoundaryProps, ErrorIllustration, ErrorState, type ErrorStateProps, type ExecutiveSummaryMetric, ExecutiveSummarySection, type ExecutiveSummarySectionProps, type ExportableColumn, FOREGROUND_IMG_CLS, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterBar, FilterBarActions, type FilterBarActionsProps, FilterBarActiveFilters, type FilterBarActiveFiltersProps, FilterBarClear, type FilterBarClearProps, type FilterBarProps, FilterBarRow, type FilterBarRowProps, FilterChip, FilterChipGroup, type FilterChipProps, FilterPanel, FilterPanelBody, FilterPanelClearAll, type FilterPanelClearAllProps, FilterPanelFooter, FilterPanelHeader, type FilterPanelProps, FilterPanelTitle, type FilterPanelTitleProps, FilterPanelTrigger, type FilterPanelTriggerProps, type FilterPreset, FilterSection, type FilterSectionProps, FilterStateShape, FirstRunIllustration, FlowBadge, type FlowBadgeProps, FlowCell, type FlowCellProps, FlowData, FlowDistributionSection, type FlowDistributionSectionProps, FlowInput, FlowKey, ForbiddenIllustration, HashtagInput, type TagInputProps as HashtagInputProps, type HashtagPerformanceData, HashtagPerformanceRow, type HashtagPerformanceRowProps, type HeatMapDatum, type HeatMapRow, HotkeyCombo, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InputVariants, InputWithIcon, type InputWithIconProps, IranProvinceSlug, JobCard, JobCardActions, JobCardError, JobCardHeader, JobCardHeaderActions, JobCardHeaderText, JobCardMeta, JobCardMetaItem, type JobCardMetaItemProps, JobCardProgress, type JobCardProgressProps, type JobCardProps, JobCardStat, type JobCardStatProps, JobCardStats, type JobCardStatsProps, JobCardStatusBadge, type JobCardStatusBadgeProps, JobCardSubtitle, JobCardThumbnail, type JobCardThumbnailProps, JobCardTitle, type JobCardTitleProps, JobStatusKey, JobWizard, type JobWizardApi, JobWizardBack, type JobWizardBackProps, JobWizardBody, JobWizardCancel, type JobWizardCancelProps, JobWizardError, JobWizardFooter, JobWizardHeader, type JobWizardHeaderProps, JobWizardNext, type JobWizardNextProps, type JobWizardProps, JobWizardSkip, type JobWizardSkipProps, JobWizardSpacer, type JobWizardStep, JobWizardStepper, type JobWizardStepperProps, type JobWizardSubmitState, JobWizardSuccess, type JobWizardSuccessProps, type JobWizardValidationResult, Kbd, KbdGroup, Label, LabelChip, type LabelChipProps, LabelEditDialog, type LabelEditDialogProps, MarkdownRenderer, type MarkdownRendererProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCard, MetricCardContent, MetricCardDifferential, MetricCardHeader, MetricCardLabel, MetricCardSparkline, MetricCardValue, MultiSelect, type MultiSelectOption, type MultiSelectProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavGroup, type NavGroupProps, NavItem, type NavItemBaseProps, type NavItemProps, type NavMatchStrategy, NavPanel, NavPanelContent, NavPanelFooter, NavPanelHeader, NavRail, NavRailContent, NavRailFooter, NavRailHeader, NavRailItem, NavRailProvider, NavRailSeparator, NavRailTrigger, NavSeparator, NavTree, type NavTreeContextValue, NavTreeProvider, type NavTreeProviderProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NetworkLink, type NetworkNode, NoDataIllustration, NoResultsIllustration, NotificationCenter, type NotificationCenterProps, type NotificationFilter, type NotificationItem, type NotificationSeverity, NumberInputLocale, type NumberInputLocaleProps, PageLoader, type PageLoaderProps, Pagination, PaginationContent, PaginationControlled, type PaginationControlledProps, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PartoHeatMap, type PartoHeatMapProps, PartoNetworkChart, type PartoNetworkChartProps, PartoRadarChart, type PartoRadarChartProps, PartoSankeyChart, type PartoSankeyChartProps, PartoScatterChart, type PartoScatterChartProps, PartoWordCloud, type PartoWordCloudProps, type PeriodOption, PeriodSelector, type PeriodSelectorProps, PostAction, PostActions, type PostActionsProps, PostAuthor, PostBody, PostBodyData, type PostBodyProps, PostBulkAction, PostBulkActionBar, type PostBulkActionBarProps, PostCard, type PostCardProps, PostCluster, PostComment, PostCrisisBanner, type PostCrisisBannerProps, PostData, PostDensity, PostDetails, PostDetailsDrawer, type PostDetailsDrawerProps, type PostDetailsTab, PostEnrichmentFlags, type PostGroupBy, PostHeader, PostHeaderBroadcast, type PostHeaderBroadcastProps, PostHeaderEditorial, type PostHeaderEditorialProps, type PostHeaderProps, PostList, type PostListProps, PostMedia, PostMediaAudio, PostMediaCarousel, PostMediaGrid, PostMediaHighlight, PostMediaItem, PostMediaPlaceholder, type PostMediaPlaceholderProps, type PostMediaPlaceholderVariant, type PostMediaProps, PostMediaSensitiveOverlay, PostMediaSingle, PostMediaSourceRemoved, type PostMediaSourceRemovedProps, PostMediaStory, PostMediaVideo, PostMetadata, type PostMetadataProps, PostMetrics, PostOutlet, PostPlatform, PostQuotedEmbed, type PostQuotedEmbedProps, PostRepostHeader, type PostRepostHeaderProps, PostRepostInfo, PostSentiment, PostSeverity, PostSignals, type PostSignalsProps, type PostSortBy, PostThreadConnector, type PostThreadConnectorProps, PostThreadInfo, PostUrlPreview, PostUrlPreview$1 as PostUrlPreviewData, type PostUrlPreviewProps, PostUrlPreview$1 as PostUrlPreviewSnapshot, PostView, type PostingFrequencyCell, PostingFrequencyHeatmap, type PostingFrequencyHeatmapProps, type PostingFrequencySummary, type PostingWeekStart, ProfileCard, type ProfileCardProps, ProfileInfo, type ProfileInfoProps, ProgressCell, type ProgressCellProps, type QuotaLevel, QuotaProgressBar, type QuotaProgressBarProps, type QuotaThresholds, RateLimitBanner, type RateLimitBannerProps, RegionPicker, type RegionPickerKey, type RegionPickerProps, RegisteredHotkey, ReportComposer, type ReportComposerProps, ReportSection, type ReportSectionProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RouteProgress, type RouteProgressHandle, type RouteProgressProps, SENSITIVITY_LABEL, SafeImage, type SafeImageProps, type SankeyLink, type SankeyNode, SearchInput, type SearchInputProps, type SectionItem, SectionNavigator, type SectionNavigatorProps, SentimentBadge, type SentimentBadgeProps, SentimentBreakdownSection, type SentimentBreakdownSectionProps, SentimentCell, type SentimentCellProps, SentimentData, Separator, SeverityBadge, type SeverityBadgeProps, SeverityInput, ShortcutsCheatsheet, type ShortcutsCheatsheetProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, SiteHeaderActions, SiteHeaderEnd, type SiteHeaderProps, SiteHeaderSeparator, SiteHeaderStart, SiteHeaderSubtitle, SiteHeaderTitle, SiteHeaderTitleGroup, SocialPlatform, type SourceBreakdownEntry, SourceBreakdownSection, type SourceBreakdownSectionProps, SparklineCell, type SparklineCellProps, Spinner, type SpinnerProps, StageStatusKey, StatDeltaCell, type StatDeltaCellProps, StatDisplay, type StatDisplayProps, StatusBadge, type StatusBadgeProps, StatusFlow, type StatusFlowOrientation, type StatusFlowProps, type StatusFlowSize, StatusFlowStage, type StatusFlowStageData, type StatusFlowStageProps, StatusInput, StatusKey, StatusPulseCell, type StatusPulseCellProps, Step, type StepProps, Stepper, type StepperProps, SupportedLocale, TableComparisonView, type TableComparisonViewProps, TagInput, type TagInputProps, TaskList, type TaskListGroup, type TaskListProps, TimelineSection, type TimelineSectionProps, TooltipContent, TopPostsSection, type TopPostsSectionProps, TrendCell, type TrendCellProps, TrendIndicator, type TrendIndicatorProps, type UseAsyncReturn, type UseClipboardOptions, type UseClipboardReturn, type UseFilterParamsOptions, type UseFilterPresetsOptions, type UseFilterPresetsReturn, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseJobWizardOptions, UserAutocomplete, type UserAutocompleteProps, type UserItem, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, type ViewMode, ViewToggle, type ViewToggleProps, type WordData, actionTypeChipVariants, avatarGroupVariants, bannerVariants, buildCsv, buildPostingFrequencyRows, buildTsv, buttonGroupVariants, calloutVariants, computeComparisonWinners, countComparisonWins, defaultActions as defaultPostActions, downloadFile, findTierIndex, getCriterionTier, getEngagementRateBenchmarkTiers, getScoreBenchmarkTiers, tagInputVariants as hashtagInputVariants, labelChipVariants, localeAwareCategoryTick, localeAwareNumberTick, navItemVariants, navigationMenuTriggerStyle, normalizeUrlDigits, pageLoaderVariants, postCardVariants, postHeaderVariants, profileCardVariants, resolveLevel, siteHeaderVariants, spinnerVariants, statDisplayVariants, tagInputVariants, transformNivoLineData, useAsync, useBreakpoint, useChartTheme, useClipboard, useDebounce, useDocumentDirection, useFilterParams, useFilterPresets, useInfiniteScroll, useIsMobile, useJobWizard, useJobWizardState, useLocalStorage, useMediaQuery, useNavRail, useNavTree, useOutsideClick, usePrevious, useRootStyles, useScrollLock, useSidebar };
5294
+ export { ACTION_TYPE_META, ActionStatusKey, ActionTimeline, type ActionTimelineDensity, type ActionTimelineGroupBy, ActionTimelineItem, type ActionTimelineItemData, type ActionTimelineItemProps, type ActionTimelineProps, ActionTypeChip, type ActionTypeChipProps, ActionTypeKey, ActiveFiltersBar, type ActiveFiltersBarProps, ActiveFiltersClearAll, type ActiveFiltersClearAllProps, AnimatedNumber, type AnimatedNumberProps, AppLayout, AppLayoutContent, AppSecondary, AppSecondaryContent, AppSecondaryFooter, AppSecondaryHeader, AspectRatio, type AsyncStatus, Autocomplete, type AutocompleteItem, type AutocompleteProps, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, Banner, type BannerProps, type BenchmarkMarker, type BenchmarkTier, BlurBackdrop, BulletinViewer, type BulletinViewerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, CENTERED_CONTAINER_CLS, CHART_FONT_FAMILY, CRITERION_TIER_KEYS, Callout, CalloutDescription, type CalloutProps, CalloutTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartGradientLegend, type ChartGradientLegendProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingSkeleton, ChartTooltip, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandPaletteRecentsConfig, CommandSeparator, CommandShortcut, CommentCard, type CommentCardProps, type CommentTag, ComparisonCard, type ComparisonCardProps, type ComparisonEntity, type ComparisonMetric, ComparisonRadar, type ComparisonRadarProps, type ComparisonWinner, type CompositionScale, type ConceptComposition, type ConceptPoint, ConceptPulseChart, type ConceptPulseChartProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, Country, CountryPicker, type CountryPickerProps, type CriterionInputSpec, CriterionScoreCard, type CriterionScoreCardProps, type CriterionTierKey, type CriterionTierThresholds, type CriterionTrend, DEFAULT_CRITERION_THRESHOLDS, DEFAULT_PERIODS, DEFAULT_THRESHOLDS, DataTableColumn, DataTableColumnVisibility, DataTableColumnVisibilityToggle, type DataTableColumnVisibilityToggleProps, DataTableExportButton, type DataTableExportButtonProps, DatePicker, type DatePickerProps, DateRangePicker, DateRangePickerInline, type DateRangePickerProps, Dialog, type Direction, DirectionalBox, type DirectionalBoxProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, EmotionBadge, type EmotionBadgeProps, type EmotionData, type EmotionDataItem, EmotionDistribution, type EmotionDistributionProps, EmotionInput, EmotionKey, Empty, EmptyAction, EmptyChart, type EmptyChartProps, type EmptyChartShape, EmptyDescription, EmptyIcon, EmptyTitle, EngagementRate, EngagementRateBar, type EngagementRateBarProps, EngagementRateBenchmark, type EngagementRateBenchmarkProps, type EngagementRateProps, EntityHealthCard, EntityHealthCardActions, EntityHealthCardFooter, EntityHealthCardHeader, EntityHealthCardHeaderEnd, EntityHealthCardHeaderText, EntityHealthCardMeta, EntityHealthCardMetric, type EntityHealthCardMetricProps, EntityHealthCardMetrics, type EntityHealthCardMetricsProps, EntityHealthCardNarrative, EntityHealthCardPhase, type EntityHealthCardPhaseProps, type EntityHealthCardProps, EntityHealthCardScore, type EntityHealthCardScoreProps, EntityHealthCardSeverityBadge, type EntityHealthCardSeverityBadgeProps, EntityHealthCardSubtitle, EntityHealthCardTitle, type EntityHealthCardTitleProps, EntityHealthCardTrust, type EntityHealthCardTrustProps, EntityHealthKey, ErrorBoundary, type ErrorBoundaryProps, ErrorIllustration, ErrorState, type ErrorStateProps, type ExecutiveSummaryMetric, ExecutiveSummarySection, type ExecutiveSummarySectionProps, type ExportableColumn, FOREGROUND_IMG_CLS, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterBar, FilterBarActions, type FilterBarActionsProps, FilterBarActiveFilters, type FilterBarActiveFiltersProps, FilterBarClear, type FilterBarClearProps, type FilterBarProps, FilterBarRow, type FilterBarRowProps, FilterChip, FilterChipGroup, type FilterChipProps, FilterPanel, FilterPanelBody, FilterPanelClearAll, type FilterPanelClearAllProps, FilterPanelFooter, FilterPanelHeader, type FilterPanelProps, FilterPanelTitle, type FilterPanelTitleProps, FilterPanelTrigger, type FilterPanelTriggerProps, type FilterPreset, FilterSection, type FilterSectionProps, FilterStateShape, FirstRunIllustration, FlowBadge, type FlowBadgeProps, FlowCell, type FlowCellProps, FlowData, FlowDistributionSection, type FlowDistributionSectionProps, FlowInput, FlowKey, ForbiddenIllustration, HashtagInput, type TagInputProps as HashtagInputProps, type HashtagPerformanceData, HashtagPerformanceRow, type HashtagPerformanceRowProps, type HeatMapDatum, type HeatMapRow, HotkeyCombo, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InputVariants, InputWithIcon, type InputWithIconProps, IranProvinceSlug, JobCard, JobCardActions, JobCardError, JobCardHeader, JobCardHeaderActions, JobCardHeaderText, JobCardMeta, JobCardMetaItem, type JobCardMetaItemProps, JobCardProgress, type JobCardProgressProps, type JobCardProps, JobCardStat, type JobCardStatProps, JobCardStats, type JobCardStatsProps, JobCardStatusBadge, type JobCardStatusBadgeProps, JobCardSubtitle, JobCardThumbnail, type JobCardThumbnailProps, JobCardTitle, type JobCardTitleProps, JobStatusKey, JobWizard, type JobWizardApi, JobWizardBack, type JobWizardBackProps, JobWizardBody, JobWizardCancel, type JobWizardCancelProps, JobWizardError, JobWizardFooter, JobWizardHeader, type JobWizardHeaderProps, JobWizardNext, type JobWizardNextProps, type JobWizardProps, JobWizardSkip, type JobWizardSkipProps, JobWizardSpacer, type JobWizardStep, JobWizardStepper, type JobWizardStepperProps, type JobWizardSubmitState, JobWizardSuccess, type JobWizardSuccessProps, type JobWizardValidationResult, Kbd, KbdGroup, Label, LabelChip, type LabelChipProps, LabelEditDialog, type LabelEditDialogProps, MarkdownRenderer, type MarkdownRendererProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCard, MetricCardContent, MetricCardDifferential, MetricCardHeader, MetricCardLabel, MetricCardSparkline, MetricCardValue, MultiSelect, type MultiSelectOption, type MultiSelectProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavGroup, type NavGroupProps, NavItem, type NavItemBaseProps, type NavItemProps, type NavMatchStrategy, NavPanel, NavPanelContent, NavPanelFooter, NavPanelHeader, NavRail, NavRailContent, NavRailFooter, NavRailHeader, NavRailItem, NavRailProvider, NavRailSeparator, NavRailTrigger, NavSeparator, NavTree, type NavTreeContextValue, NavTreeProvider, type NavTreeProviderProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NetworkLink, type NetworkNode, NoDataIllustration, NoResultsIllustration, NotificationCenter, type NotificationCenterProps, type NotificationFilter, type NotificationItem, type NotificationSeverity, NumberInputLocale, type NumberInputLocaleProps, PageLoader, type PageLoaderProps, Pagination, PaginationContent, PaginationControlled, type PaginationControlledProps, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PartoHeatMap, type PartoHeatMapProps, PartoNetworkChart, type PartoNetworkChartProps, PartoRadarChart, type PartoRadarChartProps, PartoSankeyChart, type PartoSankeyChartProps, PartoScatterChart, type PartoScatterChartProps, PartoWordCloud, type PartoWordCloudProps, type PeriodOption, PeriodSelector, type PeriodSelectorProps, PostAction, PostActions, type PostActionsProps, PostAuthor, PostBody, PostBodyData, type PostBodyProps, PostBulkAction, PostBulkActionBar, type PostBulkActionBarProps, PostCard, type PostCardProps, PostCluster, PostComment, PostCrisisBanner, type PostCrisisBannerProps, PostData, PostDensity, PostDetails, PostDetailsDrawer, type PostDetailsDrawerProps, type PostDetailsTab, PostEnrichmentFlags, type PostGroupBy, PostHeader, PostHeaderBroadcast, type PostHeaderBroadcastProps, PostHeaderEditorial, type PostHeaderEditorialProps, type PostHeaderProps, PostList, type PostListProps, PostMedia, PostMediaAudio, PostMediaCarousel, PostMediaGrid, PostMediaHighlight, PostMediaItem, PostMediaPlaceholder, type PostMediaPlaceholderProps, type PostMediaPlaceholderVariant, type PostMediaProps, PostMediaSensitiveOverlay, PostMediaSingle, PostMediaSourceRemoved, type PostMediaSourceRemovedProps, PostMediaStory, PostMediaVideo, PostMetadata, type PostMetadataProps, PostMetrics, PostOutlet, PostPlatform, PostQuotedEmbed, type PostQuotedEmbedProps, PostRepostHeader, type PostRepostHeaderProps, PostRepostInfo, PostSentiment, PostSeverity, PostSignals, type PostSignalsProps, type PostSortBy, PostThreadConnector, type PostThreadConnectorProps, PostThreadInfo, PostUrlPreview, PostUrlPreview$1 as PostUrlPreviewData, type PostUrlPreviewProps, PostUrlPreview$1 as PostUrlPreviewSnapshot, PostView, type PostingFrequencyCell, PostingFrequencyHeatmap, type PostingFrequencyHeatmapProps, type PostingFrequencySummary, type PostingWeekStart, ProfileCard, type ProfileCardProps, ProfileInfo, type ProfileInfoProps, ProgressCell, type ProgressCellProps, type QuotaLevel, QuotaProgressBar, type QuotaProgressBarProps, type QuotaThresholds, RateLimitBanner, type RateLimitBannerProps, RegionPicker, type RegionPickerKey, type RegionPickerProps, RegisteredHotkey, ReportComposer, type ReportComposerProps, ReportSection, type ReportSectionProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RouteProgress, type RouteProgressHandle, type RouteProgressProps, SENSITIVITY_LABEL, SafeImage, type SafeImageProps, type SankeyLink, type SankeyNode, SearchInput, type SearchInputProps, type SectionItem, SectionNavigator, type SectionNavigatorProps, SentimentBadge, type SentimentBadgeProps, SentimentBreakdownSection, type SentimentBreakdownSectionProps, SentimentCell, type SentimentCellProps, SentimentData, Separator, SeverityBadge, type SeverityBadgeProps, SeverityInput, ShortcutsCheatsheet, type ShortcutsCheatsheetProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, SiteHeaderActions, SiteHeaderEnd, type SiteHeaderProps, SiteHeaderSeparator, SiteHeaderStart, SiteHeaderSubtitle, SiteHeaderTitle, SiteHeaderTitleGroup, SocialPlatform, type SourceBreakdownEntry, SourceBreakdownSection, type SourceBreakdownSectionProps, SparklineCell, type SparklineCellProps, Spinner, type SpinnerProps, StageStatusKey, StatDeltaCell, type StatDeltaCellProps, StatDisplay, type StatDisplayProps, StatusBadge, type StatusBadgeProps, StatusFlow, type StatusFlowOrientation, type StatusFlowProps, type StatusFlowSize, StatusFlowStage, type StatusFlowStageData, type StatusFlowStageProps, StatusInput, StatusKey, StatusPulseCell, type StatusPulseCellProps, Step, type StepProps, Stepper, type StepperProps, SupportedLocale, TableComparisonView, type TableComparisonViewProps, TagInput, type TagInputProps, TaskList, type TaskListGroup, type TaskListProps, TimelineSection, type TimelineSectionProps, TooltipContent, TopPostsSection, type TopPostsSectionProps, TrendCell, type TrendCellProps, TrendIndicator, type TrendIndicatorProps, type UseAsyncReturn, type UseClipboardOptions, type UseClipboardReturn, type UseFilterParamsOptions, type UseFilterPresetsOptions, type UseFilterPresetsReturn, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseJobWizardOptions, UserAutocomplete, type UserAutocompleteProps, type UserItem, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, type ViewMode, ViewToggle, type ViewToggleProps, type WordData, actionTypeChipVariants, avatarGroupVariants, bannerVariants, buildCsv, buildPostingFrequencyRows, buildTsv, buttonGroupVariants, calloutVariants, computeComparisonWinners, countComparisonWins, defaultActions as defaultPostActions, downloadFile, findTierIndex, getCriterionTier, getEngagementRateBenchmarkTiers, getScoreBenchmarkTiers, tagInputVariants as hashtagInputVariants, labelChipVariants, localeAwareCategoryTick, localeAwareNumberTick, navItemVariants, navigationMenuTriggerStyle, normalizeUrlDigits, pageLoaderVariants, postCardVariants, postHeaderVariants, profileCardVariants, resolveLevel, siteHeaderVariants, spinnerVariants, statDisplayVariants, tagInputVariants, transformNivoLineData, useAsync, useBreakpoint, useChartTheme, useClipboard, useDebounce, useDocumentDirection, useFilterParams, useFilterPresets, useInfiniteScroll, useIsMobile, useJobWizard, useJobWizardState, useLocalStorage, useMediaQuery, useNavRail, useNavTree, useOutsideClick, usePrevious, useRootStyles, useScrollLock, useSidebar };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { S as SupportedLocale } from './utils-Czyp5Ned.js';
2
2
  export { c as cn, a as convertToLocalNumbers, f as formatAbsoluteTime, b as formatLargeNumber, d as formatNumber, e as formatRelativeTime } from './utils-Czyp5Ned.js';
3
- import { I as IranProvinceSlug, C as Country, P as PostData, a as PostView, b as PostAction, c as PostMediaItem, d as PostAuthor, e as PostPlatform, f as PostSentiment, g as PostEnrichmentFlags, h as PostDensity, i as PostOutlet, j as PostBodyData, S as StoryItem, k as PostMetrics, l as PostSeverity, m as PostCluster, n as PostRepostInfo, o as PostThreadInfo, p as PostUrlPreview$1, q as PostBulkAction, r as PostDetails, s as PostComment } from './server-m6tiB6DB.js';
4
- export { t as COUNTRIES, u as CountryCode, E as ENGAGEMENT_RANGES, v as EngagementRange, w as EngagementRangeWithDisplay, x as EngagementTier, F as FollowerGroup, G as GROUP_LABELS, y as IRAN_PROVINCES, z as IranProvince, L as LegacySize, A as PERSIAN_MONTHS, B as PERSIAN_MONTHS_SHORT, D as PERSIAN_WEEKDAYS, H as PERSIAN_WEEKDAYS_SHORT, J as PlatformMetadata, K as PostAiAnalysis, M as PostAiEntity, N as PostAuthorityTier, O as PostCommentAuthor, Q as PostEmotion, R as PostFlags, T as PostFlow, U as PostIntent, V as PostMediaSensitivity, W as PostMediaStatus, X as PostSource, Y as PostSourceCategory, Z as PostStatus, _ as ReactionBreakdown, $ as SizeWithLegacy, a0 as StandardSize, a1 as TIER_LABELS, a2 as countryFlag, a3 as findCountry, a4 as findProvince, a5 as formatJalaliDate, a6 as formatPersianDateRange, a7 as getCountryLabel, a8 as getCurrentRangeIndex, a9 as getEngagementRanges, aa as getFollowerGroup, ab as getMetricLabel, ac as getPersianDay, ad as getPersianMonth, ae as getPersianMonthName, af as getPersianMonthNameShort, ag as getPersianMonthsForDropdown, ah as getPersianWeekdayName, ai as getPersianYear, aj as getPersianYearsForDropdown, ak as getPostSourceConfig, al as getProvinceLabel, am as getSourceColorVar, an as jalaliToGregorian, ao as normalizeSize, ap as sourceCategory, aq as toEnglishDigits, ar as toPersianDigits } from './server-m6tiB6DB.js';
5
- import { A as ActionStatusKey, b as ActionTypeKey, E as EntityHealthKey, J as JobStatusKey, c as EmotionKey, F as FlowKey, d as StageStatusKey, e as EmotionInput, f as FlowInput, g as StatusInput, h as SeverityInput, a as StatusKey } from './i18n-UEClNsBy.js';
6
- export { i as ACTION_STATUS_KEYS, j as ACTION_TYPE_KEYS, k as EMOTION_KEYS, l as EMOTION_KEY_TO_VALUE, m as EMOTION_VALUE_MAP, n as ENTITY_HEALTH_KEYS, o as FLOW_KEYS, p as FLOW_KEY_TO_VALUE, q as FLOW_VALUE_MAP, r as JOB_STATUS_KEYS, L as Locale, s as SEVERITY_KEYS, t as SEVERITY_KEY_TO_VALUE, u as SEVERITY_VALUE_MAP, v as STAGE_STATUS_KEYS, w as STATUS_KEYS, x as STATUS_KEY_TO_VALUE, y as STATUS_VALUE_MAP, S as SeverityKey, U as UIStringKeys, z as UIStrings, B as UI_STRINGS, C as actionStatusLabels, D as actionTypeLabels, G as actionTypeVerbs, H as emotionLabels, I as engagementUiTranslations, K as entityHealthLabels, M as entityHealthPriority, N as flowLabels, O as formatRelativeLocaleTime, P as formatTimeRemaining, Q as getUIStrings, R as isActiveJobStatus, T as isCriticalEntityHealth, V as isRTL, W as jobStatusLabels, X as resolveEmotion, Y as resolveFlow, Z as resolveSeverity, _ as resolveStatus, $ as sentimentLabels, a0 as severityLabels, a1 as stageStatusLabels, a2 as statusLabels } from './i18n-UEClNsBy.js';
3
+ import { I as IranProvinceSlug, C as Country, P as PostData, a as PostView, b as PostAction, c as PostMediaItem, d as PostAuthor, e as PostPlatform, f as PostSentiment, g as PostEnrichmentFlags, h as PostDensity, i as PostOutlet, j as PostBodyData, S as StoryItem, k as PostMetrics, l as PostSeverity, m as PostCluster, n as PostRepostInfo, o as PostThreadInfo, p as PostUrlPreview$1, q as PostBulkAction, r as PostDetails, s as PostComment } from './server-Cfw5kIug.js';
4
+ export { t as COUNTRIES, u as CountryCode, E as ENGAGEMENT_RANGES, v as EngagementRange, w as EngagementRangeWithDisplay, x as EngagementTier, F as FollowerGroup, G as GROUP_LABELS, y as IRAN_PROVINCES, z as IranProvince, L as LegacySize, A as PERSIAN_MONTHS, B as PERSIAN_MONTHS_SHORT, D as PERSIAN_WEEKDAYS, H as PERSIAN_WEEKDAYS_SHORT, J as PlatformMetadata, K as PostAiAnalysis, M as PostAiEntity, N as PostAuthorityTier, O as PostCommentAuthor, Q as PostEmotion, R as PostFlags, T as PostFlow, U as PostIntent, V as PostMediaSensitivity, W as PostMediaStatus, X as PostSource, Y as PostSourceCategory, Z as PostStatus, _ as ReactionBreakdown, $ as SizeWithLegacy, a0 as StandardSize, a1 as TIER_LABELS, a2 as countryFlag, a3 as findCountry, a4 as findProvince, a5 as formatJalaliDate, a6 as formatPersianDateRange, a7 as getCountryLabel, a8 as getCurrentRangeIndex, a9 as getEngagementRanges, aa as getFollowerGroup, ab as getMetricLabel, ac as getPersianDay, ad as getPersianMonth, ae as getPersianMonthName, af as getPersianMonthNameShort, ag as getPersianMonthsForDropdown, ah as getPersianWeekdayName, ai as getPersianYear, aj as getPersianYearsForDropdown, ak as getPostSourceConfig, al as getProvinceLabel, am as getSourceColorVar, an as jalaliToGregorian, ao as normalizeSize, ap as sourceCategory, aq as toEnglishDigits, ar as toPersianDigits } from './server-Cfw5kIug.js';
5
+ import { A as ActionStatusKey, c as ActionTypeKey, E as EntityHealthKey, J as JobStatusKey, d as EmotionKey, b as FlowKey, e as StageStatusKey, f as EmotionInput, F as FlowInput, g as StatusInput, h as SeverityInput, a as StatusKey } from './i18n-CZQ2kPWD.js';
6
+ export { i as ACTION_STATUS_KEYS, j as ACTION_TYPE_KEYS, k as EMOTION_KEYS, l as EMOTION_KEY_TO_VALUE, m as EMOTION_VALUE_MAP, n as ENTITY_HEALTH_KEYS, o as FLOW_KEYS, p as FLOW_KEY_TO_VALUE, q as FLOW_VALUE_MAP, r as JOB_STATUS_KEYS, L as Locale, s as SEVERITY_KEYS, t as SEVERITY_KEY_TO_VALUE, u as SEVERITY_VALUE_MAP, v as STAGE_STATUS_KEYS, w as STATUS_KEYS, x as STATUS_KEY_TO_VALUE, y as STATUS_VALUE_MAP, S as SeverityKey, U as UIStringKeys, z as UIStrings, B as UI_STRINGS, C as actionStatusLabels, D as actionTypeLabels, G as actionTypeVerbs, H as emotionLabels, I as engagementUiTranslations, K as entityHealthLabels, M as entityHealthPriority, N as flowLabels, O as formatRelativeLocaleTime, P as formatTimeRemaining, Q as getUIStrings, R as isActiveJobStatus, T as isCriticalEntityHealth, V as isRTL, W as jobStatusLabels, X as resolveEmotion, Y as resolveFlow, Z as resolveSeverity, _ as resolveStatus, $ as sentimentLabels, a0 as severityLabels, a1 as stageStatusLabels, a2 as statusLabels } from './i18n-CZQ2kPWD.js';
7
7
  import * as React$1 from 'react';
8
8
  import { LucideIcon } from 'lucide-react';
9
9
  export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './components/ui/accordion.js';
@@ -32,8 +32,8 @@ export { DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHead
32
32
  import { HotkeyCombo } from './hooks/use-hotkeys.js';
33
33
  export { UseHotkeysOptions, formatHotkey, useHotkeys } from './hooks/use-hotkeys.js';
34
34
  import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
35
- import { F as FlowData, S as SentimentData } from './concept-card-D7PfDkNR.js';
36
- export { C as ConceptCard, a as ConceptCardProps, b as FlowDistribution, c as FlowDistributionProps, d as SentimentDistribution, e as SentimentDistributionProps } from './concept-card-D7PfDkNR.js';
35
+ import { F as FlowData, S as SentimentData } from './concept-card-DX5zRCk2.js';
36
+ export { C as ConceptCard, a as ConceptCardProps, b as FlowDataItem, c as FlowDistribution, d as FlowDistributionProps, e as SentimentDistribution, f as SentimentDistributionProps } from './concept-card-DX5zRCk2.js';
37
37
  import { DateRange } from 'react-day-picker';
38
38
  import { Drawer as Drawer$1 } from 'vaul';
39
39
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from './components/ui/dropdown-menu.js';
@@ -48,7 +48,7 @@ export { IranProvinceCell, IranProvinceHeat, IranProvinceHeatProps, IranProvince
48
48
  import { OTPInput } from 'input-otp';
49
49
  import * as MenubarPrimitive from '@radix-ui/react-menubar';
50
50
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
51
- export { B as BotDetectionData, a as BotDetectionKey, b as BotDetectionMeter, c as BotDetectionMeterProps, P as PageCard, d as PageCardContentMix, e as PageCardProps } from './page-card-sIE4lvnb.js';
51
+ export { B as BotDetectionData, a as BotDetectionKey, b as BotDetectionMeter, c as BotDetectionMeterProps, P as PageCard, d as PageCardContentMix, e as PageCardProps } from './page-card-CU6_AmNR.js';
52
52
  export { PageHeader, PageHeaderProps } from './components/ui/page-header.js';
53
53
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from './components/ui/popover.js';
54
54
  export { Progress, ProgressProps } from './components/ui/progress.js';
@@ -3811,7 +3811,18 @@ interface EmotionBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement> {
3811
3811
  }
3812
3812
  declare const EmotionBadge: React$1.ForwardRefExoticComponent<EmotionBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
3813
3813
 
3814
- type EmotionData = Partial<Record<EmotionKey, number>>;
3814
+ /** A single emotion entry: `type` accepts a key, a numeric code `1–9`, or a label. */
3815
+ interface EmotionDataItem {
3816
+ /** Emotion identity — `EmotionKey` (`'anger'`…), numeric code `1–9`, or localized label. */
3817
+ type: EmotionInput;
3818
+ /** Numeric count for this emotion. */
3819
+ value: number;
3820
+ }
3821
+ /**
3822
+ * Emotion counts. Either an array of `{ type, value }` entries (type as a key,
3823
+ * a numeric code `1–9`, or a label) or a keyed object `{ anger: 420, … }`.
3824
+ */
3825
+ type EmotionData = EmotionDataItem[] | Partial<Record<EmotionKey, number>>;
3815
3826
  interface EmotionDistributionProps extends React$1.HTMLAttributes<HTMLDivElement> {
3816
3827
  /** Emotion counts (auto-normalized to 100%). Missing keys are treated as 0. */
3817
3828
  data: EmotionData;
@@ -5280,4 +5291,4 @@ interface UseFilterPresetsReturn<T extends FilterStateShape> {
5280
5291
  */
5281
5292
  declare function useFilterPresets<T extends FilterStateShape>(options: UseFilterPresetsOptions): UseFilterPresetsReturn<T>;
5282
5293
 
5283
- export { ACTION_TYPE_META, ActionStatusKey, ActionTimeline, type ActionTimelineDensity, type ActionTimelineGroupBy, ActionTimelineItem, type ActionTimelineItemData, type ActionTimelineItemProps, type ActionTimelineProps, ActionTypeChip, type ActionTypeChipProps, ActionTypeKey, ActiveFiltersBar, type ActiveFiltersBarProps, ActiveFiltersClearAll, type ActiveFiltersClearAllProps, AnimatedNumber, type AnimatedNumberProps, AppLayout, AppLayoutContent, AppSecondary, AppSecondaryContent, AppSecondaryFooter, AppSecondaryHeader, AspectRatio, type AsyncStatus, Autocomplete, type AutocompleteItem, type AutocompleteProps, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, Banner, type BannerProps, type BenchmarkMarker, type BenchmarkTier, BlurBackdrop, BulletinViewer, type BulletinViewerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, CENTERED_CONTAINER_CLS, CHART_FONT_FAMILY, CRITERION_TIER_KEYS, Callout, CalloutDescription, type CalloutProps, CalloutTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartGradientLegend, type ChartGradientLegendProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingSkeleton, ChartTooltip, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandPaletteRecentsConfig, CommandSeparator, CommandShortcut, CommentCard, type CommentCardProps, type CommentTag, ComparisonCard, type ComparisonCardProps, type ComparisonEntity, type ComparisonMetric, ComparisonRadar, type ComparisonRadarProps, type ComparisonWinner, type CompositionScale, type ConceptComposition, type ConceptPoint, ConceptPulseChart, type ConceptPulseChartProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, Country, CountryPicker, type CountryPickerProps, type CriterionInputSpec, CriterionScoreCard, type CriterionScoreCardProps, type CriterionTierKey, type CriterionTierThresholds, type CriterionTrend, DEFAULT_CRITERION_THRESHOLDS, DEFAULT_PERIODS, DEFAULT_THRESHOLDS, DataTableColumn, DataTableColumnVisibility, DataTableColumnVisibilityToggle, type DataTableColumnVisibilityToggleProps, DataTableExportButton, type DataTableExportButtonProps, DatePicker, type DatePickerProps, DateRangePicker, DateRangePickerInline, type DateRangePickerProps, Dialog, type Direction, DirectionalBox, type DirectionalBoxProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, EmotionBadge, type EmotionBadgeProps, type EmotionData, EmotionDistribution, type EmotionDistributionProps, EmotionInput, EmotionKey, Empty, EmptyAction, EmptyChart, type EmptyChartProps, type EmptyChartShape, EmptyDescription, EmptyIcon, EmptyTitle, EngagementRate, EngagementRateBar, type EngagementRateBarProps, EngagementRateBenchmark, type EngagementRateBenchmarkProps, type EngagementRateProps, EntityHealthCard, EntityHealthCardActions, EntityHealthCardFooter, EntityHealthCardHeader, EntityHealthCardHeaderEnd, EntityHealthCardHeaderText, EntityHealthCardMeta, EntityHealthCardMetric, type EntityHealthCardMetricProps, EntityHealthCardMetrics, type EntityHealthCardMetricsProps, EntityHealthCardNarrative, EntityHealthCardPhase, type EntityHealthCardPhaseProps, type EntityHealthCardProps, EntityHealthCardScore, type EntityHealthCardScoreProps, EntityHealthCardSeverityBadge, type EntityHealthCardSeverityBadgeProps, EntityHealthCardSubtitle, EntityHealthCardTitle, type EntityHealthCardTitleProps, EntityHealthCardTrust, type EntityHealthCardTrustProps, EntityHealthKey, ErrorBoundary, type ErrorBoundaryProps, ErrorIllustration, ErrorState, type ErrorStateProps, type ExecutiveSummaryMetric, ExecutiveSummarySection, type ExecutiveSummarySectionProps, type ExportableColumn, FOREGROUND_IMG_CLS, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterBar, FilterBarActions, type FilterBarActionsProps, FilterBarActiveFilters, type FilterBarActiveFiltersProps, FilterBarClear, type FilterBarClearProps, type FilterBarProps, FilterBarRow, type FilterBarRowProps, FilterChip, FilterChipGroup, type FilterChipProps, FilterPanel, FilterPanelBody, FilterPanelClearAll, type FilterPanelClearAllProps, FilterPanelFooter, FilterPanelHeader, type FilterPanelProps, FilterPanelTitle, type FilterPanelTitleProps, FilterPanelTrigger, type FilterPanelTriggerProps, type FilterPreset, FilterSection, type FilterSectionProps, FilterStateShape, FirstRunIllustration, FlowBadge, type FlowBadgeProps, FlowCell, type FlowCellProps, FlowData, FlowDistributionSection, type FlowDistributionSectionProps, FlowInput, FlowKey, ForbiddenIllustration, HashtagInput, type TagInputProps as HashtagInputProps, type HashtagPerformanceData, HashtagPerformanceRow, type HashtagPerformanceRowProps, type HeatMapDatum, type HeatMapRow, HotkeyCombo, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InputVariants, InputWithIcon, type InputWithIconProps, IranProvinceSlug, JobCard, JobCardActions, JobCardError, JobCardHeader, JobCardHeaderActions, JobCardHeaderText, JobCardMeta, JobCardMetaItem, type JobCardMetaItemProps, JobCardProgress, type JobCardProgressProps, type JobCardProps, JobCardStat, type JobCardStatProps, JobCardStats, type JobCardStatsProps, JobCardStatusBadge, type JobCardStatusBadgeProps, JobCardSubtitle, JobCardThumbnail, type JobCardThumbnailProps, JobCardTitle, type JobCardTitleProps, JobStatusKey, JobWizard, type JobWizardApi, JobWizardBack, type JobWizardBackProps, JobWizardBody, JobWizardCancel, type JobWizardCancelProps, JobWizardError, JobWizardFooter, JobWizardHeader, type JobWizardHeaderProps, JobWizardNext, type JobWizardNextProps, type JobWizardProps, JobWizardSkip, type JobWizardSkipProps, JobWizardSpacer, type JobWizardStep, JobWizardStepper, type JobWizardStepperProps, type JobWizardSubmitState, JobWizardSuccess, type JobWizardSuccessProps, type JobWizardValidationResult, Kbd, KbdGroup, Label, LabelChip, type LabelChipProps, LabelEditDialog, type LabelEditDialogProps, MarkdownRenderer, type MarkdownRendererProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCard, MetricCardContent, MetricCardDifferential, MetricCardHeader, MetricCardLabel, MetricCardSparkline, MetricCardValue, MultiSelect, type MultiSelectOption, type MultiSelectProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavGroup, type NavGroupProps, NavItem, type NavItemBaseProps, type NavItemProps, type NavMatchStrategy, NavPanel, NavPanelContent, NavPanelFooter, NavPanelHeader, NavRail, NavRailContent, NavRailFooter, NavRailHeader, NavRailItem, NavRailProvider, NavRailSeparator, NavRailTrigger, NavSeparator, NavTree, type NavTreeContextValue, NavTreeProvider, type NavTreeProviderProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NetworkLink, type NetworkNode, NoDataIllustration, NoResultsIllustration, NotificationCenter, type NotificationCenterProps, type NotificationFilter, type NotificationItem, type NotificationSeverity, NumberInputLocale, type NumberInputLocaleProps, PageLoader, type PageLoaderProps, Pagination, PaginationContent, PaginationControlled, type PaginationControlledProps, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PartoHeatMap, type PartoHeatMapProps, PartoNetworkChart, type PartoNetworkChartProps, PartoRadarChart, type PartoRadarChartProps, PartoSankeyChart, type PartoSankeyChartProps, PartoScatterChart, type PartoScatterChartProps, PartoWordCloud, type PartoWordCloudProps, type PeriodOption, PeriodSelector, type PeriodSelectorProps, PostAction, PostActions, type PostActionsProps, PostAuthor, PostBody, PostBodyData, type PostBodyProps, PostBulkAction, PostBulkActionBar, type PostBulkActionBarProps, PostCard, type PostCardProps, PostCluster, PostComment, PostCrisisBanner, type PostCrisisBannerProps, PostData, PostDensity, PostDetails, PostDetailsDrawer, type PostDetailsDrawerProps, type PostDetailsTab, PostEnrichmentFlags, type PostGroupBy, PostHeader, PostHeaderBroadcast, type PostHeaderBroadcastProps, PostHeaderEditorial, type PostHeaderEditorialProps, type PostHeaderProps, PostList, type PostListProps, PostMedia, PostMediaAudio, PostMediaCarousel, PostMediaGrid, PostMediaHighlight, PostMediaItem, PostMediaPlaceholder, type PostMediaPlaceholderProps, type PostMediaPlaceholderVariant, type PostMediaProps, PostMediaSensitiveOverlay, PostMediaSingle, PostMediaSourceRemoved, type PostMediaSourceRemovedProps, PostMediaStory, PostMediaVideo, PostMetadata, type PostMetadataProps, PostMetrics, PostOutlet, PostPlatform, PostQuotedEmbed, type PostQuotedEmbedProps, PostRepostHeader, type PostRepostHeaderProps, PostRepostInfo, PostSentiment, PostSeverity, PostSignals, type PostSignalsProps, type PostSortBy, PostThreadConnector, type PostThreadConnectorProps, PostThreadInfo, PostUrlPreview, PostUrlPreview$1 as PostUrlPreviewData, type PostUrlPreviewProps, PostUrlPreview$1 as PostUrlPreviewSnapshot, PostView, type PostingFrequencyCell, PostingFrequencyHeatmap, type PostingFrequencyHeatmapProps, type PostingFrequencySummary, type PostingWeekStart, ProfileCard, type ProfileCardProps, ProfileInfo, type ProfileInfoProps, ProgressCell, type ProgressCellProps, type QuotaLevel, QuotaProgressBar, type QuotaProgressBarProps, type QuotaThresholds, RateLimitBanner, type RateLimitBannerProps, RegionPicker, type RegionPickerKey, type RegionPickerProps, RegisteredHotkey, ReportComposer, type ReportComposerProps, ReportSection, type ReportSectionProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RouteProgress, type RouteProgressHandle, type RouteProgressProps, SENSITIVITY_LABEL, SafeImage, type SafeImageProps, type SankeyLink, type SankeyNode, SearchInput, type SearchInputProps, type SectionItem, SectionNavigator, type SectionNavigatorProps, SentimentBadge, type SentimentBadgeProps, SentimentBreakdownSection, type SentimentBreakdownSectionProps, SentimentCell, type SentimentCellProps, SentimentData, Separator, SeverityBadge, type SeverityBadgeProps, SeverityInput, ShortcutsCheatsheet, type ShortcutsCheatsheetProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, SiteHeaderActions, SiteHeaderEnd, type SiteHeaderProps, SiteHeaderSeparator, SiteHeaderStart, SiteHeaderSubtitle, SiteHeaderTitle, SiteHeaderTitleGroup, SocialPlatform, type SourceBreakdownEntry, SourceBreakdownSection, type SourceBreakdownSectionProps, SparklineCell, type SparklineCellProps, Spinner, type SpinnerProps, StageStatusKey, StatDeltaCell, type StatDeltaCellProps, StatDisplay, type StatDisplayProps, StatusBadge, type StatusBadgeProps, StatusFlow, type StatusFlowOrientation, type StatusFlowProps, type StatusFlowSize, StatusFlowStage, type StatusFlowStageData, type StatusFlowStageProps, StatusInput, StatusKey, StatusPulseCell, type StatusPulseCellProps, Step, type StepProps, Stepper, type StepperProps, SupportedLocale, TableComparisonView, type TableComparisonViewProps, TagInput, type TagInputProps, TaskList, type TaskListGroup, type TaskListProps, TimelineSection, type TimelineSectionProps, TooltipContent, TopPostsSection, type TopPostsSectionProps, TrendCell, type TrendCellProps, TrendIndicator, type TrendIndicatorProps, type UseAsyncReturn, type UseClipboardOptions, type UseClipboardReturn, type UseFilterParamsOptions, type UseFilterPresetsOptions, type UseFilterPresetsReturn, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseJobWizardOptions, UserAutocomplete, type UserAutocompleteProps, type UserItem, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, type ViewMode, ViewToggle, type ViewToggleProps, type WordData, actionTypeChipVariants, avatarGroupVariants, bannerVariants, buildCsv, buildPostingFrequencyRows, buildTsv, buttonGroupVariants, calloutVariants, computeComparisonWinners, countComparisonWins, defaultActions as defaultPostActions, downloadFile, findTierIndex, getCriterionTier, getEngagementRateBenchmarkTiers, getScoreBenchmarkTiers, tagInputVariants as hashtagInputVariants, labelChipVariants, localeAwareCategoryTick, localeAwareNumberTick, navItemVariants, navigationMenuTriggerStyle, normalizeUrlDigits, pageLoaderVariants, postCardVariants, postHeaderVariants, profileCardVariants, resolveLevel, siteHeaderVariants, spinnerVariants, statDisplayVariants, tagInputVariants, transformNivoLineData, useAsync, useBreakpoint, useChartTheme, useClipboard, useDebounce, useDocumentDirection, useFilterParams, useFilterPresets, useInfiniteScroll, useIsMobile, useJobWizard, useJobWizardState, useLocalStorage, useMediaQuery, useNavRail, useNavTree, useOutsideClick, usePrevious, useRootStyles, useScrollLock, useSidebar };
5294
+ export { ACTION_TYPE_META, ActionStatusKey, ActionTimeline, type ActionTimelineDensity, type ActionTimelineGroupBy, ActionTimelineItem, type ActionTimelineItemData, type ActionTimelineItemProps, type ActionTimelineProps, ActionTypeChip, type ActionTypeChipProps, ActionTypeKey, ActiveFiltersBar, type ActiveFiltersBarProps, ActiveFiltersClearAll, type ActiveFiltersClearAllProps, AnimatedNumber, type AnimatedNumberProps, AppLayout, AppLayoutContent, AppSecondary, AppSecondaryContent, AppSecondaryFooter, AppSecondaryHeader, AspectRatio, type AsyncStatus, Autocomplete, type AutocompleteItem, type AutocompleteProps, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, Banner, type BannerProps, type BenchmarkMarker, type BenchmarkTier, BlurBackdrop, BulletinViewer, type BulletinViewerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, CENTERED_CONTAINER_CLS, CHART_FONT_FAMILY, CRITERION_TIER_KEYS, Callout, CalloutDescription, type CalloutProps, CalloutTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartGradientLegend, type ChartGradientLegendProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartLoadingSkeleton, ChartTooltip, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandPaletteRecentsConfig, CommandSeparator, CommandShortcut, CommentCard, type CommentCardProps, type CommentTag, ComparisonCard, type ComparisonCardProps, type ComparisonEntity, type ComparisonMetric, ComparisonRadar, type ComparisonRadarProps, type ComparisonWinner, type CompositionScale, type ConceptComposition, type ConceptPoint, ConceptPulseChart, type ConceptPulseChartProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, Country, CountryPicker, type CountryPickerProps, type CriterionInputSpec, CriterionScoreCard, type CriterionScoreCardProps, type CriterionTierKey, type CriterionTierThresholds, type CriterionTrend, DEFAULT_CRITERION_THRESHOLDS, DEFAULT_PERIODS, DEFAULT_THRESHOLDS, DataTableColumn, DataTableColumnVisibility, DataTableColumnVisibilityToggle, type DataTableColumnVisibilityToggleProps, DataTableExportButton, type DataTableExportButtonProps, DatePicker, type DatePickerProps, DateRangePicker, DateRangePickerInline, type DateRangePickerProps, Dialog, type Direction, DirectionalBox, type DirectionalBoxProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, EmotionBadge, type EmotionBadgeProps, type EmotionData, type EmotionDataItem, EmotionDistribution, type EmotionDistributionProps, EmotionInput, EmotionKey, Empty, EmptyAction, EmptyChart, type EmptyChartProps, type EmptyChartShape, EmptyDescription, EmptyIcon, EmptyTitle, EngagementRate, EngagementRateBar, type EngagementRateBarProps, EngagementRateBenchmark, type EngagementRateBenchmarkProps, type EngagementRateProps, EntityHealthCard, EntityHealthCardActions, EntityHealthCardFooter, EntityHealthCardHeader, EntityHealthCardHeaderEnd, EntityHealthCardHeaderText, EntityHealthCardMeta, EntityHealthCardMetric, type EntityHealthCardMetricProps, EntityHealthCardMetrics, type EntityHealthCardMetricsProps, EntityHealthCardNarrative, EntityHealthCardPhase, type EntityHealthCardPhaseProps, type EntityHealthCardProps, EntityHealthCardScore, type EntityHealthCardScoreProps, EntityHealthCardSeverityBadge, type EntityHealthCardSeverityBadgeProps, EntityHealthCardSubtitle, EntityHealthCardTitle, type EntityHealthCardTitleProps, EntityHealthCardTrust, type EntityHealthCardTrustProps, EntityHealthKey, ErrorBoundary, type ErrorBoundaryProps, ErrorIllustration, ErrorState, type ErrorStateProps, type ExecutiveSummaryMetric, ExecutiveSummarySection, type ExecutiveSummarySectionProps, type ExportableColumn, FOREGROUND_IMG_CLS, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterBar, FilterBarActions, type FilterBarActionsProps, FilterBarActiveFilters, type FilterBarActiveFiltersProps, FilterBarClear, type FilterBarClearProps, type FilterBarProps, FilterBarRow, type FilterBarRowProps, FilterChip, FilterChipGroup, type FilterChipProps, FilterPanel, FilterPanelBody, FilterPanelClearAll, type FilterPanelClearAllProps, FilterPanelFooter, FilterPanelHeader, type FilterPanelProps, FilterPanelTitle, type FilterPanelTitleProps, FilterPanelTrigger, type FilterPanelTriggerProps, type FilterPreset, FilterSection, type FilterSectionProps, FilterStateShape, FirstRunIllustration, FlowBadge, type FlowBadgeProps, FlowCell, type FlowCellProps, FlowData, FlowDistributionSection, type FlowDistributionSectionProps, FlowInput, FlowKey, ForbiddenIllustration, HashtagInput, type TagInputProps as HashtagInputProps, type HashtagPerformanceData, HashtagPerformanceRow, type HashtagPerformanceRowProps, type HeatMapDatum, type HeatMapRow, HotkeyCombo, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InputVariants, InputWithIcon, type InputWithIconProps, IranProvinceSlug, JobCard, JobCardActions, JobCardError, JobCardHeader, JobCardHeaderActions, JobCardHeaderText, JobCardMeta, JobCardMetaItem, type JobCardMetaItemProps, JobCardProgress, type JobCardProgressProps, type JobCardProps, JobCardStat, type JobCardStatProps, JobCardStats, type JobCardStatsProps, JobCardStatusBadge, type JobCardStatusBadgeProps, JobCardSubtitle, JobCardThumbnail, type JobCardThumbnailProps, JobCardTitle, type JobCardTitleProps, JobStatusKey, JobWizard, type JobWizardApi, JobWizardBack, type JobWizardBackProps, JobWizardBody, JobWizardCancel, type JobWizardCancelProps, JobWizardError, JobWizardFooter, JobWizardHeader, type JobWizardHeaderProps, JobWizardNext, type JobWizardNextProps, type JobWizardProps, JobWizardSkip, type JobWizardSkipProps, JobWizardSpacer, type JobWizardStep, JobWizardStepper, type JobWizardStepperProps, type JobWizardSubmitState, JobWizardSuccess, type JobWizardSuccessProps, type JobWizardValidationResult, Kbd, KbdGroup, Label, LabelChip, type LabelChipProps, LabelEditDialog, type LabelEditDialogProps, MarkdownRenderer, type MarkdownRendererProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCard, MetricCardContent, MetricCardDifferential, MetricCardHeader, MetricCardLabel, MetricCardSparkline, MetricCardValue, MultiSelect, type MultiSelectOption, type MultiSelectProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavGroup, type NavGroupProps, NavItem, type NavItemBaseProps, type NavItemProps, type NavMatchStrategy, NavPanel, NavPanelContent, NavPanelFooter, NavPanelHeader, NavRail, NavRailContent, NavRailFooter, NavRailHeader, NavRailItem, NavRailProvider, NavRailSeparator, NavRailTrigger, NavSeparator, NavTree, type NavTreeContextValue, NavTreeProvider, type NavTreeProviderProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NetworkLink, type NetworkNode, NoDataIllustration, NoResultsIllustration, NotificationCenter, type NotificationCenterProps, type NotificationFilter, type NotificationItem, type NotificationSeverity, NumberInputLocale, type NumberInputLocaleProps, PageLoader, type PageLoaderProps, Pagination, PaginationContent, PaginationControlled, type PaginationControlledProps, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PartoHeatMap, type PartoHeatMapProps, PartoNetworkChart, type PartoNetworkChartProps, PartoRadarChart, type PartoRadarChartProps, PartoSankeyChart, type PartoSankeyChartProps, PartoScatterChart, type PartoScatterChartProps, PartoWordCloud, type PartoWordCloudProps, type PeriodOption, PeriodSelector, type PeriodSelectorProps, PostAction, PostActions, type PostActionsProps, PostAuthor, PostBody, PostBodyData, type PostBodyProps, PostBulkAction, PostBulkActionBar, type PostBulkActionBarProps, PostCard, type PostCardProps, PostCluster, PostComment, PostCrisisBanner, type PostCrisisBannerProps, PostData, PostDensity, PostDetails, PostDetailsDrawer, type PostDetailsDrawerProps, type PostDetailsTab, PostEnrichmentFlags, type PostGroupBy, PostHeader, PostHeaderBroadcast, type PostHeaderBroadcastProps, PostHeaderEditorial, type PostHeaderEditorialProps, type PostHeaderProps, PostList, type PostListProps, PostMedia, PostMediaAudio, PostMediaCarousel, PostMediaGrid, PostMediaHighlight, PostMediaItem, PostMediaPlaceholder, type PostMediaPlaceholderProps, type PostMediaPlaceholderVariant, type PostMediaProps, PostMediaSensitiveOverlay, PostMediaSingle, PostMediaSourceRemoved, type PostMediaSourceRemovedProps, PostMediaStory, PostMediaVideo, PostMetadata, type PostMetadataProps, PostMetrics, PostOutlet, PostPlatform, PostQuotedEmbed, type PostQuotedEmbedProps, PostRepostHeader, type PostRepostHeaderProps, PostRepostInfo, PostSentiment, PostSeverity, PostSignals, type PostSignalsProps, type PostSortBy, PostThreadConnector, type PostThreadConnectorProps, PostThreadInfo, PostUrlPreview, PostUrlPreview$1 as PostUrlPreviewData, type PostUrlPreviewProps, PostUrlPreview$1 as PostUrlPreviewSnapshot, PostView, type PostingFrequencyCell, PostingFrequencyHeatmap, type PostingFrequencyHeatmapProps, type PostingFrequencySummary, type PostingWeekStart, ProfileCard, type ProfileCardProps, ProfileInfo, type ProfileInfoProps, ProgressCell, type ProgressCellProps, type QuotaLevel, QuotaProgressBar, type QuotaProgressBarProps, type QuotaThresholds, RateLimitBanner, type RateLimitBannerProps, RegionPicker, type RegionPickerKey, type RegionPickerProps, RegisteredHotkey, ReportComposer, type ReportComposerProps, ReportSection, type ReportSectionProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RouteProgress, type RouteProgressHandle, type RouteProgressProps, SENSITIVITY_LABEL, SafeImage, type SafeImageProps, type SankeyLink, type SankeyNode, SearchInput, type SearchInputProps, type SectionItem, SectionNavigator, type SectionNavigatorProps, SentimentBadge, type SentimentBadgeProps, SentimentBreakdownSection, type SentimentBreakdownSectionProps, SentimentCell, type SentimentCellProps, SentimentData, Separator, SeverityBadge, type SeverityBadgeProps, SeverityInput, ShortcutsCheatsheet, type ShortcutsCheatsheetProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, SiteHeaderActions, SiteHeaderEnd, type SiteHeaderProps, SiteHeaderSeparator, SiteHeaderStart, SiteHeaderSubtitle, SiteHeaderTitle, SiteHeaderTitleGroup, SocialPlatform, type SourceBreakdownEntry, SourceBreakdownSection, type SourceBreakdownSectionProps, SparklineCell, type SparklineCellProps, Spinner, type SpinnerProps, StageStatusKey, StatDeltaCell, type StatDeltaCellProps, StatDisplay, type StatDisplayProps, StatusBadge, type StatusBadgeProps, StatusFlow, type StatusFlowOrientation, type StatusFlowProps, type StatusFlowSize, StatusFlowStage, type StatusFlowStageData, type StatusFlowStageProps, StatusInput, StatusKey, StatusPulseCell, type StatusPulseCellProps, Step, type StepProps, Stepper, type StepperProps, SupportedLocale, TableComparisonView, type TableComparisonViewProps, TagInput, type TagInputProps, TaskList, type TaskListGroup, type TaskListProps, TimelineSection, type TimelineSectionProps, TooltipContent, TopPostsSection, type TopPostsSectionProps, TrendCell, type TrendCellProps, TrendIndicator, type TrendIndicatorProps, type UseAsyncReturn, type UseClipboardOptions, type UseClipboardReturn, type UseFilterParamsOptions, type UseFilterPresetsOptions, type UseFilterPresetsReturn, type UseInfiniteScrollOptions, type UseInfiniteScrollReturn, type UseJobWizardOptions, UserAutocomplete, type UserAutocompleteProps, type UserItem, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, type ViewMode, ViewToggle, type ViewToggleProps, type WordData, actionTypeChipVariants, avatarGroupVariants, bannerVariants, buildCsv, buildPostingFrequencyRows, buildTsv, buttonGroupVariants, calloutVariants, computeComparisonWinners, countComparisonWins, defaultActions as defaultPostActions, downloadFile, findTierIndex, getCriterionTier, getEngagementRateBenchmarkTiers, getScoreBenchmarkTiers, tagInputVariants as hashtagInputVariants, labelChipVariants, localeAwareCategoryTick, localeAwareNumberTick, navItemVariants, navigationMenuTriggerStyle, normalizeUrlDigits, pageLoaderVariants, postCardVariants, postHeaderVariants, profileCardVariants, resolveLevel, siteHeaderVariants, spinnerVariants, statDisplayVariants, tagInputVariants, transformNivoLineData, useAsync, useBreakpoint, useChartTheme, useClipboard, useDebounce, useDocumentDirection, useFilterParams, useFilterPresets, useInfiniteScroll, useIsMobile, useJobWizard, useJobWizardState, useLocalStorage, useMediaQuery, useNavRail, useNavTree, useOutsideClick, usePrevious, useRootStyles, useScrollLock, useSidebar };