@apia/components 0.1.0 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -4
- package/dist/index.js +1 -4886
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ interface IBaseButton {
|
|
|
54
54
|
*/
|
|
55
55
|
declare const BaseButton: ({ id, name, onClick, isLoading, loadingChildren, disabled, children, text, variant, type, SXProps, ...buttonProps }: IBaseButton) => theme_ui_jsx_runtime.JSX.Element;
|
|
56
56
|
|
|
57
|
-
type TIconSize = number | '
|
|
57
|
+
type TIconSize = number | 'Xs' | 'Sm' | 'Md' | 'Lg' | 'Xl';
|
|
58
58
|
type TApiaIconButton = 'icon' | 'icon-primary' | 'icon-outline' | 'icon-only';
|
|
59
59
|
type TIconButton = IconButtonProps & React$1.AriaAttributes & {
|
|
60
60
|
className?: string;
|
|
@@ -675,7 +675,6 @@ interface IMakeResponsiveComponent<P extends Record<string, unknown>> {
|
|
|
675
675
|
*/
|
|
676
676
|
declare const makeResponsiveComponent: <P extends Record<string, unknown>>({ breakPoints, Component, debounce, defaultBreakpoint, }: IMakeResponsiveComponent<P>) => (props: P & {
|
|
677
677
|
breakPoints?: number[] | undefined;
|
|
678
|
-
defaultBreakPoint?: number | undefined;
|
|
679
678
|
}) => theme_ui_jsx_runtime.JSX.Element;
|
|
680
679
|
|
|
681
680
|
/**
|
|
@@ -933,5 +932,4 @@ declare function useTooltip(tooltip?: TTooltip): {
|
|
|
933
932
|
toggle: (otherProps?: Partial<TTooltip>) => void;
|
|
934
933
|
};
|
|
935
934
|
|
|
936
|
-
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, TTooltipEvents, TUseModalConfiguration, TooltipsProvider, WaiTypeAhead, getConfirmButton, getFieldErrorStyles, getFieldTouchedStyles, makeResponsiveComponent, parseNumberInputValueToNumber, parseNumberValueToNumberInput, tooltipsHandler, useModal, useOtherTagButton, useTooltip };
|
|
937
|
-
//# sourceMappingURL=index.d.ts.map
|
|
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 };
|