project-booster-vue 10.23.0 → 10.23.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.
Files changed (23) hide show
  1. package/package.json +1 -1
  2. package/src/components/rework/restitution/MPbRestitutionList.vue +42 -33
  3. package/src/components/scenario/PbScenario-Appoitment-Bathroom.stories.mdx +1 -1
  4. package/src/components/scenario/PbScenario-Appoitment-Kitchen.stories.mdx +1 -1
  5. package/src/components/scenario/PbScenario-Estimator-Attic-Insulation.stories.mdx +1 -1
  6. package/src/components/scenario/PbScenario-Estimator-Bathroom.stories.mdx +1 -1
  7. package/src/components/scenario/PbScenario-Estimator-Boiler-Pellet.stories.mdx +1 -1
  8. package/src/components/scenario/PbScenario-Estimator-Bookcase.stories.mdx +1 -1
  9. package/src/components/scenario/PbScenario-Estimator-Dressing.stories.mdx +1 -1
  10. package/src/components/scenario/PbScenario-Estimator-External-Wall-Insulation.stories.mdx +1 -1
  11. package/src/components/scenario/PbScenario-Estimator-Floor-Insulation.stories.mdx +1 -1
  12. package/src/components/scenario/PbScenario-Estimator-Floor.stories.mdx +1 -1
  13. package/src/components/scenario/PbScenario-Estimator-Heating.stories.mdx +1 -1
  14. package/src/components/scenario/PbScenario-Estimator-Kitchen.stories.mdx +1 -1
  15. package/src/components/scenario/PbScenario-Estimator-Misc.stories.mdx +1 -1
  16. package/src/components/scenario/PbScenario-Estimator-New-Construction.stories.mdx +1 -1
  17. package/src/components/scenario/PbScenario-Estimator-Pellet-Burning-Stove.stories.mdx +1 -1
  18. package/src/components/scenario/PbScenario-Estimator-Roof-Floor.stories.mdx +1 -1
  19. package/src/components/scenario/PbScenario-Estimator-Solar-Panel.stories.mdx +1 -1
  20. package/src/components/scenario/PbScenario-Estimator-Storage.stories.mdx +1 -1
  21. package/src/components/scenario/PbScenario-Estimator-Tv.stories.mdx +1 -1
  22. package/src/components/scenario/PbScenario-Estimator-Woodstore.stories.mdx +1 -1
  23. package/src/components/scenario/PbScenario-Estimator-hpwa.stories.mdx +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "10.23.0",
3
+ "version": "10.23.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -34,11 +34,7 @@
34
34
  align-items="center"
35
35
  class="pb-restitution-list__notifications__container"
36
36
  >
37
- <m-notification
38
- :title="notification.title"
39
- :type="notification.type"
40
- class="pb-restitution-list__notifications__container__block"
41
- >
37
+ <m-notification :title="notification.title" :type="notification.type">
42
38
  <default>{{ notification.text }}</default>
43
39
  <footer>
44
40
  <m-link size="m" :href="notification.linkHref" target="_blank">
@@ -338,7 +334,7 @@ $responsive-breakpoint: 'm';
338
334
  }
339
335
 
340
336
  .pb-restitution-wrapper {
341
- margin-bottom: $mu250;
337
+ margin-bottom: $mu200;
342
338
  }
343
339
 
344
340
  .pb-restitution-list {
@@ -398,50 +394,66 @@ $responsive-breakpoint: 'm';
398
394
  display: flex;
399
395
  justify-content: center;
400
396
 
401
- &__content {
402
- display: grid;
403
- grid-template-columns: repeat(2, 1fr);
404
- grid-template-areas: 'call' 'card';
405
- row-gap: 2rem;
397
+ margin-bottom: $mu100;
406
398
 
399
+ &__content {
400
+ display: flex;
401
+ flex-direction: column;
407
402
  justify-content: center;
403
+ align-items: center;
408
404
 
409
- &__call {
410
- grid-area: call;
411
- grid-column: 1 / 3;
405
+ @include set-from-screen($responsive-breakpoint) {
406
+ display: grid;
407
+
408
+ grid-template-columns: repeat(2, 1fr);
409
+ grid-template-areas: 'call' 'card';
410
+ row-gap: $mu100;
411
+ }
412
412
 
413
+ &__call {
413
414
  display: flex;
414
- flex-direction: row;
415
+ flex-direction: column;
415
416
  justify-content: center;
416
417
 
417
- width: 100%;
418
+ margin-bottom: $mu100;
419
+
420
+ @include set-from-screen($responsive-breakpoint) {
421
+ grid-area: call;
422
+ grid-column: 1 / 3;
423
+
424
+ flex-direction: row;
425
+ }
418
426
 
419
427
  &__button {
420
- width: 150px;
421
- margin: 0 $mu100 0 $mu100;
428
+ width: 280px;
429
+ margin-bottom: $mu100;
422
430
 
423
431
  @include set-from-screen($responsive-breakpoint) {
424
- width: 280px;
432
+ margin: 0 $mu100 0 $mu100;
425
433
  }
426
434
  }
427
435
  }
428
436
 
429
437
  &__card {
430
- grid-area: card;
431
- grid-column: 1 / 3;
432
-
433
- row-gap: 1rem;
434
-
435
438
  display: flex;
436
- flex-direction: row;
439
+ flex-direction: column;
437
440
  justify-content: center;
438
441
 
442
+ @include set-from-screen($responsive-breakpoint) {
443
+ grid-area: card;
444
+ grid-column: 1 / 3;
445
+ row-gap: $mu100;
446
+
447
+ flex-direction: row;
448
+ }
449
+
439
450
  &__item {
440
- width: 150px;
441
- margin: 0 $mu100 0 $mu100;
451
+ width: 280px;
452
+
453
+ margin-bottom: $mu100;
442
454
 
443
455
  @include set-from-screen($responsive-breakpoint) {
444
- width: 280px;
456
+ margin: 0 $mu100 0 $mu100;
445
457
  }
446
458
  }
447
459
  }
@@ -610,7 +622,8 @@ $responsive-breakpoint: 'm';
610
622
 
611
623
  &__notifications {
612
624
  width: 100%;
613
- margin-bottom: $mu050;
625
+
626
+ margin-top: $mu100;
614
627
 
615
628
  @include set-from-screen($responsive-breakpoint) {
616
629
  width: 710px;
@@ -623,10 +636,6 @@ $responsive-breakpoint: 'm';
623
636
  @include set-from-screen($responsive-breakpoint) {
624
637
  min-width: 100%;
625
638
  }
626
-
627
- &__block {
628
- margin-bottom: $mu050;
629
- }
630
639
  }
631
640
  }
632
641
  }
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Kitchen Qualification"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Qualification/Kitchen Qualification"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Bathroom Qualification"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Qualification/Bathroom Qualification"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Attic Insulation"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Attic Insulation"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Bathroom Estimator"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Bathroom Estimator"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Pellet Boiler"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Pellet Boiler"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Bookcase"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Bookcase"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/New Construction"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/New Construction"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/External Wall Insulation"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/External Wall Insulation"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Floor Insulation"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Floor Insulation"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Floor"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Floor"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Heating"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Heating"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Kitchen"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Kitchen"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Misc"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Misc"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/New Construction"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/New Construction"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Pellet Burning Stove"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Pellet Burning Stove"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Roof Floor"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Roof Floor"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Solar Panel"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Solar Panel"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Storage"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Storage"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Tv"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Tv"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Wood Stove"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Wood Stove"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {
@@ -7,7 +7,7 @@ import { TemplateSandbox } from './PbScenario.stories.mdx';
7
7
  import simpleScenarioSchema from './Simple-scenario.svg';
8
8
 
9
9
  <Meta
10
- title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Heat Pump Air Water"
10
+ title="Project Booster/Scenario/PbScenario 🦠/Test (locally)/Estimator/Heat Pump Air Water"
11
11
  component={PbScenario}
12
12
  argTypes={{
13
13
  scenarios: {