@pingux/astro 1.38.1 → 1.39.0-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/components/AccordionGridGroup/AccordionGridGroup.stories.js +10 -8
- package/lib/cjs/components/Bulletin/Bulletin.js +93 -0
- package/lib/cjs/components/Bulletin/Bulletin.stories.js +90 -0
- package/lib/cjs/components/Bulletin/Bulletin.test.js +70 -0
- package/lib/cjs/components/Bulletin/index.js +18 -0
- package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.stories.js +1 -1
- package/lib/cjs/components/ComboBox/ComboBoxInput.js +1 -1
- package/lib/cjs/components/ComboBoxField/ComboBoxField.js +15 -14
- package/lib/cjs/components/ComboBoxField/ComboBoxField.stories.js +15 -1
- package/lib/cjs/components/ComboBoxField/ComboBoxField.test.js +36 -0
- package/lib/cjs/components/Icon/NoticeIcon.js +71 -0
- package/lib/cjs/components/Icon/NoticeIcon.test.js +35 -0
- package/lib/cjs/components/IconButton/IconButton.stories.js +11 -2
- package/lib/cjs/components/IconButtonToggle/IconButtonToggle.stories.js +3 -0
- package/lib/cjs/components/ListItem/ListItem.stories.js +4 -8
- package/lib/cjs/components/ListView/ListView.stories.js +22 -13
- package/lib/cjs/components/Messages/Message.js +27 -41
- package/lib/cjs/components/Messages/Messages.test.js +13 -0
- package/lib/cjs/components/NavBarSection/NavBarItemHeader.js +2 -2
- package/lib/cjs/components/TextField/TextField.stories.js +3 -3
- package/lib/cjs/index.js +85 -62
- package/lib/cjs/recipes/ApplicationSearchDropdown.stories.js +2 -1
- package/lib/cjs/recipes/AttributeMappingReadOnlyField.stories.js +1 -1
- package/lib/cjs/recipes/AttributesAndPingOneMapping.stories.js +4 -2
- package/lib/cjs/recipes/CollapsiblePanel.stories.js +1 -1
- package/lib/cjs/recipes/ConditionalFilter.stories.js +1 -1
- package/lib/cjs/recipes/DatePicker.stories.js +1 -1
- package/lib/cjs/recipes/EditableInput.stories.js +4 -2
- package/lib/cjs/recipes/LinkedListView.stories.js +1 -1
- package/lib/cjs/recipes/ListAndPanel.stories.js +10 -3
- package/lib/cjs/recipes/MaskedValue.stories.js +2 -1
- package/lib/cjs/recipes/OneWayToBidirectionalArrow.stories.js +5 -5
- package/lib/cjs/recipes/PageHeader.stories.js +1 -1
- package/lib/cjs/recipes/PanelHeader.stories.js +2 -2
- package/lib/cjs/recipes/RadioButtonsWithLinks.stories.js +2 -1
- package/lib/cjs/recipes/ScrollableListView.stories.js +10 -6
- package/lib/cjs/recipes/TrialExperienceIndustryButtons.stories.js +2 -2
- package/lib/cjs/recipes/TrialExperienceStatusBar.stories.js +1 -1
- package/lib/cjs/styles/templates/Nav/HeaderBar.js +1 -1
- package/lib/cjs/styles/variants/bulletin.js +60 -0
- package/lib/cjs/styles/variants/buttons.js +4 -1
- package/lib/cjs/styles/variants/variants.js +3 -0
- package/lib/components/AccordionGridGroup/AccordionGridGroup.stories.js +11 -9
- package/lib/components/Bulletin/Bulletin.js +70 -0
- package/lib/components/Bulletin/Bulletin.stories.js +59 -0
- package/lib/components/Bulletin/Bulletin.test.js +45 -0
- package/lib/components/Bulletin/index.js +1 -0
- package/lib/components/CollapsiblePanel/CollapsiblePanel.stories.js +1 -1
- package/lib/components/ComboBox/ComboBoxInput.js +1 -1
- package/lib/components/ComboBoxField/ComboBoxField.js +15 -14
- package/lib/components/ComboBoxField/ComboBoxField.stories.js +11 -0
- package/lib/components/ComboBoxField/ComboBoxField.test.js +34 -0
- package/lib/components/Icon/NoticeIcon.js +43 -0
- package/lib/components/Icon/NoticeIcon.test.js +24 -0
- package/lib/components/IconButton/IconButton.stories.js +11 -2
- package/lib/components/IconButtonToggle/IconButtonToggle.stories.js +3 -0
- package/lib/components/ListItem/ListItem.stories.js +4 -8
- package/lib/components/ListView/ListView.stories.js +22 -13
- package/lib/components/Messages/Message.js +21 -28
- package/lib/components/Messages/Messages.test.js +11 -0
- package/lib/components/NavBarSection/NavBarItemHeader.js +2 -2
- package/lib/components/TextField/TextField.stories.js +3 -3
- package/lib/index.js +2 -0
- package/lib/recipes/ApplicationSearchDropdown.stories.js +2 -1
- package/lib/recipes/AttributeMappingReadOnlyField.stories.js +1 -1
- package/lib/recipes/AttributesAndPingOneMapping.stories.js +4 -2
- package/lib/recipes/CollapsiblePanel.stories.js +1 -1
- package/lib/recipes/ConditionalFilter.stories.js +1 -1
- package/lib/recipes/DatePicker.stories.js +1 -1
- package/lib/recipes/EditableInput.stories.js +4 -2
- package/lib/recipes/LinkedListView.stories.js +1 -1
- package/lib/recipes/ListAndPanel.stories.js +10 -3
- package/lib/recipes/MaskedValue.stories.js +2 -1
- package/lib/recipes/OneWayToBidirectionalArrow.stories.js +5 -5
- package/lib/recipes/PageHeader.stories.js +1 -1
- package/lib/recipes/PanelHeader.stories.js +2 -2
- package/lib/recipes/RadioButtonsWithLinks.stories.js +2 -1
- package/lib/recipes/ScrollableListView.stories.js +10 -6
- package/lib/recipes/TrialExperienceIndustryButtons.stories.js +2 -2
- package/lib/recipes/TrialExperienceStatusBar.stories.js +1 -1
- package/lib/styles/templates/Nav/HeaderBar.js +1 -1
- package/lib/styles/variants/bulletin.js +41 -0
- package/lib/styles/variants/buttons.js +4 -1
- package/lib/styles/variants/variants.js +2 -0
- package/package.json +1 -1
- package/NOTICE.html +0 -4707
@@ -659,11 +659,11 @@ export var Default = function Default() {
|
|
659
659
|
}, ___EmotionJSX(IconButton, {
|
660
660
|
"aria-label": "Close modal window",
|
661
661
|
"data-id": "icon-button__close-modal-window",
|
662
|
-
size: 22,
|
663
662
|
variant: "modalCloseButton",
|
664
663
|
onPress: state.close
|
665
664
|
}, ___EmotionJSX(Icon, {
|
666
|
-
icon: CloseIcon
|
665
|
+
icon: CloseIcon,
|
666
|
+
size: "sm"
|
667
667
|
})), ___EmotionJSX(Text, {
|
668
668
|
sx: sx.headingTextStyle
|
669
669
|
}, "Choose Your Industry"), ___EmotionJSX(Text, {
|
@@ -269,7 +269,7 @@ var LinkRow = function LinkRow(props) {
|
|
269
269
|
"aria-label": "completed step icon indicator"
|
270
270
|
}, ___EmotionJSX(Icon, {
|
271
271
|
icon: isSelected ? CheckCircleIcon : RadioButtonIcon,
|
272
|
-
size:
|
272
|
+
size: "sm",
|
273
273
|
sx: isSelected ? sx.linkRowIconButton : sx.linkRowIconNotSelected
|
274
274
|
}))), !isLastLink && isLinkSelected && ___EmotionJSX(Separator, {
|
275
275
|
sx: sx.linkRowSeparator,
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import _Object$keys from "@babel/runtime-corejs3/core-js-stable/object/keys";
|
2
|
+
import _Object$getOwnPropertySymbols from "@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols";
|
3
|
+
import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
|
4
|
+
import _Object$getOwnPropertyDescriptor from "@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor";
|
5
|
+
import _forEachInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/for-each";
|
6
|
+
import _Object$getOwnPropertyDescriptors from "@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors";
|
7
|
+
import _Object$defineProperties from "@babel/runtime-corejs3/core-js-stable/object/define-properties";
|
8
|
+
import _Object$defineProperty from "@babel/runtime-corejs3/core-js-stable/object/define-property";
|
9
|
+
import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
|
10
|
+
|
11
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
12
|
+
|
13
|
+
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) { _defineProperty(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; }
|
14
|
+
|
15
|
+
var base = {
|
16
|
+
alignItems: 'center',
|
17
|
+
border: '1px solid',
|
18
|
+
borderColor: 'text.secondary',
|
19
|
+
fontSize: 'md',
|
20
|
+
p: '15px 12px 15px 0',
|
21
|
+
width: '600px'
|
22
|
+
};
|
23
|
+
|
24
|
+
var error = _objectSpread(_objectSpread({}, base), {}, {
|
25
|
+
borderColor: 'critical.bright'
|
26
|
+
});
|
27
|
+
|
28
|
+
var success = _objectSpread(_objectSpread({}, base), {}, {
|
29
|
+
borderColor: 'success.bright'
|
30
|
+
});
|
31
|
+
|
32
|
+
var warning = _objectSpread(_objectSpread({}, base), {}, {
|
33
|
+
borderColor: 'warning.bright'
|
34
|
+
});
|
35
|
+
|
36
|
+
export default {
|
37
|
+
base: base,
|
38
|
+
error: error,
|
39
|
+
success: success,
|
40
|
+
warning: warning
|
41
|
+
};
|
@@ -423,9 +423,12 @@ var chipDeleteStandard = {
|
|
423
423
|
};
|
424
424
|
|
425
425
|
var chipDeleteButton = _objectSpread(_objectSpread({}, chipDeleteStandard), {}, {
|
426
|
-
'&.is-focused
|
426
|
+
'&.is-focused': _objectSpread({
|
427
427
|
bg: 'accent.40'
|
428
428
|
}, focusWithCroppedOutline),
|
429
|
+
'&.is-hovered': {
|
430
|
+
bg: 'accent.40'
|
431
|
+
},
|
429
432
|
'&.is-pressed': {
|
430
433
|
bg: 'accent.20',
|
431
434
|
borderColor: 'accent.20'
|
@@ -35,10 +35,12 @@ import table from './table';
|
|
35
35
|
import * as tabs from './tabs';
|
36
36
|
import tooltip from './tooltip';
|
37
37
|
import collapsiblePanel from './collapsiblePanel';
|
38
|
+
import bulletin from './bulletin';
|
38
39
|
import dataTable from './../../components/DataTable/DataTable.styles';
|
39
40
|
export default _objectSpread(_objectSpread({
|
40
41
|
accordion: accordion,
|
41
42
|
boxes: boxes,
|
43
|
+
bulletin: bulletin,
|
42
44
|
codeView: codeView,
|
43
45
|
images: images,
|
44
46
|
imageUpload: imageUpload,
|