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

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,34 @@
1
1
  # @dt-ui/react-tag
2
2
 
3
+ ## 1.0.0-beta.67
4
+
5
+ ### Patch Changes
6
+
7
+ - docs: fixed multiple typos in markdown files.
8
+ - Updated dependencies
9
+ - @dt-dds/react-tooltip@1.0.0-beta.71
10
+
11
+ ## 1.0.0-beta.66
12
+
13
+ ### Patch Changes
14
+
15
+ - fix: change tag first-child to first-of-type
16
+
17
+ ## 1.0.0-beta.65
18
+
19
+ ### Patch Changes
20
+
21
+ - chore: update to ESLint 10
22
+ - chore: update to ESLint 9
23
+ - fix: default icon type in themes
24
+ - Updated dependencies
25
+ - Updated dependencies
26
+ - Updated dependencies
27
+ - @dt-dds/react-core@1.0.0-beta.60
28
+ - @dt-dds/react-tooltip@1.0.0-beta.70
29
+ - @dt-dds/react-icon@1.0.0-beta.64
30
+ - @dt-dds/themes@1.0.0-beta.15
31
+
3
32
  ## 1.0.0-beta.64
4
33
 
5
34
  ### 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.67",
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.71",
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",