@gitlab/ui 118.1.0 → 118.1.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.
|
@@ -15,6 +15,19 @@ var script = {
|
|
|
15
15
|
required: false,
|
|
16
16
|
default: null
|
|
17
17
|
},
|
|
18
|
+
/**
|
|
19
|
+
* The header tag used in the empty state component (h1/h2/h3/h4/h5/h6).
|
|
20
|
+
* For accessibility this should be set to an appropriate value in the context where the component is used.
|
|
21
|
+
* Defaults to `h2`
|
|
22
|
+
*/
|
|
23
|
+
headerLevel: {
|
|
24
|
+
type: Number,
|
|
25
|
+
required: false,
|
|
26
|
+
default: 2,
|
|
27
|
+
validator(value) {
|
|
28
|
+
return value > 0 && value <= 6;
|
|
29
|
+
}
|
|
30
|
+
},
|
|
18
31
|
/**
|
|
19
32
|
* The illustration's URL.
|
|
20
33
|
*/
|
|
@@ -94,6 +107,10 @@ var script = {
|
|
|
94
107
|
}
|
|
95
108
|
},
|
|
96
109
|
computed: {
|
|
110
|
+
headerComponent() {
|
|
111
|
+
const level = this.headerLevel;
|
|
112
|
+
return `h${level}`;
|
|
113
|
+
},
|
|
97
114
|
height() {
|
|
98
115
|
return this.shouldPreventImageReflow ? this.svgHeight : null;
|
|
99
116
|
},
|
|
@@ -119,7 +136,7 @@ const __vue_script__ = script;
|
|
|
119
136
|
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('section',{staticClass:"gl-flex",class:{
|
|
120
137
|
'gl-empty-state gl-flex-col gl-text-center': !_vm.compact,
|
|
121
138
|
'gl-flex-row': _vm.compact,
|
|
122
|
-
}},[_c('div',{class:{ 'gl-hidden gl-px-4 sm:gl-block': _vm.compact, 'gl-max-w-full': !_vm.compact }},[(_vm.svgPath)?_c('img',{staticClass:"gl-max-w-full",class:{ 'gl-dark-invert-keep-hue': _vm.invertInDarkMode },attrs:{"src":_vm.svgPath,"alt":"","height":_vm.height}}):_vm._e()]),_vm._v(" "),_c('div',{staticClass:"gl-empty-state-content gl-mx-auto gl-my-0",class:_vm.contentClasses,attrs:{"data-testid":"gl-empty-state-content"}},[_vm._t("title",function(){return [_c(
|
|
139
|
+
}},[_c('div',{class:{ 'gl-hidden gl-px-4 sm:gl-block': _vm.compact, 'gl-max-w-full': !_vm.compact }},[(_vm.svgPath)?_c('img',{staticClass:"gl-max-w-full",class:{ 'gl-dark-invert-keep-hue': _vm.invertInDarkMode },attrs:{"src":_vm.svgPath,"alt":"","height":_vm.height}}):_vm._e()]),_vm._v(" "),_c('div',{staticClass:"gl-empty-state-content gl-mx-auto gl-my-0",class:_vm.contentClasses,attrs:{"data-testid":"gl-empty-state-content"}},[_vm._t("title",function(){return [_c(_vm.headerComponent,{tag:"component",staticClass:"gl-mb-0 gl-mt-0 gl-text-size-h-display gl-leading-36",class:_vm.compact ? 'h5' : 'h4'},[_vm._v("\n "+_vm._s(_vm.title)+"\n ")])]}),_vm._v(" "),(_vm.description || _vm.$scopedSlots.description)?_c('p',{ref:"description",staticClass:"gl-mb-0 gl-mt-4 gl-text-subtle"},[_vm._t("description",function(){return [_vm._v("\n "+_vm._s(_vm.description)+"\n ")]})],2):_vm._e(),_vm._v(" "),_c('div',{staticClass:"gl-mt-5 gl-flex gl-flex-wrap",class:{ 'gl-justify-center': !_vm.compact }},[_vm._t("actions",function(){return [(_vm.shouldRenderPrimaryButton)?_c('gl-button',{staticClass:"gl-mb-3",class:_vm.compact ? 'gl-mr-3' : 'gl-mx-2',attrs:{"variant":"confirm","href":_vm.primaryButtonLink}},[_vm._v(_vm._s(_vm.primaryButtonText))]):_vm._e(),_vm._v(" "),(_vm.shouldRenderSecondaryButton)?_c('gl-button',{staticClass:"gl-mb-3 gl-mr-3",class:{ '!gl-mx-2': !_vm.compact },attrs:{"href":_vm.secondaryButtonLink}},[_vm._v(_vm._s(_vm.secondaryButtonText)+"\n ")]):_vm._e()]})],2)],2)])};
|
|
123
140
|
var __vue_staticRenderFns__ = [];
|
|
124
141
|
|
|
125
142
|
/* style */
|