@pingux/astro 1.29.0-alpha.0 → 1.29.0-alpha.2

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.
Files changed (55) hide show
  1. package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.stories.js +1 -1
  2. package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.js +1 -1
  3. package/lib/cjs/components/Breadcrumbs/BreadcrumbItem.js +0 -4
  4. package/lib/cjs/components/Breadcrumbs/Breadcrumbs.js +5 -2
  5. package/lib/cjs/components/IconButton/IconButton.stories.js +1 -1
  6. package/lib/cjs/recipes/ApplicationSearchDropdown.stories.js +1 -1
  7. package/lib/cjs/recipes/AttributeMappingReadOnlyField.stories.js +1 -1
  8. package/lib/cjs/recipes/AttributesAndPingOneMapping.stories.js +1 -1
  9. package/lib/cjs/recipes/CollapsiblePanel.stories.js +1 -1
  10. package/lib/cjs/recipes/ConditionalFilter.stories.js +1 -1
  11. package/lib/cjs/recipes/CopyToClipboard.stories.js +1 -1
  12. package/lib/cjs/recipes/CountryPicker.stories.js +1 -1
  13. package/lib/cjs/recipes/DatePicker.stories.js +1 -1
  14. package/lib/cjs/recipes/DraggableBox.stories.js +1 -1
  15. package/lib/cjs/recipes/EditableInput.stories.js +1 -1
  16. package/lib/cjs/recipes/FlippableCaretMenuButton.stories.js +1 -1
  17. package/lib/cjs/recipes/LogoTabs.stories.js +1 -1
  18. package/lib/cjs/recipes/MaskedValue.stories.js +1 -1
  19. package/lib/cjs/recipes/NeutralInput.stories.js +1 -1
  20. package/lib/cjs/recipes/OneWayToBidirectionalArrow.stories.js +1 -1
  21. package/lib/cjs/recipes/RadioButtonsWithLinks.stories.js +1 -1
  22. package/lib/cjs/recipes/RowLineChart.stories.js +1 -1
  23. package/lib/cjs/recipes/ScrollableListView.stories.js +1 -1
  24. package/lib/cjs/recipes/StatsCircle.stories.js +1 -1
  25. package/lib/cjs/recipes/TrialExperienceIndustryButtons.stories.js +1 -1
  26. package/lib/cjs/recipes/TrialExperienceStatusBar.stories.js +1 -1
  27. package/lib/cjs/styles/variants/text.js +6 -0
  28. package/lib/components/AccordionGridGroup/AccordionGridGroup.stories.js +1 -1
  29. package/lib/components/AccordionGroup/AccordionGroup.stories.js +1 -1
  30. package/lib/components/Breadcrumbs/BreadcrumbItem.js +0 -4
  31. package/lib/components/Breadcrumbs/Breadcrumbs.js +5 -2
  32. package/lib/components/IconButton/IconButton.stories.js +1 -1
  33. package/lib/recipes/ApplicationSearchDropdown.stories.js +1 -1
  34. package/lib/recipes/AttributeMappingReadOnlyField.stories.js +1 -1
  35. package/lib/recipes/AttributesAndPingOneMapping.stories.js +1 -1
  36. package/lib/recipes/CollapsiblePanel.stories.js +1 -1
  37. package/lib/recipes/ConditionalFilter.stories.js +1 -1
  38. package/lib/recipes/CopyToClipboard.stories.js +1 -1
  39. package/lib/recipes/CountryPicker.stories.js +1 -1
  40. package/lib/recipes/DatePicker.stories.js +1 -1
  41. package/lib/recipes/DraggableBox.stories.js +1 -1
  42. package/lib/recipes/EditableInput.stories.js +1 -1
  43. package/lib/recipes/FlippableCaretMenuButton.stories.js +1 -1
  44. package/lib/recipes/LogoTabs.stories.js +1 -1
  45. package/lib/recipes/MaskedValue.stories.js +1 -1
  46. package/lib/recipes/NeutralInput.stories.js +1 -1
  47. package/lib/recipes/OneWayToBidirectionalArrow.stories.js +1 -1
  48. package/lib/recipes/RadioButtonsWithLinks.stories.js +1 -1
  49. package/lib/recipes/RowLineChart.stories.js +1 -1
  50. package/lib/recipes/ScrollableListView.stories.js +1 -1
  51. package/lib/recipes/StatsCircle.stories.js +1 -1
  52. package/lib/recipes/TrialExperienceIndustryButtons.stories.js +1 -1
  53. package/lib/recipes/TrialExperienceStatusBar.stories.js +1 -1
  54. package/lib/styles/variants/text.js +6 -0
  55. package/package.json +1 -1
@@ -70,7 +70,7 @@ var data = [{
70
70
  }]
71
71
  }];
72
72
  var _default = {
73
- title: 'Accordion Grid',
73
+ title: 'AccordionGridGroup',
74
74
  component: _AccordionGridGroup["default"],
75
75
  parameters: {
76
76
  actions: {
@@ -61,7 +61,7 @@ var itemArrayDisabled = [{
61
61
  children: 'Child Renders Here'
62
62
  }];
63
63
  var _default = {
64
- title: 'Accordion',
64
+ title: 'AccordionGroup',
65
65
  component: _["default"],
66
66
  parameters: {
67
67
  actions: {
@@ -88,10 +88,6 @@ var BreadcrumbItem = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
88
88
  return _index.Text;
89
89
 
90
90
  case 'Link':
91
- if (isCurrent) {
92
- return _index.Text;
93
- }
94
-
95
91
  return _index.Link;
96
92
 
97
93
  case 'Fragment':
@@ -84,7 +84,8 @@ var Breadcrumbs = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
84
84
  minHeight: 42
85
85
  },
86
86
  as: "li",
87
- key: "li-".concat(child.key)
87
+ key: "li-".concat(child.key),
88
+ variant: "text.breadcrumbLi"
88
89
  }, (0, _react2.jsx)(_BreadcrumbItem["default"], (0, _extends2["default"])({
89
90
  "data-id": child['data-id'],
90
91
  isCurrent: isCurrentItem,
@@ -98,7 +99,9 @@ var Breadcrumbs = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
98
99
  size: 16
99
100
  }, iconProps)));
100
101
  }, [children.length, filteredChildren, icon, iconProps, onAction]);
101
- return (0, _react2.jsx)("nav", null, (0, _react2.jsx)(_index.Box, (0, _extends2["default"])({
102
+ return (0, _react2.jsx)("nav", {
103
+ "aria-label": "Breadcrumb"
104
+ }, (0, _react2.jsx)(_index.Box, (0, _extends2["default"])({
102
105
  ref: breadcrumbsRef,
103
106
  isRow: true,
104
107
  sx: {
@@ -23,7 +23,7 @@ var _Icon = _interopRequireDefault(require("../Icon"));
23
23
  var _react2 = require("@emotion/react");
24
24
 
25
25
  var _default = {
26
- title: 'Icon Button',
26
+ title: 'IconButton',
27
27
  component: _["default"],
28
28
  parameters: {
29
29
  docs: {
@@ -65,7 +65,7 @@ function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (
65
65
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
66
66
 
67
67
  var _default = {
68
- title: 'Recipes/ApplicationSearchDropdown'
68
+ title: 'Recipes/Application Search Dropdown'
69
69
  };
70
70
  exports["default"] = _default;
71
71
  var items = [{
@@ -19,7 +19,7 @@ var _index = require("../index");
19
19
  var _react2 = require("@emotion/react");
20
20
 
21
21
  var _default = {
22
- title: 'Recipes/AttributeMappingReadOnlyField'
22
+ title: 'Recipes/Attribute Mapping Read Only Field'
23
23
  };
24
24
  exports["default"] = _default;
25
25
 
@@ -53,7 +53,7 @@ var items = [{
53
53
  id: '3'
54
54
  }];
55
55
  var _default = {
56
- title: 'Recipes/AttributesP1Mappings'
56
+ title: 'Recipes/Attributes And PingOne Mapping'
57
57
  };
58
58
  exports["default"] = _default;
59
59
  var sx = {
@@ -69,7 +69,7 @@ function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (
69
69
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys(Object(source), !0)).call(_context2, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
70
70
 
71
71
  var _default = {
72
- title: 'Recipes/CollapsiblePanel with List'
72
+ title: 'Recipes/Collapsible Panel with List'
73
73
  };
74
74
  exports["default"] = _default;
75
75
  var data = [{
@@ -29,7 +29,7 @@ var _OverlayPanel = _interopRequireDefault(require("../components/OverlayPanel")
29
29
  var _react2 = require("@emotion/react");
30
30
 
31
31
  var _default = {
32
- title: 'Recipes/ConditionalFilter'
32
+ title: 'Recipes/Conditional Filter'
33
33
  };
34
34
  exports["default"] = _default;
35
35
  var sx = {
@@ -19,7 +19,7 @@ var _useCopyToClipboard = _interopRequireDefault(require("../hooks/useCopyToClip
19
19
  var _react2 = require("@emotion/react");
20
20
 
21
21
  var _default = {
22
- title: 'Recipes/CopyToClipboard'
22
+ title: 'Recipes/Copy to Clipboard'
23
23
  };
24
24
  exports["default"] = _default;
25
25
 
@@ -41,7 +41,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
41
41
  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; }
42
42
 
43
43
  var _default = {
44
- title: 'Recipes/CountryPicker'
44
+ title: 'Recipes/Country Picker'
45
45
  };
46
46
  exports["default"] = _default;
47
47
 
@@ -43,7 +43,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
43
43
  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; }
44
44
 
45
45
  var _default = {
46
- title: 'Recipes/DatePicker'
46
+ title: 'Recipes/Date Picker'
47
47
  };
48
48
  exports["default"] = _default;
49
49
  var sx = {
@@ -25,7 +25,7 @@ var _Text = _interopRequireDefault(require("../components/Text"));
25
25
  var _react2 = require("@emotion/react");
26
26
 
27
27
  var _default = {
28
- title: 'Recipes/DraggableBox'
28
+ title: 'Recipes/Draggable Box'
29
29
  };
30
30
  exports["default"] = _default;
31
31
 
@@ -51,7 +51,7 @@ function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (
51
51
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
52
52
 
53
53
  var _default = {
54
- title: 'Recipes/EditableInput'
54
+ title: 'Recipes/Editable Input'
55
55
  };
56
56
  exports["default"] = _default;
57
57
  var EditableAreaContext = /*#__PURE__*/(0, _react.createContext)();
@@ -69,7 +69,7 @@ function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (
69
69
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys(Object(source), !0)).call(_context2, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
70
70
 
71
71
  var _default = {
72
- title: 'Recipes/FlippableCaretMenuButton'
72
+ title: 'Recipes/Flippable Caret Menu Button'
73
73
  };
74
74
  exports["default"] = _default;
75
75
  var buttonArray = ['Web App', 'Native App', 'Single Page App', 'Non-Interactive', 'Worker', 'Advanced Configuration', 'Built-in admin console for this environment', 'Built-in Application portal'];
@@ -55,7 +55,7 @@ function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (
55
55
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
56
56
 
57
57
  var _default = {
58
- title: 'Recipes/LogoTabs'
58
+ title: 'Recipes/Logo Tabs'
59
59
  };
60
60
  exports["default"] = _default;
61
61
 
@@ -37,7 +37,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
37
37
  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; }
38
38
 
39
39
  var _default = {
40
- title: 'Recipes/MaskedValues',
40
+ title: 'Recipes/Masked Values',
41
41
  argTypes: {
42
42
  dataTitle: {
43
43
  control: {
@@ -17,7 +17,7 @@ var _CheckboxField = _interopRequireDefault(require("../components/CheckboxField
17
17
  var _react2 = require("@emotion/react");
18
18
 
19
19
  var _default = {
20
- title: 'Recipes/NeutralCheckboxField'
20
+ title: 'Recipes/Neutral Checkbox Field'
21
21
  };
22
22
  exports["default"] = _default;
23
23
  var sx = {
@@ -27,7 +27,7 @@ var _index = require("../index");
27
27
  var _react2 = require("@emotion/react");
28
28
 
29
29
  var _default = {
30
- title: 'Recipes/OneWayToBidirectionalArrow'
30
+ title: 'Recipes/One Way to Bidirectional Arrow'
31
31
  };
32
32
  exports["default"] = _default;
33
33
  var items = [{
@@ -37,7 +37,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
37
37
  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; }
38
38
 
39
39
  var _default = {
40
- title: 'Recipes/RadioButtonsWithLinks'
40
+ title: 'Recipes/Radio Buttons with Links'
41
41
  };
42
42
  exports["default"] = _default;
43
43
 
@@ -39,7 +39,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
39
39
  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; }
40
40
 
41
41
  var _default = {
42
- title: 'Recipes/RowLineChart',
42
+ title: 'Recipes/Row Line Chart',
43
43
  parameters: {
44
44
  chromatic: {
45
45
  diffThreshold: 0.9
@@ -43,7 +43,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
43
43
  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; }
44
44
 
45
45
  var _default = {
46
- title: 'Recipes/ScrollableListView'
46
+ title: 'Recipes/Scrollable List View'
47
47
  };
48
48
  exports["default"] = _default;
49
49
  var unfilteredItems = [{
@@ -21,7 +21,7 @@ var _colors = require("../styles/colors");
21
21
  var _react2 = require("@emotion/react");
22
22
 
23
23
  var _default = {
24
- title: 'Recipes/StatsCircle'
24
+ title: 'Recipes/Stats Circle'
25
25
  };
26
26
  exports["default"] = _default;
27
27
  var sx = {
@@ -23,7 +23,7 @@ var _useModalState = _interopRequireDefault(require("../hooks/useModalState"));
23
23
  var _react2 = require("@emotion/react");
24
24
 
25
25
  var _default = {
26
- title: 'Recipes/TrialExperienceButtons'
26
+ title: 'Recipes/Trial Experience Buttons'
27
27
  };
28
28
  exports["default"] = _default;
29
29
  var headingTextStyle = {
@@ -41,7 +41,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "functi
41
41
  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; }
42
42
 
43
43
  var _default = {
44
- title: 'Recipes/TrialExperienceNav'
44
+ title: 'Recipes/Trial Experience Nav'
45
45
  };
46
46
  exports["default"] = _default;
47
47
 
@@ -141,6 +141,11 @@ var expandableRow = {
141
141
  }
142
142
  }
143
143
  };
144
+ var breadcrumbLi = {
145
+ 'a.is-hovered.is-current ': {
146
+ textDecoration: 'none'
147
+ }
148
+ };
144
149
  var breadcrumbLink = {
145
150
  color: 'active',
146
151
  fontFamily: 'standard',
@@ -255,6 +260,7 @@ var text = {
255
260
  color: 'text.secondary',
256
261
  fontFamily: 'standard'
257
262
  }),
263
+ breadcrumbLi: breadcrumbLi,
258
264
  breadcrumbLink: breadcrumbLink,
259
265
  buttonLabel: _objectSpread(_objectSpread({}, wordWrap), {}, {
260
266
  fontSize: 'md',
@@ -39,7 +39,7 @@ var data = [{
39
39
  }]
40
40
  }];
41
41
  export default {
42
- title: 'Accordion Grid',
42
+ title: 'AccordionGridGroup',
43
43
  component: AccordionGridGroup,
44
44
  parameters: {
45
45
  actions: {
@@ -32,7 +32,7 @@ var itemArrayDisabled = [{
32
32
  children: 'Child Renders Here'
33
33
  }];
34
34
  export default {
35
- title: 'Accordion',
35
+ title: 'AccordionGroup',
36
36
  component: AccordionGroup,
37
37
  parameters: {
38
38
  actions: {
@@ -53,10 +53,6 @@ var BreadcrumbItem = /*#__PURE__*/forwardRef(function (props, ref) {
53
53
  return Text;
54
54
 
55
55
  case 'Link':
56
- if (isCurrent) {
57
- return Text;
58
- }
59
-
60
56
  return Link;
61
57
 
62
58
  case 'Fragment':
@@ -50,7 +50,8 @@ var Breadcrumbs = /*#__PURE__*/forwardRef(function (props, ref) {
50
50
  minHeight: 42
51
51
  },
52
52
  as: "li",
53
- key: "li-".concat(child.key)
53
+ key: "li-".concat(child.key),
54
+ variant: "text.breadcrumbLi"
54
55
  }, ___EmotionJSX(BreadcrumbItem, _extends({
55
56
  "data-id": child['data-id'],
56
57
  isCurrent: isCurrentItem,
@@ -64,7 +65,9 @@ var Breadcrumbs = /*#__PURE__*/forwardRef(function (props, ref) {
64
65
  size: 16
65
66
  }, iconProps)));
66
67
  }, [children.length, filteredChildren, icon, iconProps, onAction]);
67
- return ___EmotionJSX("nav", null, ___EmotionJSX(Box, _extends({
68
+ return ___EmotionJSX("nav", {
69
+ "aria-label": "Breadcrumb"
70
+ }, ___EmotionJSX(Box, _extends({
68
71
  ref: breadcrumbsRef,
69
72
  isRow: true,
70
73
  sx: {
@@ -5,7 +5,7 @@ import IconButton from '.';
5
5
  import Icon from '../Icon';
6
6
  import { jsx as ___EmotionJSX } from "@emotion/react";
7
7
  export default {
8
- title: 'Icon Button',
8
+ title: 'IconButton',
9
9
  component: IconButton,
10
10
  parameters: {
11
11
  docs: {
@@ -25,7 +25,7 @@ import { FocusScope, createFocusManager } from '@react-aria/focus';
25
25
  import { ListView, Item, IconButton, Text, PopoverContainer, Box, Icon, SearchField } from '../index';
26
26
  import { jsx as ___EmotionJSX } from "@emotion/react";
27
27
  export default {
28
- title: 'Recipes/ApplicationSearchDropdown'
28
+ title: 'Recipes/Application Search Dropdown'
29
29
  };
30
30
  var items = [{
31
31
  key: 'Gmail',
@@ -3,7 +3,7 @@ import CreateIcon from 'mdi-react/CreateIcon';
3
3
  import { Box, Chip, IconButton, Text, Icon, Separator, TextField, HelpHint } from '../index';
4
4
  import { jsx as ___EmotionJSX } from "@emotion/react";
5
5
  export default {
6
- title: 'Recipes/AttributeMappingReadOnlyField'
6
+ title: 'Recipes/Attribute Mapping Read Only Field'
7
7
  };
8
8
  export var Default = function Default() {
9
9
  var Row = function Row(props) {
@@ -20,7 +20,7 @@ var items = [{
20
20
  id: '3'
21
21
  }];
22
22
  export default {
23
- title: 'Recipes/AttributesP1Mappings'
23
+ title: 'Recipes/Attributes And PingOne Mapping'
24
24
  };
25
25
  var sx = {
26
26
  rowBox: {
@@ -27,7 +27,7 @@ import SearchIcon from 'mdi-react/SearchIcon';
27
27
  import { Breadcrumbs, Box, CheckboxField, Chip, Icon, IconButton, Item, ListView, CollapsiblePanel, CollapsiblePanelItem, SearchField, Text } from '..';
28
28
  import { jsx as ___EmotionJSX } from "@emotion/react";
29
29
  export default {
30
- title: 'Recipes/CollapsiblePanel with List'
30
+ title: 'Recipes/Collapsible Panel with List'
31
31
  };
32
32
  var data = [{
33
33
  id: '1',
@@ -8,7 +8,7 @@ import { Box, Bracket, Button, Chip, IconButton, Icon, Item, OverlayProvider, Ro
8
8
  import OverlayPanel from '../components/OverlayPanel';
9
9
  import { jsx as ___EmotionJSX } from "@emotion/react";
10
10
  export default {
11
- title: 'Recipes/ConditionalFilter'
11
+ title: 'Recipes/Conditional Filter'
12
12
  };
13
13
  var sx = {
14
14
  customChipStyles: {
@@ -3,7 +3,7 @@ import { Box, Button, Text } from '../index';
3
3
  import useCopyToClipboard from '../hooks/useCopyToClipboard';
4
4
  import { jsx as ___EmotionJSX } from "@emotion/react";
5
5
  export default {
6
- title: 'Recipes/CopyToClipboard'
6
+ title: 'Recipes/Copy to Clipboard'
7
7
  };
8
8
  export var Default = function Default() {
9
9
  var textToCopy = 'eyJraWQiOiI4YTg5MmY3ZS1iNTk1LTRkYWQtODBlNC0yMzA4ODkyZTczZDQiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiJodHRwczovL2FwaS5waW5nb25lLmNvbSIsImF1dGhVcmwiOiJodHRwczovL2F1dGgucGluZ29uZS5jb20iLCJjb25zb2xlVXJsIjoiaHR0cHM6Ly9jb25zb2xlLnBpbmdvbmUuY29tIiwiZW52aXJvbm1lbnROYW1lIjoiTW9udGFuYSIsImVudmlyb25tZW50SWQiOiJhYzc2NWQ0Ny1kMDM2LTQ1MGUtODFjMS1mYjQ1NDMxMjM1NjYiLCJvcmdhbml6YXRpb25OYW1lIjoiaW50ZXJuYWxfZXJpa2FhbGRlYm9yZ2hfMjUyMDc1MDMxIiwib3JnYW5pemF0aW9uSWQiOiJkMDYzMmYwZi03YjQ2LTQ5ZjUtYjgyYS1kZWU5MWQ3MDY3ODYiLCJnYXRld2F5TmFtZSI6ImRzZHMiLCJnYXRld2F5SWQiOiJiMDVmNGU5Yy1jMzRiLTRlZTMtYTYyNS01ZGFiNjlkYTE1YTEiLCJnYXRld2F5VHlwZSI6IlBJTkdfRkVERVJBVEUiLCJ0YXJnZXRDbHVzdGVyRW52aXJvbm1lbnQiOiJQUk9EIiwidGFyZ2V0R2VvZ3JhcGh5IjoiTkEiLCJyZWdpb24iOiJOb3J0aCBBbWVyaWNhIiwianRpIjoiMTUwYTQ0OTktZjIyYi00YWVhLWIzY2UtYWM2YWY1NjVjNjk5IiwiaXNzIjoid3NzOi8vZ2F0ZXdheXMucGluZ29uZS5jb20iLCJpYXQiOjE2MjYyODEyMTZ9.JJ9wwqTxQWUwz2vmU0yE54xuYff51xbirzZuEUxd8GDzV45bnpbmx460CY8g9ccdmOjvfVF4RPPsawpKuMZH271tDlLZl67iknxDVWBZSih9K6v0RAmsmNriR4OyOFOkGrULCIz3ISyPWeItp1AVuue_8guWR63KzYg32aPC4SgmOrc2myq9N6XNU2H1KybETbG_s5-VU_cUqaXn7GUzhL2_W6CSVrrlE1cYfjC7pxMKFm4vvIw_KcNYVGO1K6oYgzRZ4A8toQHIdlGB8L-wkCt442LdC93OjoQdkLuGzmXnO8BUohWea-Dn35gGHoH-H1BRQTya_H9AKyWMxCw-vg';
@@ -9,7 +9,7 @@ import Input from '../components/Input';
9
9
  import { Item } from '../index';
10
10
  import { jsx as ___EmotionJSX } from "@emotion/react";
11
11
  export default {
12
- title: 'Recipes/CountryPicker'
12
+ title: 'Recipes/Country Picker'
13
13
  };
14
14
 
15
15
  var validatePhoneNumber = function validatePhoneNumber(str) {
@@ -10,7 +10,7 @@ import statuses from '../utils/devUtils/constants/statuses';
10
10
  import PopoverContainer from '../components/PopoverContainer';
11
11
  import { jsx as ___EmotionJSX } from "@emotion/react";
12
12
  export default {
13
- title: 'Recipes/DatePicker'
13
+ title: 'Recipes/Date Picker'
14
14
  };
15
15
  var sx = {
16
16
  calendarIcon: {
@@ -6,7 +6,7 @@ import Icon from '../components/Icon';
6
6
  import Text from '../components/Text';
7
7
  import { jsx as ___EmotionJSX } from "@emotion/react";
8
8
  export default {
9
- title: 'Recipes/DraggableBox'
9
+ title: 'Recipes/Draggable Box'
10
10
  };
11
11
  export var Default = function Default() {
12
12
  return ___EmotionJSX(Box, {
@@ -19,7 +19,7 @@ import CheckIcon from 'mdi-react/CheckIcon';
19
19
  import { TextAreaField, IconButton, Icon, Box } from '../index';
20
20
  import { jsx as ___EmotionJSX } from "@emotion/react";
21
21
  export default {
22
- title: 'Recipes/EditableInput'
22
+ title: 'Recipes/Editable Input'
23
23
  };
24
24
  var EditableAreaContext = /*#__PURE__*/createContext();
25
25
  var EditableAreaProvider = EditableAreaContext.Provider;
@@ -28,7 +28,7 @@ import { Button, Box, Icon, IconButton } from '../index';
28
28
  import PopoverContainer from '../components/PopoverContainer';
29
29
  import { jsx as ___EmotionJSX } from "@emotion/react";
30
30
  export default {
31
- title: 'Recipes/FlippableCaretMenuButton'
31
+ title: 'Recipes/Flippable Caret Menu Button'
32
32
  };
33
33
  var buttonArray = ['Web App', 'Native App', 'Single Page App', 'Non-Interactive', 'Worker', 'Advanced Configuration', 'Built-in admin console for this environment', 'Built-in Application portal'];
34
34
  var sx = {
@@ -21,7 +21,7 @@ import { Tabs, Tab, Text, Icon, Box, Separator } from '../index';
21
21
  import { tab } from '../styles/variants/tabs';
22
22
  import { jsx as ___EmotionJSX } from "@emotion/react";
23
23
  export default {
24
- title: 'Recipes/LogoTabs'
24
+ title: 'Recipes/Logo Tabs'
25
25
  };
26
26
 
27
27
  var P14CLogo = function P14CLogo(props) {
@@ -7,7 +7,7 @@ import { Box, Icon, IconButton, Text } from '../index';
7
7
  import { useStatusClasses } from '../hooks';
8
8
  import { jsx as ___EmotionJSX } from "@emotion/react";
9
9
  export default {
10
- title: 'Recipes/MaskedValues',
10
+ title: 'Recipes/Masked Values',
11
11
  argTypes: {
12
12
  dataTitle: {
13
13
  control: {
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import CheckboxField from '../components/CheckboxField';
3
3
  import { jsx as ___EmotionJSX } from "@emotion/react";
4
4
  export default {
5
- title: 'Recipes/NeutralCheckboxField'
5
+ title: 'Recipes/Neutral Checkbox Field'
6
6
  };
7
7
  var sx = {
8
8
  checkboxColor: {
@@ -7,7 +7,7 @@ import Box from '../components/Box';
7
7
  import { Icon, ComboBoxField, Item, IconButton, IconButtonToggle } from '../index';
8
8
  import { jsx as ___EmotionJSX } from "@emotion/react";
9
9
  export default {
10
- title: 'Recipes/OneWayToBidirectionalArrow'
10
+ title: 'Recipes/One Way to Bidirectional Arrow'
11
11
  };
12
12
  var items = [{
13
13
  name: 'Last Name',
@@ -7,7 +7,7 @@ import RadioField from '../components/RadioField';
7
7
  import RadioGroupField from '../components/RadioGroupField';
8
8
  import { jsx as ___EmotionJSX } from "@emotion/react";
9
9
  export default {
10
- title: 'Recipes/RadioButtonsWithLinks'
10
+ title: 'Recipes/Radio Buttons with Links'
11
11
  };
12
12
  export var Default = function Default() {
13
13
  var roles = [{
@@ -8,7 +8,7 @@ import { neutral } from '../styles/colors';
8
8
  import { Box, Button, SwitchField, Text, Tooltip, TooltipTrigger } from '../index';
9
9
  import { jsx as ___EmotionJSX } from "@emotion/react";
10
10
  export default {
11
- title: 'Recipes/RowLineChart',
11
+ title: 'Recipes/Row Line Chart',
12
12
  parameters: {
13
13
  chromatic: {
14
14
  diffThreshold: 0.9
@@ -10,7 +10,7 @@ import FormSelectIcon from 'mdi-react/FormSelectIcon';
10
10
  import { SearchField, ListView, Box, IconButton, ScrollBox, Text, Icon } from '../index';
11
11
  import { jsx as ___EmotionJSX } from "@emotion/react";
12
12
  export default {
13
- title: 'Recipes/ScrollableListView'
13
+ title: 'Recipes/Scrollable List View'
14
14
  };
15
15
  var unfilteredItems = [{
16
16
  key: 'Aardvark',
@@ -4,7 +4,7 @@ import Text from '../components/Text';
4
4
  import { active } from '../styles/colors';
5
5
  import { jsx as ___EmotionJSX } from "@emotion/react";
6
6
  export default {
7
- title: 'Recipes/StatsCircle'
7
+ title: 'Recipes/Stats Circle'
8
8
  };
9
9
  var sx = {
10
10
  statsCircle: {
@@ -5,7 +5,7 @@ import { Box, Button, HelpHint, Icon, Modal, OverlayProvider, Text } from '../in
5
5
  import useModalState from '../hooks/useModalState';
6
6
  import { jsx as ___EmotionJSX } from "@emotion/react";
7
7
  export default {
8
- title: 'Recipes/TrialExperienceButtons'
8
+ title: 'Recipes/Trial Experience Buttons'
9
9
  };
10
10
  var headingTextStyle = {
11
11
  fontWeight: '3',
@@ -9,7 +9,7 @@ import CheckCircleIcon from 'mdi-react/CheckCircleIcon';
9
9
  import { IconButton, Link, Box, Icon, Text, Separator } from '../index';
10
10
  import { jsx as ___EmotionJSX } from "@emotion/react";
11
11
  export default {
12
- title: 'Recipes/TrialExperienceNav'
12
+ title: 'Recipes/Trial Experience Nav'
13
13
  };
14
14
 
15
15
  var ArtIcon = function ArtIcon() {
@@ -123,6 +123,11 @@ var expandableRow = {
123
123
  }
124
124
  }
125
125
  };
126
+ var breadcrumbLi = {
127
+ 'a.is-hovered.is-current ': {
128
+ textDecoration: 'none'
129
+ }
130
+ };
126
131
  var breadcrumbLink = {
127
132
  color: 'active',
128
133
  fontFamily: 'standard',
@@ -237,6 +242,7 @@ export var text = {
237
242
  color: 'text.secondary',
238
243
  fontFamily: 'standard'
239
244
  }),
245
+ breadcrumbLi: breadcrumbLi,
240
246
  breadcrumbLink: breadcrumbLink,
241
247
  buttonLabel: _objectSpread(_objectSpread({}, wordWrap), {}, {
242
248
  fontSize: 'md',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.29.0-alpha.0",
3
+ "version": "1.29.0-alpha.2",
4
4
  "description": "PingUX themeable React component library",
5
5
  "repository": {
6
6
  "type": "git",