@pingux/astro 2.7.0 → 2.7.1-alpha.1
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/lib/cjs/styles/safariAgent.js +1 -1
- package/lib/styles/safariAgent.js +1 -1
- package/package.json +3 -1
- package/NOTICE.html +0 -12804
@@ -8,5 +8,5 @@ _Object$defineProperty(exports, "__esModule", {
|
|
8
8
|
exports.isSafari = void 0;
|
9
9
|
var _indexOf = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/index-of"));
|
10
10
|
var _context, _context2;
|
11
|
-
var isSafari = !((0, _indexOf["default"])(_context = navigator.userAgent).call(_context, 'Chrome') > -1 && (0, _indexOf["default"])(_context2 = navigator.userAgent).call(_context2, 'Safari') > -1);
|
11
|
+
var isSafari = typeof navigator !== 'undefined' && !((0, _indexOf["default"])(_context = navigator.userAgent).call(_context, 'Chrome') > -1 && (0, _indexOf["default"])(_context2 = navigator.userAgent).call(_context2, 'Safari') > -1);
|
12
12
|
exports.isSafari = isSafari;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
var _context, _context2;
|
2
2
|
import _indexOfInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/index-of";
|
3
|
-
export var isSafari = !(_indexOfInstanceProperty(_context = navigator.userAgent).call(_context, 'Chrome') > -1 && _indexOfInstanceProperty(_context2 = navigator.userAgent).call(_context2, 'Safari') > -1);
|
3
|
+
export var isSafari = typeof navigator !== 'undefined' && !(_indexOfInstanceProperty(_context = navigator.userAgent).call(_context, 'Chrome') > -1 && _indexOfInstanceProperty(_context2 = navigator.userAgent).call(_context2, 'Safari') > -1);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pingux/astro",
|
3
|
-
"version": "2.7.
|
3
|
+
"version": "2.7.1-alpha.1",
|
4
4
|
"description": "PingUX themeable React component library",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -75,6 +75,8 @@
|
|
75
75
|
"@react-stately/table": "~3.3.0",
|
76
76
|
"@react-stately/virtualizer": "^3.2.1",
|
77
77
|
"@storybook/addon-actions": "^6.5.10",
|
78
|
+
"@storybook/api": "^7.0.24",
|
79
|
+
"@storybook/components": "^7.0.24",
|
78
80
|
"@styled-system/prop-types": "^5.1.5",
|
79
81
|
"@styled-system/props": "^5.1.5",
|
80
82
|
"@styled-system/should-forward-prop": "^5.1.5",
|