@inceptionbg/iui 2.0.59 → 2.0.60
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 +13 -15
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -208,6 +208,15 @@ interface IHeaderAction {
|
|
|
208
208
|
disabled?: boolean;
|
|
209
209
|
hidden?: boolean;
|
|
210
210
|
}
|
|
211
|
+
interface IHeaderUserMenuDialogsProps {
|
|
212
|
+
controls: {
|
|
213
|
+
myAccountControl: IPopupControl;
|
|
214
|
+
changeOrgControl: IPopupControl;
|
|
215
|
+
orgInvitesControl: IPopupControl;
|
|
216
|
+
};
|
|
217
|
+
refetchOrganizationInvites?: () => void;
|
|
218
|
+
isChangePasswordHidden?: boolean;
|
|
219
|
+
}
|
|
211
220
|
type IHeaderUserMenuProps = {
|
|
212
221
|
isOpen: boolean;
|
|
213
222
|
setIsOpen: (isOpen: boolean) => void;
|
|
@@ -215,20 +224,8 @@ type IHeaderUserMenuProps = {
|
|
|
215
224
|
organizationName?: string;
|
|
216
225
|
menuItems: IMenuItem[];
|
|
217
226
|
inviteCount?: number;
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
changeOrgControl: IPopupControl;
|
|
221
|
-
orgInvitesControl: IPopupControl;
|
|
222
|
-
};
|
|
223
|
-
refetchOrganizationInvites?: () => void;
|
|
224
|
-
HeaderUserMenuDialogs: FC<{
|
|
225
|
-
controls: {
|
|
226
|
-
myAccountControl: IPopupControl;
|
|
227
|
-
changeOrgControl: IPopupControl;
|
|
228
|
-
orgInvitesControl: IPopupControl;
|
|
229
|
-
};
|
|
230
|
-
refetchOrganizationInvites?: () => void;
|
|
231
|
-
}>;
|
|
227
|
+
headerUserMenuDialogsProps: IHeaderUserMenuDialogsProps;
|
|
228
|
+
HeaderUserMenuDialogs: FC<IHeaderUserMenuDialogsProps>;
|
|
232
229
|
};
|
|
233
230
|
|
|
234
231
|
interface ITable<T = unknown> {
|
|
@@ -715,6 +712,7 @@ interface IDialogFooterActions {
|
|
|
715
712
|
disabled?: boolean;
|
|
716
713
|
keepOpen?: boolean;
|
|
717
714
|
color?: IButtonColor;
|
|
715
|
+
hidden?: boolean;
|
|
718
716
|
};
|
|
719
717
|
}
|
|
720
718
|
|
|
@@ -1714,4 +1712,4 @@ declare const parseUrlSearch: (search: string) => {
|
|
|
1714
1712
|
};
|
|
1715
1713
|
|
|
1716
1714
|
export { Accordions, Alert, Button, Checkbox, Collapse, ConditionalWrapper, CreateTemplateDialog, CurrencyInput, Dashboard, DashboardWidget, DateInput, Dialog, DotBadge, FastLinksWidget, FormWrapper, FullScreenLoader, IconButton, LargePrintEmailDialog, LazyLoader, List, Loader, Menu, MenuItem, NotificationBadge, NumberInput, PageLayout, PasswordInput, PhoneInput, PillBadge, ProgressBar, Pullover, Radio, RadioLarge, Router, ScrollableContent, SearchInput, Select, SelectAsyncPaginate, SelectCreatable, SimpleLoader, SplitButton, Table, Tabs, TemplatesPullover, TextAreaInput, TextInput, TimeInput, Tooltip, Tree, areStringArraysEqual, buildFetchOptions, calculateFilesSize, checkIfExpired, compareArrayItemsIndex, convertArrayToBooleanObject, convertBooleanObjectToArray, convertReportTemplateFilterToSearch, convertSearchToReportTemplateFilter, dataURLtoFile, dateAddDays, deepCopy, deleteEmptyProps, deleteEmptyPropsIncludingArray, deleteProps, deletePropsThatEndsWith, downloadFile, flattenTreeForSelect, formatBooleanToStringValue, formatCurrency, formatCurrencyNoDecimals, formatDate, formatDateAndTime, formatDateYMD, formatDecimalNumber, formatTime, formatYearMonth, getActiveFilterNumber, getBase64FromFile, getBase64FromUrl, getCurrentDateFormatted, getCurrentDateFormattedYMD, getDaysLeft, getExtensionFromFilename, getFileFromUrl, getInputHelperText, getInputMinMaxPattern, getPrintColumns, getVisibleColumnsIds, i18nIUICyrilic, i18nIUILatin, i18nIUIMe, inputPattern, intersectArrays, maxChar, parseUrlSearch, rootDir, rotateBase64Image, setTemplateData, sizeInBytesPretty, splitBase64File, tableCustomLimit1000, toastError, toastSuccess, useHideZendesk, useIsMenuOpen, useOnEsc, usePopupControl, useTableColumns, useTableEdit, useTableFilterFields, useTablePagination, useTablePrint, useTableSearch, useTableSelect, useTableSort };
|
|
1717
|
-
export type { DeepPartial, IAlertProps, IAnyObject, IBooleanObject, IError, IFormWrapper, IGetPrintData, IHeaderAction, IHeaderUserMenuProps, IKeyboardAction, ILocalPopupControl, IMenuItem, IMenuPlacement, INotification, INotificationsProps, IPagination, IPaginationControl, IPopupControl, IPrintData, IReportTemplate, IReportTemplateData, IReportTemplateFilterValue, IRoute, ISelectData, ISidebarItem, ISimpleObject, ISimpleObjectWithCode, IStringObject, ITab, ITable, ITableColumn, ITableDataActions, ITableDataItem, ITableDataItemCells, ITableEdit, ITableEditSubmit, ITableFilter, ITableFilterData, ITableFilterItem, ITableItemDeleteData, ITableSearchProps, ITableSort, ITableTemplateData, ITreeItem, IValueLabel, IPopupControlRef as PopupControlRef };
|
|
1715
|
+
export type { DeepPartial, IAlertProps, IAnyObject, IBooleanObject, IError, IFormWrapper, IGetPrintData, IHeaderAction, IHeaderUserMenuDialogsProps, IHeaderUserMenuProps, IKeyboardAction, ILocalPopupControl, IMenuItem, IMenuPlacement, INotification, INotificationsProps, IPagination, IPaginationControl, IPopupControl, IPrintData, IReportTemplate, IReportTemplateData, IReportTemplateFilterValue, IRoute, ISelectData, ISidebarItem, ISimpleObject, ISimpleObjectWithCode, IStringObject, ITab, ITable, ITableColumn, ITableDataActions, ITableDataItem, ITableDataItemCells, ITableEdit, ITableEditSubmit, ITableFilter, ITableFilterData, ITableFilterItem, ITableItemDeleteData, ITableSearchProps, ITableSort, ITableTemplateData, ITreeItem, IValueLabel, IPopupControlRef as PopupControlRef };
|