@dt-dds/react-message 1.0.0-beta.119 → 1.0.0-beta.121
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 +16 -0
- package/dist/index.js +42 -8
- package/dist/index.mjs +42 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @dt-ui/react-message
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.121
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- docs: update license for box
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @dt-dds/react-button@1.0.0-beta.105
|
|
10
|
+
|
|
11
|
+
## 1.0.0-beta.120
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- refactor: add html attrs to box
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @dt-dds/react-button@1.0.0-beta.104
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.119
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -53,10 +53,39 @@ var require_dist = __commonJS({
|
|
|
53
53
|
"use strict";
|
|
54
54
|
var __create2 = Object.create;
|
|
55
55
|
var __defProp2 = Object.defineProperty;
|
|
56
|
+
var __defProps2 = Object.defineProperties;
|
|
56
57
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
58
|
+
var __getOwnPropDescs2 = Object.getOwnPropertyDescriptors;
|
|
57
59
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
60
|
+
var __getOwnPropSymbols2 = Object.getOwnPropertySymbols;
|
|
58
61
|
var __getProtoOf2 = Object.getPrototypeOf;
|
|
59
62
|
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
|
63
|
+
var __propIsEnum2 = Object.prototype.propertyIsEnumerable;
|
|
64
|
+
var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
65
|
+
var __spreadValues2 = (a, b) => {
|
|
66
|
+
for (var prop in b || (b = {}))
|
|
67
|
+
if (__hasOwnProp2.call(b, prop))
|
|
68
|
+
__defNormalProp2(a, prop, b[prop]);
|
|
69
|
+
if (__getOwnPropSymbols2)
|
|
70
|
+
for (var prop of __getOwnPropSymbols2(b)) {
|
|
71
|
+
if (__propIsEnum2.call(b, prop))
|
|
72
|
+
__defNormalProp2(a, prop, b[prop]);
|
|
73
|
+
}
|
|
74
|
+
return a;
|
|
75
|
+
};
|
|
76
|
+
var __spreadProps2 = (a, b) => __defProps2(a, __getOwnPropDescs2(b));
|
|
77
|
+
var __objRest = (source, exclude) => {
|
|
78
|
+
var target = {};
|
|
79
|
+
for (var prop in source)
|
|
80
|
+
if (__hasOwnProp2.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
81
|
+
target[prop] = source[prop];
|
|
82
|
+
if (source != null && __getOwnPropSymbols2)
|
|
83
|
+
for (var prop of __getOwnPropSymbols2(source)) {
|
|
84
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum2.call(source, prop))
|
|
85
|
+
target[prop] = source[prop];
|
|
86
|
+
}
|
|
87
|
+
return target;
|
|
88
|
+
};
|
|
60
89
|
var __export2 = (target, all) => {
|
|
61
90
|
for (var name in all)
|
|
62
91
|
__defProp2(target, name, { get: all[name], enumerable: true });
|
|
@@ -90,14 +119,19 @@ var require_dist = __commonJS({
|
|
|
90
119
|
align-items: center;
|
|
91
120
|
`;
|
|
92
121
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
93
|
-
var Box2 = ({
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
122
|
+
var Box2 = (_a) => {
|
|
123
|
+
var _b = _a, {
|
|
124
|
+
dataTestId,
|
|
125
|
+
children,
|
|
126
|
+
element = "div",
|
|
127
|
+
style
|
|
128
|
+
} = _b, rest = __objRest(_b, [
|
|
129
|
+
"dataTestId",
|
|
130
|
+
"children",
|
|
131
|
+
"element",
|
|
132
|
+
"style"
|
|
133
|
+
]);
|
|
134
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(BoxStyled, __spreadProps2(__spreadValues2({ as: element, "data-testid": dataTestId, style }, rest), { children }));
|
|
101
135
|
};
|
|
102
136
|
}
|
|
103
137
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -53,10 +53,39 @@ var require_dist = __commonJS({
|
|
|
53
53
|
"use strict";
|
|
54
54
|
var __create2 = Object.create;
|
|
55
55
|
var __defProp2 = Object.defineProperty;
|
|
56
|
+
var __defProps2 = Object.defineProperties;
|
|
56
57
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
58
|
+
var __getOwnPropDescs2 = Object.getOwnPropertyDescriptors;
|
|
57
59
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
60
|
+
var __getOwnPropSymbols2 = Object.getOwnPropertySymbols;
|
|
58
61
|
var __getProtoOf2 = Object.getPrototypeOf;
|
|
59
62
|
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
|
63
|
+
var __propIsEnum2 = Object.prototype.propertyIsEnumerable;
|
|
64
|
+
var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
65
|
+
var __spreadValues2 = (a, b) => {
|
|
66
|
+
for (var prop in b || (b = {}))
|
|
67
|
+
if (__hasOwnProp2.call(b, prop))
|
|
68
|
+
__defNormalProp2(a, prop, b[prop]);
|
|
69
|
+
if (__getOwnPropSymbols2)
|
|
70
|
+
for (var prop of __getOwnPropSymbols2(b)) {
|
|
71
|
+
if (__propIsEnum2.call(b, prop))
|
|
72
|
+
__defNormalProp2(a, prop, b[prop]);
|
|
73
|
+
}
|
|
74
|
+
return a;
|
|
75
|
+
};
|
|
76
|
+
var __spreadProps2 = (a, b) => __defProps2(a, __getOwnPropDescs2(b));
|
|
77
|
+
var __objRest = (source, exclude) => {
|
|
78
|
+
var target = {};
|
|
79
|
+
for (var prop in source)
|
|
80
|
+
if (__hasOwnProp2.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
81
|
+
target[prop] = source[prop];
|
|
82
|
+
if (source != null && __getOwnPropSymbols2)
|
|
83
|
+
for (var prop of __getOwnPropSymbols2(source)) {
|
|
84
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum2.call(source, prop))
|
|
85
|
+
target[prop] = source[prop];
|
|
86
|
+
}
|
|
87
|
+
return target;
|
|
88
|
+
};
|
|
60
89
|
var __export = (target, all) => {
|
|
61
90
|
for (var name in all)
|
|
62
91
|
__defProp2(target, name, { get: all[name], enumerable: true });
|
|
@@ -90,14 +119,19 @@ var require_dist = __commonJS({
|
|
|
90
119
|
align-items: center;
|
|
91
120
|
`;
|
|
92
121
|
var import_jsx_runtime2 = __require("react/jsx-runtime");
|
|
93
|
-
var Box2 = ({
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
122
|
+
var Box2 = (_a) => {
|
|
123
|
+
var _b = _a, {
|
|
124
|
+
dataTestId,
|
|
125
|
+
children,
|
|
126
|
+
element = "div",
|
|
127
|
+
style
|
|
128
|
+
} = _b, rest = __objRest(_b, [
|
|
129
|
+
"dataTestId",
|
|
130
|
+
"children",
|
|
131
|
+
"element",
|
|
132
|
+
"style"
|
|
133
|
+
]);
|
|
134
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(BoxStyled, __spreadProps2(__spreadValues2({ as: element, "data-testid": dataTestId, style }, rest), { children }));
|
|
101
135
|
};
|
|
102
136
|
}
|
|
103
137
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-message",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.121",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-button": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-button": "1.0.0-beta.105",
|
|
24
24
|
"@dt-dds/react-core": "1.0.0-beta.56",
|
|
25
25
|
"@dt-dds/react-icon": "1.0.0-beta.59",
|
|
26
26
|
"@dt-dds/react-typography": "1.0.0-beta.47",
|