@gitlab/ui 86.4.0 → 86.5.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 +14 -0
- package/dist/components/base/pagination/pagination.js +6 -6
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +5 -1
- package/dist/tokens/build/js/tokens.js +5 -1
- package/dist/tokens/css/tokens.css +4 -0
- package/dist/tokens/css/tokens.dark.css +4 -0
- package/dist/tokens/js/tokens.dark.js +4 -0
- package/dist/tokens/js/tokens.js +4 -0
- package/dist/tokens/json/tokens.dark.json +96 -0
- package/dist/tokens/json/tokens.json +96 -0
- package/dist/tokens/scss/_tokens.dark.scss +4 -0
- package/dist/tokens/scss/_tokens.scss +4 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +4 -0
- package/package.json +1 -1
- package/src/components/base/label/label.scss +1 -1
- package/src/components/base/loading_icon/loading_icon.scss +10 -17
- package/src/components/base/pagination/pagination.vue +6 -6
- package/src/tokens/build/css/tokens.css +4 -0
- package/src/tokens/build/css/tokens.dark.css +4 -0
- package/src/tokens/build/js/tokens.dark.js +4 -0
- package/src/tokens/build/js/tokens.js +4 -0
- package/src/tokens/build/json/tokens.dark.json +96 -0
- package/src/tokens/build/json/tokens.json +96 -0
- package/src/tokens/build/scss/_tokens.dark.scss +4 -0
- package/src/tokens/build/scss/_tokens.scss +4 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +4 -0
- package/src/tokens/contextual/spinner.tokens.json +38 -0
- package/translations.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [86.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.4.1...v86.5.0) (2024-07-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **GlLoadingIcon:** Use color design tokens ([49eb57c](https://gitlab.com/gitlab-org/gitlab-ui/commit/49eb57cf86233afaa448ac8d84ee4f773553e63b))
|
|
7
|
+
|
|
8
|
+
## [86.4.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.4.0...v86.4.1) (2024-07-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* use CSS custom property syntax ([35979a1](https://gitlab.com/gitlab-org/gitlab-ui/commit/35979a128a4e33ad528d962f0c44feb283cdccd7))
|
|
14
|
+
|
|
1
15
|
# [86.4.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.3.1...v86.4.0) (2024-07-09)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -83,7 +83,7 @@ var script = {
|
|
|
83
83
|
prevText: {
|
|
84
84
|
type: String,
|
|
85
85
|
required: false,
|
|
86
|
-
default: 'Previous'
|
|
86
|
+
default: translate('GlPagination.prevText', 'Previous')
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
89
|
* When using the compact pagination, use this prop to pass the next page number
|
|
@@ -99,7 +99,7 @@ var script = {
|
|
|
99
99
|
nextText: {
|
|
100
100
|
type: String,
|
|
101
101
|
required: false,
|
|
102
|
-
default: 'Next'
|
|
102
|
+
default: translate('GlPagination.nextText', 'Next')
|
|
103
103
|
},
|
|
104
104
|
/**
|
|
105
105
|
* Text for the ellipsis (overridden by "ellipsis-left" and "ellipsis-right" slots)
|
|
@@ -115,7 +115,7 @@ var script = {
|
|
|
115
115
|
labelFirstPage: {
|
|
116
116
|
type: String,
|
|
117
117
|
required: false,
|
|
118
|
-
default: 'Go to first page'
|
|
118
|
+
default: translate('GlPagination.labelFirstPage', 'Go to first page')
|
|
119
119
|
},
|
|
120
120
|
/**
|
|
121
121
|
* aria-label for the previous page item
|
|
@@ -123,7 +123,7 @@ var script = {
|
|
|
123
123
|
labelPrevPage: {
|
|
124
124
|
type: String,
|
|
125
125
|
required: false,
|
|
126
|
-
default: 'Go to previous page'
|
|
126
|
+
default: translate('GlPagination.labelPrevPage', 'Go to previous page')
|
|
127
127
|
},
|
|
128
128
|
/**
|
|
129
129
|
* aria-label for the next page item
|
|
@@ -131,7 +131,7 @@ var script = {
|
|
|
131
131
|
labelNextPage: {
|
|
132
132
|
type: String,
|
|
133
133
|
required: false,
|
|
134
|
-
default: 'Go to next page'
|
|
134
|
+
default: translate('GlPagination.labelNextPage', 'Go to next page')
|
|
135
135
|
},
|
|
136
136
|
/**
|
|
137
137
|
* aria-label for the last page item
|
|
@@ -139,7 +139,7 @@ var script = {
|
|
|
139
139
|
labelLastPage: {
|
|
140
140
|
type: String,
|
|
141
141
|
required: false,
|
|
142
|
-
default: 'Go to last page'
|
|
142
|
+
default: translate('GlPagination.labelLastPage', 'Go to last page')
|
|
143
143
|
},
|
|
144
144
|
/**
|
|
145
145
|
* aria-label getter for numbered page items, defaults to "Go to page <page_number>"
|