@atlaskit/pagination 14.1.6 → 14.1.7
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 +6 -0
- package/dist/cjs/pagination.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/pagination.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/pagination.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/types.d.ts +11 -11
- package/package.json +1 -1
- package/types/package.json +1 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/pagination.js
CHANGED
|
@@ -42,7 +42,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
42
42
|
var analyticsAttributes = {
|
|
43
43
|
componentName: 'pagination',
|
|
44
44
|
packageName: "@atlaskit/pagination",
|
|
45
|
-
packageVersion: "14.1.
|
|
45
|
+
packageVersion: "14.1.7"
|
|
46
46
|
};
|
|
47
47
|
var navStyles = (0, _core.css)({
|
|
48
48
|
display: 'flex'
|
package/dist/cjs/version.json
CHANGED
|
@@ -14,7 +14,7 @@ import collapseRange from './internal/utils/collapse-range';
|
|
|
14
14
|
const analyticsAttributes = {
|
|
15
15
|
componentName: 'pagination',
|
|
16
16
|
packageName: "@atlaskit/pagination",
|
|
17
|
-
packageVersion: "14.1.
|
|
17
|
+
packageVersion: "14.1.7"
|
|
18
18
|
};
|
|
19
19
|
const navStyles = css({
|
|
20
20
|
display: 'flex'
|
package/dist/es2019/version.json
CHANGED
package/dist/esm/pagination.js
CHANGED
|
@@ -21,7 +21,7 @@ import collapseRange from './internal/utils/collapse-range';
|
|
|
21
21
|
var analyticsAttributes = {
|
|
22
22
|
componentName: 'pagination',
|
|
23
23
|
packageName: "@atlaskit/pagination",
|
|
24
|
-
packageVersion: "14.1.
|
|
24
|
+
packageVersion: "14.1.7"
|
|
25
25
|
};
|
|
26
26
|
var navStyles = css({
|
|
27
27
|
display: 'flex'
|
package/dist/esm/version.json
CHANGED
package/dist/types/types.d.ts
CHANGED
|
@@ -34,16 +34,16 @@ export interface PaginationPropTypes<T = unknown> {
|
|
|
34
34
|
/** Additional information to be included in the `context` of analytics events */
|
|
35
35
|
analyticsContext?: Record<string, any>;
|
|
36
36
|
/**
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
37
|
+
A `testId` prop is provided for specified elements,
|
|
38
|
+
which is a unique string that appears as a data attribute `data-testid`
|
|
39
|
+
in the rendered code, serving as a hook for automated tests.
|
|
40
|
+
|
|
41
|
+
Will set data-testid on these elements when defined:
|
|
42
|
+
- Pagination nav wrapper - {testId}
|
|
43
|
+
- Page - {testId}--page-{page index}
|
|
44
|
+
- Current page - {testId}--current-page-{page index}
|
|
45
|
+
- Left navigator - {testId}--left-navigator
|
|
46
|
+
- Right navigator - {testId}--right-navigator
|
|
47
|
+
*/
|
|
48
48
|
testId?: string;
|
|
49
49
|
}
|
package/package.json
CHANGED