@dt-dds/react-tag 1.0.0-beta.64 → 1.0.0-beta.66

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,26 @@
1
1
  # @dt-ui/react-tag
2
2
 
3
+ ## 1.0.0-beta.66
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: change tag first-child to first-of-type
8
+
9
+ ## 1.0.0-beta.65
10
+
11
+ ### Patch Changes
12
+
13
+ - chore: update to ESLint 10
14
+ - chore: update to ESLint 9
15
+ - fix: default icon type in themes
16
+ - Updated dependencies
17
+ - Updated dependencies
18
+ - Updated dependencies
19
+ - @dt-dds/react-core@1.0.0-beta.60
20
+ - @dt-dds/react-tooltip@1.0.0-beta.70
21
+ - @dt-dds/react-icon@1.0.0-beta.64
22
+ - @dt-dds/themes@1.0.0-beta.15
23
+
3
24
  ## 1.0.0-beta.64
4
25
 
5
26
  ### Patch Changes
package/dist/index.js CHANGED
@@ -150,7 +150,7 @@ var TagStyled = import_styled.default.div(
150
150
  gap: theme.spacing.spacing_20,
151
151
  borderRadius: theme.radius[border === "rounded" ? "radius_70" : "radius_0"],
152
152
  width: "150px",
153
- ["> :first-child"]: {
153
+ ["> span:first-of-type"]: {
154
154
  whiteSpace: "nowrap",
155
155
  display: "block",
156
156
  overflow: "hidden",
package/dist/index.mjs CHANGED
@@ -117,7 +117,7 @@ var TagStyled = styled.div(
117
117
  gap: theme.spacing.spacing_20,
118
118
  borderRadius: theme.radius[border === "rounded" ? "radius_70" : "radius_0"],
119
119
  width: "150px",
120
- ["> :first-child"]: {
120
+ ["> span:first-of-type"]: {
121
121
  whiteSpace: "nowrap",
122
122
  display: "block",
123
123
  overflow: "hidden",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-tag",
3
- "version": "1.0.0-beta.64",
3
+ "version": "1.0.0-beta.66",
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.59",
24
- "@dt-dds/react-tooltip": "1.0.0-beta.69",
25
- "@dt-dds/react-icon": "1.0.0-beta.63",
26
- "@dt-dds/themes": "1.0.0-beta.14"
23
+ "@dt-dds/react-core": "1.0.0-beta.60",
24
+ "@dt-dds/react-tooltip": "1.0.0-beta.70",
25
+ "@dt-dds/react-icon": "1.0.0-beta.64",
26
+ "@dt-dds/themes": "1.0.0-beta.15"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/core": "^7.22.9",