@dt-dds/react-icon 1.0.0-beta.61 → 1.0.0-beta.63
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 +18 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @dt-ui/react-icon
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.63
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: add displayName to Icon and IconButton for production builds
|
|
8
|
+
|
|
9
|
+
## 1.0.0-beta.62
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- feat: change theme icons to sharp
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @dt-dds/themes@1.0.0-beta.14
|
|
19
|
+
- @dt-dds/react-core@1.0.0-beta.59
|
|
20
|
+
|
|
3
21
|
## 1.0.0-beta.61
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -11,7 +11,10 @@ interface IconProps extends Omit<BaseProps, 'children'> {
|
|
|
11
11
|
size?: ComponentSize;
|
|
12
12
|
variant?: Variant;
|
|
13
13
|
}
|
|
14
|
-
declare const Icon:
|
|
14
|
+
declare const Icon: {
|
|
15
|
+
({ code, color, dataTestId, size, style, variant, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
15
18
|
|
|
16
19
|
declare module '@emotion/react' {
|
|
17
20
|
interface Theme extends CustomTheme {
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,10 @@ interface IconProps extends Omit<BaseProps, 'children'> {
|
|
|
11
11
|
size?: ComponentSize;
|
|
12
12
|
variant?: Variant;
|
|
13
13
|
}
|
|
14
|
-
declare const Icon:
|
|
14
|
+
declare const Icon: {
|
|
15
|
+
({ code, color, dataTestId, size, style, variant, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
15
18
|
|
|
16
19
|
declare module '@emotion/react' {
|
|
17
20
|
interface Theme extends CustomTheme {
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
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.63",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@dt-dds/icons": "1.0.0-beta.6",
|
|
24
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
24
|
+
"@dt-dds/react-core": "1.0.0-beta.59",
|
|
25
|
+
"@dt-dds/themes": "1.0.0-beta.14"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/core": "^7.22.9",
|