@oliasoft-open-source/react-ui-library 4.17.0-beta-1 → 4.17.0-beta-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/README.md +5 -12
- package/dist/global.css +135 -122
- package/dist/index.d.ts +26 -27
- package/dist/index.js +1082 -703
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare enum BreadcrumbLinkType {
|
|
|
43
43
|
CUSTOM = "custom"
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
export declare const Button: ({ active, basic, colored, disabled, groupOrder, icon, label, loading, name, pill, round, small, styles, width, title, type, onClick, error, warning, testId, tooltip, inverted, component: Component, url, }: IButtonProps) => JSX_2.Element;
|
|
46
|
+
export declare const Button: ({ active, basic, colored, disabled, ignoreDisabledContext, groupOrder, icon, label, loading, name, pill, round, small, styles, width, title, type, onClick, error, warning, testId, tooltip, inverted, component: Component, url, }: IButtonProps) => JSX_2.Element;
|
|
47
47
|
|
|
48
48
|
export declare const ButtonGroup: (props: IButtonGroupProps) => JSX_2.Element;
|
|
49
49
|
|
|
@@ -206,6 +206,7 @@ export declare interface IButtonProps {
|
|
|
206
206
|
basic?: boolean;
|
|
207
207
|
colored?: boolean | string;
|
|
208
208
|
disabled?: boolean;
|
|
209
|
+
ignoreDisabledContext?: boolean;
|
|
209
210
|
groupOrder?: string | null;
|
|
210
211
|
icon?: ReactNode | string;
|
|
211
212
|
label?: ReactNode | string | null;
|
|
@@ -1127,12 +1128,8 @@ export declare interface IRowProps {
|
|
|
1127
1128
|
}
|
|
1128
1129
|
|
|
1129
1130
|
declare interface IScrollDetails {
|
|
1130
|
-
scrollable?: boolean;
|
|
1131
1131
|
hideScrollbar?: boolean;
|
|
1132
1132
|
triggerScrollToActiveItem?: boolean;
|
|
1133
|
-
infiniteScroll?: boolean;
|
|
1134
|
-
infiniteScrollTarget?: string;
|
|
1135
|
-
limit?: number;
|
|
1136
1133
|
}
|
|
1137
1134
|
|
|
1138
1135
|
declare interface ISelectCell extends TCommonCell {
|
|
@@ -1336,28 +1333,30 @@ export declare interface ITableProps {
|
|
|
1336
1333
|
from: number;
|
|
1337
1334
|
to: number;
|
|
1338
1335
|
}) => void;
|
|
1339
|
-
table:
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1336
|
+
table: ITableTableProps;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
declare interface ITableTableProps {
|
|
1340
|
+
name?: TStringOrNumber | ReactNode;
|
|
1341
|
+
actionsRight?: boolean;
|
|
1342
|
+
fixedWidth?: TStringOrNumber;
|
|
1343
|
+
maxHeight?: TStringOrNumber;
|
|
1344
|
+
columnWidths?: string[];
|
|
1345
|
+
className?: string;
|
|
1346
|
+
columnHeaderAlignments?: Array<TAlign | string>;
|
|
1347
|
+
columnAlignment?: Array<TAlign | string>;
|
|
1348
|
+
infiniteScroll?: boolean;
|
|
1349
|
+
headers?: any[];
|
|
1350
|
+
rows?: TRowsType;
|
|
1351
|
+
footer?: IFooterProps;
|
|
1352
|
+
draggable?: boolean;
|
|
1353
|
+
bordered?: boolean;
|
|
1354
|
+
striped?: boolean;
|
|
1355
|
+
testId?: string;
|
|
1356
|
+
onAddRow?: any;
|
|
1357
|
+
defaultEmptyRow?: any;
|
|
1358
|
+
stickyHeaders?: string | boolean;
|
|
1359
|
+
actions?: any;
|
|
1361
1360
|
}
|
|
1362
1361
|
|
|
1363
1362
|
declare interface ITabOption {
|