@meistrari/tela-build 1.19.2 → 1.20.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.
- package/components/tela/filters/checkbox-filter.vue +1 -1
- package/components/tela/filters/date-filter.vue +1 -1
- package/components/tela/filters/user-filter.vue +1 -1
- package/components/tela/icon/custom.vue +4 -0
- package/components/tela/preview/preview.vue +1 -1
- package/package.json +1 -1
- package/types/custom-icon.ts +1 -1
|
@@ -102,7 +102,7 @@ onClickOutside(dropdownRef, () => {
|
|
|
102
102
|
|
|
103
103
|
<div
|
|
104
104
|
v-if="isDropdownOpen"
|
|
105
|
-
class="absolute top-full left-0 z-
|
|
105
|
+
class="absolute top-full left-0 z-70 mt-1 w-220px bg-white rounded-12px shadow-[0px_3px_12px_0px_rgba(15,_32,_48,_0.08),_0px_12px_52px_0px_rgba(3,_12,_20,_0.16)] border border-gray-120 flex flex-col"
|
|
106
106
|
>
|
|
107
107
|
<div p-8px border-b border-gray-120>
|
|
108
108
|
<div class="relative">
|
|
@@ -153,7 +153,7 @@ onClickOutside(dropdownRef, () => {
|
|
|
153
153
|
|
|
154
154
|
<div
|
|
155
155
|
v-if="isDropdownOpen"
|
|
156
|
-
class="absolute top-full left-0 z-
|
|
156
|
+
class="absolute top-full left-0 z-70 mt-1 w-256px bg-white rounded-12px shadow-[0px_3px_12px_0px_rgba(15,_32,_48,_0.08),_0px_12px_52px_0px_rgba(3,_12,_20,_0.16)] border border-gray-120 flex flex-col"
|
|
157
157
|
>
|
|
158
158
|
<div flex="~ col" gap-4px py-8px px-8px>
|
|
159
159
|
<div
|
|
@@ -188,7 +188,7 @@ onClickOutside(dropdownRef, () => {
|
|
|
188
188
|
|
|
189
189
|
<div
|
|
190
190
|
v-if="isDropdownOpen"
|
|
191
|
-
class="absolute top-full left-0 z-
|
|
191
|
+
class="absolute top-full left-0 z-70 mt-1 w-256px bg-white rounded-12px shadow-[0px_3px_12px_0px_rgba(15,_32,_48,_0.08),_0px_12px_52px_0px_rgba(3,_12,_20,_0.16)] border border-gray-120 flex flex-col"
|
|
192
192
|
>
|
|
193
193
|
<div p-8px border-b border-gray-120>
|
|
194
194
|
<div class="relative">
|
|
@@ -350,5 +350,9 @@ const colorValue = computed(() => {
|
|
|
350
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
351
|
<circle cx="6.5" cy="10" r="2" fill="white" stroke="currentColor" />
|
|
352
352
|
</template>
|
|
353
|
+
|
|
354
|
+
<template v-if="name === 'timeline-start'">
|
|
355
|
+
<circle cx="4.5" cy="4.5" r="4" fill="white" stroke="currentColor" />
|
|
356
|
+
</template>
|
|
353
357
|
</svg>
|
|
354
358
|
</template>
|
|
@@ -86,7 +86,7 @@ const fileReaderKey = computed(() => {
|
|
|
86
86
|
:options="fileOptions"
|
|
87
87
|
:placeholder="labels.selectVariable"
|
|
88
88
|
:labels="selectVariableLabels"
|
|
89
|
-
class="w-
|
|
89
|
+
class="flex-1 min-w-0"
|
|
90
90
|
@update:model-value="emit('update:modelValue', $event)"
|
|
91
91
|
/>
|
|
92
92
|
<slot name="header-actions" />
|
package/package.json
CHANGED
package/types/custom-icon.ts
CHANGED
|
@@ -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' | 'timeline-dot'
|
|
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' | 'timeline-start'
|