@dt-dds/react-progress-bar 1.0.0-beta.47 → 1.0.0-beta.49
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 +24 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @dt-ui/react-progress-bar
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.49
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(core): share responsive HOC from core package
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @dt-dds/react-icon@1.0.0-beta.56
|
|
13
|
+
- @dt-dds/react-typography@1.0.0-beta.44
|
|
14
|
+
|
|
15
|
+
## 1.0.0-beta.48
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- fix(config): update ESLint, TS, and Storybook config
|
|
20
|
+
- fix(icon-button): add missing @dt-dds/react-icon devDependency
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @dt-dds/react-icon@1.0.0-beta.55
|
|
24
|
+
- @dt-dds/react-typography@1.0.0-beta.43
|
|
25
|
+
- @dt-dds/themes@1.0.0-beta.10
|
|
26
|
+
|
|
3
27
|
## 1.0.0-beta.47
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -35,9 +35,9 @@ __export(index_exports, {
|
|
|
35
35
|
module.exports = __toCommonJS(index_exports);
|
|
36
36
|
|
|
37
37
|
// src/ProgressBar.tsx
|
|
38
|
+
var import_react = require("@emotion/react");
|
|
38
39
|
var import_react_icon = require("@dt-dds/react-icon");
|
|
39
40
|
var import_react_typography = require("@dt-dds/react-typography");
|
|
40
|
-
var import_react = require("@emotion/react");
|
|
41
41
|
|
|
42
42
|
// src/constants/value.ts
|
|
43
43
|
var MIN_PROGRESS_BAR_VALUE = 0;
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/ProgressBar.tsx
|
|
2
|
+
import { useTheme } from "@emotion/react";
|
|
2
3
|
import { Icon } from "@dt-dds/react-icon";
|
|
3
4
|
import { Typography } from "@dt-dds/react-typography";
|
|
4
|
-
import { useTheme } from "@emotion/react";
|
|
5
5
|
|
|
6
6
|
// src/constants/value.ts
|
|
7
7
|
var MIN_PROGRESS_BAR_VALUE = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-progress-bar",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.49",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-icon": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/react-typography": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-icon": "1.0.0-beta.56",
|
|
24
|
+
"@dt-dds/react-typography": "1.0.0-beta.44",
|
|
25
|
+
"@dt-dds/themes": "1.0.0-beta.10"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/core": "^7.22.9",
|
|
29
29
|
"@babel/preset-env": "^7.22.9",
|
|
30
30
|
"@babel/preset-react": "^7.22.5",
|
|
31
31
|
"@babel/preset-typescript": "^7.23.3",
|
|
32
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
32
|
+
"@dt-dds/react-core": "1.0.0-beta.53",
|
|
33
33
|
"@emotion/babel-plugin": "^11.11.0",
|
|
34
34
|
"@emotion/css": "^11.7.1",
|
|
35
35
|
"@emotion/jest": "^11.10.0",
|