@uniformdev/mesh-sdk-react 18.30.1-alpha.16 → 18.30.1-alpha.17
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 +5 -2
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -634,7 +634,10 @@ type SearchQueryProps = {
|
|
|
634
634
|
/** sets the keyword search in the search context */
|
|
635
635
|
keyword?: string;
|
|
636
636
|
};
|
|
637
|
-
type
|
|
637
|
+
type SelectedItemExtendedProps = {
|
|
638
|
+
[key: string]: unknown;
|
|
639
|
+
};
|
|
640
|
+
type SelectedItemProps<TProps extends SelectedItemExtendedProps = SelectedItemExtendedProps> = {
|
|
638
641
|
/** sets the id value */
|
|
639
642
|
id: string;
|
|
640
643
|
/** sets the title value */
|
|
@@ -670,7 +673,7 @@ type SelectedItemProps = {
|
|
|
670
673
|
metadata?: Record<string, string>;
|
|
671
674
|
/** allows for child react elements to be nested in the popover */
|
|
672
675
|
popoverData?: ReactNode;
|
|
673
|
-
};
|
|
676
|
+
} & TProps;
|
|
674
677
|
type ItemsProp = Array<SelectedItemProps & Record<string, unknown>>;
|
|
675
678
|
type ItemListProps<TList extends ItemsProp = ItemsProp> = {
|
|
676
679
|
items?: TList;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk-react",
|
|
3
|
-
"version": "18.30.1-alpha.
|
|
3
|
+
"version": "18.30.1-alpha.17+2d6d08805",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK for React",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"document": "api-extractor run --local"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@uniformdev/design-system": "18.30.1-alpha.
|
|
47
|
-
"@uniformdev/mesh-sdk": "18.30.1-alpha.
|
|
46
|
+
"@uniformdev/design-system": "18.30.1-alpha.17+2d6d08805",
|
|
47
|
+
"@uniformdev/mesh-sdk": "18.30.1-alpha.17+2d6d08805",
|
|
48
48
|
"formik": "^2.2.9",
|
|
49
49
|
"react-beautiful-dnd": "13.1.1",
|
|
50
50
|
"react-icons": "4.8.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "2d6d0880575669784931c6481be92847ac55f141"
|
|
77
77
|
}
|