mayak-common-library 0.0.476 → 0.0.477
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.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +2 -1
- package/styles/globals.scss +9 -0
- package/tailwind.config.js +8 -1
package/dist/index.d.mts
CHANGED
|
@@ -1327,6 +1327,7 @@ interface SelectProProps$1 {
|
|
|
1327
1327
|
startIcon?: ReactElement;
|
|
1328
1328
|
disableCloseButton?: boolean;
|
|
1329
1329
|
fullContainerWidth?: boolean;
|
|
1330
|
+
overContainerWidth?: boolean;
|
|
1330
1331
|
overButton?: boolean;
|
|
1331
1332
|
small?: boolean;
|
|
1332
1333
|
fullWidth?: boolean;
|
|
@@ -1408,9 +1409,10 @@ declare const ObjectPropertyChip: FC<ObjectPropertyProps>;
|
|
|
1408
1409
|
declare const List: FC<ListProps>;
|
|
1409
1410
|
|
|
1410
1411
|
interface ListItemProps {
|
|
1411
|
-
icon?: ReactElement;
|
|
1412
1412
|
title: string;
|
|
1413
1413
|
value: MACHINE_NAME | string;
|
|
1414
|
+
icon?: ReactElement;
|
|
1415
|
+
subTitle?: string;
|
|
1414
1416
|
bold?: boolean;
|
|
1415
1417
|
onClick?: (value: MACHINE_NAME | string) => void;
|
|
1416
1418
|
}
|
|
@@ -1419,6 +1421,7 @@ declare const ListItem: FC<ListItemProps>;
|
|
|
1419
1421
|
interface TermListProps {
|
|
1420
1422
|
options: {
|
|
1421
1423
|
name: string;
|
|
1424
|
+
desc?: string;
|
|
1422
1425
|
slug: string;
|
|
1423
1426
|
icon?: ReactElement;
|
|
1424
1427
|
}[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1327,6 +1327,7 @@ interface SelectProProps$1 {
|
|
|
1327
1327
|
startIcon?: ReactElement;
|
|
1328
1328
|
disableCloseButton?: boolean;
|
|
1329
1329
|
fullContainerWidth?: boolean;
|
|
1330
|
+
overContainerWidth?: boolean;
|
|
1330
1331
|
overButton?: boolean;
|
|
1331
1332
|
small?: boolean;
|
|
1332
1333
|
fullWidth?: boolean;
|
|
@@ -1408,9 +1409,10 @@ declare const ObjectPropertyChip: FC<ObjectPropertyProps>;
|
|
|
1408
1409
|
declare const List: FC<ListProps>;
|
|
1409
1410
|
|
|
1410
1411
|
interface ListItemProps {
|
|
1411
|
-
icon?: ReactElement;
|
|
1412
1412
|
title: string;
|
|
1413
1413
|
value: MACHINE_NAME | string;
|
|
1414
|
+
icon?: ReactElement;
|
|
1415
|
+
subTitle?: string;
|
|
1414
1416
|
bold?: boolean;
|
|
1415
1417
|
onClick?: (value: MACHINE_NAME | string) => void;
|
|
1416
1418
|
}
|
|
@@ -1419,6 +1421,7 @@ declare const ListItem: FC<ListItemProps>;
|
|
|
1419
1421
|
interface TermListProps {
|
|
1420
1422
|
options: {
|
|
1421
1423
|
name: string;
|
|
1424
|
+
desc?: string;
|
|
1422
1425
|
slug: string;
|
|
1423
1426
|
icon?: ReactElement;
|
|
1424
1427
|
}[];
|