@ttoss/components 1.26.0 → 1.26.2
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/dist/esm/index.js +6 -0
- package/dist/index.js +10 -0
- package/package.json +6 -6
package/dist/esm/index.js
CHANGED
|
@@ -154,8 +154,14 @@ var Modal = (props) => {
|
|
|
154
154
|
...props.style?.overlay
|
|
155
155
|
},
|
|
156
156
|
content: {
|
|
157
|
+
/**
|
|
158
|
+
* Theme
|
|
159
|
+
*/
|
|
157
160
|
backgroundColor: theme.rawColors?.background?.toString() || "#fff",
|
|
158
161
|
padding,
|
|
162
|
+
/**
|
|
163
|
+
* General
|
|
164
|
+
*/
|
|
159
165
|
WebkitOverflowScrolling: "touch",
|
|
160
166
|
overflow: "auto",
|
|
161
167
|
position: "relative",
|
package/dist/index.js
CHANGED
|
@@ -19,6 +19,10 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
return to;
|
|
20
20
|
};
|
|
21
21
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
22
26
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
23
27
|
mod
|
|
24
28
|
));
|
|
@@ -183,8 +187,14 @@ var Modal = (props) => {
|
|
|
183
187
|
...props.style?.overlay
|
|
184
188
|
},
|
|
185
189
|
content: {
|
|
190
|
+
/**
|
|
191
|
+
* Theme
|
|
192
|
+
*/
|
|
186
193
|
backgroundColor: theme.rawColors?.background?.toString() || "#fff",
|
|
187
194
|
padding,
|
|
195
|
+
/**
|
|
196
|
+
* General
|
|
197
|
+
*/
|
|
188
198
|
WebkitOverflowScrolling: "touch",
|
|
189
199
|
overflow: "auto",
|
|
190
200
|
position: "relative",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/components",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.2",
|
|
4
4
|
"description": "React components.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"react": ">=16.8.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@ttoss/config": "^1.28.
|
|
37
|
-
"@ttoss/test-utils": "^1.20.
|
|
38
|
-
"@ttoss/ui": "^1.30.
|
|
36
|
+
"@ttoss/config": "^1.28.1",
|
|
37
|
+
"@ttoss/test-utils": "^1.20.3",
|
|
38
|
+
"@ttoss/ui": "^1.30.2",
|
|
39
39
|
"@types/jest": "^29.4.0",
|
|
40
|
-
"jest": "^29.4.
|
|
40
|
+
"jest": "^29.4.2"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
|
43
43
|
"React",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "d4df96176c1d3fce4ebf7842de5847a618a33d9e"
|
|
50
50
|
}
|