@pingux/astro 2.88.0-alpha.1 → 2.88.0-alpha.3

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.
@@ -79,12 +79,12 @@ var CheckboxField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
79
79
  }, []);
80
80
  return (0, _react2.jsx)(_.Box, (0, _extends2["default"])({}, (0, _pendoID.getPendoID)(displayName), fieldContainerProps), (0, _react2.jsx)(_.Box, {
81
81
  isRow: true
82
- }, (0, _react2.jsx)(_.Checkbox, (0, _extends2["default"])({
82
+ }, (0, _react2.jsx)(_.Label, (0, _extends2["default"])({
83
+ variant: "forms.label.checkbox"
84
+ }, fieldLabelProps), (0, _react2.jsx)(_.Checkbox, (0, _extends2["default"])({
83
85
  ref: checkboxRef,
84
86
  "aria-describedby": helperText && helperTextId
85
- }, fieldControlInputProps)), (0, _react2.jsx)(_.Label, (0, _extends2["default"])({
86
- variant: "forms.label.checkbox"
87
- }, fieldLabelProps), label)), helperText && (0, _react2.jsx)(_.FieldHelperText, {
87
+ }, fieldControlInputProps)), label)), helperText && (0, _react2.jsx)(_.FieldHelperText, {
88
88
  status: status,
89
89
  sx: {
90
90
  pt: 7
@@ -76,8 +76,9 @@ label.checkbox = _objectSpread(_objectSpread({}, _Text.text.base), {}, {
76
76
  width: 'max-content',
77
77
  alignItems: 'center',
78
78
  cursor: 'pointer',
79
- '& .is-disabled': {
80
- opacity: '1'
79
+ '&.is-disabled': {
80
+ opacity: '1',
81
+ color: 'rgba(37, 55, 70, 0.5)'
81
82
  }
82
83
  });
83
84
  label.radioGroup = _objectSpread(_objectSpread({}, label), {}, {
@@ -76,9 +76,7 @@ var Menu = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
76
76
  ref: menuRef,
77
77
  variant: "menu",
78
78
  "aria-orientation": _orientation["default"].VERTICAL
79
- }, others, (0, _reactAria.mergeProps)(focusProps, menuProps, hoverProps), {
80
- role: "menu"
81
- }), (0, _map["default"])(_context = (0, _from["default"])(state.collection)).call(_context, function (element) {
79
+ }, others, (0, _reactAria.mergeProps)(focusProps, menuProps, hoverProps)), (0, _map["default"])(_context = (0, _from["default"])(state.collection)).call(_context, function (element) {
82
80
  if (element.type === 'section') {
83
81
  return (0, _react2.jsx)(_MenuSection["default"], {
84
82
  key: element.key,
@@ -98,9 +98,7 @@ var MenuItem = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
98
98
  variant: isSeparator ? 'menuItem.separator' : 'menuItem.item',
99
99
  "data-id": dataId,
100
100
  "aria-disabled": isDisabled
101
- }, (0, _reactAria.mergeProps)(pressProps, hoverProps, focusProps, menuItemProps, others), {
102
- role: menuItemProps.role
103
- }), rendered);
101
+ }, (0, _reactAria.mergeProps)(pressProps, hoverProps, focusProps, menuItemProps, others)), rendered);
104
102
  });
105
103
  MenuItem.displayName = 'MenuItem';
106
104
  MenuItem.defaultProps = {
@@ -105,8 +105,7 @@ var Modal = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
105
105
  className: classNames
106
106
  }, propsContentProps, dialogProps, modalProps, {
107
107
  ref: modalRef,
108
- "aria-modal": true,
109
- role: "dialog"
108
+ "aria-modal": true
110
109
  }), hasCloseButton && (closeButton !== null && closeButton !== void 0 ? closeButton : (0, _react2.jsx)(_IconButton["default"], {
111
110
  "aria-label": "Close modal window",
112
111
  "data-id": "icon-button__close-modal-window",
@@ -10,13 +10,11 @@ _Object$defineProperty(exports, "__esModule", {
10
10
  });
11
11
  exports["default"] = exports.calculateBarWidth = void 0;
12
12
  var _extends2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/extends"));
13
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/objectWithoutProperties"));
14
13
  var _react = _interopRequireWildcard(require("react"));
15
14
  var _progress = require("@react-aria/progress");
16
15
  var _ = require("../..");
17
16
  var _hooks = require("../../hooks");
18
17
  var _react2 = require("@emotion/react");
19
- var _excluded = ["role"];
20
18
  function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
19
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = _Object$defineProperty && _Object$getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? _Object$getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { _Object$defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
22
20
  // Calculate the width of the progress bar as a percentage
@@ -46,8 +44,6 @@ var ProgressBar = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
46
44
  var _useProgressBar = (0, _progress.useProgressBar)(props),
47
45
  progressBarProps = _useProgressBar.progressBarProps,
48
46
  labelProps = _useProgressBar.labelProps;
49
- var role = labelProps.role,
50
- restLabelProps = (0, _objectWithoutProperties2["default"])(labelProps, _excluded);
51
47
  var barWidth = calculateBarWidth(value, minValue, maxValue);
52
48
  var ariaLabel = props['aria-label'];
53
49
  return (0, _react2.jsx)(_.Box, (0, _extends2["default"])({}, progressBarProps, {
@@ -62,7 +58,7 @@ var ProgressBar = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
62
58
  }, label && (0, _react2.jsx)(_.Text, (0, _extends2["default"])({
63
59
  fontSize: "xs",
64
60
  fontWeight: "3"
65
- }, restLabelProps), label), showValueLabel && (0, _react2.jsx)(_.Text, {
61
+ }, labelProps), label), showValueLabel && (0, _react2.jsx)(_.Text, {
66
62
  fontSize: "xs",
67
63
  fontWeight: "3"
68
64
  }, progressBarProps['aria-valuetext'])), (0, _react2.jsx)(_.Box, {
@@ -6,7 +6,6 @@ _Object$defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
8
  exports["default"] = void 0;
9
- var _extends2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/extends"));
10
9
  var _concat = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/concat"));
11
10
  var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/map"));
12
11
  var _from = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/array/from"));
@@ -41,9 +40,7 @@ var RangeCalendarGrid = function RangeCalendarGrid(props) {
41
40
  var _context;
42
41
  return (0, _concat["default"])(_context = "".concat(day, "-")).call(_context, index);
43
42
  };
44
- return (0, _react2.jsx)(_index.Table, (0, _extends2["default"])({}, gridProps, {
45
- role: "grid"
46
- }), (0, _react2.jsx)(_index.TableHead, headerProps, (0, _react2.jsx)(_index.TableRow, null, (0, _map["default"])(weekDays).call(weekDays, function (day, index) {
43
+ return (0, _react2.jsx)(_index.Table, gridProps, (0, _react2.jsx)(_index.TableHead, headerProps, (0, _react2.jsx)(_index.TableRow, null, (0, _map["default"])(weekDays).call(weekDays, function (day, index) {
47
44
  return (0, _react2.jsx)(_index.TableCell, {
48
45
  isHeading: true,
49
46
  variant: "rangeCalendar.columnHeader",
@@ -35,9 +35,7 @@ var Separator = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
35
35
  ref: ref,
36
36
  className: classNames,
37
37
  variant: "separator.base"
38
- }, others, separatorProps, {
39
- role: "separator"
40
- }));
38
+ }, others, separatorProps));
41
39
  });
42
40
  Separator.defaultProps = {
43
41
  orientation: 'horizontal'
@@ -72,7 +72,6 @@ var CollectionTab = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
72
72
  ref: tabRef
73
73
  }, itemProps, {
74
74
  title: itemProps === null || itemProps === void 0 ? void 0 : itemProps.textValue,
75
- role: "tab",
76
75
  "data-testid": "test-me"
77
76
  }), (0, _react2.jsx)(_react["default"].Fragment, null, itemProps === null || itemProps === void 0 ? void 0 : itemProps.icon, (0, _react2.jsx)(_.Text, (0, _extends2["default"])({
78
77
  variant: "tabLabel"
@@ -54,8 +54,7 @@ var TabPanel = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
54
54
  raTabPanelProps['aria-labelledby'] = parentTab === null || parentTab === void 0 ? void 0 : parentTab.id;
55
55
  }
56
56
  return (0, _react2.jsx)(_Box["default"], (0, _extends2["default"])({}, tabPanelProps, raTabPanelProps, {
57
- ref: tabPanelRef,
58
- role: "tabpanel"
57
+ ref: tabPanelRef
59
58
  }), children);
60
59
  });
61
60
  var Tabs = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
@@ -98,8 +97,7 @@ var Tabs = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
98
97
  variant: "tabs",
99
98
  isRow: orientation === _orientation["default"].HORIZONTAL
100
99
  }, tabListProps, raTabListProps, {
101
- ref: tabListRef,
102
- role: "tablist"
100
+ ref: tabListRef
103
101
  }), (0, _map["default"])(_context4 = (0, _filter["default"])(_context5 = (0, _from["default"])(state.collection)).call(_context5, function (item) {
104
102
  var _item$props;
105
103
  return !(item !== null && item !== void 0 && (_item$props = item.props) !== null && _item$props !== void 0 && _item$props.isListItem);
@@ -27,7 +27,6 @@ var TimeSegment = function TimeSegment(props) {
27
27
  var ref = (0, _react.useRef)(null);
28
28
  var _useDateSegment = (0, _datepicker.useDateSegment)(segment, state, ref),
29
29
  segmentProps = _useDateSegment.segmentProps;
30
- delete segmentProps.role;
31
30
  var focusManager = (0, _reactAria.useFocusManager)();
32
31
  var handleKeyEvents = (0, _react.useCallback)(function (e) {
33
32
  var getSegmentValue = function getSegmentValue(seg) {
@@ -56,8 +55,7 @@ var TimeSegment = function TimeSegment(props) {
56
55
  return (0, _react2.jsx)(_index.Box, (0, _extends2["default"])({}, segmentProps, {
57
56
  ref: ref,
58
57
  variant: "forms.timeField.segment",
59
- onKeyUp: handleKeyEvents,
60
- role: "spinbutton"
58
+ onKeyUp: handleKeyEvents
61
59
  }), text);
62
60
  };
63
61
  var _default = TimeSegment;
@@ -859,7 +859,7 @@ declare const useField: <T>(props: UseFieldProps<T>) => {
859
859
  borderRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
860
860
  zIndex?: import("theme-ui").StylePropertyValue<string | (string & {}) | (number & {}) | undefined>;
861
861
  sx?: import("theme-ui").ThemeUIStyleObject | undefined;
862
- role?: AriaRole | undefined;
862
+ role?: React.AriaRole | undefined;
863
863
  className: string;
864
864
  'aria-activedescendant'?: string | undefined;
865
865
  'aria-atomic'?: (boolean | "false" | "true") | undefined;
@@ -1,5 +1,5 @@
1
- import React, { AriaAttributes, DOMAttributes as ReactDOMAttributes, FocusEvent } from 'react';
2
- export type AriaRole = 'alert' | 'alertdialog' | 'application' | 'article' | 'banner' | 'button' | 'cell' | 'checkbox' | 'columnheader' | 'combobox' | 'complementary' | 'contentinfo' | 'definition' | 'dialog' | 'directory' | 'document' | 'feed' | 'figure' | 'form' | 'grid' | 'gridcell' | 'group' | 'heading' | 'img' | 'link' | 'list' | 'listbox' | 'listitem' | 'log' | 'main' | 'marquee' | 'math' | 'menu' | 'menubar' | 'menuitem' | 'menuitemcheckbox' | 'menuitemradio' | 'navigation' | 'none' | 'note' | 'option' | 'presentation' | 'progressbar' | 'radio' | 'radiogroup' | 'region' | 'row' | 'rowgroup' | 'rowheader' | 'scrollbar' | 'search' | 'searchbox' | 'separator' | 'slider' | 'spinbutton' | 'status' | 'switch' | 'tab' | 'table' | 'tablist' | 'tabpanel' | 'term' | 'textbox' | 'timer' | 'toolbar' | 'tooltip' | 'tree' | 'treegrid' | 'treeitem' | (string & Record<string, unknown>);
1
+ import React, { AriaAttributes, AriaRole as ReactAriaRole, DOMAttributes as ReactDOMAttributes, FocusEvent } from 'react';
2
+ export type AriaRole = ReactAriaRole;
3
3
  export interface FocusableElement extends Element, HTMLOrSVGElement {
4
4
  }
5
5
  export type FocusEventHandler = (e: FocusEvent<Element>) => void;
@@ -68,12 +68,12 @@ var CheckboxField = /*#__PURE__*/forwardRef(function (props, ref) {
68
68
  }, []);
69
69
  return ___EmotionJSX(Box, _extends({}, getPendoID(displayName), fieldContainerProps), ___EmotionJSX(Box, {
70
70
  isRow: true
71
- }, ___EmotionJSX(Checkbox, _extends({
71
+ }, ___EmotionJSX(Label, _extends({
72
+ variant: "forms.label.checkbox"
73
+ }, fieldLabelProps), ___EmotionJSX(Checkbox, _extends({
72
74
  ref: checkboxRef,
73
75
  "aria-describedby": helperText && helperTextId
74
- }, fieldControlInputProps)), ___EmotionJSX(Label, _extends({
75
- variant: "forms.label.checkbox"
76
- }, fieldLabelProps), label)), helperText && ___EmotionJSX(FieldHelperText, {
76
+ }, fieldControlInputProps)), label)), helperText && ___EmotionJSX(FieldHelperText, {
77
77
  status: status,
78
78
  sx: {
79
79
  pt: 7
@@ -71,8 +71,9 @@ label.checkbox = _objectSpread(_objectSpread({}, text.base), {}, {
71
71
  width: 'max-content',
72
72
  alignItems: 'center',
73
73
  cursor: 'pointer',
74
- '& .is-disabled': {
75
- opacity: '1'
74
+ '&.is-disabled': {
75
+ opacity: '1',
76
+ color: 'rgba(37, 55, 70, 0.5)'
76
77
  }
77
78
  });
78
79
  label.radioGroup = _objectSpread(_objectSpread({}, label), {}, {
@@ -65,9 +65,7 @@ var Menu = /*#__PURE__*/forwardRef(function (props, ref) {
65
65
  ref: menuRef,
66
66
  variant: "menu",
67
67
  "aria-orientation": ORIENTATION.VERTICAL
68
- }, others, mergeProps(focusProps, menuProps, hoverProps), {
69
- role: "menu"
70
- }), _mapInstanceProperty(_context = _Array$from(state.collection)).call(_context, function (element) {
68
+ }, others, mergeProps(focusProps, menuProps, hoverProps)), _mapInstanceProperty(_context = _Array$from(state.collection)).call(_context, function (element) {
71
69
  if (element.type === 'section') {
72
70
  return ___EmotionJSX(MenuSection, {
73
71
  key: element.key,
@@ -86,9 +86,7 @@ var MenuItem = /*#__PURE__*/forwardRef(function (props, ref) {
86
86
  variant: isSeparator ? 'menuItem.separator' : 'menuItem.item',
87
87
  "data-id": dataId,
88
88
  "aria-disabled": isDisabled
89
- }, mergeProps(pressProps, hoverProps, focusProps, menuItemProps, others), {
90
- role: menuItemProps.role
91
- }), rendered);
89
+ }, mergeProps(pressProps, hoverProps, focusProps, menuItemProps, others)), rendered);
92
90
  });
93
91
  MenuItem.displayName = 'MenuItem';
94
92
  MenuItem.defaultProps = {
@@ -94,8 +94,7 @@ var Modal = /*#__PURE__*/forwardRef(function (props, ref) {
94
94
  className: classNames
95
95
  }, propsContentProps, dialogProps, modalProps, {
96
96
  ref: modalRef,
97
- "aria-modal": true,
98
- role: "dialog"
97
+ "aria-modal": true
99
98
  }), hasCloseButton && (closeButton !== null && closeButton !== void 0 ? closeButton : ___EmotionJSX(IconButton, {
100
99
  "aria-label": "Close modal window",
101
100
  "data-id": "icon-button__close-modal-window",
@@ -1,6 +1,4 @@
1
1
  import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
- import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/esm/objectWithoutProperties";
3
- var _excluded = ["role"];
4
2
  import React, { forwardRef } from 'react';
5
3
  import { useProgressBar } from '@react-aria/progress';
6
4
  import { Box, Text } from '../..';
@@ -32,8 +30,6 @@ var ProgressBar = /*#__PURE__*/forwardRef(function (props, ref) {
32
30
  var _useProgressBar = useProgressBar(props),
33
31
  progressBarProps = _useProgressBar.progressBarProps,
34
32
  labelProps = _useProgressBar.labelProps;
35
- var role = labelProps.role,
36
- restLabelProps = _objectWithoutProperties(labelProps, _excluded);
37
33
  var barWidth = calculateBarWidth(value, minValue, maxValue);
38
34
  var ariaLabel = props['aria-label'];
39
35
  return ___EmotionJSX(Box, _extends({}, progressBarProps, {
@@ -48,7 +44,7 @@ var ProgressBar = /*#__PURE__*/forwardRef(function (props, ref) {
48
44
  }, label && ___EmotionJSX(Text, _extends({
49
45
  fontSize: "xs",
50
46
  fontWeight: "3"
51
- }, restLabelProps), label), showValueLabel && ___EmotionJSX(Text, {
47
+ }, labelProps), label), showValueLabel && ___EmotionJSX(Text, {
52
48
  fontSize: "xs",
53
49
  fontWeight: "3"
54
50
  }, progressBarProps['aria-valuetext'])), ___EmotionJSX(Box, {
@@ -1,4 +1,3 @@
1
- import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
1
  import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
3
2
  import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
4
3
  import _Array$from from "@babel/runtime-corejs3/core-js-stable/array/from";
@@ -33,9 +32,7 @@ var RangeCalendarGrid = function RangeCalendarGrid(props) {
33
32
  var _context;
34
33
  return _concatInstanceProperty(_context = "".concat(day, "-")).call(_context, index);
35
34
  };
36
- return ___EmotionJSX(Table, _extends({}, gridProps, {
37
- role: "grid"
38
- }), ___EmotionJSX(TableHead, headerProps, ___EmotionJSX(TableRow, null, _mapInstanceProperty(weekDays).call(weekDays, function (day, index) {
35
+ return ___EmotionJSX(Table, gridProps, ___EmotionJSX(TableHead, headerProps, ___EmotionJSX(TableRow, null, _mapInstanceProperty(weekDays).call(weekDays, function (day, index) {
39
36
  return ___EmotionJSX(TableCell, {
40
37
  isHeading: true,
41
38
  variant: "rangeCalendar.columnHeader",
@@ -22,9 +22,7 @@ var Separator = /*#__PURE__*/forwardRef(function (props, ref) {
22
22
  ref: ref,
23
23
  className: classNames,
24
24
  variant: "separator.base"
25
- }, others, separatorProps, {
26
- role: "separator"
27
- }));
25
+ }, others, separatorProps));
28
26
  });
29
27
  Separator.defaultProps = {
30
28
  orientation: 'horizontal'
@@ -59,7 +59,6 @@ export var CollectionTab = /*#__PURE__*/forwardRef(function (props, ref) {
59
59
  ref: tabRef
60
60
  }, itemProps, {
61
61
  title: itemProps === null || itemProps === void 0 ? void 0 : itemProps.textValue,
62
- role: "tab",
63
62
  "data-testid": "test-me"
64
63
  }), ___EmotionJSX(React.Fragment, null, itemProps === null || itemProps === void 0 ? void 0 : itemProps.icon, ___EmotionJSX(Text, _extends({
65
64
  variant: "tabLabel"
@@ -40,8 +40,7 @@ var TabPanel = /*#__PURE__*/forwardRef(function (_ref, ref) {
40
40
  raTabPanelProps['aria-labelledby'] = parentTab === null || parentTab === void 0 ? void 0 : parentTab.id;
41
41
  }
42
42
  return ___EmotionJSX(Box, _extends({}, tabPanelProps, raTabPanelProps, {
43
- ref: tabPanelRef,
44
- role: "tabpanel"
43
+ ref: tabPanelRef
45
44
  }), children);
46
45
  });
47
46
  var Tabs = /*#__PURE__*/forwardRef(function (props, ref) {
@@ -84,8 +83,7 @@ var Tabs = /*#__PURE__*/forwardRef(function (props, ref) {
84
83
  variant: "tabs",
85
84
  isRow: orientation === ORIENTATION.HORIZONTAL
86
85
  }, tabListProps, raTabListProps, {
87
- ref: tabListRef,
88
- role: "tablist"
86
+ ref: tabListRef
89
87
  }), _mapInstanceProperty(_context4 = _filterInstanceProperty(_context5 = _Array$from(state.collection)).call(_context5, function (item) {
90
88
  var _item$props;
91
89
  return !(item !== null && item !== void 0 && (_item$props = item.props) !== null && _item$props !== void 0 && _item$props.isListItem);
@@ -14,7 +14,6 @@ var TimeSegment = function TimeSegment(props) {
14
14
  var ref = useRef(null);
15
15
  var _useDateSegment = useDateSegment(segment, state, ref),
16
16
  segmentProps = _useDateSegment.segmentProps;
17
- delete segmentProps.role;
18
17
  var focusManager = useFocusManager();
19
18
  var handleKeyEvents = useCallback(function (e) {
20
19
  var getSegmentValue = function getSegmentValue(seg) {
@@ -43,8 +42,7 @@ var TimeSegment = function TimeSegment(props) {
43
42
  return ___EmotionJSX(Box, _extends({}, segmentProps, {
44
43
  ref: ref,
45
44
  variant: "forms.timeField.segment",
46
- onKeyUp: handleKeyEvents,
47
- role: "spinbutton"
45
+ onKeyUp: handleKeyEvents
48
46
  }), text);
49
47
  };
50
48
  export default TimeSegment;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.88.0-alpha.1",
3
+ "version": "2.88.0-alpha.3",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",