@gitlab/ui 71.5.0 → 71.6.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
+ # [71.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v71.5.0...v71.6.0) (2023-12-05)
2
+
3
+
4
+ ### Features
5
+
6
+ * **GlDuoChat:** switched /test to /tests command ([5045d5d](https://gitlab.com/gitlab-org/gitlab-ui/commit/5045d5daaaeaa10094ad75e4cf6b11da3a73bcd4))
7
+
1
8
  # [71.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v71.4.0...v71.5.0) (2023-12-05)
2
9
 
3
10
 
@@ -34,7 +34,7 @@ const slashCommands = [{
34
34
  shouldSubmit: true,
35
35
  description: 'Reset conversation, ignore the previous messages.'
36
36
  }, {
37
- name: '/test',
37
+ name: '/tests',
38
38
  shouldSubmit: false,
39
39
  description: 'Write tests for the code snippet.'
40
40
  }, {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 05 Dec 2023 00:03:14 GMT
3
+ * Generated on Tue, 05 Dec 2023 15:34:24 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 05 Dec 2023 00:03:14 GMT
3
+ * Generated on Tue, 05 Dec 2023 15:34:24 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 Tue, 05 Dec 2023 00:03:14 GMT
3
+ * Generated on Tue, 05 Dec 2023 15:34:24 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 Tue, 05 Dec 2023 00:03:14 GMT
3
+ * Generated on Tue, 05 Dec 2023 15:34:24 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 Tue, 05 Dec 2023 00:03:14 GMT
3
+ // Generated on Tue, 05 Dec 2023 15:34:24 GMT
4
4
 
5
5
  $red-950: #fff4f3;
6
6
  $red-900: #fcf1ef;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 05 Dec 2023 00:03:14 GMT
3
+ // Generated on Tue, 05 Dec 2023 15:34:24 GMT
4
4
 
5
5
  $gl-line-height-52: 3.25rem;
6
6
  $gl-line-height-44: 2.75rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "71.5.0",
3
+ "version": "71.6.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -127,7 +127,7 @@
127
127
  "cypress-real-events": "^1.11.0",
128
128
  "dompurify": "^3.0.0",
129
129
  "emoji-regex": "^10.0.0",
130
- "eslint": "8.54.0",
130
+ "eslint": "8.55.0",
131
131
  "eslint-import-resolver-jest": "3.0.2",
132
132
  "eslint-plugin-cypress": "2.15.1",
133
133
  "eslint-plugin-storybook": "0.6.15",
@@ -542,8 +542,9 @@ describe('GlDuoChat', () => {
542
542
  it.each`
543
543
  prompt | expectedCommands
544
544
  ${'/'} | ${slashCommandsNames}
545
- ${'/t'} | ${slashCommandsOnly(['/test'])}
546
- ${'/tes'} | ${slashCommandsOnly(['/test'])}
545
+ ${'/t'} | ${slashCommandsOnly(['/tests'])}
546
+ ${'/tes'} | ${slashCommandsOnly(['/tests'])}
547
+ ${'/test'} | ${slashCommandsOnly(['/tests'])}
547
548
  ${'/e'} | ${slashCommandsOnly(['/explain'])}
548
549
  ${'/explai'} | ${slashCommandsOnly(['/explain'])}
549
550
  ${'/r'} | ${slashCommandsOnly(['/reset', '/refactor'])}
@@ -43,7 +43,7 @@ export const slashCommands = [
43
43
  description: 'Reset conversation, ignore the previous messages.',
44
44
  },
45
45
  {
46
- name: '/test',
46
+ name: '/tests',
47
47
  shouldSubmit: false,
48
48
  description: 'Write tests for the code snippet.',
49
49
  },