@limetech/lime-elements 37.1.0-next.70 → 37.1.0-next.72
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/cjs/limel-markdown.cjs.entry.js +1 -1
- package/dist/cjs/limel-markdown.cjs.entry.js.map +1 -1
- package/dist/collection/components/markdown/markdown.css +6 -0
- package/dist/collection/components/menu/menu.js +1 -1
- package/dist/collection/components/menu/menu.types.js.map +1 -1
- package/dist/esm/limel-markdown.entry.js +1 -1
- package/dist/esm/limel-markdown.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-0bd1cb23.entry.js → p-40615c84.entry.js} +2 -2
- package/dist/lime-elements/{p-0bd1cb23.entry.js.map → p-40615c84.entry.js.map} +1 -1
- package/dist/types/components/menu/menu.types.d.ts +2 -2
- package/package.json +3 -3
|
@@ -85,9 +85,9 @@ export interface MenuItem<T = any> {
|
|
|
85
85
|
* a promise that will eventually be resolved with an array of `MenuItem`:s.
|
|
86
86
|
* @param {string} query A search query. What the user has written
|
|
87
87
|
* in the input field of a limel-menu.
|
|
88
|
-
* @returns {Promise<MenuItem
|
|
88
|
+
* @returns {Promise<Array<MenuItem | ListSeparator>>} The search result.
|
|
89
89
|
*/
|
|
90
|
-
export type MenuSearcher = (query: string) => Promise<MenuItem
|
|
90
|
+
export type MenuSearcher = (query: string) => Promise<Array<MenuItem | ListSeparator>>;
|
|
91
91
|
/**
|
|
92
92
|
* A loader function that takes a `MenuItem` as an argument, and returns
|
|
93
93
|
* a promise that will eventually be resolved with an array of `MenuItem`:s,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@limetech/lime-elements",
|
|
3
|
-
"version": "37.1.0-next.
|
|
3
|
+
"version": "37.1.0-next.72",
|
|
4
4
|
"description": "Lime Elements",
|
|
5
5
|
"author": "Lime Technologies",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@types/codemirror": "^5.60.2",
|
|
50
50
|
"@types/html-escaper": "^3.0.2",
|
|
51
51
|
"@types/jest": "^27.4.0",
|
|
52
|
-
"@types/lodash-es": "^4.17.
|
|
53
|
-
"@types/react": "^18.2.
|
|
52
|
+
"@types/lodash-es": "^4.17.12",
|
|
53
|
+
"@types/react": "^18.2.39",
|
|
54
54
|
"@types/react-dom": "^18.2.17",
|
|
55
55
|
"@types/tabulator-tables": "^4.9.4",
|
|
56
56
|
"@typescript-eslint/eslint-plugin": "^5.61.0",
|