@instructure/ui-pagination 11.6.0 → 11.6.1-snapshot-129

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 (141) hide show
  1. package/CHANGELOG.md +42 -296
  2. package/es/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/index.js +2 -2
  3. package/es/Pagination/{PaginationButton → v1/PaginationButton}/index.js +1 -1
  4. package/es/Pagination/{PaginationPageInput → v1/PaginationPageInput}/index.js +1 -1
  5. package/es/Pagination/{index.js → v1/index.js} +1 -1
  6. package/es/Pagination/v2/PaginationArrowButton/index.js +109 -0
  7. package/es/Pagination/v2/PaginationArrowButton/props.js +30 -0
  8. package/es/Pagination/v2/PaginationButton/index.js +77 -0
  9. package/es/Pagination/v2/PaginationButton/props.js +29 -0
  10. package/es/Pagination/v2/PaginationPageInput/index.js +189 -0
  11. package/es/Pagination/v2/PaginationPageInput/props.js +26 -0
  12. package/es/Pagination/v2/PaginationPageInput/styles.js +56 -0
  13. package/es/Pagination/v2/index.js +481 -0
  14. package/es/Pagination/v2/props.js +26 -0
  15. package/es/Pagination/v2/styles.js +58 -0
  16. package/es/{index.js → exports/a.js} +1 -1
  17. package/es/exports/b.js +24 -0
  18. package/lib/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/index.js +8 -8
  19. package/lib/Pagination/{PaginationButton → v1/PaginationButton}/index.js +2 -2
  20. package/lib/Pagination/{PaginationPageInput → v1/PaginationPageInput}/index.js +2 -2
  21. package/lib/Pagination/{index.js → v1/index.js} +6 -6
  22. package/lib/Pagination/v2/PaginationArrowButton/index.js +115 -0
  23. package/lib/Pagination/v2/PaginationArrowButton/props.js +35 -0
  24. package/lib/Pagination/v2/PaginationButton/index.js +83 -0
  25. package/lib/Pagination/v2/PaginationButton/props.js +34 -0
  26. package/lib/Pagination/v2/PaginationPageInput/index.js +194 -0
  27. package/lib/Pagination/v2/PaginationPageInput/props.js +31 -0
  28. package/lib/Pagination/v2/PaginationPageInput/styles.js +62 -0
  29. package/lib/Pagination/v2/index.js +496 -0
  30. package/lib/Pagination/v2/props.js +31 -0
  31. package/lib/Pagination/v2/styles.js +64 -0
  32. package/lib/{index.js → exports/a.js} +3 -3
  33. package/lib/exports/b.js +18 -0
  34. package/package.json +48 -25
  35. package/src/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/index.tsx +2 -2
  36. package/src/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/props.ts +1 -1
  37. package/src/Pagination/{PaginationButton → v1/PaginationButton}/index.tsx +1 -1
  38. package/src/Pagination/{PaginationButton → v1/PaginationButton}/props.ts +1 -1
  39. package/src/Pagination/{PaginationPageInput → v1/PaginationPageInput}/index.tsx +1 -1
  40. package/src/Pagination/{index.tsx → v1/index.tsx} +1 -1
  41. package/src/Pagination/v2/PaginationArrowButton/index.tsx +120 -0
  42. package/src/Pagination/v2/PaginationArrowButton/props.ts +74 -0
  43. package/src/Pagination/v2/PaginationButton/index.tsx +82 -0
  44. package/src/Pagination/v2/PaginationButton/props.ts +77 -0
  45. package/src/Pagination/v2/PaginationPageInput/index.tsx +242 -0
  46. package/src/Pagination/v2/PaginationPageInput/props.ts +95 -0
  47. package/src/Pagination/v2/PaginationPageInput/styles.ts +62 -0
  48. package/src/Pagination/v2/README.md +417 -0
  49. package/src/Pagination/v2/index.tsx +665 -0
  50. package/src/Pagination/v2/props.ts +245 -0
  51. package/src/Pagination/v2/styles.ts +64 -0
  52. package/src/exports/a.ts +29 -0
  53. package/src/exports/b.ts +29 -0
  54. package/tsconfig.build.json +1 -0
  55. package/tsconfig.build.tsbuildinfo +1 -1
  56. package/types/Pagination/v1/PaginationArrowButton/index.d.ts.map +1 -0
  57. package/types/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/props.d.ts +1 -1
  58. package/types/Pagination/v1/PaginationArrowButton/props.d.ts.map +1 -0
  59. package/types/Pagination/v1/PaginationButton/index.d.ts.map +1 -0
  60. package/types/Pagination/{PaginationButton → v1/PaginationButton}/props.d.ts +1 -1
  61. package/types/Pagination/v1/PaginationButton/props.d.ts.map +1 -0
  62. package/types/Pagination/v1/PaginationPageInput/index.d.ts.map +1 -0
  63. package/types/Pagination/v1/PaginationPageInput/props.d.ts.map +1 -0
  64. package/types/Pagination/v1/PaginationPageInput/styles.d.ts.map +1 -0
  65. package/types/Pagination/v1/PaginationPageInput/theme.d.ts.map +1 -0
  66. package/types/Pagination/v1/index.d.ts.map +1 -0
  67. package/types/Pagination/v1/props.d.ts.map +1 -0
  68. package/types/Pagination/v1/styles.d.ts.map +1 -0
  69. package/types/Pagination/v1/theme.d.ts.map +1 -0
  70. package/types/Pagination/v2/PaginationArrowButton/index.d.ts +27 -0
  71. package/types/Pagination/v2/PaginationArrowButton/index.d.ts.map +1 -0
  72. package/types/Pagination/v2/PaginationArrowButton/props.d.ts +17 -0
  73. package/types/Pagination/v2/PaginationArrowButton/props.d.ts.map +1 -0
  74. package/types/Pagination/v2/PaginationButton/index.d.ts +26 -0
  75. package/types/Pagination/v2/PaginationButton/index.d.ts.map +1 -0
  76. package/types/Pagination/v2/PaginationButton/props.d.ts +30 -0
  77. package/types/Pagination/v2/PaginationButton/props.d.ts.map +1 -0
  78. package/types/Pagination/v2/PaginationPageInput/index.d.ts +50 -0
  79. package/types/Pagination/v2/PaginationPageInput/index.d.ts.map +1 -0
  80. package/types/Pagination/v2/PaginationPageInput/props.d.ts +45 -0
  81. package/types/Pagination/v2/PaginationPageInput/props.d.ts.map +1 -0
  82. package/types/Pagination/v2/PaginationPageInput/styles.d.ts +16 -0
  83. package/types/Pagination/v2/PaginationPageInput/styles.d.ts.map +1 -0
  84. package/types/Pagination/v2/index.d.ts +106 -0
  85. package/types/Pagination/v2/index.d.ts.map +1 -0
  86. package/types/Pagination/v2/props.d.ts +138 -0
  87. package/types/Pagination/v2/props.d.ts.map +1 -0
  88. package/types/Pagination/v2/styles.d.ts +16 -0
  89. package/types/Pagination/v2/styles.d.ts.map +1 -0
  90. package/types/exports/a.d.ts +5 -0
  91. package/types/exports/a.d.ts.map +1 -0
  92. package/types/exports/b.d.ts +5 -0
  93. package/types/exports/b.d.ts.map +1 -0
  94. package/src/index.ts +0 -29
  95. package/types/Pagination/PaginationArrowButton/index.d.ts.map +0 -1
  96. package/types/Pagination/PaginationArrowButton/props.d.ts.map +0 -1
  97. package/types/Pagination/PaginationButton/index.d.ts.map +0 -1
  98. package/types/Pagination/PaginationButton/props.d.ts.map +0 -1
  99. package/types/Pagination/PaginationPageInput/index.d.ts.map +0 -1
  100. package/types/Pagination/PaginationPageInput/props.d.ts.map +0 -1
  101. package/types/Pagination/PaginationPageInput/styles.d.ts.map +0 -1
  102. package/types/Pagination/PaginationPageInput/theme.d.ts.map +0 -1
  103. package/types/Pagination/index.d.ts.map +0 -1
  104. package/types/Pagination/props.d.ts.map +0 -1
  105. package/types/Pagination/styles.d.ts.map +0 -1
  106. package/types/Pagination/theme.d.ts.map +0 -1
  107. package/types/index.d.ts +0 -5
  108. package/types/index.d.ts.map +0 -1
  109. /package/es/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/props.js +0 -0
  110. /package/es/Pagination/{PaginationButton → v1/PaginationButton}/props.js +0 -0
  111. /package/es/Pagination/{PaginationPageInput → v1/PaginationPageInput}/props.js +0 -0
  112. /package/es/Pagination/{PaginationPageInput → v1/PaginationPageInput}/styles.js +0 -0
  113. /package/es/Pagination/{PaginationPageInput → v1/PaginationPageInput}/theme.js +0 -0
  114. /package/es/Pagination/{props.js → v1/props.js} +0 -0
  115. /package/es/Pagination/{styles.js → v1/styles.js} +0 -0
  116. /package/es/Pagination/{theme.js → v1/theme.js} +0 -0
  117. /package/lib/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/props.js +0 -0
  118. /package/lib/Pagination/{PaginationButton → v1/PaginationButton}/props.js +0 -0
  119. /package/lib/Pagination/{PaginationPageInput → v1/PaginationPageInput}/props.js +0 -0
  120. /package/lib/Pagination/{PaginationPageInput → v1/PaginationPageInput}/styles.js +0 -0
  121. /package/lib/Pagination/{PaginationPageInput → v1/PaginationPageInput}/theme.js +0 -0
  122. /package/lib/Pagination/{props.js → v1/props.js} +0 -0
  123. /package/lib/Pagination/{styles.js → v1/styles.js} +0 -0
  124. /package/lib/Pagination/{theme.js → v1/theme.js} +0 -0
  125. /package/src/Pagination/{PaginationPageInput → v1/PaginationPageInput}/props.ts +0 -0
  126. /package/src/Pagination/{PaginationPageInput → v1/PaginationPageInput}/styles.ts +0 -0
  127. /package/src/Pagination/{PaginationPageInput → v1/PaginationPageInput}/theme.ts +0 -0
  128. /package/src/Pagination/{README.md → v1/README.md} +0 -0
  129. /package/src/Pagination/{props.ts → v1/props.ts} +0 -0
  130. /package/src/Pagination/{styles.ts → v1/styles.ts} +0 -0
  131. /package/src/Pagination/{theme.ts → v1/theme.ts} +0 -0
  132. /package/types/Pagination/{PaginationArrowButton → v1/PaginationArrowButton}/index.d.ts +0 -0
  133. /package/types/Pagination/{PaginationButton → v1/PaginationButton}/index.d.ts +0 -0
  134. /package/types/Pagination/{PaginationPageInput → v1/PaginationPageInput}/index.d.ts +0 -0
  135. /package/types/Pagination/{PaginationPageInput → v1/PaginationPageInput}/props.d.ts +0 -0
  136. /package/types/Pagination/{PaginationPageInput → v1/PaginationPageInput}/styles.d.ts +0 -0
  137. /package/types/Pagination/{PaginationPageInput → v1/PaginationPageInput}/theme.d.ts +0 -0
  138. /package/types/Pagination/{index.d.ts → v1/index.d.ts} +0 -0
  139. /package/types/Pagination/{props.d.ts → v1/props.d.ts} +0 -0
  140. /package/types/Pagination/{styles.d.ts → v1/styles.d.ts} +0 -0
  141. /package/types/Pagination/{theme.d.ts → v1/theme.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,584 +3,330 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
7
-
8
- **Note:** Version bump only for package @instructure/ui-pagination
6
+ ## [11.6.1-snapshot-129](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-129) (2026-03-16)
9
7
 
10
8
 
9
+ ### Bug Fixes
11
10
 
11
+ * **ui-many:** fix imports of the multiversion support ([ff5f2b3](https://github.com/instructure/instructure-ui/commit/ff5f2b38660ddae432edd32b98eedae586589977))
12
+ * **ui-pagination:** fix Pagination.PageInput theme variables not visible in the docs app ([30ca564](https://github.com/instructure/instructure-ui/commit/30ca564c8a8df14c67f30bd106c2c8705f7ef3c0))
12
13
 
13
14
 
14
- # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
15
+ ### Features
15
16
 
16
- **Note:** Version bump only for package @instructure/ui-pagination
17
+ * **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
18
+ * **ui-pagination:** pagination rework ([662d474](https://github.com/instructure/instructure-ui/commit/662d4742c22098d24d8bf8edffef77a78c42d832))
17
19
 
18
20
 
19
21
 
20
22
 
21
23
 
22
- # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
24
+ # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
23
25
 
24
26
  **Note:** Version bump only for package @instructure/ui-pagination
25
27
 
28
+ # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
26
29
 
30
+ **Note:** Version bump only for package @instructure/ui-pagination
27
31
 
32
+ # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
28
33
 
34
+ **Note:** Version bump only for package @instructure/ui-pagination
29
35
 
30
36
  # [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
31
37
 
32
38
  **Note:** Version bump only for package @instructure/ui-pagination
33
39
 
34
-
35
-
36
-
37
-
38
40
  # [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
39
41
 
40
-
41
42
  ### Features
42
43
 
43
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
44
-
45
-
46
-
47
-
44
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
48
45
 
49
46
  # [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
50
47
 
51
-
52
48
  ### Features
53
49
 
54
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
55
-
56
-
57
-
58
-
50
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
59
51
 
60
52
  ## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
61
53
 
62
54
  **Note:** Version bump only for package @instructure/ui-pagination
63
55
 
64
-
65
-
66
-
67
-
68
56
  # [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
69
57
 
70
-
71
58
  ### Features
72
59
 
73
- * **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
74
-
60
+ - **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
75
61
 
76
62
  ### BREAKING CHANGES
77
63
 
78
- * **many:** InstUI v11 contains the following breaking changes:
79
- - React 16 and 17 are no longer supported
80
- - remove `PropTypes` from all packages
81
- - remove `CodeEditor` component
82
- - remove `@instui/theme-registry` package
83
- - remove `@testable`, `@experimental`, `@hack` decorators
84
- - InstUISettingsProvider's `as` prop is removed
85
- - `canvas.use()`, `canvasHighContrast.use()` functions are removed
86
- - `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
87
- - `variables` field on theme objects are removed
88
- - remove deprecated props from Table: Row's `isStacked`, Body's
64
+ - **many:** InstUI v11 contains the following breaking changes:
65
+
66
+ * React 16 and 17 are no longer supported
67
+ * remove `PropTypes` from all packages
68
+ * remove `CodeEditor` component
69
+ * remove `@instui/theme-registry` package
70
+ * remove `@testable`, `@experimental`, `@hack` decorators
71
+ * InstUISettingsProvider's `as` prop is removed
72
+ * `canvas.use()`, `canvasHighContrast.use()` functions are removed
73
+ * `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
74
+ * `variables` field on theme objects are removed
75
+ * remove deprecated props from Table: Row's `isStacked`, Body's
89
76
  `isStacked`, `hover`, and `headers`
90
- - `Table`'s `caption` prop is now required
91
- - `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
92
-
93
-
94
-
95
-
77
+ * `Table`'s `caption` prop is now required
78
+ * `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
96
79
 
97
80
  # [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
98
81
 
99
82
  **Note:** Version bump only for package @instructure/ui-pagination
100
83
 
101
-
102
-
103
-
104
-
105
84
  # [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
106
85
 
107
-
108
86
  ### Features
109
87
 
110
- * **ui-pagination:** add onMouseEnter to Pagination ([327fe69](https://github.com/instructure/instructure-ui/commit/327fe69f15ac34e2efe5bb6d0580d8e07bcd6147))
111
-
112
-
113
-
114
-
88
+ - **ui-pagination:** add onMouseEnter to Pagination ([327fe69](https://github.com/instructure/instructure-ui/commit/327fe69f15ac34e2efe5bb6d0580d8e07bcd6147))
115
89
 
116
90
  ## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
117
91
 
118
92
  **Note:** Version bump only for package @instructure/ui-pagination
119
93
 
120
-
121
-
122
-
123
-
124
94
  ## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
125
95
 
126
96
  **Note:** Version bump only for package @instructure/ui-pagination
127
97
 
128
-
129
-
130
-
131
-
132
98
  # [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
133
99
 
134
100
  **Note:** Version bump only for package @instructure/ui-pagination
135
101
 
136
-
137
-
138
-
139
-
140
102
  # [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
141
103
 
142
104
  **Note:** Version bump only for package @instructure/ui-pagination
143
105
 
144
-
145
-
146
-
147
-
148
106
  # [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
149
107
 
150
-
151
108
  ### Features
152
109
 
153
- * **ui-pagination:** add prop to customize screenreader label on buttons ([66e222c](https://github.com/instructure/instructure-ui/commit/66e222c943b1b1dbfbcbf8657fa868578e91ba5b))
154
-
155
-
156
-
157
-
110
+ - **ui-pagination:** add prop to customize screenreader label on buttons ([66e222c](https://github.com/instructure/instructure-ui/commit/66e222c943b1b1dbfbcbf8657fa868578e91ba5b))
158
111
 
159
112
  # [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
160
113
 
161
114
  **Note:** Version bump only for package @instructure/ui-pagination
162
115
 
163
-
164
-
165
-
166
-
167
116
  ## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
168
117
 
169
118
  **Note:** Version bump only for package @instructure/ui-pagination
170
119
 
171
-
172
-
173
-
174
-
175
120
  # [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
176
121
 
177
-
178
122
  ### Bug Fixes
179
123
 
180
- * **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
181
-
182
-
183
-
184
-
124
+ - **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
185
125
 
186
126
  ## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
187
127
 
188
128
  **Note:** Version bump only for package @instructure/ui-pagination
189
129
 
190
-
191
-
192
-
193
-
194
130
  # [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
195
131
 
196
132
  **Note:** Version bump only for package @instructure/ui-pagination
197
133
 
198
-
199
-
200
-
201
-
202
134
  ## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
203
135
 
204
136
  **Note:** Version bump only for package @instructure/ui-pagination
205
137
 
206
-
207
-
208
-
209
-
210
138
  # [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
211
139
 
212
140
  **Note:** Version bump only for package @instructure/ui-pagination
213
141
 
214
-
215
-
216
-
217
-
218
142
  # [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
219
143
 
220
144
  **Note:** Version bump only for package @instructure/ui-pagination
221
145
 
222
-
223
-
224
-
225
-
226
146
  ## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
227
147
 
228
148
  **Note:** Version bump only for package @instructure/ui-pagination
229
149
 
230
-
231
-
232
-
233
-
234
150
  ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
235
151
 
236
152
  **Note:** Version bump only for package @instructure/ui-pagination
237
153
 
238
-
239
-
240
-
241
-
242
154
  ## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
243
155
 
244
156
  **Note:** Version bump only for package @instructure/ui-pagination
245
157
 
246
-
247
-
248
-
249
-
250
158
  ## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
251
159
 
252
160
  **Note:** Version bump only for package @instructure/ui-pagination
253
161
 
254
-
255
-
256
-
257
-
258
162
  # [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
259
163
 
260
164
  **Note:** Version bump only for package @instructure/ui-pagination
261
165
 
262
-
263
-
264
-
265
-
266
166
  ## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
267
167
 
268
-
269
168
  ### Bug Fixes
270
169
 
271
- * update PropTypes to align with the new spacing tokens ([223d55b](https://github.com/instructure/instructure-ui/commit/223d55bad95e2a3a8b298d622e5b1d0fbab6b289))
272
-
273
-
274
-
275
-
170
+ - update PropTypes to align with the new spacing tokens ([223d55b](https://github.com/instructure/instructure-ui/commit/223d55bad95e2a3a8b298d622e5b1d0fbab6b289))
276
171
 
277
172
  ## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
278
173
 
279
-
280
174
  ### Bug Fixes
281
175
 
282
- * **ui-pagination:** make Pagination wrap on smaller screen sizes and prevent scrollbars ([75e1540](https://github.com/instructure/instructure-ui/commit/75e154062530c141a380624f4590b517d8b9e691))
283
-
284
-
285
-
286
-
176
+ - **ui-pagination:** make Pagination wrap on smaller screen sizes and prevent scrollbars ([75e1540](https://github.com/instructure/instructure-ui/commit/75e154062530c141a380624f4590b517d8b9e691))
287
177
 
288
178
  # [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
289
179
 
290
180
  **Note:** Version bump only for package @instructure/ui-pagination
291
181
 
292
-
293
-
294
-
295
-
296
182
  # [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
297
183
 
298
184
  **Note:** Version bump only for package @instructure/ui-pagination
299
185
 
300
-
301
-
302
-
303
-
304
186
  # [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
305
187
 
306
-
307
188
  ### Bug Fixes
308
189
 
309
- * **ui-pagination:** remove padding from legacy Pagination ([dd2638e](https://github.com/instructure/instructure-ui/commit/dd2638e163505fd9d65359b547fcf34dd4846941))
310
-
311
-
312
-
313
-
190
+ - **ui-pagination:** remove padding from legacy Pagination ([dd2638e](https://github.com/instructure/instructure-ui/commit/dd2638e163505fd9d65359b547fcf34dd4846941))
314
191
 
315
192
  # [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
316
193
 
317
-
318
194
  ### Bug Fixes
319
195
 
320
- * **ui-pagination:** remove margin from legacy Pagination ([4dacbf8](https://github.com/instructure/instructure-ui/commit/4dacbf8108d78c68c1946aff0a4ac7570ef8fe6e))
321
-
322
-
323
-
324
-
196
+ - **ui-pagination:** remove margin from legacy Pagination ([4dacbf8](https://github.com/instructure/instructure-ui/commit/4dacbf8108d78c68c1946aff0a4ac7570ef8fe6e))
325
197
 
326
198
  # [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
327
199
 
328
-
329
200
  ### Bug Fixes
330
201
 
331
- * **ui-pagination:** fix Pagination sometimes displaying non li elements in lists, fix key errors too ([1dbe539](https://github.com/instructure/instructure-ui/commit/1dbe53995c5eca96711024e86151eb0bbcf7e1f4))
332
-
333
-
334
-
335
-
202
+ - **ui-pagination:** fix Pagination sometimes displaying non li elements in lists, fix key errors too ([1dbe539](https://github.com/instructure/instructure-ui/commit/1dbe53995c5eca96711024e86151eb0bbcf7e1f4))
336
203
 
337
204
  # [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
338
205
 
339
206
  **Note:** Version bump only for package @instructure/ui-pagination
340
207
 
341
-
342
-
343
-
344
-
345
208
  # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
346
209
 
347
-
348
210
  ### Bug Fixes
349
211
 
350
- * **ui-pagination:** fix color of pageInput's label ([b91cfe1](https://github.com/instructure/instructure-ui/commit/b91cfe1e77eeeb9956a87ac01d3ee4598d304a5a))
351
-
352
-
353
-
354
-
212
+ - **ui-pagination:** fix color of pageInput's label ([b91cfe1](https://github.com/instructure/instructure-ui/commit/b91cfe1e77eeeb9956a87ac01d3ee4598d304a5a))
355
213
 
356
214
  # [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
357
215
 
358
216
  **Note:** Version bump only for package @instructure/ui-pagination
359
217
 
360
-
361
-
362
-
363
-
364
218
  # [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
365
219
 
366
220
  **Note:** Version bump only for package @instructure/ui-pagination
367
221
 
368
-
369
-
370
-
371
-
372
222
  ## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
373
223
 
374
-
375
224
  ### Bug Fixes
376
225
 
377
- * **shared-types,ui-pagination:** pagination indicators have spacing and coded as a list for a11y ([e6e5a7b](https://github.com/instructure/instructure-ui/commit/e6e5a7b6cda158f16cf0d86787130877b9c22a75))
378
-
379
-
380
-
381
-
226
+ - **shared-types,ui-pagination:** pagination indicators have spacing and coded as a list for a11y ([e6e5a7b](https://github.com/instructure/instructure-ui/commit/e6e5a7b6cda158f16cf0d86787130877b9c22a75))
382
227
 
383
228
  # [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
384
229
 
385
230
  **Note:** Version bump only for package @instructure/ui-pagination
386
231
 
387
-
388
-
389
-
390
-
391
232
  # [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
392
233
 
393
234
  **Note:** Version bump only for package @instructure/ui-pagination
394
235
 
395
-
396
-
397
-
398
-
399
236
  ## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
400
237
 
401
-
402
238
  ### Bug Fixes
403
239
 
404
- * update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
405
-
406
-
407
-
408
-
240
+ - update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
409
241
 
410
242
  # [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
411
243
 
412
244
  **Note:** Version bump only for package @instructure/ui-pagination
413
245
 
414
-
415
-
416
-
417
-
418
246
  # [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
419
247
 
420
-
421
248
  ### Bug Fixes
422
249
 
423
- * **ui-pagination:** fix pagination with numberinput when onBlur it calls onPage change every time, even where there are no changes ([38e75c4](https://github.com/instructure/instructure-ui/commit/38e75c4f610455128d0c3d19181a14823e150f4f))
424
-
425
-
426
-
427
-
250
+ - **ui-pagination:** fix pagination with numberinput when onBlur it calls onPage change every time, even where there are no changes ([38e75c4](https://github.com/instructure/instructure-ui/commit/38e75c4f610455128d0c3d19181a14823e150f4f))
428
251
 
429
252
  ## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
430
253
 
431
254
  **Note:** Version bump only for package @instructure/ui-pagination
432
255
 
433
-
434
-
435
-
436
-
437
256
  ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
438
257
 
439
258
  **Note:** Version bump only for package @instructure/ui-pagination
440
259
 
441
-
442
-
443
-
444
-
445
260
  # [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
446
261
 
447
262
  **Note:** Version bump only for package @instructure/ui-pagination
448
263
 
449
-
450
-
451
-
452
-
453
264
  # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
454
265
 
455
266
  **Note:** Version bump only for package @instructure/ui-pagination
456
267
 
457
-
458
-
459
-
460
-
461
268
  # [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
462
269
 
463
270
  **Note:** Version bump only for package @instructure/ui-pagination
464
271
 
465
-
466
-
467
-
468
-
469
272
  ## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
470
273
 
471
274
  **Note:** Version bump only for package @instructure/ui-pagination
472
275
 
473
-
474
-
475
-
476
-
477
276
  # [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
478
277
 
479
278
  **Note:** Version bump only for package @instructure/ui-pagination
480
279
 
481
-
482
-
483
-
484
-
485
280
  # [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
486
281
 
487
282
  **Note:** Version bump only for package @instructure/ui-pagination
488
283
 
489
-
490
-
491
-
492
-
493
284
  # [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
494
285
 
495
286
  **Note:** Version bump only for package @instructure/ui-pagination
496
287
 
497
-
498
-
499
-
500
-
501
288
  # [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
502
289
 
503
-
504
290
  ### Bug Fixes
505
291
 
506
- * **ui-number-input,ui-pagination:** set numberinput type to number ([19f27f5](https://github.com/instructure/instructure-ui/commit/19f27f57470b4c9c5728009eae6b1fddcbb78695))
507
-
508
-
509
-
510
-
292
+ - **ui-number-input,ui-pagination:** set numberinput type to number ([19f27f5](https://github.com/instructure/instructure-ui/commit/19f27f57470b4c9c5728009eae6b1fddcbb78695))
511
293
 
512
294
  # [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
513
295
 
514
296
  **Note:** Version bump only for package @instructure/ui-pagination
515
297
 
516
-
517
-
518
-
519
-
520
298
  ## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
521
299
 
522
300
  **Note:** Version bump only for package @instructure/ui-pagination
523
301
 
524
-
525
-
526
-
527
-
528
302
  # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
529
303
 
530
304
  **Note:** Version bump only for package @instructure/ui-pagination
531
305
 
532
-
533
-
534
-
535
-
536
306
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
537
307
 
538
308
  **Note:** Version bump only for package @instructure/ui-pagination
539
309
 
540
-
541
-
542
-
543
-
544
310
  ## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
545
311
 
546
312
  **Note:** Version bump only for package @instructure/ui-pagination
547
313
 
548
-
549
-
550
-
551
-
552
314
  # [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
553
315
 
554
316
  **Note:** Version bump only for package @instructure/ui-pagination
555
317
 
556
-
557
-
558
-
559
-
560
318
  # [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
561
319
 
562
320
  **Note:** Version bump only for package @instructure/ui-pagination
563
321
 
564
-
565
-
566
-
567
-
568
322
  ## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
569
323
 
570
324
  **Note:** Version bump only for package @instructure/ui-pagination
571
325
 
572
-
573
-
574
-
575
-
576
326
  ## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
577
327
 
578
328
  **Note:** Version bump only for package @instructure/ui-pagination
579
329
 
580
-
581
-
582
-
583
-
584
330
  # [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
585
331
 
586
332
  **Note:** Version bump only for package @instructure/ui-pagination
@@ -25,9 +25,9 @@ const _excluded = ["label", "direction", "buttonRef"];
25
25
  */
26
26
 
27
27
  import { Component } from 'react';
28
- import { IconButton } from '@instructure/ui-buttons';
28
+ import { IconButton } from '@instructure/ui-buttons/v11_6';
29
29
  import { PresentationContent } from '@instructure/ui-a11y-content';
30
- import { Tooltip } from '@instructure/ui-tooltip';
30
+ import { Tooltip } from '@instructure/ui-tooltip/v11_6';
31
31
  import { IconArrowOpenStartSolid, IconArrowOpenEndSolid, IconArrowDoubleStartSolid, IconArrowDoubleEndSolid } from '@instructure/ui-icons';
32
32
  import { allowedProps } from "./props.js";
33
33
  /**
@@ -23,7 +23,7 @@
23
23
  */
24
24
 
25
25
  import { Component } from 'react';
26
- import { BaseButton } from '@instructure/ui-buttons';
26
+ import { BaseButton } from '@instructure/ui-buttons/v11_6';
27
27
  import { omitProps } from '@instructure/ui-react-utils';
28
28
  import { allowedProps } from "./props.js";
29
29
  import { jsx as _jsx } from "@emotion/react/jsx-runtime";
@@ -25,7 +25,7 @@ var _dec, _class, _PaginationPageInput;
25
25
 
26
26
  import { Component } from 'react';
27
27
  import { withStyle } from '@instructure/emotion';
28
- import { NumberInput } from '@instructure/ui-number-input';
28
+ import { NumberInput } from '@instructure/ui-number-input/v11_6';
29
29
  import { ScreenReaderContent } from '@instructure/ui-a11y-content';
30
30
  import generateStyle from "./styles.js";
31
31
  import generateComponentTheme from "./theme.js";
@@ -23,7 +23,7 @@ var _dec, _dec2, _class, _Pagination;
23
23
  * SOFTWARE.
24
24
  */
25
25
  import { cloneElement, Children, Component } from 'react';
26
- import { View } from '@instructure/ui-view';
26
+ import { View } from '@instructure/ui-view/v11_6';
27
27
  import { omitProps, withDeterministicId } from '@instructure/ui-react-utils';
28
28
  import { hasVisibleChildren } from '@instructure/ui-a11y-utils';
29
29
  import { findTabbable, getActiveElement } from '@instructure/ui-dom-utils';