@ebubekirylmaz/link-test 1.2.47 → 1.2.49

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": "@ebubekirylmaz/link-test",
3
- "version": "1.2.47",
3
+ "version": "1.2.49",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.js",
@@ -26,14 +26,13 @@
26
26
  "@emoji-mart/data": "^1.1.2",
27
27
  "@emoji-mart/react": "^1.1.1",
28
28
  "@emotion/react": "^11.13.3",
29
- "@emotion/styled": "^11.11.5",
30
29
  "@iconify/react": "^5.0.1",
31
30
  "@mui/icons-material": "^7.3.9",
32
- "@mui/lab": "^7.0.0-beta.17",
31
+ "@mui/lab": "^7.0.1-beta.23",
33
32
  "@mui/material": "^7.3.9",
34
- "@mui/x-data-grid": "^8.28.2",
35
- "@mui/x-date-pickers": "^8.27.2",
36
- "@mui/x-tree-view": "^8.27.2",
33
+ "@mui/x-data-grid": "^8.27.1",
34
+ "@mui/x-date-pickers": "^7.10.0",
35
+ "@mui/x-tree-view": "^8.27.1",
37
36
  "@nucleoidai/react-event": "^1.1.9",
38
37
  "@nucleoidjs/webstorage": "^1.0.5",
39
38
  "autosuggest-highlight": "^3.3.4",
@@ -48,7 +47,7 @@
48
47
  "joi": "^17.13.3",
49
48
  "jwt-decode": "^4.0.0",
50
49
  "mapbox-gl": "^2.15.0",
51
- "mui-one-time-password-input": "^5.0.0",
50
+ "mui-one-time-password-input": "^2.0.3",
52
51
  "notistack": "^3.0.1",
53
52
  "nprogress": "^0.2.0",
54
53
  "numeral": "^2.0.6",
@@ -58,10 +57,10 @@
58
57
  "react-apexcharts": "^1.4.1",
59
58
  "react-chartjs-2": "^5.2.0",
60
59
  "react-dom": "^18.2.0",
60
+ "react-is": "^18.3.1",
61
61
  "react-dropzone": "^14.2.3",
62
62
  "react-helmet-async": "^2.0.5",
63
63
  "react-hook-form": "^7.52.1",
64
- "react-is": "^18.3.1",
65
64
  "react-lazy-load-image-component": "^1.6.2",
66
65
  "react-map-gl": "^7.1.7",
67
66
  "react-markdown": "^9.0.1",
@@ -1,6 +1,5 @@
1
1
  import React from "react";
2
2
  import styles from "../../widgets/LoginForm/LoginFormStyles";
3
-
4
3
  import { Box, Button, Link as MuiLink, TextField } from "@mui/material";
5
4
 
6
5
  const NucleoidLoginForm = ({
@@ -12,14 +12,20 @@ export default function TwoSideLayout({ rows, title }) {
12
12
  <Typography variant="h4" sx={{ mb: 5 }}>
13
13
  {title}
14
14
  </Typography>
15
-
16
15
  {Object.values(rowData).map((array, index) => {
17
16
  const eleman_sayisi = array.length;
18
17
  const grid_sayisi = 12 / eleman_sayisi;
19
18
  return (
20
19
  <Grid container spacing={3} key={index}>
21
20
  {array.map((component, i) => (
22
- <Grid item xs={12} sm={6} md={grid_sayisi} key={i}>
21
+ <Grid
22
+ key={i}
23
+ size={{
24
+ xs: 12,
25
+ sm: 6,
26
+ md: grid_sayisi,
27
+ }}
28
+ >
23
29
  {component}
24
30
  </Grid>
25
31
  ))}
@@ -1,4 +1,4 @@
1
- import { loadingButtonClasses } from "@mui/lab/LoadingButton";
1
+ import { buttonClasses } from "@mui/lab/LoadingButton";
2
2
 
3
3
  // ----------------------------------------------------------------------
4
4
 
@@ -8,17 +8,17 @@ export function loadingButton(theme) {
8
8
  styleOverrides: {
9
9
  root: ({ ownerState }) => ({
10
10
  ...(ownerState.variant === "soft" && {
11
- [`& .${loadingButtonClasses.loadingIndicatorStart}`]: {
11
+ [`& .${buttonClasses.loadingIndicatorStart}`]: {
12
12
  left: 10,
13
13
  },
14
- [`& .${loadingButtonClasses.loadingIndicatorEnd}`]: {
14
+ [`& .${buttonClasses.loadingIndicatorEnd}`]: {
15
15
  right: 14,
16
16
  },
17
17
  ...(ownerState.size === "small" && {
18
- [`& .${loadingButtonClasses.loadingIndicatorStart}`]: {
18
+ [`& .${buttonClasses.loadingIndicatorStart}`]: {
19
19
  left: 10,
20
20
  },
21
- [`& .${loadingButtonClasses.loadingIndicatorEnd}`]: {
21
+ [`& .${buttonClasses.loadingIndicatorEnd}`]: {
22
22
  right: 10,
23
23
  },
24
24
  }),