@gitlab/ui 62.8.0 → 62.9.1
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 +14 -0
- package/dist/components/base/broadcast_message/broadcast_message.js +1 -1
- package/package.json +15 -15
- package/src/components/base/broadcast_message/broadcast_message.vue +1 -0
- package/src/components/base/card/card.stories.js +2 -1
- package/src/components/base/carousel/carousel.stories.js +2 -1
- package/src/components/base/form/form_checkbox/form_checkbox.stories.js +2 -1
- package/src/components/base/new_dropdowns/listbox/listbox.stories.js +8 -16
- package/src/components/base/toast/toast.stories.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [62.9.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v62.9.0...v62.9.1) (2023-05-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* make parameters for listbox configurable ([5dcd29b](https://gitlab.com/gitlab-org/gitlab-ui/commit/5dcd29b69a49a063ce4fbe0f1b63f8acd3e63469))
|
|
7
|
+
|
|
8
|
+
# [62.9.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v62.8.0...v62.9.0) (2023-05-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **GlBroadcastMessage:** Add hardcoded sr-only heading ([9cae3b1](https://gitlab.com/gitlab-org/gitlab-ui/commit/9cae3b19a54068197809cd28010fec85f93ed945))
|
|
14
|
+
|
|
1
15
|
# [62.8.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v62.7.0...v62.8.0) (2023-05-03)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -77,7 +77,7 @@ var script = {
|
|
|
77
77
|
const __vue_script__ = script;
|
|
78
78
|
|
|
79
79
|
/* template */
|
|
80
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"gl-broadcast-message",class:(_vm.theme + " " + _vm.type)},[_c('div',{staticClass:"gl-broadcast-message-content"},[_c('div',{staticClass:"gl-broadcast-message-icon gl-line-height-normal"},[_c('gl-icon',{attrs:{"name":_vm.iconName}})],1),_vm._v(" "),_c('div',{staticClass:"gl-my-n1"},[_vm._t("default")],2)]),_vm._v(" "),(_vm.showDismissButton)?_c('close-button',{ref:"dismiss",staticClass:"gl-close-btn-color-inherit gl-broadcast-message-dismiss",attrs:{"label":_vm.dismissLabel},on:{"click":_vm.onDismiss}}):_vm._e()],1)};
|
|
80
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"gl-broadcast-message",class:(_vm.theme + " " + _vm.type)},[_c('div',{staticClass:"gl-broadcast-message-content"},[_c('div',{staticClass:"gl-broadcast-message-icon gl-line-height-normal"},[_c('gl-icon',{attrs:{"name":_vm.iconName}})],1),_vm._v(" "),_c('div',{staticClass:"gl-my-n1"},[_c('h2',{staticClass:"gl-sr-only"},[_vm._v("Admin message")]),_vm._v(" "),_vm._t("default")],2)]),_vm._v(" "),(_vm.showDismissButton)?_c('close-button',{ref:"dismiss",staticClass:"gl-close-btn-color-inherit gl-broadcast-message-dismiss",attrs:{"label":_vm.dismissLabel},on:{"click":_vm.onDismiss}}):_vm._e()],1)};
|
|
81
81
|
var __vue_staticRenderFns__ = [];
|
|
82
82
|
|
|
83
83
|
/* style */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "62.
|
|
3
|
+
"version": "62.9.1",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -83,28 +83,28 @@
|
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@arkweid/lefthook": "0.7.7",
|
|
86
|
-
"@babel/core": "^7.21.
|
|
86
|
+
"@babel/core": "^7.21.8",
|
|
87
87
|
"@babel/preset-env": "^7.21.5",
|
|
88
88
|
"@babel/preset-react": "^7.18.6",
|
|
89
89
|
"@gitlab/eslint-plugin": "19.0.0",
|
|
90
90
|
"@gitlab/fonts": "^1.2.0",
|
|
91
91
|
"@gitlab/stylelint-config": "4.1.0",
|
|
92
|
-
"@gitlab/svgs": "3.
|
|
92
|
+
"@gitlab/svgs": "3.43.0",
|
|
93
93
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
94
94
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
95
95
|
"@rollup/plugin-replace": "^2.3.2",
|
|
96
|
-
"@storybook/addon-a11y": "7.0.
|
|
97
|
-
"@storybook/addon-docs": "7.0.
|
|
98
|
-
"@storybook/addon-essentials": "7.0.
|
|
99
|
-
"@storybook/addon-storyshots": "7.0.
|
|
100
|
-
"@storybook/addon-storyshots-puppeteer": "7.0.
|
|
101
|
-
"@storybook/addon-viewport": "7.0.
|
|
102
|
-
"@storybook/builder-webpack5": "7.0.
|
|
103
|
-
"@storybook/theming": "7.0.
|
|
104
|
-
"@storybook/vue": "7.0.
|
|
105
|
-
"@storybook/vue-webpack5": "7.0.
|
|
106
|
-
"@storybook/vue3": "7.0.
|
|
107
|
-
"@storybook/vue3-webpack5": "7.0.
|
|
96
|
+
"@storybook/addon-a11y": "7.0.9",
|
|
97
|
+
"@storybook/addon-docs": "7.0.9",
|
|
98
|
+
"@storybook/addon-essentials": "7.0.9",
|
|
99
|
+
"@storybook/addon-storyshots": "7.0.9",
|
|
100
|
+
"@storybook/addon-storyshots-puppeteer": "7.0.9",
|
|
101
|
+
"@storybook/addon-viewport": "7.0.9",
|
|
102
|
+
"@storybook/builder-webpack5": "7.0.9",
|
|
103
|
+
"@storybook/theming": "7.0.9",
|
|
104
|
+
"@storybook/vue": "7.0.9",
|
|
105
|
+
"@storybook/vue-webpack5": "7.0.9",
|
|
106
|
+
"@storybook/vue3": "7.0.9",
|
|
107
|
+
"@storybook/vue3-webpack5": "7.0.9",
|
|
108
108
|
"@vue/compat": "^3.2.40",
|
|
109
109
|
"@vue/compiler-sfc": "^3.2.40",
|
|
110
110
|
"@vue/test-utils": "1.3.0",
|
|
@@ -418,28 +418,22 @@ export default {
|
|
|
418
418
|
},
|
|
419
419
|
argTypes: {
|
|
420
420
|
category: {
|
|
421
|
-
control:
|
|
422
|
-
|
|
423
|
-
options: buttonCategoryOptions,
|
|
424
|
-
},
|
|
421
|
+
control: 'select',
|
|
422
|
+
options: buttonCategoryOptions,
|
|
425
423
|
table: {
|
|
426
424
|
subcategory: ARG_TYPE_SUBCATEGORY_LOOK_AND_FEEL,
|
|
427
425
|
},
|
|
428
426
|
},
|
|
429
427
|
variant: {
|
|
430
|
-
control:
|
|
431
|
-
|
|
432
|
-
options: buttonVariantOptions,
|
|
433
|
-
},
|
|
428
|
+
control: 'select',
|
|
429
|
+
options: buttonVariantOptions,
|
|
434
430
|
table: {
|
|
435
431
|
subcategory: ARG_TYPE_SUBCATEGORY_LOOK_AND_FEEL,
|
|
436
432
|
},
|
|
437
433
|
},
|
|
438
434
|
size: {
|
|
439
|
-
control:
|
|
440
|
-
|
|
441
|
-
options: Object.keys(buttonSizeOptions),
|
|
442
|
-
},
|
|
435
|
+
control: 'select',
|
|
436
|
+
options: Object.keys(buttonSizeOptions),
|
|
443
437
|
table: {
|
|
444
438
|
subcategory: ARG_TYPE_SUBCATEGORY_LOOK_AND_FEEL,
|
|
445
439
|
},
|
|
@@ -455,10 +449,8 @@ export default {
|
|
|
455
449
|
},
|
|
456
450
|
},
|
|
457
451
|
placement: {
|
|
458
|
-
control:
|
|
459
|
-
|
|
460
|
-
options: Object.keys(dropdownPlacements),
|
|
461
|
-
},
|
|
452
|
+
control: 'select',
|
|
453
|
+
options: Object.keys(dropdownPlacements),
|
|
462
454
|
table: {
|
|
463
455
|
subcategory: ARG_TYPE_SUBCATEGORY_LOOK_AND_FEEL,
|
|
464
456
|
},
|