adata-ui 0.3.36 → 0.3.37
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/adata-ui.common.js +43 -34
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +43 -34
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/App.vue +0 -3
- package/src/components/PasswordField/PasswordField.vue +15 -6
- package/src/components/ServiceSlider/AServiceSlider.vue +1 -1
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -32,12 +32,21 @@
|
|
|
32
32
|
</div>
|
|
33
33
|
</div>
|
|
34
34
|
<div class="adt-text-block__error" v-if="!!errorText">
|
|
35
|
-
<
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
35
|
+
<div class="error-icon">
|
|
36
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
37
|
+
<g clip-path="url(#clip0_508_13640)">
|
|
38
|
+
<path d="M8.00016 14.6666C11.6821 14.6666 14.6668 11.6818 14.6668 7.99992C14.6668 4.31802 11.6821 1.33325 8.00016 1.33325C4.31826 1.33325 1.3335 4.31802 1.3335 7.99992C1.3335 11.6818 4.31826 14.6666 8.00016 14.6666Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
39
|
+
<path d="M8 10.6667H8.00667" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
40
|
+
<path d="M8 5.33325V7.99992" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
41
|
+
</g>
|
|
42
|
+
<defs>
|
|
43
|
+
<clipPath id="clip0_508_13640">
|
|
44
|
+
<rect width="16" height="16" fill="white"/>
|
|
45
|
+
</clipPath>
|
|
46
|
+
</defs>
|
|
47
|
+
</svg>
|
|
48
|
+
</div>
|
|
49
|
+
<p>{{ errorText }}</p>
|
|
41
50
|
</div>
|
|
42
51
|
</div>
|
|
43
52
|
</template>
|