@gitlab/ui 77.6.0 → 77.7.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 +7 -0
- package/dist/index.js +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 +4 -4
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [77.7.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v77.6.0...v77.7.0) (2024-03-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **GlLink:** adding deprecated export for upcoming breaking changes ([4a633ce](https://gitlab.com/gitlab-org/gitlab-ui/commit/4a633ce456e7a6dd4675365fddf0df83216ffc30))
|
|
7
|
+
|
|
1
8
|
# [77.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v77.5.0...v77.6.0) (2024-03-01)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ export { default as GlFormCheckboxTree } from './components/base/form/form_check
|
|
|
12
12
|
export { default as GlMarkdown } from './components/base/markdown/markdown';
|
|
13
13
|
export { default as GlNavbar } from './components/base/navbar/navbar';
|
|
14
14
|
export { default as GlIntersectionObserver } from './components/utilities/intersection_observer/intersection_observer';
|
|
15
|
-
export { default as GlLink } from './components/base/link/link';
|
|
15
|
+
export { default as GlDeprecatedLink, default as GlLink } from './components/base/link/link';
|
|
16
16
|
export { default as GlIcon } from './components/base/icon/icon';
|
|
17
17
|
export { default as GlLoadingIcon } from './components/base/loading_icon/loading_icon';
|
|
18
18
|
export { default as GlModal } from './components/base/modal/modal';
|
package/dist/tokens/js/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "77.
|
|
3
|
+
"version": "77.7.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -93,16 +93,16 @@
|
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
95
|
"@arkweid/lefthook": "0.7.7",
|
|
96
|
-
"@babel/core": "^7.
|
|
96
|
+
"@babel/core": "^7.24.0",
|
|
97
97
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
98
98
|
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
99
|
-
"@babel/preset-env": "^7.
|
|
99
|
+
"@babel/preset-env": "^7.24.0",
|
|
100
100
|
"@babel/preset-react": "^7.23.3",
|
|
101
101
|
"@cypress/grep": "^4.0.1",
|
|
102
102
|
"@gitlab/eslint-plugin": "19.4.0",
|
|
103
103
|
"@gitlab/fonts": "^1.3.0",
|
|
104
104
|
"@gitlab/stylelint-config": "6.1.0",
|
|
105
|
-
"@gitlab/svgs": "3.
|
|
105
|
+
"@gitlab/svgs": "3.88.0",
|
|
106
106
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
107
107
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
108
108
|
"@rollup/plugin-replace": "^2.3.2",
|
package/src/index.js
CHANGED
|
@@ -19,7 +19,7 @@ export { default as GlFormCheckboxTree } from './components/base/form/form_check
|
|
|
19
19
|
export { default as GlMarkdown } from './components/base/markdown/markdown.vue';
|
|
20
20
|
export { default as GlNavbar } from './components/base/navbar/navbar.vue';
|
|
21
21
|
export { default as GlIntersectionObserver } from './components/utilities/intersection_observer/intersection_observer.vue';
|
|
22
|
-
export { default as GlLink } from './components/base/link/link.vue';
|
|
22
|
+
export { default as GlLink, default as GlDeprecatedLink } from './components/base/link/link.vue';
|
|
23
23
|
export { default as GlIcon } from './components/base/icon/icon.vue';
|
|
24
24
|
export { default as GlLoadingIcon } from './components/base/loading_icon/loading_icon.vue';
|
|
25
25
|
export { default as GlModal } from './components/base/modal/modal.vue';
|