@dt-dds/react-dropdown 1.0.0-beta.72 → 1.0.0-beta.74

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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @dt-ui/react-dropdown
2
2
 
3
+ ## 1.0.0-beta.74
4
+
5
+ ### Minor Changes
6
+
7
+ - feat: remove styles from Dropdown
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [223664b]
12
+ - @dt-dds/react-box@1.0.0-beta.53
13
+
14
+ ## 1.0.0-beta.73
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [223664b]
19
+ - @dt-dds/react-box@1.0.0-beta.52
20
+
3
21
  ## 1.0.0-beta.72
4
22
 
5
23
  ### Patch Changes
package/dist/index.js CHANGED
@@ -158,13 +158,6 @@ var DropdownStyled = import_styled2.default.div`
158
158
  list-style-type: none;
159
159
  width: 100%;
160
160
  overflow: auto;
161
-
162
- ${({ theme }) => `
163
- padding: ${theme.spacing.spacing_50} ${theme.spacing.spacing_0};
164
- background-color: ${theme.palette.surface.contrast};
165
- border-radius: ${theme.shape.dropdown};
166
- border: 1px solid ${theme.palette.border.medium};
167
- `}
168
161
  `;
169
162
 
170
163
  // src/hooks/useFloatingPosition.ts
package/dist/index.mjs CHANGED
@@ -124,13 +124,6 @@ var DropdownStyled = styled2.div`
124
124
  list-style-type: none;
125
125
  width: 100%;
126
126
  overflow: auto;
127
-
128
- ${({ theme }) => `
129
- padding: ${theme.spacing.spacing_50} ${theme.spacing.spacing_0};
130
- background-color: ${theme.palette.surface.contrast};
131
- border-radius: ${theme.shape.dropdown};
132
- border: 1px solid ${theme.palette.border.medium};
133
- `}
134
127
  `;
135
128
 
136
129
  // src/hooks/useFloatingPosition.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-dropdown",
3
- "version": "1.0.0-beta.72",
3
+ "version": "1.0.0-beta.74",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -20,7 +20,7 @@
20
20
  "test:update:snapshot": "jest -u"
21
21
  },
22
22
  "dependencies": {
23
- "@dt-dds/react-box": "1.0.0-beta.51",
23
+ "@dt-dds/react-box": "1.0.0-beta.53",
24
24
  "@dt-dds/react-core": "1.0.0-beta.51",
25
25
  "@dt-dds/react-icon": "1.0.0-beta.54",
26
26
  "@dt-dds/react-icon-button": "1.0.0-beta.20",