@als-tp/als-react-ts-ui 0.13.2 → 0.14.3
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/als-react-ts-ui.js +76545 -85380
- package/dist/components/ALSAutocomplete/ALSAutocomplete.d.ts +16 -16
- package/dist/components/ALSAutocomplete/ALSAutocomplete.d.ts.map +1 -1
- package/dist/components/ALSAutocomplete/index.d.ts +17 -17
- package/dist/components/ALSCalendar/ALSCalendar.d.ts +54 -0
- package/dist/components/ALSCalendar/ALSCalendar.d.ts.map +1 -0
- package/dist/components/ALSCalendar/index.d.ts +5 -0
- package/dist/components/ALSCalendar/index.d.ts.map +1 -0
- package/dist/components/ALSCombobox/ALSCombobox.d.ts +2 -2
- package/dist/components/ALSCombobox/ALSCombobox.d.ts.map +1 -1
- package/dist/components/ALSCombobox/index.d.ts +3 -3
- package/dist/components/ALSContextMenu/ALSContextMenu.d.ts +14 -14
- package/dist/components/ALSContextMenu/ALSContextMenu.d.ts.map +1 -1
- package/dist/components/ALSContextMenu/index.d.ts +14 -14
- package/dist/components/ALSField/ALSField.d.ts +5 -5
- package/dist/components/ALSField/ALSField.d.ts.map +1 -1
- package/dist/components/ALSField/index.d.ts +5 -5
- package/dist/components/ALSFieldset/ALSFieldset.d.ts +2 -2
- package/dist/components/ALSFieldset/ALSFieldset.d.ts.map +1 -1
- package/dist/components/ALSFieldset/index.d.ts +2 -2
- package/dist/components/ALSNavigationMenu/ALSNavigationMenu.d.ts +13 -13
- package/dist/components/ALSNavigationMenu/ALSNavigationMenu.d.ts.map +1 -1
- package/dist/components/ALSNavigationMenu/index.d.ts +13 -13
- package/dist/components/ALSPopover/ALSPopover.d.ts +9 -21
- package/dist/components/ALSPopover/ALSPopover.d.ts.map +1 -1
- package/dist/components/ALSPopover/index.d.ts +10 -22
- package/dist/components/ALSPopover/index.d.ts.map +1 -1
- package/dist/components/ALSProgress/ALSProgress.d.ts +4 -4
- package/dist/components/ALSProgress/ALSProgress.d.ts.map +1 -1
- package/dist/components/ALSProgress/index.d.ts +4 -4
- package/dist/components/ALSRadio/ALSRadio.d.ts +2 -1
- package/dist/components/ALSRadio/ALSRadio.d.ts.map +1 -1
- package/dist/components/ALSRadio/index.d.ts +1 -1
- package/dist/components/ALSSelect/ALSSelect.d.ts +7 -7
- package/dist/components/ALSSelect/ALSSelect.d.ts.map +1 -1
- package/dist/components/ALSSelect/index.d.ts +7 -7
- package/dist/components/ALSTimePicker/ALSTimePicker.d.ts +19 -0
- package/dist/components/ALSTimePicker/ALSTimePicker.d.ts.map +1 -0
- package/dist/components/ALSTimePicker/index.d.ts +5 -0
- package/dist/components/ALSTimePicker/index.d.ts.map +1 -0
- package/dist/components/ALSToggleGroup/ALSToggleGroup.d.ts +2 -2
- package/dist/components/ALSToggleGroup/ALSToggleGroup.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/layout/ALSSidebar/ALSSidebar.d.ts.map +1 -1
- package/package.json +34 -32
|
@@ -4,43 +4,43 @@ declare const ALSAutocompleteRoot: typeof Autocomplete.Root;
|
|
|
4
4
|
interface ALSAutocompleteInputProps extends Autocomplete.Input.Props {
|
|
5
5
|
placeholder?: string;
|
|
6
6
|
}
|
|
7
|
-
declare const ALSAutocompleteInput: React.ForwardRefExoticComponent<ALSAutocompleteInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
7
|
+
declare const ALSAutocompleteInput: React.ForwardRefExoticComponent<Omit<ALSAutocompleteInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
8
8
|
type ALSAutocompleteTriggerProps = Autocomplete.Trigger.Props;
|
|
9
|
-
declare const ALSAutocompleteTrigger: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
9
|
+
declare const ALSAutocompleteTrigger: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteTriggerProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
10
10
|
type ALSAutocompleteIconProps = Autocomplete.Icon.Props;
|
|
11
|
-
declare const ALSAutocompleteIcon: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
11
|
+
declare const ALSAutocompleteIcon: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxIconProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
12
12
|
type ALSAutocompleteClearProps = Autocomplete.Clear.Props;
|
|
13
|
-
declare const ALSAutocompleteClear: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
13
|
+
declare const ALSAutocompleteClear: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxClearProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
14
14
|
type ALSAutocompleteValueProps = Autocomplete.Value.Props;
|
|
15
15
|
declare function ALSAutocompleteValue(props: ALSAutocompleteValueProps): import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
type ALSAutocompletePortalProps = Autocomplete.Portal.Props;
|
|
17
17
|
declare function ALSAutocompletePortal(props: ALSAutocompletePortalProps): import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
type ALSAutocompleteBackdropProps = Autocomplete.Backdrop.Props;
|
|
19
|
-
declare const ALSAutocompleteBackdrop: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
19
|
+
declare const ALSAutocompleteBackdrop: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteBackdropProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
20
20
|
type ALSAutocompletePositionerProps = Autocomplete.Positioner.Props;
|
|
21
|
-
declare const ALSAutocompletePositioner: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
21
|
+
declare const ALSAutocompletePositioner: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompletePositionerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
22
22
|
type ALSAutocompletePopupProps = Autocomplete.Popup.Props;
|
|
23
|
-
declare const ALSAutocompletePopup: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
23
|
+
declare const ALSAutocompletePopup: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompletePopupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
24
24
|
type ALSAutocompleteArrowProps = Autocomplete.Arrow.Props;
|
|
25
|
-
declare const ALSAutocompleteArrow: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
25
|
+
declare const ALSAutocompleteArrow: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteArrowProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
26
26
|
type ALSAutocompleteStatusProps = Autocomplete.Status.Props;
|
|
27
|
-
declare const ALSAutocompleteStatus: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
27
|
+
declare const ALSAutocompleteStatus: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteStatusProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
28
28
|
type ALSAutocompleteEmptyProps = Autocomplete.Empty.Props;
|
|
29
|
-
declare const ALSAutocompleteEmpty: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
29
|
+
declare const ALSAutocompleteEmpty: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteEmptyProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
30
30
|
type ALSAutocompleteListProps = Autocomplete.List.Props;
|
|
31
|
-
declare const ALSAutocompleteList: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
31
|
+
declare const ALSAutocompleteList: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteListProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
32
32
|
type ALSAutocompleteCollectionProps = Autocomplete.Collection.Props;
|
|
33
33
|
declare function ALSAutocompleteCollection(props: ALSAutocompleteCollectionProps): import("react/jsx-runtime").JSX.Element;
|
|
34
34
|
type ALSAutocompleteRowProps = Autocomplete.Row.Props;
|
|
35
|
-
declare const ALSAutocompleteRow: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
35
|
+
declare const ALSAutocompleteRow: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxRowProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
36
36
|
type ALSAutocompleteItemProps = Autocomplete.Item.Props;
|
|
37
|
-
declare const ALSAutocompleteItem: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
37
|
+
declare const ALSAutocompleteItem: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
38
38
|
type ALSAutocompleteGroupProps = Autocomplete.Group.Props;
|
|
39
|
-
declare const ALSAutocompleteGroup: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
39
|
+
declare const ALSAutocompleteGroup: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
40
40
|
type ALSAutocompleteGroupLabelProps = Autocomplete.GroupLabel.Props;
|
|
41
|
-
declare const ALSAutocompleteGroupLabel: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
41
|
+
declare const ALSAutocompleteGroupLabel: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteGroupLabelProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
42
42
|
type ALSAutocompleteSeparatorProps = Autocomplete.Separator.Props;
|
|
43
|
-
declare const ALSAutocompleteSeparator: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
43
|
+
declare const ALSAutocompleteSeparator: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").SeparatorProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
44
44
|
export { ALSAutocompleteRoot, ALSAutocompleteInput, ALSAutocompleteTrigger, ALSAutocompleteIcon, ALSAutocompleteClear, ALSAutocompleteValue, ALSAutocompletePortal, ALSAutocompleteBackdrop, ALSAutocompletePositioner, ALSAutocompletePopup, ALSAutocompleteArrow, ALSAutocompleteStatus, ALSAutocompleteEmpty, ALSAutocompleteList, ALSAutocompleteCollection, ALSAutocompleteRow, ALSAutocompleteItem, ALSAutocompleteGroup, ALSAutocompleteGroupLabel, ALSAutocompleteSeparator, };
|
|
45
45
|
export type { ALSAutocompleteInputProps, ALSAutocompleteTriggerProps, ALSAutocompleteIconProps, ALSAutocompleteClearProps, ALSAutocompleteValueProps, ALSAutocompletePortalProps, ALSAutocompleteBackdropProps, ALSAutocompletePositionerProps, ALSAutocompletePopupProps, ALSAutocompleteArrowProps, ALSAutocompleteStatusProps, ALSAutocompleteEmptyProps, ALSAutocompleteListProps, ALSAutocompleteCollectionProps, ALSAutocompleteRowProps, ALSAutocompleteItemProps, ALSAutocompleteGroupProps, ALSAutocompleteGroupLabelProps, ALSAutocompleteSeparatorProps, };
|
|
46
46
|
//# sourceMappingURL=ALSAutocomplete.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSAutocomplete.d.ts","sourceRoot":"","sources":["../../../src/components/ALSAutocomplete/ALSAutocomplete.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAS3D,QAAA,MAAM,mBAAmB,0BAAoB,CAAC;AAM9C,UAAU,yBAA0B,SAAQ,YAAY,CAAC,KAAK,CAAC,KAAK;IAChE,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,QAAA,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"ALSAutocomplete.d.ts","sourceRoot":"","sources":["../../../src/components/ALSAutocomplete/ALSAutocomplete.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { ALSAutocompleteValue, ALSAutocompletePortal, ALSAutocompleteCollection } from "./ALSAutocomplete";
|
|
2
2
|
import type { ALSAutocompleteInputProps, ALSAutocompleteTriggerProps, ALSAutocompleteIconProps, ALSAutocompleteClearProps, ALSAutocompleteValueProps, ALSAutocompletePortalProps, ALSAutocompleteBackdropProps, ALSAutocompletePositionerProps, ALSAutocompletePopupProps, ALSAutocompleteArrowProps, ALSAutocompleteStatusProps, ALSAutocompleteEmptyProps, ALSAutocompleteListProps, ALSAutocompleteCollectionProps, ALSAutocompleteRowProps, ALSAutocompleteItemProps, ALSAutocompleteGroupProps, ALSAutocompleteGroupLabelProps, ALSAutocompleteSeparatorProps } from "./ALSAutocomplete";
|
|
3
3
|
export declare const ALSAutocomplete: {
|
|
4
|
-
Root: typeof import("@base-ui/react
|
|
5
|
-
Input: import("react").ForwardRefExoticComponent<ALSAutocompleteInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
-
Trigger: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
7
|
-
Icon: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
8
|
-
Clear: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
4
|
+
Root: typeof import("@base-ui/react").AutocompleteRoot;
|
|
5
|
+
Input: import("react").ForwardRefExoticComponent<Omit<ALSAutocompleteInputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
+
Trigger: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteTriggerProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
7
|
+
Icon: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxIconProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
Clear: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxClearProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
9
9
|
Value: typeof ALSAutocompleteValue;
|
|
10
10
|
Portal: typeof ALSAutocompletePortal;
|
|
11
|
-
Backdrop: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
12
|
-
Positioner: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
13
|
-
Popup: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
14
|
-
Arrow: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
15
|
-
Status: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
16
|
-
Empty: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
17
|
-
List: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
11
|
+
Backdrop: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteBackdropProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
+
Positioner: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompletePositionerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
13
|
+
Popup: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompletePopupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
|
+
Arrow: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteArrowProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
+
Status: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteStatusProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
16
|
+
Empty: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteEmptyProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
17
|
+
List: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteListProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
18
18
|
Collection: typeof ALSAutocompleteCollection;
|
|
19
|
-
Row: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
20
|
-
Item: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
21
|
-
Group: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
22
|
-
GroupLabel: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
23
|
-
Separator: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
19
|
+
Row: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxRowProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
20
|
+
Item: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
21
|
+
Group: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteGroupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
22
|
+
GroupLabel: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").AutocompleteGroupLabelProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
23
|
+
Separator: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").SeparatorProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
24
24
|
};
|
|
25
25
|
export type { ALSAutocompleteInputProps, ALSAutocompleteTriggerProps, ALSAutocompleteIconProps, ALSAutocompleteClearProps, ALSAutocompleteValueProps, ALSAutocompletePortalProps, ALSAutocompleteBackdropProps, ALSAutocompletePositionerProps, ALSAutocompletePopupProps, ALSAutocompleteArrowProps, ALSAutocompleteStatusProps, ALSAutocompleteEmptyProps, ALSAutocompleteListProps, ALSAutocompleteCollectionProps, ALSAutocompleteRowProps, ALSAutocompleteItemProps, ALSAutocompleteGroupProps, ALSAutocompleteGroupLabelProps, ALSAutocompleteSeparatorProps, };
|
|
26
26
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type DateRange, type DayPickerProps, type Modifiers } from "react-day-picker";
|
|
3
|
+
export type ALSCalendarMode = "single" | "multiple" | "range";
|
|
4
|
+
export type ALSCalendarSelected = Date | Date[] | DateRange | undefined;
|
|
5
|
+
export interface ALSCalendarTimeZoneOption {
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}
|
|
9
|
+
export type ALSCalendarOnSelect = (selected: ALSCalendarSelected, triggerDate: Date, modifiers: Modifiers, event: React.MouseEvent | React.KeyboardEvent) => void;
|
|
10
|
+
export interface ALSCalendarDayContext {
|
|
11
|
+
date: Date;
|
|
12
|
+
displayMonth: Date;
|
|
13
|
+
label: string;
|
|
14
|
+
modifiers: Modifiers;
|
|
15
|
+
isOutside: boolean;
|
|
16
|
+
isSelected: boolean;
|
|
17
|
+
isToday: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface ALSCalendarProps extends Omit<DayPickerProps, "mode" | "selected" | "onSelect" | "components"> {
|
|
20
|
+
mode?: ALSCalendarMode;
|
|
21
|
+
selected?: ALSCalendarSelected;
|
|
22
|
+
onSelect?: ALSCalendarOnSelect;
|
|
23
|
+
onSelectionChange?: (selected: ALSCalendarSelected) => void;
|
|
24
|
+
showTimePicker?: boolean;
|
|
25
|
+
time?: string;
|
|
26
|
+
defaultTime?: string;
|
|
27
|
+
startTime?: string;
|
|
28
|
+
defaultStartTime?: string;
|
|
29
|
+
endTime?: string;
|
|
30
|
+
defaultEndTime?: string;
|
|
31
|
+
onTimeChange?: (time: string) => void;
|
|
32
|
+
onStartTimeChange?: (time: string) => void;
|
|
33
|
+
onEndTimeChange?: (time: string) => void;
|
|
34
|
+
showTimeZoneSelector?: boolean;
|
|
35
|
+
defaultTimeZone?: string;
|
|
36
|
+
onTimeZoneChange?: (timeZone: string) => void;
|
|
37
|
+
timeZoneLabel?: string;
|
|
38
|
+
timeZoneOptions?: ALSCalendarTimeZoneOption[];
|
|
39
|
+
timeLabel?: string;
|
|
40
|
+
multipleTimeLabel?: string;
|
|
41
|
+
startTimeLabel?: string;
|
|
42
|
+
endTimeLabel?: string;
|
|
43
|
+
dayCellSize?: string;
|
|
44
|
+
renderDay?: (context: ALSCalendarDayContext) => React.ReactNode;
|
|
45
|
+
monthYearSelectable?: boolean;
|
|
46
|
+
stickyRangeStartMonth?: boolean;
|
|
47
|
+
components?: DayPickerProps["components"];
|
|
48
|
+
containerClassName?: string;
|
|
49
|
+
}
|
|
50
|
+
export declare function ALSCalendar(incomingProps: ALSCalendarProps): import("react/jsx-runtime").JSX.Element;
|
|
51
|
+
export declare namespace ALSCalendar {
|
|
52
|
+
var displayName: string;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=ALSCalendar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ALSCalendar.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCalendar/ALSCalendar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAQH,KAAK,SAAS,EAEd,KAAK,cAAc,EACnB,KAAK,SAAS,EAEjB,MAAM,kBAAkB,CAAC;AAK1B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;AAC9D,MAAM,MAAM,mBAAmB,GAAG,IAAI,GAAG,IAAI,EAAE,GAAG,SAAS,GAAG,SAAS,CAAC;AACxE,MAAM,WAAW,yBAAyB;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,MAAM,mBAAmB,GAAG,CAC9B,QAAQ,EAAE,mBAAmB,EAC7B,WAAW,EAAE,IAAI,EACjB,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,KAAK,CAAC,UAAU,GAAG,KAAK,CAAC,aAAa,KAC5C,IAAI,CAAC;AAEV,MAAM,WAAW,qBAAqB;IAClC,IAAI,EAAE,IAAI,CAAC;IACX,YAAY,EAAE,IAAI,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAC1C,cAAc,EACd,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,YAAY,CAClD;IACG,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,iBAAiB,CAAC,EAAE,CAAC,QAAQ,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC5D,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,iBAAiB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,eAAe,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,eAAe,CAAC,EAAE,yBAAyB,EAAE,CAAC;IAC9C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,KAAK,CAAC,SAAS,CAAC;IAChE,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,UAAU,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC,CAAC;IAC1C,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC/B;AAmOD,wBAAgB,WAAW,CAAC,aAAa,EAAE,gBAAgB,2CAoe1D;yBApee,WAAW"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ALSCalendar } from "./ALSCalendar";
|
|
2
|
+
import type { ALSCalendarDayContext, ALSCalendarMode, ALSCalendarOnSelect, ALSCalendarProps, ALSCalendarSelected, ALSCalendarTimeZoneOption } from "./ALSCalendar";
|
|
3
|
+
export { ALSCalendar, };
|
|
4
|
+
export type { ALSCalendarDayContext, ALSCalendarMode, ALSCalendarOnSelect, ALSCalendarProps, ALSCalendarSelected, ALSCalendarTimeZoneOption, };
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCalendar/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,KAAK,EACR,qBAAqB,EACrB,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,mBAAmB,EACnB,yBAAyB,EAC5B,MAAM,eAAe,CAAC;AAEvB,OAAO,EACH,WAAW,GACd,CAAC;AAEF,YAAY,EACR,qBAAqB,EACrB,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,mBAAmB,EACnB,yBAAyB,GAC5B,CAAC"}
|
|
@@ -146,7 +146,7 @@ export declare const ALSComboboxInput: React.ForwardRefExoticComponent<ALSCombob
|
|
|
146
146
|
/**
|
|
147
147
|
* Icon container for the combobox (typically a chevron)
|
|
148
148
|
*/
|
|
149
|
-
export declare const ALSComboboxIcon: React.ForwardRefExoticComponent<import("@base-ui/react
|
|
149
|
+
export declare const ALSComboboxIcon: React.ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxIconProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
150
150
|
/**
|
|
151
151
|
* Popup container that holds the list of items
|
|
152
152
|
*/
|
|
@@ -161,7 +161,7 @@ export declare const ALSComboboxList: React.ForwardRefExoticComponent<{
|
|
|
161
161
|
/**
|
|
162
162
|
* Individual item within the combobox popup
|
|
163
163
|
*/
|
|
164
|
-
export declare const ALSComboboxItem: React.ForwardRefExoticComponent<ALSComboboxItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
164
|
+
export declare const ALSComboboxItem: React.ForwardRefExoticComponent<Omit<ALSComboboxItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
165
165
|
/**
|
|
166
166
|
* Component to display when no items match the search
|
|
167
167
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSCombobox.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCombobox/ALSCombobox.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"ALSCombobox.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCombobox/ALSCombobox.tsx"],"names":[],"mappings":"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"}
|
|
@@ -3,15 +3,15 @@ export declare const ALSCombobox: {
|
|
|
3
3
|
Root: import("react").FC<ALSComboboxRootProps>;
|
|
4
4
|
Label: import("react").ForwardRefExoticComponent<ALSComboboxLabelProps & import("react").RefAttributes<HTMLLabelElement>>;
|
|
5
5
|
Input: import("react").ForwardRefExoticComponent<ALSComboboxInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
-
Icon: import("react").ForwardRefExoticComponent<import("@base-ui/react
|
|
6
|
+
Icon: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react").ComboboxIconProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
7
|
Popup: import("react").ForwardRefExoticComponent<ALSComboboxPopupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
8
|
List: import("react").ForwardRefExoticComponent<{
|
|
9
9
|
className?: string;
|
|
10
10
|
children: React.ReactNode;
|
|
11
11
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
-
Item: import("react").ForwardRefExoticComponent<ALSComboboxItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
+
Item: import("react").ForwardRefExoticComponent<Omit<ALSComboboxItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
13
13
|
Empty: import("react").ForwardRefExoticComponent<ALSComboboxEmptyProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
|
-
Value: import("react").FC<import("@base-ui/react
|
|
14
|
+
Value: import("react").FC<import("@base-ui/react").ComboboxValueProps>;
|
|
15
15
|
};
|
|
16
16
|
export type { ALSComboboxRootProps, ALSComboboxLabelProps, ALSComboboxInputProps, ALSComboboxIconProps, ALSComboboxPopupProps, ALSComboboxItemProps, ALSComboboxEmptyProps, ALSComboboxValueProps, ALSComboboxVariant, ALSComboboxSize, };
|
|
17
17
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -76,19 +76,19 @@ export interface ALSContextMenuSubmenuTriggerProps extends ContextMenu.SubmenuTr
|
|
|
76
76
|
export declare const ALSContextMenuRoot: React.FC<ALSContextMenuRootProps>;
|
|
77
77
|
export declare const ALSContextMenuTrigger: React.FC<ALSContextMenuTriggerProps>;
|
|
78
78
|
export declare const ALSContextMenuPortal: React.FC<ALSContextMenuPortalProps>;
|
|
79
|
-
export declare const ALSContextMenuBackdrop: React.ForwardRefExoticComponent<ALSContextMenuBackdropProps & React.RefAttributes<HTMLDivElement>>;
|
|
80
|
-
export declare const ALSContextMenuPositioner: React.ForwardRefExoticComponent<ALSContextMenuPositionerProps & React.RefAttributes<HTMLDivElement>>;
|
|
81
|
-
export declare const ALSContextMenuPopup: React.ForwardRefExoticComponent<ALSContextMenuPopupProps & React.RefAttributes<HTMLDivElement>>;
|
|
82
|
-
export declare const ALSContextMenuArrow: React.ForwardRefExoticComponent<ALSContextMenuArrowProps & React.RefAttributes<HTMLDivElement>>;
|
|
83
|
-
export declare const ALSContextMenuItem: React.ForwardRefExoticComponent<ALSContextMenuItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
84
|
-
export declare const ALSContextMenuSeparator: React.ForwardRefExoticComponent<ALSContextMenuSeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
85
|
-
export declare const ALSContextMenuGroup: React.ForwardRefExoticComponent<ALSContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
86
|
-
export declare const ALSContextMenuGroupLabel: React.ForwardRefExoticComponent<ALSContextMenuGroupLabelProps & React.RefAttributes<HTMLDivElement>>;
|
|
87
|
-
export declare const ALSContextMenuRadioGroup: React.ForwardRefExoticComponent<ALSContextMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
88
|
-
export declare const ALSContextMenuRadioItem: React.ForwardRefExoticComponent<ALSContextMenuRadioItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
89
|
-
export declare const ALSContextMenuRadioItemIndicator: React.ForwardRefExoticComponent<ALSContextMenuRadioItemIndicatorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
90
|
-
export declare const ALSContextMenuCheckboxItem: React.ForwardRefExoticComponent<ALSContextMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
91
|
-
export declare const ALSContextMenuCheckboxItemIndicator: React.ForwardRefExoticComponent<ALSContextMenuCheckboxItemIndicatorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
79
|
+
export declare const ALSContextMenuBackdrop: React.ForwardRefExoticComponent<Omit<ALSContextMenuBackdropProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
80
|
+
export declare const ALSContextMenuPositioner: React.ForwardRefExoticComponent<Omit<ALSContextMenuPositionerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
81
|
+
export declare const ALSContextMenuPopup: React.ForwardRefExoticComponent<Omit<ALSContextMenuPopupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
82
|
+
export declare const ALSContextMenuArrow: React.ForwardRefExoticComponent<Omit<ALSContextMenuArrowProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
export declare const ALSContextMenuItem: React.ForwardRefExoticComponent<Omit<ALSContextMenuItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
84
|
+
export declare const ALSContextMenuSeparator: React.ForwardRefExoticComponent<Omit<ALSContextMenuSeparatorProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
85
|
+
export declare const ALSContextMenuGroup: React.ForwardRefExoticComponent<Omit<ALSContextMenuGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
86
|
+
export declare const ALSContextMenuGroupLabel: React.ForwardRefExoticComponent<Omit<ALSContextMenuGroupLabelProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
87
|
+
export declare const ALSContextMenuRadioGroup: React.ForwardRefExoticComponent<Omit<ALSContextMenuRadioGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
88
|
+
export declare const ALSContextMenuRadioItem: React.ForwardRefExoticComponent<Omit<ALSContextMenuRadioItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
89
|
+
export declare const ALSContextMenuRadioItemIndicator: React.ForwardRefExoticComponent<Omit<ALSContextMenuRadioItemIndicatorProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
90
|
+
export declare const ALSContextMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<ALSContextMenuCheckboxItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
91
|
+
export declare const ALSContextMenuCheckboxItemIndicator: React.ForwardRefExoticComponent<Omit<ALSContextMenuCheckboxItemIndicatorProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
92
92
|
export declare const ALSContextMenuSubmenuRoot: React.FC<ALSContextMenuSubmenuRootProps>;
|
|
93
|
-
export declare const ALSContextMenuSubmenuTrigger: React.ForwardRefExoticComponent<ALSContextMenuSubmenuTriggerProps & React.RefAttributes<HTMLDivElement>>;
|
|
93
|
+
export declare const ALSContextMenuSubmenuTrigger: React.ForwardRefExoticComponent<Omit<ALSContextMenuSubmenuTriggerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
94
94
|
//# sourceMappingURL=ALSContextMenu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSContextMenu.d.ts","sourceRoot":"","sources":["../../../src/components/ALSContextMenu/ALSContextMenu.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"ALSContextMenu.d.ts","sourceRoot":"","sources":["../../../src/components/ALSContextMenu/ALSContextMenu.tsx"],"names":[],"mappings":"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"}
|
|
@@ -3,21 +3,21 @@ export declare const ALSContextMenu: {
|
|
|
3
3
|
Root: import("react").FC<ALSContextMenuRootProps>;
|
|
4
4
|
Trigger: import("react").FC<ALSContextMenuTriggerProps>;
|
|
5
5
|
Portal: import("react").FC<ALSContextMenuPortalProps>;
|
|
6
|
-
Backdrop: import("react").ForwardRefExoticComponent<ALSContextMenuBackdropProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
-
Positioner: import("react").ForwardRefExoticComponent<ALSContextMenuPositionerProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
-
Popup: import("react").ForwardRefExoticComponent<ALSContextMenuPopupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
|
-
Arrow: import("react").ForwardRefExoticComponent<ALSContextMenuArrowProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
10
|
-
Item: import("react").ForwardRefExoticComponent<ALSContextMenuItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
11
|
-
Separator: import("react").ForwardRefExoticComponent<ALSContextMenuSeparatorProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
-
Group: import("react").ForwardRefExoticComponent<ALSContextMenuGroupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
13
|
-
GroupLabel: import("react").ForwardRefExoticComponent<ALSContextMenuGroupLabelProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
|
-
RadioGroup: import("react").ForwardRefExoticComponent<ALSContextMenuRadioGroupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
-
RadioItem: import("react").ForwardRefExoticComponent<ALSContextMenuRadioItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
16
|
-
RadioItemIndicator: import("react").ForwardRefExoticComponent<ALSContextMenuRadioItemIndicatorProps & import("react").RefAttributes<HTMLSpanElement>>;
|
|
17
|
-
CheckboxItem: import("react").ForwardRefExoticComponent<ALSContextMenuCheckboxItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
18
|
-
CheckboxItemIndicator: import("react").ForwardRefExoticComponent<ALSContextMenuCheckboxItemIndicatorProps & import("react").RefAttributes<HTMLSpanElement>>;
|
|
6
|
+
Backdrop: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuBackdropProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
Positioner: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuPositionerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
Popup: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuPopupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
|
+
Arrow: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuArrowProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
10
|
+
Item: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
11
|
+
Separator: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuSeparatorProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
+
Group: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuGroupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
13
|
+
GroupLabel: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuGroupLabelProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
|
+
RadioGroup: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuRadioGroupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
+
RadioItem: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuRadioItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
16
|
+
RadioItemIndicator: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuRadioItemIndicatorProps, "ref"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
17
|
+
CheckboxItem: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuCheckboxItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
18
|
+
CheckboxItemIndicator: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuCheckboxItemIndicatorProps, "ref"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
19
19
|
SubmenuRoot: import("react").FC<ALSContextMenuSubmenuRootProps>;
|
|
20
|
-
SubmenuTrigger: import("react").ForwardRefExoticComponent<ALSContextMenuSubmenuTriggerProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
20
|
+
SubmenuTrigger: import("react").ForwardRefExoticComponent<Omit<ALSContextMenuSubmenuTriggerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
21
21
|
};
|
|
22
22
|
export type { ALSContextMenuRootProps, ALSContextMenuTriggerProps, ALSContextMenuPortalProps, ALSContextMenuBackdropProps, ALSContextMenuPositionerProps, ALSContextMenuPopupProps, ALSContextMenuArrowProps, ALSContextMenuItemProps, ALSContextMenuSeparatorProps, ALSContextMenuGroupProps, ALSContextMenuGroupLabelProps, ALSContextMenuRadioGroupProps, ALSContextMenuRadioItemProps, ALSContextMenuRadioItemIndicatorProps, ALSContextMenuCheckboxItemProps, ALSContextMenuCheckboxItemIndicatorProps, ALSContextMenuSubmenuRootProps, ALSContextMenuSubmenuTriggerProps, };
|
|
23
23
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -19,9 +19,9 @@ export interface ALSFieldErrorProps extends Field.Error.Props {
|
|
|
19
19
|
children: React.ReactNode;
|
|
20
20
|
className?: string;
|
|
21
21
|
}
|
|
22
|
-
export declare const ALSFieldRoot: React.ForwardRefExoticComponent<ALSFieldRootProps & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
-
export declare const ALSFieldLabel: React.ForwardRefExoticComponent<ALSFieldLabelProps & React.RefAttributes<HTMLLabelElement>>;
|
|
24
|
-
export declare const ALSFieldControl: React.ForwardRefExoticComponent<ALSFieldControlProps & React.RefAttributes<HTMLInputElement>>;
|
|
25
|
-
export declare const ALSFieldHelperText: React.ForwardRefExoticComponent<ALSFieldHelperTextProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
26
|
-
export declare const ALSFieldError: React.ForwardRefExoticComponent<ALSFieldErrorProps & React.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
export declare const ALSFieldRoot: React.ForwardRefExoticComponent<Omit<ALSFieldRootProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
export declare const ALSFieldLabel: React.ForwardRefExoticComponent<Omit<ALSFieldLabelProps, "ref"> & React.RefAttributes<HTMLLabelElement>>;
|
|
24
|
+
export declare const ALSFieldControl: React.ForwardRefExoticComponent<Omit<ALSFieldControlProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
25
|
+
export declare const ALSFieldHelperText: React.ForwardRefExoticComponent<Omit<ALSFieldHelperTextProps, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
26
|
+
export declare const ALSFieldError: React.ForwardRefExoticComponent<Omit<ALSFieldErrorProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
27
27
|
//# sourceMappingURL=ALSField.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSField.d.ts","sourceRoot":"","sources":["../../../src/components/ALSField/ALSField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAM7C,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,IAAI,CAAC,KAAK;IACvD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,KAAK,CAAC,KAAK;IACzD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,oBAAqB,SAAQ,KAAK,CAAC,OAAO,CAAC,KAAK;IAC7D,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,uBAAwB,SAAQ,KAAK,CAAC,WAAW,CAAC,KAAK;IACpE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,KAAK,CAAC,KAAK;IACzD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAID,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"ALSField.d.ts","sourceRoot":"","sources":["../../../src/components/ALSField/ALSField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAM7C,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,IAAI,CAAC,KAAK;IACvD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,KAAK,CAAC,KAAK;IACzD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,oBAAqB,SAAQ,KAAK,CAAC,OAAO,CAAC,KAAK;IAC7D,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,uBAAwB,SAAQ,KAAK,CAAC,WAAW,CAAC,KAAK;IACpE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,KAAK,CAAC,KAAK;IACzD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAID,eAAO,MAAM,YAAY,uGAcxB,CAAC;AAIF,eAAO,MAAM,aAAa,0GAexB,CAAC;AAIH,eAAO,MAAM,eAAe,4GAa1B,CAAC;AAIH,eAAO,MAAM,kBAAkB,mHAe7B,CAAC;AAIH,eAAO,MAAM,aAAa,wGAexB,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { ALSFieldRootProps, ALSFieldLabelProps, ALSFieldControlProps, ALSFieldHelperTextProps, ALSFieldErrorProps } from "./ALSField";
|
|
2
2
|
export declare const ALSField: {
|
|
3
|
-
Root: import("react").ForwardRefExoticComponent<ALSFieldRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
|
-
Label: import("react").ForwardRefExoticComponent<ALSFieldLabelProps & import("react").RefAttributes<HTMLLabelElement>>;
|
|
5
|
-
Control: import("react").ForwardRefExoticComponent<ALSFieldControlProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
-
HelperText: import("react").ForwardRefExoticComponent<ALSFieldHelperTextProps & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
7
|
-
Error: import("react").ForwardRefExoticComponent<ALSFieldErrorProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
3
|
+
Root: import("react").ForwardRefExoticComponent<Omit<ALSFieldRootProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
|
+
Label: import("react").ForwardRefExoticComponent<Omit<ALSFieldLabelProps, "ref"> & import("react").RefAttributes<HTMLLabelElement>>;
|
|
5
|
+
Control: import("react").ForwardRefExoticComponent<Omit<ALSFieldControlProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
+
HelperText: import("react").ForwardRefExoticComponent<Omit<ALSFieldHelperTextProps, "ref"> & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
7
|
+
Error: import("react").ForwardRefExoticComponent<Omit<ALSFieldErrorProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
8
|
};
|
|
9
9
|
export type { ALSFieldRootProps, ALSFieldLabelProps, ALSFieldControlProps, ALSFieldHelperTextProps, ALSFieldErrorProps, };
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -8,6 +8,6 @@ export interface ALSFieldsetLegendProps extends Fieldset.Legend.Props {
|
|
|
8
8
|
children: React.ReactNode;
|
|
9
9
|
className?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare const ALSFieldsetRoot: React.ForwardRefExoticComponent<ALSFieldsetRootProps & React.RefAttributes<HTMLFieldSetElement>>;
|
|
12
|
-
export declare const ALSFieldsetLegend: React.ForwardRefExoticComponent<ALSFieldsetLegendProps & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
export declare const ALSFieldsetRoot: React.ForwardRefExoticComponent<Omit<ALSFieldsetRootProps, "ref"> & React.RefAttributes<HTMLFieldSetElement>>;
|
|
12
|
+
export declare const ALSFieldsetLegend: React.ForwardRefExoticComponent<Omit<ALSFieldsetLegendProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
13
13
|
//# sourceMappingURL=ALSFieldset.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSFieldset.d.ts","sourceRoot":"","sources":["../../../src/components/ALSFieldset/ALSFieldset.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAMnD,MAAM,WAAW,oBAAqB,SAAQ,QAAQ,CAAC,IAAI,CAAC,KAAK;IAC7D,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,sBAAuB,SAAQ,QAAQ,CAAC,MAAM,CAAC,KAAK;IACjE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAID,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"ALSFieldset.d.ts","sourceRoot":"","sources":["../../../src/components/ALSFieldset/ALSFieldset.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAMnD,MAAM,WAAW,oBAAqB,SAAQ,QAAQ,CAAC,IAAI,CAAC,KAAK;IAC7D,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,sBAAuB,SAAQ,QAAQ,CAAC,MAAM,CAAC,KAAK;IACjE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAID,eAAO,MAAM,eAAe,+GAe1B,CAAC;AAIH,eAAO,MAAM,iBAAiB,4GAe5B,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ALSFieldsetRootProps, ALSFieldsetLegendProps } from "./ALSFieldset";
|
|
2
2
|
export declare const ALSFieldset: {
|
|
3
|
-
Root: import("react").ForwardRefExoticComponent<ALSFieldsetRootProps & import("react").RefAttributes<HTMLFieldSetElement>>;
|
|
4
|
-
Legend: import("react").ForwardRefExoticComponent<ALSFieldsetLegendProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
3
|
+
Root: import("react").ForwardRefExoticComponent<Omit<ALSFieldsetRootProps, "ref"> & import("react").RefAttributes<HTMLFieldSetElement>>;
|
|
4
|
+
Legend: import("react").ForwardRefExoticComponent<Omit<ALSFieldsetLegendProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
};
|
|
6
6
|
export type { ALSFieldsetRootProps, ALSFieldsetLegendProps };
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -165,37 +165,37 @@ export interface ALSNavigationMenuBackdropProps extends Omit<NavigationMenu.Back
|
|
|
165
165
|
* ALSNavigationMenu.Root - Groups all parts of the navigation menu
|
|
166
166
|
* Renders a <nav> element at the root, or <div> element when nested.
|
|
167
167
|
*/
|
|
168
|
-
export declare const ALSNavigationMenuRoot: React.ForwardRefExoticComponent<ALSNavigationMenuRootProps & React.RefAttributes<HTMLElement>>;
|
|
168
|
+
export declare const ALSNavigationMenuRoot: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuRootProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
169
169
|
/**
|
|
170
170
|
* ALSNavigationMenu.List - Contains a list of navigation menu items
|
|
171
171
|
* Renders a <ul> element.
|
|
172
172
|
*/
|
|
173
|
-
export declare const ALSNavigationMenuList: React.ForwardRefExoticComponent<ALSNavigationMenuListProps & React.RefAttributes<
|
|
173
|
+
export declare const ALSNavigationMenuList: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuListProps, "ref"> & React.RefAttributes<HTMLUListElement>>;
|
|
174
174
|
/**
|
|
175
175
|
* ALSNavigationMenu.Item - An individual navigation menu item
|
|
176
176
|
* Renders a <li> element.
|
|
177
177
|
*/
|
|
178
|
-
export declare const ALSNavigationMenuItem: React.ForwardRefExoticComponent<ALSNavigationMenuItemProps & React.RefAttributes<
|
|
178
|
+
export declare const ALSNavigationMenuItem: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuItemProps, "ref"> & React.RefAttributes<HTMLLIElement>>;
|
|
179
179
|
/**
|
|
180
180
|
* ALSNavigationMenu.Trigger - Opens the navigation menu popup when hovered or clicked
|
|
181
181
|
* Renders a <button> element.
|
|
182
182
|
*/
|
|
183
|
-
export declare const ALSNavigationMenuTrigger: React.ForwardRefExoticComponent<ALSNavigationMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
183
|
+
export declare const ALSNavigationMenuTrigger: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuTriggerProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
184
184
|
/**
|
|
185
185
|
* ALSNavigationMenu.Icon - An icon that indicates that the trigger opens a menu
|
|
186
186
|
* Typically used to show a chevron icon.
|
|
187
187
|
*/
|
|
188
|
-
export declare const ALSNavigationMenuIcon: React.ForwardRefExoticComponent<ALSNavigationMenuIconProps & React.RefAttributes<HTMLDivElement>>;
|
|
188
|
+
export declare const ALSNavigationMenuIcon: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuIconProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
189
189
|
/**
|
|
190
190
|
* ALSNavigationMenu.Content - A container for the content of the navigation menu item
|
|
191
191
|
* Renders a <div> element.
|
|
192
192
|
*/
|
|
193
|
-
export declare const ALSNavigationMenuContent: React.ForwardRefExoticComponent<ALSNavigationMenuContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
193
|
+
export declare const ALSNavigationMenuContent: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
194
194
|
/**
|
|
195
195
|
* ALSNavigationMenu.Link - A link in the navigation menu
|
|
196
196
|
* Renders an <a> element.
|
|
197
197
|
*/
|
|
198
|
-
export declare const ALSNavigationMenuLink: React.ForwardRefExoticComponent<ALSNavigationMenuLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
198
|
+
export declare const ALSNavigationMenuLink: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
199
199
|
/**
|
|
200
200
|
* ALSNavigationMenu.Portal - A portal element that moves the popup to a different part of the DOM
|
|
201
201
|
* By default, the portal element is appended to <body>.
|
|
@@ -205,27 +205,27 @@ export declare const ALSNavigationMenuPortal: React.FC<ALSNavigationMenuPortalPr
|
|
|
205
205
|
* ALSNavigationMenu.Positioner - Positions the navigation menu against the currently active trigger
|
|
206
206
|
* Renders a <div> element.
|
|
207
207
|
*/
|
|
208
|
-
export declare const ALSNavigationMenuPositioner: React.ForwardRefExoticComponent<ALSNavigationMenuPositionerProps & React.RefAttributes<HTMLDivElement>>;
|
|
208
|
+
export declare const ALSNavigationMenuPositioner: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuPositionerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
209
209
|
/**
|
|
210
210
|
* ALSNavigationMenu.Popup - A container for the navigation menu contents
|
|
211
211
|
* Renders a <nav> element.
|
|
212
212
|
*/
|
|
213
|
-
export declare const ALSNavigationMenuPopup: React.ForwardRefExoticComponent<ALSNavigationMenuPopupProps & React.RefAttributes<HTMLElement>>;
|
|
213
|
+
export declare const ALSNavigationMenuPopup: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuPopupProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
214
214
|
/**
|
|
215
215
|
* ALSNavigationMenu.Viewport - The clipping viewport of the navigation menu's current content
|
|
216
216
|
* Renders a <div> element.
|
|
217
217
|
*/
|
|
218
|
-
export declare const ALSNavigationMenuViewport: React.ForwardRefExoticComponent<ALSNavigationMenuViewportProps & React.RefAttributes<HTMLDivElement>>;
|
|
218
|
+
export declare const ALSNavigationMenuViewport: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuViewportProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
219
219
|
/**
|
|
220
220
|
* ALSNavigationMenu.Arrow - Displays an element pointing toward the navigation menu's current anchor
|
|
221
221
|
* Renders a <div> element.
|
|
222
222
|
*/
|
|
223
|
-
export declare const ALSNavigationMenuArrow: React.ForwardRefExoticComponent<ALSNavigationMenuArrowProps & React.RefAttributes<HTMLDivElement>>;
|
|
223
|
+
export declare const ALSNavigationMenuArrow: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuArrowProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
224
224
|
/**
|
|
225
225
|
* ALSNavigationMenu.Backdrop - A backdrop for the navigation menu popup
|
|
226
226
|
* Renders a <div> element.
|
|
227
227
|
*/
|
|
228
|
-
export declare const ALSNavigationMenuBackdrop: React.ForwardRefExoticComponent<ALSNavigationMenuBackdropProps & React.RefAttributes<HTMLDivElement>>;
|
|
228
|
+
export declare const ALSNavigationMenuBackdrop: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuBackdropProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
229
229
|
/**
|
|
230
230
|
* Props for LinkCard helper component
|
|
231
231
|
*/
|
|
@@ -239,5 +239,5 @@ export interface ALSNavigationMenuLinkCardProps extends ALSNavigationMenuLinkPro
|
|
|
239
239
|
* ALSNavigationMenu.LinkCard - A styled link card for use within navigation menu content
|
|
240
240
|
* Provides a consistent card-style link with title and description.
|
|
241
241
|
*/
|
|
242
|
-
export declare const ALSNavigationMenuLinkCard: React.ForwardRefExoticComponent<ALSNavigationMenuLinkCardProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
242
|
+
export declare const ALSNavigationMenuLinkCard: React.ForwardRefExoticComponent<Omit<ALSNavigationMenuLinkCardProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
243
243
|
//# sourceMappingURL=ALSNavigationMenu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSNavigationMenu.d.ts","sourceRoot":"","sources":["../../../src/components/ALSNavigationMenu/ALSNavigationMenu.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"ALSNavigationMenu.d.ts","sourceRoot":"","sources":["../../../src/components/ALSNavigationMenu/ALSNavigationMenu.tsx"],"names":[],"mappings":"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"}
|