sag_components 2.0.0-beta176 → 2.0.0-beta178
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 +14 -1
- package/dist/index.esm.js +327 -91
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +327 -91
- package/dist/index.js.map +1 -1
- package/dist/types/components/Input/Input.d.ts +14 -1
- package/dist/types/components/Input/Input.stories.d.ts +85 -14
- package/dist/types/components/Input/Input.style.d.ts +1 -0
- package/dist/types/components/Table/DropMenus/Dropdown.d.ts +7 -1
- package/dist/types/components/Table/Table.stories.d.ts +40 -1
- package/dist/types/components/Table/TableBody.d.ts +5 -1
- package/dist/types/components/Table/TableHeader.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1300,7 +1300,7 @@ declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, t
|
|
|
1300
1300
|
selectedValue: any;
|
|
1301
1301
|
}): react_jsx_runtime.JSX.Element;
|
|
1302
1302
|
|
|
1303
|
-
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onBlur, required, disabled, isDarkerBackground, width, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, }: {
|
|
1303
|
+
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onBlur, required, disabled, isDarkerBackground, width, height, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, multiline, rows, maxLength, }: {
|
|
1304
1304
|
label: any;
|
|
1305
1305
|
labelEmptyValue: any;
|
|
1306
1306
|
size: any;
|
|
@@ -1312,6 +1312,7 @@ declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolde
|
|
|
1312
1312
|
disabled: any;
|
|
1313
1313
|
isDarkerBackground?: boolean;
|
|
1314
1314
|
width: any;
|
|
1315
|
+
height?: string;
|
|
1315
1316
|
error: any;
|
|
1316
1317
|
errorMessage: any;
|
|
1317
1318
|
labelColor: any;
|
|
@@ -1320,6 +1321,9 @@ declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolde
|
|
|
1320
1321
|
password: any;
|
|
1321
1322
|
leftIconOnClick: any;
|
|
1322
1323
|
rightIconOnClick: any;
|
|
1324
|
+
multiline?: boolean;
|
|
1325
|
+
rows?: number;
|
|
1326
|
+
maxLength: any;
|
|
1323
1327
|
}): react_jsx_runtime.JSX.Element;
|
|
1324
1328
|
declare namespace Input {
|
|
1325
1329
|
namespace propTypes {
|
|
@@ -1341,6 +1345,9 @@ declare namespace Input {
|
|
|
1341
1345
|
const leftIcon: PropTypes.Requireable<string>;
|
|
1342
1346
|
const rightIcon: PropTypes.Requireable<string>;
|
|
1343
1347
|
const password: PropTypes.Requireable<boolean>;
|
|
1348
|
+
const multiline: PropTypes.Requireable<boolean>;
|
|
1349
|
+
const rows: PropTypes.Requireable<number>;
|
|
1350
|
+
const maxLength: PropTypes.Requireable<number>;
|
|
1344
1351
|
}
|
|
1345
1352
|
namespace defaultProps {
|
|
1346
1353
|
const placeHolder_1: string;
|
|
@@ -1377,6 +1384,12 @@ declare namespace Input {
|
|
|
1377
1384
|
export { onBlur_1 as onBlur };
|
|
1378
1385
|
const password_1: boolean;
|
|
1379
1386
|
export { password_1 as password };
|
|
1387
|
+
const multiline_1: boolean;
|
|
1388
|
+
export { multiline_1 as multiline };
|
|
1389
|
+
const rows_1: number;
|
|
1390
|
+
export { rows_1 as rows };
|
|
1391
|
+
const maxLength_1: any;
|
|
1392
|
+
export { maxLength_1 as maxLength };
|
|
1380
1393
|
}
|
|
1381
1394
|
}
|
|
1382
1395
|
|