@instructure/ui-pagination 11.7.3-snapshot-32 → 11.7.3-snapshot-37
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 +1 -1
- package/es/Pagination/v2/PaginationPageInput/index.js +2 -2
- package/es/Pagination/v2/index.js +2 -2
- package/lib/Pagination/v2/PaginationPageInput/index.js +1 -1
- package/lib/Pagination/v2/index.js +1 -1
- package/package.json +19 -19
- package/src/Pagination/v2/PaginationPageInput/index.tsx +2 -2
- package/src/Pagination/v2/index.tsx +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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.7.3-snapshot-
|
|
6
|
+
## [11.7.3-snapshot-37](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-37) (2026-05-07)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
@@ -24,7 +24,7 @@ var _dec, _class;
|
|
|
24
24
|
*/
|
|
25
25
|
|
|
26
26
|
import { Component } from 'react';
|
|
27
|
-
import {
|
|
27
|
+
import { withStyleNew } from '@instructure/emotion';
|
|
28
28
|
import { Text } from '@instructure/ui-text/latest';
|
|
29
29
|
import { NumberInput } from '@instructure/ui-number-input/latest';
|
|
30
30
|
import { ScreenReaderContent } from '@instructure/ui-a11y-content';
|
|
@@ -37,7 +37,7 @@ parent: Pagination
|
|
|
37
37
|
id: Pagination.PageInput
|
|
38
38
|
---
|
|
39
39
|
**/
|
|
40
|
-
let PaginationPageInput = (_dec =
|
|
40
|
+
let PaginationPageInput = (_dec = withStyleNew(generateStyle, 'PaginationPageInput'), _dec(_class = class PaginationPageInput extends Component {
|
|
41
41
|
static displayName = "PaginationPageInput";
|
|
42
42
|
static componentId = 'Pagination.PageInput';
|
|
43
43
|
static allowedProps = allowedProps;
|
|
@@ -29,7 +29,7 @@ import { View } from '@instructure/ui-view/latest';
|
|
|
29
29
|
import { omitProps, withDeterministicId } from '@instructure/ui-react-utils';
|
|
30
30
|
import { hasVisibleChildren } from '@instructure/ui-a11y-utils';
|
|
31
31
|
import { findTabbable, getActiveElement } from '@instructure/ui-dom-utils';
|
|
32
|
-
import {
|
|
32
|
+
import { withStyleNew } from '@instructure/emotion';
|
|
33
33
|
import { PaginationButton } from "./PaginationButton/index.js";
|
|
34
34
|
import { PaginationArrowButton } from "./PaginationArrowButton/index.js";
|
|
35
35
|
import { PaginationPageInput } from "./PaginationPageInput/index.js";
|
|
@@ -56,7 +56,7 @@ function propsHaveCompactView(props) {
|
|
|
56
56
|
category: components
|
|
57
57
|
---
|
|
58
58
|
**/
|
|
59
|
-
let Pagination = (_dec = withDeterministicId(), _dec2 =
|
|
59
|
+
let Pagination = (_dec = withDeterministicId(), _dec2 = withStyleNew(generateStyle), _dec(_class = _dec2(_class = class Pagination extends Component {
|
|
60
60
|
static displayName = "Pagination";
|
|
61
61
|
static componentId = 'Pagination';
|
|
62
62
|
static allowedProps = allowedProps;
|
|
@@ -43,7 +43,7 @@ parent: Pagination
|
|
|
43
43
|
id: Pagination.PageInput
|
|
44
44
|
---
|
|
45
45
|
**/
|
|
46
|
-
let PaginationPageInput = exports.PaginationPageInput = (_dec = (0, _emotion.
|
|
46
|
+
let PaginationPageInput = exports.PaginationPageInput = (_dec = (0, _emotion.withStyleNew)(_styles.default, 'PaginationPageInput'), _dec(_class = class PaginationPageInput extends _react.Component {
|
|
47
47
|
static displayName = "PaginationPageInput";
|
|
48
48
|
static componentId = 'Pagination.PageInput';
|
|
49
49
|
static allowedProps = _props.allowedProps;
|
|
@@ -72,7 +72,7 @@ function propsHaveCompactView(props) {
|
|
|
72
72
|
category: components
|
|
73
73
|
---
|
|
74
74
|
**/
|
|
75
|
-
let Pagination = exports.Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 = (0, _emotion.
|
|
75
|
+
let Pagination = exports.Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 = (0, _emotion.withStyleNew)(_styles.default), _dec(_class = _dec2(_class = class Pagination extends _react.Component {
|
|
76
76
|
static displayName = "Pagination";
|
|
77
77
|
static componentId = 'Pagination';
|
|
78
78
|
static allowedProps = _props.allowedProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-pagination",
|
|
3
|
-
"version": "11.7.3-snapshot-
|
|
3
|
+
"version": "11.7.3-snapshot-37",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,30 +15,30 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.2",
|
|
18
|
-
"@instructure/emotion": "11.7.3-snapshot-
|
|
19
|
-
"@instructure/ui-a11y-content": "11.7.3-snapshot-
|
|
20
|
-
"@instructure/shared-types": "11.7.3-snapshot-
|
|
21
|
-
"@instructure/ui-a11y-utils": "11.7.3-snapshot-
|
|
22
|
-
"@instructure/ui-buttons": "11.7.3-snapshot-
|
|
23
|
-
"@instructure/ui-dom-utils": "11.7.3-snapshot-
|
|
24
|
-
"@instructure/ui-icons": "11.7.3-snapshot-
|
|
25
|
-
"@instructure/ui-number-input": "11.7.3-snapshot-
|
|
26
|
-
"@instructure/ui-portal": "11.7.3-snapshot-
|
|
27
|
-
"@instructure/ui-react-utils": "11.7.3-snapshot-
|
|
28
|
-
"@instructure/ui-text": "11.7.3-snapshot-
|
|
29
|
-
"@instructure/ui-
|
|
30
|
-
"@instructure/ui-
|
|
31
|
-
"@instructure/ui-
|
|
32
|
-
"@instructure/
|
|
33
|
-
"@instructure/
|
|
18
|
+
"@instructure/emotion": "11.7.3-snapshot-37",
|
|
19
|
+
"@instructure/ui-a11y-content": "11.7.3-snapshot-37",
|
|
20
|
+
"@instructure/shared-types": "11.7.3-snapshot-37",
|
|
21
|
+
"@instructure/ui-a11y-utils": "11.7.3-snapshot-37",
|
|
22
|
+
"@instructure/ui-buttons": "11.7.3-snapshot-37",
|
|
23
|
+
"@instructure/ui-dom-utils": "11.7.3-snapshot-37",
|
|
24
|
+
"@instructure/ui-icons": "11.7.3-snapshot-37",
|
|
25
|
+
"@instructure/ui-number-input": "11.7.3-snapshot-37",
|
|
26
|
+
"@instructure/ui-portal": "11.7.3-snapshot-37",
|
|
27
|
+
"@instructure/ui-react-utils": "11.7.3-snapshot-37",
|
|
28
|
+
"@instructure/ui-text": "11.7.3-snapshot-37",
|
|
29
|
+
"@instructure/ui-tooltip": "11.7.3-snapshot-37",
|
|
30
|
+
"@instructure/ui-themes": "11.7.3-snapshot-37",
|
|
31
|
+
"@instructure/ui-view": "11.7.3-snapshot-37",
|
|
32
|
+
"@instructure/ui-utils": "11.7.3-snapshot-37",
|
|
33
|
+
"@instructure/uid": "11.7.3-snapshot-37"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@testing-library/jest-dom": "^6.6.3",
|
|
37
37
|
"@testing-library/react": "15.0.7",
|
|
38
38
|
"@testing-library/user-event": "^14.6.1",
|
|
39
39
|
"vitest": "^3.2.2",
|
|
40
|
-
"@instructure/ui-
|
|
41
|
-
"@instructure/ui-
|
|
40
|
+
"@instructure/ui-babel-preset": "11.7.3-snapshot-37",
|
|
41
|
+
"@instructure/ui-axe-check": "11.7.3-snapshot-37"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=18 <=19"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
import { Component } from 'react'
|
|
26
26
|
|
|
27
|
-
import {
|
|
27
|
+
import { withStyleNew } from '@instructure/emotion'
|
|
28
28
|
import { Text } from '@instructure/ui-text/latest'
|
|
29
29
|
import { NumberInput } from '@instructure/ui-number-input/latest'
|
|
30
30
|
import { ScreenReaderContent } from '@instructure/ui-a11y-content'
|
|
@@ -43,7 +43,7 @@ parent: Pagination
|
|
|
43
43
|
id: Pagination.PageInput
|
|
44
44
|
---
|
|
45
45
|
**/
|
|
46
|
-
@
|
|
46
|
+
@withStyleNew(generateStyle, 'PaginationPageInput')
|
|
47
47
|
class PaginationPageInput extends Component<
|
|
48
48
|
PaginationPageInputProps,
|
|
49
49
|
PaginationPageInputState
|
|
@@ -34,7 +34,7 @@ import { View } from '@instructure/ui-view/latest'
|
|
|
34
34
|
import { omitProps, withDeterministicId } from '@instructure/ui-react-utils'
|
|
35
35
|
import { hasVisibleChildren } from '@instructure/ui-a11y-utils'
|
|
36
36
|
import { findTabbable, getActiveElement } from '@instructure/ui-dom-utils'
|
|
37
|
-
import {
|
|
37
|
+
import { withStyleNew } from '@instructure/emotion'
|
|
38
38
|
|
|
39
39
|
import { PaginationButton } from './PaginationButton'
|
|
40
40
|
import { PaginationArrowButton } from './PaginationArrowButton'
|
|
@@ -85,7 +85,7 @@ category: components
|
|
|
85
85
|
---
|
|
86
86
|
**/
|
|
87
87
|
@withDeterministicId()
|
|
88
|
-
@
|
|
88
|
+
@withStyleNew(generateStyle)
|
|
89
89
|
class Pagination extends Component<PaginationProps> {
|
|
90
90
|
static readonly componentId = 'Pagination'
|
|
91
91
|
|