project-booster-vue 10.16.1 → 10.16.2
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/package.json +1 -1
- package/src/components/rework/question/configurations-import/MPbConfigurationsImport.stories.mdx +1 -0
- package/src/components/rework/question/configurations-import/MPbConfigurationsImport.vue +3 -15
- package/src/components/rework/question/upload-document/MPbUploadDocument.stories.mdx +1 -0
package/package.json
CHANGED
package/src/components/rework/question/configurations-import/MPbConfigurationsImport.stories.mdx
CHANGED
|
@@ -80,6 +80,7 @@ export const TemplateSandbox = (args, { argTypes }) => ({
|
|
|
80
80
|
return { args };
|
|
81
81
|
},
|
|
82
82
|
template: `<m-pb-configurations-import
|
|
83
|
+
style="width:720px;margin:100px auto 0 auto;"
|
|
83
84
|
:payload="args.payload"
|
|
84
85
|
:show-back-button="args.showBackButton"
|
|
85
86
|
:answers="args.answers"
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="pb-configurations-import_container">
|
|
3
3
|
<div class="pb-configurations-import">
|
|
4
|
-
<m-flex align-items="center">
|
|
5
|
-
<m-link
|
|
6
|
-
:label="payload.viewModel.backLabel || 'Question précédente'"
|
|
7
|
-
:left-icon="BACK_ICON"
|
|
8
|
-
:class="{
|
|
9
|
-
'pb-configurations-import__back-button': true,
|
|
10
|
-
'pb-configurations-import__back-button--hidden':
|
|
11
|
-
!showBackButton && !decorate(answers, runtimeOptions, payload.viewModel.forceBackButton),
|
|
12
|
-
}"
|
|
13
|
-
@click="navigateTo(payload.viewModel)"
|
|
14
|
-
/>
|
|
15
|
-
</m-flex>
|
|
16
4
|
<div v-if="payload.viewModel.hero" class="pb-configurations-import__hero">
|
|
17
5
|
{{ payload.viewModel.hero }}
|
|
18
6
|
</div>
|
|
@@ -400,7 +388,7 @@ $answers-apparition-duration: '0.5s';
|
|
|
400
388
|
padding: $mu200 $mu125 $mu100 $mu125;
|
|
401
389
|
|
|
402
390
|
@include set-from-screen($responsive-breakpoint) {
|
|
403
|
-
padding:
|
|
391
|
+
padding: 0;
|
|
404
392
|
width: 100%;
|
|
405
393
|
}
|
|
406
394
|
}
|
|
@@ -457,7 +445,7 @@ $answers-apparition-duration: '0.5s';
|
|
|
457
445
|
padding: $mu050;
|
|
458
446
|
|
|
459
447
|
@include set-from-screen($responsive-breakpoint) {
|
|
460
|
-
padding: $mu100;
|
|
448
|
+
padding: $mu100 0;
|
|
461
449
|
}
|
|
462
450
|
|
|
463
451
|
&-card {
|
|
@@ -477,7 +465,7 @@ $answers-apparition-duration: '0.5s';
|
|
|
477
465
|
margin: $mu150 $mu050 0 $mu050;
|
|
478
466
|
|
|
479
467
|
@include set-from-screen($responsive-breakpoint) {
|
|
480
|
-
margin: $mu150
|
|
468
|
+
margin: $mu150 0 0 0;
|
|
481
469
|
}
|
|
482
470
|
|
|
483
471
|
&__button {
|
|
@@ -98,6 +98,7 @@ export const TemplateSandbox = (args, { argTypes }) => ({
|
|
|
98
98
|
return { args };
|
|
99
99
|
},
|
|
100
100
|
template: `<m-pb-upload-document
|
|
101
|
+
style="width:720px;margin:100px auto 0 auto;"
|
|
101
102
|
:payload="args.payload"
|
|
102
103
|
:show-back-button="args.showBackButton"
|
|
103
104
|
:answers="args.answers"
|