@dataloop-ai/components 0.19.29 → 0.19.31
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
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
:is-scrollable="isOverflowing"
|
|
10
10
|
:is-at-end="isAtEnd"
|
|
11
11
|
:is-at-start="isAtStart"
|
|
12
|
-
class="dl-tabs-root"
|
|
12
|
+
:class="{ 'full-width': fullWidth, 'dl-tabs-root': true }"
|
|
13
13
|
:is-vertical="vertical"
|
|
14
14
|
@left-arrow-click="handleLeft"
|
|
15
15
|
@right-arrow-click="handleRight"
|
package/src/demos/DlDemoPage.vue
CHANGED
|
@@ -30,15 +30,28 @@
|
|
|
30
30
|
/>
|
|
31
31
|
</template>
|
|
32
32
|
<template #body>
|
|
33
|
-
<
|
|
33
|
+
<div
|
|
34
34
|
style="
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
display: flex;
|
|
36
|
+
align-content: center;
|
|
37
|
+
width: 100%;
|
|
38
|
+
height: 100%;
|
|
38
39
|
"
|
|
39
40
|
>
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
<dl-input
|
|
42
|
+
placeholder="placeholder input readonly"
|
|
43
|
+
readonly
|
|
44
|
+
/>
|
|
45
|
+
<p
|
|
46
|
+
style="
|
|
47
|
+
margin: 0;
|
|
48
|
+
color: var(--dl-color-medium);
|
|
49
|
+
font-size: 10px;
|
|
50
|
+
"
|
|
51
|
+
>
|
|
52
|
+
Updated by rotemshaham@dataloop.ai
|
|
53
|
+
</p>
|
|
54
|
+
</div>
|
|
42
55
|
<p
|
|
43
56
|
style="
|
|
44
57
|
margin: 0;
|
|
@@ -214,7 +227,7 @@
|
|
|
214
227
|
|
|
215
228
|
<script lang="ts">
|
|
216
229
|
import { defineComponent, ref } from 'vue-demi'
|
|
217
|
-
import { DlButton, DlDialogBox, DlSwitch } from '../components'
|
|
230
|
+
import { DlButton, DlDialogBox, DlSwitch, DlInput } from '../components'
|
|
218
231
|
import { DlDialogBoxHeader, DlDialogBoxFooter } from '../components'
|
|
219
232
|
|
|
220
233
|
export default defineComponent({
|
|
@@ -224,7 +237,8 @@ export default defineComponent({
|
|
|
224
237
|
DlButton,
|
|
225
238
|
DlDialogBox,
|
|
226
239
|
DlDialogBoxHeader,
|
|
227
|
-
DlDialogBoxFooter
|
|
240
|
+
DlDialogBoxFooter,
|
|
241
|
+
DlInput
|
|
228
242
|
},
|
|
229
243
|
setup() {
|
|
230
244
|
const modalOne = ref<any>(null)
|