@dt-dds/react-icon-button 1.0.0-beta.20 → 1.0.0-beta.22
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 +21 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @dt-ui/react-icon-button
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.22
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(core): share responsive HOC from core package
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @dt-dds/react-core@1.0.0-beta.53
|
|
13
|
+
|
|
14
|
+
## 1.0.0-beta.21
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- fix(config): update ESLint, TS, and Storybook config
|
|
19
|
+
- fix(icon-button): add missing @dt-dds/react-icon devDependency
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @dt-dds/react-core@1.0.0-beta.52
|
|
22
|
+
- @dt-dds/themes@1.0.0-beta.10
|
|
23
|
+
|
|
3
24
|
## 1.0.0-beta.20
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { CustomTheme } from '@dt-dds/themes';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import { BaseProps, ComponentSize } from '@dt-dds/react-core';
|
|
4
|
-
import { css } from '@emotion/react';
|
|
5
3
|
import { ComponentPropsWithoutRef } from 'react';
|
|
4
|
+
import { css } from '@emotion/react';
|
|
5
|
+
import { BaseProps, ComponentSize } from '@dt-dds/react-core';
|
|
6
6
|
|
|
7
7
|
type IconButtonVariant = 'contrast' | 'default';
|
|
8
8
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { CustomTheme } from '@dt-dds/themes';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import { BaseProps, ComponentSize } from '@dt-dds/react-core';
|
|
4
|
-
import { css } from '@emotion/react';
|
|
5
3
|
import { ComponentPropsWithoutRef } from 'react';
|
|
4
|
+
import { css } from '@emotion/react';
|
|
5
|
+
import { BaseProps, ComponentSize } from '@dt-dds/react-core';
|
|
6
6
|
|
|
7
7
|
type IconButtonVariant = 'contrast' | 'default';
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-icon-button",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.22",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,14 +20,15 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-core": "1.0.0-beta.53",
|
|
24
|
+
"@dt-dds/themes": "1.0.0-beta.10"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/core": "^7.22.9",
|
|
28
28
|
"@babel/preset-env": "^7.22.9",
|
|
29
29
|
"@babel/preset-react": "^7.22.5",
|
|
30
30
|
"@babel/preset-typescript": "^7.23.3",
|
|
31
|
+
"@dt-dds/react-icon": "1.0.0-beta.56",
|
|
31
32
|
"@emotion/babel-plugin": "^11.11.0",
|
|
32
33
|
"@emotion/css": "^11.7.1",
|
|
33
34
|
"@emotion/jest": "^11.10.0",
|