@meistrari/tela-build 1.0.1 → 1.0.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.
@@ -27,7 +27,7 @@ const colorValue = computed(() => {
27
27
  </script>
28
28
 
29
29
  <template>
30
- <svg :width="size" :height="size" viewBox="0 0 12 12" fill="none" :style="{ color: colorValue }" xmlns="http://www.w3.org/2000/svg">
30
+ <svg :width="size" :height="size" fill="none" :style="{ color: colorValue }" xmlns="http://www.w3.org/2000/svg">
31
31
  <template v-if="name === 'circle'">
32
32
  <Motion
33
33
  as="path"
@@ -315,5 +315,11 @@ const colorValue = computed(() => {
315
315
  <path d="M12 6C12 9.31371 9.31371 12 6 12C2.68629 12 0 9.31371 0 6C0 2.68629 2.68629 0 6 0C9.31371 0 12 2.68629 12 6ZM1.2 6C1.2 8.65097 3.34903 10.8 6 10.8C8.65097 10.8 10.8 8.65097 10.8 6C10.8 3.34903 8.65097 1.2 6 1.2C3.34903 1.2 1.2 3.34903 1.2 6Z" fill="currentColor" />
316
316
  <path d="M9.5 6C9.5 5.54037 9.40947 5.08525 9.23358 4.66061C9.05769 4.23597 8.79988 3.85013 8.47487 3.52513C8.14987 3.20012 7.76403 2.94231 7.33939 2.76642C6.91475 2.59053 6.45963 2.5 6 2.5L6 6H9.5Z" fill="currentColor" />
317
317
  </template>
318
+
319
+ <template v-if="name === 'knot'">
320
+ <rect x="4.25" y="6" width="1.5" height="16" fill="currentColor" />
321
+ <path d="M1 19C2.14286 20.1429 3.85714 21.8571 5 23L9 19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
322
+ <circle cx="5" cy="5" r="4.25" fill="white" stroke="currentColor" stroke-width="1.5" />
323
+ </template>
318
324
  </svg>
319
325
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/tela-build",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "app.config.ts",
@@ -1 +1 @@
1
- export type TelaCustomIconName = 'circle' | 'pause' | 'queued' | 'close' | 'circle-notch' | 'circle-minus' | 'stop' | 'circle-dashed' | 'warning' | 'check' | 'check-dashed' | 'semi-circle' | 'arrow-down' | 'reported' | 'circle-warning' | 'slice' | 'half-slice'
1
+ export type TelaCustomIconName = 'circle' | 'pause' | 'queued' | 'close' | 'circle-notch' | 'circle-minus' | 'stop' | 'circle-dashed' | 'warning' | 'check' | 'check-dashed' | 'semi-circle' | 'arrow-down' | 'reported' | 'circle-warning' | 'slice' | 'half-slice' | 'knot'