@wise/dynamic-flow-client 2.2.0-beta-365401.17 → 2.2.1
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/build/i18n/en.json +0 -2
- package/build/main.css +0 -19
- package/build/main.js +124 -383
- package/build/main.min.js +1 -8
- package/build/types/common/contexts/eventsContext/EventsContext.d.ts +1 -1
- package/build/types/common/utils/index.d.ts +0 -1
- package/build/types/layout/search/SearchInput.d.ts +2 -1
- package/build/types/step/cameraStep/cameraCapture/components/index.d.ts +0 -1
- package/package.json +65 -65
- package/build/types/common/utils/mobile-utils.d.ts +0 -4
- package/build/types/step/cameraStep/cameraCapture/components/orientationLock/OrientationLock.d.ts +0 -2
- package/build/types/step/cameraStep/cameraCapture/components/orientationLock/OrientationLock.messages.d.ts +0 -13
package/build/i18n/en.json
CHANGED
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
"dynamicFlows.CameraCapture.reviewInstructions": "Is your picture clear, readable and complete?",
|
|
14
14
|
"dynamicFlows.CameraCapture.reviewRetry": "No, try again",
|
|
15
15
|
"dynamicFlows.CameraCapture.reviewSubmit": "Yes, submit",
|
|
16
|
-
"dynamicFlows.CameraCapture.rotatePhone.imgAlt": "Rotate your phone icon",
|
|
17
|
-
"dynamicFlows.CameraCapture.rotatePhone.text": "Rotate your phone to portrait view to take a photo",
|
|
18
16
|
"dynamicFlows.ControlFeedback.maxLength": "Please enter {maxLength} or fewer characters.",
|
|
19
17
|
"dynamicFlows.ControlFeedback.maximum": "Please enter a number that's {maximum} or less.",
|
|
20
18
|
"dynamicFlows.ControlFeedback.maximumDate": "Please enter a date that's on or before {maximum}.",
|
package/build/main.css
CHANGED
|
@@ -149,25 +149,6 @@
|
|
|
149
149
|
width: 100%;
|
|
150
150
|
z-index: 10000;
|
|
151
151
|
}
|
|
152
|
-
.orientation-lock-overlay {
|
|
153
|
-
display: none;
|
|
154
|
-
position: fixed;
|
|
155
|
-
inset: 0;
|
|
156
|
-
background-color: var(--color-dark);
|
|
157
|
-
color: var(--color-white);
|
|
158
|
-
text-align: center;
|
|
159
|
-
font-size: var(--font-size-16);
|
|
160
|
-
font-weight: var(--font-weight-semi-bold);
|
|
161
|
-
flex-direction: column;
|
|
162
|
-
justify-content: center;
|
|
163
|
-
align-items: center;
|
|
164
|
-
z-index: 1000;
|
|
165
|
-
}
|
|
166
|
-
@media screen and (orientation: landscape) and (max-height: 767px) {
|
|
167
|
-
.orientation-lock-overlay {
|
|
168
|
-
display: flex;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
152
|
.df-image {
|
|
172
153
|
display: flex;
|
|
173
154
|
justify-content: center;
|