@gitlab/ui 98.5.2 → 99.0.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.
Files changed (53) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_details_modal/duo_chat_context_item_details_modal.js +1 -1
  3. package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +1 -1
  4. package/dist/components/experimental/duo/chat/mock_data.js +1 -1
  5. package/dist/index.css +1 -1
  6. package/dist/index.css.map +1 -1
  7. package/dist/tailwind.css +1 -1
  8. package/dist/tailwind.css.map +1 -1
  9. package/dist/vendor/bootstrap-vue/src/components/transition/bv-transition.js +1 -1
  10. package/package.json +8 -11
  11. package/src/components/base/skeleton_loader/skeleton_loader.md +28 -4
  12. package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_details_modal/duo_chat_context_item_details_modal.vue +1 -1
  13. package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +1 -1
  14. package/src/components/experimental/duo/chat/duo_chat.scss +228 -0
  15. package/src/components/experimental/duo/chat/mock_data.js +1 -1
  16. package/src/scss/gitlab_ui.scss +0 -1
  17. package/src/scss/storybook.scss +0 -1
  18. package/src/scss/typescale/typescale.md +0 -1
  19. package/src/scss/typescale/typescale_demo.scss +1 -2
  20. package/src/vendor/bootstrap-vue/src/components/transition/bv-transition.js +1 -1
  21. package/dist/utility_classes.css +0 -2
  22. package/dist/utility_classes.css.map +0 -1
  23. package/src/scss/utilities.scss +0 -9196
  24. package/src/scss/utility-mixins/accessibility.scss +0 -19
  25. package/src/scss/utility-mixins/animation.scss +0 -90
  26. package/src/scss/utility-mixins/background.scss +0 -421
  27. package/src/scss/utility-mixins/border.scss +0 -498
  28. package/src/scss/utility-mixins/box-shadow.scss +0 -220
  29. package/src/scss/utility-mixins/clearfix.scss +0 -9
  30. package/src/scss/utility-mixins/color.scss +0 -228
  31. package/src/scss/utility-mixins/composite.scss +0 -24
  32. package/src/scss/utility-mixins/cursor.scss +0 -36
  33. package/src/scss/utility-mixins/deprecated.scss +0 -20
  34. package/src/scss/utility-mixins/display.scss +0 -192
  35. package/src/scss/utility-mixins/flex.scss +0 -360
  36. package/src/scss/utility-mixins/grid.scss +0 -50
  37. package/src/scss/utility-mixins/image.scss +0 -8
  38. package/src/scss/utility-mixins/index.scss +0 -47
  39. package/src/scss/utility-mixins/list-style.scss +0 -12
  40. package/src/scss/utility-mixins/opacity.scss +0 -32
  41. package/src/scss/utility-mixins/outline.scss +0 -12
  42. package/src/scss/utility-mixins/overflow.scss +0 -45
  43. package/src/scss/utility-mixins/pointer-events.scss +0 -12
  44. package/src/scss/utility-mixins/sizing.scss +0 -582
  45. package/src/scss/utility-mixins/spacing.scss +0 -1564
  46. package/src/scss/utility-mixins/svg.scss +0 -79
  47. package/src/scss/utility-mixins/text.scss +0 -183
  48. package/src/scss/utility-mixins/transform.scss +0 -58
  49. package/src/scss/utility-mixins/transition.scss +0 -44
  50. package/src/scss/utility-mixins/typography.scss +0 -381
  51. package/src/scss/utility-mixins/vertical-align.scss +0 -22
  52. package/src/scss/utility-mixins/visibility.scss +0 -12
  53. package/src/scss/utility-mixins/z-index.scss +0 -37
@@ -1,79 +0,0 @@
1
- /**
2
- * SVG fill color utilities.
3
- *
4
- * naming convention: gl-fill-{color-palette-variable-name}
5
- * notes:
6
- * - Strictly based design system color palette. See variables.scss
7
- * for a comprehensive list.
8
- */
9
- @mixin gl-fill-current-color {
10
- fill: currentColor;
11
- }
12
-
13
- @mixin gl-fill-blue-200 {
14
- fill: $blue-200;
15
- }
16
-
17
- @mixin gl-fill-blue-500 {
18
- fill: $blue-500;
19
- }
20
-
21
- @mixin gl-stop-color-gray-50 {
22
- stop-color: $gray-50;
23
- }
24
-
25
- @mixin gl-stop-color-gray-100 {
26
- stop-color: $gray-100;
27
- }
28
-
29
- @mixin gl-stop-color-gray-200 {
30
- stop-color: $gray-200;
31
- }
32
-
33
- @mixin gl-stroke-white {
34
- stroke: $white;
35
- }
36
-
37
- @mixin gl-stroke-gray-200 {
38
- stroke: $gray-200;
39
- }
40
-
41
- @mixin gl-stroke-blue-400 {
42
- stroke: $blue-400;
43
- }
44
-
45
- @mixin gl-stroke-trans {
46
- stroke: transparent;
47
- }
48
-
49
- @mixin gl-fill-gray-100 {
50
- fill: $gray-100;
51
- }
52
-
53
- @mixin gl-fill-gray-200 {
54
- fill: $gray-200;
55
- }
56
-
57
- @mixin gl-fill-gray-400 {
58
- fill: $gray-400;
59
- }
60
-
61
- @mixin gl-fill-gray-600 {
62
- fill: $gray-600;
63
- }
64
-
65
- @mixin gl-fill-gray-700 {
66
- fill: $gray-700;
67
- }
68
-
69
- @mixin gl-fill-green-500 {
70
- fill: $green-500;
71
- }
72
-
73
- @mixin gl-fill-green-700 {
74
- fill: $green-700;
75
- }
76
-
77
- @mixin gl-fill-transparent {
78
- fill: transparent;
79
- }
@@ -1,183 +0,0 @@
1
- @import '../mixins';
2
-
3
- /**
4
- * Text align utilities
5
- */
6
- @mixin gl-text-left {
7
- text-align: left;
8
- }
9
-
10
- @mixin gl-text-center {
11
- text-align: center;
12
- }
13
-
14
- @mixin gl-text-right {
15
- text-align: right;
16
- }
17
-
18
- @mixin gl-reset-text-align {
19
- text-align: inherit;
20
- }
21
-
22
- /**
23
- * Text utilities
24
- */
25
- @mixin gl-text-decoration-none($active: true, $focus: true, $hover: true) {
26
- text-decoration: none;
27
- }
28
-
29
- @mixin gl-text-decoration-underline($active: true, $focus: true, $hover: true) {
30
- text-decoration: underline;
31
- }
32
-
33
- @mixin gl-reset-text-decoration-color {
34
- text-decoration-color: inherit;
35
- }
36
-
37
- @mixin gl-text-decoration-color-gray-500 {
38
- text-decoration-color: $gray-500;
39
- }
40
-
41
- @mixin gl-text-decoration-color-gray-700 {
42
- text-decoration-color: $gray-700;
43
- }
44
-
45
- @mixin gl-text-decoration-color-gray-900 {
46
- text-decoration-color: $gray-900;
47
- }
48
-
49
- @mixin gl-text-transform-none {
50
- text-transform: none;
51
- }
52
-
53
- @mixin gl-text-transform-capitalize {
54
- text-transform: capitalize;
55
- }
56
-
57
- @mixin gl-text-transform-uppercase {
58
- text-transform: uppercase;
59
- }
60
-
61
- /**
62
- * Text overflow utilities
63
- *
64
- * Naming convention: gl-text-overflow-{value}
65
- */
66
- @mixin gl-text-overflow-ellipsis {
67
- text-overflow: ellipsis;
68
- }
69
-
70
- /**
71
- * Line clamp utilities
72
- *
73
- * Naming convention: gl-line-clamp-{value}
74
- */
75
- @mixin gl-line-clamp-1 {
76
- white-space: normal;
77
- -webkit-line-clamp: 1;
78
- -webkit-box-orient: vertical;
79
- // stylelint-disable-next-line value-no-vendor-prefix
80
- display: -webkit-box;
81
- overflow: hidden;
82
- }
83
-
84
- @mixin gl-line-clamp-2 {
85
- white-space: normal;
86
- -webkit-line-clamp: 2;
87
- -webkit-box-orient: vertical;
88
- // stylelint-disable-next-line value-no-vendor-prefix
89
- display: -webkit-box;
90
- overflow: hidden;
91
- }
92
-
93
- @mixin gl-line-clamp-3 {
94
- white-space: normal;
95
- -webkit-line-clamp: 3;
96
- -webkit-box-orient: vertical;
97
- // stylelint-disable-next-line value-no-vendor-prefix
98
- display: -webkit-box;
99
- overflow: hidden;
100
- }
101
-
102
- /**
103
- * Text indent utilities
104
- *
105
- * Naming convention: gl-text-indent-{value}
106
- */
107
- @mixin gl-text-indent-0 {
108
- text-indent: 0;
109
- }
110
-
111
- @mixin gl-text-indent-hide {
112
- text-indent: -9999px;
113
- }
114
-
115
- /**
116
- * White-space utilities.
117
- *
118
- * naming convention: gl-white-space-{value}
119
- */
120
- @mixin gl-white-space-normal {
121
- white-space: normal;
122
- }
123
-
124
- @mixin gl-white-space-nowrap {
125
- white-space: nowrap;
126
- }
127
-
128
- @mixin gl-white-space-pre-wrap {
129
- white-space: pre-wrap;
130
- }
131
-
132
- @mixin gl-white-space-pre-line {
133
- white-space: pre-line;
134
- }
135
-
136
- /**
137
- * Responsive White-space utilities
138
- *
139
- * naming convention: gl-{breakpoint}-white-space-{value}
140
- */
141
-
142
- @mixin gl-md-white-space-nowrap {
143
- @include gl-media-breakpoint-up(md) {
144
- white-space: nowrap;
145
- }
146
- }
147
-
148
- /**
149
- * Word utilities.
150
- *
151
- * naming convention: gl-word-{action}-{value}
152
- */
153
-
154
- @mixin gl-word-break-all {
155
- word-break: break-all;
156
- }
157
-
158
- @mixin gl-word-break-word {
159
- word-break: break-word;
160
- }
161
-
162
- @mixin gl-overflow-break-word {
163
- overflow-wrap: break-word;
164
- hyphens: auto;
165
- }
166
-
167
- @mixin gl-overflow-anywhere {
168
- hyphens: auto;
169
- overflow-wrap: anywhere;
170
- word-break: normal;
171
- }
172
-
173
- // Deprecated, prefer `gl-text-truncate`
174
- @mixin gl-str-truncated {
175
- @include str-truncated;
176
- }
177
-
178
- // single line ellipsis'd text
179
- @mixin gl-text-truncate {
180
- overflow: hidden;
181
- text-overflow: ellipsis;
182
- white-space: nowrap;
183
- }
@@ -1,58 +0,0 @@
1
- /**
2
- * Transform utilities
3
- *
4
- * naming convention: gl-{transform}-{position}-{value}, or
5
- * gl-{transform}-{value}
6
- */
7
-
8
- @mixin gl-translate-x-0 {
9
- transform: translateX(0);
10
- }
11
-
12
- @mixin gl-translate-x-100 {
13
- transform: translateX(100%);
14
- }
15
-
16
- @mixin gl-translate-x-n50 {
17
- transform: translateX(-50%);
18
- }
19
-
20
- @mixin gl-translate-y-0 {
21
- transform: translateY(0);
22
- }
23
-
24
- @mixin gl-translate-y-100 {
25
- transform: translateY(100%);
26
- }
27
-
28
- @mixin gl-translate-y-n50 {
29
- transform: translateY(-50%);
30
- }
31
-
32
- @mixin gl-translate-y-n100 {
33
- transform: translateY(-100%);
34
- }
35
-
36
- @mixin gl-rotate-90 {
37
- transform: rotate(90deg);
38
- }
39
-
40
- @mixin gl-rotate-180 {
41
- transform: rotate(180deg);
42
- }
43
-
44
- @mixin gl-rotate-270 {
45
- transform: rotate(270deg);
46
- }
47
-
48
- @mixin gl-flip-horizontal {
49
- transform: scale(-1, 1);
50
- }
51
-
52
- @mixin gl-flip-vertical {
53
- transform: scale(1, -1);
54
- }
55
-
56
- @mixin gl-flip-both {
57
- transform: scale(-1, -1);
58
- }
@@ -1,44 +0,0 @@
1
- /**
2
- * Transition utilities
3
- *
4
- * naming convention: gl-transition-{speed}
5
- */
6
- @mixin gl-transition-property-border-color {
7
- transition-property: border-color;
8
- }
9
-
10
- @mixin gl-transition-property-width {
11
- transition-property: width;
12
- }
13
-
14
- @mixin gl-transition-property-stroke {
15
- transition-property: stroke;
16
- }
17
-
18
- @mixin gl-transition-property-stroke-opacity {
19
- transition-property: stroke-opacity;
20
- }
21
-
22
- @mixin gl-transition-duration-slow {
23
- transition-duration: $gl-transition-duration-slow;
24
- }
25
-
26
- @mixin gl-transition-duration-medium {
27
- transition-duration: $gl-transition-duration-medium;
28
- }
29
-
30
- @mixin gl-transition-duration-fast {
31
- transition-duration: $gl-transition-duration-fast;
32
- }
33
-
34
- @mixin gl-transition-timing-function-ease {
35
- transition-timing-function: ease;
36
- }
37
-
38
- @mixin gl-transition-slow {
39
- transition: all $gl-transition-duration-slow ease;
40
- }
41
-
42
- @mixin gl-transition-medium {
43
- transition: all $gl-transition-duration-medium ease;
44
- }