@dt-dds/react-stepper 1.0.0-beta.40 → 1.0.0-beta.42

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,30 @@
1
1
  # @dt-ui/react-stepper
2
2
 
3
+ ## 1.0.0-beta.42
4
+
5
+ ### Minor Changes
6
+
7
+ - feat: implement new Dropdown
8
+ - feat: add native attributes to Typography
9
+ - feat: implement new Select field
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - Updated dependencies
15
+ - Updated dependencies
16
+ - @dt-dds/react-core@1.0.0-beta.51
17
+ - @dt-dds/react-icon@1.0.0-beta.53
18
+ - @dt-dds/react-typography@1.0.0-beta.42
19
+
20
+ ## 1.0.0-beta.41
21
+
22
+ ### Patch Changes
23
+
24
+ - refactor: use component size from core
25
+ - Updated dependencies
26
+ - @dt-dds/react-icon@1.0.0-beta.52
27
+
3
28
  ## 1.0.0-beta.40
4
29
 
5
30
  ### Patch Changes
package/dist/index.js CHANGED
@@ -184,7 +184,7 @@ var StepCounter = ({
184
184
  style: __spreadValues({
185
185
  borderWidth: 1
186
186
  }, isActive && { backgroundColor: bgColor }),
187
- children: isCompleted ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react_icon.Icon, { code: "check", color: theme.palette.surface.light, size: "s" }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
187
+ children: isCompleted ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_react_icon.Icon, { code: "check", color: theme.palette.surface.light, size: "small" }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
188
188
  import_react_typography.Typography,
189
189
  {
190
190
  color: color === "disabled" ? "content.light" : `${color}.default`,
package/dist/index.mjs CHANGED
@@ -148,7 +148,7 @@ var StepCounter = ({
148
148
  style: __spreadValues({
149
149
  borderWidth: 1
150
150
  }, isActive && { backgroundColor: bgColor }),
151
- children: isCompleted ? /* @__PURE__ */ jsx3(Icon, { code: "check", color: theme.palette.surface.light, size: "s" }) : /* @__PURE__ */ jsx3(
151
+ children: isCompleted ? /* @__PURE__ */ jsx3(Icon, { code: "check", color: theme.palette.surface.light, size: "small" }) : /* @__PURE__ */ jsx3(
152
152
  Typography,
153
153
  {
154
154
  color: color === "disabled" ? "content.light" : `${color}.default`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-stepper",
3
- "version": "1.0.0-beta.40",
3
+ "version": "1.0.0-beta.42",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -20,9 +20,9 @@
20
20
  "test:update:snapshot": "jest -u"
21
21
  },
22
22
  "dependencies": {
23
- "@dt-dds/react-core": "1.0.0-beta.50",
24
- "@dt-dds/react-typography": "1.0.0-beta.41",
25
- "@dt-dds/react-icon": "1.0.0-beta.51",
23
+ "@dt-dds/react-core": "1.0.0-beta.51",
24
+ "@dt-dds/react-typography": "1.0.0-beta.42",
25
+ "@dt-dds/react-icon": "1.0.0-beta.53",
26
26
  "@dt-dds/themes": "1.0.0-beta.9"
27
27
  },
28
28
  "devDependencies": {