mayak-common-library 0.0.869 → 0.0.871
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 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1468,10 +1468,11 @@ declare const List: FC<ListProps>;
|
|
|
1468
1468
|
interface ListItemProps {
|
|
1469
1469
|
title: string;
|
|
1470
1470
|
value?: MACHINE_NAME | string;
|
|
1471
|
+
tag?: string;
|
|
1471
1472
|
icon?: ReactElement;
|
|
1472
1473
|
subTitle?: string;
|
|
1473
1474
|
bold?: boolean;
|
|
1474
|
-
onClickHandler: (value?: MACHINE_NAME | string) => void;
|
|
1475
|
+
onClickHandler: (value?: MACHINE_NAME | string, tag?: string) => void;
|
|
1475
1476
|
active?: boolean;
|
|
1476
1477
|
}
|
|
1477
1478
|
declare const ListItem: FC<ListItemProps>;
|
|
@@ -1481,12 +1482,13 @@ interface TermListProps {
|
|
|
1481
1482
|
name: string;
|
|
1482
1483
|
slug: string;
|
|
1483
1484
|
desc?: string;
|
|
1485
|
+
tag?: string;
|
|
1484
1486
|
icon?: ReactElement;
|
|
1485
1487
|
}[];
|
|
1486
1488
|
currentValue?: string;
|
|
1487
1489
|
label?: string;
|
|
1488
1490
|
collapseParent?: any;
|
|
1489
|
-
onChange: (value?: string) => void;
|
|
1491
|
+
onChange: (value?: string, tag?: string) => void;
|
|
1490
1492
|
keyActive?: boolean;
|
|
1491
1493
|
}
|
|
1492
1494
|
declare const TermList: (props: TermListProps) => react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1468,10 +1468,11 @@ declare const List: FC<ListProps>;
|
|
|
1468
1468
|
interface ListItemProps {
|
|
1469
1469
|
title: string;
|
|
1470
1470
|
value?: MACHINE_NAME | string;
|
|
1471
|
+
tag?: string;
|
|
1471
1472
|
icon?: ReactElement;
|
|
1472
1473
|
subTitle?: string;
|
|
1473
1474
|
bold?: boolean;
|
|
1474
|
-
onClickHandler: (value?: MACHINE_NAME | string) => void;
|
|
1475
|
+
onClickHandler: (value?: MACHINE_NAME | string, tag?: string) => void;
|
|
1475
1476
|
active?: boolean;
|
|
1476
1477
|
}
|
|
1477
1478
|
declare const ListItem: FC<ListItemProps>;
|
|
@@ -1481,12 +1482,13 @@ interface TermListProps {
|
|
|
1481
1482
|
name: string;
|
|
1482
1483
|
slug: string;
|
|
1483
1484
|
desc?: string;
|
|
1485
|
+
tag?: string;
|
|
1484
1486
|
icon?: ReactElement;
|
|
1485
1487
|
}[];
|
|
1486
1488
|
currentValue?: string;
|
|
1487
1489
|
label?: string;
|
|
1488
1490
|
collapseParent?: any;
|
|
1489
|
-
onChange: (value?: string) => void;
|
|
1491
|
+
onChange: (value?: string, tag?: string) => void;
|
|
1490
1492
|
keyActive?: boolean;
|
|
1491
1493
|
}
|
|
1492
1494
|
declare const TermList: (props: TermListProps) => react_jsx_runtime.JSX.Element;
|