@als-tp/als-react-ts-ui 0.6.1 → 0.9.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 (50) hide show
  1. package/README.md +2 -2
  2. package/dist/aicomponents/ALSAIActions/ALSAIActions.d.ts +44 -0
  3. package/dist/aicomponents/ALSAIActions/ALSAIActions.d.ts.map +1 -0
  4. package/dist/aicomponents/ALSAIActions/index.d.ts +7 -0
  5. package/dist/aicomponents/ALSAIActions/index.d.ts.map +1 -0
  6. package/dist/aicomponents/ALSAIReasoning/ALSAIReasoning.d.ts +27 -0
  7. package/dist/aicomponents/ALSAIReasoning/ALSAIReasoning.d.ts.map +1 -0
  8. package/dist/aicomponents/ALSAIReasoning/index.d.ts +8 -0
  9. package/dist/aicomponents/ALSAIReasoning/index.d.ts.map +1 -0
  10. package/dist/aicomponents/ALSAISources/ALSAISources.d.ts +141 -0
  11. package/dist/aicomponents/ALSAISources/ALSAISources.d.ts.map +1 -0
  12. package/dist/aicomponents/ALSAISources/index.d.ts +39 -0
  13. package/dist/aicomponents/ALSAISources/index.d.ts.map +1 -0
  14. package/dist/als-react-ts-ui.js +14307 -12584
  15. package/dist/components/ALSCheckbox/ALSCheckbox.d.ts +1 -0
  16. package/dist/components/ALSCheckbox/ALSCheckbox.d.ts.map +1 -1
  17. package/dist/components/ALSFileitem/ALSFileitem.d.ts +39 -0
  18. package/dist/components/ALSFileitem/ALSFileitem.d.ts.map +1 -0
  19. package/dist/components/ALSFileitem/index.d.ts +5 -0
  20. package/dist/components/ALSFileitem/index.d.ts.map +1 -0
  21. package/dist/components/ALSItem/ALSItem.d.ts +131 -0
  22. package/dist/components/ALSItem/ALSItem.d.ts.map +1 -0
  23. package/dist/components/ALSItem/index.d.ts +12 -0
  24. package/dist/components/ALSItem/index.d.ts.map +1 -0
  25. package/dist/components/ALSPagination/ALSPagination.d.ts +101 -0
  26. package/dist/components/ALSPagination/ALSPagination.d.ts.map +1 -0
  27. package/dist/components/ALSPagination/index.d.ts +14 -0
  28. package/dist/components/ALSPagination/index.d.ts.map +1 -0
  29. package/dist/components/ALSPagination/util.d.ts +5 -0
  30. package/dist/components/ALSPagination/util.d.ts.map +1 -0
  31. package/dist/components/ALSSelect/ALSSelect.d.ts.map +1 -1
  32. package/dist/components/ALSTable/ALSTable.d.ts +168 -0
  33. package/dist/components/ALSTable/ALSTable.d.ts.map +1 -0
  34. package/dist/components/ALSTable/index.d.ts +17 -0
  35. package/dist/components/ALSTable/index.d.ts.map +1 -0
  36. package/dist/components/ALSTabs/ALSTabs.d.ts +64 -8
  37. package/dist/components/ALSTabs/ALSTabs.d.ts.map +1 -1
  38. package/dist/components/ALSTabs/index.d.ts +7 -1
  39. package/dist/components/ALSTabs/index.d.ts.map +1 -1
  40. package/dist/components/ALSTree/ALSTree.d.ts +37 -0
  41. package/dist/components/ALSTree/ALSTree.d.ts.map +1 -0
  42. package/dist/components/ALSTree/index.d.ts +7 -0
  43. package/dist/components/ALSTree/index.d.ts.map +1 -0
  44. package/dist/index.css +1 -1
  45. package/dist/index.d.ts +7 -0
  46. package/dist/index.d.ts.map +1 -1
  47. package/dist/logo.svg +59 -0
  48. package/package.json +2 -1
  49. package/dist/components/ALSTabs/components.d.ts +0 -63
  50. package/dist/components/ALSTabs/components.d.ts.map +0 -1
package/README.md CHANGED
@@ -207,7 +207,7 @@ The library uses CSS variables for theming. You can override these in your globa
207
207
  /* ALS Blues */
208
208
 
209
209
  /* Dark blue */
210
- --color-als-dark-blue: #1f3349;
210
+ --color-als-dark-blue-700: #1f3349;
211
211
 
212
212
  /* Primary blue */
213
213
 
@@ -248,7 +248,7 @@ The library uses CSS variables for theming. You can override these in your globa
248
248
  --bg-primary: var(--color-als-gray-100);
249
249
 
250
250
  /* Text Colors */
251
- --text-primary: var(--color-als-dark-blue);
251
+ --text-primary: var(--color-als-dark-blue-700);
252
252
  --text-secondary: var(--color-als-gray-900); /* o el color que prefieras */
253
253
 
254
254
  /* Border Colors */
@@ -0,0 +1,44 @@
1
+ import React from "react";
2
+ export interface ALSAIActionsRootProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ /**
4
+ * The content of the actions container (Action components)
5
+ */
6
+ children?: React.ReactNode;
7
+ /**
8
+ * Additional CSS class name
9
+ */
10
+ className?: string;
11
+ /**
12
+ * Inline styles
13
+ */
14
+ style?: React.CSSProperties;
15
+ }
16
+ type ActionContent = {
17
+ label: string;
18
+ children?: React.ReactNode;
19
+ } | {
20
+ label?: string;
21
+ children: React.ReactNode;
22
+ };
23
+ export type ALSAIActionProps = React.ButtonHTMLAttributes<HTMLButtonElement> & ActionContent & {
24
+ /**
25
+ * Additional CSS class name
26
+ */
27
+ className?: string;
28
+ /**
29
+ * Inline styles
30
+ */
31
+ style?: React.CSSProperties;
32
+ /**
33
+ * Whether the action is disabled
34
+ */
35
+ disabled?: boolean;
36
+ /**
37
+ * Click handler
38
+ */
39
+ onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
40
+ };
41
+ export declare const ALSAIActionsRoot: React.ForwardRefExoticComponent<ALSAIActionsRootProps & React.RefAttributes<HTMLDivElement>>;
42
+ export declare const ALSAIAction: React.ForwardRefExoticComponent<ALSAIActionProps & React.RefAttributes<HTMLButtonElement>>;
43
+ export {};
44
+ //# sourceMappingURL=ALSAIActions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSAIActions.d.ts","sourceRoot":"","sources":["../../../src/aicomponents/ALSAIActions/ALSAIActions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,MAAM,WAAW,qBACb,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC5C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAED,KAAK,aAAa,GACZ;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,GAC7C;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAAC;AAEpD,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,GACxE,aAAa,GAAG;IACZ;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;CAClE,CAAC;AAGN,eAAO,MAAM,gBAAgB,8FAc3B,CAAC;AAKH,eAAO,MAAM,WAAW,4FAsCvB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { ALSAIActionsRootProps, ALSAIActionProps } from "./ALSAIActions";
2
+ export declare const ALSAIActions: {
3
+ Root: import("react").ForwardRefExoticComponent<ALSAIActionsRootProps & import("react").RefAttributes<HTMLDivElement>>;
4
+ Action: import("react").ForwardRefExoticComponent<ALSAIActionProps & import("react").RefAttributes<HTMLButtonElement>>;
5
+ };
6
+ export type { ALSAIActionsRootProps, ALSAIActionProps };
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/aicomponents/ALSAIActions/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAE9E,eAAO,MAAM,YAAY;;;CAGxB,CAAC;AAEF,YAAY,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,CAAC"}
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+ export interface ALSAIReasoningRootProps {
3
+ isStreaming?: boolean;
4
+ defaultOpen?: boolean;
5
+ open?: boolean;
6
+ onOpenChange?: (open: boolean) => void;
7
+ children?: React.ReactNode;
8
+ className?: string;
9
+ style?: React.CSSProperties;
10
+ }
11
+ export interface ALSAIReasoningTriggerProps {
12
+ title?: string;
13
+ children?: React.ReactNode;
14
+ className?: string;
15
+ style?: React.CSSProperties;
16
+ }
17
+ export interface ALSAIReasoningContentProps {
18
+ children?: React.ReactNode;
19
+ className?: string;
20
+ style?: React.CSSProperties;
21
+ }
22
+ export type ALSAIReasoningVariant = "default" | "compact";
23
+ export type ALSAIReasoningSize = "sm" | "md" | "lg";
24
+ export declare const ALSAIReasoningRoot: React.FC<ALSAIReasoningRootProps>;
25
+ export declare const ALSAIReasoningTrigger: React.ForwardRefExoticComponent<ALSAIReasoningTriggerProps & React.RefAttributes<HTMLButtonElement>>;
26
+ export declare const ALSAIReasoningContent: React.ForwardRefExoticComponent<ALSAIReasoningContentProps & React.RefAttributes<HTMLDivElement>>;
27
+ //# sourceMappingURL=ALSAIReasoning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSAIReasoning.d.ts","sourceRoot":"","sources":["../../../src/aicomponents/ALSAIReasoning/ALSAIReasoning.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8C,MAAM,OAAO,CAAC;AAMnE,MAAM,WAAW,uBAAuB;IACpC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAED,MAAM,WAAW,0BAA0B;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAED,MAAM,WAAW,0BAA0B;IACvC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAED,MAAM,MAAM,qBAAqB,GAAG,SAAS,GAAG,SAAS,CAAC;AAC1D,MAAM,MAAM,kBAAkB,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAwBpD,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAuChE,CAAC;AAGF,eAAO,MAAM,qBAAqB,sGA0ChC,CAAC;AAKH,eAAO,MAAM,qBAAqB,mGA2BhC,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { ALSAIReasoningRootProps, ALSAIReasoningTriggerProps, ALSAIReasoningContentProps, ALSAIReasoningVariant, ALSAIReasoningSize } from "./ALSAIReasoning";
2
+ export declare const ALSAIReasoning: {
3
+ Root: import("react").FC<ALSAIReasoningRootProps>;
4
+ Trigger: import("react").ForwardRefExoticComponent<ALSAIReasoningTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
5
+ Content: import("react").ForwardRefExoticComponent<ALSAIReasoningContentProps & import("react").RefAttributes<HTMLDivElement>>;
6
+ };
7
+ export type { ALSAIReasoningRootProps, ALSAIReasoningTriggerProps, ALSAIReasoningContentProps, ALSAIReasoningVariant, ALSAIReasoningSize, };
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/aicomponents/ALSAIReasoning/index.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACR,uBAAuB,EACvB,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,EACrB,kBAAkB,EACrB,MAAM,kBAAkB,CAAC;AAE1B,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAEF,YAAY,EACR,uBAAuB,EACvB,0BAA0B,EAC1B,0BAA0B,EAC1B,qBAAqB,EACrB,kBAAkB,GACrB,CAAC"}
@@ -0,0 +1,141 @@
1
+ import React from "react";
2
+ /**
3
+ * Source data structure
4
+ */
5
+ export interface AISource {
6
+ /**
7
+ * Unique identifier for the source
8
+ */
9
+ id: string;
10
+ /**
11
+ * URL of the source
12
+ */
13
+ url: string;
14
+ /**
15
+ * Title of the source
16
+ */
17
+ title: string;
18
+ /**
19
+ * Optional description of the source
20
+ */
21
+ description?: string;
22
+ /**
23
+ * Domain extracted from URL
24
+ */
25
+ domain?: string;
26
+ }
27
+ /**
28
+ * Props for ALSAISources Root component
29
+ */
30
+ export interface ALSAISourcesRootProps {
31
+ /**
32
+ * Array of sources to display
33
+ */
34
+ sources: AISource[];
35
+ /**
36
+ * Threshold for collapsing sources
37
+ * @default 3
38
+ */
39
+ threshold?: number;
40
+ /**
41
+ * Whether to show source icons using Google favicon service
42
+ * @default true
43
+ */
44
+ showIcons?: boolean;
45
+ /**
46
+ * Size of the favicon icons in pixels
47
+ * @default 12
48
+ */
49
+ iconSize?: number;
50
+ /**
51
+ * Whether to show descriptions
52
+ * @default false
53
+ */
54
+ showDescriptions?: boolean;
55
+ /**
56
+ * Whether the sources are initially expanded
57
+ * @default false
58
+ */
59
+ defaultExpanded?: boolean;
60
+ /**
61
+ * Additional CSS class
62
+ */
63
+ className?: string;
64
+ /**
65
+ * Additional inline styles
66
+ */
67
+ style?: React.CSSProperties;
68
+ }
69
+ /**
70
+ * Props for ALSAISourceItem component
71
+ */
72
+ export interface ALSAISourceItemProps {
73
+ /**
74
+ * Source data
75
+ */
76
+ source: AISource;
77
+ /**
78
+ * Whether to show the icon
79
+ * @default true
80
+ */
81
+ showIcon?: boolean;
82
+ /**
83
+ * Size of the icon in pixels
84
+ * @default 12
85
+ */
86
+ iconSize?: number;
87
+ /**
88
+ * Whether to show the description
89
+ * @default false
90
+ */
91
+ showDescription?: boolean;
92
+ /**
93
+ * Additional CSS class
94
+ */
95
+ className?: string;
96
+ /**
97
+ * Additional inline styles
98
+ */
99
+ style?: React.CSSProperties;
100
+ }
101
+ /**
102
+ * Root container for AI sources with collapsible functionality
103
+ */
104
+ export declare const ALSAISourcesRoot: React.FC<ALSAISourcesRootProps>;
105
+ /**
106
+ * Individual source item component (chip style)
107
+ */
108
+ export declare const ALSAISourceItem: React.FC<ALSAISourceItemProps>;
109
+ /**
110
+ * Container for a list of sources
111
+ */
112
+ export declare const ALSAISourcesList: React.FC<{
113
+ children: React.ReactNode;
114
+ className?: string;
115
+ style?: React.CSSProperties;
116
+ }>;
117
+ /**
118
+ * Header for sources section
119
+ */
120
+ export declare const ALSAISourcesHeader: React.FC<{
121
+ children: React.ReactNode;
122
+ className?: string;
123
+ style?: React.CSSProperties;
124
+ }>;
125
+ /**
126
+ * Title for sources section
127
+ */
128
+ export declare const ALSAISourcesTitle: React.FC<{
129
+ children: React.ReactNode;
130
+ className?: string;
131
+ style?: React.CSSProperties;
132
+ }>;
133
+ /**
134
+ * Count badge showing number of sources
135
+ */
136
+ export declare const ALSAISourcesCount: React.FC<{
137
+ count: number;
138
+ className?: string;
139
+ style?: React.CSSProperties;
140
+ }>;
141
+ //# sourceMappingURL=ALSAISources.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ALSAISources.d.ts","sourceRoot":"","sources":["../../../src/aicomponents/ALSAISources/ALSAISources.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,OAAO,EAAE,QAAQ,EAAE,CAAC;IACpB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,MAAM,EAAE,QAAQ,CAAC;IACjB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B;AAqBD;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA2D5D,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA4C1D,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC;IACpC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B,CAMA,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC;IACtC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B,CAMA,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC;IACrC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B,CAMA,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC/B,CAMA,CAAC"}
@@ -0,0 +1,39 @@
1
+ import type { ALSAISourcesRootProps, ALSAISourceItemProps, AISource } from "./ALSAISources";
2
+ /**
3
+ * ALSAISources - A collapsible chip-style component for displaying AI-generated content sources
4
+ *
5
+ * @example
6
+ * ```tsx
7
+ * <ALSAISources.Root
8
+ * sources={sources}
9
+ * threshold={3}
10
+ * showIcons={true}
11
+ * />
12
+ * ```
13
+ */
14
+ export declare const ALSAISources: {
15
+ Root: import("react").FC<ALSAISourcesRootProps>;
16
+ Item: import("react").FC<ALSAISourceItemProps>;
17
+ List: import("react").FC<{
18
+ children: React.ReactNode;
19
+ className?: string;
20
+ style?: React.CSSProperties;
21
+ }>;
22
+ Header: import("react").FC<{
23
+ children: React.ReactNode;
24
+ className?: string;
25
+ style?: React.CSSProperties;
26
+ }>;
27
+ Title: import("react").FC<{
28
+ children: React.ReactNode;
29
+ className?: string;
30
+ style?: React.CSSProperties;
31
+ }>;
32
+ Count: import("react").FC<{
33
+ count: number;
34
+ className?: string;
35
+ style?: React.CSSProperties;
36
+ }>;
37
+ };
38
+ export type { ALSAISourcesRootProps, ALSAISourceItemProps, AISource };
39
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/aicomponents/ALSAISources/index.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EACR,qBAAqB,EACrB,oBAAoB,EACpB,QAAQ,EACX,MAAM,gBAAgB,CAAC;AAExB;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;CAOxB,CAAC;AAEF,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,QAAQ,EAAE,CAAC"}