@gitlab/ui 64.24.0 → 65.0.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/CHANGELOG.md +19 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/package.json +7 -6
- package/src/components/base/carousel/carousel.scss +23 -0
package/dist/tokens/js/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "65.0.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -65,7 +65,6 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@floating-ui/dom": "1.2.9",
|
|
67
67
|
"bootstrap-vue": "2.23.1",
|
|
68
|
-
"dompurify": "^2.4.5",
|
|
69
68
|
"echarts": "^5.3.2",
|
|
70
69
|
"iframe-resizer": "^4.3.2",
|
|
71
70
|
"lodash": "^4.17.20",
|
|
@@ -75,6 +74,7 @@
|
|
|
75
74
|
"peerDependencies": {
|
|
76
75
|
"@gitlab/svgs": "^1.116.0 || ^2.0.0 || ^3.0.0",
|
|
77
76
|
"bootstrap": ">=4.5.3 <=4.6.2",
|
|
77
|
+
"dompurify": "^2.4.7 || ^3.0.5",
|
|
78
78
|
"emoji-regex": ">=10.0.0",
|
|
79
79
|
"pikaday": "^1.8.0",
|
|
80
80
|
"vue": "^2.6.10"
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@gitlab/eslint-plugin": "19.0.0",
|
|
92
92
|
"@gitlab/fonts": "^1.2.0",
|
|
93
93
|
"@gitlab/stylelint-config": "4.1.0",
|
|
94
|
-
"@gitlab/svgs": "3.
|
|
94
|
+
"@gitlab/svgs": "3.58.0",
|
|
95
95
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
96
96
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
97
97
|
"@rollup/plugin-replace": "^2.3.2",
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
120
120
|
"bootstrap": "4.6.2",
|
|
121
121
|
"cypress": "12.17.2",
|
|
122
|
+
"dompurify": "^2.4.7",
|
|
122
123
|
"emoji-regex": "^10.0.0",
|
|
123
124
|
"eslint": "8.45.0",
|
|
124
125
|
"eslint-import-resolver-jest": "3.0.2",
|
|
@@ -127,9 +128,9 @@
|
|
|
127
128
|
"glob": "^7.2.0",
|
|
128
129
|
"identity-obj-proxy": "^3.0.0",
|
|
129
130
|
"inquirer-select-directory": "^1.2.0",
|
|
130
|
-
"jest": "^29.6.
|
|
131
|
-
"jest-circus": "29.6.
|
|
132
|
-
"jest-environment-jsdom": "29.6.
|
|
131
|
+
"jest": "^29.6.2",
|
|
132
|
+
"jest-circus": "29.6.2",
|
|
133
|
+
"jest-environment-jsdom": "29.6.2",
|
|
133
134
|
"markdownlint-cli": "^0.29.0",
|
|
134
135
|
"mockdate": "^2.0.5",
|
|
135
136
|
"module-alias": "^2.2.2",
|
|
@@ -5,3 +5,26 @@
|
|
|
5
5
|
@include gl-focus;
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
|
+
|
|
9
|
+
// Make size of focus border on indicator and prev/next button equal to themselves
|
|
10
|
+
.carousel-indicators li {
|
|
11
|
+
@include gl-border-top-0;
|
|
12
|
+
@include gl-border-bottom-0;
|
|
13
|
+
margin-bottom: 10px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.carousel-control-prev {
|
|
17
|
+
margin-left: 7%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.carousel-control-next {
|
|
21
|
+
margin-right: 7%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.carousel-control-prev,
|
|
25
|
+
.carousel-control-next {
|
|
26
|
+
width: auto;
|
|
27
|
+
top: 50%;
|
|
28
|
+
bottom: auto;
|
|
29
|
+
transform: translateY(-50%);
|
|
30
|
+
}
|