@dt-dds/react-accordion 1.0.0-beta.53 → 1.0.0-beta.54
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 +13 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @dt-ui/react-accordion
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.54
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(config): update ESLint, TS, and Storybook config
|
|
8
|
+
- fix(icon-button): add missing @dt-dds/react-icon devDependency
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @dt-dds/react-core@1.0.0-beta.52
|
|
12
|
+
- @dt-dds/react-divider@1.0.0-beta.51
|
|
13
|
+
- @dt-dds/react-icon@1.0.0-beta.55
|
|
14
|
+
- @dt-dds/themes@1.0.0-beta.10
|
|
15
|
+
|
|
3
16
|
## 1.0.0-beta.53
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
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';
|
|
4
3
|
import { ReactNode } from 'react';
|
|
4
|
+
import { BaseProps } from '@dt-dds/react-core';
|
|
5
5
|
|
|
6
6
|
interface AccordionBaseProps extends BaseProps {
|
|
7
7
|
isOpen?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
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';
|
|
4
3
|
import { ReactNode } from 'react';
|
|
4
|
+
import { BaseProps } from '@dt-dds/react-core';
|
|
5
5
|
|
|
6
6
|
interface AccordionBaseProps extends BaseProps {
|
|
7
7
|
isOpen?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -65,8 +65,8 @@ var AccordionStyled = import_styled.default.div`
|
|
|
65
65
|
`;
|
|
66
66
|
|
|
67
67
|
// src/components/header/AccordionHeader.tsx
|
|
68
|
-
var import_react_icon = require("@dt-dds/react-icon");
|
|
69
68
|
var import_react = require("@emotion/react");
|
|
69
|
+
var import_react_icon = require("@dt-dds/react-icon");
|
|
70
70
|
|
|
71
71
|
// src/components/header/AccordionHeader.styled.ts
|
|
72
72
|
var import_styled2 = __toESM(require("@emotion/styled"));
|
package/dist/index.mjs
CHANGED
|
@@ -29,8 +29,8 @@ var AccordionStyled = styled.div`
|
|
|
29
29
|
`;
|
|
30
30
|
|
|
31
31
|
// src/components/header/AccordionHeader.tsx
|
|
32
|
-
import { Icon } from "@dt-dds/react-icon";
|
|
33
32
|
import { useTheme } from "@emotion/react";
|
|
33
|
+
import { Icon } from "@dt-dds/react-icon";
|
|
34
34
|
|
|
35
35
|
// src/components/header/AccordionHeader.styled.ts
|
|
36
36
|
import styled2 from "@emotion/styled";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-accordion",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.54",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/react-divider": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/react-icon": "1.0.0-beta.
|
|
26
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-core": "1.0.0-beta.52",
|
|
24
|
+
"@dt-dds/react-divider": "1.0.0-beta.51",
|
|
25
|
+
"@dt-dds/react-icon": "1.0.0-beta.55",
|
|
26
|
+
"@dt-dds/themes": "1.0.0-beta.10"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@babel/core": "^7.22.9",
|