@pingux/astro 2.16.0 → 2.16.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.
@@ -130,9 +130,6 @@ var TextAreaField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
130
130
  // DO NOT put paddingRight and overflow into sx object.
131
131
  /// It will cause issue with resizing in Safari browser.
132
132
  paddingRight: (slots === null || slots === void 0 ? void 0 : slots.inContainer) && 35,
133
- style: {
134
- overflow: !(slots !== null && slots !== void 0 && slots.inContainer) && 'hidden'
135
- },
136
133
  "aria-invalid": status === 'error' && true,
137
134
  "aria-describedby": helperText && helperTextId
138
135
  })), (slots === null || slots === void 0 ? void 0 : slots.inContainer) && (0, _react2.jsx)(_.Box, {
@@ -119,9 +119,6 @@ var TextAreaField = /*#__PURE__*/forwardRef(function (props, ref) {
119
119
  // DO NOT put paddingRight and overflow into sx object.
120
120
  /// It will cause issue with resizing in Safari browser.
121
121
  paddingRight: (slots === null || slots === void 0 ? void 0 : slots.inContainer) && 35,
122
- style: {
123
- overflow: !(slots !== null && slots !== void 0 && slots.inContainer) && 'hidden'
124
- },
125
122
  "aria-invalid": status === 'error' && true,
126
123
  "aria-describedby": helperText && helperTextId
127
124
  })), (slots === null || slots === void 0 ? void 0 : slots.inContainer) && ___EmotionJSX(Box, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.16.0",
3
+ "version": "2.16.1-alpha.1",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,37 +0,0 @@
1
- "use strict";
2
-
3
- var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
4
- var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
5
- _Object$defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports["default"] = exports.Default = void 0;
9
- var _react = _interopRequireDefault(require("react"));
10
- var _index = require("../index");
11
- var _colors = require("../styles/colors");
12
- var _react2 = require("@emotion/react");
13
- var _default = {
14
- title: 'Recipes/Stats Circle'
15
- };
16
- exports["default"] = _default;
17
- var sx = {
18
- statsCircle: {
19
- border: '3px solid',
20
- borderColor: _colors.active,
21
- borderRadius: '100%',
22
- alignItems: 'center',
23
- justifyContent: 'center'
24
- }
25
- };
26
- var Default = function Default() {
27
- return (0, _react2.jsx)(_index.Box, {
28
- width: "110px",
29
- height: "110px",
30
- sx: sx.statsCircle
31
- }, (0, _react2.jsx)(_index.Text, {
32
- fontSize: 30
33
- }, "63"), (0, _react2.jsx)(_index.Text, {
34
- color: "text.secondary"
35
- }, "Members"));
36
- };
37
- exports.Default = Default;
@@ -1,27 +0,0 @@
1
- import React from 'react';
2
- import { Box, Text } from '../index';
3
- import { active } from '../styles/colors';
4
- import { jsx as ___EmotionJSX } from "@emotion/react";
5
- export default {
6
- title: 'Recipes/Stats Circle'
7
- };
8
- var sx = {
9
- statsCircle: {
10
- border: '3px solid',
11
- borderColor: active,
12
- borderRadius: '100%',
13
- alignItems: 'center',
14
- justifyContent: 'center'
15
- }
16
- };
17
- export var Default = function Default() {
18
- return ___EmotionJSX(Box, {
19
- width: "110px",
20
- height: "110px",
21
- sx: sx.statsCircle
22
- }, ___EmotionJSX(Text, {
23
- fontSize: 30
24
- }, "63"), ___EmotionJSX(Text, {
25
- color: "text.secondary"
26
- }, "Members"));
27
- };