lau-ecom-design-system 1.0.22 → 1.0.26
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/lau-ecom-design-system.esm.css +6 -2
- package/dist/lau-ecom-design-system.esm.js +1743 -505
- package/dist/lau-ecom-design-system.min.css +6 -2
- package/dist/lau-ecom-design-system.min.js +1 -1
- package/dist/lau-ecom-design-system.ssr.css +6 -2
- package/dist/lau-ecom-design-system.ssr.js +1779 -470
- package/dist/style.css +222 -134
- package/package.json +1 -1
- package/src/components/LauEcomIcon/LauEcomUpcIconClose.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconNavArrow.vue +1 -1
- package/src/components/LauEcomIcon/LauEcomUpcIconSearch.vue +6 -16
- package/src/components/LauEcomInputSearch/LauEcomInputSearch.vue +445 -322
- package/src/components/LauEcomInputSearch/LauEcomInputSearchDesktop.vue +229 -0
- package/src/components/LauEcomInputSearch/LauEcomInputSearchMobile.vue +187 -0
- package/src/components/LauEcomInputSearchHeader/LauEcomInputSearchHeader.vue +432 -0
- package/src/components/LauEcomInputSearchHeader/LauEcomInputSearchHeaderDesktop.vue +324 -0
- package/src/components/LauEcomInputSearchHeader/LauEcomInputSearchHeaderMobile.vue +279 -0
- package/src/components/LauEcomInput2/LauEcomInput2.vue +0 -207
package/package.json
CHANGED
@@ -0,0 +1,29 @@
|
|
1
|
+
<script lang="ts" setup>
|
2
|
+
withDefaults(
|
3
|
+
defineProps<{
|
4
|
+
width?: string;
|
5
|
+
height?: string;
|
6
|
+
}>(),
|
7
|
+
{
|
8
|
+
width: "24",
|
9
|
+
height: "24",
|
10
|
+
},
|
11
|
+
);
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<template>
|
15
|
+
<svg
|
16
|
+
:width="width"
|
17
|
+
:height="height"
|
18
|
+
viewBox="0 0 24 24"
|
19
|
+
fill="none"
|
20
|
+
stroke="currentColor"
|
21
|
+
stroke-width="2"
|
22
|
+
stroke-linecap="round"
|
23
|
+
stroke-linejoin="round"
|
24
|
+
xmlns="http://www.w3.org/2000/svg"
|
25
|
+
>
|
26
|
+
<line x1="18" y1="6" x2="6" y2="18" />
|
27
|
+
<line x1="6" y1="6" x2="18" y2="18" />
|
28
|
+
</svg>
|
29
|
+
</template>
|
@@ -1,12 +1,10 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
2
|
withDefaults(
|
3
3
|
defineProps<{
|
4
|
-
color?: string;
|
5
4
|
width?: string;
|
6
5
|
height?: string;
|
7
6
|
}>(),
|
8
7
|
{
|
9
|
-
color: "currentColor",
|
10
8
|
width: "24",
|
11
9
|
height: "24",
|
12
10
|
},
|
@@ -19,21 +17,13 @@ withDefaults(
|
|
19
17
|
:height="height"
|
20
18
|
viewBox="0 0 24 24"
|
21
19
|
fill="none"
|
20
|
+
stroke="currentColor"
|
21
|
+
stroke-width="2"
|
22
|
+
stroke-linecap="round"
|
23
|
+
stroke-linejoin="round"
|
22
24
|
xmlns="http://www.w3.org/2000/svg"
|
23
25
|
>
|
24
|
-
<
|
25
|
-
|
26
|
-
:stroke="color"
|
27
|
-
stroke-width="2"
|
28
|
-
stroke-linecap="round"
|
29
|
-
stroke-linejoin="round"
|
30
|
-
/>
|
31
|
-
<path
|
32
|
-
d="M21 21L16.65 16.65"
|
33
|
-
:stroke="color"
|
34
|
-
stroke-width="2"
|
35
|
-
stroke-linecap="round"
|
36
|
-
stroke-linejoin="round"
|
37
|
-
/>
|
26
|
+
<circle cx="11" cy="11" r="8" />
|
27
|
+
<line x1="21" y1="21" x2="16.65" y2="16.65" />
|
38
28
|
</svg>
|
39
29
|
</template>
|