@dt-dds/react-dropdown 1.0.0-beta.103 → 1.0.0-beta.104
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.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @dt-ui/react-dropdown
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.104
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: dropdown documentation
|
|
8
|
+
- chore: update to ESLint 10
|
|
9
|
+
- chore: update to ESLint 9
|
|
10
|
+
- fix: default icon type in themes
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @dt-dds/react-core@1.0.0-beta.60
|
|
15
|
+
- @dt-dds/react-icon@1.0.0-beta.64
|
|
16
|
+
- @dt-dds/react-icon-button@1.0.0-beta.30
|
|
17
|
+
- @dt-dds/react-typography@1.0.0-beta.51
|
|
18
|
+
- @dt-dds/react-box@1.0.0-beta.77
|
|
19
|
+
- @dt-dds/themes@1.0.0-beta.15
|
|
20
|
+
|
|
3
21
|
## 1.0.0-beta.103
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -167,6 +167,7 @@ var DropdownOption = (0, import_react.forwardRef)(
|
|
|
167
167
|
);
|
|
168
168
|
}
|
|
169
169
|
);
|
|
170
|
+
DropdownOption.displayName = "Dropdown.Option";
|
|
170
171
|
|
|
171
172
|
// src/Dropdown.styled.ts
|
|
172
173
|
var import_styled2 = __toESM(require("@emotion/styled"));
|
|
@@ -396,6 +397,7 @@ var Dropdown = Object.assign(
|
|
|
396
397
|
Option: DropdownOption
|
|
397
398
|
}
|
|
398
399
|
);
|
|
400
|
+
Dropdown.displayName = "Dropdown";
|
|
399
401
|
// Annotate the CommonJS export names for ESM import in node:
|
|
400
402
|
0 && (module.exports = {
|
|
401
403
|
Dropdown,
|
package/dist/index.mjs
CHANGED
|
@@ -139,6 +139,7 @@ var DropdownOption = forwardRef(
|
|
|
139
139
|
);
|
|
140
140
|
}
|
|
141
141
|
);
|
|
142
|
+
DropdownOption.displayName = "Dropdown.Option";
|
|
142
143
|
|
|
143
144
|
// src/Dropdown.styled.ts
|
|
144
145
|
import styled2 from "@emotion/styled";
|
|
@@ -368,6 +369,7 @@ var Dropdown = Object.assign(
|
|
|
368
369
|
Option: DropdownOption
|
|
369
370
|
}
|
|
370
371
|
);
|
|
372
|
+
Dropdown.displayName = "Dropdown";
|
|
371
373
|
export {
|
|
372
374
|
Dropdown,
|
|
373
375
|
DropdownOption
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-dropdown",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.104",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-box": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/react-icon": "1.0.0-beta.
|
|
26
|
-
"@dt-dds/react-icon-button": "1.0.0-beta.
|
|
27
|
-
"@dt-dds/react-typography": "1.0.0-beta.
|
|
28
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-box": "1.0.0-beta.77",
|
|
24
|
+
"@dt-dds/react-core": "1.0.0-beta.60",
|
|
25
|
+
"@dt-dds/react-icon": "1.0.0-beta.64",
|
|
26
|
+
"@dt-dds/react-icon-button": "1.0.0-beta.30",
|
|
27
|
+
"@dt-dds/react-typography": "1.0.0-beta.51",
|
|
28
|
+
"@dt-dds/themes": "1.0.0-beta.15",
|
|
29
29
|
"focus-trap-react": "^11.0.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|