mayak-common-library 0.0.651 → 0.0.653

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": "mayak-common-library",
3
- "version": "0.0.651",
3
+ "version": "0.0.653",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -122,6 +122,7 @@ module.exports = {
122
122
  },
123
123
  screens: {
124
124
  xs: { max: '649px' },
125
+ tab: { max: '800px' },
125
126
  sm: { max: '900px' },
126
127
  laptop: { min: '901px', max: '1000px' },
127
128
  md: { max: '1200px' },
package/theme.ts CHANGED
@@ -1,9 +1,7 @@
1
1
  'use client'
2
2
  import createTheme from '@mui/material/styles/createTheme'
3
- // import 'mayak-common-library/dist/index.css'
4
3
  import './styles/globals.scss'
5
4
  import 'keen-slider/keen-slider.min.css'
6
- // import 'leaflet/dist/leaflet.css'
7
5
 
8
6
  const _theme = {
9
7
  typography: {
@@ -20,16 +18,9 @@ const _theme = {
20
18
  values: {
21
19
  xs: 0,
22
20
  sm: 650,
23
- tab: 799,
24
21
  md: 900,
25
22
  lg: 1200,
26
23
  xl: 1536,
27
- // xs: WINDOW_SIZE.xxs,
28
- // tab: WINDOW_SIZE.xs,
29
- // sm: WINDOW_SIZE.sm,
30
- // md: WINDOW_SIZE.md,
31
- // lg: WINDOW_SIZE.lg,
32
- // xl: WINDOW_SIZE.xl,
33
24
  },
34
25
  },
35
26
  components: {