ordering-ui-admin-external 1.20.2 → 1.21.0
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/_bundles/{ordering-ui-admin.337f73ab451e16423fd8.js → ordering-ui-admin.3d1c23579efceb29694a.js} +2 -2
- package/_modules/components/Delivery/UserDetails/index.js +1 -0
- package/_modules/components/Home/HomePage/index.js +1 -1
- package/_modules/components/Loyalty/RewardsPrograms/index.js +18 -3
- package/_modules/components/Orders/Messages/index.js +1 -1
- package/_modules/components/Orders/OrdersTable/styles.js +1 -1
- package/_modules/components/Settings/IntegrationListing/index.js +8 -0
- package/_modules/components/Settings/SettingsList/index.js +1 -1
- package/_modules/components/Shared/ConfirmAdmin/index.js +59 -8
- package/_modules/components/Shared/Schedule/index.js +15 -2
- package/_modules/components/Shared/Schedule/styles.js +9 -7
- package/_modules/components/Support/index.js +1 -1
- package/package.json +2 -2
- package/src/components/Delivery/UserDetails/index.js +1 -0
- package/src/components/Home/HomePage/index.js +1 -1
- package/src/components/Loyalty/RewardsPrograms/index.js +3 -3
- package/src/components/Orders/Messages/index.js +1 -1
- package/src/components/Orders/OrdersTable/styles.js +2 -2
- package/src/components/Settings/IntegrationListing/index.js +2 -2
- package/src/components/Settings/SettingsList/index.js +1 -1
- package/src/components/Shared/ConfirmAdmin/index.js +52 -7
- package/src/components/Shared/Schedule/index.js +18 -3
- package/src/components/Shared/Schedule/styles.js +16 -5
- package/src/components/Support/index.js +1 -1
- /package/_bundles/{ordering-ui-admin.337f73ab451e16423fd8.js.LICENSE.txt → ordering-ui-admin.3d1c23579efceb29694a.js.LICENSE.txt} +0 -0
|
@@ -22,16 +22,16 @@ export const TimeScheduleItemContainer = styled.div`
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
&:first-child {
|
|
25
|
-
width: 95px;
|
|
25
|
+
min-width: 95px;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&:nth-child(2) {
|
|
29
29
|
flex-direction: column;
|
|
30
30
|
flex: 1;
|
|
31
31
|
${props => props.theme?.rtl ? css`
|
|
32
|
-
padding-right:
|
|
32
|
+
padding-right: 8px;
|
|
33
33
|
` : css`
|
|
34
|
-
padding-left:
|
|
34
|
+
padding-left: 8px;
|
|
35
35
|
`}
|
|
36
36
|
> div {
|
|
37
37
|
display: flex;
|
|
@@ -72,7 +72,7 @@ export const TimeScheduleItemContainer = styled.div`
|
|
|
72
72
|
> div {
|
|
73
73
|
h4 {
|
|
74
74
|
font-size: 14px;
|
|
75
|
-
padding: 0
|
|
75
|
+
padding: 0 12px;
|
|
76
76
|
}
|
|
77
77
|
&:nth-child(2) {
|
|
78
78
|
p {
|
|
@@ -124,7 +124,7 @@ export const SelectWrapper = styled.div`
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
@media (min-width: 450px) {
|
|
127
|
-
width:
|
|
127
|
+
width: 95px;
|
|
128
128
|
.select {
|
|
129
129
|
> div {
|
|
130
130
|
font-size: 16px;
|
|
@@ -135,6 +135,7 @@ export const SelectWrapper = styled.div`
|
|
|
135
135
|
|
|
136
136
|
export const Option = styled.div`
|
|
137
137
|
white-space: nowrap;
|
|
138
|
+
font-size: 15px;
|
|
138
139
|
`
|
|
139
140
|
|
|
140
141
|
export const SplitLine = styled.div`
|
|
@@ -186,3 +187,13 @@ export const AddScheduleIconWrapper = styled.div`
|
|
|
186
187
|
width: 56px;
|
|
187
188
|
}
|
|
188
189
|
`
|
|
190
|
+
export const DateWrapper = styled.div`
|
|
191
|
+
display: flex;
|
|
192
|
+
flex-direction: column;
|
|
193
|
+
|
|
194
|
+
h4 {
|
|
195
|
+
&.date {
|
|
196
|
+
font-weight: normal;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
`
|
|
@@ -45,7 +45,7 @@ export const Support = (props) => {
|
|
|
45
45
|
<Button
|
|
46
46
|
borderRadius='7.6px'
|
|
47
47
|
color='primary'
|
|
48
|
-
onClick={() => handleGoToLink('https://www.ordering.co/ordering
|
|
48
|
+
onClick={() => handleGoToLink('https://www.ordering.co/contact-ordering')}
|
|
49
49
|
outline
|
|
50
50
|
>
|
|
51
51
|
{t('SALES_CONTACT', 'Sales Contact')}
|