@pingux/astro 1.2.0-alpha.10 → 1.2.0-alpha.14

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.
@@ -63,15 +63,15 @@ var Default = function Default(args) {
63
63
  onAction: onAction
64
64
  }, args), (0, _react2.jsx)(_collections.Item, {
65
65
  key: "home",
66
- variant: "text",
66
+ variant: "link",
67
67
  "data-id": "home"
68
68
  }, "Home"), (0, _react2.jsx)(_collections.Item, {
69
69
  key: "trendy",
70
- variant: "text",
70
+ variant: "link",
71
71
  "data-id": "trendy"
72
72
  }, "Trendy"), (0, _react2.jsx)(_collections.Item, {
73
73
  key: "march 2020 assets",
74
- variant: "text",
74
+ variant: "link",
75
75
  "data-id": "march"
76
76
  }, "March 2020 Assets"));
77
77
  };
@@ -103,6 +103,15 @@ var Button = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
103
103
  }),
104
104
  classNames = _useStatusClasses.classNames;
105
105
 
106
+ (0, _hooks.useDeprecationWarning)('The "icon" variant for `Button` is deprecated in Astro-UI 1.0.0, use the `IconButton` component instead.', {
107
+ isActive: props.variant === 'icon'
108
+ });
109
+ (0, _hooks.useDeprecationWarning)('The "danger" variant for `Button` will be deprecated in Astro-UI 2.0.0, use the `critical` variant instead.', {
110
+ isActive: props.variant === 'danger'
111
+ });
112
+ (0, _hooks.useDeprecationWarning)('The "text" variant for `Button` will be deprecated in Astro-UI 2.0.0, use the `link` variant instead.', {
113
+ isActive: props.variant === 'text'
114
+ });
106
115
  var ariaLabel = props['aria-label'];
107
116
  (0, _hooks.useAriaLabelWarning)('Button', ariaLabel, variant === 'filter');
108
117
  return (0, _react2.jsx)(_themeUi.Button, (0, _extends2["default"])({
@@ -8,7 +8,7 @@ _Object$defineProperty(exports, "__esModule", {
8
8
  value: true
9
9
  });
10
10
 
11
- exports.FilterButton = exports.ColorBlockButton = exports.InlineButton = exports.TextButton = exports.TextIconButton = exports.Disabled = exports.Default = exports["default"] = void 0;
11
+ exports.FilterButton = exports.ColorBlockButton = exports.InlineButton = exports.TextIconButton = exports.Disabled = exports.Default = exports["default"] = void 0;
12
12
 
13
13
  var _extends2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/extends"));
14
14
 
@@ -99,19 +99,6 @@ var TextIconButton = function TextIconButton() {
99
99
 
100
100
  exports.TextIconButton = TextIconButton;
101
101
 
102
- var TextButton = function TextButton() {
103
- return (0, _react2.jsx)(_index.Button, {
104
- mb: "sm",
105
- variant: "text",
106
- "aria-label": "Add option"
107
- }, (0, _react2.jsx)(_index.Text, {
108
- variant: "label",
109
- color: "active"
110
- }, " + Add Option"));
111
- };
112
-
113
- exports.TextButton = TextButton;
114
-
115
102
  var InlineButton = function InlineButton() {
116
103
  return (0, _react2.jsx)(_index.Button, {
117
104
  mb: "sm",
@@ -163,7 +163,7 @@ var DarkVariant = function DarkVariant() {
163
163
  onPress: state.close,
164
164
  "aria-label": "Yes"
165
165
  }, "Yes"), (0, _react2.jsx)(_index.Button, {
166
- variant: "text",
166
+ variant: "link",
167
167
  onPress: state.close,
168
168
  "aria-label": "Cancel"
169
169
  }, "Cancel"))))
@@ -10,7 +10,7 @@ _Object$defineProperty(exports, "__esModule", {
10
10
  value: true
11
11
  });
12
12
 
13
- exports.ControlledWithDebouncedInput = exports.MaxLength = exports.NoClearButton = exports.CustomIcon = exports.Controlled = exports.Default = exports["default"] = void 0;
13
+ exports.ControlledWithDebouncedInput = exports.NoClearButton = exports.CustomIcon = exports.Controlled = exports.Default = exports["default"] = void 0;
14
14
 
15
15
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/slicedToArray"));
16
16
 
@@ -137,20 +137,6 @@ var NoClearButton = function NoClearButton() {
137
137
 
138
138
  exports.NoClearButton = NoClearButton;
139
139
 
140
- var MaxLength = function MaxLength(args) {
141
- return (0, _react2.jsx)(_index.SearchField, (0, _extends2["default"])({}, args, {
142
- icon: _SearchIcon["default"],
143
- "aria-label": "Search Groups",
144
- onSubmit: function onSubmit(text) {
145
- return alert(text);
146
- } // eslint-disable-line no-alert
147
- ,
148
- maxLength: 9
149
- }));
150
- };
151
-
152
- exports.MaxLength = MaxLength;
153
-
154
140
  var ControlledWithDebouncedInput = function ControlledWithDebouncedInput() {
155
141
  var _useState3 = (0, _react.useState)(''),
156
142
  _useState4 = (0, _slicedToArray2["default"])(_useState3, 2),
@@ -227,7 +227,7 @@ TextAreaField.defaultProps = {
227
227
  isReadOnly: false,
228
228
  isRequired: false,
229
229
  isUnresizable: false,
230
- rows: 2,
230
+ rows: 4,
231
231
  status: _statuses["default"].DEFAULT
232
232
  };
233
233
  TextAreaField.displayName = 'TextAreaField';
@@ -10,7 +10,7 @@ _Object$defineProperty(exports, "__esModule", {
10
10
  value: true
11
11
  });
12
12
 
13
- exports.MaxLength = exports.WithoutStatusIndicator = exports.Warning = exports.Success = exports.Error = exports.Unresizable = exports.Rows = exports.Required = exports.ReadOnly = exports.Disabled = exports.Controlled = exports.LeftLabel = exports.FloatLabel = exports.Default = exports["default"] = void 0;
13
+ exports.MaxLength = exports.WithoutStatusIndicator = exports.Error = exports.Unresizable = exports.Rows = exports.Required = exports.ReadOnly = exports.Disabled = exports.Controlled = exports.FloatLabel = exports.Default = exports["default"] = void 0;
14
14
 
15
15
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/slicedToArray"));
16
16
 
@@ -20,8 +20,6 @@ var _react = _interopRequireWildcard(require("react"));
20
20
 
21
21
  var _ = _interopRequireDefault(require("."));
22
22
 
23
- var _Box = _interopRequireDefault(require("../Box"));
24
-
25
23
  var _statuses = _interopRequireDefault(require("../../utils/devUtils/constants/statuses"));
26
24
 
27
25
  var _constants = require("../Label/constants");
@@ -101,37 +99,6 @@ var FloatLabel = function FloatLabel() {
101
99
 
102
100
  exports.FloatLabel = FloatLabel;
103
101
 
104
- var LeftLabel = function LeftLabel() {
105
- return (0, _react2.jsx)(_Box["default"], {
106
- gap: "xl",
107
- width: "fit-content"
108
- }, (0, _react2.jsx)(_["default"], {
109
- label: "Example label",
110
- labelMode: "left"
111
- }), (0, _react2.jsx)(_["default"], {
112
- label: "Example label that is much longer than the previous one",
113
- labelMode: "left",
114
- status: "error"
115
- }), (0, _react2.jsx)(_["default"], {
116
- label: "Example label with set width",
117
- labelMode: "left",
118
- containerProps: {
119
- sx: {
120
- gridTemplateColumns: '120px auto'
121
- }
122
- }
123
- }));
124
- };
125
-
126
- exports.LeftLabel = LeftLabel;
127
- LeftLabel.parameters = {
128
- docs: {
129
- description: {
130
- story: 'Users are able to override the default 40% column width when using left label by providing a new gridTemplatesColumn value, as shown in the example below.'
131
- }
132
- }
133
- };
134
-
135
102
  var Controlled = function Controlled() {
136
103
  var _useState = (0, _react.useState)(),
137
104
  _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
@@ -206,26 +173,6 @@ var Error = function Error() {
206
173
 
207
174
  exports.Error = Error;
208
175
 
209
- var Success = function Success() {
210
- return (0, _react2.jsx)(_["default"], {
211
- helperText: "Here is some helpful text...",
212
- label: "Example Label",
213
- status: "success"
214
- });
215
- };
216
-
217
- exports.Success = Success;
218
-
219
- var Warning = function Warning() {
220
- return (0, _react2.jsx)(_["default"], {
221
- helperText: "Here is some helpful text...",
222
- label: "Example Label",
223
- status: "warning"
224
- });
225
- };
226
-
227
- exports.Warning = Warning;
228
-
229
176
  var WithoutStatusIndicator = function WithoutStatusIndicator() {
230
177
  return (0, _react2.jsx)(_["default"], {
231
178
  label: "Example Label",
@@ -574,7 +574,7 @@ var Default = function Default() {
574
574
  mr: "md",
575
575
  "aria-label": "Save Button"
576
576
  }, "Save"), (0, _react2.jsx)(_index.Button, {
577
- variant: "text",
577
+ variant: "link",
578
578
  onPress: viewItem,
579
579
  "aria-label": "Cancel Button"
580
580
  }, "Cancel"))), editConfigurationVisible && (0, _react2.jsx)(_index.OverlayPanel, {
@@ -704,7 +704,7 @@ var Default = function Default() {
704
704
  mr: "md",
705
705
  "aria-label": "Save Button"
706
706
  }, "Save"), (0, _react2.jsx)(_index.Button, {
707
- variant: "text",
707
+ variant: "link",
708
708
  onPress: viewItem,
709
709
  "aria-label": "Cancel Button"
710
710
  }, "Cancel"))), addItemVisible && (0, _react2.jsx)(_index.OverlayPanel, {
@@ -790,7 +790,7 @@ var Default = function Default() {
790
790
  isRow: true,
791
791
  sx: buttonBarStyles
792
792
  }, (0, _react2.jsx)(_index.Button, {
793
- variant: "text",
793
+ variant: "link",
794
794
  onPress: resetListItem,
795
795
  mr: "md",
796
796
  "aria-label": "Cancel Button"
@@ -851,7 +851,7 @@ var Default = function Default() {
851
851
  isRow: true,
852
852
  sx: buttonBarStyles
853
853
  }, (0, _react2.jsx)(_index.Button, {
854
- variant: "text",
854
+ variant: "link",
855
855
  onPress: resetListItem,
856
856
  mr: "md"
857
857
  }, "Cancel"), (0, _react2.jsx)(_index.Button, {
@@ -873,11 +873,11 @@ var Default = function Default() {
873
873
  pt: "lg",
874
874
  mr: "auto"
875
875
  }, (0, _react2.jsx)(_index.Button, {
876
- variant: "danger",
876
+ variant: "critical",
877
877
  mr: "md",
878
878
  onPress: deleteItem
879
879
  }, "Delete"), (0, _react2.jsx)(_index.Button, {
880
- variant: "text",
880
+ variant: "link",
881
881
  onPress: function onPress() {
882
882
  return setIsDeleting(false);
883
883
  }
@@ -153,7 +153,7 @@ var Default = function Default() {
153
153
  title: "Text Field"
154
154
  }, otherFieldProps)));
155
155
  }), (0, _react2.jsx)(_index.Button, {
156
- variant: "text",
156
+ variant: "link",
157
157
  onPress: onFieldAdd,
158
158
  role: "button",
159
159
  title: "Add Field Button",
@@ -118,7 +118,9 @@ var Default = function Default() {
118
118
  setEditOverviewVisible = _React$useState4[1];
119
119
 
120
120
  return (0, _react2.jsx)(_react["default"].Fragment, null, (0, _react2.jsx)(_index.OverlayProvider, null, (0, _react2.jsx)(_index.Button, {
121
- onPress: setStaticOverviewVisible
121
+ onPress: function onPress() {
122
+ return setStaticOverviewVisible(true);
123
+ }
122
124
  }, "Open Panel"), staticOverviewVisible && (0, _react2.jsx)(_OverlayPanel["default"], {
123
125
  isOpen: staticOverviewVisible
124
126
  }, (0, _react2.jsx)(_index.Box, null, (0, _react2.jsx)(_index.Box, {
@@ -133,7 +135,9 @@ var Default = function Default() {
133
135
  "aria-label": "edit",
134
136
  variant: "inverted",
135
137
  ml: "xs",
136
- onPress: setEditOverviewVisible
138
+ onPress: function onPress() {
139
+ return setEditOverviewVisible(true);
140
+ }
137
141
  }, (0, _react2.jsx)(_index.Icon, {
138
142
  icon: _CreateIcon["default"],
139
143
  size: 14
@@ -457,7 +461,7 @@ var Default = function Default() {
457
461
  onPress: function onPress() {
458
462
  return setEditOverviewVisible(false);
459
463
  },
460
- variant: "text",
464
+ variant: "link",
461
465
  "aria-label": "cancel"
462
466
  }, "Cancel"))))));
463
467
  };
@@ -72,7 +72,7 @@ var Default = function Default() {
72
72
  label: fieldName,
73
73
  isDisabled: isDisabled
74
74
  }), (0, _react2.jsx)(_index.Button, {
75
- variant: "text",
75
+ variant: "link",
76
76
  mb: "xs",
77
77
  ml: "md",
78
78
  onPress: function onPress() {
@@ -41,15 +41,15 @@ export var Default = function Default(args) {
41
41
  onAction: onAction
42
42
  }, args), ___EmotionJSX(Item, {
43
43
  key: "home",
44
- variant: "text",
44
+ variant: "link",
45
45
  "data-id": "home"
46
46
  }, "Home"), ___EmotionJSX(Item, {
47
47
  key: "trendy",
48
- variant: "text",
48
+ variant: "link",
49
49
  "data-id": "trendy"
50
50
  }, "Trendy"), ___EmotionJSX(Item, {
51
51
  key: "march 2020 assets",
52
- variant: "text",
52
+ variant: "link",
53
53
  "data-id": "march"
54
54
  }, "March 2020 Assets"));
55
55
  };
@@ -21,7 +21,7 @@ import { useButton } from '@react-aria/button';
21
21
  import { useHover } from '@react-aria/interactions';
22
22
  import { useFocusRing } from '@react-aria/focus';
23
23
  import { mergeProps } from '@react-aria/utils';
24
- import { useStatusClasses, usePropWarning, useAriaLabelWarning } from '../../hooks';
24
+ import { useStatusClasses, usePropWarning, useAriaLabelWarning, useDeprecationWarning } from '../../hooks';
25
25
  import Loader from '../Loader';
26
26
  import { jsx as ___EmotionJSX } from "@emotion/react";
27
27
  var Button = /*#__PURE__*/forwardRef(function (props, ref) {
@@ -70,6 +70,15 @@ var Button = /*#__PURE__*/forwardRef(function (props, ref) {
70
70
  }),
71
71
  classNames = _useStatusClasses.classNames;
72
72
 
73
+ useDeprecationWarning('The "icon" variant for `Button` is deprecated in Astro-UI 1.0.0, use the `IconButton` component instead.', {
74
+ isActive: props.variant === 'icon'
75
+ });
76
+ useDeprecationWarning('The "danger" variant for `Button` will be deprecated in Astro-UI 2.0.0, use the `critical` variant instead.', {
77
+ isActive: props.variant === 'danger'
78
+ });
79
+ useDeprecationWarning('The "text" variant for `Button` will be deprecated in Astro-UI 2.0.0, use the `link` variant instead.', {
80
+ isActive: props.variant === 'text'
81
+ });
73
82
  var ariaLabel = props['aria-label'];
74
83
  useAriaLabelWarning('Button', ariaLabel, variant === 'filter');
75
84
  return ___EmotionJSX(ThemeUIButton, _extends({
@@ -67,16 +67,6 @@ export var TextIconButton = function TextIconButton() {
67
67
  size: 20
68
68
  }), "Add a Form"));
69
69
  };
70
- export var TextButton = function TextButton() {
71
- return ___EmotionJSX(Button, {
72
- mb: "sm",
73
- variant: "text",
74
- "aria-label": "Add option"
75
- }, ___EmotionJSX(Text, {
76
- variant: "label",
77
- color: "active"
78
- }, " + Add Option"));
79
- };
80
70
  export var InlineButton = function InlineButton() {
81
71
  return ___EmotionJSX(Button, {
82
72
  mb: "sm",
@@ -138,7 +138,7 @@ export var DarkVariant = function DarkVariant() {
138
138
  onPress: state.close,
139
139
  "aria-label": "Yes"
140
140
  }, "Yes"), ___EmotionJSX(Button, {
141
- variant: "text",
141
+ variant: "link",
142
142
  onPress: state.close,
143
143
  "aria-label": "Cancel"
144
144
  }, "Cancel"))))
@@ -101,17 +101,6 @@ export var NoClearButton = function NoClearButton() {
101
101
 
102
102
  });
103
103
  };
104
- export var MaxLength = function MaxLength(args) {
105
- return ___EmotionJSX(SearchField, _extends({}, args, {
106
- icon: SearchIcon,
107
- "aria-label": "Search Groups",
108
- onSubmit: function onSubmit(text) {
109
- return alert(text);
110
- } // eslint-disable-line no-alert
111
- ,
112
- maxLength: 9
113
- }));
114
- };
115
104
  export var ControlledWithDebouncedInput = function ControlledWithDebouncedInput() {
116
105
  var _useState3 = useState(''),
117
106
  _useState4 = _slicedToArray(_useState3, 2),
@@ -195,7 +195,7 @@ TextAreaField.defaultProps = {
195
195
  isReadOnly: false,
196
196
  isRequired: false,
197
197
  isUnresizable: false,
198
- rows: 2,
198
+ rows: 4,
199
199
  status: statuses.DEFAULT
200
200
  };
201
201
  TextAreaField.displayName = 'TextAreaField';
@@ -2,7 +2,6 @@ import _slicedToArray from "@babel/runtime-corejs3/helpers/esm/slicedToArray";
2
2
  import _Object$values from "@babel/runtime-corejs3/core-js-stable/object/values";
3
3
  import React, { useState } from 'react';
4
4
  import TextAreaField from '.';
5
- import Box from '../Box';
6
5
  import statuses from '../../utils/devUtils/constants/statuses';
7
6
  import { modes as labelModes } from '../Label/constants';
8
7
  import { jsx as ___EmotionJSX } from "@emotion/react";
@@ -71,34 +70,6 @@ export var FloatLabel = function FloatLabel() {
71
70
  labelMode: "float"
72
71
  });
73
72
  };
74
- export var LeftLabel = function LeftLabel() {
75
- return ___EmotionJSX(Box, {
76
- gap: "xl",
77
- width: "fit-content"
78
- }, ___EmotionJSX(TextAreaField, {
79
- label: "Example label",
80
- labelMode: "left"
81
- }), ___EmotionJSX(TextAreaField, {
82
- label: "Example label that is much longer than the previous one",
83
- labelMode: "left",
84
- status: "error"
85
- }), ___EmotionJSX(TextAreaField, {
86
- label: "Example label with set width",
87
- labelMode: "left",
88
- containerProps: {
89
- sx: {
90
- gridTemplateColumns: '120px auto'
91
- }
92
- }
93
- }));
94
- };
95
- LeftLabel.parameters = {
96
- docs: {
97
- description: {
98
- story: 'Users are able to override the default 40% column width when using left label by providing a new gridTemplatesColumn value, as shown in the example below.'
99
- }
100
- }
101
- };
102
73
  export var Controlled = function Controlled() {
103
74
  var _useState = useState(),
104
75
  _useState2 = _slicedToArray(_useState, 2),
@@ -152,20 +123,6 @@ export var Error = function Error() {
152
123
  status: "error"
153
124
  });
154
125
  };
155
- export var Success = function Success() {
156
- return ___EmotionJSX(TextAreaField, {
157
- helperText: "Here is some helpful text...",
158
- label: "Example Label",
159
- status: "success"
160
- });
161
- };
162
- export var Warning = function Warning() {
163
- return ___EmotionJSX(TextAreaField, {
164
- helperText: "Here is some helpful text...",
165
- label: "Example Label",
166
- status: "warning"
167
- });
168
- };
169
126
  export var WithoutStatusIndicator = function WithoutStatusIndicator() {
170
127
  return ___EmotionJSX(TextAreaField, {
171
128
  label: "Example Label",
@@ -547,7 +547,7 @@ export var Default = function Default() {
547
547
  mr: "md",
548
548
  "aria-label": "Save Button"
549
549
  }, "Save"), ___EmotionJSX(Button, {
550
- variant: "text",
550
+ variant: "link",
551
551
  onPress: viewItem,
552
552
  "aria-label": "Cancel Button"
553
553
  }, "Cancel"))), editConfigurationVisible && ___EmotionJSX(OverlayPanel, {
@@ -677,7 +677,7 @@ export var Default = function Default() {
677
677
  mr: "md",
678
678
  "aria-label": "Save Button"
679
679
  }, "Save"), ___EmotionJSX(Button, {
680
- variant: "text",
680
+ variant: "link",
681
681
  onPress: viewItem,
682
682
  "aria-label": "Cancel Button"
683
683
  }, "Cancel"))), addItemVisible && ___EmotionJSX(OverlayPanel, {
@@ -763,7 +763,7 @@ export var Default = function Default() {
763
763
  isRow: true,
764
764
  sx: buttonBarStyles
765
765
  }, ___EmotionJSX(Button, {
766
- variant: "text",
766
+ variant: "link",
767
767
  onPress: resetListItem,
768
768
  mr: "md",
769
769
  "aria-label": "Cancel Button"
@@ -824,7 +824,7 @@ export var Default = function Default() {
824
824
  isRow: true,
825
825
  sx: buttonBarStyles
826
826
  }, ___EmotionJSX(Button, {
827
- variant: "text",
827
+ variant: "link",
828
828
  onPress: resetListItem,
829
829
  mr: "md"
830
830
  }, "Cancel"), ___EmotionJSX(Button, {
@@ -846,11 +846,11 @@ export var Default = function Default() {
846
846
  pt: "lg",
847
847
  mr: "auto"
848
848
  }, ___EmotionJSX(Button, {
849
- variant: "danger",
849
+ variant: "critical",
850
850
  mr: "md",
851
851
  onPress: deleteItem
852
852
  }, "Delete"), ___EmotionJSX(Button, {
853
- variant: "text",
853
+ variant: "link",
854
854
  onPress: function onPress() {
855
855
  return setIsDeleting(false);
856
856
  }
@@ -120,7 +120,7 @@ export var Default = function Default() {
120
120
  title: "Text Field"
121
121
  }, otherFieldProps)));
122
122
  }), ___EmotionJSX(Button, {
123
- variant: "text",
123
+ variant: "link",
124
124
  onPress: onFieldAdd,
125
125
  role: "button",
126
126
  title: "Add Field Button",
@@ -96,7 +96,9 @@ export var Default = function Default() {
96
96
  setEditOverviewVisible = _React$useState4[1];
97
97
 
98
98
  return ___EmotionJSX(React.Fragment, null, ___EmotionJSX(OverlayProvider, null, ___EmotionJSX(Button, {
99
- onPress: setStaticOverviewVisible
99
+ onPress: function onPress() {
100
+ return setStaticOverviewVisible(true);
101
+ }
100
102
  }, "Open Panel"), staticOverviewVisible && ___EmotionJSX(OverlayPanel, {
101
103
  isOpen: staticOverviewVisible
102
104
  }, ___EmotionJSX(Box, null, ___EmotionJSX(Box, {
@@ -111,7 +113,9 @@ export var Default = function Default() {
111
113
  "aria-label": "edit",
112
114
  variant: "inverted",
113
115
  ml: "xs",
114
- onPress: setEditOverviewVisible
116
+ onPress: function onPress() {
117
+ return setEditOverviewVisible(true);
118
+ }
115
119
  }, ___EmotionJSX(Icon, {
116
120
  icon: CreateIcon,
117
121
  size: 14
@@ -435,7 +439,7 @@ export var Default = function Default() {
435
439
  onPress: function onPress() {
436
440
  return setEditOverviewVisible(false);
437
441
  },
438
- variant: "text",
442
+ variant: "link",
439
443
  "aria-label": "cancel"
440
444
  }, "Cancel"))))));
441
445
  };
@@ -48,7 +48,7 @@ export var Default = function Default() {
48
48
  label: fieldName,
49
49
  isDisabled: isDisabled
50
50
  }), ___EmotionJSX(Button, {
51
- variant: "text",
51
+ variant: "link",
52
52
  mb: "xs",
53
53
  ml: "md",
54
54
  onPress: function onPress() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.2.0-alpha.10",
3
+ "version": "1.2.0-alpha.14",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "uxdev@pingidentity.com",
6
6
  "license": "Apache-2.0",