@oliasoft-open-source/react-ui-library 4.18.0-beta-10 → 4.18.0-beta-11
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/README.md +0 -8
- package/dist/global.css +135 -122
- package/dist/index.d.ts +26 -37
- package/dist/index.js +1086 -705
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -670,6 +670,8 @@ declare interface IListItem {
|
|
|
670
670
|
disabled?: boolean;
|
|
671
671
|
onClick?: (evt: any) => void;
|
|
672
672
|
title?: string;
|
|
673
|
+
details?: string;
|
|
674
|
+
metadata?: string;
|
|
673
675
|
testId?: string;
|
|
674
676
|
level?: number;
|
|
675
677
|
label?: ILabel;
|
|
@@ -1128,12 +1130,8 @@ export declare interface IRowProps {
|
|
|
1128
1130
|
}
|
|
1129
1131
|
|
|
1130
1132
|
declare interface IScrollDetails {
|
|
1131
|
-
scrollable?: boolean;
|
|
1132
1133
|
hideScrollbar?: boolean;
|
|
1133
1134
|
triggerScrollToActiveItem?: boolean;
|
|
1134
|
-
infiniteScroll?: boolean;
|
|
1135
|
-
infiniteScrollTarget?: string;
|
|
1136
|
-
limit?: number;
|
|
1137
1135
|
}
|
|
1138
1136
|
|
|
1139
1137
|
declare interface ISelectCell extends TCommonCell {
|
|
@@ -1197,15 +1195,6 @@ declare interface ISelectSelectedOption {
|
|
|
1197
1195
|
testId?: string;
|
|
1198
1196
|
}
|
|
1199
1197
|
|
|
1200
|
-
export declare interface ISettingFieldProps {
|
|
1201
|
-
helpText: string;
|
|
1202
|
-
children: ReactNode;
|
|
1203
|
-
active?: boolean;
|
|
1204
|
-
noPermission?: boolean;
|
|
1205
|
-
selectedOption?: 'all_users' | 'superusers_admin';
|
|
1206
|
-
handleSelectChange?: (value: 'all_users' | 'superusers_admin') => void;
|
|
1207
|
-
}
|
|
1208
|
-
|
|
1209
1198
|
export declare interface ISideBarProps {
|
|
1210
1199
|
options: {
|
|
1211
1200
|
title: string;
|
|
@@ -1346,28 +1335,30 @@ export declare interface ITableProps {
|
|
|
1346
1335
|
from: number;
|
|
1347
1336
|
to: number;
|
|
1348
1337
|
}) => void;
|
|
1349
|
-
table:
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1338
|
+
table: ITableTableProps;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
declare interface ITableTableProps {
|
|
1342
|
+
name?: TStringOrNumber | ReactNode;
|
|
1343
|
+
actionsRight?: boolean;
|
|
1344
|
+
fixedWidth?: TStringOrNumber;
|
|
1345
|
+
maxHeight?: TStringOrNumber;
|
|
1346
|
+
columnWidths?: string[];
|
|
1347
|
+
className?: string;
|
|
1348
|
+
columnHeaderAlignments?: Array<TAlign | string>;
|
|
1349
|
+
columnAlignment?: Array<TAlign | string>;
|
|
1350
|
+
infiniteScroll?: boolean;
|
|
1351
|
+
headers?: any[];
|
|
1352
|
+
rows?: TRowsType;
|
|
1353
|
+
footer?: IFooterProps;
|
|
1354
|
+
draggable?: boolean;
|
|
1355
|
+
bordered?: boolean;
|
|
1356
|
+
striped?: boolean;
|
|
1357
|
+
testId?: string;
|
|
1358
|
+
onAddRow?: any;
|
|
1359
|
+
defaultEmptyRow?: any;
|
|
1360
|
+
stickyHeaders?: string | boolean;
|
|
1361
|
+
actions?: any;
|
|
1371
1362
|
}
|
|
1372
1363
|
|
|
1373
1364
|
declare interface ITabOption {
|
|
@@ -1713,8 +1704,6 @@ export declare const Row: ({ alignItems, justifyContent, children, flex, height,
|
|
|
1713
1704
|
|
|
1714
1705
|
export declare const Select: (props: ISelectProps) => JSX_2.Element;
|
|
1715
1706
|
|
|
1716
|
-
export declare const SettingField: ({ helpText, active, children, noPermission, selectedOption, handleSelectChange, }: ISettingFieldProps) => JSX_2.Element;
|
|
1717
|
-
|
|
1718
1707
|
export declare const SideBar: default_2.MemoExoticComponent<({ options, startOpen, onShiftClickToggleOpen, top, }: ISideBarProps) => JSX_2.Element>;
|
|
1719
1708
|
|
|
1720
1709
|
export declare const Slider: ({ name, label, width, labelWidth, value, min, max, step, marks, showArrows, showTooltip, tooltipFormatter, disabled, range, small, vertical, onChange, }: ISliderProps) => JSX_2.Element;
|