@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 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';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 18:36:36 GMT
3
+ * Generated on Mon, 04 Mar 2024 19:50:55 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 18:36:36 GMT
3
+ * Generated on Mon, 04 Mar 2024 19:50:55 GMT
4
4
  */
5
5
 
6
6
  :root.gl-dark {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 18:36:36 GMT
3
+ * Generated on Mon, 04 Mar 2024 19:50:55 GMT
4
4
  */
5
5
 
6
6
  export const DATA_VIZ_GREEN_50 = "#133a03";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 18:36:36 GMT
3
+ * Generated on Mon, 04 Mar 2024 19:50:55 GMT
4
4
  */
5
5
 
6
6
  export const DATA_VIZ_GREEN_50 = "#ddfab7";
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Fri, 01 Mar 2024 18:36:36 GMT
3
+ // Generated on Mon, 04 Mar 2024 19:50:55 GMT
4
4
 
5
5
  $gl-text-tertiary: #737278 !default;
6
6
  $gl-text-secondary: #89888d !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Fri, 01 Mar 2024 18:36:36 GMT
3
+ // Generated on Mon, 04 Mar 2024 19:50:55 GMT
4
4
 
5
5
  $gl-text-tertiary: #89888d !default;
6
6
  $gl-text-secondary: #737278 !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "77.6.0",
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.23.9",
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.23.9",
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.85.0",
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';