@storybook/react-native-theming 8.0.0-alpha.4 → 8.2.0-alpha.0
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/index.d.ts +2 -2
- package/dist/index.js +14 -22
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -48,8 +48,8 @@ declare const background: {
|
|
|
48
48
|
};
|
|
49
49
|
declare const typography: {
|
|
50
50
|
weight: {
|
|
51
|
-
regular: "
|
|
52
|
-
bold: "
|
|
51
|
+
regular: TextStyle["fontWeight"];
|
|
52
|
+
bold: TextStyle["fontWeight"];
|
|
53
53
|
};
|
|
54
54
|
size: {
|
|
55
55
|
s1: number;
|
package/dist/index.js
CHANGED
|
@@ -1808,18 +1808,14 @@ var require_hoist_non_react_statics_cjs = __commonJS({
|
|
|
1808
1808
|
var require_extends = __commonJS({
|
|
1809
1809
|
"../../node_modules/@babel/runtime/helpers/extends.js"(exports, module2) {
|
|
1810
1810
|
function _extends2() {
|
|
1811
|
-
module2.exports = _extends2 = Object.assign ? Object.assign.bind() : function(
|
|
1812
|
-
for (var
|
|
1813
|
-
var
|
|
1814
|
-
for (var
|
|
1815
|
-
|
|
1816
|
-
target[key] = source[key];
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1811
|
+
return module2.exports = _extends2 = Object.assign ? Object.assign.bind() : function(n) {
|
|
1812
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
1813
|
+
var t = arguments[e];
|
|
1814
|
+
for (var r in t)
|
|
1815
|
+
({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
1819
1816
|
}
|
|
1820
|
-
return
|
|
1821
|
-
}, module2.exports.__esModule = true, module2.exports["default"] = module2.exports;
|
|
1822
|
-
return _extends2.apply(this, arguments);
|
|
1817
|
+
return n;
|
|
1818
|
+
}, module2.exports.__esModule = true, module2.exports["default"] = module2.exports, _extends2.apply(null, arguments);
|
|
1823
1819
|
}
|
|
1824
1820
|
module2.exports = _extends2, module2.exports.__esModule = true, module2.exports["default"] = module2.exports;
|
|
1825
1821
|
}
|
|
@@ -3401,18 +3397,14 @@ var createCache = function createCache2(options) {
|
|
|
3401
3397
|
|
|
3402
3398
|
// ../../node_modules/@babel/runtime/helpers/esm/extends.js
|
|
3403
3399
|
function _extends() {
|
|
3404
|
-
_extends = Object.assign ? Object.assign.bind() : function(
|
|
3405
|
-
for (var
|
|
3406
|
-
var
|
|
3407
|
-
for (var
|
|
3408
|
-
|
|
3409
|
-
target[key] = source[key];
|
|
3410
|
-
}
|
|
3411
|
-
}
|
|
3400
|
+
return _extends = Object.assign ? Object.assign.bind() : function(n) {
|
|
3401
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
3402
|
+
var t = arguments[e];
|
|
3403
|
+
for (var r in t)
|
|
3404
|
+
({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
3412
3405
|
}
|
|
3413
|
-
return
|
|
3414
|
-
};
|
|
3415
|
-
return _extends.apply(this, arguments);
|
|
3406
|
+
return n;
|
|
3407
|
+
}, _extends.apply(null, arguments);
|
|
3416
3408
|
}
|
|
3417
3409
|
|
|
3418
3410
|
// ../../node_modules/@emotion/react/_isolated-hnrs/dist/emotion-react-_isolated-hnrs.esm.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-native-theming",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0-alpha.0",
|
|
4
4
|
"description": "A wrapper library around emotion 11 to provide theming support for react-native storybook",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"dist/**/*",
|
|
44
44
|
"README.md"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "56cad3ccee28ceae70cc7e2fc9b63ec28384eecf"
|
|
47
47
|
}
|