@teambit/component.ui.version-dropdown 0.0.0-6b820206fd93989fc9e50a167951811df18724f1 → 0.0.0-71ab0df62e3cdfcb8db42a12cb7f18e066cf1d87
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/dist/{preview-1754513070283.js → preview-1754923871483.js} +2 -2
- package/dist/version-dropdown-placeholder.module.scss +1 -4
- package/dist/version-dropdown.module.scss +0 -14
- package/package.json +5 -5
- package/version-dropdown-placeholder.module.scss +1 -4
- package/version-dropdown.module.scss +0 -14
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_ui_version-dropdown@
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_ui_version-dropdown@
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_ui_version-dropdown@71ab0df62e3cdfcb8db42a12cb7f18e066cf1d87/dist/version-dropdown.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_ui_version-dropdown@71ab0df62e3cdfcb8db42a12cb7f18e066cf1d87/dist/version-dropdown.docs.js';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.simple,
|
2
2
|
.detailed {
|
3
3
|
cursor: pointer;
|
4
|
-
border: 1px solid var(--border-
|
4
|
+
border: 1px solid var(--bit-border-color, #babec9);
|
5
5
|
border-radius: 6px;
|
6
6
|
transition: background-color 300ms ease-in-out;
|
7
7
|
height: 30px;
|
@@ -22,13 +22,11 @@
|
|
22
22
|
cursor: default;
|
23
23
|
background-color: var(--border-medium-color, #ededed);
|
24
24
|
color: var(--on-background-medium-color, #707279);
|
25
|
-
|
26
25
|
> span {
|
27
26
|
display: none;
|
28
27
|
}
|
29
28
|
}
|
30
29
|
}
|
31
|
-
|
32
30
|
.versionName {
|
33
31
|
flex-grow: 1;
|
34
32
|
min-width: fit-content;
|
@@ -46,7 +44,6 @@
|
|
46
44
|
|
47
45
|
.loader {
|
48
46
|
color: var(--bit-bg-dent, #f6f6f6);
|
49
|
-
|
50
47
|
> span {
|
51
48
|
padding: 4px;
|
52
49
|
}
|
@@ -8,7 +8,6 @@
|
|
8
8
|
display: flex;
|
9
9
|
align-items: center;
|
10
10
|
}
|
11
|
-
|
12
11
|
.menu {
|
13
12
|
padding: 0;
|
14
13
|
right: 0;
|
@@ -16,7 +15,6 @@
|
|
16
15
|
font-size: var(--bit-p-xs);
|
17
16
|
border-radius: 6px;
|
18
17
|
z-index: $modal-z-index;
|
19
|
-
border: 1px solid var(--border-medium-color, #ededed);
|
20
18
|
}
|
21
19
|
}
|
22
20
|
|
@@ -51,19 +49,15 @@
|
|
51
49
|
&.localVersion {
|
52
50
|
border-bottom: 1px solid var(--bit-border-color-lightest, #ededed);
|
53
51
|
}
|
54
|
-
|
55
52
|
.versionTimestamp {
|
56
53
|
margin-right: 2px;
|
57
54
|
}
|
58
|
-
|
59
55
|
.versionUserAvatar {
|
60
56
|
padding: 0px 8px;
|
61
57
|
}
|
62
|
-
|
63
58
|
.laneIcon {
|
64
59
|
padding: 0px 4px;
|
65
60
|
}
|
66
|
-
|
67
61
|
.version {
|
68
62
|
width: 60%;
|
69
63
|
display: flex;
|
@@ -71,7 +65,6 @@
|
|
71
65
|
align-content: space-between;
|
72
66
|
align-items: center;
|
73
67
|
}
|
74
|
-
|
75
68
|
.versionName {
|
76
69
|
padding: 0px 8px;
|
77
70
|
min-width: fit-content;
|
@@ -80,26 +73,21 @@
|
|
80
73
|
|
81
74
|
.withVersions {
|
82
75
|
cursor: pointer;
|
83
|
-
|
84
76
|
> div {
|
85
77
|
margin-right: 5px;
|
86
78
|
}
|
87
|
-
|
88
79
|
> span {
|
89
80
|
display: unset;
|
90
81
|
}
|
91
|
-
|
92
82
|
&:hover {
|
93
83
|
background-color: var(--bit-bg-heavy);
|
94
84
|
}
|
95
|
-
|
96
85
|
[data-open='true'] & {
|
97
86
|
transition:
|
98
87
|
color 300ms,
|
99
88
|
background-color 300ms ease-in-out;
|
100
89
|
background-color: var(--bit-bg-color, #ffffff);
|
101
90
|
color: var(--bit-accent-color, #6c5ce7);
|
102
|
-
|
103
91
|
&:hover {
|
104
92
|
background-color: var(--bit-bg-color, #ffffff);
|
105
93
|
}
|
@@ -127,7 +115,6 @@
|
|
127
115
|
|
128
116
|
.loader {
|
129
117
|
color: var(--bit-bg-dent, #f6f6f6);
|
130
|
-
|
131
118
|
> div {
|
132
119
|
padding: 8px 0px;
|
133
120
|
}
|
@@ -135,7 +122,6 @@
|
|
135
122
|
|
136
123
|
.versionMenuContainer {
|
137
124
|
display: initial;
|
138
|
-
|
139
125
|
&.hide {
|
140
126
|
display: none;
|
141
127
|
}
|
package/package.json
CHANGED
@@ -1,21 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/component.ui.version-dropdown",
|
3
|
-
"version": "0.0.0-
|
3
|
+
"version": "0.0.0-71ab0df62e3cdfcb8db42a12cb7f18e066cf1d87",
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/ui/version-dropdown",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "ui/version-dropdown",
|
9
|
-
"version": "
|
9
|
+
"version": "71ab0df62e3cdfcb8db42a12cb7f18e066cf1d87"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"classnames": "2.2.6",
|
13
13
|
"semver": "7.7.1",
|
14
14
|
"core-js": "^3.0.0",
|
15
15
|
"@teambit/base-ui.loaders.skeleton": "1.0.1",
|
16
|
-
"@teambit/design.ui.avatar": "1.1.12",
|
17
16
|
"@teambit/design.ui.styles.ellipsis": "0.0.357",
|
18
|
-
"@teambit/design.ui.time-ago": "0.0.379",
|
19
17
|
"@teambit/evangelist.elements.icon": "1.0.2",
|
20
18
|
"@teambit/ui-foundation.ui.constants.z-indexes": "0.0.504",
|
21
19
|
"@teambit/design.ui.surfaces.menu.link-item": "1.0.13",
|
@@ -23,7 +21,9 @@
|
|
23
21
|
"@teambit/lanes.ui.models.lanes-model": "0.0.229",
|
24
22
|
"@teambit/legacy-component-log": "0.0.408",
|
25
23
|
"@teambit/ui-foundation.ui.use-box.tab": "0.0.122",
|
26
|
-
"@teambit/component.ui.version-label": "0.0.509"
|
24
|
+
"@teambit/component.ui.version-label": "0.0.509",
|
25
|
+
"@teambit/design.ui.avatar": "0.0.0-f0cb0521eecad22059de2acfdef376c97faa5d81",
|
26
|
+
"@teambit/design.ui.time-ago": "0.0.0-f9bb4894c794dd9ae98a2f594675275c8f348670"
|
27
27
|
},
|
28
28
|
"devDependencies": {
|
29
29
|
"@types/classnames": "2.2.11",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.simple,
|
2
2
|
.detailed {
|
3
3
|
cursor: pointer;
|
4
|
-
border: 1px solid var(--border-
|
4
|
+
border: 1px solid var(--bit-border-color, #babec9);
|
5
5
|
border-radius: 6px;
|
6
6
|
transition: background-color 300ms ease-in-out;
|
7
7
|
height: 30px;
|
@@ -22,13 +22,11 @@
|
|
22
22
|
cursor: default;
|
23
23
|
background-color: var(--border-medium-color, #ededed);
|
24
24
|
color: var(--on-background-medium-color, #707279);
|
25
|
-
|
26
25
|
> span {
|
27
26
|
display: none;
|
28
27
|
}
|
29
28
|
}
|
30
29
|
}
|
31
|
-
|
32
30
|
.versionName {
|
33
31
|
flex-grow: 1;
|
34
32
|
min-width: fit-content;
|
@@ -46,7 +44,6 @@
|
|
46
44
|
|
47
45
|
.loader {
|
48
46
|
color: var(--bit-bg-dent, #f6f6f6);
|
49
|
-
|
50
47
|
> span {
|
51
48
|
padding: 4px;
|
52
49
|
}
|
@@ -8,7 +8,6 @@
|
|
8
8
|
display: flex;
|
9
9
|
align-items: center;
|
10
10
|
}
|
11
|
-
|
12
11
|
.menu {
|
13
12
|
padding: 0;
|
14
13
|
right: 0;
|
@@ -16,7 +15,6 @@
|
|
16
15
|
font-size: var(--bit-p-xs);
|
17
16
|
border-radius: 6px;
|
18
17
|
z-index: $modal-z-index;
|
19
|
-
border: 1px solid var(--border-medium-color, #ededed);
|
20
18
|
}
|
21
19
|
}
|
22
20
|
|
@@ -51,19 +49,15 @@
|
|
51
49
|
&.localVersion {
|
52
50
|
border-bottom: 1px solid var(--bit-border-color-lightest, #ededed);
|
53
51
|
}
|
54
|
-
|
55
52
|
.versionTimestamp {
|
56
53
|
margin-right: 2px;
|
57
54
|
}
|
58
|
-
|
59
55
|
.versionUserAvatar {
|
60
56
|
padding: 0px 8px;
|
61
57
|
}
|
62
|
-
|
63
58
|
.laneIcon {
|
64
59
|
padding: 0px 4px;
|
65
60
|
}
|
66
|
-
|
67
61
|
.version {
|
68
62
|
width: 60%;
|
69
63
|
display: flex;
|
@@ -71,7 +65,6 @@
|
|
71
65
|
align-content: space-between;
|
72
66
|
align-items: center;
|
73
67
|
}
|
74
|
-
|
75
68
|
.versionName {
|
76
69
|
padding: 0px 8px;
|
77
70
|
min-width: fit-content;
|
@@ -80,26 +73,21 @@
|
|
80
73
|
|
81
74
|
.withVersions {
|
82
75
|
cursor: pointer;
|
83
|
-
|
84
76
|
> div {
|
85
77
|
margin-right: 5px;
|
86
78
|
}
|
87
|
-
|
88
79
|
> span {
|
89
80
|
display: unset;
|
90
81
|
}
|
91
|
-
|
92
82
|
&:hover {
|
93
83
|
background-color: var(--bit-bg-heavy);
|
94
84
|
}
|
95
|
-
|
96
85
|
[data-open='true'] & {
|
97
86
|
transition:
|
98
87
|
color 300ms,
|
99
88
|
background-color 300ms ease-in-out;
|
100
89
|
background-color: var(--bit-bg-color, #ffffff);
|
101
90
|
color: var(--bit-accent-color, #6c5ce7);
|
102
|
-
|
103
91
|
&:hover {
|
104
92
|
background-color: var(--bit-bg-color, #ffffff);
|
105
93
|
}
|
@@ -127,7 +115,6 @@
|
|
127
115
|
|
128
116
|
.loader {
|
129
117
|
color: var(--bit-bg-dent, #f6f6f6);
|
130
|
-
|
131
118
|
> div {
|
132
119
|
padding: 8px 0px;
|
133
120
|
}
|
@@ -135,7 +122,6 @@
|
|
135
122
|
|
136
123
|
.versionMenuContainer {
|
137
124
|
display: initial;
|
138
|
-
|
139
125
|
&.hide {
|
140
126
|
display: none;
|
141
127
|
}
|