lau-ecom-design-system 1.0.23 → 1.0.27

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lau-ecom-design-system",
3
3
  "private": false,
4
- "version": "1.0.23",
4
+ "version": "1.0.27",
5
5
  "sourceType": "module",
6
6
  "sideEffects": false,
7
7
  "main": "dist/lau-ecom-design-system.ssr.js",
@@ -30,7 +30,6 @@
30
30
  "watch": "rollup -c -w"
31
31
  },
32
32
  "dependencies": {
33
- "lau-ecom-design-system": "file:lau-ecom-design-system-1.0.22.tgz",
34
33
  "vue": "^3.5.12"
35
34
  },
36
35
  "devDependencies": {
@@ -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>
@@ -16,7 +16,7 @@ withDefaults(
16
16
  :width="width"
17
17
  :height="height"
18
18
  viewBox="0 0 16 16"
19
- fill="none"
19
+ fill="currentColor"
20
20
  xmlns="http://www.w3.org/2000/svg"
21
21
  >
22
22
  <path
@@ -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
- <path
25
- d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z"
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>