@helpwave/hightide 0.10.0 → 0.10.1
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/index.d.mts +54 -51
- package/dist/index.d.ts +54 -51
- package/dist/index.js +252 -45
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +250 -45
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1446,27 +1446,16 @@ type SingleOrArray<T> = T | T[];
|
|
|
1446
1446
|
type Exact<T, U extends T> = U;
|
|
1447
1447
|
|
|
1448
1448
|
type TooltipConfig = {
|
|
1449
|
-
/**
|
|
1450
|
-
* Number of milliseconds until the tooltip appears
|
|
1451
|
-
*/
|
|
1452
1449
|
appearDelay: number;
|
|
1453
1450
|
isAnimated: boolean;
|
|
1454
1451
|
};
|
|
1455
1452
|
type ThemeConfig = {
|
|
1456
|
-
/**
|
|
1457
|
-
* The initial theme to show when:
|
|
1458
|
-
* 1. The system preference is not or cannot be loaded
|
|
1459
|
-
* 2. The user has not set an app preference
|
|
1460
|
-
*/
|
|
1461
1453
|
initialTheme: ResolvedTheme;
|
|
1462
1454
|
};
|
|
1463
1455
|
type LocalizationConfig = {
|
|
1464
|
-
/**
|
|
1465
|
-
* The initial locale to use when:
|
|
1466
|
-
* 1. The system preference is not or cannot be loaded
|
|
1467
|
-
* 2. The user has not set an app preference
|
|
1468
|
-
*/
|
|
1469
1456
|
defaultLocale: HightideTranslationLocales;
|
|
1457
|
+
defaultTimeZone?: string;
|
|
1458
|
+
defaultIs24HourFormat?: boolean;
|
|
1470
1459
|
};
|
|
1471
1460
|
type HightideConfig = {
|
|
1472
1461
|
tooltip: TooltipConfig;
|
|
@@ -2649,6 +2638,25 @@ declare const monthsList: readonly ["january", "february", "march", "april", "ma
|
|
|
2649
2638
|
type Month = typeof monthsList[number];
|
|
2650
2639
|
declare const weekDayList: readonly ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
|
|
2651
2640
|
type WeekDay = typeof weekDayList[number];
|
|
2641
|
+
type ZonedParts = {
|
|
2642
|
+
year: number;
|
|
2643
|
+
month: number;
|
|
2644
|
+
day: number;
|
|
2645
|
+
hour: number;
|
|
2646
|
+
minute: number;
|
|
2647
|
+
second: number;
|
|
2648
|
+
millisecond: number;
|
|
2649
|
+
};
|
|
2650
|
+
declare function toZonedDate(date: Date, timeZone?: string): Date;
|
|
2651
|
+
declare function toZonedDate(date: null, timeZone?: string): null;
|
|
2652
|
+
declare function toZonedDate(date: Date | null, timeZone?: string): Date | null;
|
|
2653
|
+
declare function fromZonedDate(date: Date, timeZone?: string): Date;
|
|
2654
|
+
declare function fromZonedDate(date: null, timeZone?: string): null;
|
|
2655
|
+
declare function fromZonedDate(date: Date | null, timeZone?: string): Date | null;
|
|
2656
|
+
type FormatAbsoluteOptions = {
|
|
2657
|
+
timeZone?: string;
|
|
2658
|
+
is24HourFormat?: boolean;
|
|
2659
|
+
};
|
|
2652
2660
|
declare function tryParseDate(dateValue: Date | string | number | undefined | null): Date | null;
|
|
2653
2661
|
declare function normalizeToDateOnly(date: Date): Date;
|
|
2654
2662
|
declare function normalizeDatetime(dateTime: Date): Date;
|
|
@@ -2660,7 +2668,10 @@ declare const DateUtils: {
|
|
|
2660
2668
|
daysInMonth: (year: number, monthIndex: number) => number;
|
|
2661
2669
|
sameTime: (a: Date, b: Date, compareSeconds?: boolean, compareMilliseconds?: boolean) => boolean;
|
|
2662
2670
|
withTime: (datePart: Date, timePart: Date) => Date;
|
|
2663
|
-
|
|
2671
|
+
zonedParts: (date: Date, timeZone: string) => ZonedParts;
|
|
2672
|
+
toZonedDate: typeof toZonedDate;
|
|
2673
|
+
fromZonedDate: typeof fromZonedDate;
|
|
2674
|
+
formatAbsolute: (date: Date, locale: string, format: DateTimeFormat, { timeZone, is24HourFormat }?: FormatAbsoluteOptions) => string;
|
|
2664
2675
|
formatRelative: (date: Date, locale: string) => string;
|
|
2665
2676
|
addDuration: (date: Date, duration: Partial<DurationJSON>) => Date;
|
|
2666
2677
|
subtractDuration: (date: Date, duration: Partial<DurationJSON>) => Date;
|
|
@@ -2678,9 +2689,6 @@ declare const DateUtils: {
|
|
|
2678
2689
|
toInputString: (date: Date, format: DateTimeFormat, precision?: DateTimePrecision, isLocalTime?: boolean) => string;
|
|
2679
2690
|
tryParseDate: typeof tryParseDate;
|
|
2680
2691
|
toOnlyDate: typeof normalizeToDateOnly;
|
|
2681
|
-
/**
|
|
2682
|
-
* Normalizes a datetime by removing seconds and milliseconds.
|
|
2683
|
-
*/
|
|
2684
2692
|
toDateTimeOnly: typeof normalizeDatetime;
|
|
2685
2693
|
};
|
|
2686
2694
|
|
|
@@ -2733,7 +2741,7 @@ interface TimePickerProps extends Partial<FormFieldDataHandling<Date>> {
|
|
|
2733
2741
|
millisecondIncrement?: TimePickerMillisecondIncrement;
|
|
2734
2742
|
className?: string;
|
|
2735
2743
|
}
|
|
2736
|
-
declare const TimePicker: ({ value: controlledValue, initialValue, onValueChange, onEditComplete, is24HourFormat, minuteIncrement, secondIncrement, millisecondIncrement, precision, className, }: TimePickerProps) => react_jsx_runtime.JSX.Element;
|
|
2744
|
+
declare const TimePicker: ({ value: controlledValue, initialValue, onValueChange, onEditComplete, is24HourFormat: is24HourFormatOverride, minuteIncrement, secondIncrement, millisecondIncrement, precision, className, }: TimePickerProps) => react_jsx_runtime.JSX.Element;
|
|
2737
2745
|
|
|
2738
2746
|
interface DateTimePickerProps extends Partial<FormFieldDataHandling<Date>>, Pick<DatePickerProps, 'start' | 'end' | 'weekStart' | 'markToday'>, Pick<TimePickerProps, 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'> {
|
|
2739
2747
|
initialValue?: Date;
|
|
@@ -2760,11 +2768,10 @@ type TimeDisplayMode = 'daysFromToday' | 'date';
|
|
|
2760
2768
|
type TimeDisplayProps = {
|
|
2761
2769
|
date: Date;
|
|
2762
2770
|
mode?: TimeDisplayMode;
|
|
2771
|
+
is24HourFormat?: boolean;
|
|
2772
|
+
timeZone?: string;
|
|
2763
2773
|
};
|
|
2764
|
-
|
|
2765
|
-
* A Component for displaying time and dates in a unified fashion
|
|
2766
|
-
*/
|
|
2767
|
-
declare const TimeDisplay: ({ date, mode }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2774
|
+
declare const TimeDisplay: ({ date, mode, is24HourFormat: is24HourFormatOverride, timeZone: timeZoneOverride, }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2768
2775
|
|
|
2769
2776
|
interface DateTimeFieldProps extends Partial<FormFieldInteractionStates>, Partial<FormFieldDataHandling<Date | null>>, Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue' | 'onChange'> {
|
|
2770
2777
|
initialValue?: Date | null;
|
|
@@ -2773,46 +2780,26 @@ interface DateTimeFieldProps extends Partial<FormFieldInteractionStates>, Partia
|
|
|
2773
2780
|
is24HourFormat?: boolean;
|
|
2774
2781
|
locale?: string;
|
|
2775
2782
|
}
|
|
2776
|
-
/**
|
|
2777
|
-
* A segmented date and time editor where each part is an individually focusable spin button.
|
|
2778
|
-
*
|
|
2779
|
-
* The displayed segments always reflect the underlying value: any complete and valid edit is
|
|
2780
|
-
* committed immediately, so the value passed to the parent never drifts from what is shown.
|
|
2781
|
-
*/
|
|
2782
2783
|
declare const DateTimeField: react.ForwardRefExoticComponent<DateTimeFieldProps & react.RefAttributes<HTMLDivElement>>;
|
|
2783
2784
|
|
|
2784
2785
|
interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue' | 'onChange'>, Partial<FormFieldDataHandling<Date | null>>, Pick<DateTimePickerProps, 'start' | 'end' | 'weekStart' | 'markToday' | 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'> {
|
|
2785
2786
|
initialValue?: Date | null;
|
|
2786
2787
|
allowRemove?: boolean;
|
|
2787
|
-
/** Shows a clear button on optional fields with a value. Has no effect when required. Defaults to true */
|
|
2788
2788
|
allowClear?: boolean;
|
|
2789
2789
|
mode?: DateTimeFormat;
|
|
2790
|
+
timeZone?: string;
|
|
2790
2791
|
containerProps?: HTMLAttributes<HTMLDivElement>;
|
|
2791
2792
|
pickerProps?: Omit<DateTimePickerProps, keyof FormFieldDataHandling<Date> | 'mode' | 'initialValue' | 'start' | 'end' | 'weekStart' | 'markToday' | 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'>;
|
|
2792
2793
|
outsideClickCloses?: boolean;
|
|
2793
2794
|
onDialogOpeningChange?: (isOpen: boolean) => void;
|
|
2794
2795
|
actions?: ReactNode[];
|
|
2795
2796
|
}
|
|
2796
|
-
/**
|
|
2797
|
-
* An input for picking a date, a time or both.
|
|
2798
|
-
*
|
|
2799
|
-
* The value can be typed segment by segment with the keyboard or selected from the calendar
|
|
2800
|
-
* dialog. Both paths write to the same value, so the displayed input and the stored value
|
|
2801
|
-
* always stay in sync.
|
|
2802
|
-
*/
|
|
2803
2797
|
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2804
2798
|
|
|
2805
2799
|
interface FlexibleDateTimeInputProps extends Omit<DateTimeInputProps, 'mode'> {
|
|
2806
2800
|
defaultMode: Exclude<DateTimeFormat, 'time'>;
|
|
2807
|
-
/** The time of day used while no explicit time is set. Defaults to 23:59:59.999 */
|
|
2808
2801
|
fixedTime?: Date | null;
|
|
2809
2802
|
}
|
|
2810
|
-
/**
|
|
2811
|
-
* A date input that can optionally be extended with a time.
|
|
2812
|
-
*
|
|
2813
|
-
* While only a date is shown the value is anchored to a fixed time of day (end of day by
|
|
2814
|
-
* default). Adding a time switches to a full date and time editor seeded with the current time.
|
|
2815
|
-
*/
|
|
2816
2803
|
declare const FlexibleDateTimeInput: react.ForwardRefExoticComponent<FlexibleDateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2817
2804
|
|
|
2818
2805
|
/**
|
|
@@ -2939,13 +2926,11 @@ type CheckboxPropertyProps = PropertyField<boolean>;
|
|
|
2939
2926
|
*/
|
|
2940
2927
|
declare const CheckboxProperty: ({ value, onValueChange, onEditComplete, readOnly, ...baseProps }: CheckboxPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2941
2928
|
|
|
2942
|
-
type DatePropertyProps = PropertyField<Date> & {
|
|
2929
|
+
type DatePropertyProps = Pick<PropertyField<Date | null>, 'name' | 'onRemove' | 'onValueClear'> & Omit<DateTimeInputProps, 'mode' | 'allowRemove'> & {
|
|
2943
2930
|
type?: 'dateTime' | 'date';
|
|
2931
|
+
allowRemove?: boolean;
|
|
2944
2932
|
};
|
|
2945
|
-
|
|
2946
|
-
* An Input for date properties
|
|
2947
|
-
*/
|
|
2948
|
-
declare const DateProperty: ({ value, onValueChange, onEditComplete, readOnly, type, ...baseProps }: DatePropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2933
|
+
declare const DateProperty: ({ name, value, onValueChange, onEditComplete, onRemove, onValueClear, required, readOnly, allowClear, allowRemove, type, className, ...inputProps }: DatePropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2949
2934
|
|
|
2950
2935
|
interface MultiSelectPropertyProps extends PropertyField<string[]>, PropsWithChildren {
|
|
2951
2936
|
}
|
|
@@ -3034,15 +3019,31 @@ declare function Transition({ children, show, includeAnimation, }: TransitionWra
|
|
|
3034
3019
|
type LocaleContextValue = {
|
|
3035
3020
|
locale: HightideTranslationLocales;
|
|
3036
3021
|
setLocale: Dispatch<SetStateAction<HightideTranslationLocales>>;
|
|
3022
|
+
timeZone?: string;
|
|
3023
|
+
setTimeZone?: (timeZone: string | undefined) => void;
|
|
3024
|
+
is24HourFormat?: boolean;
|
|
3025
|
+
setIs24HourFormat?: (is24HourFormat: boolean | undefined) => void;
|
|
3037
3026
|
};
|
|
3038
3027
|
declare const LocaleContext: react.Context<LocaleContextValue>;
|
|
3039
3028
|
type LocaleWithSystem = HightideTranslationLocales | 'system';
|
|
3040
3029
|
type LocaleProviderProps = PropsWithChildren & Partial<LocalizationConfig> & {
|
|
3041
3030
|
locale?: LocaleWithSystem;
|
|
3042
3031
|
onChangedLocale?: (locale: HightideTranslationLocales) => void;
|
|
3032
|
+
timeZone?: string;
|
|
3033
|
+
onChangedTimeZone?: (timeZone: string | undefined) => void;
|
|
3034
|
+
is24HourFormat?: boolean;
|
|
3035
|
+
onChangedIs24HourFormat?: (is24HourFormat: boolean) => void;
|
|
3043
3036
|
};
|
|
3044
|
-
declare const LocaleProvider: ({ children, locale, defaultLocale, onChangedLocale }: LocaleProviderProps) => react_jsx_runtime.JSX.Element;
|
|
3037
|
+
declare const LocaleProvider: ({ children, locale, defaultLocale, defaultTimeZone, defaultIs24HourFormat, timeZone, is24HourFormat, onChangedLocale, onChangedTimeZone, onChangedIs24HourFormat, }: LocaleProviderProps) => react_jsx_runtime.JSX.Element;
|
|
3045
3038
|
declare const useLocale: () => LocaleContextValue;
|
|
3039
|
+
declare const useTimeZone: () => {
|
|
3040
|
+
timeZone: string;
|
|
3041
|
+
setTimeZone: (timeZone: string | undefined) => void;
|
|
3042
|
+
};
|
|
3043
|
+
declare const useDateTimeFormat: () => {
|
|
3044
|
+
is24HourFormat: boolean;
|
|
3045
|
+
timeZone: string;
|
|
3046
|
+
};
|
|
3046
3047
|
declare const useLanguage: () => {
|
|
3047
3048
|
language: string;
|
|
3048
3049
|
};
|
|
@@ -3291,8 +3292,10 @@ interface UseUpdatingDateStringProps {
|
|
|
3291
3292
|
date: Date;
|
|
3292
3293
|
absoluteFormat?: DateTimeFormat;
|
|
3293
3294
|
localeOverride?: HightideTranslationLocales;
|
|
3295
|
+
is24HourFormat?: boolean;
|
|
3296
|
+
timeZone?: string;
|
|
3294
3297
|
}
|
|
3295
|
-
declare const useUpdatingDateString: ({ absoluteFormat, localeOverride, date }: UseUpdatingDateStringProps) => {
|
|
3298
|
+
declare const useUpdatingDateString: ({ absoluteFormat, localeOverride, is24HourFormat: is24HourFormatOverride, timeZone: timeZoneOverride, date }: UseUpdatingDateStringProps) => {
|
|
3296
3299
|
absolute: string;
|
|
3297
3300
|
relative: string;
|
|
3298
3301
|
};
|
|
@@ -3556,4 +3559,4 @@ declare const SimpleSearch: (search: string, objects: string[]) => string[];
|
|
|
3556
3559
|
|
|
3557
3560
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
3558
3561
|
|
|
3559
|
-
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
|
|
3562
|
+
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDateTimeFormat, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
|
package/dist/index.d.ts
CHANGED
|
@@ -1446,27 +1446,16 @@ type SingleOrArray<T> = T | T[];
|
|
|
1446
1446
|
type Exact<T, U extends T> = U;
|
|
1447
1447
|
|
|
1448
1448
|
type TooltipConfig = {
|
|
1449
|
-
/**
|
|
1450
|
-
* Number of milliseconds until the tooltip appears
|
|
1451
|
-
*/
|
|
1452
1449
|
appearDelay: number;
|
|
1453
1450
|
isAnimated: boolean;
|
|
1454
1451
|
};
|
|
1455
1452
|
type ThemeConfig = {
|
|
1456
|
-
/**
|
|
1457
|
-
* The initial theme to show when:
|
|
1458
|
-
* 1. The system preference is not or cannot be loaded
|
|
1459
|
-
* 2. The user has not set an app preference
|
|
1460
|
-
*/
|
|
1461
1453
|
initialTheme: ResolvedTheme;
|
|
1462
1454
|
};
|
|
1463
1455
|
type LocalizationConfig = {
|
|
1464
|
-
/**
|
|
1465
|
-
* The initial locale to use when:
|
|
1466
|
-
* 1. The system preference is not or cannot be loaded
|
|
1467
|
-
* 2. The user has not set an app preference
|
|
1468
|
-
*/
|
|
1469
1456
|
defaultLocale: HightideTranslationLocales;
|
|
1457
|
+
defaultTimeZone?: string;
|
|
1458
|
+
defaultIs24HourFormat?: boolean;
|
|
1470
1459
|
};
|
|
1471
1460
|
type HightideConfig = {
|
|
1472
1461
|
tooltip: TooltipConfig;
|
|
@@ -2649,6 +2638,25 @@ declare const monthsList: readonly ["january", "february", "march", "april", "ma
|
|
|
2649
2638
|
type Month = typeof monthsList[number];
|
|
2650
2639
|
declare const weekDayList: readonly ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
|
|
2651
2640
|
type WeekDay = typeof weekDayList[number];
|
|
2641
|
+
type ZonedParts = {
|
|
2642
|
+
year: number;
|
|
2643
|
+
month: number;
|
|
2644
|
+
day: number;
|
|
2645
|
+
hour: number;
|
|
2646
|
+
minute: number;
|
|
2647
|
+
second: number;
|
|
2648
|
+
millisecond: number;
|
|
2649
|
+
};
|
|
2650
|
+
declare function toZonedDate(date: Date, timeZone?: string): Date;
|
|
2651
|
+
declare function toZonedDate(date: null, timeZone?: string): null;
|
|
2652
|
+
declare function toZonedDate(date: Date | null, timeZone?: string): Date | null;
|
|
2653
|
+
declare function fromZonedDate(date: Date, timeZone?: string): Date;
|
|
2654
|
+
declare function fromZonedDate(date: null, timeZone?: string): null;
|
|
2655
|
+
declare function fromZonedDate(date: Date | null, timeZone?: string): Date | null;
|
|
2656
|
+
type FormatAbsoluteOptions = {
|
|
2657
|
+
timeZone?: string;
|
|
2658
|
+
is24HourFormat?: boolean;
|
|
2659
|
+
};
|
|
2652
2660
|
declare function tryParseDate(dateValue: Date | string | number | undefined | null): Date | null;
|
|
2653
2661
|
declare function normalizeToDateOnly(date: Date): Date;
|
|
2654
2662
|
declare function normalizeDatetime(dateTime: Date): Date;
|
|
@@ -2660,7 +2668,10 @@ declare const DateUtils: {
|
|
|
2660
2668
|
daysInMonth: (year: number, monthIndex: number) => number;
|
|
2661
2669
|
sameTime: (a: Date, b: Date, compareSeconds?: boolean, compareMilliseconds?: boolean) => boolean;
|
|
2662
2670
|
withTime: (datePart: Date, timePart: Date) => Date;
|
|
2663
|
-
|
|
2671
|
+
zonedParts: (date: Date, timeZone: string) => ZonedParts;
|
|
2672
|
+
toZonedDate: typeof toZonedDate;
|
|
2673
|
+
fromZonedDate: typeof fromZonedDate;
|
|
2674
|
+
formatAbsolute: (date: Date, locale: string, format: DateTimeFormat, { timeZone, is24HourFormat }?: FormatAbsoluteOptions) => string;
|
|
2664
2675
|
formatRelative: (date: Date, locale: string) => string;
|
|
2665
2676
|
addDuration: (date: Date, duration: Partial<DurationJSON>) => Date;
|
|
2666
2677
|
subtractDuration: (date: Date, duration: Partial<DurationJSON>) => Date;
|
|
@@ -2678,9 +2689,6 @@ declare const DateUtils: {
|
|
|
2678
2689
|
toInputString: (date: Date, format: DateTimeFormat, precision?: DateTimePrecision, isLocalTime?: boolean) => string;
|
|
2679
2690
|
tryParseDate: typeof tryParseDate;
|
|
2680
2691
|
toOnlyDate: typeof normalizeToDateOnly;
|
|
2681
|
-
/**
|
|
2682
|
-
* Normalizes a datetime by removing seconds and milliseconds.
|
|
2683
|
-
*/
|
|
2684
2692
|
toDateTimeOnly: typeof normalizeDatetime;
|
|
2685
2693
|
};
|
|
2686
2694
|
|
|
@@ -2733,7 +2741,7 @@ interface TimePickerProps extends Partial<FormFieldDataHandling<Date>> {
|
|
|
2733
2741
|
millisecondIncrement?: TimePickerMillisecondIncrement;
|
|
2734
2742
|
className?: string;
|
|
2735
2743
|
}
|
|
2736
|
-
declare const TimePicker: ({ value: controlledValue, initialValue, onValueChange, onEditComplete, is24HourFormat, minuteIncrement, secondIncrement, millisecondIncrement, precision, className, }: TimePickerProps) => react_jsx_runtime.JSX.Element;
|
|
2744
|
+
declare const TimePicker: ({ value: controlledValue, initialValue, onValueChange, onEditComplete, is24HourFormat: is24HourFormatOverride, minuteIncrement, secondIncrement, millisecondIncrement, precision, className, }: TimePickerProps) => react_jsx_runtime.JSX.Element;
|
|
2737
2745
|
|
|
2738
2746
|
interface DateTimePickerProps extends Partial<FormFieldDataHandling<Date>>, Pick<DatePickerProps, 'start' | 'end' | 'weekStart' | 'markToday'>, Pick<TimePickerProps, 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'> {
|
|
2739
2747
|
initialValue?: Date;
|
|
@@ -2760,11 +2768,10 @@ type TimeDisplayMode = 'daysFromToday' | 'date';
|
|
|
2760
2768
|
type TimeDisplayProps = {
|
|
2761
2769
|
date: Date;
|
|
2762
2770
|
mode?: TimeDisplayMode;
|
|
2771
|
+
is24HourFormat?: boolean;
|
|
2772
|
+
timeZone?: string;
|
|
2763
2773
|
};
|
|
2764
|
-
|
|
2765
|
-
* A Component for displaying time and dates in a unified fashion
|
|
2766
|
-
*/
|
|
2767
|
-
declare const TimeDisplay: ({ date, mode }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2774
|
+
declare const TimeDisplay: ({ date, mode, is24HourFormat: is24HourFormatOverride, timeZone: timeZoneOverride, }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2768
2775
|
|
|
2769
2776
|
interface DateTimeFieldProps extends Partial<FormFieldInteractionStates>, Partial<FormFieldDataHandling<Date | null>>, Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue' | 'onChange'> {
|
|
2770
2777
|
initialValue?: Date | null;
|
|
@@ -2773,46 +2780,26 @@ interface DateTimeFieldProps extends Partial<FormFieldInteractionStates>, Partia
|
|
|
2773
2780
|
is24HourFormat?: boolean;
|
|
2774
2781
|
locale?: string;
|
|
2775
2782
|
}
|
|
2776
|
-
/**
|
|
2777
|
-
* A segmented date and time editor where each part is an individually focusable spin button.
|
|
2778
|
-
*
|
|
2779
|
-
* The displayed segments always reflect the underlying value: any complete and valid edit is
|
|
2780
|
-
* committed immediately, so the value passed to the parent never drifts from what is shown.
|
|
2781
|
-
*/
|
|
2782
2783
|
declare const DateTimeField: react.ForwardRefExoticComponent<DateTimeFieldProps & react.RefAttributes<HTMLDivElement>>;
|
|
2783
2784
|
|
|
2784
2785
|
interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue' | 'onChange'>, Partial<FormFieldDataHandling<Date | null>>, Pick<DateTimePickerProps, 'start' | 'end' | 'weekStart' | 'markToday' | 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'> {
|
|
2785
2786
|
initialValue?: Date | null;
|
|
2786
2787
|
allowRemove?: boolean;
|
|
2787
|
-
/** Shows a clear button on optional fields with a value. Has no effect when required. Defaults to true */
|
|
2788
2788
|
allowClear?: boolean;
|
|
2789
2789
|
mode?: DateTimeFormat;
|
|
2790
|
+
timeZone?: string;
|
|
2790
2791
|
containerProps?: HTMLAttributes<HTMLDivElement>;
|
|
2791
2792
|
pickerProps?: Omit<DateTimePickerProps, keyof FormFieldDataHandling<Date> | 'mode' | 'initialValue' | 'start' | 'end' | 'weekStart' | 'markToday' | 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'>;
|
|
2792
2793
|
outsideClickCloses?: boolean;
|
|
2793
2794
|
onDialogOpeningChange?: (isOpen: boolean) => void;
|
|
2794
2795
|
actions?: ReactNode[];
|
|
2795
2796
|
}
|
|
2796
|
-
/**
|
|
2797
|
-
* An input for picking a date, a time or both.
|
|
2798
|
-
*
|
|
2799
|
-
* The value can be typed segment by segment with the keyboard or selected from the calendar
|
|
2800
|
-
* dialog. Both paths write to the same value, so the displayed input and the stored value
|
|
2801
|
-
* always stay in sync.
|
|
2802
|
-
*/
|
|
2803
2797
|
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2804
2798
|
|
|
2805
2799
|
interface FlexibleDateTimeInputProps extends Omit<DateTimeInputProps, 'mode'> {
|
|
2806
2800
|
defaultMode: Exclude<DateTimeFormat, 'time'>;
|
|
2807
|
-
/** The time of day used while no explicit time is set. Defaults to 23:59:59.999 */
|
|
2808
2801
|
fixedTime?: Date | null;
|
|
2809
2802
|
}
|
|
2810
|
-
/**
|
|
2811
|
-
* A date input that can optionally be extended with a time.
|
|
2812
|
-
*
|
|
2813
|
-
* While only a date is shown the value is anchored to a fixed time of day (end of day by
|
|
2814
|
-
* default). Adding a time switches to a full date and time editor seeded with the current time.
|
|
2815
|
-
*/
|
|
2816
2803
|
declare const FlexibleDateTimeInput: react.ForwardRefExoticComponent<FlexibleDateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2817
2804
|
|
|
2818
2805
|
/**
|
|
@@ -2939,13 +2926,11 @@ type CheckboxPropertyProps = PropertyField<boolean>;
|
|
|
2939
2926
|
*/
|
|
2940
2927
|
declare const CheckboxProperty: ({ value, onValueChange, onEditComplete, readOnly, ...baseProps }: CheckboxPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2941
2928
|
|
|
2942
|
-
type DatePropertyProps = PropertyField<Date> & {
|
|
2929
|
+
type DatePropertyProps = Pick<PropertyField<Date | null>, 'name' | 'onRemove' | 'onValueClear'> & Omit<DateTimeInputProps, 'mode' | 'allowRemove'> & {
|
|
2943
2930
|
type?: 'dateTime' | 'date';
|
|
2931
|
+
allowRemove?: boolean;
|
|
2944
2932
|
};
|
|
2945
|
-
|
|
2946
|
-
* An Input for date properties
|
|
2947
|
-
*/
|
|
2948
|
-
declare const DateProperty: ({ value, onValueChange, onEditComplete, readOnly, type, ...baseProps }: DatePropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2933
|
+
declare const DateProperty: ({ name, value, onValueChange, onEditComplete, onRemove, onValueClear, required, readOnly, allowClear, allowRemove, type, className, ...inputProps }: DatePropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2949
2934
|
|
|
2950
2935
|
interface MultiSelectPropertyProps extends PropertyField<string[]>, PropsWithChildren {
|
|
2951
2936
|
}
|
|
@@ -3034,15 +3019,31 @@ declare function Transition({ children, show, includeAnimation, }: TransitionWra
|
|
|
3034
3019
|
type LocaleContextValue = {
|
|
3035
3020
|
locale: HightideTranslationLocales;
|
|
3036
3021
|
setLocale: Dispatch<SetStateAction<HightideTranslationLocales>>;
|
|
3022
|
+
timeZone?: string;
|
|
3023
|
+
setTimeZone?: (timeZone: string | undefined) => void;
|
|
3024
|
+
is24HourFormat?: boolean;
|
|
3025
|
+
setIs24HourFormat?: (is24HourFormat: boolean | undefined) => void;
|
|
3037
3026
|
};
|
|
3038
3027
|
declare const LocaleContext: react.Context<LocaleContextValue>;
|
|
3039
3028
|
type LocaleWithSystem = HightideTranslationLocales | 'system';
|
|
3040
3029
|
type LocaleProviderProps = PropsWithChildren & Partial<LocalizationConfig> & {
|
|
3041
3030
|
locale?: LocaleWithSystem;
|
|
3042
3031
|
onChangedLocale?: (locale: HightideTranslationLocales) => void;
|
|
3032
|
+
timeZone?: string;
|
|
3033
|
+
onChangedTimeZone?: (timeZone: string | undefined) => void;
|
|
3034
|
+
is24HourFormat?: boolean;
|
|
3035
|
+
onChangedIs24HourFormat?: (is24HourFormat: boolean) => void;
|
|
3043
3036
|
};
|
|
3044
|
-
declare const LocaleProvider: ({ children, locale, defaultLocale, onChangedLocale }: LocaleProviderProps) => react_jsx_runtime.JSX.Element;
|
|
3037
|
+
declare const LocaleProvider: ({ children, locale, defaultLocale, defaultTimeZone, defaultIs24HourFormat, timeZone, is24HourFormat, onChangedLocale, onChangedTimeZone, onChangedIs24HourFormat, }: LocaleProviderProps) => react_jsx_runtime.JSX.Element;
|
|
3045
3038
|
declare const useLocale: () => LocaleContextValue;
|
|
3039
|
+
declare const useTimeZone: () => {
|
|
3040
|
+
timeZone: string;
|
|
3041
|
+
setTimeZone: (timeZone: string | undefined) => void;
|
|
3042
|
+
};
|
|
3043
|
+
declare const useDateTimeFormat: () => {
|
|
3044
|
+
is24HourFormat: boolean;
|
|
3045
|
+
timeZone: string;
|
|
3046
|
+
};
|
|
3046
3047
|
declare const useLanguage: () => {
|
|
3047
3048
|
language: string;
|
|
3048
3049
|
};
|
|
@@ -3291,8 +3292,10 @@ interface UseUpdatingDateStringProps {
|
|
|
3291
3292
|
date: Date;
|
|
3292
3293
|
absoluteFormat?: DateTimeFormat;
|
|
3293
3294
|
localeOverride?: HightideTranslationLocales;
|
|
3295
|
+
is24HourFormat?: boolean;
|
|
3296
|
+
timeZone?: string;
|
|
3294
3297
|
}
|
|
3295
|
-
declare const useUpdatingDateString: ({ absoluteFormat, localeOverride, date }: UseUpdatingDateStringProps) => {
|
|
3298
|
+
declare const useUpdatingDateString: ({ absoluteFormat, localeOverride, is24HourFormat: is24HourFormatOverride, timeZone: timeZoneOverride, date }: UseUpdatingDateStringProps) => {
|
|
3296
3299
|
absolute: string;
|
|
3297
3300
|
relative: string;
|
|
3298
3301
|
};
|
|
@@ -3556,4 +3559,4 @@ declare const SimpleSearch: (search: string, objects: string[]) => string[];
|
|
|
3556
3559
|
|
|
3557
3560
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
3558
3561
|
|
|
3559
|
-
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
|
|
3562
|
+
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDateTimeFormat, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
|