impact-nova 2.5.6 → 2.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/data/ag-grid-react/ag-grid.types.d.ts +2 -2
- package/dist/components/data/ag-grid-react/headers/components/date-filter-picker.d.ts +4 -2
- package/dist/components/data/ag-grid-react/headers/header-search-input.js +65 -65
- package/dist/components/data/ag-grid-react/headers/utils/date-utils.js +55 -48
- package/dist/components/data-display/calendar/calendar-apply-validation.d.ts +4 -2
- package/dist/components/data-display/calendar/calendar-apply-validation.js +82 -51
- package/dist/components/data-display/calendar/calendar-config.d.ts +13 -5
- package/dist/components/data-display/calendar/calendar-config.js +31 -20
- package/dist/components/data-display/calendar/calendar-day-button.js +43 -35
- package/dist/components/data-display/calendar/calendar-day-hover.d.ts +8 -0
- package/dist/components/data-display/calendar/calendar-day-hover.js +20 -0
- package/dist/components/data-display/calendar/calendar-day-picker-classnames.d.ts +8 -1
- package/dist/components/data-display/calendar/calendar-day-picker-classnames.js +40 -20
- package/dist/components/data-display/calendar/calendar-day-picker-components.d.ts +12 -1
- package/dist/components/data-display/calendar/calendar-day-picker-components.js +199 -98
- package/dist/components/data-display/calendar/calendar-day-picker-view.d.ts +12 -4
- package/dist/components/data-display/calendar/calendar-day-picker-view.js +139 -92
- package/dist/components/data-display/calendar/calendar-fiscal-labels.d.ts +38 -0
- package/dist/components/data-display/calendar/calendar-fiscal-labels.js +90 -0
- package/dist/components/data-display/calendar/calendar-footer-summary.d.ts +13 -4
- package/dist/components/data-display/calendar/calendar-footer-summary.js +101 -50
- package/dist/components/data-display/calendar/calendar-footer.d.ts +16 -7
- package/dist/components/data-display/calendar/calendar-footer.js +88 -66
- package/dist/components/data-display/calendar/calendar-gregorian-presets.d.ts +2 -0
- package/dist/components/data-display/calendar/calendar-gregorian-presets.js +26 -0
- package/dist/components/data-display/calendar/calendar-interval-caption.d.ts +1 -0
- package/dist/components/data-display/calendar/calendar-interval-caption.js +10 -0
- package/dist/components/data-display/calendar/calendar-interval-utils.d.ts +23 -0
- package/dist/components/data-display/calendar/calendar-interval-utils.js +154 -0
- package/dist/components/data-display/calendar/calendar-month-panes.d.ts +5 -1
- package/dist/components/data-display/calendar/calendar-month-panes.js +9 -7
- package/dist/components/data-display/calendar/calendar-month-picker-panel.d.ts +5 -1
- package/dist/components/data-display/calendar/calendar-month-picker-panel.js +76 -77
- package/dist/components/data-display/calendar/calendar-month-utils.d.ts +2 -0
- package/dist/components/data-display/calendar/calendar-month-utils.js +69 -60
- package/dist/components/data-display/calendar/calendar-padding-week.utils.d.ts +15 -0
- package/dist/components/data-display/calendar/calendar-padding-week.utils.js +22 -3
- package/dist/components/data-display/calendar/calendar-panel-context.d.ts +1 -1
- package/dist/components/data-display/calendar/calendar-period-cell.d.ts +18 -0
- package/dist/components/data-display/calendar/calendar-period-cell.js +89 -0
- package/dist/components/data-display/calendar/calendar-period-keyboard.d.ts +2 -0
- package/dist/components/data-display/calendar/calendar-period-keyboard.js +18 -0
- package/dist/components/data-display/calendar/calendar-preset-strip.d.ts +6 -0
- package/dist/components/data-display/calendar/calendar-preset-strip.js +26 -0
- package/dist/components/data-display/calendar/calendar-quarter-panes.d.ts +24 -0
- package/dist/components/data-display/calendar/calendar-quarter-panes.js +115 -0
- package/dist/components/data-display/calendar/calendar-quarter-utils.d.ts +19 -0
- package/dist/components/data-display/calendar/calendar-quarter-utils.js +95 -0
- package/dist/components/data-display/calendar/calendar-selection-appearance.d.ts +38 -0
- package/dist/components/data-display/calendar/calendar-selection-appearance.js +72 -0
- package/dist/components/data-display/calendar/calendar-selection.d.ts +20 -0
- package/dist/components/data-display/calendar/calendar-selection.js +31 -0
- package/dist/components/data-display/calendar/calendar-week-number-cell.d.ts +6 -1
- package/dist/components/data-display/calendar/calendar-week-number-cell.js +53 -38
- package/dist/components/data-display/calendar/calendar-week-number-header.d.ts +4 -0
- package/dist/components/data-display/calendar/calendar-week-number-header.js +15 -0
- package/dist/components/data-display/calendar/calendar-week-utils.d.ts +11 -3
- package/dist/components/data-display/calendar/calendar-week-utils.js +50 -42
- package/dist/components/data-display/calendar/calendar-year-panes.d.ts +18 -0
- package/dist/components/data-display/calendar/calendar-year-panes.js +98 -0
- package/dist/components/data-display/calendar/calendar-year-utils.d.ts +17 -0
- package/dist/components/data-display/calendar/calendar-year-utils.js +75 -0
- package/dist/components/data-display/calendar/calendar.d.ts +1 -1
- package/dist/components/data-display/calendar/calendar.js +303 -181
- package/dist/components/data-display/calendar/calendar.types.d.ts +53 -16
- package/dist/components/data-display/calendar/fiscal-period-caption-select.d.ts +7 -0
- package/dist/components/data-display/calendar/fiscal-period-caption-select.js +63 -0
- package/dist/components/data-display/calendar/index.d.ts +1 -1
- package/dist/components/data-display/calendar/use-calendar-day-picker-config.d.ts +12 -2
- package/dist/components/data-display/calendar/use-calendar-day-picker-config.js +92 -62
- package/dist/components/data-display/calendar/use-calendar-state.d.ts +32 -12
- package/dist/components/data-display/calendar/use-calendar-state.js +371 -164
- package/dist/components/data-display/calendar/use-fiscal-calendar.d.ts +5 -0
- package/dist/components/data-display/calendar/use-fiscal-calendar.js +24 -0
- package/dist/components/feedback/tooltip/overflow-tooltip.js +57 -57
- package/dist/components/flows/guidance/guidance-error-boundary.js +22 -14
- package/dist/components/flows/guidance/guidance-layer.js +34 -32
- package/dist/components/flows/guidance/help-center/assets/whats-new-guide-icon.svg.js +4 -0
- package/dist/components/flows/guidance/help-center/filter-help-center-guides.js +10 -7
- package/dist/components/flows/guidance/help-center/guide-catalog-section.d.ts +7 -0
- package/dist/components/flows/guidance/help-center/guide-catalog-section.js +24 -0
- package/dist/components/flows/guidance/help-center/guide-catalog-utils.d.ts +3 -0
- package/dist/components/flows/guidance/help-center/guide-catalog-utils.js +19 -0
- package/dist/components/flows/guidance/help-center/guide-catalog.d.ts +1 -1
- package/dist/components/flows/guidance/help-center/guide-catalog.js +89 -79
- package/dist/components/flows/guidance/help-center/help-center-guide-labels.d.ts +6 -0
- package/dist/components/flows/guidance/help-center/help-center-guide-labels.js +33 -0
- package/dist/components/flows/guidance/help-center/help-center-guide-row.d.ts +12 -0
- package/dist/components/flows/guidance/help-center/help-center-guide-row.js +57 -0
- package/dist/components/flows/guidance/help-center/help-center-guide-type-icons.d.ts +9 -0
- package/dist/components/flows/guidance/help-center/help-center-guide-type-icons.js +114 -0
- package/dist/components/flows/guidance/help-center/help-center-header.d.ts +1 -1
- package/dist/components/flows/guidance/help-center/help-center-header.js +20 -16
- package/dist/components/flows/guidance/help-center/help-center.constants.d.ts +1 -1
- package/dist/components/flows/guidance/help-center/help-center.constants.js +1 -1
- package/dist/components/flows/guidance/help-center/help-center.d.ts +3 -1
- package/dist/components/flows/guidance/help-center/help-center.js +74 -51
- package/dist/components/flows/guidance/help-center/help-center.types.d.ts +9 -1
- package/dist/components/flows/guidance/help-center/renderHelpCenterGuideTypeIcon.d.ts +4 -0
- package/dist/components/flows/guidance/help-center/renderHelpCenterGuideTypeIcon.js +18 -0
- package/dist/components/flows/guidance/help-center.d.ts +4 -2
- package/dist/components/flows/guidance/help-center.js +23 -14
- package/dist/components/flows/guidance/hooks/useGuidanceOverlayGeometry.js +19 -17
- package/dist/components/flows/guidance/index.d.ts +1 -1
- package/dist/components/flows/guidance/renderers/announcement-renderer.d.ts +1 -1
- package/dist/components/flows/guidance/renderers/announcement-renderer.js +20 -12
- package/dist/components/flows/guidance/renderers/guidance-card-shared.d.ts +9 -11
- package/dist/components/flows/guidance/renderers/guidance-card-shared.js +124 -177
- package/dist/components/flows/guidance/renderers/guidance-renderer-shared.d.ts +1 -1
- package/dist/components/flows/guidance/renderers/guidance-renderer-shared.js +57 -72
- package/dist/components/flows/guidance/renderers/guidance-tour-overlay.js +23 -23
- package/dist/components/flows/wizard/wizard.js +41 -38
- package/dist/components/forms/date-picker/date-input-behavior.d.ts +7 -0
- package/dist/components/forms/date-picker/date-input-behavior.js +28 -24
- package/dist/components/forms/date-picker/date-picker-shell.d.ts +13 -0
- package/dist/components/forms/date-picker/date-picker-shell.js +31 -0
- package/dist/components/forms/date-picker/date-picker.js +187 -167
- package/dist/components/forms/date-picker/date-picker.types.d.ts +90 -43
- package/dist/components/forms/date-picker/date-range-picker.js +273 -224
- package/dist/components/forms/date-picker/fiscal-pass-through.d.ts +13 -0
- package/dist/components/forms/date-picker/fiscal-pass-through.js +17 -0
- package/dist/components/forms/date-picker/fiscal-period-format.d.ts +9 -0
- package/dist/components/forms/date-picker/fiscal-period-format.js +50 -0
- package/dist/components/forms/date-picker/index.d.ts +12 -0
- package/dist/components/forms/date-picker/index.js +19 -7
- package/dist/components/forms/date-picker/month-picker.js +225 -182
- package/dist/components/forms/date-picker/month-range-picker.js +134 -110
- package/dist/components/forms/date-picker/multi-date-picker.js +77 -56
- package/dist/components/forms/date-picker/multi-month-picker.js +78 -57
- package/dist/components/forms/date-picker/multi-quarter-picker.d.ts +3 -0
- package/dist/components/forms/date-picker/multi-quarter-picker.js +177 -0
- package/dist/components/forms/date-picker/multi-week-picker.js +81 -70
- package/dist/components/forms/date-picker/multi-year-picker.d.ts +3 -0
- package/dist/components/forms/date-picker/multi-year-picker.js +179 -0
- package/dist/components/forms/date-picker/quarter-picker.d.ts +3 -0
- package/dist/components/forms/date-picker/quarter-picker.js +176 -0
- package/dist/components/forms/date-picker/quarter-range-picker.d.ts +3 -0
- package/dist/components/forms/date-picker/quarter-range-picker.js +177 -0
- package/dist/components/forms/date-picker/week-picker.js +148 -137
- package/dist/components/forms/date-picker/week-range-picker.js +216 -205
- package/dist/components/forms/date-picker/year-picker.d.ts +3 -0
- package/dist/components/forms/date-picker/year-picker.js +176 -0
- package/dist/components/forms/date-picker/year-range-picker.d.ts +3 -0
- package/dist/components/forms/date-picker/year-range-picker.js +179 -0
- package/dist/components/layout/horizontal-scroller/horizontal-scroller.js +35 -53
- package/dist/form-react/Fields/DateInputField.js +63 -58
- package/dist/form-react/Fields/DateRangeField.js +42 -37
- package/dist/form-react/Fields/MonthRangeField.js +50 -45
- package/dist/form-react/Fields/MultiWeekPickerField.js +7 -7
- package/dist/form-react/Fields/WeekRangePicker.js +44 -45
- package/dist/form-react/components/FieldRenderer.js +21 -23
- package/dist/form-react/registry/defaultFieldRegistrations.d.ts +9 -1
- package/dist/form-react/registry/defaultFieldRegistrations.js +11 -12
- package/dist/form-react/registry/resolveFieldComponent.d.ts +3 -2
- package/dist/form-react/registry/resolveFieldComponent.js +9 -133
- package/dist/form-react/types/fields.types.d.ts +22 -7
- package/dist/form-react/utils/date.utils.d.ts +3 -1
- package/dist/form-react/utils/date.utils.js +82 -53
- package/dist/i18n/defaultMessages.d.ts +29 -1
- package/dist/i18n/defaultMessages.js +54 -27
- package/dist/i18n/locales/de.js +31 -4
- package/dist/i18n/locales/es.js +31 -4
- package/dist/i18n/locales/hi.js +31 -4
- package/dist/i18n/locales/kn.js +31 -4
- package/dist/impact-nova-components.css +379 -3
- package/dist/impact-nova.css +1 -1
- package/dist/index.js +528 -516
- package/dist/lib/fiscal-calendar/build-year.d.ts +8 -0
- package/dist/lib/fiscal-calendar/build-year.js +173 -0
- package/dist/lib/fiscal-calendar/civil-date.d.ts +21 -0
- package/dist/lib/fiscal-calendar/civil-date.js +94 -0
- package/dist/lib/fiscal-calendar/index.d.ts +10 -0
- package/dist/lib/fiscal-calendar/index.js +40 -0
- package/dist/lib/fiscal-calendar/lookup.d.ts +4 -0
- package/dist/lib/fiscal-calendar/lookup.js +70 -0
- package/dist/lib/fiscal-calendar/presets.d.ts +8 -0
- package/dist/lib/fiscal-calendar/presets.js +99 -0
- package/dist/lib/fiscal-calendar/selection.d.ts +18 -0
- package/dist/lib/fiscal-calendar/selection.js +32 -0
- package/dist/lib/fiscal-calendar/types.d.ts +145 -0
- package/dist/lib/fiscal-calendar/types.js +10 -0
- package/dist/lib/fiscal-calendar/week-selection.d.ts +22 -0
- package/dist/lib/fiscal-calendar/week-selection.js +107 -0
- package/dist/lib/guidance/engine/guidance-engine.d.ts +7 -5
- package/dist/lib/guidance/engine/guidance-engine.js +115 -47
- package/dist/lib/guidance/triggers/trigger-registry.js +6 -6
- package/dist/lib/guidance/types/guidance.types.d.ts +11 -1
- package/dist/llms/rules/installation.js +1 -1
- package/dist/llms/rules/requirements.js +1 -1
- package/package.json +5 -1
- package/dist/lib/fiscal-calendar.d.ts +0 -62
- package/dist/lib/fiscal-calendar.js +0 -99
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { resolveGuideType as u } from "./guide-catalog-utils.js";
|
|
2
|
+
function h(t, e) {
|
|
3
|
+
switch (u(t)) {
|
|
4
|
+
case "whats-new":
|
|
5
|
+
return e("helpCenter.guideTypeWhatsNew");
|
|
6
|
+
case "how-to":
|
|
7
|
+
return e("helpCenter.guideTypeHowTo");
|
|
8
|
+
case "tip":
|
|
9
|
+
return e("helpCenter.guideTypeTip");
|
|
10
|
+
default:
|
|
11
|
+
return e("helpCenter.guideTypeTour");
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
function p(t, e) {
|
|
15
|
+
switch (u(t)) {
|
|
16
|
+
case "whats-new":
|
|
17
|
+
return e("helpCenter.launchWhatsNew");
|
|
18
|
+
case "how-to":
|
|
19
|
+
return e("helpCenter.launchHowTo");
|
|
20
|
+
case "tip":
|
|
21
|
+
return e("helpCenter.launchTip");
|
|
22
|
+
default:
|
|
23
|
+
return e("helpCenter.launchTour");
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
function o(t, e, n) {
|
|
27
|
+
return u(t) === "whats-new" ? n("helpCenter.highlightCount", { count: e }) : n("helpCenter.stepCount", { count: e });
|
|
28
|
+
}
|
|
29
|
+
export {
|
|
30
|
+
p as getHelpCenterGuideLaunchLabel,
|
|
31
|
+
o as getHelpCenterGuideStepCountLabel,
|
|
32
|
+
h as getHelpCenterGuideTypeLabel
|
|
33
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GuideType } from '../../../../lib/guidance';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export interface HelpCenterGuideRowProps {
|
|
4
|
+
title: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
typeLabel?: string;
|
|
7
|
+
launchLabel: string;
|
|
8
|
+
guideType?: GuideType;
|
|
9
|
+
onLaunch: () => void;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function HelpCenterGuideRow({ title, description, typeLabel, launchLabel, guideType, onLaunch, className, }: HelpCenterGuideRowProps): React.ReactElement;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { jsxs as n, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import { Badge as c } from "../../../data-display/badge/badge.js";
|
|
4
|
+
import { cn as m } from "../../../../lib/utils.js";
|
|
5
|
+
import { ChevronRight as d } from "impact-nova-icons";
|
|
6
|
+
import { renderHelpCenterGuideTypeIcon as u } from "./renderHelpCenterGuideTypeIcon.js";
|
|
7
|
+
function v({
|
|
8
|
+
title: r,
|
|
9
|
+
description: t,
|
|
10
|
+
typeLabel: s,
|
|
11
|
+
launchLabel: a,
|
|
12
|
+
guideType: i = "tour",
|
|
13
|
+
onLaunch: l,
|
|
14
|
+
className: o
|
|
15
|
+
}) {
|
|
16
|
+
return /* @__PURE__ */ n(
|
|
17
|
+
"button",
|
|
18
|
+
{
|
|
19
|
+
type: "button",
|
|
20
|
+
className: m(
|
|
21
|
+
"flex w-full items-center gap-3 rounded-lg border border-border-subtle bg-canvas-elevated px-3 py-3 text-left transition-colors",
|
|
22
|
+
"hover:bg-canvas-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand",
|
|
23
|
+
o
|
|
24
|
+
),
|
|
25
|
+
onClick: l,
|
|
26
|
+
"aria-label": `${a}: ${r}`,
|
|
27
|
+
children: [
|
|
28
|
+
/* @__PURE__ */ e(
|
|
29
|
+
"span",
|
|
30
|
+
{
|
|
31
|
+
className: "flex h-9 w-9 shrink-0 items-center justify-center text-content-secondary",
|
|
32
|
+
"aria-hidden": "true",
|
|
33
|
+
children: u(i, { size: 22 })
|
|
34
|
+
}
|
|
35
|
+
),
|
|
36
|
+
/* @__PURE__ */ n("span", { className: "min-w-0 flex-1", children: [
|
|
37
|
+
/* @__PURE__ */ n("span", { className: "flex flex-wrap items-center gap-x-2 gap-y-1", children: [
|
|
38
|
+
/* @__PURE__ */ e("span", { className: "text-sm font-semibold leading-snug text-content", children: r }),
|
|
39
|
+
s ? /* @__PURE__ */ e(c, { variant: "subtle", color: "neutral", size: "sm", shape: "square", children: s }) : null
|
|
40
|
+
] }),
|
|
41
|
+
t ? /* @__PURE__ */ e("span", { className: "mt-1 block line-clamp-2 text-sm leading-relaxed text-content-secondary", children: t }) : null
|
|
42
|
+
] }),
|
|
43
|
+
/* @__PURE__ */ e(
|
|
44
|
+
d,
|
|
45
|
+
{
|
|
46
|
+
size: 16,
|
|
47
|
+
className: "shrink-0 text-content-tertiary",
|
|
48
|
+
"aria-hidden": "true"
|
|
49
|
+
}
|
|
50
|
+
)
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export {
|
|
56
|
+
v as HelpCenterGuideRow
|
|
57
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface HelpCenterGuideTypeIconProps {
|
|
3
|
+
size?: number;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare function GuidedTourGuideIcon({ size, className, }: HelpCenterGuideTypeIconProps): React.ReactElement;
|
|
7
|
+
export declare function WhatsNewGuideIcon({ size, className, }: HelpCenterGuideTypeIconProps): React.ReactElement;
|
|
8
|
+
export declare function HowToGuideIcon({ size, className, }: HelpCenterGuideTypeIconProps): React.ReactElement;
|
|
9
|
+
export declare function TipGuideIcon({ size, className, }: HelpCenterGuideTypeIconProps): React.ReactElement;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { jsxs as n, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import { cn as c } from "../../../../lib/utils.js";
|
|
4
|
+
import l from "./assets/whats-new-guide-icon.svg.js";
|
|
5
|
+
function t({
|
|
6
|
+
size: o = 20,
|
|
7
|
+
viewBox: e,
|
|
8
|
+
className: i,
|
|
9
|
+
children: u
|
|
10
|
+
}) {
|
|
11
|
+
return /* @__PURE__ */ r(
|
|
12
|
+
"svg",
|
|
13
|
+
{
|
|
14
|
+
width: o,
|
|
15
|
+
height: o,
|
|
16
|
+
viewBox: e,
|
|
17
|
+
fill: "none",
|
|
18
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
+
className: c("shrink-0", i),
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
children: u
|
|
22
|
+
}
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
function p({
|
|
26
|
+
size: o,
|
|
27
|
+
className: e
|
|
28
|
+
}) {
|
|
29
|
+
return /* @__PURE__ */ n(t, { size: o, viewBox: "0 0 24 24", className: e, children: [
|
|
30
|
+
/* @__PURE__ */ r("circle", { cx: "12", cy: "12", r: "9.5", stroke: "currentColor" }),
|
|
31
|
+
/* @__PURE__ */ r("circle", { cx: "12", cy: "12", r: "7.5", stroke: "currentColor" }),
|
|
32
|
+
/* @__PURE__ */ r("path", { d: "M4.5 12H6.5", stroke: "currentColor", strokeLinecap: "round" }),
|
|
33
|
+
/* @__PURE__ */ r("path", { d: "M17.5 12H19.5", stroke: "currentColor", strokeLinecap: "round" }),
|
|
34
|
+
/* @__PURE__ */ r("path", { d: "M12 4.5V6.5", stroke: "currentColor", strokeLinecap: "round" }),
|
|
35
|
+
/* @__PURE__ */ r("path", { d: "M12 17.5V19.5", stroke: "currentColor", strokeLinecap: "round" }),
|
|
36
|
+
/* @__PURE__ */ r(
|
|
37
|
+
"path",
|
|
38
|
+
{
|
|
39
|
+
d: "M8.54333 8.60832L10.492 13.4801C10.4971 13.4928 10.5072 13.5029 10.5199 13.508L15.3917 15.4567C15.4325 15.473 15.473 15.4325 15.4567 15.3917L13.508 10.5199C13.5029 10.5072 13.4928 10.4971 13.4801 10.492L8.60832 8.54333C8.56751 8.527 8.527 8.56751 8.54333 8.60832Z",
|
|
40
|
+
stroke: "currentColor",
|
|
41
|
+
strokeLinecap: "round"
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
/* @__PURE__ */ r("path", { d: "M13 11L11 13", stroke: "currentColor", strokeLinecap: "round" })
|
|
45
|
+
] });
|
|
46
|
+
}
|
|
47
|
+
function k({
|
|
48
|
+
size: o = 20,
|
|
49
|
+
className: e
|
|
50
|
+
}) {
|
|
51
|
+
return /* @__PURE__ */ r(
|
|
52
|
+
"img",
|
|
53
|
+
{
|
|
54
|
+
src: l,
|
|
55
|
+
width: o,
|
|
56
|
+
height: o,
|
|
57
|
+
alt: "",
|
|
58
|
+
className: c("shrink-0", e),
|
|
59
|
+
"aria-hidden": "true"
|
|
60
|
+
}
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
function C({
|
|
64
|
+
size: o,
|
|
65
|
+
className: e
|
|
66
|
+
}) {
|
|
67
|
+
return /* @__PURE__ */ r(t, { size: o, viewBox: "0 0 32 32", className: e, children: /* @__PURE__ */ r(
|
|
68
|
+
"path",
|
|
69
|
+
{
|
|
70
|
+
d: "M28.25 2c-0-0.69-0.56-1.25-1.25-1.25h-4.964c-0.020-0.001-0.037-0.012-0.058-0.012h-7.957c-0.021 0-0.038 0.011-0.058 0.012h-6.763c-0.028-0.001-0.061-0.001-0.093-0.001-1.817 0-3.297 1.443-3.357 3.246l-0 0.005v24.389c0.114 1.606 1.445 2.867 3.070 2.867 0.063 0 0.126-0.002 0.188-0.006l-0.009 0h20c0.69 0 1.25-0.56 1.25-1.25s-0.56-1.25-1.25-1.25v0h-19.8c-0.024 0.002-0.051 0.004-0.079 0.004-0.441 0-0.807-0.325-0.871-0.749l-0.001-0.005v-1.223c0-0.090 0.266-0.361 0.746-0.361l20.004 0.057c0 0 0 0 0.001 0 0.515 0 0.956-0.311 1.148-0.756l0.003-0.008 0.007-0.034c0.056-0.132 0.089-0.286 0.092-0.447v-0.001l-0-0.002 0-0.002zM25.75 23.969l-14.5-0.041v-20.678h1.521v9.948c0 0.69 0.56 1.25 1.25 1.25 0.301 0 0.577-0.107 0.793-0.284l-0.002 0.002 3.195-2.614 3.189 2.552c0.212 0.171 0.484 0.274 0.781 0.274 0.691 0 1.25-0.56 1.25-1.25v0-9.877h2.521zM20.729 3.25v7.276l-1.947-1.559c-0.212-0.171-0.484-0.274-0.781-0.274-0.301 0-0.578 0.107-0.794 0.284l0.002-0.002-1.938 1.585v-7.312zM6.25 24v-20c0.064-0.429 0.43-0.754 0.871-0.754 0.028 0 0.055 0.001 0.082 0.004l-0.003-0h1.55v20.671l-1.75-0.005c-0.267 0.002-0.525 0.033-0.774 0.089l0.024-0.005z",
|
|
71
|
+
fill: "currentColor"
|
|
72
|
+
}
|
|
73
|
+
) });
|
|
74
|
+
}
|
|
75
|
+
function v({
|
|
76
|
+
size: o,
|
|
77
|
+
className: e
|
|
78
|
+
}) {
|
|
79
|
+
return /* @__PURE__ */ n(t, { size: o, viewBox: "0 0 24 24", className: e, children: [
|
|
80
|
+
/* @__PURE__ */ r(
|
|
81
|
+
"path",
|
|
82
|
+
{
|
|
83
|
+
d: "M9 18H15",
|
|
84
|
+
stroke: "currentColor",
|
|
85
|
+
strokeWidth: "1.5",
|
|
86
|
+
strokeLinecap: "round"
|
|
87
|
+
}
|
|
88
|
+
),
|
|
89
|
+
/* @__PURE__ */ r(
|
|
90
|
+
"path",
|
|
91
|
+
{
|
|
92
|
+
d: "M10 21H14",
|
|
93
|
+
stroke: "currentColor",
|
|
94
|
+
strokeWidth: "1.5",
|
|
95
|
+
strokeLinecap: "round"
|
|
96
|
+
}
|
|
97
|
+
),
|
|
98
|
+
/* @__PURE__ */ r(
|
|
99
|
+
"path",
|
|
100
|
+
{
|
|
101
|
+
d: "M12 3C8.68629 3 6 5.68629 6 9C6 10.6569 6.67157 12.1569 7.75736 13.2426C8.54301 14.0283 9 15.0609 9 16.2V17H15V16.2C15 15.0609 15.457 14.0283 16.2426 13.2426C17.3284 12.1569 18 10.6569 18 9C18 5.68629 15.3137 3 12 3Z",
|
|
102
|
+
stroke: "currentColor",
|
|
103
|
+
strokeWidth: "1.5",
|
|
104
|
+
strokeLinejoin: "round"
|
|
105
|
+
}
|
|
106
|
+
)
|
|
107
|
+
] });
|
|
108
|
+
}
|
|
109
|
+
export {
|
|
110
|
+
p as GuidedTourGuideIcon,
|
|
111
|
+
C as HowToGuideIcon,
|
|
112
|
+
v as TipGuideIcon,
|
|
113
|
+
k as WhatsNewGuideIcon
|
|
114
|
+
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HelpCenterHeaderProps } from './help-center.types';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
export declare function HelpCenterHeader({ title, children, className, }: HelpCenterHeaderProps): React.ReactElement;
|
|
3
|
+
export declare function HelpCenterHeader({ title, subtitle, children, className, }: HelpCenterHeaderProps): React.ReactElement;
|
|
@@ -1,34 +1,38 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as r, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { SheetTitle as
|
|
4
|
-
import { Button as
|
|
3
|
+
import { SheetTitle as l, SheetClose as c } from "../../../feedback/sheet/sheet.js";
|
|
4
|
+
import { Button as d } from "../../../primitives/button/button.js";
|
|
5
5
|
import { Cross as m } from "impact-nova-icons";
|
|
6
6
|
import { useImpactNovaI18n as p } from "../../../../i18n/use-impact-nova-i18n.js";
|
|
7
|
-
import { cn as
|
|
8
|
-
function
|
|
7
|
+
import { cn as h } from "../../../../lib/utils.js";
|
|
8
|
+
function y({
|
|
9
9
|
title: o,
|
|
10
|
-
|
|
10
|
+
subtitle: n,
|
|
11
|
+
children: s,
|
|
11
12
|
className: i
|
|
12
13
|
}) {
|
|
13
|
-
const { t:
|
|
14
|
-
return /* @__PURE__ */
|
|
14
|
+
const { t: a } = p(), t = o ?? a("helpCenter.title");
|
|
15
|
+
return /* @__PURE__ */ r(
|
|
15
16
|
"div",
|
|
16
17
|
{
|
|
17
18
|
"data-component": "guidance-help-center-header",
|
|
18
|
-
className:
|
|
19
|
-
"flex shrink-0 items-center justify-between gap-3 border-b bg-canvas-elevated px-4 py-
|
|
19
|
+
className: h(
|
|
20
|
+
"relative z-10 flex shrink-0 items-center justify-between gap-3 border-b border-border-subtle bg-canvas-elevated px-4 py-3 shadow-sm",
|
|
20
21
|
i
|
|
21
22
|
),
|
|
22
23
|
children: [
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
/* @__PURE__ */ r("div", { className: "min-w-0 flex-1", children: [
|
|
25
|
+
typeof t == "string" ? /* @__PURE__ */ e(l, { className: "text-lg font-bold text-content", children: t }) : t,
|
|
26
|
+
n ? /* @__PURE__ */ e("p", { className: "mt-0.5 text-xs leading-snug text-content-secondary", children: n }) : null
|
|
27
|
+
] }),
|
|
28
|
+
/* @__PURE__ */ r("div", { className: "flex shrink-0 items-center gap-2", children: [
|
|
29
|
+
s,
|
|
26
30
|
/* @__PURE__ */ e(c, { asChild: !0, children: /* @__PURE__ */ e(
|
|
27
|
-
|
|
31
|
+
d,
|
|
28
32
|
{
|
|
29
33
|
variant: "secondary",
|
|
30
34
|
size: "icon",
|
|
31
|
-
"aria-label":
|
|
35
|
+
"aria-label": a("aria.close"),
|
|
32
36
|
"data-component": "guidance-help-center-close",
|
|
33
37
|
children: /* @__PURE__ */ e(m, { className: "!h-3 !w-3" })
|
|
34
38
|
}
|
|
@@ -39,5 +43,5 @@ function C({
|
|
|
39
43
|
);
|
|
40
44
|
}
|
|
41
45
|
export {
|
|
42
|
-
|
|
46
|
+
y as HelpCenterHeader
|
|
43
47
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const HELP_CENTER_ALL_CATEGORY_VALUE = "all";
|
|
2
|
-
export declare const GUIDE_CARD_ESTIMATE_HEIGHT =
|
|
2
|
+
export declare const GUIDE_CARD_ESTIMATE_HEIGHT = 88;
|
|
3
3
|
export declare const GUIDE_LIST_ROW_GAP = 8;
|
|
4
4
|
/** Below this count, a simple list is rendered instead of windowing. */
|
|
5
5
|
export declare const GUIDE_LIST_VIRTUALIZATION_THRESHOLD = 12;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { HelpCenterBodyProps, HelpCenterCategoryTabsProps, HelpCenterContentProps, HelpCenterFooterProps, HelpCenterProps } from './help-center.types';
|
|
1
|
+
import { HelpCenterBodyProps, HelpCenterCategoryTabsProps, HelpCenterContentProps, HelpCenterFooterProps, HelpCenterProps, HelpCenterSupportFooterProps } from './help-center.types';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
export declare function HelpCenter({ open, onOpenChange, children, className, }: HelpCenterProps): React.ReactElement;
|
|
4
4
|
export declare function HelpCenterContent({ children, className, }: HelpCenterContentProps): React.ReactElement;
|
|
5
5
|
export declare function HelpCenterCategoryTabs({ categories, allCategoryLabel, className, }: HelpCenterCategoryTabsProps): React.ReactElement;
|
|
6
6
|
export declare function HelpCenterBody({ children, className, }: HelpCenterBodyProps): React.ReactElement;
|
|
7
7
|
export declare function HelpCenterFooter({ children, className, }: HelpCenterFooterProps): React.ReactElement;
|
|
8
|
+
export declare function HelpCenterSupportFooter({ ticketUrl, ticketLabel, message, }: HelpCenterSupportFooterProps): React.ReactElement;
|
|
8
9
|
export { HelpCenterHeader } from './help-center-header';
|
|
9
10
|
export { GuideCatalog } from './guide-catalog';
|
|
11
|
+
export { GuideCatalogSection } from './guide-catalog-section';
|
|
10
12
|
export type { GuideCatalogProps } from './help-center.types';
|
|
@@ -1,95 +1,118 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as e, jsxs as i } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { Sheet as m, SheetContent as d, SheetDescription as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
import { Sheet as m, SheetContent as d, SheetDescription as u, SheetBody as h, SheetFooter as f } from "../../../feedback/sheet/sheet.js";
|
|
4
|
+
import { Button as x } from "../../../primitives/button/button.js";
|
|
5
|
+
import { TabsList as v, TabsTrigger as p } from "../../../primitives/tabs/tabs.js";
|
|
6
|
+
import { useImpactNovaI18n as c } from "../../../../i18n/use-impact-nova-i18n.js";
|
|
7
|
+
import { cn as s } from "../../../../lib/utils.js";
|
|
8
|
+
import { HELP_CENTER_ALL_CATEGORY_VALUE as g } from "./help-center.constants.js";
|
|
9
|
+
function S({
|
|
10
|
+
open: t,
|
|
11
|
+
onOpenChange: r,
|
|
12
|
+
children: o,
|
|
13
|
+
className: n
|
|
13
14
|
}) {
|
|
14
|
-
const { t:
|
|
15
|
-
return /* @__PURE__ */
|
|
15
|
+
const { t: l } = c();
|
|
16
|
+
return /* @__PURE__ */ e(m, { open: t, onOpenChange: r, children: /* @__PURE__ */ i(
|
|
16
17
|
d,
|
|
17
18
|
{
|
|
18
19
|
"data-component": "guidance-help-center",
|
|
19
20
|
side: "right",
|
|
20
|
-
className:
|
|
21
|
+
className: s(
|
|
21
22
|
"w-full max-w-xl overflow-hidden sm:max-w-2xl",
|
|
22
|
-
|
|
23
|
+
n
|
|
23
24
|
),
|
|
24
25
|
children: [
|
|
25
|
-
/* @__PURE__ */
|
|
26
|
-
|
|
26
|
+
/* @__PURE__ */ e(u, { className: "sr-only", children: l("helpCenter.description") }),
|
|
27
|
+
o
|
|
27
28
|
]
|
|
28
29
|
}
|
|
29
30
|
) });
|
|
30
31
|
}
|
|
31
|
-
function
|
|
32
|
-
children:
|
|
33
|
-
className:
|
|
32
|
+
function j({
|
|
33
|
+
children: t,
|
|
34
|
+
className: r
|
|
34
35
|
}) {
|
|
35
|
-
return /* @__PURE__ */
|
|
36
|
+
return /* @__PURE__ */ e(
|
|
36
37
|
"div",
|
|
37
38
|
{
|
|
38
39
|
"data-component": "guidance-help-center-content",
|
|
39
|
-
className:
|
|
40
|
-
children:
|
|
40
|
+
className: s("flex h-full min-h-0 flex-col bg-canvas-elevated", r),
|
|
41
|
+
children: t
|
|
41
42
|
}
|
|
42
43
|
);
|
|
43
44
|
}
|
|
44
45
|
function E({
|
|
45
|
-
categories:
|
|
46
|
-
allCategoryLabel:
|
|
47
|
-
className:
|
|
46
|
+
categories: t,
|
|
47
|
+
allCategoryLabel: r,
|
|
48
|
+
className: o
|
|
48
49
|
}) {
|
|
49
|
-
const { t:
|
|
50
|
-
return /* @__PURE__ */
|
|
50
|
+
const { t: n } = c(), l = r ?? n("helpCenter.allCategory");
|
|
51
|
+
return /* @__PURE__ */ e(
|
|
51
52
|
"div",
|
|
52
53
|
{
|
|
53
54
|
"data-component": "guidance-help-center-toolbar",
|
|
54
|
-
className:
|
|
55
|
+
className: s(
|
|
55
56
|
"guidance-help-center-toolbar relative z-10 shrink-0 bg-canvas-elevated px-4 pb-3 pt-3",
|
|
56
|
-
|
|
57
|
+
o
|
|
57
58
|
),
|
|
58
|
-
children: /* @__PURE__ */
|
|
59
|
-
/* @__PURE__ */
|
|
60
|
-
|
|
59
|
+
children: /* @__PURE__ */ i(v, { className: "h-auto w-full max-w-full flex-nowrap justify-start gap-1 overflow-x-auto p-1", children: [
|
|
60
|
+
/* @__PURE__ */ e(p, { value: g, children: l }),
|
|
61
|
+
t.map((a) => /* @__PURE__ */ e(p, { value: a.id, children: a.label }, a.id))
|
|
61
62
|
] })
|
|
62
63
|
}
|
|
63
64
|
);
|
|
64
65
|
}
|
|
65
|
-
function
|
|
66
|
-
children:
|
|
67
|
-
className:
|
|
66
|
+
function _({
|
|
67
|
+
children: t,
|
|
68
|
+
className: r
|
|
68
69
|
}) {
|
|
69
|
-
return /* @__PURE__ */
|
|
70
|
-
|
|
70
|
+
return /* @__PURE__ */ e(
|
|
71
|
+
h,
|
|
71
72
|
{
|
|
72
|
-
className:
|
|
73
|
-
children:
|
|
73
|
+
className: s("flex min-h-0 flex-1 flex-col overflow-hidden p-0", r),
|
|
74
|
+
children: t
|
|
74
75
|
}
|
|
75
76
|
);
|
|
76
77
|
}
|
|
77
|
-
function
|
|
78
|
-
children:
|
|
79
|
-
className:
|
|
78
|
+
function b({
|
|
79
|
+
children: t,
|
|
80
|
+
className: r
|
|
80
81
|
}) {
|
|
81
|
-
return /* @__PURE__ */
|
|
82
|
-
|
|
82
|
+
return /* @__PURE__ */ e(
|
|
83
|
+
f,
|
|
83
84
|
{
|
|
84
|
-
className:
|
|
85
|
-
|
|
85
|
+
className: s(
|
|
86
|
+
"mt-auto shrink-0 justify-start border-t border-stroke-hairline bg-canvas-elevated px-4 py-3",
|
|
87
|
+
r
|
|
88
|
+
),
|
|
89
|
+
children: t
|
|
86
90
|
}
|
|
87
91
|
);
|
|
88
92
|
}
|
|
93
|
+
function A({
|
|
94
|
+
ticketUrl: t,
|
|
95
|
+
ticketLabel: r,
|
|
96
|
+
message: o
|
|
97
|
+
}) {
|
|
98
|
+
const { t: n } = c(), l = o ?? n("helpCenter.supportFooterMessage"), a = r ?? n("helpCenter.supportTicketLabel");
|
|
99
|
+
return /* @__PURE__ */ e(b, { children: /* @__PURE__ */ i(
|
|
100
|
+
"div",
|
|
101
|
+
{
|
|
102
|
+
"data-component": "guidance-help-center-support-footer",
|
|
103
|
+
className: "flex w-full flex-col gap-3 sm:flex-row sm:items-center sm:justify-between",
|
|
104
|
+
children: [
|
|
105
|
+
/* @__PURE__ */ e("p", { className: "text-sm font-semibold leading-snug text-content", children: l }),
|
|
106
|
+
/* @__PURE__ */ e(x, { variant: "outline", size: "sm", className: "shrink-0 sm:ms-auto", asChild: !0, children: /* @__PURE__ */ e("a", { href: t, target: "_blank", rel: "noopener noreferrer", children: a }) })
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
) });
|
|
110
|
+
}
|
|
89
111
|
export {
|
|
90
|
-
|
|
91
|
-
|
|
112
|
+
S as HelpCenter,
|
|
113
|
+
_ as HelpCenterBody,
|
|
92
114
|
E as HelpCenterCategoryTabs,
|
|
93
|
-
|
|
94
|
-
|
|
115
|
+
j as HelpCenterContent,
|
|
116
|
+
b as HelpCenterFooter,
|
|
117
|
+
A as HelpCenterSupportFooter
|
|
95
118
|
};
|
|
@@ -13,6 +13,7 @@ export interface HelpCenterContentProps {
|
|
|
13
13
|
}
|
|
14
14
|
export interface HelpCenterHeaderProps {
|
|
15
15
|
title?: React.ReactNode;
|
|
16
|
+
subtitle?: React.ReactNode;
|
|
16
17
|
children?: React.ReactNode;
|
|
17
18
|
className?: string;
|
|
18
19
|
}
|
|
@@ -29,11 +30,18 @@ export interface HelpCenterFooterProps {
|
|
|
29
30
|
children?: React.ReactNode;
|
|
30
31
|
className?: string;
|
|
31
32
|
}
|
|
33
|
+
export interface HelpCenterSupportFooterProps {
|
|
34
|
+
ticketUrl: string;
|
|
35
|
+
ticketLabel?: string;
|
|
36
|
+
message?: string;
|
|
37
|
+
}
|
|
32
38
|
export interface GuideCatalogProps {
|
|
33
39
|
guides: GuideManifest[];
|
|
34
40
|
onLaunchGuide: (guideId: string) => void;
|
|
35
41
|
replayLabel?: string;
|
|
42
|
+
getLaunchLabel?: (guide: GuideManifest) => string;
|
|
43
|
+
getGuideTypeLabel?: (guide: GuideManifest) => string;
|
|
36
44
|
emptyStateMessage?: string;
|
|
37
|
-
|
|
45
|
+
scrollable?: boolean;
|
|
38
46
|
className?: string;
|
|
39
47
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { GuideType } from '../../../../lib/guidance';
|
|
2
|
+
import { HelpCenterGuideTypeIconProps } from './help-center-guide-type-icons';
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
export declare function renderHelpCenterGuideTypeIcon(guideType: GuideType, iconProps?: HelpCenterGuideTypeIconProps): React.ReactElement;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import { GuidedTourGuideIcon as u, TipGuideIcon as o, HowToGuideIcon as n, WhatsNewGuideIcon as i } from "./help-center-guide-type-icons.js";
|
|
4
|
+
function w(r, e) {
|
|
5
|
+
switch (r) {
|
|
6
|
+
case "whats-new":
|
|
7
|
+
return /* @__PURE__ */ t(i, { ...e });
|
|
8
|
+
case "how-to":
|
|
9
|
+
return /* @__PURE__ */ t(n, { ...e });
|
|
10
|
+
case "tip":
|
|
11
|
+
return /* @__PURE__ */ t(o, { ...e });
|
|
12
|
+
default:
|
|
13
|
+
return /* @__PURE__ */ t(u, { ...e });
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export {
|
|
17
|
+
w as renderHelpCenterGuideTypeIcon
|
|
18
|
+
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export { HelpCenter, HelpCenterContent, HelpCenterHeader, HelpCenterCategoryTabs, HelpCenterBody, HelpCenterFooter, GuideCatalog, } from './help-center/help-center';
|
|
1
|
+
export { HelpCenter, HelpCenterContent, HelpCenterHeader, HelpCenterCategoryTabs, HelpCenterBody, HelpCenterFooter, HelpCenterSupportFooter, GuideCatalog, GuideCatalogSection, } from './help-center/help-center';
|
|
2
2
|
export { filterHelpCenterGuides } from './help-center/filter-help-center-guides';
|
|
3
3
|
export { HELP_CENTER_ALL_CATEGORY_VALUE } from './help-center/help-center.constants';
|
|
4
|
+
export { getHelpCenterGuideLaunchLabel, getHelpCenterGuideStepCountLabel, getHelpCenterGuideTypeLabel, } from './help-center/help-center-guide-labels';
|
|
5
|
+
export { resolveGuideType } from './help-center/guide-catalog-utils';
|
|
4
6
|
export { useHelpCenter, formatHelpCenterCategoryLabel } from './hooks/use-help-center';
|
|
5
|
-
export type { HelpCenterProps, HelpCenterContentProps, HelpCenterHeaderProps, HelpCenterCategoryTabsProps, HelpCenterBodyProps, HelpCenterFooterProps, GuideCatalogProps, } from './help-center/help-center.types';
|
|
7
|
+
export type { HelpCenterProps, HelpCenterContentProps, HelpCenterHeaderProps, HelpCenterCategoryTabsProps, HelpCenterBodyProps, HelpCenterFooterProps, HelpCenterSupportFooterProps, GuideCatalogProps, } from './help-center/help-center.types';
|
|
6
8
|
export type { HelpCenterCategory } from './hooks/use-help-center';
|
|
@@ -1,19 +1,28 @@
|
|
|
1
|
-
import { HelpCenter as t, HelpCenterBody as o, HelpCenterCategoryTabs as p, HelpCenterContent as
|
|
2
|
-
import { filterHelpCenterGuides as
|
|
3
|
-
import { HELP_CENTER_ALL_CATEGORY_VALUE as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
1
|
+
import { HelpCenter as t, HelpCenterBody as o, HelpCenterCategoryTabs as p, HelpCenterContent as l, HelpCenterFooter as C, HelpCenterSupportFooter as n } from "./help-center/help-center.js";
|
|
2
|
+
import { filterHelpCenterGuides as a } from "./help-center/filter-help-center-guides.js";
|
|
3
|
+
import { HELP_CENTER_ALL_CATEGORY_VALUE as u } from "./help-center/help-center.constants.js";
|
|
4
|
+
import { getHelpCenterGuideLaunchLabel as d, getHelpCenterGuideStepCountLabel as i, getHelpCenterGuideTypeLabel as x } from "./help-center/help-center-guide-labels.js";
|
|
5
|
+
import { resolveGuideType as G } from "./help-center/guide-catalog-utils.js";
|
|
6
|
+
import { formatHelpCenterCategoryLabel as b, useHelpCenter as y } from "./hooks/use-help-center.js";
|
|
7
|
+
import { GuideCatalog as T } from "./help-center/guide-catalog.js";
|
|
8
|
+
import { GuideCatalogSection as _ } from "./help-center/guide-catalog-section.js";
|
|
9
|
+
import { HelpCenterHeader as S } from "./help-center/help-center-header.js";
|
|
7
10
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
T as GuideCatalog,
|
|
12
|
+
_ as GuideCatalogSection,
|
|
13
|
+
u as HELP_CENTER_ALL_CATEGORY_VALUE,
|
|
10
14
|
t as HelpCenter,
|
|
11
15
|
o as HelpCenterBody,
|
|
12
16
|
p as HelpCenterCategoryTabs,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
l as HelpCenterContent,
|
|
18
|
+
C as HelpCenterFooter,
|
|
19
|
+
S as HelpCenterHeader,
|
|
20
|
+
n as HelpCenterSupportFooter,
|
|
21
|
+
a as filterHelpCenterGuides,
|
|
22
|
+
b as formatHelpCenterCategoryLabel,
|
|
23
|
+
d as getHelpCenterGuideLaunchLabel,
|
|
24
|
+
i as getHelpCenterGuideStepCountLabel,
|
|
25
|
+
x as getHelpCenterGuideTypeLabel,
|
|
26
|
+
G as resolveGuideType,
|
|
27
|
+
y as useHelpCenter
|
|
19
28
|
};
|