@churchapps/apphelper 0.1.17 → 0.1.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@churchapps/apphelper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "Library of helper functions for React and NextJS ChurchApps",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"axios": "^1.5.0",
|
|
55
55
|
"cropperjs": "^1.6.0",
|
|
56
56
|
"date-fns": "^2.30.0",
|
|
57
|
-
"flexsearch": "^0.7.
|
|
57
|
+
"flexsearch": "^0.7.41",
|
|
58
58
|
"jwt-decode": "^3.1.2",
|
|
59
59
|
"lexical": "^0.12.0",
|
|
60
60
|
"material-symbols": "^0.11.0",
|
|
@@ -2,10 +2,11 @@ import * as React from "react";
|
|
|
2
2
|
import { styled, Icon, InputBase, Typography, debounce, Grid, IconButton, Pagination, Stack } from "@mui/material";
|
|
3
3
|
import MuiPaper from "@mui/material/Paper";
|
|
4
4
|
import IconNamesList from "./IconNamesList"
|
|
5
|
-
|
|
5
|
+
import FlexSearch from "flexsearch";
|
|
6
6
|
const UPDATE_SEARCH_INDEX_WAIT_MS = 220;
|
|
7
7
|
|
|
8
|
-
const FlexSearch = require("flexsearch");
|
|
8
|
+
//const FlexSearch = require("flexsearch");
|
|
9
|
+
|
|
9
10
|
const StyledIconSpan = styled("span")(({ theme }) => ({
|
|
10
11
|
display: "inline-flex",
|
|
11
12
|
flexDirection: "column",
|