@apia/components 0.1.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +207 -25
- package/dist/index.js +5644 -1
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,113 @@
|
|
|
1
|
-
import { TApiaFilter, TApiaFilterValue, TModify, IOnFocusConfiguration, TFocusRetriever, EventEmitter, TId } from '@apia/util';
|
|
2
1
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, {
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
6
|
-
import { ThemeUIStyleObject, IconButtonProps, ButtonProps, InputProps, ThemeUICSSObject, BoxProps } from 'theme
|
|
2
|
+
import React__default, { ReactNode, FC, ChangeEventHandler, MouseEvent, KeyboardEvent, FunctionComponent, ForwardedRef, ComponentType, RefObject } from 'react';
|
|
3
|
+
import { TId, TApiaFilter, TApiaFilterValue, TModify, IOnFocusConfiguration, TFocusRetriever, EventEmitter } from '@apia/util';
|
|
4
|
+
import { TIconName, TIconType } from '@apia/icons';
|
|
5
|
+
import { ThemeUIStyleObject, IconButtonProps, ButtonProps, InputProps, ThemeUICSSObject, BoxProps } from '@apia/theme';
|
|
7
6
|
import { Args } from 'react-cool-portal';
|
|
8
7
|
|
|
8
|
+
interface IAccordionProps {
|
|
9
|
+
/**
|
|
10
|
+
* Tiempo en ms que dura la animación. Por defecto se usa 150.
|
|
11
|
+
*/
|
|
12
|
+
animationDuration?: number;
|
|
13
|
+
children?: ReactNode;
|
|
14
|
+
className?: string;
|
|
15
|
+
getHandler?: (handler: AccordionHandler) => unknown;
|
|
16
|
+
/**
|
|
17
|
+
* Por defecto usa la variante layout.common.components.accordion.primary
|
|
18
|
+
*/
|
|
19
|
+
variant?: string;
|
|
20
|
+
}
|
|
21
|
+
declare const Accordion: FC<IAccordionProps>;
|
|
22
|
+
|
|
23
|
+
type TItemState = {
|
|
24
|
+
isChecked: boolean;
|
|
25
|
+
isExpanded: boolean;
|
|
26
|
+
};
|
|
27
|
+
type TItemStateListener = (state: TItemState) => unknown;
|
|
28
|
+
type TPropsListener = (props: IAccordionProps) => unknown;
|
|
29
|
+
|
|
30
|
+
type TSelectionComparator<T> = (prev: T, next: T) => boolean;
|
|
31
|
+
type TItemUpdater = Partial<TItemState> | ((currentProps: TItemState) => Partial<TItemState>);
|
|
32
|
+
declare class AccordionHandler {
|
|
33
|
+
id: string;
|
|
34
|
+
props: IAccordionProps;
|
|
35
|
+
itemsState: Record<TId, TItemState>;
|
|
36
|
+
itemsStateListeners: Record<TId, TItemStateListener[]>;
|
|
37
|
+
propsListeners: TPropsListener[];
|
|
38
|
+
constructor(id: string, props: IAccordionProps);
|
|
39
|
+
registerItem(itemId: TId, initialState: TItemState): void;
|
|
40
|
+
toggleItem(itemId: TId, isExpanded: boolean): void;
|
|
41
|
+
unregisterItem(itemId: TId): void;
|
|
42
|
+
/**
|
|
43
|
+
* Permite actualizar parcialmente el estado de un item
|
|
44
|
+
*/
|
|
45
|
+
udpateItem(itemId: TId, updater: TItemUpdater): void;
|
|
46
|
+
updateProps(props: IAccordionProps): void;
|
|
47
|
+
hooks: {
|
|
48
|
+
useAccordionContextProvider: () => ({ children }: {
|
|
49
|
+
children: ReactNode;
|
|
50
|
+
}) => React$1.JSX.Element;
|
|
51
|
+
useItemContextProvider: (itemId: TId) => ({ children }: {
|
|
52
|
+
children: ReactNode;
|
|
53
|
+
}) => React$1.JSX.Element;
|
|
54
|
+
useItemId: () => TId;
|
|
55
|
+
useItemStateSelector: <T>(selector: (props: TItemState) => T, comparator?: TSelectionComparator<T>) => T;
|
|
56
|
+
useItemStateUpdate: (cb: TItemStateListener) => void;
|
|
57
|
+
usePropsSelector: <T_1>(selector: (props: IAccordionProps) => T_1, comparator?: TSelectionComparator<T_1>) => T_1;
|
|
58
|
+
usePropsUpdate: (cb: TPropsListener) => void;
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
interface IAccordionItemButton {
|
|
63
|
+
ariaLabel: string;
|
|
64
|
+
/**
|
|
65
|
+
* Si checked !== undefined => se mostrará un checkbox.
|
|
66
|
+
*/
|
|
67
|
+
checked?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Solamente se utiliza en conjunto con el checkbox y permite evitar que el
|
|
70
|
+
* usuario pueda marcar o desmarcar el checkbox.
|
|
71
|
+
*/
|
|
72
|
+
disableSelection?: boolean;
|
|
73
|
+
label: string;
|
|
74
|
+
/**
|
|
75
|
+
* Evento que se dispara cuando el usuario hace click en el checkbox o
|
|
76
|
+
* presiona espacio sobre el botón del acordeón.
|
|
77
|
+
*/
|
|
78
|
+
onChange?: (checked: boolean) => unknown;
|
|
79
|
+
rightIcons?: TIconName[] | TIconName;
|
|
80
|
+
/**
|
|
81
|
+
* Si no se pasa title se usará ariaLabel.
|
|
82
|
+
*/
|
|
83
|
+
title?: string;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
interface IAccordionItemProps {
|
|
87
|
+
/**
|
|
88
|
+
* Cada elemento del acordeón tiene dos formas de renderizar el botón. O bien
|
|
89
|
+
* se pasa un elemento AccordionItemButton como hijo o bien se pasan
|
|
90
|
+
* buttonProps. En caso contrario, el elemento no tendrá botón.
|
|
91
|
+
*/
|
|
92
|
+
buttonProps?: IAccordionItemButton;
|
|
93
|
+
children?: ReactNode;
|
|
94
|
+
id: TId;
|
|
95
|
+
}
|
|
96
|
+
declare const AccordionItem: ({ children, id, ...props }: IAccordionItemProps) => React$1.JSX.Element;
|
|
97
|
+
|
|
98
|
+
type TAccordionItemButton = {
|
|
99
|
+
children?: ReactNode;
|
|
100
|
+
};
|
|
101
|
+
declare const AccordionItemButton: ({ children }: TAccordionItemButton) => React$1.JSX.Element;
|
|
102
|
+
|
|
103
|
+
declare const AccordionItemContent: ({ children, buttonProps, }: IAccordionItemProps) => React$1.JSX.Element;
|
|
104
|
+
|
|
105
|
+
declare const AccordionContext: React$1.Context<AccordionHandler | null>;
|
|
106
|
+
declare const AccordionItemContext: React$1.Context<TId | null>;
|
|
107
|
+
declare const useAccordionContext: () => AccordionHandler;
|
|
108
|
+
|
|
109
|
+
type TAccordionHandler = AccordionHandler;
|
|
110
|
+
|
|
9
111
|
interface IApiaFilter {
|
|
10
112
|
filter: TApiaFilter;
|
|
11
113
|
onBlur?: (ev: TApiaFilterValue) => void;
|
|
@@ -52,11 +154,11 @@ interface IBaseButton {
|
|
|
52
154
|
/**
|
|
53
155
|
* The world's most **basic** button
|
|
54
156
|
*/
|
|
55
|
-
declare const BaseButton: ({ id, name, onClick, isLoading, loadingChildren, disabled, children, text, variant, type, SXProps, ...buttonProps }: IBaseButton) =>
|
|
157
|
+
declare const BaseButton: ({ id, name, onClick, isLoading, loadingChildren, disabled, children, text, variant, type, SXProps, ...buttonProps }: IBaseButton) => React$1.JSX.Element;
|
|
56
158
|
|
|
57
159
|
type TIconSize = number | 'Xs' | 'Sm' | 'Md' | 'Lg' | 'Xl';
|
|
58
160
|
type TApiaIconButton = 'icon' | 'icon-primary' | 'icon-outline' | 'icon-only';
|
|
59
|
-
type TIconButton = IconButtonProps & React$1.AriaAttributes & {
|
|
161
|
+
type TIconButton = Omit<IconButtonProps, 'sx'> & React$1.AriaAttributes & {
|
|
60
162
|
className?: string;
|
|
61
163
|
/**
|
|
62
164
|
* Es posible pasar explícitamente un ícono o el nombre del ícono de
|
|
@@ -129,7 +231,7 @@ declare const Captcha: ({ name, imageUrl, onChange, value, className, }: {
|
|
|
129
231
|
imageUrl: string;
|
|
130
232
|
onChange: React.ChangeEventHandler<HTMLInputElement>;
|
|
131
233
|
value: string;
|
|
132
|
-
}) =>
|
|
234
|
+
}) => React$1.JSX.Element;
|
|
133
235
|
|
|
134
236
|
type TCheckbox = TModify<ButtonProps, {
|
|
135
237
|
background?: string;
|
|
@@ -153,19 +255,27 @@ interface IField {
|
|
|
153
255
|
}
|
|
154
256
|
interface IIconInput extends IField {
|
|
155
257
|
additionalButtons?: React__default.ReactNode;
|
|
258
|
+
additionalButtonsPosition?: 'before' | 'after';
|
|
156
259
|
buttonProps?: Partial<React__default.ComponentProps<typeof IconButton>>;
|
|
157
260
|
buttonRef?: React__default.RefObject<HTMLButtonElement>;
|
|
158
261
|
hideButton?: boolean;
|
|
159
262
|
icon?: TIconType | TIconName;
|
|
160
263
|
inputProps?: Partial<InputProps>;
|
|
161
264
|
inputRef?: React__default.RefObject<HTMLInputElement>;
|
|
162
|
-
mask?: string;
|
|
163
265
|
onClick?: (ev: React__default.MouseEvent) => void;
|
|
164
266
|
onBlur?: React__default.FocusEventHandler;
|
|
165
267
|
[key: string]: unknown;
|
|
166
268
|
}
|
|
167
|
-
declare const IconInput: ({ additionalButtons, buttonProps, buttonRef, className, disabled, hideButton, icon, inputProps, inputRef, isLoading, mask, onClick, onBlur, readOnly, ...rest }: IIconInput) =>
|
|
269
|
+
declare const IconInput: ({ additionalButtons, additionalButtonsPosition, buttonProps, buttonRef, className, disabled, hideButton, icon, inputProps, inputRef, isLoading, mask, onClick, onBlur, readOnly, ...rest }: IIconInput) => React__default.JSX.Element;
|
|
168
270
|
|
|
271
|
+
declare global {
|
|
272
|
+
interface Window {
|
|
273
|
+
LANG_CODE: string;
|
|
274
|
+
MSG_INVALID_DATE: string;
|
|
275
|
+
MSG_FEC_FIN_MAY_FEC_INI: string;
|
|
276
|
+
LBL_PICK_DATE: string;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
169
279
|
type TDateProps = TModify<InputProps, {
|
|
170
280
|
allowPickBeforeToday?: boolean;
|
|
171
281
|
error?: string | null;
|
|
@@ -199,7 +309,7 @@ interface IFieldErrorMessage {
|
|
|
199
309
|
children: React$1.ReactNode | string;
|
|
200
310
|
name?: string;
|
|
201
311
|
}
|
|
202
|
-
declare const FieldErrorMessage: ({ children, name }: IFieldErrorMessage) =>
|
|
312
|
+
declare const FieldErrorMessage: ({ children, name }: IFieldErrorMessage) => React$1.JSX.Element | null;
|
|
203
313
|
|
|
204
314
|
/**
|
|
205
315
|
* El NumberInput respeta los parámetros de ambiente:
|
|
@@ -220,6 +330,15 @@ type TNumberInput = Omit<InputProps, 'type' | 'onChange' | 'onBlur' | 'value' |
|
|
|
220
330
|
defaultValue?: string;
|
|
221
331
|
avoidDecimalRestriction?: boolean;
|
|
222
332
|
};
|
|
333
|
+
declare global {
|
|
334
|
+
interface Window {
|
|
335
|
+
AMOUNT_DECIMAL_SEPARATOR: string;
|
|
336
|
+
AMOUNT_DECIMAL_ZEROS: string;
|
|
337
|
+
CHAR_DECIMAL_SEPARATOR: string;
|
|
338
|
+
CHAR_THOUS_SEPARATOR: string;
|
|
339
|
+
ADD_THOUSAND_SEPARATOR: string;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
223
342
|
declare function parseNumberInputValueToNumber(value: string): number;
|
|
224
343
|
declare function parseNumberValueToNumberInput(value: string | number): string;
|
|
225
344
|
declare const NumberInput: React__default.ForwardRefExoticComponent<Omit<TNumberInput, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
@@ -232,11 +351,46 @@ interface IRequiredMark {
|
|
|
232
351
|
/**
|
|
233
352
|
* Muestra el * en los campos de requerido.
|
|
234
353
|
*/
|
|
235
|
-
declare const RequiredMark: ({ isFormReadonly, isRequired, isReadonly, }: IRequiredMark) =>
|
|
354
|
+
declare const RequiredMark: ({ isFormReadonly, isRequired, isReadonly, }: IRequiredMark) => React$1.JSX.Element | null;
|
|
236
355
|
|
|
237
356
|
declare const getFieldErrorStyles: (isValid: boolean) => ThemeUICSSObject;
|
|
238
357
|
declare const getFieldTouchedStyles: (isTouched: boolean) => ThemeUICSSObject;
|
|
239
358
|
|
|
359
|
+
type TFieldLabel = {
|
|
360
|
+
avoidSemicolon?: boolean;
|
|
361
|
+
/**
|
|
362
|
+
* Permite mostrar un mensaje de error debajo del campo
|
|
363
|
+
*/
|
|
364
|
+
error?: string;
|
|
365
|
+
hideRequiredMark?: boolean;
|
|
366
|
+
label: string;
|
|
367
|
+
/**
|
|
368
|
+
* La propiedad required se utiliza para mostrar el * de requerido.
|
|
369
|
+
*
|
|
370
|
+
* @see requiredMarkPosition
|
|
371
|
+
* @see hideRequiredMark
|
|
372
|
+
*/
|
|
373
|
+
required?: boolean;
|
|
374
|
+
requiredMarkPosition?: 'before' | 'after';
|
|
375
|
+
} & BoxProps;
|
|
376
|
+
declare const FieldLabel: React$1.ForwardRefExoticComponent<{
|
|
377
|
+
avoidSemicolon?: boolean | undefined;
|
|
378
|
+
/**
|
|
379
|
+
* Permite mostrar un mensaje de error debajo del campo
|
|
380
|
+
*/
|
|
381
|
+
error?: string | undefined;
|
|
382
|
+
hideRequiredMark?: boolean | undefined;
|
|
383
|
+
label: string;
|
|
384
|
+
/**
|
|
385
|
+
* La propiedad required se utiliza para mostrar el * de requerido.
|
|
386
|
+
*
|
|
387
|
+
* @see requiredMarkPosition
|
|
388
|
+
* @see hideRequiredMark
|
|
389
|
+
*/
|
|
390
|
+
required?: boolean | undefined;
|
|
391
|
+
requiredMarkPosition?: "after" | "before" | undefined;
|
|
392
|
+
} & BoxProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
393
|
+
|
|
240
394
|
type TListboxItem = {
|
|
241
395
|
children: ReactNode;
|
|
242
396
|
rowIndex?: number;
|
|
@@ -318,7 +472,7 @@ type TListbox = {
|
|
|
318
472
|
* onKeyDown e id no son permitidas dado que se usan para generar el
|
|
319
473
|
* comportamiento correcto del componente
|
|
320
474
|
*/
|
|
321
|
-
ulProps?: Omit<BoxProps, 'id' | 'onKeyDown'>;
|
|
475
|
+
ulProps?: Omit<BoxProps, 'id' | 'onKeyDown' | 'sx'>;
|
|
322
476
|
} & Partial<Pick<TListboxState, 'allowMultipleCharacterSearch' | 'allowSelection' | 'allowSingleCharacterSearch' | 'isMultipleSelection' | 'searchFunction' | 'startsWithFunction' | 'showSearchbox'>>;
|
|
323
477
|
|
|
324
478
|
type TOnConfirmSelection = {
|
|
@@ -332,11 +486,11 @@ type TOnSelectionChange = {
|
|
|
332
486
|
};
|
|
333
487
|
type TOnClickNode = MouseEvent;
|
|
334
488
|
|
|
335
|
-
declare const Listbox: React$1.MemoExoticComponent<((props: TListbox) =>
|
|
489
|
+
declare const Listbox: React$1.MemoExoticComponent<((props: TListbox) => React$1.JSX.Element) & {
|
|
336
490
|
displayName: string;
|
|
337
491
|
}>;
|
|
338
492
|
|
|
339
|
-
declare const LinearLoader: () =>
|
|
493
|
+
declare const LinearLoader: () => React$1.JSX.Element;
|
|
340
494
|
|
|
341
495
|
interface IProgressBar {
|
|
342
496
|
id: string;
|
|
@@ -345,6 +499,12 @@ interface IProgressBar {
|
|
|
345
499
|
}
|
|
346
500
|
declare const ProgressBar: FC<IProgressBar>;
|
|
347
501
|
|
|
502
|
+
declare const LoaderSpinner: ((props: {
|
|
503
|
+
className?: string | undefined;
|
|
504
|
+
}) => React__default.JSX.Element) & {
|
|
505
|
+
displayName: string;
|
|
506
|
+
};
|
|
507
|
+
|
|
348
508
|
interface IDialogHeader {
|
|
349
509
|
className?: string;
|
|
350
510
|
close: () => void;
|
|
@@ -352,6 +512,11 @@ interface IDialogHeader {
|
|
|
352
512
|
id?: string;
|
|
353
513
|
NavBar?: React__default.ReactNode;
|
|
354
514
|
title?: string;
|
|
515
|
+
}
|
|
516
|
+
declare global {
|
|
517
|
+
interface Window {
|
|
518
|
+
BTN_CLOSE: string;
|
|
519
|
+
}
|
|
355
520
|
}
|
|
356
521
|
|
|
357
522
|
type TModalContext = {
|
|
@@ -595,6 +760,12 @@ declare function useModal(configuration?: TUseModalConfiguration): {
|
|
|
595
760
|
show: () => void;
|
|
596
761
|
};
|
|
597
762
|
|
|
763
|
+
declare global {
|
|
764
|
+
interface Window {
|
|
765
|
+
BTN_CONFIRM: string;
|
|
766
|
+
BTN_CANCEL: string;
|
|
767
|
+
}
|
|
768
|
+
}
|
|
598
769
|
declare function getConfirmButton(ref: HTMLElement): HTMLElement;
|
|
599
770
|
interface IConfirm {
|
|
600
771
|
additionalButtons?: React$1.ReactNode;
|
|
@@ -613,11 +784,6 @@ interface IConfirm {
|
|
|
613
784
|
onCancel?: (ev: React$1.MouseEvent) => unknown;
|
|
614
785
|
variant?: string;
|
|
615
786
|
}
|
|
616
|
-
declare global {
|
|
617
|
-
interface Window {
|
|
618
|
-
[key: string]: string;
|
|
619
|
-
}
|
|
620
|
-
}
|
|
621
787
|
declare const Confirm: React$1.FC<IConfirm>;
|
|
622
788
|
|
|
623
789
|
interface IDialogButtonBar {
|
|
@@ -642,11 +808,20 @@ interface IOverlay extends BoxProps {
|
|
|
642
808
|
}
|
|
643
809
|
declare const Overlay: React$1.ForwardRefExoticComponent<IOverlay & React$1.RefAttributes<unknown>>;
|
|
644
810
|
|
|
811
|
+
declare global {
|
|
812
|
+
interface Window {
|
|
813
|
+
WAIT_A_SECOND: string;
|
|
814
|
+
}
|
|
815
|
+
}
|
|
645
816
|
/**
|
|
646
817
|
* Implementación de la clase screenLocker que maneja tres tipos de bloqueo:
|
|
647
818
|
* common, linear, y white. El caso del forced lo trata como common.
|
|
648
819
|
*/
|
|
649
|
-
declare const ScreenLock: () =>
|
|
820
|
+
declare const ScreenLock: () => React__default.JSX.Element | null;
|
|
821
|
+
|
|
822
|
+
declare const AutoEllipsis: ({ children }: {
|
|
823
|
+
children: ReactNode;
|
|
824
|
+
}) => React$1.JSX.Element;
|
|
650
825
|
|
|
651
826
|
interface IMakeResponsiveComponent<P extends Record<string, unknown>> {
|
|
652
827
|
breakPoints: number[];
|
|
@@ -666,6 +841,11 @@ interface IMakeResponsiveComponent<P extends Record<string, unknown>> {
|
|
|
666
841
|
*/
|
|
667
842
|
defaultBreakpoint?: number;
|
|
668
843
|
}
|
|
844
|
+
interface IResponsiveComponent<P> extends FC<P> {
|
|
845
|
+
setBreakpoints: {
|
|
846
|
+
current: (breakPoints: number[]) => void;
|
|
847
|
+
};
|
|
848
|
+
}
|
|
669
849
|
/**
|
|
670
850
|
* El método makeResponsiveComponent agrega un wrapper alrededor de un
|
|
671
851
|
* componente para conocer el ancho del contenedor del mismo. De esta forma, es
|
|
@@ -673,9 +853,9 @@ interface IMakeResponsiveComponent<P extends Record<string, unknown>> {
|
|
|
673
853
|
* poder tomar decisiones de responsividad que no dependen del ancho de la
|
|
674
854
|
* pantalla sino del espacio donde se encuentra.
|
|
675
855
|
*/
|
|
676
|
-
declare const makeResponsiveComponent: <P extends Record<string, unknown>>({ breakPoints, Component, debounce, defaultBreakpoint, }: IMakeResponsiveComponent<P>) =>
|
|
856
|
+
declare const makeResponsiveComponent: <P extends Record<string, unknown>>({ breakPoints, Component, debounce, defaultBreakpoint, }: IMakeResponsiveComponent<P>) => IResponsiveComponent<P & {
|
|
677
857
|
breakPoints?: number[] | undefined;
|
|
678
|
-
}
|
|
858
|
+
}>;
|
|
679
859
|
|
|
680
860
|
/**
|
|
681
861
|
* Type-ahead is a behavior pattern which helps the user in the lists and trees
|
|
@@ -808,10 +988,12 @@ type TIconsList<P = Record<string, unknown>> = {
|
|
|
808
988
|
type TIconRenderer<P = Record<string, unknown>> = FunctionComponent<TIcon<P>>;
|
|
809
989
|
|
|
810
990
|
declare const IconsList: {
|
|
811
|
-
<P extends Record<string, unknown>>(props: TIconsList<P>, ref: ForwardedRef<HTMLDivElement>):
|
|
991
|
+
<P extends Record<string, unknown>>(props: TIconsList<P>, ref: ForwardedRef<HTMLDivElement>): React$1.JSX.Element;
|
|
812
992
|
displayName: string;
|
|
813
993
|
};
|
|
814
994
|
|
|
995
|
+
declare function importComponent<T = unknown>(path: string): React$1.LazyExoticComponent<ComponentType<T>>;
|
|
996
|
+
|
|
815
997
|
type TAttachToElement = (() => HTMLElement) | RefObject<HTMLElement>;
|
|
816
998
|
type TPreferredOrientationX = 'left' | 'right';
|
|
817
999
|
type TPreferredOrientationY = 'top' | 'bottom';
|
|
@@ -932,4 +1114,4 @@ declare function useTooltip(tooltip?: TTooltip): {
|
|
|
932
1114
|
toggle: (otherProps?: Partial<TTooltip>) => void;
|
|
933
1115
|
};
|
|
934
1116
|
|
|
935
|
-
export { ApiaFilter, BaseButton, CalendarModal, Captcha, Checkbox, CollapsiblePanel, Confirm, DateInput, DialogButtonBar, FieldErrorMessage, IApiaFilter, ICalendarModal, IConfirm, IDialogButtonBar, IDialogHeader, IField, IFieldErrorMessage, IIconInput, IOverlay, IRequiredMark, ISimpleButton, IconButton, IconInput, IconsList, LinearLoader, Listbox, ListboxItem, Modal, ModalContext, NumberInput, Overlay, ProgressBar, RequiredMark, ScreenLock, SimpleButton, TApiaButtonType, TApiaIconButton, TCheckbox, TDateProps, TIcon, TIconButton, TIconRenderer, TIconSize, TIconsList, TListbox, TModal, TModalContext, TModalSize, TNumberInput, TNumberInputChangeEvent, TOnClickNode, TOnConfirmSelection, TOnSelectionChange, TTooltip, TTooltipEvents, TUseModalConfiguration, TooltipsProvider, WaiTypeAhead, getConfirmButton, getFieldErrorStyles, getFieldTouchedStyles, makeResponsiveComponent, parseNumberInputValueToNumber, parseNumberValueToNumberInput, tooltipsHandler, useModal, useOtherTagButton, useTooltip };
|
|
1117
|
+
export { Accordion, AccordionContext, AccordionItem, AccordionItemButton, AccordionItemContent, AccordionItemContext, ApiaFilter, AutoEllipsis, BaseButton, CalendarModal, Captcha, Checkbox, CollapsiblePanel, Confirm, DateInput, DialogButtonBar, FieldErrorMessage, FieldLabel, IAccordionItemProps, IAccordionProps, IApiaFilter, ICalendarModal, IConfirm, IDialogButtonBar, IDialogHeader, IField, IFieldErrorMessage, IIconInput, IOverlay, IRequiredMark, IResponsiveComponent, ISimpleButton, IconButton, IconInput, IconsList, LinearLoader, Listbox, ListboxItem, LoaderSpinner, Modal, ModalContext, NumberInput, Overlay, ProgressBar, RequiredMark, ScreenLock, SimpleButton, TAccordionHandler, TAccordionItemButton, TApiaButtonType, TApiaIconButton, TCheckbox, TDateProps, TFieldLabel, TIcon, TIconButton, TIconRenderer, TIconSize, TIconsList, TListbox, TModal, TModalContext, TModalSize, TNumberInput, TNumberInputChangeEvent, TOnClickNode, TOnConfirmSelection, TOnSelectionChange, TTooltip, TTooltipEvents, TUseModalConfiguration, TooltipsProvider, WaiTypeAhead, getConfirmButton, getFieldErrorStyles, getFieldTouchedStyles, importComponent, makeResponsiveComponent, parseNumberInputValueToNumber, parseNumberValueToNumberInput, tooltipsHandler, useAccordionContext, useModal, useOtherTagButton, useTooltip };
|