@gitlab/ui 85.0.1 → 85.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "85.0.1",
3
+ "version": "85.1.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -1,5 +1,5 @@
1
1
  .gl-card {
2
- @include gl-bg-white;
2
+ background-color: var(--gl-background-color-default);
3
3
  @include gl-border-solid;
4
4
  @include gl-display-flex;
5
5
  @include gl-flex-direction-column;
@@ -13,7 +13,7 @@
13
13
  .gl-card-header,
14
14
  .gl-card-footer {
15
15
  @include gl-border-1;
16
- @include gl-border-gray-100;
16
+ border-color: var(--gl-border-color-default);
17
17
  }
18
18
 
19
19
  .gl-card-header,
@@ -26,6 +26,7 @@
26
26
  @include gl-border-b-solid;
27
27
  border-top-left-radius: calc($gl-border-radius-base - $gl-border-size-1);
28
28
  border-top-right-radius: calc($gl-border-radius-base - $gl-border-size-1);
29
+ color: var(--gl-text-color-heading);
29
30
  }
30
31
 
31
32
  .gl-card-footer {
@@ -36,5 +37,10 @@
36
37
 
37
38
  .gl-card-header,
38
39
  .gl-card-footer {
39
- @include gl-bg-gray-10;
40
+ background-color: var(--gl-background-color-subtle);
41
+ }
42
+
43
+ .gl-card-body,
44
+ .gl-card-footer {
45
+ color: var(--gl-text-color-default);
40
46
  }
@@ -29,7 +29,6 @@ export const tableFullProps = [
29
29
  'no-provider-paging',
30
30
  'no-provider-sorting',
31
31
  'no-select-on-click',
32
- 'no-sort-reset',
33
32
  'per-page',
34
33
  'select-mode',
35
34
  'selectable',
@@ -100,6 +100,7 @@ export default {
100
100
  :fields="fields"
101
101
  :sort-by.sync="localSortBy"
102
102
  :sort-desc.sync="localSortDesc"
103
+ no-sort-reset
103
104
  v-bind="$attrs"
104
105
  v-on="$listeners"
105
106
  >
@@ -50,7 +50,5 @@ export default {
50
50
 
51
51
  ## Caveats
52
52
 
53
- - If a click event is stopped (e.g., via `event.stopPropagation()`) before it
54
- bubbles up to the `document`, it cannot be detected by `GlOutsideDirective`.
55
53
  - Clicks cannot be detected across document boundaries (e.g., across an
56
54
  `iframe` boundary), in either direction.