kitchen-simulator 5.0.0-test.16 → 5.0.0-test.17

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.
Files changed (29) hide show
  1. package/package.json +3 -11
  2. package/src/_KitchenConfigurator.jsx +0 -43
  3. package/src/components/atoms/Snackbar/index.jsx +0 -43
  4. package/src/components/atoms/radio-button/index.jsx +0 -20
  5. package/src/components/atoms/radio-button/styles.js +0 -56
  6. package/src/components/button/MainButton.jsx +0 -157
  7. package/src/components/button/ToggleMeasureButton.jsx +0 -65
  8. package/src/components/content.jsx +0 -136
  9. package/src/components/molecules/slider/index.jsx +0 -15
  10. package/src/components/molecules/slider/styles.js +0 -0
  11. package/src/components/molecules/slider/styles.scss +0 -3
  12. package/src/components/style/button.jsx +0 -95
  13. package/src/components/style/cancel-button.jsx +0 -20
  14. package/src/components/style/content-container.jsx +0 -29
  15. package/src/components/style/content-title.jsx +0 -20
  16. package/src/components/style/delete-button.jsx +0 -23
  17. package/src/components/style/export.jsx +0 -48
  18. package/src/components/style/form-block.jsx +0 -13
  19. package/src/components/style/form-color-input.jsx +0 -27
  20. package/src/components/style/form-label.jsx +0 -15
  21. package/src/components/style/form-number-input.jsx +0 -196
  22. package/src/components/style/form-number-input_2.jsx +0 -191
  23. package/src/components/style/form-select.jsx +0 -38
  24. package/src/components/style/form-slider.jsx +0 -36
  25. package/src/components/style/form-submit-button.jsx +0 -23
  26. package/src/components/style/form-text-input.jsx +0 -65
  27. package/src/components/tutorial-view/Modal.jsx +0 -584
  28. package/src/components/tutorial-view/style.css +0 -111
  29. package/src/components/tutorial-view/styles.js +0 -65
@@ -1,111 +0,0 @@
1
- /* .MuiDialog-root {
2
-
3
- }
4
-
5
-
6
- .MuiDialogTitle-root {
7
- background-color:#41403F !important;
8
- }
9
-
10
- .MuiDialog-root {
11
- z-index: -1 !important;
12
- }
13
-
14
- .MuiDialogContent-root {
15
-
16
- background-color: #41403F !important;
17
- border-top-right-radius: 4px;
18
- border-top-left-radius: 4px;
19
- }
20
-
21
- .MuiDialogActions-root {
22
- border-bottom-right-radius: 4px;
23
- border-bottom-left-radius: 4px;
24
- }
25
-
26
- h1, h2, h3, h4, h5, h6 {
27
- color: rgba(255, 255, 255, 0.85);
28
- }
29
- .MuiButton-textPrimary {
30
- color: white !important;
31
- }
32
- .MuiDialog-paperWidthSm {
33
- max-width: 550px !important;
34
-
35
-
36
- }
37
- .MuiDialog-paper {
38
- opacity: 0.84;
39
- overflow-y: unset !important;
40
- } */
41
-
42
- .never-show-check {
43
- color: white;
44
- }
45
-
46
- .never-show-check > .MuiTypography-body1 {
47
- font-size: 0.7rem;
48
- }
49
-
50
- .never-show-check .MuiSvgIcon-root {
51
- width: 0.7em;
52
- height: 0.7em;
53
- }
54
-
55
- .never-show-check .MuiCheckbox-colorPrimary.Mui-checked {
56
- color: white;
57
- }
58
-
59
- .t_modal {
60
- z-index: 0 !important;
61
- }
62
- .MuiDialogTitle-root {
63
- background-color: #41403f !important;
64
- }
65
-
66
- .MuiDialogContent-root {
67
- background-color: #41403f !important;
68
- margin: 0;
69
- color: rgba(0, 0, 0, 0.65);
70
- font-size: 14px;
71
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
72
- 'Helvetica Neue', Arial, 'Noto Sans', Open Sans, 'Apple Color Emoji',
73
- 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
74
- font-variant: tabular-nums;
75
- line-height: 1.5715;
76
- background-color: #fff;
77
- -webkit-font-feature-settings: 'tnum';
78
- font-feature-settings: 'tnum';
79
- }
80
-
81
- .MuiDialog-root {
82
- z-index: 998 !important;
83
- }
84
-
85
- .MuiDialog-root p {
86
- margin-top: 0;
87
- margin-bottom: 1em;
88
- }
89
-
90
- h1,
91
- h2,
92
- h3,
93
- h4,
94
- h5,
95
- h6 {
96
- /* margin-top: 0; */
97
- /* margin-bottom: 0.5em; */
98
- color: rgba(255, 255, 255, 0.85);
99
- /* font-weight: 500; */
100
- }
101
- .MuiButton-textPrimary {
102
- color: white !important;
103
- }
104
- .MuiDialog-paperWidthSm {
105
- max-width: 550px !important;
106
- height: 380px !important;
107
- }
108
- .MuiDialog-paper {
109
- opacity: 0.84;
110
- overflow-y: unset !important;
111
- }
@@ -1,65 +0,0 @@
1
- import styled from 'styled-components';
2
- import Dialog from '@material-ui/core/Dialog';
3
-
4
- export const TutorialDialog = styled(Dialog)`
5
- z-index: 998 !important;
6
- .never-show-check {
7
- color: white;
8
- }
9
- .never-show-check > .MuiTypography-body1 {
10
- font-size: 0.7rem;
11
- }
12
- .never-show-check .MuiSvgIcon-root {
13
- width: 0.7em;
14
- height: 0.7em;
15
- }
16
- .never-show-check .MuiCheckbox-colorPrimary.Mui-checked {
17
- color: white;
18
- }
19
- .t_modal {
20
- z-index: 0 !important;
21
- }
22
- .MuiDialogTitle-root {
23
- background-color: #41403f !important;
24
- }
25
- .MuiDialogContent-root {
26
- background-color: #41403f !important;
27
- margin: 0;
28
- color: rgba(0, 0, 0, 0.65);
29
- font-size: 14px;
30
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
31
- 'Helvetica Neue', Arial, 'Noto Sans', Open Sans, 'Apple Color Emoji',
32
- 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
33
- font-variant: tabular-nums;
34
- line-height: 1.5715;
35
- background-color: #fff;
36
- -webkit-font-feature-settings: 'tnum';
37
- font-feature-settings: 'tnum';
38
- }
39
- .MuiDialog-root p {
40
- margin-top: 0;
41
- margin-bottom: 1em;
42
- }
43
- h1,
44
- h2,
45
- h3,
46
- h4,
47
- h5,
48
- h6 {
49
- /* margin-top: 0; */
50
- /* margin-bottom: 0.5em; */
51
- color: rgba(255, 255, 255, 0.85);
52
- /* font-weight: 500; */
53
- }
54
- .MuiButton-textPrimary {
55
- color: white !important;
56
- }
57
- .MuiDialog-paperWidthSm {
58
- max-width: 550px !important;
59
- height: 380px !important;
60
- }
61
- .MuiDialog-paper {
62
- opacity: 0.84;
63
- overflow-y: unset !important;
64
- }
65
- `;