axitech-widget 1.0.0-beta.2 → 1.0.0-beta.3
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/dist/{Accident-2f3db324.mjs → Accident-37a45554.mjs} +1 -1
- package/dist/{Accident-ce64d135.js → Accident-6f398807.js} +1 -1
- package/dist/{Location-f2ebd978.mjs → Location-815fd84b.mjs} +1 -1
- package/dist/{Location-6df9b6ea.js → Location-af9cb713.js} +1 -1
- package/dist/Modal-821371fb.mjs +4 -0
- package/dist/{Modal-857655c7.js → Modal-d8a749bf.js} +1 -1
- package/dist/{SubmittedSuccessfully-b65f667c.mjs → SubmittedSuccessfully-9837ecd4.mjs} +1 -1
- package/dist/{SubmittedSuccessfully-f90a673c.js → SubmittedSuccessfully-e9b1a4e7.js} +1 -1
- package/dist/{Unsupported-9b729bab.js → Unsupported-0a2d5233.js} +1 -1
- package/dist/{Unsupported-4ac71690.mjs → Unsupported-8c1ec5ed.mjs} +1 -1
- package/dist/{WidgetIcon-d978cdba.js → WidgetIcon-50ce61b8.js} +1 -1
- package/dist/WidgetIcon-f8c35c93.mjs +4 -0
- package/dist/axitech-widget.cjs.js +1 -1
- package/dist/axitech-widget.es.js +1 -1
- package/dist/axitech-widget.umd.js +33 -33
- package/dist/{index-f920e152.mjs → index-2d28bd6e.mjs} +7 -7
- package/dist/{index-c4f8318b.js → index-e7b47294.js} +3 -3
- package/package.json +1 -1
- package/src/assets/styles/main.sass +15 -2
- package/src/components/claims-widget/components/FormRenderer.vue +1 -1
- package/src/components/claims-widget/components/StepSelector.vue +2 -2
- package/dist/Modal-27d65b1f.mjs +0 -4
- package/dist/WidgetIcon-53ce26a8.mjs +0 -4
package/package.json
CHANGED
|
@@ -81,16 +81,25 @@
|
|
|
81
81
|
html
|
|
82
82
|
font-family: var(--widget-font-family), system-ui, sans-serif
|
|
83
83
|
#axitech-claims-widget
|
|
84
|
-
font-family: var(--widget-font-family), sans-serif
|
|
84
|
+
font-family: var(--widget-font-family-secondary), sans-serif
|
|
85
85
|
@apply text-fontPrimary-500
|
|
86
86
|
& *
|
|
87
87
|
transition-property: color, background, background-color, fill
|
|
88
88
|
transition-duration: 150ms
|
|
89
89
|
transition-timing-function: ease
|
|
90
|
+
@mixin title-primary($index, $font-size, $line-height)
|
|
91
|
+
.title-primary#{$index}, .title-primary#{$index}-bold
|
|
92
|
+
font-style: normal
|
|
93
|
+
font-family: var(--widget-font-family), sans-serif
|
|
94
|
+
font-size: $font-size
|
|
95
|
+
line-height: $line-height
|
|
96
|
+
letter-spacing: -0.02em
|
|
97
|
+
.title-primary#{$index}-bold
|
|
98
|
+
font-weight: bold
|
|
90
99
|
@mixin title($index, $font-size, $line-height)
|
|
91
100
|
.title#{$index}, .title#{$index}-bold
|
|
92
101
|
font-style: normal
|
|
93
|
-
font-family: var(--widget-font-family), sans-serif
|
|
102
|
+
font-family: var(--widget-font-family-secondary), sans-serif
|
|
94
103
|
font-size: $font-size
|
|
95
104
|
line-height: $line-height
|
|
96
105
|
letter-spacing: -0.02em
|
|
@@ -123,6 +132,10 @@
|
|
|
123
132
|
@include title(2, 1.25rem, 1.75rem)
|
|
124
133
|
@include title(3, 1.125rem, 1.6875rem)
|
|
125
134
|
@include title(4, 1rem, 1.375rem)
|
|
135
|
+
@include title-primary(1, 1.5rem, 2.125rem)
|
|
136
|
+
@include title-primary(2, 1.25rem, 1.75rem)
|
|
137
|
+
@include title-primary(3, 1.125rem, 1.6875rem)
|
|
138
|
+
@include title-primary(4, 1rem, 1.375rem)
|
|
126
139
|
|
|
127
140
|
@include body(1, 1rem, 1.5rem)
|
|
128
141
|
@include body(2, 0.875rem, 1.25rem)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
@click="emit('back')"
|
|
12
12
|
>
|
|
13
13
|
<Icon icon="mdi-light:chevron-left" height="32" />
|
|
14
|
-
<p class="
|
|
14
|
+
<p class="title-primary3-bold group-hover:underline">{{ title }}</p>
|
|
15
15
|
</WButton>
|
|
16
16
|
<JsonForm
|
|
17
17
|
:data="data"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<Transition :name="transitionName" mode="out-in">
|
|
3
3
|
<div>
|
|
4
|
-
<h2 v-if="!isBackButtonVisible" class="
|
|
4
|
+
<h2 v-if="!isBackButtonVisible" class="title-primary3-bold font-medium mb-4">{{ title }}</h2>
|
|
5
5
|
<WButton v-else type="ghost" class="group mb-4 hover:bg-white !-ml-4" @click="emit('back')">
|
|
6
6
|
<Icon icon="mdi-light:chevron-left" height="2rem" />
|
|
7
|
-
<h2 class="
|
|
7
|
+
<h2 class="title-primary3-bold font-medium group-hover:underline">{{ title }}</h2>
|
|
8
8
|
</WButton>
|
|
9
9
|
<p class="body3 text-fontSecondary-500 mb-9">
|
|
10
10
|
{{ description }}
|
package/dist/Modal-27d65b1f.mjs
DELETED