@dative-gpi/foundation-shared-components 1.0.128-fix-mobile-12 → 1.0.128-fix-mobile-keyboard
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.
|
@@ -12,13 +12,50 @@
|
|
|
12
12
|
gap="24px"
|
|
13
13
|
>
|
|
14
14
|
<FSFadeOut
|
|
15
|
+
:disableBottomMask="isKeyboardOpen"
|
|
15
16
|
:maxHeight="maxHeight"
|
|
16
17
|
>
|
|
17
18
|
<slot
|
|
18
19
|
name="body"
|
|
19
20
|
/>
|
|
21
|
+
<FSRow
|
|
22
|
+
v-if="isKeyboardOpen"
|
|
23
|
+
padding="24px 0 0 0"
|
|
24
|
+
>
|
|
25
|
+
<slot
|
|
26
|
+
name="left-footer"
|
|
27
|
+
/>
|
|
28
|
+
<FSRow
|
|
29
|
+
class="fs-dialog-actions"
|
|
30
|
+
align="top-right"
|
|
31
|
+
:wrap="false"
|
|
32
|
+
>
|
|
33
|
+
<FSButton
|
|
34
|
+
v-if="$props.showCancelButton"
|
|
35
|
+
:prependIcon="$props.cancelButtonPrependIcon"
|
|
36
|
+
:appendIcon="$props.cancelButtonAppendIcon"
|
|
37
|
+
:variant="$props.cancelButtonVariant"
|
|
38
|
+
:color="$props.cancelButtonColor"
|
|
39
|
+
:label="cancelLabel"
|
|
40
|
+
@click="() => $emit('click:cancelButton', false)"
|
|
41
|
+
/>
|
|
42
|
+
<FSButton
|
|
43
|
+
v-if="$props.showSubmitButton"
|
|
44
|
+
type="submit"
|
|
45
|
+
:prependIcon="$props.submitButtonPrependIcon"
|
|
46
|
+
:appendIcon="$props.submitButtonAppendIcon"
|
|
47
|
+
:variant="$props.submitButtonVariant"
|
|
48
|
+
:color="$props.submitButtonColor"
|
|
49
|
+
:editable="$props.editable"
|
|
50
|
+
:label="submitLabel"
|
|
51
|
+
:load="$props.load"
|
|
52
|
+
/>
|
|
53
|
+
</FSRow>
|
|
54
|
+
</FSRow>
|
|
20
55
|
</FSFadeOut>
|
|
21
|
-
<FSRow
|
|
56
|
+
<FSRow
|
|
57
|
+
v-if="!isKeyboardOpen"
|
|
58
|
+
>
|
|
22
59
|
<slot
|
|
23
60
|
name="left-footer"
|
|
24
61
|
/>
|
|
@@ -59,13 +96,38 @@
|
|
|
59
96
|
gap="24px"
|
|
60
97
|
>
|
|
61
98
|
<FSFadeOut
|
|
99
|
+
:disableBottomMask="isKeyboardOpen"
|
|
62
100
|
:maxHeight="maxHeight"
|
|
63
101
|
>
|
|
64
102
|
<slot
|
|
65
103
|
name="validation"
|
|
66
104
|
/>
|
|
105
|
+
<FSRow
|
|
106
|
+
v-if="isKeyboardOpen"
|
|
107
|
+
padding="24px 0 0 0"
|
|
108
|
+
>
|
|
109
|
+
<slot
|
|
110
|
+
name="left-footer"
|
|
111
|
+
/>
|
|
112
|
+
<FSRow
|
|
113
|
+
class="fs-dialog-actions"
|
|
114
|
+
align="top-right"
|
|
115
|
+
:wrap="false"
|
|
116
|
+
>
|
|
117
|
+
<FSButton
|
|
118
|
+
:prependIcon="$props.validateButtonPrependIcon"
|
|
119
|
+
:appendIcon="$props.validateButtonAppendIcon"
|
|
120
|
+
:variant="$props.validateButtonVariant"
|
|
121
|
+
:color="$props.validateButtonColor"
|
|
122
|
+
:label="validateLabel"
|
|
123
|
+
@click="onValidate"
|
|
124
|
+
/>
|
|
125
|
+
</FSRow>
|
|
126
|
+
</FSRow>
|
|
67
127
|
</FSFadeOut>
|
|
68
|
-
<FSRow
|
|
128
|
+
<FSRow
|
|
129
|
+
v-if="!isKeyboardOpen"
|
|
130
|
+
>
|
|
69
131
|
<slot
|
|
70
132
|
name="left-footer"
|
|
71
133
|
/>
|
|
@@ -222,18 +284,18 @@ export default defineComponent({
|
|
|
222
284
|
},
|
|
223
285
|
emits: ["click:cancelButton", "click:submitButton", "click:validateButton", "update:isValidForm"],
|
|
224
286
|
setup(props, { emit }) {
|
|
225
|
-
const { isMobileSized } = useBreakpoints();
|
|
287
|
+
const { isKeyboardOpen, isMobileSized } = useBreakpoints();
|
|
226
288
|
const { $tr } = useTranslationsProvider();
|
|
227
289
|
|
|
228
290
|
const formRef = ref<typeof FSForm | null>(null);
|
|
229
291
|
const isValidForm = ref(null);
|
|
230
292
|
|
|
231
293
|
const maxHeight = computed(() => {
|
|
232
|
-
const other = 24 + 24
|
|
233
|
-
+ (isMobileSized.value ? 24 : 32) + 24
|
|
234
|
-
+ (props.subtitle ? (isMobileSized.value ? 16 : 20) + 8 : 0)
|
|
235
|
-
+ (isMobileSized.value ? 36 : 40) + 24;
|
|
236
|
-
return `calc(100vh -
|
|
294
|
+
const other = 24 + 24 // Paddings
|
|
295
|
+
+ (isMobileSized.value ? 24 : 32) + 24 // Title
|
|
296
|
+
+ (props.subtitle ? (isMobileSized.value ? 16 : 20) + 8 : 0) // Subtitle
|
|
297
|
+
+ (isKeyboardOpen.value ? 0 : (isMobileSized.value ? 36 : 40) + 24); // Footer
|
|
298
|
+
return `calc(100vh - 12px - ${other}px)`;
|
|
237
299
|
});
|
|
238
300
|
|
|
239
301
|
const cancelLabel = computed(() => {
|
|
@@ -276,6 +338,7 @@ export default defineComponent({
|
|
|
276
338
|
|
|
277
339
|
return {
|
|
278
340
|
resetFormValidation,
|
|
341
|
+
isKeyboardOpen,
|
|
279
342
|
validateLabel,
|
|
280
343
|
validateForm,
|
|
281
344
|
isValidForm,
|
|
@@ -22,13 +22,50 @@
|
|
|
22
22
|
gap="24px"
|
|
23
23
|
>
|
|
24
24
|
<FSFadeOut
|
|
25
|
+
:disableBottomMask="isKeyboardOpen"
|
|
25
26
|
:maxHeight="maxHeight"
|
|
26
27
|
>
|
|
27
28
|
<slot
|
|
28
29
|
:name="`step-${step}`"
|
|
29
30
|
/>
|
|
31
|
+
<FSRow
|
|
32
|
+
v-if="isKeyboardOpen"
|
|
33
|
+
padding="24px 0 0 0"
|
|
34
|
+
>
|
|
35
|
+
<slot
|
|
36
|
+
name="left-footer"
|
|
37
|
+
/>
|
|
38
|
+
<FSRow
|
|
39
|
+
class="fs-dialog-actions"
|
|
40
|
+
align="top-right"
|
|
41
|
+
:wrap="false"
|
|
42
|
+
>
|
|
43
|
+
<FSButton
|
|
44
|
+
v-if="$props.showCancelButton || currentStep > 1"
|
|
45
|
+
:prependIcon="$props.cancelButtonPrependIcon"
|
|
46
|
+
:appendIcon="$props.cancelButtonAppendIcon"
|
|
47
|
+
:variant="$props.cancelButtonVariant"
|
|
48
|
+
:color="$props.cancelButtonColor"
|
|
49
|
+
:label="previousButtonLabel"
|
|
50
|
+
@click="onPrevious()"
|
|
51
|
+
/>
|
|
52
|
+
<FSButton
|
|
53
|
+
v-if="$props.showSubmitButton || currentStep < $props.steps"
|
|
54
|
+
type="submit"
|
|
55
|
+
:prependIcon="$props.submitButtonPrependIcon"
|
|
56
|
+
:appendIcon="$props.submitButtonAppendIcon"
|
|
57
|
+
:color="$props.submitButtonColor"
|
|
58
|
+
:variant="nextButtonVariant"
|
|
59
|
+
:editable="$props.editable"
|
|
60
|
+
:label="nextButtonLabel"
|
|
61
|
+
:load="$props.load"
|
|
62
|
+
/>
|
|
63
|
+
</FSRow>
|
|
64
|
+
</FSRow>
|
|
30
65
|
</FSFadeOut>
|
|
31
|
-
<FSRow
|
|
66
|
+
<FSRow
|
|
67
|
+
v-if="!isKeyboardOpen"
|
|
68
|
+
>
|
|
32
69
|
<slot
|
|
33
70
|
name="left-footer"
|
|
34
71
|
/>
|
|
@@ -182,7 +219,7 @@ export default defineComponent({
|
|
|
182
219
|
},
|
|
183
220
|
emits: ["click:cancelButton", "click:submitButton"],
|
|
184
221
|
setup(props, { emit }) {
|
|
185
|
-
const { isMobileSized } = useBreakpoints();
|
|
222
|
+
const { isKeyboardOpen, isMobileSized } = useBreakpoints();
|
|
186
223
|
const { $tr } = useTranslationsProvider();
|
|
187
224
|
|
|
188
225
|
const currentStep = ref(1);
|
|
@@ -190,12 +227,12 @@ export default defineComponent({
|
|
|
190
227
|
const valids = ref(Array.from({ length: props.steps }, () => false));
|
|
191
228
|
|
|
192
229
|
const maxHeight = computed(() => {
|
|
193
|
-
const other = 24 + 24
|
|
194
|
-
+ (isMobileSized.value ? 24 : 32) + 24
|
|
195
|
-
+ (props.subtitle ? (isMobileSized.value ? 16 : 20) + 8 : 0)
|
|
196
|
-
+ (props.steps > 1 ? 24 + 4 : 0)
|
|
197
|
-
+ (isMobileSized.value ? 36 : 40) + 24;
|
|
198
|
-
return `calc(100vh -
|
|
230
|
+
const other = 24 + 24 // Paddings
|
|
231
|
+
+ (isMobileSized.value ? 24 : 32) + 24 // Title
|
|
232
|
+
+ (props.subtitle ? (isMobileSized.value ? 16 : 20) + 8 : 0) // Subtitle
|
|
233
|
+
+ (props.steps > 1 ? 24 + 4 : 0) // Pagination
|
|
234
|
+
+ (isKeyboardOpen.value ? 0 : (isMobileSized.value ? 36 : 40) + 24); // Footer
|
|
235
|
+
return `calc(100vh - 12px - ${other}px)`;
|
|
199
236
|
});
|
|
200
237
|
|
|
201
238
|
const previousButtonLabel = computed(() => {
|
|
@@ -241,6 +278,7 @@ export default defineComponent({
|
|
|
241
278
|
previousButtonLabel,
|
|
242
279
|
nextButtonVariant,
|
|
243
280
|
nextButtonLabel,
|
|
281
|
+
isKeyboardOpen,
|
|
244
282
|
currentStep,
|
|
245
283
|
ColorEnum,
|
|
246
284
|
maxHeight,
|
|
@@ -11,14 +11,53 @@
|
|
|
11
11
|
#body
|
|
12
12
|
>
|
|
13
13
|
<FSFadeOut
|
|
14
|
+
:disableBottomMask="isKeyboardOpen"
|
|
14
15
|
:maxHeight="maxHeight"
|
|
15
16
|
>
|
|
16
17
|
<slot
|
|
17
18
|
name="body"
|
|
18
19
|
/>
|
|
20
|
+
<slot
|
|
21
|
+
v-if="isKeyboardOpen"
|
|
22
|
+
name="footer"
|
|
23
|
+
>
|
|
24
|
+
<FSRow
|
|
25
|
+
padding="24px 0 0 0"
|
|
26
|
+
>
|
|
27
|
+
<slot
|
|
28
|
+
name="left-footer"
|
|
29
|
+
/>
|
|
30
|
+
<FSRow
|
|
31
|
+
align="top-right"
|
|
32
|
+
:wrap="false"
|
|
33
|
+
>
|
|
34
|
+
<FSButton
|
|
35
|
+
v-if="$props.showCancelButton"
|
|
36
|
+
:prependIcon="$props.cancelButtonPrependIcon"
|
|
37
|
+
:appendIcon="$props.cancelButtonAppendIcon"
|
|
38
|
+
:variant="$props.cancelButtonVariant"
|
|
39
|
+
:color="$props.cancelButtonColor"
|
|
40
|
+
:label="cancelLabel"
|
|
41
|
+
@click="$emit('update:modelValue', false)"
|
|
42
|
+
/>
|
|
43
|
+
<FSButton
|
|
44
|
+
v-if="$props.showSubmitButton"
|
|
45
|
+
:prependIcon="$props.submitButtonPrependIcon"
|
|
46
|
+
:appendIcon="$props.submitButtonAppendIcon"
|
|
47
|
+
:variant="$props.submitButtonVariant"
|
|
48
|
+
:color="$props.submitButtonColor"
|
|
49
|
+
:editable="$props.editable"
|
|
50
|
+
:label="submitLabel"
|
|
51
|
+
:load="$props.load"
|
|
52
|
+
@click="$emit('click:submitButton')"
|
|
53
|
+
/>
|
|
54
|
+
</FSRow>
|
|
55
|
+
</FSRow>
|
|
56
|
+
</slot>
|
|
19
57
|
</FSFadeOut>
|
|
20
58
|
</template>
|
|
21
59
|
<template
|
|
60
|
+
v-if="!isKeyboardOpen"
|
|
22
61
|
#footer
|
|
23
62
|
>
|
|
24
63
|
<slot
|
|
@@ -173,15 +212,15 @@ export default defineComponent({
|
|
|
173
212
|
},
|
|
174
213
|
emits: ["update:modelValue", "click:submitButton"],
|
|
175
214
|
setup(props) {
|
|
176
|
-
const { isMobileSized } = useBreakpoints();
|
|
215
|
+
const { isKeyboardOpen, isMobileSized } = useBreakpoints();
|
|
177
216
|
const { $tr } = useTranslationsProvider();
|
|
178
217
|
|
|
179
218
|
const maxHeight = computed(() => {
|
|
180
|
-
const other = 24 + 24
|
|
181
|
-
+ (isMobileSized.value ? 24 : 32) + 24
|
|
182
|
-
+ (props.subtitle ? (isMobileSized.value ? 16 : 20) + 8 : 0)
|
|
183
|
-
+ (isMobileSized.value ? 36 : 40) + 24;
|
|
184
|
-
return `calc(100vh -
|
|
219
|
+
const other = 24 + 24 // Paddings
|
|
220
|
+
+ (isMobileSized.value ? 24 : 32) + 24 // Title
|
|
221
|
+
+ (props.subtitle ? (isMobileSized.value ? 16 : 20) + 8 : 0) // Subtitle
|
|
222
|
+
+ (isKeyboardOpen.value ? 0 : (isMobileSized.value ? 36 : 40) + 24); // Footer
|
|
223
|
+
return `calc(100vh - 12px - ${other}px)`;
|
|
185
224
|
});
|
|
186
225
|
|
|
187
226
|
const cancelLabel = computed(() => {
|
|
@@ -193,6 +232,7 @@ export default defineComponent({
|
|
|
193
232
|
});
|
|
194
233
|
|
|
195
234
|
return {
|
|
235
|
+
isKeyboardOpen,
|
|
196
236
|
cancelLabel,
|
|
197
237
|
submitLabel,
|
|
198
238
|
ColorEnum,
|
package/components/FSFadeOut.vue
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
class="fs-fade-out"
|
|
4
4
|
ref="fadeOutRef"
|
|
5
5
|
:id="elementId"
|
|
6
|
-
:style="style"
|
|
7
6
|
@scroll="$emit('scroll', $event); debounceMasks()"
|
|
8
7
|
>
|
|
9
8
|
<slot />
|
|
@@ -11,7 +10,7 @@
|
|
|
11
10
|
</template>
|
|
12
11
|
|
|
13
12
|
<script lang="ts">
|
|
14
|
-
import { computed, defineComponent, onMounted, onUnmounted, type PropType, ref,
|
|
13
|
+
import { computed, defineComponent, onMounted, onUnmounted, type PropType, ref, watch } from "vue";
|
|
15
14
|
|
|
16
15
|
import { useBreakpoints, useColors, useDebounce } from "@dative-gpi/foundation-shared-components/composables";
|
|
17
16
|
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
@@ -65,6 +64,10 @@ export default defineComponent({
|
|
|
65
64
|
type: Boolean,
|
|
66
65
|
required: false,
|
|
67
66
|
default: false
|
|
67
|
+
},
|
|
68
|
+
style:{
|
|
69
|
+
type: Object,
|
|
70
|
+
required: false
|
|
68
71
|
}
|
|
69
72
|
},
|
|
70
73
|
emits: ["scroll"],
|
|
@@ -75,7 +78,7 @@ export default defineComponent({
|
|
|
75
78
|
|
|
76
79
|
const backgrounds = getColors(ColorEnum.Background);
|
|
77
80
|
|
|
78
|
-
const fadeOutRef = ref(null);
|
|
81
|
+
const fadeOutRef = ref<HTMLElement | null>(null);
|
|
79
82
|
const bottomMaskHeight = ref("0px");
|
|
80
83
|
const topMaskHeight = ref("0px");
|
|
81
84
|
const lastScroll = ref(0);
|
|
@@ -86,7 +89,7 @@ export default defineComponent({
|
|
|
86
89
|
|
|
87
90
|
const showOutsideScrollbar = computed(() => props.scrollOutside && !isTouchScreenEnabled.value);
|
|
88
91
|
|
|
89
|
-
const style = computed(():
|
|
92
|
+
const style = computed((): {[index: string]: string} => ({
|
|
90
93
|
"--fs-fade-out-height" : props.height ? sizeToVar(props.height) : "initial",
|
|
91
94
|
"--fs-fade-out-max-height" : props.maxHeight ? sizeToVar(props.maxHeight) : "initial",
|
|
92
95
|
"--fs-fade-out-width" : sizeToVar(props.width),
|
|
@@ -97,7 +100,8 @@ export default defineComponent({
|
|
|
97
100
|
"--fs-fade-out-mask-color" : backgrounds.base,
|
|
98
101
|
"--fs-fade-out-top-mask-height" : props.disableTopMask ? '0px' : topMaskHeight.value,
|
|
99
102
|
"--fs-fade-out-bottom-mask-height": props.disableBottomMask ? '0px' : bottomMaskHeight.value,
|
|
100
|
-
"--fs-fade-out-x-overflow" : props.hideHorizontalOverflow ? 'hidden' : 'auto'
|
|
103
|
+
"--fs-fade-out-x-overflow" : props.hideHorizontalOverflow ? 'hidden' : 'auto',
|
|
104
|
+
...props.style
|
|
101
105
|
}));
|
|
102
106
|
|
|
103
107
|
const handleMasks = () => {
|
|
@@ -148,6 +152,15 @@ export default defineComponent({
|
|
|
148
152
|
|
|
149
153
|
watch([() => windowWidth.value, () => windowHeight.value], debounceMasks);
|
|
150
154
|
|
|
155
|
+
watch(() => [style.value, fadeOutRef.value], () => {
|
|
156
|
+
if(!fadeOutRef.value || !style.value) {
|
|
157
|
+
return;
|
|
158
|
+
}
|
|
159
|
+
for(const key in style.value){
|
|
160
|
+
fadeOutRef.value.style.setProperty(key, style.value[key])
|
|
161
|
+
}
|
|
162
|
+
}, { immediate: true})
|
|
163
|
+
|
|
151
164
|
return {
|
|
152
165
|
fadeOutRef,
|
|
153
166
|
elementId,
|
package/components/map/FSMap.vue
CHANGED
|
@@ -259,7 +259,7 @@ export default defineComponent({
|
|
|
259
259
|
name: "map",
|
|
260
260
|
label: $tr("ui.map-layer.map", "Map"),
|
|
261
261
|
image: new URL("../../assets/images/map/map.png", import.meta.url).href,
|
|
262
|
-
layer: tileLayer(`
|
|
262
|
+
layer: tileLayer(`https://{s}.google.com/vt/lyrs=m&x={x}&y={y}&z={z}&key=${import.meta.env.VITE_GOOGLE_MAPS_API_KEY ?? ""}`, {
|
|
263
263
|
maxZoom: 22,
|
|
264
264
|
subdomains: ['mt0', 'mt1', 'mt2', 'mt3'],
|
|
265
265
|
attribution: '© Google Map Data'
|
|
@@ -269,7 +269,7 @@ export default defineComponent({
|
|
|
269
269
|
name: "imagery",
|
|
270
270
|
label: $tr("ui.map-layer.imagery", "Imagery"),
|
|
271
271
|
image: new URL("../../assets/images/map/imagery.png", import.meta.url).href,
|
|
272
|
-
layer: tileLayer(`
|
|
272
|
+
layer: tileLayer(`https://{s}.google.com/vt/lyrs=s,h&x={x}&y={y}&z={z}&key=${import.meta.env.VITE_GOOGLE_MAPS_API_KEY ?? ""}`, {
|
|
273
273
|
maxZoom: 22,
|
|
274
274
|
subdomains: ['mt0', 'mt1', 'mt2', 'mt3'],
|
|
275
275
|
attribution: '© Google Map Data'
|
|
@@ -6,6 +6,7 @@ const windowHeight = ref(window.innerHeight);
|
|
|
6
6
|
const windowWidth = ref(window.innerWidth);
|
|
7
7
|
|
|
8
8
|
const windowOuterWidth = ref(!window.document.hasFocus() && window.outerWidth === 0 ? window.innerWidth : window.outerWidth);
|
|
9
|
+
const visualViewportHeight = ref(window.visualViewport!.height);
|
|
9
10
|
|
|
10
11
|
export const useBreakpoints = () => {
|
|
11
12
|
const onSizeChange = (): void => {
|
|
@@ -20,10 +21,18 @@ export const useBreakpoints = () => {
|
|
|
20
21
|
windowOuterWidth.value = window.outerWidth;
|
|
21
22
|
};
|
|
22
23
|
|
|
24
|
+
const onVisualViewportResize = (): void => {
|
|
25
|
+
visualViewportHeight.value = window.visualViewport!.height;
|
|
26
|
+
};
|
|
27
|
+
|
|
23
28
|
const isTouchScreenEnabled = computed((): boolean => {
|
|
24
29
|
return navigator.maxTouchPoints > 0;
|
|
25
30
|
});
|
|
26
31
|
|
|
32
|
+
const isKeyboardOpen = computed((): boolean => {
|
|
33
|
+
return visualViewportHeight.value + 300 < window.screen.height;
|
|
34
|
+
});
|
|
35
|
+
|
|
27
36
|
const isMobileSized = computed((): boolean => {
|
|
28
37
|
return windowOuterWidth.value < 1264;
|
|
29
38
|
});
|
|
@@ -34,6 +43,7 @@ export const useBreakpoints = () => {
|
|
|
34
43
|
|
|
35
44
|
if (!initialized) {
|
|
36
45
|
window.addEventListener("resize", onSizeChange);
|
|
46
|
+
window.visualViewport!.addEventListener ("resize", onVisualViewportResize);
|
|
37
47
|
initialized = true;
|
|
38
48
|
}
|
|
39
49
|
|
|
@@ -64,6 +74,7 @@ export const useBreakpoints = () => {
|
|
|
64
74
|
|
|
65
75
|
return {
|
|
66
76
|
isTouchScreenEnabled,
|
|
77
|
+
isKeyboardOpen,
|
|
67
78
|
isMobileSized,
|
|
68
79
|
isExtraSmall,
|
|
69
80
|
windowHeight,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.128-fix-mobile-
|
|
4
|
+
"version": "1.0.128-fix-mobile-keyboard",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.128-fix-mobile-
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.128-fix-mobile-
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.128-fix-mobile-keyboard",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.128-fix-mobile-keyboard"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "61080db8bd4a7ede6932088bc03dca613d805931"
|
|
39
39
|
}
|