@meistrari/tela-build 1.17.0 → 1.18.0

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.
@@ -345,5 +345,10 @@ const colorValue = computed(() => {
345
345
  <path d="M1 19C2.14286 20.1429 3.85714 21.8571 5 23L9 19" stroke="#DFE3E7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
346
346
  <circle cx="5" cy="5" r="4.25" fill="white" stroke="#DFE3E7" stroke-width="1.5" />
347
347
  </template>
348
+
349
+ <template v-if="name === 'timeline-dot'">
350
+ <path d="M0.499892 0L0.499897 5.50001C0.499899 7.70914 2.29076 9.5 4.4999 9.5L7 9.5" stroke="currentColor" />
351
+ <circle cx="6.5" cy="10" r="2" fill="white" stroke="currentColor" />
352
+ </template>
348
353
  </svg>
349
354
  </template>
@@ -30,6 +30,10 @@ export default defineNuxtModule<TelaBuildDocsOptions>({
30
30
  return
31
31
  }
32
32
 
33
+ if (process.env.CI) {
34
+ return
35
+ }
36
+
33
37
  let hasGenerated = false
34
38
  const logger = console
35
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/tela-build",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
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' | 'knot'
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' | 'timeline-dot'