@milaboratories/uikit 2.2.24 → 2.2.26
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/CHANGELOG.md +12 -0
- package/dist/pl-uikit.js +2228 -2156
- package/dist/pl-uikit.umd.cjs +5 -5
- package/dist/src/components/PlEditableTitle/PlEditableTitle.vue.d.ts +1 -1
- package/dist/src/components/PlFileDialog/Shortcuts.vue.d.ts +2 -0
- package/dist/src/components/PlTabs/Tab.vue.d.ts +11 -6
- package/dist/src/components/PlTooltip/PlTooltip.vue.d.ts +12 -3
- package/dist/src/components/PlTooltip/useTooltipPosition.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/assets/base.scss +1 -1
- package/src/assets/dropdown-list-item.scss +1 -0
- package/src/components/PlFileDialog/Remote.vue +9 -4
- package/src/components/PlFileDialog/Shortcuts.vue +102 -0
- package/src/components/PlTooltip/PlTooltip.vue +12 -3
- package/src/components/PlTooltip/pl-tooltip.scss +16 -2
- package/src/components/PlTooltip/useTooltipPosition.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/uikit",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/pl-uikit.umd.js",
|
|
6
6
|
"module": "dist/pl-uikit.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"vue-tsc": "^2.1.10",
|
|
33
33
|
"yarpm": "^1.2.0",
|
|
34
34
|
"svgo": "^3.3.2",
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
35
|
+
"@milaboratories/helpers": "^1.6.8",
|
|
36
|
+
"@platforma-sdk/model": "^1.14.1"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"dev": "vite",
|
package/src/assets/base.scss
CHANGED
|
@@ -6,6 +6,8 @@ import type { StorageHandle } from '@platforma-sdk/model';
|
|
|
6
6
|
import { computed, onMounted, reactive, toRef, watch } from 'vue';
|
|
7
7
|
import { PlDropdown } from '../PlDropdown';
|
|
8
8
|
import { PlIcon16 } from '../PlIcon16';
|
|
9
|
+
import Shortcuts from './Shortcuts.vue';
|
|
10
|
+
import { PlMaskIcon16 } from '../PlMaskIcon16';
|
|
9
11
|
import { PlSearchField } from '../PlSearchField';
|
|
10
12
|
import style from './pl-file-dialog.module.scss';
|
|
11
13
|
import { defaultData, useVisibleItems, vTextOverflown } from './remote';
|
|
@@ -135,7 +137,7 @@ const selectFile = (ev: MouseEvent, file: FileDialogItem) => {
|
|
|
135
137
|
data.items.forEach((f) => (f.selected = false));
|
|
136
138
|
}
|
|
137
139
|
|
|
138
|
-
file.selected =
|
|
140
|
+
file.selected = !file.selected;
|
|
139
141
|
|
|
140
142
|
if (!props.multi) {
|
|
141
143
|
return;
|
|
@@ -283,7 +285,10 @@ onMounted(loadAvailableStorages);
|
|
|
283
285
|
<PlIcon16 v-if="s.index !== breadcrumbs.length - 1" name="chevron-right" />
|
|
284
286
|
</template>
|
|
285
287
|
</div>
|
|
286
|
-
<div :class="style.selected">
|
|
288
|
+
<div :class="style.selected">
|
|
289
|
+
<span>Selected: {{ selectedFiles.length }}</span>
|
|
290
|
+
<Shortcuts />
|
|
291
|
+
</div>
|
|
287
292
|
</div>
|
|
288
293
|
<div v-if="data.currentLoadingPath !== undefined" class="ls-loader">
|
|
289
294
|
<i class="mask-24 mask-loading loader-icon" />
|
|
@@ -299,7 +304,7 @@ onMounted(loadAvailableStorages);
|
|
|
299
304
|
<div v-else :class="style['ls-body']">
|
|
300
305
|
<template v-for="file in visibleItems" :key="file.id">
|
|
301
306
|
<div v-if="file.isDir" :class="style.isDir" @click="setDirPath(file.path)">
|
|
302
|
-
<
|
|
307
|
+
<PlIcon16 name="chevron-right" />
|
|
303
308
|
<span v-text-overflown :title="file.name">{{ file.name }}</span>
|
|
304
309
|
</div>
|
|
305
310
|
<div
|
|
@@ -307,7 +312,7 @@ onMounted(loadAvailableStorages);
|
|
|
307
312
|
:class="{ [style.canBeSelected]: file.canBeSelected, [style.selected]: file.selected }"
|
|
308
313
|
@click.stop="(ev) => selectFile(ev, file)"
|
|
309
314
|
>
|
|
310
|
-
<
|
|
315
|
+
<PlMaskIcon16 name="box" :class="style.isFile" />
|
|
311
316
|
<span v-text-overflown :title="file.name">{{ file.name }}</span>
|
|
312
317
|
</div>
|
|
313
318
|
</template>
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { PlTooltip } from '../PlTooltip';
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<PlTooltip class="info" position="southwest" max-width="420px">
|
|
7
|
+
<template #tooltip>
|
|
8
|
+
<span :class="$style.title">Shortcuts</span>
|
|
9
|
+
|
|
10
|
+
<div :class="[$style.row, $style.head]">
|
|
11
|
+
<div></div>
|
|
12
|
+
<div>MacOS</div>
|
|
13
|
+
<div>Windows/Linux</div>
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<div :class="[$style.row, $style.body]">
|
|
17
|
+
<div>Single File</div>
|
|
18
|
+
<div>Click the file</div>
|
|
19
|
+
<div>Click the file</div>
|
|
20
|
+
|
|
21
|
+
<div>Adjacent multiple files</div>
|
|
22
|
+
<div>Hold Shift, click first and last files</div>
|
|
23
|
+
<div>Hold Shift, click first and last files</div>
|
|
24
|
+
|
|
25
|
+
<div>Non-adjacent multiple files</div>
|
|
26
|
+
<div>Hold Command (⌘), click each file</div>
|
|
27
|
+
<div>Hold Ctrl, click each file</div>
|
|
28
|
+
|
|
29
|
+
<div>All files</div>
|
|
30
|
+
<div>Press Command (⌘) + A</div>
|
|
31
|
+
<div>Press Ctrl + A</div>
|
|
32
|
+
</div>
|
|
33
|
+
</template>
|
|
34
|
+
</PlTooltip>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<style lang="css" module>
|
|
38
|
+
.title {
|
|
39
|
+
display: inline-block;
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
font-weight: 600;
|
|
42
|
+
line-height: 20px;
|
|
43
|
+
margin-bottom: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.row {
|
|
47
|
+
display: grid;
|
|
48
|
+
grid-template-columns: repeat(3, 1fr);
|
|
49
|
+
width: 100%;
|
|
50
|
+
color: #fff;
|
|
51
|
+
column-gap: 1px;
|
|
52
|
+
|
|
53
|
+
font-size: 14px;
|
|
54
|
+
font-weight: 500;
|
|
55
|
+
line-height: 20px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.row > div:nth-child(3n + 1) {
|
|
59
|
+
padding-left: 4px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.row > div:nth-child(3n) {
|
|
63
|
+
padding-right: 4px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.head {
|
|
67
|
+
background-color: #110529;
|
|
68
|
+
position: relative;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.head:before {
|
|
72
|
+
position: absolute;
|
|
73
|
+
content: '';
|
|
74
|
+
background-color: #231842;
|
|
75
|
+
width: 12px;
|
|
76
|
+
left: -12px;
|
|
77
|
+
height: 100%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.head:after {
|
|
81
|
+
position: absolute;
|
|
82
|
+
content: '';
|
|
83
|
+
background-color: #231842;
|
|
84
|
+
width: 12px;
|
|
85
|
+
right: -12px;
|
|
86
|
+
height: 100%;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.head > div {
|
|
90
|
+
padding: 6px 12px;
|
|
91
|
+
background-color: #231842;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.body {
|
|
95
|
+
background-color: #231842;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.body > div {
|
|
99
|
+
padding: 6px 12px;
|
|
100
|
+
background: #110529;
|
|
101
|
+
}
|
|
102
|
+
</style>
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
|
|
8
8
|
<script lang="ts" setup>
|
|
9
9
|
import './pl-tooltip.scss';
|
|
10
|
-
import { onUnmounted, reactive, ref, toRef, watch } from 'vue';
|
|
10
|
+
import { computed, onUnmounted, reactive, ref, toRef, watch } from 'vue';
|
|
11
11
|
import { useTooltipPosition } from './useTooltipPosition';
|
|
12
12
|
import * as utils from '@/helpers/utils';
|
|
13
13
|
import { useClickOutside } from '@/composition/useClickOutside';
|
|
@@ -31,7 +31,7 @@ const props = withDefaults(
|
|
|
31
31
|
/**
|
|
32
32
|
* Tooltip position
|
|
33
33
|
*/
|
|
34
|
-
position?: 'top-left' | 'left' | 'right' | 'top';
|
|
34
|
+
position?: 'top-left' | 'left' | 'right' | 'top' | 'southwest';
|
|
35
35
|
/**
|
|
36
36
|
* external prop to hide tooltips
|
|
37
37
|
*/
|
|
@@ -44,6 +44,10 @@ const props = withDefaults(
|
|
|
44
44
|
* base html element for tooltip
|
|
45
45
|
*/
|
|
46
46
|
element?: 'div' | 'span' | 'a' | 'p' | 'h1' | 'h2' | 'h3';
|
|
47
|
+
/**
|
|
48
|
+
* Max width (css value) of the tooltip container (default is 300px)
|
|
49
|
+
*/
|
|
50
|
+
maxWidth?: string;
|
|
47
51
|
}>(),
|
|
48
52
|
{
|
|
49
53
|
openDelay: 100,
|
|
@@ -51,6 +55,7 @@ const props = withDefaults(
|
|
|
51
55
|
gap: 8,
|
|
52
56
|
position: 'top',
|
|
53
57
|
element: 'div',
|
|
58
|
+
maxWidth: '300px',
|
|
54
59
|
},
|
|
55
60
|
);
|
|
56
61
|
|
|
@@ -135,6 +140,10 @@ const style = useTooltipPosition(rootRef, toRef(props));
|
|
|
135
140
|
|
|
136
141
|
useClickOutside([rootRef, tooltip], () => closeTooltip());
|
|
137
142
|
|
|
143
|
+
const tooltipStyle = computed(() => ({
|
|
144
|
+
'--pl-tooltip-max-width': props.maxWidth,
|
|
145
|
+
}));
|
|
146
|
+
|
|
138
147
|
onUnmounted(() => {
|
|
139
148
|
tMap.delete(tKey);
|
|
140
149
|
});
|
|
@@ -146,7 +155,7 @@ onUnmounted(() => {
|
|
|
146
155
|
<Teleport v-if="$slots['tooltip'] && data.open" to="body">
|
|
147
156
|
<Transition name="tooltip-transition">
|
|
148
157
|
<div v-if="data.tooltipOpen" class="pl-tooltip__container" :style="style">
|
|
149
|
-
<div ref="tooltip" class="pl-tooltip" :class="position" @mouseover="onOver" @mouseleave="onLeave">
|
|
158
|
+
<div ref="tooltip" class="pl-tooltip" :style="tooltipStyle" :class="position" @mouseover="onOver" @mouseleave="onLeave">
|
|
150
159
|
<!-- should be one line -->
|
|
151
160
|
<div><slot name="tooltip" /></div>
|
|
152
161
|
<Beak />
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
.pl-tooltip {
|
|
2
|
+
--pl-tooltip-max-width: 300px;
|
|
3
|
+
|
|
2
4
|
z-index: var(--z-tooltip);
|
|
3
5
|
position: absolute;
|
|
4
6
|
display: inline-block;
|
|
5
|
-
padding:
|
|
7
|
+
padding: 8px 12px 9px 12px;
|
|
6
8
|
background: var(--tooltip-bg);
|
|
7
9
|
border-radius: 6px;
|
|
8
10
|
width: max-content;
|
|
9
11
|
word-break: normal;
|
|
10
12
|
transform-origin: 0 50%;
|
|
11
|
-
max-width:
|
|
13
|
+
max-width: var(--pl-tooltip-max-width);
|
|
12
14
|
color: #fff;
|
|
13
15
|
|
|
14
16
|
&__container {
|
|
@@ -82,6 +84,18 @@
|
|
|
82
84
|
left: 50%;
|
|
83
85
|
}
|
|
84
86
|
}
|
|
87
|
+
|
|
88
|
+
&.southwest {
|
|
89
|
+
transform: translateY(100%);
|
|
90
|
+
bottom: 0;
|
|
91
|
+
right: -6px;
|
|
92
|
+
.beak {
|
|
93
|
+
position: absolute;
|
|
94
|
+
top: -2px;
|
|
95
|
+
transform: translateY(-50%) rotate(90deg);
|
|
96
|
+
right: 12px;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
85
99
|
}
|
|
86
100
|
|
|
87
101
|
.tooltip-transition {
|
|
@@ -3,7 +3,7 @@ import { useElementPosition } from '@/composition/usePosition';
|
|
|
3
3
|
import type { ElementPosition } from '@/types';
|
|
4
4
|
|
|
5
5
|
type Options = {
|
|
6
|
-
position: 'top-left' | 'right' | 'left' | 'top';
|
|
6
|
+
position: 'top-left' | 'right' | 'left' | 'top' | 'southwest';
|
|
7
7
|
gap: number;
|
|
8
8
|
};
|
|
9
9
|
|
|
@@ -33,6 +33,7 @@ export function useTooltipPosition(el: Ref<HTMLElement | undefined>, optionsRef:
|
|
|
33
33
|
|
|
34
34
|
const offsetMiddleY = pos.offsetY + Math.floor(pos.height / 2);
|
|
35
35
|
const offsetMiddleX = pos.offsetX + Math.floor(pos.width / 2);
|
|
36
|
+
|
|
36
37
|
if (position === 'top-left') {
|
|
37
38
|
return `left: ${pos.offsetX}px; top: ${pos.offsetY - gap}px;`;
|
|
38
39
|
}
|
|
@@ -49,6 +50,10 @@ export function useTooltipPosition(el: Ref<HTMLElement | undefined>, optionsRef:
|
|
|
49
50
|
return `right: ${pos.scrollWidth - pos.x + gap}px; top: ${offsetMiddleY}px;`;
|
|
50
51
|
}
|
|
51
52
|
|
|
53
|
+
if (position === 'southwest') {
|
|
54
|
+
return `left: ${pos.offsetX + pos.width}px; top: ${pos.offsetY + pos.height + gap}px;`;
|
|
55
|
+
}
|
|
56
|
+
|
|
52
57
|
return '';
|
|
53
58
|
});
|
|
54
59
|
}
|