@als-tp/als-react-ts-ui 0.5.4 → 0.6.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/README.md +1 -1
- package/dist/aicomponents/ALSAIConversation/ALSAIConversation.d.ts +52 -0
- package/dist/aicomponents/ALSAIConversation/ALSAIConversation.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIConversation/index.d.ts +8 -0
- package/dist/aicomponents/ALSAIConversation/index.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIMessage/ALSAIMessage.d.ts +102 -0
- package/dist/aicomponents/ALSAIMessage/ALSAIMessage.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIMessage/index.d.ts +7 -0
- package/dist/aicomponents/ALSAIMessage/index.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIPromptInput/ALSAIPromptInput.d.ts +242 -0
- package/dist/aicomponents/ALSAIPromptInput/ALSAIPromptInput.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIPromptInput/index.d.ts +19 -0
- package/dist/aicomponents/ALSAIPromptInput/index.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIResponse/ALSAIResponse.d.ts +12 -0
- package/dist/aicomponents/ALSAIResponse/ALSAIResponse.d.ts.map +1 -0
- package/dist/aicomponents/ALSAIResponse/index.d.ts +5 -0
- package/dist/aicomponents/ALSAIResponse/index.d.ts.map +1 -0
- package/dist/als-react-ts-ui.js +47083 -15523
- package/dist/components/ALSAccordion/ALSAccordion.d.ts +6 -7
- package/dist/components/ALSAccordion/ALSAccordion.d.ts.map +1 -1
- package/dist/components/ALSAlertDialog/ALSAlertDialog.d.ts.map +1 -1
- 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 +16 -16
- package/dist/components/ALSCheckbox/ALSCheckbox.d.ts +1 -1
- package/dist/components/ALSCheckbox/ALSCheckbox.d.ts.map +1 -1
- package/dist/components/ALSCheckboxGroup/ALSCheckboxGroup.d.ts +1 -1
- package/dist/components/ALSCheckboxGroup/ALSCheckboxGroup.d.ts.map +1 -1
- 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 +2 -2
- package/dist/components/ALSContextMenu/ALSContextMenu.d.ts +1 -1
- package/dist/components/ALSContextMenu/ALSContextMenu.d.ts.map +1 -1
- package/dist/components/ALSField/ALSField.d.ts +1 -1
- package/dist/components/ALSField/ALSField.d.ts.map +1 -1
- package/dist/components/ALSFieldset/ALSFieldset.d.ts +1 -1
- package/dist/components/ALSFieldset/ALSFieldset.d.ts.map +1 -1
- package/dist/components/ALSLoader/ALSLoader.d.ts +54 -0
- package/dist/components/ALSLoader/ALSLoader.d.ts.map +1 -0
- package/dist/components/ALSLoader/index.d.ts +5 -0
- package/dist/components/ALSLoader/index.d.ts.map +1 -0
- package/dist/components/ALSNavigationMenu/ALSNavigationMenu.d.ts +1 -1
- package/dist/components/ALSNavigationMenu/ALSNavigationMenu.d.ts.map +1 -1
- package/dist/components/ALSPopover/ALSPopover.d.ts +13 -13
- package/dist/components/ALSPopover/ALSPopover.d.ts.map +1 -1
- package/dist/components/ALSPopover/index.d.ts +15 -15
- package/dist/components/ALSPopover/index.d.ts.map +1 -1
- package/dist/components/ALSProgress/ALSProgress.d.ts +6 -7
- 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 +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 +6 -6
- package/dist/components/ALSToast/ALSToast.d.ts +1 -1
- package/dist/components/ALSToast/ALSToast.d.ts.map +1 -1
- package/dist/components/ALSToast/index.d.ts +1 -1
- package/dist/components/ALSToast/index.d.ts.map +1 -1
- package/dist/components/ALSToolbar/ALSToolbar.d.ts +7 -8
- package/dist/components/ALSToolbar/ALSToolbar.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +29 -25
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Progress } from "@base-ui
|
|
2
|
-
import type React from "react";
|
|
1
|
+
import { Progress } from "@base-ui/react/progress";
|
|
3
2
|
/**
|
|
4
3
|
* Progress variant types
|
|
5
4
|
*/
|
|
@@ -34,22 +33,22 @@ export type ALSProgressValueProps = React.ComponentPropsWithoutRef<typeof Progre
|
|
|
34
33
|
/**
|
|
35
34
|
* Root component that provides progress state context
|
|
36
35
|
*/
|
|
37
|
-
declare const ALSProgressRoot:
|
|
36
|
+
declare const ALSProgressRoot: import("react").ForwardRefExoticComponent<ALSProgressRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
38
37
|
/**
|
|
39
38
|
* Container for the progress indicator
|
|
40
39
|
*/
|
|
41
|
-
declare const ALSProgressTrack:
|
|
40
|
+
declare const ALSProgressTrack: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressTrackProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
42
41
|
/**
|
|
43
42
|
* Visual indicator showing progress completion
|
|
44
43
|
*/
|
|
45
|
-
declare const ALSProgressIndicator:
|
|
44
|
+
declare const ALSProgressIndicator: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressIndicatorProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
46
45
|
/**
|
|
47
46
|
* Optional label for the progress bar
|
|
48
47
|
*/
|
|
49
|
-
declare const ALSProgressLabel:
|
|
48
|
+
declare const ALSProgressLabel: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressLabelProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
50
49
|
/**
|
|
51
50
|
* Optional value display (e.g., "75%")
|
|
52
51
|
*/
|
|
53
|
-
declare const ALSProgressValue:
|
|
52
|
+
declare const ALSProgressValue: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressValueProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
54
53
|
export { ALSProgressRoot, ALSProgressTrack, ALSProgressIndicator, ALSProgressLabel, ALSProgressValue, };
|
|
55
54
|
//# sourceMappingURL=ALSProgress.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSProgress.d.ts","sourceRoot":"","sources":["../../../src/components/ALSProgress/ALSProgress.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ALSProgress.d.ts","sourceRoot":"","sources":["../../../src/components/ALSProgress/ALSProgress.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAMnD;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE1E;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE9C;;GAEG;AACH,MAAM,WAAW,oBACb,SAAQ,KAAK,CAAC,wBAAwB,CAAC,OAAO,QAAQ,CAAC,IAAI,CAAC;IAC5D,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,IAAI,CAAC,EAAE,YAAY,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,wBAAwB,CAC9D,OAAO,QAAQ,CAAC,KAAK,CACxB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC,wBAAwB,CAClE,OAAO,QAAQ,CAAC,SAAS,CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,wBAAwB,CAC9D,OAAO,QAAQ,CAAC,KAAK,CACxB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,wBAAwB,CAC9D,OAAO,QAAQ,CAAC,KAAK,CACxB,CAAC;AAEF;;GAEG;AACH,QAAA,MAAM,eAAe,iHAepB,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,gBAAgB,8MAUrB,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,oBAAoB,kNAWxB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,gBAAgB,gNAUrB,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,gBAAgB,gNAUrB,CAAC;AAGF,OAAO,EACH,eAAe,EACf,gBAAgB,EAChB,oBAAoB,EACpB,gBAAgB,EAChB,gBAAgB,GACnB,CAAC"}
|
|
@@ -4,10 +4,10 @@ import type { ALSProgressRootProps, ALSProgressTrackProps, ALSProgressIndicatorP
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const ALSProgress: {
|
|
6
6
|
Root: import("react").ForwardRefExoticComponent<ALSProgressRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
-
Track: import("react").ForwardRefExoticComponent<Omit<import("@base-ui
|
|
8
|
-
Indicator: import("react").ForwardRefExoticComponent<Omit<import("@base-ui
|
|
9
|
-
Label: import("react").ForwardRefExoticComponent<Omit<import("@base-ui
|
|
10
|
-
Value: import("react").ForwardRefExoticComponent<Omit<import("@base-ui
|
|
7
|
+
Track: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressTrackProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
Indicator: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressIndicatorProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
|
+
Label: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressLabelProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
10
|
+
Value: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/progress").ProgressValueProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
11
11
|
};
|
|
12
12
|
export type { ALSProgressRootProps, ALSProgressTrackProps, ALSProgressIndicatorProps, ALSProgressLabelProps, ALSProgressValueProps, };
|
|
13
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -123,7 +123,7 @@ export declare const ALSRadioGroupRoot: React.FC<ALSRadioGroupProps>;
|
|
|
123
123
|
/**
|
|
124
124
|
* ALSRadioRoot - Wrapper around RadioGroup from Base UI for custom composition
|
|
125
125
|
*/
|
|
126
|
-
export declare const ALSRadioRoot: React.ForwardRefExoticComponent<Omit<import("@base-ui
|
|
126
|
+
export declare const ALSRadioRoot: React.ForwardRefExoticComponent<Omit<import("@base-ui/react/radio-group").RadioGroupProps & React.RefAttributes<HTMLDivElement> & {
|
|
127
127
|
size?: ALSRadioSize;
|
|
128
128
|
variant?: ALSRadioVariant;
|
|
129
129
|
orientation?: ALSRadioOrientation;
|
|
@@ -27,7 +27,7 @@ export declare const ALSRadio: {
|
|
|
27
27
|
/** Complete RadioGroup with options array - simplest usage */
|
|
28
28
|
Group: import("react").FC<ALSRadioGroupProps>;
|
|
29
29
|
/** Base RadioGroup for custom composition */
|
|
30
|
-
Root: import("react").ForwardRefExoticComponent<Omit<import("@base-ui
|
|
30
|
+
Root: import("react").ForwardRefExoticComponent<Omit<import("@base-ui/react/radio-group").RadioGroupProps & import("react").RefAttributes<HTMLDivElement> & {
|
|
31
31
|
size?: ALSRadioSize;
|
|
32
32
|
variant?: ALSRadioVariant;
|
|
33
33
|
orientation?: ALSRadioOrientation;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { Select } from "@base-ui
|
|
2
|
+
import { Select } from "@base-ui/react/select";
|
|
3
3
|
type ALSSelectRootProps<Value, Multiple extends boolean = boolean> = Select.Root.Props<Value, Multiple>;
|
|
4
4
|
declare function ALSSelectRoot<Value>(props: ALSSelectRootProps<Value>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
interface ALSSelectTriggerProps extends Select.Trigger.Props {
|
|
@@ -14,17 +14,17 @@ declare const ALSSelectTrigger: React.ForwardRefExoticComponent<ALSSelectTrigger
|
|
|
14
14
|
type ALSSelectPortalProps = Select.Portal.Props;
|
|
15
15
|
declare function ALSSelectPortal(props: ALSSelectPortalProps): import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
type ALSSelectPositionerProps = Select.Positioner.Props;
|
|
17
|
-
declare const ALSSelectPositioner: React.ForwardRefExoticComponent<import("@base-ui
|
|
17
|
+
declare const ALSSelectPositioner: React.ForwardRefExoticComponent<import("@base-ui/react/select").SelectPositionerProps & React.RefAttributes<HTMLDivElement>>;
|
|
18
18
|
type ALSSelectPopupProps = Select.Popup.Props;
|
|
19
|
-
declare const ALSSelectPopup: React.ForwardRefExoticComponent<import("@base-ui
|
|
19
|
+
declare const ALSSelectPopup: React.ForwardRefExoticComponent<import("@base-ui/react/select").SelectPopupProps & React.RefAttributes<HTMLDivElement>>;
|
|
20
20
|
type ALSSelectItemProps = Select.Item.Props;
|
|
21
|
-
declare const ALSSelectItem: React.ForwardRefExoticComponent<import("@base-ui
|
|
21
|
+
declare const ALSSelectItem: React.ForwardRefExoticComponent<import("@base-ui/react/select").SelectItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
22
22
|
type ALSSelectGroupProps = Select.Group.Props;
|
|
23
|
-
declare const ALSSelectGroup: React.ForwardRefExoticComponent<import("@base-ui
|
|
23
|
+
declare const ALSSelectGroup: React.ForwardRefExoticComponent<import("@base-ui/react/select").SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
24
24
|
type ALSSelectLabelProps = Select.GroupLabel.Props;
|
|
25
|
-
declare const ALSSelectLabel: React.ForwardRefExoticComponent<import("@base-ui
|
|
25
|
+
declare const ALSSelectLabel: React.ForwardRefExoticComponent<import("@base-ui/react/select").SelectGroupLabelProps & React.RefAttributes<HTMLDivElement>>;
|
|
26
26
|
type ALSSelectSeparatorProps = Select.Separator.Props;
|
|
27
|
-
declare const ALSSelectSeparator: React.ForwardRefExoticComponent<import("@base-ui
|
|
27
|
+
declare const ALSSelectSeparator: React.ForwardRefExoticComponent<import("@base-ui/react/separator").SeparatorProps & React.RefAttributes<HTMLDivElement>>;
|
|
28
28
|
export { ALSSelectRoot, ALSSelectTrigger, ALSSelectPortal, ALSSelectPositioner, ALSSelectPopup, ALSSelectItem, ALSSelectGroup, ALSSelectLabel, ALSSelectSeparator, };
|
|
29
29
|
export type { ALSSelectRootProps, ALSSelectTriggerProps, ALSSelectPortalProps, ALSSelectPositionerProps, ALSSelectPopupProps, ALSSelectItemProps, ALSSelectGroupProps, ALSSelectLabelProps, ALSSelectSeparatorProps, };
|
|
30
30
|
//# sourceMappingURL=ALSSelect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSSelect.d.ts","sourceRoot":"","sources":["../../../src/components/ALSSelect/ALSSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ALSSelect.d.ts","sourceRoot":"","sources":["../../../src/components/ALSSelect/ALSSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAS/C,KAAK,kBAAkB,CACnB,KAAK,EACL,QAAQ,SAAS,OAAO,GAAG,OAAO,IAClC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;AAEvC,iBAAS,aAAa,CAAC,KAAK,EAAE,KAAK,EAAE,kBAAkB,CAAC,KAAK,CAAC,2CAG7D;AAMD,UAAU,qBAAsB,SAAQ,MAAM,CAAC,OAAO,CAAC,KAAK;IACxD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC9C;AAED,QAAA,MAAM,gBAAgB,iGAgCpB,CAAC;AAQH,KAAK,oBAAoB,GAAG,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC;AAEhD,iBAAS,eAAe,CAAC,KAAK,EAAE,oBAAoB,2CAEnD;AAKD,KAAK,wBAAwB,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC;AAExD,QAAA,MAAM,mBAAmB,8HAYvB,CAAC;AAOH,KAAK,mBAAmB,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;AAE9C,QAAA,MAAM,cAAc,yHAUnB,CAAC;AAOF,KAAK,kBAAkB,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;AAE5C,QAAA,MAAM,aAAa,wHAelB,CAAC;AAOF,KAAK,mBAAmB,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;AAE9C,QAAA,MAAM,cAAc,yHAUnB,CAAC;AAOF,KAAK,mBAAmB,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC;AAEnD,QAAA,MAAM,cAAc,8HAUnB,CAAC;AAOF,KAAK,uBAAuB,GAAG,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC;AAEtD,QAAA,MAAM,kBAAkB,0HAWtB,CAAC;AAIH,OAAO,EACH,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,mBAAmB,EACnB,cAAc,EACd,aAAa,EACb,cAAc,EACd,cAAc,EACd,kBAAkB,GACrB,CAAC;AAEF,YAAY,EACR,kBAAkB,EAClB,qBAAqB,EACrB,oBAAoB,EACpB,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EAClB,mBAAmB,EACnB,mBAAmB,EACnB,uBAAuB,GAC1B,CAAC"}
|
|
@@ -4,12 +4,12 @@ export declare const ALSSelect: {
|
|
|
4
4
|
Root: typeof ALSSelectRoot;
|
|
5
5
|
Trigger: import("react").ForwardRefExoticComponent<ALSSelectTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
6
6
|
Portal: typeof ALSSelectPortal;
|
|
7
|
-
Positioner: import("react").ForwardRefExoticComponent<import("@base-ui
|
|
8
|
-
Popup: import("react").ForwardRefExoticComponent<import("@base-ui
|
|
9
|
-
Item: import("react").ForwardRefExoticComponent<import("@base-ui
|
|
10
|
-
Group: import("react").ForwardRefExoticComponent<import("@base-ui
|
|
11
|
-
Label: import("react").ForwardRefExoticComponent<import("@base-ui
|
|
12
|
-
Separator: import("react").ForwardRefExoticComponent<import("@base-ui
|
|
7
|
+
Positioner: import("react").ForwardRefExoticComponent<import("@base-ui/react/select").SelectPositionerProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
Popup: import("react").ForwardRefExoticComponent<import("@base-ui/react/select").SelectPopupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
|
+
Item: import("react").ForwardRefExoticComponent<import("@base-ui/react/select").SelectItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
10
|
+
Group: import("react").ForwardRefExoticComponent<import("@base-ui/react/select").SelectGroupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
11
|
+
Label: import("react").ForwardRefExoticComponent<import("@base-ui/react/select").SelectGroupLabelProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
+
Separator: import("react").ForwardRefExoticComponent<import("@base-ui/react/separator").SeparatorProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
13
13
|
};
|
|
14
14
|
export type { ALSSelectRootProps, ALSSelectTriggerProps, ALSSelectPortalProps, ALSSelectPositionerProps, ALSSelectPopupProps, ALSSelectItemProps, ALSSelectGroupProps, ALSSelectLabelProps, ALSSelectSeparatorProps, };
|
|
15
15
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { Toast } from "@base-ui
|
|
2
|
+
import { Toast } from "@base-ui/react/toast";
|
|
3
3
|
export type ToastType = "success" | "error" | "warning" | "info" | "default";
|
|
4
4
|
interface ALSToastProviderProps {
|
|
5
5
|
/** Maximum number of toasts that can be displayed at once */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSToast.d.ts","sourceRoot":"","sources":["../../../src/components/ALSToast/ALSToast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ALSToast.d.ts","sourceRoot":"","sources":["../../../src/components/ALSToast/ALSToast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAO7C,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAAC;AAM7E,UAAU,qBAAqB;IAC3B,6DAA6D;IAC7D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sEAAsE;IACtE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4DAA4D;IAC5D,YAAY,CAAC,EAAE,UAAU,CAAC,OAAO,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAC3D,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAerD,CAAC;AAQF,UAAU,mBAAmB;IACzB,uCAAuC;IACvC,SAAS,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC/B,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAKjD,CAAC;AAQF,UAAU,qBAAqB;IAC3B,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAED,QAAA,MAAM,gBAAgB,8FA0CrB,CAAC;AAQF,UAAU,iBAAiB;IACvB,4CAA4C;IAE5C,KAAK,EAAE,GAAG,CAAC;IACX,+DAA+D;IAC/D,cAAc,CAAC,EACT,MAAM,GACN,OAAO,GACP,IAAI,GACJ,MAAM,GACN,CAAC,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,MAAM,CAAC,EAAE,CAAC;IAC3C,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,QAAA,MAAM,YAAY,0FA6BjB,CAAC;AAQF,UAAU,oBAAoB;IAC1B,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,QAAA,MAAM,eAAe,6FAYpB,CAAC;AAQF,UAAU,kBAAkB;IACxB,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,QAAA,MAAM,aAAa,+FAYlB,CAAC;AAQF,UAAU,wBAAwB;IAC9B,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,QAAA,MAAM,mBAAmB,uGAiBvB,CAAC;AAQH,UAAU,mBAAmB;IACzB,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,eAAe;IACf,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,oBAAoB;IACpB,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;CACxD;AAED,QAAA,MAAM,cAAc,+FAiBnB,CAAC;AAQF,UAAU,kBAAkB;IACxB,4BAA4B;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,oBAAoB;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,QAAA,MAAM,aAAa,8FAYlB,CAAC;AA2BF,OAAO,EACH,gBAAgB,EAChB,cAAc,EACd,gBAAgB,EAChB,YAAY,EACZ,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,aAAa,GAChB,CAAC;AAEF,YAAY,EACR,qBAAqB,EACrB,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,GACrB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ALSToastProviderProps, ALSToastPortalProps, ALSToastViewportProps, ALSToastRootProps, ALSToastContentProps, ALSToastTitleProps, ALSToastDescriptionProps, ALSToastActionProps, ALSToastCloseProps } from "./ALSToast";
|
|
2
|
-
import { Toast } from "@base-ui
|
|
2
|
+
import { Toast } from "@base-ui/react/toast";
|
|
3
3
|
export declare const ALSToast: {
|
|
4
4
|
Provider: import("react").FC<ALSToastProviderProps>;
|
|
5
5
|
Portal: import("react").FC<ALSToastPortalProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSToast/index.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EACR,qBAAqB,EACrB,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EACrB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSToast/index.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EACR,qBAAqB,EACrB,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EACrB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAM7C,eAAO,MAAM,QAAQ;;;;;;;;;;;;CAYpB,CAAC;AAEF,YAAY,EACR,qBAAqB,EACrB,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,GACrB,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { Toolbar } from "@base-ui-components/react/toolbar";
|
|
1
|
+
import { Toolbar } from "@base-ui/react/toolbar";
|
|
3
2
|
/**
|
|
4
3
|
* Props for the ALSToolbar Root component
|
|
5
4
|
*/
|
|
@@ -117,25 +116,25 @@ export interface ALSToolbarInputProps extends React.ComponentPropsWithRef<typeof
|
|
|
117
116
|
/**
|
|
118
117
|
* Root container for the toolbar
|
|
119
118
|
*/
|
|
120
|
-
export declare const ALSToolbarRoot:
|
|
119
|
+
export declare const ALSToolbarRoot: import("react").ForwardRefExoticComponent<Omit<ALSToolbarRootProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
121
120
|
/**
|
|
122
121
|
* Button component for the toolbar
|
|
123
122
|
*/
|
|
124
|
-
export declare const ALSToolbarButton:
|
|
123
|
+
export declare const ALSToolbarButton: import("react").ForwardRefExoticComponent<Omit<ALSToolbarButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
125
124
|
/**
|
|
126
125
|
* Link component for the toolbar
|
|
127
126
|
*/
|
|
128
|
-
export declare const ALSToolbarLink:
|
|
127
|
+
export declare const ALSToolbarLink: import("react").ForwardRefExoticComponent<Omit<ALSToolbarLinkProps, "ref"> & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
129
128
|
/**
|
|
130
129
|
* Group component for grouping toolbar items
|
|
131
130
|
*/
|
|
132
|
-
export declare const ALSToolbarGroup:
|
|
131
|
+
export declare const ALSToolbarGroup: import("react").ForwardRefExoticComponent<Omit<ALSToolbarGroupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
133
132
|
/**
|
|
134
133
|
* Separator component for the toolbar
|
|
135
134
|
*/
|
|
136
|
-
export declare const ALSToolbarSeparator:
|
|
135
|
+
export declare const ALSToolbarSeparator: import("react").ForwardRefExoticComponent<Omit<ALSToolbarSeparatorProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
137
136
|
/**
|
|
138
137
|
* Input component for the toolbar
|
|
139
138
|
*/
|
|
140
|
-
export declare const ALSToolbarInput:
|
|
139
|
+
export declare const ALSToolbarInput: import("react").ForwardRefExoticComponent<Omit<ALSToolbarInputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
141
140
|
//# sourceMappingURL=ALSToolbar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ALSToolbar.d.ts","sourceRoot":"","sources":["../../../src/components/ALSToolbar/ALSToolbar.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ALSToolbar.d.ts","sourceRoot":"","sources":["../../../src/components/ALSToolbar/ALSToolbar.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AAMjD;;GAEG;AACH,MAAM,WAAW,mBACb,SAAQ,KAAK,CAAC,qBAAqB,CAAC,OAAO,OAAO,CAAC,IAAI,CAAC;IACxD;;;OAGG;IACH,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,qBACb,SAAQ,KAAK,CAAC,qBAAqB,CAAC,OAAO,OAAO,CAAC,MAAM,CAAC;IAC1D;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,mBACb,SAAQ,KAAK,CAAC,qBAAqB,CAAC,OAAO,OAAO,CAAC,IAAI,CAAC;IACxD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,oBACb,SAAQ,KAAK,CAAC,qBAAqB,CAAC,OAAO,OAAO,CAAC,KAAK,CAAC;IACzD;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,wBACb,SAAQ,KAAK,CAAC,qBAAqB,CAAC,OAAO,OAAO,CAAC,SAAS,CAAC;IAC7D;;;OAGG;IACH,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,oBACb,SAAQ,KAAK,CAAC,qBAAqB,CAAC,OAAO,OAAO,CAAC,KAAK,CAAC;IACzD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAID;;GAEG;AACH,eAAO,MAAM,cAAc,6HA8B1B,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,gBAAgB,kIA8B5B,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,cAAc,gIAazB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,eAAe,8HAiB3B,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,mBAAmB,kIAgB9B,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,eAAe,gIAa1B,CAAC"}
|