@inceptionbg/iui 1.0.23 → 1.0.25
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 -12
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -202,16 +202,6 @@ interface ITableEditRow {
|
|
|
202
202
|
inputFocusRef?: RefObject<any>;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
interface IToken {
|
|
206
|
-
sub: string;
|
|
207
|
-
userUuid: string;
|
|
208
|
-
clientCertificate: string;
|
|
209
|
-
scope: string[];
|
|
210
|
-
iat: number;
|
|
211
|
-
exp: number;
|
|
212
|
-
iss: string;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
205
|
interface ISidebarItem {
|
|
216
206
|
label: string;
|
|
217
207
|
icon?: IconDefinition;
|
|
@@ -699,7 +689,7 @@ declare const parseUrlSearch: (search: string) => {
|
|
|
699
689
|
[k: string]: string;
|
|
700
690
|
};
|
|
701
691
|
|
|
702
|
-
type LocalStorageItem = 'activeUser' | 'token' | 'refreshToken' | 'logInWay' | '
|
|
692
|
+
type LocalStorageItem = 'activeUser' | 'token' | 'refreshToken' | 'logInWay' | 'nextUrl' | 'codeVerifier';
|
|
703
693
|
declare const lsGet: (key: LocalStorageItem) => string | null;
|
|
704
694
|
declare const lsSet: (key: LocalStorageItem, value: string) => void;
|
|
705
695
|
declare const lsRemove: (key: LocalStorageItem) => void;
|
|
@@ -718,4 +708,4 @@ declare const inputPattern: {
|
|
|
718
708
|
number: string;
|
|
719
709
|
};
|
|
720
710
|
|
|
721
|
-
export { Accordions, Alert, Button, Checkbox, Collapse, ConditionalWrapper, DateInput, Dialog, FormWrapper, FullPageWrapper, FullScreenLoader, IAnyObject, IBooleanObject, IError, IFormWrapper, IPagination, ISelectData, IServerSidePagination, ISidebarItem, ISimpleObject, ISimpleObjectWithCode, ISimpleObjectWithCodeNew, IStringObject, ITab, ITable, ITableColumn, ITableDataItem, ITableEditRow, ITableFilter, ITableFilterData, ITableFilterItem, ITableSort,
|
|
711
|
+
export { Accordions, Alert, Button, Checkbox, Collapse, ConditionalWrapper, DateInput, Dialog, FormWrapper, FullPageWrapper, FullScreenLoader, IAnyObject, IBooleanObject, IError, IFormWrapper, IPagination, ISelectData, IServerSidePagination, ISidebarItem, ISimpleObject, ISimpleObjectWithCode, ISimpleObjectWithCodeNew, IStringObject, ITab, ITable, ITableColumn, ITableDataItem, ITableEditRow, ITableFilter, ITableFilterData, ITableFilterItem, ITableSort, IValueLabel, IconButton, ItemActionsMenu, ItemEditOptionsButtons, LargeTextInput, LazyLoader, Loader, Menu, MenuItem, NotificationBadge, NumberInput, PageWrapper, PasswordInput, PillBadge, Radio, SearchInput, Select, SelectAsyncPaginate, SetTableFilter, Table, TableEditRow, TableFooter, Tabs, TextInput, Tooltip, checkIfExpired, dateAddDays, deepCopy, deleteEmptyProps, deleteEmptyPropsIncludingArray, deleteProps, formatCurrency, formatCurrencyNoDecimals, formatDate, formatDateAndTime, formatDateYMD, formatTime, formatYearMonth, getActiveFilterNumber, getActiveOrgUuid, getCurrentDateFormatted, getCurrentDateFormattedYMD, getDaysLeft, getDefaultOrgUuid, getVisibleColumnsIds, inputPattern, lsGet, lsRemove, lsSet, maxChar, parseUrlSearch, setActiveOrgUuid, setDefaultOrgUuid };
|