@dt-dds/react-icon 1.0.0-beta.42 → 1.0.0-beta.43
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 +15 -0
- package/dist/index.d.ts +3 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @dt-ui/react-icon
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.43
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat: add new themes package
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- chore: update imports and deps
|
|
12
|
+
- chore: rebase with main branch
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @dt-dds/react-core@1.0.0-beta.42
|
|
17
|
+
|
|
3
18
|
## 1.0.0-beta.42
|
|
4
19
|
|
|
5
20
|
### Major Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
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
|
|
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.
|
|
3
|
+
"version": "1.0.0-beta.43",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@dt-dds/icons": "1.0.0-beta.4",
|
|
24
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
24
|
+
"@dt-dds/react-core": "1.0.0-beta.42"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/core": "^7.22.9",
|