@dt-dds/react-icon 1.0.0-beta.42 → 1.0.0-beta.44

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,38 @@
1
1
  # @dt-ui/react-icon
2
2
 
3
+ ## 1.0.0-beta.44
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/themes@1.0.0-beta.3
20
+
21
+ ## 1.0.0-beta.43
22
+
23
+ ### Minor Changes
24
+
25
+ - feat: add new themes package
26
+
27
+ ### Patch Changes
28
+
29
+ - chore: update imports and deps
30
+ - chore: rebase with main branch
31
+ - Updated dependencies
32
+ - Updated dependencies
33
+ - Updated dependencies
34
+ - @dt-dds/react-core@1.0.0-beta.42
35
+
3
36
  ## 1.0.0-beta.42
4
37
 
5
38
  ### Major Changes
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
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
3
  import { Code } from '@dt-dds/icons';
4
+ import { BaseProps } from '@dt-dds/react-core';
4
5
 
5
6
  type Variant = 'outlined' | 'filled';
6
7
 
@@ -15,7 +16,7 @@ interface IconProps extends Omit<BaseProps, 'children'> {
15
16
  declare const Icon: ({ code, color, dataTestId, size, style, variant, }: IconProps) => react_jsx_runtime.JSX.Element;
16
17
 
17
18
  declare module '@emotion/react' {
18
- interface Theme extends Theme {
19
+ interface Theme extends CustomTheme {
19
20
  }
20
21
  }
21
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-icon",
3
- "version": "1.0.0-beta.42",
3
+ "version": "1.0.0-beta.44",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -21,7 +21,8 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@dt-dds/icons": "1.0.0-beta.4",
24
- "@dt-dds/react-core": "1.0.0-beta.41"
24
+ "@dt-dds/react-core": "1.0.0-beta.43",
25
+ "@dt-dds/themes": "1.0.0-beta.3"
25
26
  },
26
27
  "devDependencies": {
27
28
  "@babel/core": "^7.22.9",