@apia/components 4.0.60 → 4.0.63
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 +18 -3
- package/dist/index.js +100 -41
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -491,10 +491,11 @@ interface IConfirm {
|
|
|
491
491
|
title?: string;
|
|
492
492
|
size?: TModalSize;
|
|
493
493
|
variant?: string;
|
|
494
|
+
htmlContent?: string;
|
|
494
495
|
}
|
|
495
496
|
declare const ConfirmModal: ({ onConfirm, onCancel, title, size, ...props }: IConfirm) => JSX.Element;
|
|
496
497
|
|
|
497
|
-
type TApiaUtilConfirm = Pick<IConfirm, 'additionalButtons' | 'additionalButtonsOnRight' | 'cancelButtonText' | 'children' | 'className' | 'confirmButtonText' | 'confirmButtonVariant' | 'contentRef' | 'hideCancelButton' | 'hideConfirmButton' | 'title' | 'size' | 'variant'>;
|
|
498
|
+
type TApiaUtilConfirm = Pick<IConfirm, 'additionalButtons' | 'additionalButtonsOnRight' | 'cancelButtonText' | 'children' | 'className' | 'confirmButtonText' | 'confirmButtonVariant' | 'contentRef' | 'hideCancelButton' | 'hideConfirmButton' | 'title' | 'size' | 'variant' | 'htmlContent'>;
|
|
498
499
|
type TApiaUtilInnerConfirm = TApiaUtilConfirm & {
|
|
499
500
|
id: string;
|
|
500
501
|
} & Pick<IConfirm, 'onCancel' | 'onConfirm'>;
|
|
@@ -1194,6 +1195,20 @@ declare const FieldLabel: React$1.ForwardRefExoticComponent<{
|
|
|
1194
1195
|
requiredMarkPosition?: "before" | "after";
|
|
1195
1196
|
} & BoxProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1196
1197
|
|
|
1198
|
+
type SwitchMultipleOption<T extends string> = {
|
|
1199
|
+
value: T;
|
|
1200
|
+
label: string;
|
|
1201
|
+
};
|
|
1202
|
+
declare const SwitchMultiple: (<T extends string>({ options, defaultValue, value, onChange, variant, }: {
|
|
1203
|
+
options: SwitchMultipleOption<T>[];
|
|
1204
|
+
defaultValue?: T;
|
|
1205
|
+
value?: T;
|
|
1206
|
+
onChange: (ev: T) => unknown;
|
|
1207
|
+
variant?: string;
|
|
1208
|
+
}) => React$1.JSX.Element) & {
|
|
1209
|
+
displayName: string;
|
|
1210
|
+
};
|
|
1211
|
+
|
|
1197
1212
|
interface IAccordionItemButton {
|
|
1198
1213
|
ariaLabel: string;
|
|
1199
1214
|
/**
|
|
@@ -1601,7 +1616,7 @@ declare function useModal(configuration?: TUseModalConfiguration): {
|
|
|
1601
1616
|
show: () => void;
|
|
1602
1617
|
};
|
|
1603
1618
|
|
|
1604
|
-
declare const Confirm: ({ children, additionalButtons, additionalButtonsOnRight, cancelButtonText: cancelText, className, confirmButtonText: confirmText, confirmButtonVariant, contentRef, disabled, hideCancelButton, hideConfirmButton, isLoading, onCancel, onConfirm, variant, }: Omit<IConfirm, "title">) => React$1.JSX.Element;
|
|
1619
|
+
declare const Confirm: ({ children, additionalButtons, additionalButtonsOnRight, cancelButtonText: cancelText, className, confirmButtonText: confirmText, confirmButtonVariant, contentRef, disabled, hideCancelButton, hideConfirmButton, isLoading, onCancel, onConfirm, variant, htmlContent, }: Omit<IConfirm, "title">) => React$1.JSX.Element;
|
|
1605
1620
|
|
|
1606
1621
|
interface IDialogButtonBar {
|
|
1607
1622
|
children: React$1.ReactNode;
|
|
@@ -2616,5 +2631,5 @@ declare class Templater {
|
|
|
2616
2631
|
parseString(content: string, options?: IAlterDefaultOptions): string | JSX.Element | JSX.Element[];
|
|
2617
2632
|
}
|
|
2618
2633
|
|
|
2619
|
-
export { Accordion, AccordionAside, AccordionContext, AccordionItem, AccordionItemButton, AccordionItemContent, AccordionItemContext, AlertModal, ApiaFilter, ApiaUtil, ApiaUtilModalHandler, ApiaUtilTooltip, Aside, AsideLoader, AsidePanel, AutoEllipsis, Autocomplete, type AutocompleteCmpProps, AutocompleteController, type AutocompleteOption, type AutocompleteProps, AutogrowTextarea, BaseButton, BodyAside, CalendarModal, Captcha, CenteredHeaderButtons, Checkbox, CheckboxLabel, CollapsiblePanel, Confirm, ConfirmModal, ContainerWithHeader, DateInput, DeadSessionModal, DefaultAccordionItemButton, DefaultIconRenderer, DefaultTabsLabelRenderer, DialogButtonBar, Dropzone, FavoriteIcon, FieldErrorMessage, FieldLabel, FileCard, FilterConditionDTO, FilterDTO, FiltersStore, FloatingAside, FooterButtons, FooterResponsiveButtons, HamburguerMenu, Header, HeaderButtons, type IAccordionItemButton, type IAccordionItemProps, type IAccordionProps, type IAlert, type IApiaFilter, type IAsidePanel, type ICalendarModal, type IConfirm, type IDialogButtonBar, type IDialogHeader, type IField, type IFieldErrorMessage, type IFilterCondition, type IFilterDTOState, type IFilterValue, type IIconInput, type IMenuDefinition, type IOverlay, type IPagination, type IParameter, type IParametersGroup, type IRequiredMark, type IResponsiveComponent, type ISimpleButton, type ITableParameterProps, IconButton, IconInput, IconsList, Label, LabelBox, LinearLoader, LinearSpinnerLock, ListSkeletonLoader, Listbox, ListboxItem, LoaderSpinner, _default as MDRenderer, Modal, ModalContext, NumberInput, Overlay, Pagination, Parameter, type ParameterObject, type ParameterPossibleValue, ParameterRender, type ParameterRenderer, type ParameterRendererProps, type ParameterType, Parameters, type ParametersDefinition, ParametersGroup, type ParametersGroupRenderer, ParametersStore, ParametersTable, type Payload, Permissions, ProgressBar, RequiredMark, ScreenLocker, ShowResponsive, SimpleButton, SortableList, SortableListItem, SwitchCard, type TAccordionHandler, type TAccordionItemButton, type TApiaButtonType, type TApiaIconButton, type TCheckbox, type TCheckboxLabel, type TCssProps, type TDateProps, type TFieldLabel, type TFilterOp, type TFilterPayload, type TFilterType, type TFilterValue, type TFilterValueType, type TGetTabsController, type TIcon, type TIconButton, type TIconRenderer, type TIconSize, type TIconsList, type TListbox, type TMenuItem, type TModal, type TModalSize, type TNumberInput, type TNumberInputChangeEvent, type TOnClickNode, type TOnConfirmSelection, type TOnSelectionChange, type TOpenModal, type TParameterType, type TPickPoolForPermissions, type TPickUserForPermissions, type TSubmenu, type TTab, type TTabLabelRenderer as TTabRenderer, type TToolbarIconButton as TToolDefinition, type TTooltip, type TUploadHandlerProps, type TUploadInProgress, type TUploadedFile, type TUseModalConfiguration, type TVisualizationType, Tab, Tabs, TabsContent, TabsController, TabsList, Templater, Toolbar, ToolbarController, ToolbarIconButton, ToolbarInput, ToolbarSelect, ToolbarSeparator, ToolbarTextButton, UnstyledSortableList, UploadHandler, Uploader, WaiTypeAhead, getFieldErrorStyles, getFieldTouchedStyles, importComponent, isFavoriteIcon, isParametersGroup, makeResponsiveComponent, menuController, parseNumberInputValueToNumber, parseNumberValueToNumberInput, useAccordionContext, useCurrentTab, useMenu, useModal, useModalContext, useOtherTagButton, useTabsContext };
|
|
2634
|
+
export { Accordion, AccordionAside, AccordionContext, AccordionItem, AccordionItemButton, AccordionItemContent, AccordionItemContext, AlertModal, ApiaFilter, ApiaUtil, ApiaUtilModalHandler, ApiaUtilTooltip, Aside, AsideLoader, AsidePanel, AutoEllipsis, Autocomplete, type AutocompleteCmpProps, AutocompleteController, type AutocompleteOption, type AutocompleteProps, AutogrowTextarea, BaseButton, BodyAside, CalendarModal, Captcha, CenteredHeaderButtons, Checkbox, CheckboxLabel, CollapsiblePanel, Confirm, ConfirmModal, ContainerWithHeader, DateInput, DeadSessionModal, DefaultAccordionItemButton, DefaultIconRenderer, DefaultTabsLabelRenderer, DialogButtonBar, Dropzone, FavoriteIcon, FieldErrorMessage, FieldLabel, FileCard, FilterConditionDTO, FilterDTO, FiltersStore, FloatingAside, FooterButtons, FooterResponsiveButtons, HamburguerMenu, Header, HeaderButtons, type IAccordionItemButton, type IAccordionItemProps, type IAccordionProps, type IAlert, type IApiaFilter, type IAsidePanel, type ICalendarModal, type IConfirm, type IDialogButtonBar, type IDialogHeader, type IField, type IFieldErrorMessage, type IFilterCondition, type IFilterDTOState, type IFilterValue, type IIconInput, type IMenuDefinition, type IOverlay, type IPagination, type IParameter, type IParametersGroup, type IRequiredMark, type IResponsiveComponent, type ISimpleButton, type ITableParameterProps, IconButton, IconInput, IconsList, Label, LabelBox, LinearLoader, LinearSpinnerLock, ListSkeletonLoader, Listbox, ListboxItem, LoaderSpinner, _default as MDRenderer, Modal, ModalContext, NumberInput, Overlay, Pagination, Parameter, type ParameterObject, type ParameterPossibleValue, ParameterRender, type ParameterRenderer, type ParameterRendererProps, type ParameterType, Parameters, type ParametersDefinition, ParametersGroup, type ParametersGroupRenderer, ParametersStore, ParametersTable, type Payload, Permissions, ProgressBar, RequiredMark, ScreenLocker, ShowResponsive, SimpleButton, SortableList, SortableListItem, SwitchCard, SwitchMultiple, type SwitchMultipleOption, type TAccordionHandler, type TAccordionItemButton, type TApiaButtonType, type TApiaIconButton, type TCheckbox, type TCheckboxLabel, type TCssProps, type TDateProps, type TFieldLabel, type TFilterOp, type TFilterPayload, type TFilterType, type TFilterValue, type TFilterValueType, type TGetTabsController, type TIcon, type TIconButton, type TIconRenderer, type TIconSize, type TIconsList, type TListbox, type TMenuItem, type TModal, type TModalSize, type TNumberInput, type TNumberInputChangeEvent, type TOnClickNode, type TOnConfirmSelection, type TOnSelectionChange, type TOpenModal, type TParameterType, type TPickPoolForPermissions, type TPickUserForPermissions, type TSubmenu, type TTab, type TTabLabelRenderer as TTabRenderer, type TToolbarIconButton as TToolDefinition, type TTooltip, type TUploadHandlerProps, type TUploadInProgress, type TUploadedFile, type TUseModalConfiguration, type TVisualizationType, Tab, Tabs, TabsContent, TabsController, TabsList, Templater, Toolbar, ToolbarController, ToolbarIconButton, ToolbarInput, ToolbarSelect, ToolbarSeparator, ToolbarTextButton, UnstyledSortableList, UploadHandler, Uploader, WaiTypeAhead, getFieldErrorStyles, getFieldTouchedStyles, importComponent, isFavoriteIcon, isParametersGroup, makeResponsiveComponent, menuController, parseNumberInputValueToNumber, parseNumberValueToNumberInput, useAccordionContext, useCurrentTab, useMenu, useModal, useModalContext, useOtherTagButton, useTabsContext };
|
|
2620
2635
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -17,6 +17,7 @@ import { makeObservable, observable, makeAutoObservable, reaction, isObservable,
|
|
|
17
17
|
import { observer } from 'mobx-react-lite';
|
|
18
18
|
import { Icon as Icon$1, icons, FileIcon, isIconName } from '@apia/icons';
|
|
19
19
|
import { MenuDivider, SubMenu, MenuItem, ControlledMenu, useMenuState } from '@szhsin/react-menu';
|
|
20
|
+
import axios from 'axios';
|
|
20
21
|
import { shallowEqual } from '@apia/store';
|
|
21
22
|
import AnimateHeight from 'react-animate-height';
|
|
22
23
|
import { useUpdateEffect as useUpdateEffect$1, useScroll } from 'ahooks';
|
|
@@ -1884,7 +1885,8 @@ const Confirm = ({
|
|
|
1884
1885
|
isLoading,
|
|
1885
1886
|
onCancel,
|
|
1886
1887
|
onConfirm,
|
|
1887
|
-
variant
|
|
1888
|
+
variant,
|
|
1889
|
+
htmlContent
|
|
1888
1890
|
}) => {
|
|
1889
1891
|
const { descriptionId } = useModalContext();
|
|
1890
1892
|
const showsCancelButton = onCancel && !hideCancelButton;
|
|
@@ -1901,7 +1903,7 @@ const Confirm = ({
|
|
|
1901
1903
|
...getVariant(variant ?? "layout.common.modals.confirm"),
|
|
1902
1904
|
className: `${className ?? ""} confirm`,
|
|
1903
1905
|
children: [
|
|
1904
|
-
/* @__PURE__ */ jsx(Box, { ref: contentRef, className: "confirm__content", id: descriptionId, children }),
|
|
1906
|
+
/* @__PURE__ */ jsx(Box, { ref: contentRef, className: "confirm__content", id: descriptionId, children: htmlContent ? /* @__PURE__ */ jsx(Box, { dangerouslySetInnerHTML: { __html: htmlContent } }) : children }),
|
|
1905
1907
|
/* @__PURE__ */ jsxs(DialogButtonBar, { className: "confirm__buttonBar", children: [
|
|
1906
1908
|
/* @__PURE__ */ jsx(
|
|
1907
1909
|
Box,
|
|
@@ -3507,40 +3509,50 @@ const SearchBox = observer((props) => {
|
|
|
3507
3509
|
},
|
|
3508
3510
|
children: handler.state.options.map((c) => /* @__PURE__ */ jsx("option", { value: c.value, children: c.label }, c.value))
|
|
3509
3511
|
}
|
|
3510
|
-
) : /* @__PURE__ */ jsxs(
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
{
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3512
|
+
) : /* @__PURE__ */ jsxs(
|
|
3513
|
+
Box,
|
|
3514
|
+
{
|
|
3515
|
+
sx: { display: "flex", flexDirection: "row", alignItems: "center" },
|
|
3516
|
+
onClick: () => {
|
|
3517
|
+
handler.state.width = boxRef.current?.getBoundingClientRect().width ?? handler.state.width;
|
|
3518
|
+
handler.toggleOpen();
|
|
3519
|
+
},
|
|
3520
|
+
children: [
|
|
3521
|
+
/* @__PURE__ */ jsx(
|
|
3522
|
+
Input,
|
|
3523
|
+
{
|
|
3524
|
+
...props,
|
|
3525
|
+
className: `autocomplete__search ${handler.state.disabled ? "disabled" : ""} ${handler.state.readOnly ? "readOnly" : ""}`,
|
|
3526
|
+
onChange: async (ev) => {
|
|
3527
|
+
handler.search(ev.target.value);
|
|
3528
|
+
},
|
|
3529
|
+
onClick: () => {
|
|
3530
|
+
handler.state.width = boxRef.current?.getBoundingClientRect().width ?? handler.state.width;
|
|
3531
|
+
handler.toggleOpen();
|
|
3532
|
+
},
|
|
3533
|
+
onFocus: (ev) => {
|
|
3534
|
+
ev.target.setSelectionRange(0, ev.target.value.length);
|
|
3535
|
+
},
|
|
3536
|
+
onBlur: () => {
|
|
3537
|
+
handler.close();
|
|
3538
|
+
},
|
|
3539
|
+
value: handler.state.showValue
|
|
3540
|
+
}
|
|
3541
|
+
),
|
|
3542
|
+
/* @__PURE__ */ jsxs(Box, { className: "autocomplete__icons", children: [
|
|
3543
|
+
handler.state.loading && /* @__PURE__ */ jsx(Spinner, { className: "autocomplete__loadingSpinner" }),
|
|
3544
|
+
/* @__PURE__ */ jsx(
|
|
3545
|
+
Icon$1,
|
|
3546
|
+
{
|
|
3547
|
+
title: "",
|
|
3548
|
+
name: handler.state?.icon || "ArrowDown",
|
|
3549
|
+
className: "autocomplete__downArrow"
|
|
3550
|
+
}
|
|
3551
|
+
)
|
|
3552
|
+
] })
|
|
3553
|
+
]
|
|
3554
|
+
}
|
|
3555
|
+
)
|
|
3544
3556
|
] });
|
|
3545
3557
|
});
|
|
3546
3558
|
|
|
@@ -3650,15 +3662,25 @@ const AutogrowTextarea = observer(
|
|
|
3650
3662
|
const bounding = el.getBoundingClientRect();
|
|
3651
3663
|
if (bounding.width > 0) {
|
|
3652
3664
|
clearInterval(interval);
|
|
3665
|
+
const style = window.getComputedStyle(el);
|
|
3653
3666
|
const copy = el.cloneNode(true);
|
|
3654
|
-
copy.style.
|
|
3667
|
+
copy.style.boxSizing = style.boxSizing;
|
|
3668
|
+
copy.style.padding = style.padding;
|
|
3669
|
+
copy.style.border = style.border;
|
|
3670
|
+
copy.style.lineHeight = style.lineHeight;
|
|
3671
|
+
copy.style.font = style.font;
|
|
3672
|
+
copy.style.whiteSpace = style.whiteSpace;
|
|
3655
3673
|
copy.style.position = "fixed";
|
|
3656
3674
|
copy.style.left = "-9999px";
|
|
3657
|
-
copy.style.
|
|
3658
|
-
copy.style.height = "
|
|
3675
|
+
copy.style.top = "0";
|
|
3676
|
+
copy.style.height = "auto";
|
|
3677
|
+
copy.style.opacity = "0";
|
|
3678
|
+
copy.style.overflow = "hidden";
|
|
3679
|
+
copy.style.width = `${el.clientWidth}px`;
|
|
3659
3680
|
document.body.append(copy);
|
|
3660
|
-
|
|
3681
|
+
const height = copy.scrollHeight;
|
|
3661
3682
|
copy.remove();
|
|
3683
|
+
el.style.height = `${height + 5}px`;
|
|
3662
3684
|
}
|
|
3663
3685
|
};
|
|
3664
3686
|
const interval = setInterval(update, 100);
|
|
@@ -4688,6 +4710,39 @@ const FieldLabel = forwardRef(
|
|
|
4688
4710
|
);
|
|
4689
4711
|
FieldLabel.displayName = "FieldLabel";
|
|
4690
4712
|
|
|
4713
|
+
const SwitchMultiple = observer(
|
|
4714
|
+
({
|
|
4715
|
+
options,
|
|
4716
|
+
defaultValue,
|
|
4717
|
+
value,
|
|
4718
|
+
onChange,
|
|
4719
|
+
variant
|
|
4720
|
+
}) => {
|
|
4721
|
+
const actualValue = value ?? defaultValue;
|
|
4722
|
+
return /* @__PURE__ */ jsx(
|
|
4723
|
+
Box,
|
|
4724
|
+
{
|
|
4725
|
+
...getVariant(variant ?? "layout.validations.fields.switchMultiple"),
|
|
4726
|
+
children: options.map((o, idx) => {
|
|
4727
|
+
const active = actualValue === o.value;
|
|
4728
|
+
return /* @__PURE__ */ jsx(
|
|
4729
|
+
Button,
|
|
4730
|
+
{
|
|
4731
|
+
className: `switchButton ${active ? "active" : ""} ${idx === 0 ? "first" : idx === options.length - 1 ? "last" : "middle"}`,
|
|
4732
|
+
type: "button",
|
|
4733
|
+
onClick: () => {
|
|
4734
|
+
onChange(o.value);
|
|
4735
|
+
},
|
|
4736
|
+
children: o.label
|
|
4737
|
+
},
|
|
4738
|
+
o.value
|
|
4739
|
+
);
|
|
4740
|
+
})
|
|
4741
|
+
}
|
|
4742
|
+
);
|
|
4743
|
+
}
|
|
4744
|
+
);
|
|
4745
|
+
|
|
4691
4746
|
const Checkbox = (props) => {
|
|
4692
4747
|
return /* @__PURE__ */ jsx(
|
|
4693
4748
|
Box,
|
|
@@ -4987,6 +5042,7 @@ const DefaultAccordionItemButton = (props) => {
|
|
|
4987
5042
|
}
|
|
4988
5043
|
),
|
|
4989
5044
|
(props.label ?? props.title ?? props.ariaLabel).split(" | ").map((content, i) => {
|
|
5045
|
+
console.log(props, content, i);
|
|
4990
5046
|
if (typeof props.isHtml === "boolean" && props.isHtml || Array.isArray(props.isHtml) && props.isHtml[i]) {
|
|
4991
5047
|
return /* @__PURE__ */ jsx(
|
|
4992
5048
|
Box,
|
|
@@ -9624,6 +9680,9 @@ class TabsController {
|
|
|
9624
9680
|
if (tab && tabProps) {
|
|
9625
9681
|
if (!tabProps.isClosable && !force)
|
|
9626
9682
|
return false;
|
|
9683
|
+
await axios.post(
|
|
9684
|
+
window.CONTEXT + "/apia.splash.MenuAction.run?action=removeTab&isAjax=true&tabId=" + tabId + window.TAB_ID_REQUEST
|
|
9685
|
+
);
|
|
9627
9686
|
const { onBeforeClose } = tabProps;
|
|
9628
9687
|
if (onBeforeClose) {
|
|
9629
9688
|
const canClose = await onBeforeClose();
|
|
@@ -11418,5 +11477,5 @@ const _FiltersStore = class _FiltersStore {
|
|
|
11418
11477
|
__publicField(_FiltersStore, "instance", new _FiltersStore());
|
|
11419
11478
|
let FiltersStore = _FiltersStore;
|
|
11420
11479
|
|
|
11421
|
-
export { Accordion, AccordionAside, AccordionContext, AccordionItem, AccordionItemButton, AccordionItemContent, AccordionItemContext, AlertModal, ApiaFilter, ApiaUtil, ApiaUtilModalHandler, ApiaUtilTooltip, Aside, AsideLoader, AsidePanel, AutoEllipsis, Autocomplete, AutocompleteController, AutogrowTextarea, BaseButton, BodyAside, CalendarModal, Captcha, CenteredHeaderButtons, Checkbox$1 as Checkbox, CheckboxLabel, CollapsiblePanel, Confirm, ConfirmModal, ContainerWithHeader, DateInput, DeadSessionModal, DefaultIconRenderer, DefaultTabsLabelRenderer, DialogButtonBar, Dropzone, FavoriteIcon, FieldErrorMessage, FieldLabel, FileCard, FilterConditionDTO, FilterDTO, FiltersStore, FloatingAside, FooterButtons, FooterResponsiveButtons, HamburguerMenu, Header, HeaderButtons, IconButton, IconInput, IconsList, Label, LabelBox, LinearLoader, LinearSpinnerLock, ListSkeletonLoader, Listbox, ListboxItem, LoaderSpinner, index as MDRenderer, Modal, ModalContext, NumberInput, Overlay, Pagination, Parameter, ParameterRender, Parameters, ParametersGroup, ParametersStore, ParametersTable, Permissions, ProgressBar, RequiredMark, ScreenLocker, ShowResponsive, SimpleButton, SortableList, SortableListItem, SwitchCard, Tab, Tabs, TabsContent, TabsController, TabsList, Templater, Toolbar, ToolbarController, ToolbarIconButton, ToolbarInput, ToolbarSelect, ToolbarSeparator, ToolbarTextButton, UnstyledSortableList, UploadHandler, Uploader, WaiTypeAhead, getFieldErrorStyles, getFieldTouchedStyles, importComponent, isFavoriteIcon, isParametersGroup, makeResponsiveComponent, menuController, parseNumberInputValueToNumber, parseNumberValueToNumberInput, useAccordionContext, useCurrentTab, useMenu, useModal, useModalContext, useOtherTagButton, useTabsContext };
|
|
11480
|
+
export { Accordion, AccordionAside, AccordionContext, AccordionItem, AccordionItemButton, AccordionItemContent, AccordionItemContext, AlertModal, ApiaFilter, ApiaUtil, ApiaUtilModalHandler, ApiaUtilTooltip, Aside, AsideLoader, AsidePanel, AutoEllipsis, Autocomplete, AutocompleteController, AutogrowTextarea, BaseButton, BodyAside, CalendarModal, Captcha, CenteredHeaderButtons, Checkbox$1 as Checkbox, CheckboxLabel, CollapsiblePanel, Confirm, ConfirmModal, ContainerWithHeader, DateInput, DeadSessionModal, DefaultIconRenderer, DefaultTabsLabelRenderer, DialogButtonBar, Dropzone, FavoriteIcon, FieldErrorMessage, FieldLabel, FileCard, FilterConditionDTO, FilterDTO, FiltersStore, FloatingAside, FooterButtons, FooterResponsiveButtons, HamburguerMenu, Header, HeaderButtons, IconButton, IconInput, IconsList, Label, LabelBox, LinearLoader, LinearSpinnerLock, ListSkeletonLoader, Listbox, ListboxItem, LoaderSpinner, index as MDRenderer, Modal, ModalContext, NumberInput, Overlay, Pagination, Parameter, ParameterRender, Parameters, ParametersGroup, ParametersStore, ParametersTable, Permissions, ProgressBar, RequiredMark, ScreenLocker, ShowResponsive, SimpleButton, SortableList, SortableListItem, SwitchCard, SwitchMultiple, Tab, Tabs, TabsContent, TabsController, TabsList, Templater, Toolbar, ToolbarController, ToolbarIconButton, ToolbarInput, ToolbarSelect, ToolbarSeparator, ToolbarTextButton, UnstyledSortableList, UploadHandler, Uploader, WaiTypeAhead, getFieldErrorStyles, getFieldTouchedStyles, importComponent, isFavoriteIcon, isParametersGroup, makeResponsiveComponent, menuController, parseNumberInputValueToNumber, parseNumberValueToNumberInput, useAccordionContext, useCurrentTab, useMenu, useModal, useModalContext, useOtherTagButton, useTabsContext };
|
|
11422
11481
|
//# sourceMappingURL=index.js.map
|