@als-tp/als-react-ts-ui 0.8.1 → 0.10.0

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.
Files changed (52) hide show
  1. package/README.md +2 -2
  2. package/dist/aicomponents/ALSAITask/ALSAITask.d.ts +38 -0
  3. package/dist/aicomponents/ALSAITask/ALSAITask.d.ts.map +1 -0
  4. package/dist/aicomponents/ALSAITask/index.d.ts +10 -0
  5. package/dist/aicomponents/ALSAITask/index.d.ts.map +1 -0
  6. package/dist/aicomponents/ALSAITool/ALSAITool.d.ts +41 -0
  7. package/dist/aicomponents/ALSAITool/ALSAITool.d.ts.map +1 -0
  8. package/dist/aicomponents/ALSAITool/index.d.ts +10 -0
  9. package/dist/aicomponents/ALSAITool/index.d.ts.map +1 -0
  10. package/dist/als-react-ts-ui.js +44654 -20829
  11. package/dist/components/ALSCard/ALSCard.d.ts +136 -0
  12. package/dist/components/ALSCard/ALSCard.d.ts.map +1 -0
  13. package/dist/components/ALSCard/index.d.ts +12 -0
  14. package/dist/components/ALSCard/index.d.ts.map +1 -0
  15. package/dist/components/ALSChart/ALSChart.d.ts +114 -0
  16. package/dist/components/ALSChart/ALSChart.d.ts.map +1 -0
  17. package/dist/components/ALSChart/index.d.ts +12 -0
  18. package/dist/components/ALSChart/index.d.ts.map +1 -0
  19. package/dist/components/ALSChart/utils.d.ts +7 -0
  20. package/dist/components/ALSChart/utils.d.ts.map +1 -0
  21. package/dist/components/ALSCheckbox/ALSCheckbox.d.ts +1 -0
  22. package/dist/components/ALSCheckbox/ALSCheckbox.d.ts.map +1 -1
  23. package/dist/components/ALSItem/ALSItem.d.ts +131 -0
  24. package/dist/components/ALSItem/ALSItem.d.ts.map +1 -0
  25. package/dist/components/ALSItem/index.d.ts +12 -0
  26. package/dist/components/ALSItem/index.d.ts.map +1 -0
  27. package/dist/components/ALSPagination/ALSPagination.d.ts +101 -0
  28. package/dist/components/ALSPagination/ALSPagination.d.ts.map +1 -0
  29. package/dist/components/ALSPagination/index.d.ts +14 -0
  30. package/dist/components/ALSPagination/index.d.ts.map +1 -0
  31. package/dist/components/ALSPagination/util.d.ts +5 -0
  32. package/dist/components/ALSPagination/util.d.ts.map +1 -0
  33. package/dist/components/ALSSelect/ALSSelect.d.ts.map +1 -1
  34. package/dist/components/ALSTable/ALSTable.d.ts +168 -0
  35. package/dist/components/ALSTable/ALSTable.d.ts.map +1 -0
  36. package/dist/components/ALSTable/index.d.ts +17 -0
  37. package/dist/components/ALSTable/index.d.ts.map +1 -0
  38. package/dist/components/ALSTabs/ALSTabs.d.ts +64 -8
  39. package/dist/components/ALSTabs/ALSTabs.d.ts.map +1 -1
  40. package/dist/components/ALSTabs/index.d.ts +7 -1
  41. package/dist/components/ALSTabs/index.d.ts.map +1 -1
  42. package/dist/components/ALSTree/ALSTree.d.ts +37 -0
  43. package/dist/components/ALSTree/ALSTree.d.ts.map +1 -0
  44. package/dist/components/ALSTree/index.d.ts +7 -0
  45. package/dist/components/ALSTree/index.d.ts.map +1 -0
  46. package/dist/index.css +1 -1
  47. package/dist/index.d.ts +6 -0
  48. package/dist/index.d.ts.map +1 -1
  49. package/dist/logo.svg +59 -0
  50. package/package.json +3 -1
  51. package/dist/components/ALSTabs/components.d.ts +0 -63
  52. package/dist/components/ALSTabs/components.d.ts.map +0 -1
@@ -0,0 +1,136 @@
1
+ import React from "react";
2
+ export type ALSCardVariant = "default" | "elevated" | "outlined" | "glassmorphism";
3
+ export type ALSCardSize = "sm" | "md" | "lg";
4
+ export interface ALSCardRootProps extends React.HTMLAttributes<HTMLDivElement> {
5
+ /**
6
+ * Visual style variant
7
+ * @default 'default'
8
+ */
9
+ variant?: ALSCardVariant;
10
+ /**
11
+ * Card size
12
+ * @default 'md'
13
+ */
14
+ size?: ALSCardSize;
15
+ /**
16
+ * Whether the card is interactive (hoverable, clickable)
17
+ * @default false
18
+ */
19
+ interactive?: boolean;
20
+ /**
21
+ * Whether the card is disabled
22
+ * @default false
23
+ */
24
+ disabled?: boolean;
25
+ /**
26
+ * Additional CSS class name
27
+ */
28
+ className?: string;
29
+ /**
30
+ * Card content
31
+ */
32
+ children?: React.ReactNode;
33
+ }
34
+ export interface ALSCardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
35
+ /**
36
+ * Additional CSS class name
37
+ */
38
+ className?: string;
39
+ /**
40
+ * Header content
41
+ */
42
+ children?: React.ReactNode;
43
+ }
44
+ export interface ALSCardBodyProps extends React.HTMLAttributes<HTMLDivElement> {
45
+ /**
46
+ * Additional CSS class name
47
+ */
48
+ className?: string;
49
+ /**
50
+ * Body content
51
+ */
52
+ children?: React.ReactNode;
53
+ }
54
+ export interface ALSCardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
55
+ /**
56
+ * Additional CSS class name
57
+ */
58
+ className?: string;
59
+ /**
60
+ * Footer content
61
+ */
62
+ children?: React.ReactNode;
63
+ }
64
+ export interface ALSCardMediaProps extends React.ImgHTMLAttributes<HTMLImageElement> {
65
+ /**
66
+ * Image source URL
67
+ */
68
+ src: string;
69
+ /**
70
+ * Image alt text
71
+ */
72
+ alt: string;
73
+ /**
74
+ * Additional CSS class name
75
+ */
76
+ className?: string;
77
+ /**
78
+ * Media aspect ratio
79
+ * @default '16/9'
80
+ */
81
+ aspectRatio?: string;
82
+ }
83
+ export interface ALSCardTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
84
+ /**
85
+ * Title element level
86
+ * @default 'h3'
87
+ */
88
+ as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
89
+ /**
90
+ * Additional CSS class name
91
+ */
92
+ className?: string;
93
+ /**
94
+ * Title content
95
+ */
96
+ children?: React.ReactNode;
97
+ }
98
+ export interface ALSCardDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
99
+ /**
100
+ * Additional CSS class name
101
+ */
102
+ className?: string;
103
+ /**
104
+ * Description content
105
+ */
106
+ children?: React.ReactNode;
107
+ }
108
+ /**
109
+ * Root card container component
110
+ */
111
+ export declare const ALSCardRoot: React.ForwardRefExoticComponent<ALSCardRootProps & React.RefAttributes<HTMLDivElement>>;
112
+ /**
113
+ * Card header component
114
+ */
115
+ export declare const ALSCardHeader: React.ForwardRefExoticComponent<ALSCardHeaderProps & React.RefAttributes<HTMLDivElement>>;
116
+ /**
117
+ * Card body component
118
+ */
119
+ export declare const ALSCardBody: React.ForwardRefExoticComponent<ALSCardBodyProps & React.RefAttributes<HTMLDivElement>>;
120
+ /**
121
+ * Card footer component
122
+ */
123
+ export declare const ALSCardFooter: React.ForwardRefExoticComponent<ALSCardFooterProps & React.RefAttributes<HTMLDivElement>>;
124
+ /**
125
+ * Card media/image component
126
+ */
127
+ export declare const ALSCardMedia: React.ForwardRefExoticComponent<ALSCardMediaProps & React.RefAttributes<HTMLImageElement>>;
128
+ /**
129
+ * Card title component
130
+ */
131
+ export declare const ALSCardTitle: React.ForwardRefExoticComponent<ALSCardTitleProps & React.RefAttributes<HTMLHeadingElement>>;
132
+ /**
133
+ * Card description component
134
+ */
135
+ export declare const ALSCardDescription: React.ForwardRefExoticComponent<ALSCardDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
136
+ //# sourceMappingURL=ALSCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSCard.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCard/ALSCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,MAAM,cAAc,GACpB,SAAS,GACT,UAAU,GACV,UAAU,GACV,eAAe,CAAC;AACtB,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE7C,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC1E;;;OAGG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;IAEzB;;;OAGG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,MAAM,WAAW,kBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC5C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC1E;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,MAAM,WAAW,kBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC5C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,MAAM,WAAW,iBACb,SAAQ,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC;IACjD;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,iBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,kBAAkB,CAAC;IAChD;;;OAGG;IACH,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAE7C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,MAAM,WAAW,uBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,oBAAoB,CAAC;IAClD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AA6BD;;GAEG;AACH,eAAO,MAAM,WAAW,yFAwCvB,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,aAAa,2FAmBxB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,WAAW,yFAkBvB,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,aAAa,2FAmBxB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,YAAY,4FAmBvB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,YAAY,8FAevB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,kBAAkB,sGAmB7B,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ALSCardRootProps, ALSCardHeaderProps, ALSCardBodyProps, ALSCardFooterProps, ALSCardMediaProps, ALSCardTitleProps, ALSCardDescriptionProps, ALSCardVariant, ALSCardSize } from "./ALSCard";
2
+ export declare const ALSCard: {
3
+ Root: import("react").ForwardRefExoticComponent<ALSCardRootProps & import("react").RefAttributes<HTMLDivElement>>;
4
+ Header: import("react").ForwardRefExoticComponent<ALSCardHeaderProps & import("react").RefAttributes<HTMLDivElement>>;
5
+ Body: import("react").ForwardRefExoticComponent<ALSCardBodyProps & import("react").RefAttributes<HTMLDivElement>>;
6
+ Footer: import("react").ForwardRefExoticComponent<ALSCardFooterProps & import("react").RefAttributes<HTMLDivElement>>;
7
+ Media: import("react").ForwardRefExoticComponent<ALSCardMediaProps & import("react").RefAttributes<HTMLImageElement>>;
8
+ Title: import("react").ForwardRefExoticComponent<ALSCardTitleProps & import("react").RefAttributes<HTMLHeadingElement>>;
9
+ Description: import("react").ForwardRefExoticComponent<ALSCardDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>;
10
+ };
11
+ export type { ALSCardRootProps, ALSCardHeaderProps, ALSCardBodyProps, ALSCardFooterProps, ALSCardMediaProps, ALSCardTitleProps, ALSCardDescriptionProps, ALSCardVariant, ALSCardSize, };
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCard/index.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EACR,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,uBAAuB,EACvB,cAAc,EACd,WAAW,EACd,MAAM,WAAW,CAAC;AAEnB,eAAO,MAAM,OAAO;;;;;;;;CAQnB,CAAC;AAEF,YAAY,EACR,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,uBAAuB,EACvB,cAAc,EACd,WAAW,GACd,CAAC"}
@@ -0,0 +1,114 @@
1
+ import React from "react";
2
+ import { type TooltipProps } from "recharts";
3
+ import type { Props as LegendProps } from "recharts/types/component/DefaultLegendContent";
4
+ import type { NameType, Payload, ValueType } from "recharts/types/component/DefaultTooltipContent";
5
+ export type ChartType = "line" | "bar" | "area" | "pie" | "radar" | "scatter" | "composed" | "radialBar";
6
+ export type ChartSize = "sm" | "md" | "lg" | "full";
7
+ export type ChartVariant = "default" | "gradient" | "minimal";
8
+ export interface ChartDataPoint {
9
+ [key: string]: string | number | undefined;
10
+ }
11
+ export interface ChartSeries {
12
+ dataKey: string;
13
+ name?: string;
14
+ color?: string;
15
+ type?: "line" | "bar" | "area";
16
+ strokeWidth?: number;
17
+ strokeDasharray?: string;
18
+ fill?: string;
19
+ fillOpacity?: number;
20
+ }
21
+ export type CartesianChartType = "line" | "bar" | "area" | "scatter";
22
+ export interface CustomTooltipProps extends TooltipProps<ValueType, NameType> {
23
+ active?: boolean;
24
+ payload?: readonly Payload<ValueType, NameType>[];
25
+ label?: string | number;
26
+ }
27
+ export type CustomLegendProps = LegendProps;
28
+ export interface CustomLabelProps {
29
+ x?: number | string;
30
+ y?: number | string;
31
+ width?: number | string;
32
+ height?: number | string;
33
+ value?: number | string | boolean | null;
34
+ index?: number;
35
+ }
36
+ export interface ALSLegendPayload {
37
+ value?: string;
38
+ id?: string;
39
+ type?: string;
40
+ color?: string;
41
+ payload?: unknown;
42
+ }
43
+ export type CustomTooltipRenderer = (props: CustomTooltipProps) => React.ReactNode;
44
+ export type CustomLegendRenderer = (props: CustomLegendProps) => React.ReactNode;
45
+ export type CustomLabelRenderer = (props: CustomLabelProps) => React.ReactElement | string | number | boolean | null | undefined;
46
+ export interface ALSChartRootProps {
47
+ data: ChartDataPoint[];
48
+ type?: ChartType;
49
+ variant?: ChartVariant;
50
+ size?: ChartSize;
51
+ series?: ChartSeries[];
52
+ colors?: string[];
53
+ showGrid?: boolean;
54
+ showLegend?: boolean;
55
+ showTooltip?: boolean;
56
+ animate?: boolean;
57
+ transformable?: boolean;
58
+ onTypeChange?: (type: ChartType) => void;
59
+ customTooltip?: CustomTooltipRenderer;
60
+ customLegend?: CustomLegendRenderer;
61
+ customLabel?: CustomLabelRenderer;
62
+ xAxisLabel?: string;
63
+ yAxisLabel?: string;
64
+ gridColor?: string;
65
+ axisColor?: string;
66
+ tooltipStyle?: React.CSSProperties;
67
+ legendStyle?: React.CSSProperties;
68
+ className?: string;
69
+ style?: React.CSSProperties;
70
+ children?: React.ReactNode;
71
+ }
72
+ export declare const ALSChartRoot: React.ForwardRefExoticComponent<ALSChartRootProps & React.RefAttributes<HTMLDivElement>>;
73
+ export interface ALSChartTitleProps {
74
+ className?: string;
75
+ style?: React.CSSProperties;
76
+ children?: React.ReactNode;
77
+ }
78
+ export declare const ALSChartTitle: React.ForwardRefExoticComponent<ALSChartTitleProps & React.RefAttributes<HTMLHeadingElement>>;
79
+ export interface ALSChartDescriptionProps {
80
+ className?: string;
81
+ style?: React.CSSProperties;
82
+ children?: React.ReactNode;
83
+ }
84
+ export declare const ALSChartDescription: React.ForwardRefExoticComponent<ALSChartDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
85
+ export interface ALSChartContainerProps {
86
+ width?: number | `${number}%`;
87
+ height?: number | `${number}%`;
88
+ className?: string;
89
+ style?: React.CSSProperties;
90
+ }
91
+ export declare const ALSChartContainer: React.ForwardRefExoticComponent<ALSChartContainerProps & React.RefAttributes<HTMLDivElement>>;
92
+ export interface ALSChartEmptyProps {
93
+ message?: string;
94
+ className?: string;
95
+ style?: React.CSSProperties;
96
+ children?: React.ReactNode;
97
+ }
98
+ export declare const ALSChartEmpty: React.ForwardRefExoticComponent<ALSChartEmptyProps & React.RefAttributes<HTMLDivElement>>;
99
+ export interface ALSChartTransformerProps {
100
+ position?: "top" | "bottom";
101
+ layout?: "horizontal" | "vertical";
102
+ showLabels?: boolean;
103
+ className?: string;
104
+ style?: React.CSSProperties;
105
+ }
106
+ export declare const ALSChartTransformer: React.ForwardRefExoticComponent<ALSChartTransformerProps & React.RefAttributes<HTMLDivElement>>;
107
+ export interface ALSChartLoadingProps {
108
+ message?: string;
109
+ className?: string;
110
+ style?: React.CSSProperties;
111
+ children?: React.ReactNode;
112
+ }
113
+ export declare const ALSChartLoading: React.ForwardRefExoticComponent<ALSChartLoadingProps & React.RefAttributes<HTMLDivElement>>;
114
+ //# sourceMappingURL=ALSChart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSChart.d.ts","sourceRoot":"","sources":["../../../src/components/ALSChart/ALSChart.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ import type { ALSChartRootProps, ALSChartTitleProps, ALSChartDescriptionProps, ALSChartContainerProps, ALSChartEmptyProps, ALSChartTransformerProps, ALSChartLoadingProps, ChartType, ChartSize, ChartVariant, ChartDataPoint, ChartSeries, CustomTooltipProps, CustomLegendProps, CustomLabelProps, CustomTooltipRenderer, CustomLegendRenderer, CustomLabelRenderer, CartesianChartType, ALSLegendPayload } from "./ALSChart";
2
+ export declare const ALSChart: {
3
+ Root: import("react").ForwardRefExoticComponent<ALSChartRootProps & import("react").RefAttributes<HTMLDivElement>>;
4
+ Title: import("react").ForwardRefExoticComponent<ALSChartTitleProps & import("react").RefAttributes<HTMLHeadingElement>>;
5
+ Description: import("react").ForwardRefExoticComponent<ALSChartDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>;
6
+ Container: import("react").ForwardRefExoticComponent<ALSChartContainerProps & import("react").RefAttributes<HTMLDivElement>>;
7
+ Empty: import("react").ForwardRefExoticComponent<ALSChartEmptyProps & import("react").RefAttributes<HTMLDivElement>>;
8
+ Transformer: import("react").ForwardRefExoticComponent<ALSChartTransformerProps & import("react").RefAttributes<HTMLDivElement>>;
9
+ Loading: import("react").ForwardRefExoticComponent<ALSChartLoadingProps & import("react").RefAttributes<HTMLDivElement>>;
10
+ };
11
+ export type { ALSChartRootProps, ALSChartTitleProps, ALSChartDescriptionProps, ALSChartContainerProps, ALSChartEmptyProps, ALSChartTransformerProps, ALSChartLoadingProps, ChartType, CartesianChartType, ChartSize, ChartVariant, ChartDataPoint, ChartSeries, CustomTooltipProps, CustomLegendProps, CustomLabelProps, CustomTooltipRenderer, CustomLegendRenderer, CustomLabelRenderer, ALSLegendPayload, };
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSChart/index.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EACR,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,sBAAsB,EACtB,kBAAkB,EAClB,wBAAwB,EACxB,oBAAoB,EACpB,SAAS,EACT,SAAS,EACT,YAAY,EACZ,cAAc,EACd,WAAW,EACX,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,qBAAqB,EACrB,oBAAoB,EACpB,mBAAmB,EACnB,kBAAkB,EAClB,gBAAgB,EACnB,MAAM,YAAY,CAAC;AAEpB,eAAO,MAAM,QAAQ;;;;;;;;CAQpB,CAAC;AAEF,YAAY,EACR,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,sBAAsB,EACtB,kBAAkB,EAClB,wBAAwB,EACxB,oBAAoB,EACpB,SAAS,EACT,kBAAkB,EAClB,SAAS,EACT,YAAY,EACZ,cAAc,EACd,WAAW,EACX,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,qBAAqB,EACrB,oBAAoB,EACpB,mBAAmB,EACnB,gBAAgB,GACnB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { CartesianChartType, ChartType } from "./ALSChart";
2
+ type TransformMatrix = Record<ChartType, ChartType[]>;
3
+ export declare const TRANSFORM_COMPATIBILITY: TransformMatrix;
4
+ export declare function canTransform(from: ChartType, to: ChartType): boolean;
5
+ export declare function isCartesianChart(type: ChartType): type is CartesianChartType;
6
+ export {};
7
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/components/ALSChart/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEhE,KAAK,eAAe,GAAG,MAAM,CAAC,SAAS,EAAE,SAAS,EAAE,CAAC,CAAC;AAEtD,eAAO,MAAM,uBAAuB,EAAE,eASrC,CAAC;AAGF,wBAAgB,YAAY,CAAC,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,SAAS,GAAG,OAAO,CAEpE;AAGD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI,IAAI,kBAAkB,CAE5E"}
@@ -16,6 +16,7 @@ export interface ALSCheckboxRootProps {
16
16
  className?: string | ((state: Checkbox.Root.State) => string);
17
17
  style?: React.CSSProperties;
18
18
  children?: React.ReactNode;
19
+ onClick?: React.MouseEventHandler<HTMLSpanElement>;
19
20
  size?: "sm" | "md" | "lg";
20
21
  variant?: "default" | "primary" | "success" | "error";
21
22
  }
@@ -1 +1 @@
1
- {"version":3,"file":"ALSCheckbox.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCheckbox/ALSCheckbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAKnD,MAAM,WAAW,oBAAoB;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,eAAe,CAAC,EAAE,CACd,OAAO,EAAE,OAAO,EAChB,YAAY,EAAE,QAAQ,CAAC,IAAI,CAAC,kBAAkB,KAC7C,IAAI,CAAC;IACV,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;IACvC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC,KAAK,KAAK,MAAM,CAAC,CAAC;IAC9D,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;CACzD;AAED,MAAM,WAAW,yBAAyB;IACtC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,SAAS,CAAC,KAAK,KAAK,MAAM,CAAC,CAAC;IACnE,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,CACL,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,eAAe,CAAC,EACvC,KAAK,EAAE,QAAQ,CAAC,SAAS,CAAC,KAAK,KAC9B,KAAK,CAAC,YAAY,CAAC;CAC3B;AAED,MAAM,MAAM,eAAe,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACjD,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAG7E,eAAO,MAAM,eAAe,8FAkC3B,CAAC;AAKF,eAAO,MAAM,oBAAoB,mGA2C/B,CAAC"}
1
+ {"version":3,"file":"ALSCheckbox.d.ts","sourceRoot":"","sources":["../../../src/components/ALSCheckbox/ALSCheckbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAKnD,MAAM,WAAW,oBAAoB;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,eAAe,CAAC,EAAE,CACd,OAAO,EAAE,OAAO,EAChB,YAAY,EAAE,QAAQ,CAAC,IAAI,CAAC,kBAAkB,KAC7C,IAAI,CAAC;IACV,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;IACvC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC,KAAK,KAAK,MAAM,CAAC,CAAC;IAC9D,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,eAAe,CAAC,CAAC;IACnD,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;CACzD;AAED,MAAM,WAAW,yBAAyB;IACtC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,SAAS,CAAC,KAAK,KAAK,MAAM,CAAC,CAAC;IACnE,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,CACL,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,eAAe,CAAC,EACvC,KAAK,EAAE,QAAQ,CAAC,SAAS,CAAC,KAAK,KAC9B,KAAK,CAAC,YAAY,CAAC;CAC3B;AAED,MAAM,MAAM,eAAe,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACjD,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAG7E,eAAO,MAAM,eAAe,8FAkC3B,CAAC;AAKF,eAAO,MAAM,oBAAoB,mGA2C/B,CAAC"}
@@ -0,0 +1,131 @@
1
+ import React from "react";
2
+ export type ALSItemVariant = "default" | "selected" | "active" | "danger";
3
+ export type ALSItemSize = "sm" | "md" | "lg";
4
+ export interface ALSItemRootProps extends React.HTMLAttributes<HTMLDivElement> {
5
+ /**
6
+ * Visual variant of the item
7
+ * @default 'default'
8
+ */
9
+ variant?: ALSItemVariant;
10
+ /**
11
+ * Size of the item
12
+ * @default 'md'
13
+ */
14
+ size?: ALSItemSize;
15
+ /**
16
+ * Whether the item is disabled
17
+ * @default false
18
+ */
19
+ disabled?: boolean;
20
+ /**
21
+ * Whether the item is selected
22
+ * @default false
23
+ */
24
+ selected?: boolean;
25
+ /**
26
+ * Whether the item is interactive (clickable)
27
+ * @default false
28
+ */
29
+ interactive?: boolean;
30
+ /**
31
+ * Click handler for interactive items
32
+ */
33
+ onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
34
+ /**
35
+ * Additional CSS class name
36
+ */
37
+ className?: string;
38
+ /**
39
+ * Children to render inside the item
40
+ */
41
+ children?: React.ReactNode;
42
+ }
43
+ export interface ALSItemIconProps extends React.HTMLAttributes<HTMLSpanElement> {
44
+ /**
45
+ * Icon content (can be an icon component or string)
46
+ */
47
+ children?: React.ReactNode;
48
+ /**
49
+ * Additional CSS class name
50
+ */
51
+ className?: string;
52
+ }
53
+ export interface ALSItemContentProps extends React.HTMLAttributes<HTMLDivElement> {
54
+ /**
55
+ * Children to render inside the content area
56
+ */
57
+ children?: React.ReactNode;
58
+ /**
59
+ * Additional CSS class name
60
+ */
61
+ className?: string;
62
+ }
63
+ export interface ALSItemLabelProps extends React.HTMLAttributes<HTMLSpanElement> {
64
+ /**
65
+ * Label text
66
+ */
67
+ children?: React.ReactNode;
68
+ /**
69
+ * Additional CSS class name
70
+ */
71
+ className?: string;
72
+ }
73
+ export interface ALSItemDescriptionProps extends React.HTMLAttributes<HTMLSpanElement> {
74
+ /**
75
+ * Description text
76
+ */
77
+ children?: React.ReactNode;
78
+ /**
79
+ * Additional CSS class name
80
+ */
81
+ className?: string;
82
+ }
83
+ export interface ALSItemMetaProps extends React.HTMLAttributes<HTMLSpanElement> {
84
+ /**
85
+ * Meta content (e.g., timestamps, badges, shortcuts)
86
+ */
87
+ children?: React.ReactNode;
88
+ /**
89
+ * Additional CSS class name
90
+ */
91
+ className?: string;
92
+ }
93
+ export interface ALSItemActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
94
+ /**
95
+ * Action content (typically an icon button)
96
+ */
97
+ children?: React.ReactNode;
98
+ /**
99
+ * Additional CSS class name
100
+ */
101
+ className?: string;
102
+ }
103
+ /**
104
+ * Root component for the item
105
+ */
106
+ export declare const ALSItemRoot: React.ForwardRefExoticComponent<ALSItemRootProps & React.RefAttributes<HTMLDivElement>>;
107
+ /**
108
+ * Icon component for the item
109
+ */
110
+ export declare const ALSItemIcon: React.ForwardRefExoticComponent<ALSItemIconProps & React.RefAttributes<HTMLSpanElement>>;
111
+ /**
112
+ * Content container for label and description
113
+ */
114
+ export declare const ALSItemContent: React.ForwardRefExoticComponent<ALSItemContentProps & React.RefAttributes<HTMLDivElement>>;
115
+ /**
116
+ * Label component for the item
117
+ */
118
+ export declare const ALSItemLabel: React.ForwardRefExoticComponent<ALSItemLabelProps & React.RefAttributes<HTMLSpanElement>>;
119
+ /**
120
+ * Description component for the item
121
+ */
122
+ export declare const ALSItemDescription: React.ForwardRefExoticComponent<ALSItemDescriptionProps & React.RefAttributes<HTMLSpanElement>>;
123
+ /**
124
+ * Meta component for additional information
125
+ */
126
+ export declare const ALSItemMeta: React.ForwardRefExoticComponent<ALSItemMetaProps & React.RefAttributes<HTMLSpanElement>>;
127
+ /**
128
+ * Action button component for the item
129
+ */
130
+ export declare const ALSItemAction: React.ForwardRefExoticComponent<ALSItemActionProps & React.RefAttributes<HTMLButtonElement>>;
131
+ //# sourceMappingURL=ALSItem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSItem.d.ts","sourceRoot":"","sources":["../../../src/components/ALSItem/ALSItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAC1E,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE7C,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC1E;;;OAGG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;IAEzB;;;OAGG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC;IAE5D;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC9B;AAED,MAAM,WAAW,gBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,mBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC5C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,iBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,uBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,gBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBACb,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;IACrD;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAgCD;;GAEG;AACH,eAAO,MAAM,WAAW,yFAgEvB,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,WAAW,0FAcvB,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,cAAc,4FASzB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,YAAY,2FAevB,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,kBAAkB,iGAmB7B,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,WAAW,0FAcvB,CAAC;AAIF;;GAEG;AACH,eAAO,MAAM,aAAa,8FAuBxB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ALSItemRootProps, ALSItemIconProps, ALSItemContentProps, ALSItemLabelProps, ALSItemDescriptionProps, ALSItemMetaProps, ALSItemActionProps, ALSItemVariant, ALSItemSize } from './ALSItem';
2
+ export declare const ALSItem: {
3
+ Root: import("react").ForwardRefExoticComponent<ALSItemRootProps & import("react").RefAttributes<HTMLDivElement>>;
4
+ Icon: import("react").ForwardRefExoticComponent<ALSItemIconProps & import("react").RefAttributes<HTMLSpanElement>>;
5
+ Content: import("react").ForwardRefExoticComponent<ALSItemContentProps & import("react").RefAttributes<HTMLDivElement>>;
6
+ Label: import("react").ForwardRefExoticComponent<ALSItemLabelProps & import("react").RefAttributes<HTMLSpanElement>>;
7
+ Description: import("react").ForwardRefExoticComponent<ALSItemDescriptionProps & import("react").RefAttributes<HTMLSpanElement>>;
8
+ Meta: import("react").ForwardRefExoticComponent<ALSItemMetaProps & import("react").RefAttributes<HTMLSpanElement>>;
9
+ Action: import("react").ForwardRefExoticComponent<ALSItemActionProps & import("react").RefAttributes<HTMLButtonElement>>;
10
+ };
11
+ export type { ALSItemRootProps, ALSItemIconProps, ALSItemContentProps, ALSItemLabelProps, ALSItemDescriptionProps, ALSItemMetaProps, ALSItemActionProps, ALSItemVariant, ALSItemSize, };
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSItem/index.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EACV,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,iBAAiB,EACjB,uBAAuB,EACvB,gBAAgB,EAChB,kBAAkB,EAClB,cAAc,EACd,WAAW,EACZ,MAAM,WAAW,CAAC;AAEnB,eAAO,MAAM,OAAO;;;;;;;;CAQnB,CAAC;AAEF,YAAY,EACV,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,iBAAiB,EACjB,uBAAuB,EACvB,gBAAgB,EAChB,kBAAkB,EAClB,cAAc,EACd,WAAW,GACZ,CAAC"}
@@ -0,0 +1,101 @@
1
+ import React from "react";
2
+ export type ALSPaginationVariant = "default" | "minimal" | "outlined";
3
+ export type ALSPaginationSize = "sm" | "md" | "lg";
4
+ export type ALSPaginationAlignment = "start" | "center" | "end";
5
+ export interface ALSPaginationRootProps extends Omit<React.ComponentPropsWithoutRef<"nav">, "children"> {
6
+ /**
7
+ * The current page number (0-indexed)
8
+ */
9
+ page?: number;
10
+ /**
11
+ * Default page number (0-indexed)
12
+ */
13
+ defaultPage?: number;
14
+ /**
15
+ * Total number of pages
16
+ */
17
+ count: number;
18
+ /**
19
+ * Number of page buttons to show on each side of the current page
20
+ * @default 1
21
+ */
22
+ siblingCount?: number;
23
+ /**
24
+ * Number of page buttons to show at the start and end
25
+ * @default 1
26
+ */
27
+ boundaryCount?: number;
28
+ /**
29
+ * Callback when page changes
30
+ */
31
+ onPageChange?: (page: number) => void;
32
+ /**
33
+ * Visual variant of the pagination
34
+ * @default 'default'
35
+ */
36
+ variant?: ALSPaginationVariant;
37
+ /**
38
+ * Size of the pagination controls
39
+ * @default 'md'
40
+ */
41
+ size?: ALSPaginationSize;
42
+ /**
43
+ * Alignment of the pagination
44
+ * @default 'start'
45
+ */
46
+ alignment?: ALSPaginationAlignment;
47
+ /**
48
+ * Whether the pagination is disabled
49
+ */
50
+ disabled?: boolean;
51
+ /**
52
+ * Show first/last page buttons
53
+ * @default true
54
+ */
55
+ showFirstLast?: boolean;
56
+ /**
57
+ * Show previous/next buttons
58
+ * @default true
59
+ */
60
+ showPrevNext?: boolean;
61
+ /**
62
+ * Custom labels for buttons
63
+ */
64
+ labels?: {
65
+ first?: string;
66
+ previous?: string;
67
+ next?: string;
68
+ last?: string;
69
+ };
70
+ children: React.ReactNode;
71
+ }
72
+ export interface ALSPaginationItemProps extends Omit<React.ComponentPropsWithoutRef<"button">, "type"> {
73
+ /**
74
+ * The page number this item represents (for page buttons)
75
+ */
76
+ page?: number;
77
+ /**
78
+ * Whether this item is active
79
+ */
80
+ active?: boolean;
81
+ /**
82
+ * Type of pagination item
83
+ */
84
+ type?: "page" | "first" | "previous" | "next" | "last" | "ellipsis";
85
+ }
86
+ export interface ALSPaginationInfoProps extends React.ComponentPropsWithoutRef<"div"> {
87
+ /**
88
+ * Custom formatter for the info text
89
+ */
90
+ formatter?: (page: number, count: number) => string;
91
+ }
92
+ export declare const ALSPaginationRoot: React.ForwardRefExoticComponent<ALSPaginationRootProps & React.RefAttributes<HTMLElement>>;
93
+ export declare const ALSPaginationItem: React.ForwardRefExoticComponent<ALSPaginationItemProps & React.RefAttributes<HTMLButtonElement>>;
94
+ export declare const ALSPaginationFirst: React.ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & React.RefAttributes<HTMLButtonElement>>;
95
+ export declare const ALSPaginationPrevious: React.ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & React.RefAttributes<HTMLButtonElement>>;
96
+ export declare const ALSPaginationNext: React.ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & React.RefAttributes<HTMLButtonElement>>;
97
+ export declare const ALSPaginationLast: React.ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & React.RefAttributes<HTMLButtonElement>>;
98
+ export declare const ALSPaginationButton: React.ForwardRefExoticComponent<Required<Pick<ALSPaginationItemProps, "page">> & Omit<ALSPaginationItemProps, "type"> & React.RefAttributes<HTMLButtonElement>>;
99
+ export declare const ALSPaginationEllipsis: React.ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & React.RefAttributes<HTMLDivElement>>;
100
+ export declare const ALSPaginationInfo: React.ForwardRefExoticComponent<ALSPaginationInfoProps & React.RefAttributes<HTMLDivElement>>;
101
+ //# sourceMappingURL=ALSPagination.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSPagination.d.ts","sourceRoot":"","sources":["../../../src/components/ALSPagination/ALSPagination.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,MAAM,oBAAoB,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AACtE,MAAM,MAAM,iBAAiB,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACnD,MAAM,MAAM,sBAAsB,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;AAEhE,MAAM,WAAW,sBACb,SAAQ,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC;IAC/D;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC;;;OAGG;IACH,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B;;;OAGG;IACH,IAAI,CAAC,EAAE,iBAAiB,CAAC;IACzB;;;OAGG;IACH,SAAS,CAAC,EAAE,sBAAsB,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE;QACL,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,MAAM,WAAW,sBACb,SAAQ,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC9D;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM,GAAG,UAAU,CAAC;CACvE;AAED,MAAM,WAAW,sBACb,SAAQ,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC;IAC7C;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;CACvD;AAqCD,eAAO,MAAM,iBAAiB,4FA6E7B,CAAC;AAIF,eAAO,MAAM,iBAAiB,kGA6G7B,CAAC;AAIF,eAAO,MAAM,kBAAkB,yHA8B7B,CAAC;AAIH,eAAO,MAAM,qBAAqB,yHAwBhC,CAAC;AAIH,eAAO,MAAM,iBAAiB,yHAwB5B,CAAC;AAIH,eAAO,MAAM,iBAAiB,yHA8B5B,CAAC;AAIH,eAAO,MAAM,mBAAmB,iKAM9B,CAAC;AAIH,eAAO,MAAM,qBAAqB,sHAoBhC,CAAC;AAIH,eAAO,MAAM,iBAAiB,+FAoB5B,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { ALSPaginationRootProps, ALSPaginationItemProps, ALSPaginationInfoProps, ALSPaginationVariant, ALSPaginationSize, ALSPaginationAlignment } from "./ALSPagination";
2
+ export declare const ALSPagination: {
3
+ Root: import("react").ForwardRefExoticComponent<ALSPaginationRootProps & import("react").RefAttributes<HTMLElement>>;
4
+ Item: import("react").ForwardRefExoticComponent<ALSPaginationItemProps & import("react").RefAttributes<HTMLButtonElement>>;
5
+ Button: import("react").ForwardRefExoticComponent<Required<Pick<ALSPaginationItemProps, "page">> & Omit<ALSPaginationItemProps, "type"> & import("react").RefAttributes<HTMLButtonElement>>;
6
+ First: import("react").ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & import("react").RefAttributes<HTMLButtonElement>>;
7
+ Previous: import("react").ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & import("react").RefAttributes<HTMLButtonElement>>;
8
+ Next: import("react").ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & import("react").RefAttributes<HTMLButtonElement>>;
9
+ Last: import("react").ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & import("react").RefAttributes<HTMLButtonElement>>;
10
+ Ellipsis: import("react").ForwardRefExoticComponent<Omit<ALSPaginationItemProps, "type" | "page"> & import("react").RefAttributes<HTMLDivElement>>;
11
+ Info: import("react").ForwardRefExoticComponent<ALSPaginationInfoProps & import("react").RefAttributes<HTMLDivElement>>;
12
+ };
13
+ export type { ALSPaginationRootProps, ALSPaginationItemProps, ALSPaginationInfoProps, ALSPaginationVariant, ALSPaginationSize, ALSPaginationAlignment, };
14
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ALSPagination/index.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EACR,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,EACtB,oBAAoB,EACpB,iBAAiB,EACjB,sBAAsB,EACzB,MAAM,iBAAiB,CAAC;AAEzB,eAAO,MAAM,aAAa;;;;;;;;;;CAUzB,CAAC;AAEF,YAAY,EACR,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,EACtB,oBAAoB,EACpB,iBAAiB,EACjB,sBAAsB,GACzB,CAAC"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generates the array of page numbers to display
3
+ */
4
+ export declare function generatePageRange(currentPage: number, totalPages: number, siblingCount: number, boundaryCount: number): (number | "ellipsis")[];
5
+ //# sourceMappingURL=util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../src/components/ALSPagination/util.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,wBAAgB,iBAAiB,CAC7B,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,EAClB,YAAY,EAAE,MAAM,EACpB,aAAa,EAAE,MAAM,GACtB,CAAC,MAAM,GAAG,UAAU,CAAC,EAAE,CAoEzB"}
@@ -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,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"}
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,wHAqBlB,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"}