@nyris/nyris-webapp 0.3.57 → 0.3.58
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/build/asset-manifest.json +3 -3
- package/build/index.html +1 -1
- package/build/js/settings.example.js +1 -0
- package/build/static/js/{main.5143aa56.js → main.8728b671.js} +3 -3
- package/build/static/js/{main.5143aa56.js.map → main.8728b671.js.map} +1 -1
- package/package.json +3 -3
- package/public/js/settings.example.js +1 -0
- package/src/components/ProductDetailView.tsx +1 -1
- package/src/components/pre-filter/index.tsx +1 -2
- package/src/components/results/ItemResult.tsx +1 -1
- package/src/types.ts +1 -0
- /package/build/static/js/{main.5143aa56.js.LICENSE.txt → main.8728b671.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nyris/nyris-webapp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.58",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@auth0/auth0-react": "^2.2.4",
|
|
6
6
|
"@emailjs/browser": "^4.3.3",
|
|
7
7
|
"@material-ui/core": "^4.12.4",
|
|
8
8
|
"@material-ui/icons": "^4.11.3",
|
|
9
9
|
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
10
|
-
"@nyris/nyris-api": "^0.3.
|
|
11
|
-
"@nyris/nyris-react-components": "^0.3.
|
|
10
|
+
"@nyris/nyris-api": "^0.3.58",
|
|
11
|
+
"@nyris/nyris-react-components": "^0.3.58",
|
|
12
12
|
"@reduxjs/toolkit": "^2.2.1",
|
|
13
13
|
"@splidejs/react-splide": "^0.7.12",
|
|
14
14
|
"@testing-library/jest-dom": "^5.17.0",
|
|
@@ -331,12 +331,11 @@ function PreFilterComponent(props: Props) {
|
|
|
331
331
|
columnCount: 4,
|
|
332
332
|
padding: '24px 24px 40px 24px',
|
|
333
333
|
height: '100%',
|
|
334
|
-
|
|
335
334
|
backgroundColor: '#FAFAFA',
|
|
336
335
|
}
|
|
337
336
|
}
|
|
338
337
|
>
|
|
339
|
-
{Object.entries(resultFilter).map(([key, value]: any, i: any) => {
|
|
338
|
+
{Object.entries(resultFilter).sort().map(([key, value]: any, i: any) => {
|
|
340
339
|
return (
|
|
341
340
|
<div className="box-group-items" key={key}>
|
|
342
341
|
<div
|
package/src/types.ts
CHANGED
|
File without changes
|