@dt-dds/react-empty-state 1.0.0-beta.63 → 1.0.0-beta.64
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 +11 -0
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @dt-ui/react-empty-state
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.64
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- refactor(themes): consolidate theme structure
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @dt-dds/react-button@1.0.0-beta.44
|
|
10
|
+
- @dt-dds/react-core@1.0.0-beta.44
|
|
11
|
+
- @dt-dds/react-typography@1.0.0-beta.35
|
|
12
|
+
- @dt-dds/themes@1.0.0-beta.4
|
|
13
|
+
|
|
3
14
|
## 1.0.0-beta.63
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -53,8 +53,8 @@ var EmptyStateStyled = import_styled.default.div`
|
|
|
53
53
|
height: 100%;
|
|
54
54
|
gap: ${theme.spacing.xs};
|
|
55
55
|
|
|
56
|
-
@media only screen and (min-width: ${theme.breakpoints.
|
|
57
|
-
padding: ${theme.spacing
|
|
56
|
+
@media only screen and (min-width: ${theme.breakpoints.mq32}px) {
|
|
57
|
+
padding: ${theme.spacing.spacing_200} ${theme.spacing.spacing_500};
|
|
58
58
|
}
|
|
59
59
|
`}
|
|
60
60
|
`;
|
|
@@ -65,10 +65,10 @@ var EmptyStateContentStyled = import_styled.default.div`
|
|
|
65
65
|
justify-content: center;
|
|
66
66
|
text-align: center;
|
|
67
67
|
${({ theme }) => `
|
|
68
|
-
gap: ${theme.spacing
|
|
68
|
+
gap: ${theme.spacing.spacing_30};
|
|
69
69
|
|
|
70
|
-
@media only screen and (min-width: ${theme.breakpoints.
|
|
71
|
-
gap: ${theme.spacing
|
|
70
|
+
@media only screen and (min-width: ${theme.breakpoints.mq32}px) {
|
|
71
|
+
gap: ${theme.spacing.spacing_40};
|
|
72
72
|
}
|
|
73
73
|
`}
|
|
74
74
|
`;
|
|
@@ -89,7 +89,7 @@ EmptyState.Content = ({
|
|
|
89
89
|
style,
|
|
90
90
|
children: [
|
|
91
91
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_typography.Typography, { color: "content.dark", element: "h2", fontStyles: "h4", children: title }),
|
|
92
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_typography.Typography, { color: "content.default", fontStyles: "
|
|
92
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_typography.Typography, { color: "content.default", fontStyles: "bodyLgRegular", children: description })
|
|
93
93
|
]
|
|
94
94
|
}
|
|
95
95
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -17,8 +17,8 @@ var EmptyStateStyled = styled.div`
|
|
|
17
17
|
height: 100%;
|
|
18
18
|
gap: ${theme.spacing.xs};
|
|
19
19
|
|
|
20
|
-
@media only screen and (min-width: ${theme.breakpoints.
|
|
21
|
-
padding: ${theme.spacing
|
|
20
|
+
@media only screen and (min-width: ${theme.breakpoints.mq32}px) {
|
|
21
|
+
padding: ${theme.spacing.spacing_200} ${theme.spacing.spacing_500};
|
|
22
22
|
}
|
|
23
23
|
`}
|
|
24
24
|
`;
|
|
@@ -29,10 +29,10 @@ var EmptyStateContentStyled = styled.div`
|
|
|
29
29
|
justify-content: center;
|
|
30
30
|
text-align: center;
|
|
31
31
|
${({ theme }) => `
|
|
32
|
-
gap: ${theme.spacing
|
|
32
|
+
gap: ${theme.spacing.spacing_30};
|
|
33
33
|
|
|
34
|
-
@media only screen and (min-width: ${theme.breakpoints.
|
|
35
|
-
gap: ${theme.spacing
|
|
34
|
+
@media only screen and (min-width: ${theme.breakpoints.mq32}px) {
|
|
35
|
+
gap: ${theme.spacing.spacing_40};
|
|
36
36
|
}
|
|
37
37
|
`}
|
|
38
38
|
`;
|
|
@@ -53,7 +53,7 @@ EmptyState.Content = ({
|
|
|
53
53
|
style,
|
|
54
54
|
children: [
|
|
55
55
|
/* @__PURE__ */ jsx(Typography, { color: "content.dark", element: "h2", fontStyles: "h4", children: title }),
|
|
56
|
-
/* @__PURE__ */ jsx(Typography, { color: "content.default", fontStyles: "
|
|
56
|
+
/* @__PURE__ */ jsx(Typography, { color: "content.default", fontStyles: "bodyLgRegular", children: description })
|
|
57
57
|
]
|
|
58
58
|
}
|
|
59
59
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-empty-state",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.64",
|
|
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-button": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/react-typography": "1.0.0-beta.
|
|
26
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-button": "1.0.0-beta.44",
|
|
24
|
+
"@dt-dds/react-core": "1.0.0-beta.44",
|
|
25
|
+
"@dt-dds/react-typography": "1.0.0-beta.35",
|
|
26
|
+
"@dt-dds/themes": "1.0.0-beta.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@babel/core": "^7.22.9",
|