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
|
@@ -1,68 +1,66 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as d } from "react/jsx-runtime";
|
|
2
2
|
import { useMemo as c } from "react";
|
|
3
3
|
import { SetToEmptyWrapper as u } from "./SetToEmptyWrapper.js";
|
|
4
4
|
import { ObjectFieldRenderer as T } from "./ObjectFieldRenderer.js";
|
|
5
5
|
import { ArrayFieldRenderer as b } from "./ArrayFieldRenderer.js";
|
|
6
6
|
import { buildFieldPath as v } from "../utils/fieldPath.utils.js";
|
|
7
7
|
import { renderRegisteredField as E } from "../registry/resolveFieldComponent.js";
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
R();
|
|
12
|
-
const g = ({
|
|
8
|
+
import { buildFieldValidationRules as R } from "../utils/buildFieldValidationRules.js";
|
|
9
|
+
import { buildEvaluateFieldValidationOptions as S } from "../utils/evaluateFieldValidation.js";
|
|
10
|
+
const $ = ({
|
|
13
11
|
field: e,
|
|
14
12
|
formHelpers: o,
|
|
15
13
|
isVisible: s,
|
|
16
|
-
disabled:
|
|
17
|
-
formConfig:
|
|
18
|
-
supportedValues:
|
|
14
|
+
disabled: a,
|
|
15
|
+
formConfig: n,
|
|
16
|
+
supportedValues: r,
|
|
19
17
|
fieldPathPrefix: i
|
|
20
18
|
}) => {
|
|
21
19
|
const t = c(
|
|
22
20
|
() => i ? { ...e, id: v(e.id, i) } : e,
|
|
23
21
|
[e, i]
|
|
24
|
-
),
|
|
22
|
+
), p = c(() => R(
|
|
25
23
|
t,
|
|
26
|
-
|
|
24
|
+
S(o, t.id)
|
|
27
25
|
), [t, o]);
|
|
28
26
|
if (!s)
|
|
29
27
|
return null;
|
|
30
28
|
if (e.fieldType === "object")
|
|
31
|
-
return /* @__PURE__ */
|
|
29
|
+
return /* @__PURE__ */ d(
|
|
32
30
|
T,
|
|
33
31
|
{
|
|
34
32
|
field: e,
|
|
35
33
|
fieldPathPrefix: i,
|
|
36
34
|
formHelpers: o,
|
|
37
|
-
formConfig:
|
|
38
|
-
supportedValues:
|
|
35
|
+
formConfig: n,
|
|
36
|
+
supportedValues: r
|
|
39
37
|
}
|
|
40
38
|
);
|
|
41
39
|
if (e.fieldType === "array")
|
|
42
|
-
return /* @__PURE__ */
|
|
40
|
+
return /* @__PURE__ */ d(
|
|
43
41
|
b,
|
|
44
42
|
{
|
|
45
43
|
field: e,
|
|
46
44
|
fieldPathPrefix: i,
|
|
47
45
|
formHelpers: o,
|
|
48
|
-
formConfig:
|
|
49
|
-
supportedValues:
|
|
46
|
+
formConfig: n,
|
|
47
|
+
supportedValues: r
|
|
50
48
|
}
|
|
51
49
|
);
|
|
52
|
-
const l = !!t.allowSetToEmpty && o.setToEmptyFields.has(t.id), y =
|
|
50
|
+
const l = !!t.allowSetToEmpty && o.setToEmptyFields.has(t.id), y = a || l, F = {
|
|
53
51
|
field: l ? { ...t, placeholder: "Set to empty" } : t,
|
|
54
52
|
formHelpers: o,
|
|
55
|
-
validationRules:
|
|
53
|
+
validationRules: p,
|
|
56
54
|
isDisabled: y,
|
|
57
|
-
formConfig:
|
|
58
|
-
supportedValues:
|
|
55
|
+
formConfig: n,
|
|
56
|
+
supportedValues: r
|
|
59
57
|
}, m = E(
|
|
60
58
|
e.fieldType,
|
|
61
59
|
F,
|
|
62
60
|
o.formContext?.customFieldTypes
|
|
63
61
|
);
|
|
64
|
-
return /* @__PURE__ */
|
|
62
|
+
return /* @__PURE__ */ d("div", { className: `col-span-${t.colSpan || 1}`, children: t.allowSetToEmpty ? /* @__PURE__ */ d(u, { fieldId: t.id, formHelpers: o, children: m }) : m });
|
|
65
63
|
};
|
|
66
64
|
export {
|
|
67
|
-
|
|
65
|
+
$ as FieldRenderer
|
|
68
66
|
};
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/**
|
|
2
|
+
* Register all 23 built-in field types. Safe to call multiple times — runs once.
|
|
3
|
+
*
|
|
4
|
+
* Consumers must call this at app startup (or use `registerFieldType` selectively)
|
|
5
|
+
* before rendering any `FieldRenderer` / `ReactHooksForm`.
|
|
6
|
+
*
|
|
7
|
+
* The `rich_text` field type requires optional peer deps: `lexical`, `@lexical/react`.
|
|
8
|
+
* If you don't need rich text, register fields selectively to avoid the dependency.
|
|
9
|
+
*/
|
|
2
10
|
export declare function registerDefaultFieldTypes(): void;
|
|
@@ -2,8 +2,8 @@ import { registerFieldType as e } from "./fieldRegistry.js";
|
|
|
2
2
|
import { SelectField as r } from "../Fields/SelectField.js";
|
|
3
3
|
import { ButtonsGroupField as o } from "../Fields/ButtonsGroupField.js";
|
|
4
4
|
import { RadioField as t } from "../Fields/RadioField.js";
|
|
5
|
-
import { TextField as
|
|
6
|
-
import { TextAreaField as
|
|
5
|
+
import { TextField as l } from "../Fields/TextField.js";
|
|
6
|
+
import { TextAreaField as m } from "../Fields/TextAreaField.js";
|
|
7
7
|
import { DateRangeField as d } from "../Fields/DateRangeField.js";
|
|
8
8
|
import { DateInputField as p } from "../Fields/DateInputField.js";
|
|
9
9
|
import { WeekRangeField as a } from "../Fields/WeekRangePicker.js";
|
|
@@ -13,20 +13,19 @@ import { MultiMonthPickerField as _ } from "../Fields/MultiMonthPickerField.js";
|
|
|
13
13
|
import { FileUploadField as n } from "../Fields/FileUploadField.js";
|
|
14
14
|
import { FillFormByPasteField as c } from "../Fields/FillFormByPasteField.js";
|
|
15
15
|
import { FillFormByFileUploadField as u } from "../Fields/FillFormByFileUploadField.js";
|
|
16
|
-
import { ChipsField as
|
|
17
|
-
import { TextFieldWithBackendValidation as
|
|
16
|
+
import { ChipsField as b } from "../Fields/ChipsField.js";
|
|
17
|
+
import { TextFieldWithBackendValidation as h } from "../Fields/TextFieldWithBackendValidation.js";
|
|
18
18
|
import { SwitchField as s } from "../Fields/SwitchField.js";
|
|
19
|
-
import { CheckboxField as
|
|
20
|
-
import { LabelField as
|
|
21
|
-
import { DividerField as
|
|
19
|
+
import { CheckboxField as g } from "../Fields/CheckboxField.js";
|
|
20
|
+
import { LabelField as k } from "../Fields/LabelField.js";
|
|
21
|
+
import { DividerField as x } from "../Fields/DividerField.js";
|
|
22
22
|
import { DividerWithLabelField as w } from "../Fields/DividerWithLabelField.js";
|
|
23
23
|
import { NumericComboboxField as y } from "../Fields/NumericComboboxField.js";
|
|
24
|
-
import { SliderRangeField as
|
|
25
|
-
import { RichTextField as T } from "../Fields/RichTextField.js";
|
|
24
|
+
import { SliderRangeField as v } from "../Fields/SliderRangeField.js";
|
|
26
25
|
let i = !1;
|
|
27
|
-
function
|
|
28
|
-
i || (i = !0, e("divider",
|
|
26
|
+
function Q() {
|
|
27
|
+
i || (i = !0, e("divider", x), e("divider_with_label", w), e("label", k), e("select", r), e("button_group", o), e("radio", t), e("text", l), e("numeric_combobox", y), e("text_area", m), e("date", p), e("date_range", d), e("week_range", a), e("multi_week_picker", F), e("month_range", f), e("multi_month_picker", _), e("file_upload", n), e("fill_form_by_paste", c), e("fill_form_by_file_upload", u), e("chips", b), e("text_with_backend_validation", h), e("switch", s), e("checkbox", g), e("slider_range", v));
|
|
29
28
|
}
|
|
30
29
|
export {
|
|
31
|
-
|
|
30
|
+
Q as registerDefaultFieldTypes
|
|
32
31
|
};
|
|
@@ -2,8 +2,9 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { FieldType } from '../types/fields.types';
|
|
3
3
|
import { CustomFieldTypesMap, FormFieldProps } from '../types/reactHookForm.types';
|
|
4
4
|
/**
|
|
5
|
-
* Renders a
|
|
6
|
-
*
|
|
5
|
+
* Renders a registered field. Looks up from instance overrides first, then
|
|
6
|
+
* the global field registry populated by `registerDefaultFieldTypes()` or
|
|
7
|
+
* individual `registerFieldType()` calls.
|
|
7
8
|
*/
|
|
8
9
|
export declare function renderRegisteredField(fieldType: FieldType | string, commonProps: FormFieldProps, instanceOverrides?: CustomFieldTypesMap): ReactNode;
|
|
9
10
|
/** @deprecated Use {@link renderRegisteredField} — returns element, not component type. */
|
|
@@ -1,137 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import { ChipsField as _ } from "../Fields/ChipsField.js";
|
|
7
|
-
import { DateInputField as s } from "../Fields/DateInputField.js";
|
|
8
|
-
import { DateRangeField as f } from "../Fields/DateRangeField.js";
|
|
9
|
-
import { DividerField as o } from "../Fields/DividerField.js";
|
|
10
|
-
import { DividerWithLabelField as F } from "../Fields/DividerWithLabelField.js";
|
|
11
|
-
import { FileUploadField as m } from "../Fields/FileUploadField.js";
|
|
12
|
-
import { FillFormByFileUploadField as b } from "../Fields/FillFormByFileUploadField.js";
|
|
13
|
-
import { FillFormByPasteField as h } from "../Fields/FillFormByPasteField.js";
|
|
14
|
-
import { LabelField as p } from "../Fields/LabelField.js";
|
|
15
|
-
import { MonthRangeField as k } from "../Fields/MonthRangeField.js";
|
|
16
|
-
import { MultiMonthPickerField as x } from "../Fields/MultiMonthPickerField.js";
|
|
17
|
-
import { MultiWeekPickerField as g } from "../Fields/MultiWeekPickerField.js";
|
|
18
|
-
import { NumericComboboxField as w } from "../Fields/NumericComboboxField.js";
|
|
19
|
-
import { RadioField as v } from "../Fields/RadioField.js";
|
|
20
|
-
import { SelectField as C } from "../Fields/SelectField.js";
|
|
21
|
-
import { SwitchField as R } from "../Fields/SwitchField.js";
|
|
22
|
-
import { TextAreaField as B } from "../Fields/TextAreaField.js";
|
|
23
|
-
import { TextField as D } from "../Fields/TextField.js";
|
|
24
|
-
import { TextFieldWithBackendValidation as M } from "../Fields/TextFieldWithBackendValidation.js";
|
|
25
|
-
import { WeekRangeField as W } from "../Fields/WeekRangePicker.js";
|
|
26
|
-
function re(t, e, i) {
|
|
27
|
-
const a = i?.[t];
|
|
28
|
-
if (a)
|
|
29
|
-
return u(a, e);
|
|
30
|
-
switch (t) {
|
|
31
|
-
case "divider":
|
|
32
|
-
return /* @__PURE__ */ r(o, { ...e });
|
|
33
|
-
case "divider_with_label":
|
|
34
|
-
return /* @__PURE__ */ r(F, { ...e });
|
|
35
|
-
case "label":
|
|
36
|
-
return /* @__PURE__ */ r(p, { ...e });
|
|
37
|
-
case "select":
|
|
38
|
-
return /* @__PURE__ */ r(C, { ...e });
|
|
39
|
-
case "button_group":
|
|
40
|
-
return /* @__PURE__ */ r(c, { ...e });
|
|
41
|
-
case "radio":
|
|
42
|
-
return /* @__PURE__ */ r(v, { ...e });
|
|
43
|
-
case "text":
|
|
44
|
-
return /* @__PURE__ */ r(D, { ...e });
|
|
45
|
-
case "numeric_combobox":
|
|
46
|
-
return /* @__PURE__ */ r(w, { ...e });
|
|
47
|
-
case "text_area":
|
|
48
|
-
return /* @__PURE__ */ r(B, { ...e });
|
|
49
|
-
case "date":
|
|
50
|
-
return /* @__PURE__ */ r(s, { ...e });
|
|
51
|
-
case "date_range":
|
|
52
|
-
return /* @__PURE__ */ r(f, { ...e });
|
|
53
|
-
case "week_range":
|
|
54
|
-
return /* @__PURE__ */ r(W, { ...e });
|
|
55
|
-
case "multi_week_picker":
|
|
56
|
-
return /* @__PURE__ */ r(g, { ...e });
|
|
57
|
-
case "month_range":
|
|
58
|
-
return /* @__PURE__ */ r(k, { ...e });
|
|
59
|
-
case "multi_month_picker":
|
|
60
|
-
return /* @__PURE__ */ r(x, { ...e });
|
|
61
|
-
case "file_upload":
|
|
62
|
-
return /* @__PURE__ */ r(m, { ...e });
|
|
63
|
-
case "fill_form_by_paste":
|
|
64
|
-
return /* @__PURE__ */ r(h, { ...e });
|
|
65
|
-
case "fill_form_by_file_upload":
|
|
66
|
-
return /* @__PURE__ */ r(b, { ...e });
|
|
67
|
-
case "chips":
|
|
68
|
-
return /* @__PURE__ */ r(_, { ...e });
|
|
69
|
-
case "text_with_backend_validation":
|
|
70
|
-
return /* @__PURE__ */ r(M, { ...e });
|
|
71
|
-
case "switch":
|
|
72
|
-
return /* @__PURE__ */ r(R, { ...e });
|
|
73
|
-
case "checkbox":
|
|
74
|
-
return /* @__PURE__ */ r(d, { ...e });
|
|
75
|
-
default: {
|
|
76
|
-
const l = n(t);
|
|
77
|
-
return l ? u(l, e) : null;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
1
|
+
import { createElement as m } from "react";
|
|
2
|
+
import { getFieldComponent as t } from "./fieldRegistry.js";
|
|
3
|
+
function l(e, n, r) {
|
|
4
|
+
const o = r?.[e] ?? t(e);
|
|
5
|
+
return o ? m(o, n) : null;
|
|
80
6
|
}
|
|
81
|
-
function
|
|
82
|
-
|
|
83
|
-
if (i)
|
|
84
|
-
return i;
|
|
85
|
-
switch (t) {
|
|
86
|
-
case "divider":
|
|
87
|
-
return o;
|
|
88
|
-
case "divider_with_label":
|
|
89
|
-
return F;
|
|
90
|
-
case "label":
|
|
91
|
-
return p;
|
|
92
|
-
case "select":
|
|
93
|
-
return C;
|
|
94
|
-
case "button_group":
|
|
95
|
-
return c;
|
|
96
|
-
case "radio":
|
|
97
|
-
return v;
|
|
98
|
-
case "text":
|
|
99
|
-
return D;
|
|
100
|
-
case "numeric_combobox":
|
|
101
|
-
return w;
|
|
102
|
-
case "text_area":
|
|
103
|
-
return B;
|
|
104
|
-
case "date":
|
|
105
|
-
return s;
|
|
106
|
-
case "date_range":
|
|
107
|
-
return f;
|
|
108
|
-
case "week_range":
|
|
109
|
-
return W;
|
|
110
|
-
case "multi_week_picker":
|
|
111
|
-
return g;
|
|
112
|
-
case "month_range":
|
|
113
|
-
return k;
|
|
114
|
-
case "multi_month_picker":
|
|
115
|
-
return x;
|
|
116
|
-
case "file_upload":
|
|
117
|
-
return m;
|
|
118
|
-
case "fill_form_by_paste":
|
|
119
|
-
return h;
|
|
120
|
-
case "fill_form_by_file_upload":
|
|
121
|
-
return b;
|
|
122
|
-
case "chips":
|
|
123
|
-
return _;
|
|
124
|
-
case "text_with_backend_validation":
|
|
125
|
-
return M;
|
|
126
|
-
case "switch":
|
|
127
|
-
return R;
|
|
128
|
-
case "checkbox":
|
|
129
|
-
return d;
|
|
130
|
-
default:
|
|
131
|
-
return n(t);
|
|
132
|
-
}
|
|
7
|
+
function u(e, n) {
|
|
8
|
+
return n?.[e] ?? t(e);
|
|
133
9
|
}
|
|
134
10
|
export {
|
|
135
|
-
|
|
136
|
-
|
|
11
|
+
l as renderRegisteredField,
|
|
12
|
+
u as resolveFieldComponent
|
|
137
13
|
};
|
|
@@ -157,6 +157,11 @@ export type DateInputField = BaseField & {
|
|
|
157
157
|
pastDateNotAllowed?: boolean;
|
|
158
158
|
dateValidationMessages?: DateInputValidationMessages;
|
|
159
159
|
showFooter?: boolean;
|
|
160
|
+
calendarKind?: "gregorian" | "fiscal";
|
|
161
|
+
fiscalMode?: "basic" | "advanced" | "custom";
|
|
162
|
+
fiscalYearStartMonth?: number;
|
|
163
|
+
fiscalMonthPattern?: number[];
|
|
164
|
+
showPresets?: boolean;
|
|
160
165
|
};
|
|
161
166
|
export type DateRangeField = BaseField & {
|
|
162
167
|
fieldType: "date_range";
|
|
@@ -182,6 +187,11 @@ export type DateRangeField = BaseField & {
|
|
|
182
187
|
startMonth?: string;
|
|
183
188
|
/** ISO date string — last month shown in picker navigation */
|
|
184
189
|
endMonth?: string;
|
|
190
|
+
calendarKind?: "gregorian" | "fiscal";
|
|
191
|
+
fiscalMode?: "basic" | "advanced" | "custom";
|
|
192
|
+
fiscalYearStartMonth?: number;
|
|
193
|
+
fiscalMonthPattern?: number[];
|
|
194
|
+
showPresets?: boolean;
|
|
185
195
|
};
|
|
186
196
|
export type WeekRangeField = BaseField & {
|
|
187
197
|
fieldType: "week_range";
|
|
@@ -189,7 +199,7 @@ export type WeekRangeField = BaseField & {
|
|
|
189
199
|
maxDate?: string;
|
|
190
200
|
/** Minimum selectable start date = today + N days (0 = today, blocks past dates). */
|
|
191
201
|
minStartOffsetDays?: number;
|
|
192
|
-
/** When true,
|
|
202
|
+
/** When true, blocks weeks before the current week (minDate = current week start). */
|
|
193
203
|
disablePastWeeks?: boolean;
|
|
194
204
|
/** First month shown in the picker navigation (ISO date string). */
|
|
195
205
|
startMonth?: string;
|
|
@@ -199,17 +209,17 @@ export type WeekRangeField = BaseField & {
|
|
|
199
209
|
start: string;
|
|
200
210
|
end: string;
|
|
201
211
|
};
|
|
202
|
-
|
|
212
|
+
calendarKind?: "gregorian" | "fiscal";
|
|
203
213
|
fiscalMode?: "basic" | "advanced" | "custom";
|
|
204
214
|
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
205
|
-
|
|
215
|
+
granularity?: "day" | "week" | "period" | "quarter" | "year";
|
|
206
216
|
fiscalMonthPattern?: number[];
|
|
207
217
|
fiscalYearStartMonth?: number;
|
|
208
218
|
showFooter?: boolean;
|
|
209
219
|
format?: string;
|
|
210
|
-
/**
|
|
220
|
+
/** Earliest week: week start of the week N weeks before the current week (0 = current week). */
|
|
211
221
|
minWeeksOffset?: number;
|
|
212
|
-
/**
|
|
222
|
+
/** Latest week: week end of the week N weeks after the current week. */
|
|
213
223
|
maxWeeksOffset?: number;
|
|
214
224
|
dateFormat?: string;
|
|
215
225
|
};
|
|
@@ -217,10 +227,10 @@ export type MultiWeekRangeField = BaseField & {
|
|
|
217
227
|
fieldType: "multi_week_picker";
|
|
218
228
|
minDate?: string;
|
|
219
229
|
maxDate?: string;
|
|
220
|
-
|
|
230
|
+
calendarKind?: "gregorian" | "fiscal";
|
|
221
231
|
fiscalMode?: "basic" | "advanced" | "custom";
|
|
222
232
|
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
223
|
-
|
|
233
|
+
granularity?: "day" | "week" | "period" | "quarter" | "year";
|
|
224
234
|
fiscalMonthPattern?: number[];
|
|
225
235
|
};
|
|
226
236
|
export type MonthRangeField = BaseField & {
|
|
@@ -245,6 +255,11 @@ export type MonthRangeField = BaseField & {
|
|
|
245
255
|
value: string;
|
|
246
256
|
}>;
|
|
247
257
|
isOutsideRange?: (month: Date) => boolean;
|
|
258
|
+
calendarKind?: "gregorian" | "fiscal";
|
|
259
|
+
fiscalMode?: "basic" | "advanced" | "custom";
|
|
260
|
+
fiscalYearStartMonth?: number;
|
|
261
|
+
fiscalMonthPattern?: number[];
|
|
262
|
+
showPresets?: boolean;
|
|
248
263
|
};
|
|
249
264
|
export type MultiMonthPickerField = BaseField & {
|
|
250
265
|
fieldType: "multi_month_picker";
|
|
@@ -19,13 +19,15 @@ export declare function handleDateFnsFormat(configFormat?: string): string;
|
|
|
19
19
|
export declare function formatDateByConfigFormat(d: Date, df?: string): string;
|
|
20
20
|
export declare function startOfDayDate(d: Date): Date;
|
|
21
21
|
export declare function addDaysDate(d: Date, n: number): Date;
|
|
22
|
+
type WeekRangeBoundsField = Pick<WeekRangeField, "minDate" | "maxDate" | "minStartOffsetDays" | "disablePastWeeks" | "minWeeksOffset" | "maxWeeksOffset" | "startMonth" | "endMonth" | "calendarKind" | "fiscalMode" | "granularity" | "fiscalMonthPattern" | "fiscalYearStartMonth" | "weekStartsOn">;
|
|
22
23
|
export declare const handleMinMaxProp: (dateRangeField: DateRangeField) => {
|
|
23
24
|
minDate: Date | undefined;
|
|
24
25
|
maxDate: Date | undefined;
|
|
25
26
|
};
|
|
26
|
-
export declare const resolveWeekRangeMinMax: (weekRangeField:
|
|
27
|
+
export declare const resolveWeekRangeMinMax: (weekRangeField: WeekRangeBoundsField) => {
|
|
27
28
|
minDate: Date | undefined;
|
|
28
29
|
maxDate: Date | undefined;
|
|
29
30
|
startMonth: Date | undefined;
|
|
30
31
|
endMonth: Date | undefined;
|
|
31
32
|
};
|
|
33
|
+
export {};
|
|
@@ -1,86 +1,115 @@
|
|
|
1
|
-
import { format as
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { format as h } from "date-fns";
|
|
2
|
+
import { resolveWeekSelection as l } from "../../lib/fiscal-calendar/week-selection.js";
|
|
3
|
+
import { toLocalDate as f } from "./calendar-boundary.js";
|
|
4
|
+
const e = "yyyy-MM-dd", u = /* @__PURE__ */ new Map();
|
|
5
|
+
function S(t) {
|
|
5
6
|
const s = t?.trim();
|
|
6
7
|
if (!s) return e;
|
|
7
|
-
const
|
|
8
|
-
let
|
|
9
|
-
if (
|
|
8
|
+
const a = s.replace(/D/g, "d").replace(/Y/g, "y");
|
|
9
|
+
let r = u.get(a);
|
|
10
|
+
if (r === void 0) {
|
|
10
11
|
try {
|
|
11
|
-
|
|
12
|
+
h(/* @__PURE__ */ new Date(), a), r = !0;
|
|
12
13
|
} catch {
|
|
13
|
-
|
|
14
|
+
r = !1;
|
|
14
15
|
}
|
|
15
|
-
|
|
16
|
+
u.set(a, r);
|
|
16
17
|
}
|
|
17
|
-
return
|
|
18
|
+
return r ? a : e;
|
|
18
19
|
}
|
|
19
|
-
function
|
|
20
|
+
function o(t) {
|
|
20
21
|
const s = new Date(t);
|
|
21
22
|
return s.setHours(0, 0, 0, 0), s;
|
|
22
23
|
}
|
|
24
|
+
function c(t, s) {
|
|
25
|
+
const a = new Date(t);
|
|
26
|
+
return a.setDate(a.getDate() + s), a;
|
|
27
|
+
}
|
|
28
|
+
function y(t) {
|
|
29
|
+
return {
|
|
30
|
+
calendarKind: t.calendarKind,
|
|
31
|
+
fiscalMode: t.fiscalMode ?? "basic",
|
|
32
|
+
granularity: t.granularity,
|
|
33
|
+
fiscalMonthPattern: t.fiscalMonthPattern,
|
|
34
|
+
fiscalYearStartMonth: t.fiscalYearStartMonth ?? 1,
|
|
35
|
+
weekStartsOn: t.weekStartsOn ?? 1
|
|
36
|
+
};
|
|
37
|
+
}
|
|
23
38
|
function D(t, s) {
|
|
24
|
-
const
|
|
25
|
-
|
|
39
|
+
const a = l(
|
|
40
|
+
s,
|
|
41
|
+
y(t)
|
|
42
|
+
);
|
|
43
|
+
return o(a.startDate);
|
|
44
|
+
}
|
|
45
|
+
function M(t, s) {
|
|
46
|
+
const a = l(
|
|
47
|
+
s,
|
|
48
|
+
y(t)
|
|
49
|
+
);
|
|
50
|
+
return o(a.endDate);
|
|
26
51
|
}
|
|
27
|
-
const
|
|
28
|
-
let s,
|
|
52
|
+
const W = (t) => {
|
|
53
|
+
let s, a;
|
|
29
54
|
if (t.minStartOffsetDays != null && t.minStartOffsetDays >= 0)
|
|
30
|
-
s =
|
|
31
|
-
|
|
55
|
+
s = o(
|
|
56
|
+
c(/* @__PURE__ */ new Date(), t.minStartOffsetDays)
|
|
32
57
|
);
|
|
33
58
|
else if (t.minDate) {
|
|
34
|
-
const
|
|
35
|
-
|
|
59
|
+
const r = f(t.minDate);
|
|
60
|
+
r && (s = o(r));
|
|
36
61
|
}
|
|
37
62
|
if (t.maxDate) {
|
|
38
|
-
const
|
|
39
|
-
|
|
63
|
+
const r = f(t.maxDate);
|
|
64
|
+
r && (a = o(r));
|
|
40
65
|
}
|
|
41
|
-
return { minDate: s, maxDate:
|
|
42
|
-
},
|
|
43
|
-
let s,
|
|
44
|
-
const
|
|
45
|
-
if (t.minWeeksOffset != null)
|
|
46
|
-
|
|
47
|
-
|
|
66
|
+
return { minDate: s, maxDate: a };
|
|
67
|
+
}, v = (t) => {
|
|
68
|
+
let s, a;
|
|
69
|
+
const r = /* @__PURE__ */ new Date();
|
|
70
|
+
if (t.minWeeksOffset != null) {
|
|
71
|
+
const n = c(
|
|
72
|
+
r,
|
|
73
|
+
-t.minWeeksOffset * 7
|
|
48
74
|
);
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
75
|
+
s = D(t, n);
|
|
76
|
+
} else if (t.minStartOffsetDays != null && t.minStartOffsetDays >= 0)
|
|
77
|
+
s = o(
|
|
78
|
+
c(r, t.minStartOffsetDays)
|
|
52
79
|
);
|
|
53
80
|
else if (t.disablePastWeeks)
|
|
54
|
-
s = r
|
|
81
|
+
s = D(t, r);
|
|
55
82
|
else if (t.minDate) {
|
|
56
|
-
const
|
|
57
|
-
|
|
83
|
+
const n = f(t.minDate);
|
|
84
|
+
n && (s = D(t, n));
|
|
58
85
|
}
|
|
59
|
-
if (t.maxWeeksOffset != null)
|
|
60
|
-
n =
|
|
61
|
-
|
|
86
|
+
if (t.maxWeeksOffset != null) {
|
|
87
|
+
const n = c(
|
|
88
|
+
r,
|
|
89
|
+
t.maxWeeksOffset * 7
|
|
62
90
|
);
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
91
|
+
a = M(t, n);
|
|
92
|
+
} else if (t.maxDate) {
|
|
93
|
+
const n = f(t.maxDate);
|
|
94
|
+
n && (a = M(t, n));
|
|
66
95
|
}
|
|
67
|
-
let
|
|
96
|
+
let i;
|
|
68
97
|
if (t.startMonth) {
|
|
69
|
-
const
|
|
70
|
-
|
|
98
|
+
const n = f(t.startMonth);
|
|
99
|
+
n && (i = o(n));
|
|
71
100
|
}
|
|
72
|
-
let
|
|
101
|
+
let m;
|
|
73
102
|
if (t.endMonth) {
|
|
74
|
-
const
|
|
75
|
-
|
|
103
|
+
const n = f(t.endMonth);
|
|
104
|
+
n && (m = o(n));
|
|
76
105
|
}
|
|
77
|
-
return { minDate: s, maxDate:
|
|
106
|
+
return { minDate: s, maxDate: a, startMonth: i, endMonth: m };
|
|
78
107
|
};
|
|
79
108
|
export {
|
|
80
109
|
e as DEFAULT_PICKER_DATE_FORMAT,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
110
|
+
c as addDaysDate,
|
|
111
|
+
S as handleDateFnsFormat,
|
|
112
|
+
W as handleMinMaxProp,
|
|
113
|
+
v as resolveWeekRangeMinMax,
|
|
114
|
+
o as startOfDayDate
|
|
86
115
|
};
|
|
@@ -12,12 +12,22 @@ export interface CalendarMessages {
|
|
|
12
12
|
nextMonth: string;
|
|
13
13
|
monthRange: string;
|
|
14
14
|
monthRangePlural: string;
|
|
15
|
-
/** Week number in table (e.g. "
|
|
15
|
+
/** Week number in table (e.g. "W01"). Use {{number}} for the zero-padded number. */
|
|
16
16
|
weekNumber: string;
|
|
17
|
+
/** Column header left of weekday names (e.g. "Wk"). Fiscal panes use the civil month instead. */
|
|
18
|
+
weekNumberHeader: string;
|
|
17
19
|
/** Aria label for week row (e.g. "Week 1"). Use {{number}} for the number. */
|
|
18
20
|
weekLabel: string;
|
|
19
21
|
monthPlaceholder: string;
|
|
20
22
|
yearPlaceholder: string;
|
|
23
|
+
fiscalWeekNumber: string;
|
|
24
|
+
fiscalWeekLabel: string;
|
|
25
|
+
periodPlaceholder: string;
|
|
26
|
+
fyPlaceholder: string;
|
|
27
|
+
quarterRange: string;
|
|
28
|
+
quarterRangePlural: string;
|
|
29
|
+
yearRange: string;
|
|
30
|
+
yearRangePlural: string;
|
|
21
31
|
}
|
|
22
32
|
export interface DatePickerMessages {
|
|
23
33
|
selectDate: string;
|
|
@@ -27,6 +37,12 @@ export interface DatePickerMessages {
|
|
|
27
37
|
selectWeeks: string;
|
|
28
38
|
selectMonth: string;
|
|
29
39
|
selectMonthRange: string;
|
|
40
|
+
selectQuarter: string;
|
|
41
|
+
selectQuarterRange: string;
|
|
42
|
+
selectMultipleQuarters: string;
|
|
43
|
+
selectYear: string;
|
|
44
|
+
selectYearRange: string;
|
|
45
|
+
selectMultipleYears: string;
|
|
30
46
|
selectMultipleMonths: string;
|
|
31
47
|
selectMultipleDates: string;
|
|
32
48
|
startDate: string;
|
|
@@ -37,6 +53,8 @@ export interface DatePickerMessages {
|
|
|
37
53
|
monthYearFormat: string;
|
|
38
54
|
/** Multi-month picker display when multiple months selected. Use {{count}}. */
|
|
39
55
|
monthsSelected: string;
|
|
56
|
+
quartersSelected: string;
|
|
57
|
+
yearsSelected: string;
|
|
40
58
|
}
|
|
41
59
|
export interface FilterOperatorMessages {
|
|
42
60
|
contains: string;
|
|
@@ -230,13 +248,23 @@ export interface NotificationPanelMessages {
|
|
|
230
248
|
}
|
|
231
249
|
export interface HelpCenterMessages {
|
|
232
250
|
title: string;
|
|
251
|
+
subtitle: string;
|
|
233
252
|
description: string;
|
|
234
253
|
searchPlaceholder: string;
|
|
235
254
|
searchAriaLabel: string;
|
|
236
255
|
allCategory: string;
|
|
237
256
|
replay: string;
|
|
257
|
+
launchTour: string;
|
|
258
|
+
launchWhatsNew: string;
|
|
259
|
+
launchHowTo: string;
|
|
260
|
+
launchTip: string;
|
|
261
|
+
guideTypeTour: string;
|
|
262
|
+
guideTypeWhatsNew: string;
|
|
263
|
+
guideTypeHowTo: string;
|
|
264
|
+
guideTypeTip: string;
|
|
238
265
|
emptyState: string;
|
|
239
266
|
stepCount: string;
|
|
267
|
+
highlightCount: string;
|
|
240
268
|
supportFooterMessage: string;
|
|
241
269
|
supportTicketLabel: string;
|
|
242
270
|
}
|