ordering-ui-external 1.1.2 → 1.1.3

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 (23) hide show
  1. package/_bundles/{0.ordering-ui.61d857607dc95f3ab08c.js → 0.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  2. package/_bundles/{1.ordering-ui.61d857607dc95f3ab08c.js → 1.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  3. package/_bundles/{3.ordering-ui.61d857607dc95f3ab08c.js → 3.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  4. package/_bundles/{4.ordering-ui.61d857607dc95f3ab08c.js → 4.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  5. package/_bundles/{5.ordering-ui.61d857607dc95f3ab08c.js → 5.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  6. package/_bundles/{6.ordering-ui.61d857607dc95f3ab08c.js → 6.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  7. package/_bundles/{7.ordering-ui.61d857607dc95f3ab08c.js → 7.ordering-ui.6d646b995521e7aa65da.js} +1 -1
  8. package/_bundles/{7.ordering-ui.61d857607dc95f3ab08c.js.LICENSE.txt → 7.ordering-ui.6d646b995521e7aa65da.js.LICENSE.txt} +0 -0
  9. package/_bundles/{8.ordering-ui.61d857607dc95f3ab08c.js → 8.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  10. package/_bundles/{9.ordering-ui.61d857607dc95f3ab08c.js → 9.ordering-ui.6d646b995521e7aa65da.js} +0 -0
  11. package/_bundles/{ordering-ui.61d857607dc95f3ab08c.js → ordering-ui.6d646b995521e7aa65da.js} +2 -2
  12. package/_bundles/{ordering-ui.61d857607dc95f3ab08c.js.LICENSE.txt → ordering-ui.6d646b995521e7aa65da.js.LICENSE.txt} +0 -0
  13. package/_modules/themes/five/index.js +8 -0
  14. package/_modules/themes/five/src/components/OrderDetails/index.js +72 -27
  15. package/_modules/themes/five/src/components/ReviewOrder/index.js +4 -4
  16. package/_modules/themes/five/src/components/ReviewProduct/index.js +4 -4
  17. package/_modules/themes/five/src/components/ReviewProduct/styles.js +6 -6
  18. package/package.json +1 -1
  19. package/src/themes/five/index.js +2 -0
  20. package/src/themes/five/src/components/OrderDetails/index.js +45 -28
  21. package/src/themes/five/src/components/ReviewOrder/index.js +1 -1
  22. package/src/themes/five/src/components/ReviewProduct/index.js +1 -1
  23. package/src/themes/five/src/components/ReviewProduct/styles.js +0 -14
@@ -9,18 +9,15 @@ export const ActionBlock = styled.div`
9
9
  justify-content: space-between;
10
10
  margin-top: 30px;
11
11
  width: 100%;
12
-
13
12
  span {
14
13
  cursor: pointer;
15
14
  font-weight: 600;
16
15
  font-size: 16px;
17
16
  user-select: none;
18
17
  }
19
-
20
18
  button {
21
19
  font-size: 14px;
22
20
  padding: 6px 20px;
23
-
24
21
  svg {
25
22
  color: white;
26
23
  font-size: 21px;
@@ -43,7 +40,6 @@ export const HandReviewWrapper = styled.div`
43
40
  display: flex;
44
41
  align-items: center;
45
42
  justify-content: space-between;
46
-
47
43
  p {
48
44
  font-size: 15px;
49
45
  color: ${props => props.theme?.colors.headingColor};
@@ -62,19 +58,16 @@ export const HandReviewContent = styled.div`
62
58
 
63
59
  export const HandIconWrapper = styled.span`
64
60
  margin-left: 15px;
65
-
66
61
  ${props => props.theme?.rtl && css`
67
62
  margin-right: 15px;
68
63
  margin-left: 0;
69
64
  `}
70
-
71
65
  svg {
72
66
  font-size: 24px;
73
67
  color: #B1BCCC;
74
68
  cursor: pointer;
75
69
  transition: all 0.3s linear;
76
70
  }
77
-
78
71
  ${({ active }) => active && css`
79
72
  svg {
80
73
  color: ${props => props.theme?.colors.primary};
@@ -93,7 +86,6 @@ export const AddCommentHideShow = styled.p`
93
86
  transition: all 0.3s linear;
94
87
  color: #909BA9;
95
88
  font-size: 13px;
96
-
97
89
  &:hover {
98
90
  color: ${props => props.theme?.colors.primary};
99
91
  }
@@ -105,14 +97,12 @@ export const AddCommentHideShow = styled.p`
105
97
 
106
98
  export const Comments = styled.div`
107
99
  margin-top: 50px;
108
-
109
100
  p {
110
101
  margin-top: 0;
111
102
  margin-bottom: 8px;
112
103
  font-size: 14px;
113
104
  color: #344050;
114
105
  }
115
-
116
106
  textarea {
117
107
  width: 100%;
118
108
  box-sizing: border-box;
@@ -134,22 +124,18 @@ export const ButtonCustomized = styled(Button)`
134
124
  background: #E9ECEF;
135
125
  border: 1px solid #E9ECEF;
136
126
  transition: all 0.3s linear;
137
-
138
127
  ${props => props.theme?.rtl && css`
139
128
  margin-left: 18px;
140
129
  margin-right: 0;
141
130
  `}
142
-
143
131
  svg {
144
132
  vertical-align: middle;
145
133
  margin-left: 5px;
146
-
147
134
  ${props => props.theme?.rtl && css`
148
135
  margin-right: 5px;
149
136
  margin-left: 0;
150
137
  `}
151
138
  }
152
-
153
139
  ${({ active }) => active && css`
154
140
  background: ${props => props.theme?.colors.primary};
155
141
  border: 1px solid ${props => props.theme?.colors.primary};