@dt-dds/react-pagination 1.0.0-beta.21 → 1.0.0-beta.23

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,5 +1,42 @@
1
1
  # @dt-ui/react-pagination
2
2
 
3
+ ## 1.0.0-beta.23
4
+
5
+ ### Minor Changes
6
+
7
+ - feat: add components generator
8
+
9
+ ### Patch Changes
10
+
11
+ - chore: fix test coverage configuration
12
+ - chore: increase themes test coverage
13
+ - chore: fix sonarqube issues
14
+ - Updated dependencies
15
+ - Updated dependencies
16
+ - Updated dependencies
17
+ - Updated dependencies
18
+ - @dt-dds/react-core@1.0.0-beta.43
19
+ - @dt-dds/react-icon@1.0.0-beta.44
20
+ - @dt-dds/react-typography@1.0.0-beta.34
21
+ - @dt-dds/themes@1.0.0-beta.3
22
+
23
+ ## 1.0.0-beta.22
24
+
25
+ ### Minor Changes
26
+
27
+ - feat: add new themes package
28
+
29
+ ### Patch Changes
30
+
31
+ - chore: update imports and deps
32
+ - chore: rebase with main branch
33
+ - Updated dependencies
34
+ - Updated dependencies
35
+ - Updated dependencies
36
+ - @dt-dds/react-core@1.0.0-beta.42
37
+ - @dt-dds/react-icon@1.0.0-beta.43
38
+ - @dt-dds/react-typography@1.0.0-beta.33
39
+
3
40
  ## 1.0.0-beta.21
4
41
 
5
42
  ### Major Changes
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- import { BaseProps, Theme } from '@dt-dds/react-core';
1
+ import { CustomTheme } from '@dt-dds/themes';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
+ import { BaseProps } from '@dt-dds/react-core';
3
4
  import React$1 from 'react';
4
5
 
5
6
  interface ContentProps {
@@ -31,7 +32,7 @@ declare const usePagination: () => {
31
32
  };
32
33
 
33
34
  declare module '@emotion/react' {
34
- interface Theme extends Theme {
35
+ interface Theme extends CustomTheme {
35
36
  }
36
37
  }
37
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-pagination",
3
- "version": "1.0.0-beta.21",
3
+ "version": "1.0.0-beta.23",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -20,9 +20,10 @@
20
20
  "test:update:snapshot": "jest -u"
21
21
  },
22
22
  "dependencies": {
23
- "@dt-dds/react-core": "1.0.0-beta.41",
24
- "@dt-dds/react-typography": "1.0.0-beta.32",
25
- "@dt-dds/react-icon": "1.0.0-beta.42"
23
+ "@dt-dds/react-core": "1.0.0-beta.43",
24
+ "@dt-dds/react-typography": "1.0.0-beta.34",
25
+ "@dt-dds/react-icon": "1.0.0-beta.44",
26
+ "@dt-dds/themes": "1.0.0-beta.3"
26
27
  },
27
28
  "devDependencies": {
28
29
  "@babel/core": "^7.22.9",