@gitlab/ui 86.4.0 → 86.4.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [86.4.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.4.0...v86.4.1) (2024-07-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * use CSS custom property syntax ([35979a1](https://gitlab.com/gitlab-org/gitlab-ui/commit/35979a128a4e33ad528d962f0c44feb283cdccd7))
7
+
1
8
  # [86.4.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.3.1...v86.4.0) (2024-07-09)
2
9
 
3
10
 
@@ -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>"