@kaizen/components 1.42.7 → 1.44.0

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 (36) hide show
  1. package/dist/cjs/LikertScaleLegacy/LikertScaleLegacy.cjs +6 -4
  2. package/dist/cjs/LikertScaleLegacy/LikertScaleLegacy.module.scss.cjs +2 -0
  3. package/dist/cjs/Modal/ConfirmationModal/ConfirmationModal.cjs +4 -2
  4. package/dist/cjs/Modal/ContextModal/ContextModal.cjs +4 -2
  5. package/dist/cjs/Modal/GenericModal/GenericModal.cjs +12 -9
  6. package/dist/cjs/Modal/InputEditModal/InputEditModal.cjs +4 -2
  7. package/dist/cjs/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.cjs +5 -1
  8. package/dist/cjs/index.css +3 -3
  9. package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.mjs +6 -4
  10. package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.module.scss.mjs +2 -0
  11. package/dist/esm/Modal/ConfirmationModal/ConfirmationModal.mjs +4 -2
  12. package/dist/esm/Modal/ContextModal/ContextModal.mjs +4 -2
  13. package/dist/esm/Modal/GenericModal/GenericModal.mjs +12 -9
  14. package/dist/esm/Modal/InputEditModal/InputEditModal.mjs +4 -2
  15. package/dist/esm/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.mjs +5 -1
  16. package/dist/esm/index.css +3 -3
  17. package/dist/styles.css +1 -1
  18. package/dist/types/LikertScaleLegacy/LikertScaleLegacy.d.ts +3 -2
  19. package/dist/types/LikertScaleLegacy/types.d.ts +1 -0
  20. package/dist/types/Modal/ConfirmationModal/ConfirmationModal.d.ts +4 -1
  21. package/dist/types/Modal/ContextModal/ContextModal.d.ts +4 -1
  22. package/dist/types/Modal/GenericModal/GenericModal.d.ts +4 -1
  23. package/dist/types/Modal/InputEditModal/InputEditModal.d.ts +4 -1
  24. package/package.json +3 -3
  25. package/src/LikertScaleLegacy/LikertScaleLegacy.module.scss +66 -17
  26. package/src/LikertScaleLegacy/LikertScaleLegacy.tsx +6 -1
  27. package/src/LikertScaleLegacy/_docs/LikertScaleLegacy.stickersheet.stories.tsx +26 -4
  28. package/src/LikertScaleLegacy/types.ts +2 -0
  29. package/src/Modal/ConfirmationModal/ConfirmationModal.tsx +5 -0
  30. package/src/Modal/ContextModal/ContextModal.tsx +5 -0
  31. package/src/Modal/GenericModal/GenericModal.tsx +18 -10
  32. package/src/Modal/GenericModal/_docs/GenericModal.spec.stories.tsx +124 -0
  33. package/src/Modal/InputEditModal/InputEditModal.tsx +5 -0
  34. package/src/Modal/InputEditModal/_docs/InputEditModal.mdx +11 -0
  35. package/src/Modal/InputEditModal/_docs/InputEditModal.stories.tsx +63 -1
  36. package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.tsx +1 -0
@@ -30,14 +30,16 @@ var LikertScaleLegacy = function (_a) {
30
30
  var scale = _a.scale,
31
31
  selectedItem = _a.selectedItem,
32
32
  reversed = _a.reversed,
33
+ _b = _a.colorSchema,
34
+ colorSchema = _b === void 0 ? "classical" : _b,
33
35
  dataTestId = _a["data-testid"],
34
36
  onSelect = _a.onSelect,
35
37
  validationMessage = _a.validationMessage,
36
38
  status = _a.status,
37
39
  labelId = _a.labelId;
38
- var _b = React.useState(null),
39
- hoveredItem = _b[0],
40
- setHoveredItem = _b[1];
40
+ var _c = React.useState(null),
41
+ hoveredItem = _c[0],
42
+ setHoveredItem = _c[1];
41
43
  var itemRefs = scale.map(function (s) {
42
44
  return {
43
45
  value: s.value,
@@ -110,7 +112,7 @@ var LikertScaleLegacy = function (_a) {
110
112
  var isSuggested = hoveredItem && hoveredItem.value >= item.value;
111
113
  var isUnselected = selectedItem && selectedItem.value < item.value;
112
114
  return React__default.default.createElement("div", {
113
- className: classnames__default.default(LikertScaleLegacy_module.likertItem, LikertScaleLegacy_module["likertItem".concat(item.value)], isSelected && LikertScaleLegacy_module.selected, isSuggested && LikertScaleLegacy_module.suggested, isUnselected && LikertScaleLegacy_module.unselected),
115
+ className: classnames__default.default(LikertScaleLegacy_module.likertItem, colorSchema == "blue" ? LikertScaleLegacy_module.blueColorSchema : LikertScaleLegacy_module.classicalColorSchema, LikertScaleLegacy_module["likertItem".concat(item.value)], isSelected && LikertScaleLegacy_module.selected, isSuggested && LikertScaleLegacy_module.suggested, isUnselected && LikertScaleLegacy_module.unselected),
114
116
  key: item.value,
115
117
  "data-testid": dataTestId && "".concat(dataTestId, "-item-").concat(item.value),
116
118
  onClick: function () {
@@ -13,12 +13,14 @@ var styles = {
13
13
  "suggested": "LikertScaleLegacy-module_suggested__0xk0D",
14
14
  "itemContainer": "LikertScaleLegacy-module_itemContainer__9Vfq0",
15
15
  "legend": "LikertScaleLegacy-module_legend__HYNg-",
16
+ "classicalColorSchema": "LikertScaleLegacy-module_classicalColorSchema__nPw3y",
16
17
  "field1": "LikertScaleLegacy-module_field1__TDRE-",
17
18
  "selected": "LikertScaleLegacy-module_selected__MVmcb",
18
19
  "field2": "LikertScaleLegacy-module_field2__s-CD7",
19
20
  "field3": "LikertScaleLegacy-module_field3__xp5eQ",
20
21
  "field4": "LikertScaleLegacy-module_field4__IVK7E",
21
22
  "field5": "LikertScaleLegacy-module_field5__9sETV",
23
+ "blueColorSchema": "LikertScaleLegacy-module_blueColorSchema__w8XlF",
22
24
  "pop": "LikertScaleLegacy-module_pop__hTH48",
23
25
  "likertItem1": "LikertScaleLegacy-module_likertItem1__cYmY6",
24
26
  "hovered": "LikertScaleLegacy-module_hovered__vVUN6"
@@ -70,6 +70,7 @@ var ConfirmationModal = function (_a) {
70
70
  title = _a.title,
71
71
  onConfirm = _a.onConfirm,
72
72
  onAfterLeave = _a.onAfterLeave,
73
+ onAfterEnter = _a.onAfterEnter,
73
74
  _d = _a.confirmLabel,
74
75
  confirmLabel = _d === void 0 ? "Confirm" : _d,
75
76
  _e = _a.dismissLabel,
@@ -77,7 +78,7 @@ var ConfirmationModal = function (_a) {
77
78
  confirmWorking = _a.confirmWorking,
78
79
  propsOnDismiss = _a.onDismiss,
79
80
  children = _a.children,
80
- props = tslib.__rest(_a, ["isOpen", "isProminent", "unpadded", "mood", "title", "onConfirm", "onAfterLeave", "confirmLabel", "dismissLabel", "confirmWorking", "onDismiss", "children"]);
81
+ props = tslib.__rest(_a, ["isOpen", "isProminent", "unpadded", "mood", "title", "onConfirm", "onAfterLeave", "onAfterEnter", "confirmLabel", "dismissLabel", "confirmWorking", "onDismiss", "children"]);
81
82
  var onDismiss = confirmWorking ? undefined : propsOnDismiss;
82
83
  var footerActions = [];
83
84
  if (onConfirm) {
@@ -101,7 +102,8 @@ var ConfirmationModal = function (_a) {
101
102
  isOpen: isOpen,
102
103
  onEscapeKeyup: onDismiss,
103
104
  onOutsideModalClick: onDismiss,
104
- onAfterLeave: onAfterLeave
105
+ onAfterLeave: onAfterLeave,
106
+ onAfterEnter: onAfterEnter
105
107
  }, React__default.default.createElement("div", tslib.__assign({
106
108
  className: ConfirmationModal_module.modal,
107
109
  "data-modal": true
@@ -34,6 +34,7 @@ var ContextModal = function (_a) {
34
34
  onConfirm = _a.onConfirm,
35
35
  propsOnDismiss = _a.onDismiss,
36
36
  onAfterLeave = _a.onAfterLeave,
37
+ onAfterEnter = _a.onAfterEnter,
37
38
  _d = _a.confirmLabel,
38
39
  confirmLabel = _d === void 0 ? "Confirm" : _d,
39
40
  confirmWorking = _a.confirmWorking,
@@ -43,7 +44,7 @@ var ContextModal = function (_a) {
43
44
  image = _a.image,
44
45
  secondaryLabel = _a.secondaryLabel,
45
46
  onSecondaryAction = _a.onSecondaryAction,
46
- props = tslib.__rest(_a, ["isOpen", "unpadded", "layout", "title", "onConfirm", "onDismiss", "onAfterLeave", "confirmLabel", "confirmWorking", "renderBackground", "children", "contentHeader", "image", "secondaryLabel", "onSecondaryAction"]);
47
+ props = tslib.__rest(_a, ["isOpen", "unpadded", "layout", "title", "onConfirm", "onDismiss", "onAfterLeave", "onAfterEnter", "confirmLabel", "confirmWorking", "renderBackground", "children", "contentHeader", "image", "secondaryLabel", "onSecondaryAction"]);
47
48
  var onDismiss = confirmWorking ? undefined : propsOnDismiss;
48
49
  var footerActions = [];
49
50
  var workingProps = confirmWorking ? {
@@ -69,7 +70,8 @@ var ContextModal = function (_a) {
69
70
  isOpen: isOpen,
70
71
  onEscapeKeyup: onDismiss,
71
72
  onOutsideModalClick: onDismiss,
72
- onAfterLeave: onAfterLeave
73
+ onAfterLeave: onAfterLeave,
74
+ onAfterEnter: onAfterEnter
73
75
  }, React__default.default.createElement("div", tslib.__assign({
74
76
  className: ContextModal_module.modal,
75
77
  "data-modal": true
@@ -22,6 +22,7 @@ var GenericModal = function (_a) {
22
22
  focusLockDisabled = _a.focusLockDisabled,
23
23
  onEscapeKeyup = _a.onEscapeKeyup,
24
24
  onOutsideModalClick = _a.onOutsideModalClick,
25
+ onAfterEnter = _a.onAfterEnter,
25
26
  propsOnAfterLeave = _a.onAfterLeave;
26
27
  var reactId = React.useId();
27
28
  var id = propsId !== null && propsId !== void 0 ? propsId : reactId;
@@ -47,16 +48,15 @@ var GenericModal = function (_a) {
47
48
  onOutsideModalClick === null || onOutsideModalClick === void 0 ? void 0 : onOutsideModalClick(event);
48
49
  }
49
50
  };
50
- var focusAccessibleLabel = function () {
51
- if (modalLayer) {
52
- var labelElement = document.getElementById(labelledByID);
53
- if (labelElement) {
54
- labelElement.focus();
55
- }
51
+ var focusOnAccessibleLabel = function () {
52
+ // Check if focus already exists within the modal
53
+ if (modalLayer === null || modalLayer === void 0 ? void 0 : modalLayer.contains(document.activeElement)) {
54
+ return;
56
55
  }
56
+ var labelElement = document.getElementById(labelledByID);
57
+ labelElement === null || labelElement === void 0 ? void 0 : labelElement.focus();
57
58
  };
58
59
  var a11yWarn = function () {
59
- if (!modalLayer) return;
60
60
  // Ensure that consumers have provided an element that labels the modal
61
61
  // to meet ARIA accessibility guidelines.
62
62
  if (!document.getElementById(labelledByID)) {
@@ -74,8 +74,11 @@ var GenericModal = function (_a) {
74
74
  };
75
75
  var onAfterEnterHandler = function () {
76
76
  scrollModalToTop();
77
- focusAccessibleLabel();
78
- a11yWarn();
77
+ if (modalLayer) {
78
+ onAfterEnter === null || onAfterEnter === void 0 ? void 0 : onAfterEnter();
79
+ focusOnAccessibleLabel();
80
+ a11yWarn();
81
+ }
79
82
  };
80
83
  var onBeforeEnterHandler = function () {
81
84
  preventBodyScroll();
@@ -43,7 +43,8 @@ var InputEditModal = function (_a) {
43
43
  _e = _a.unpadded,
44
44
  unpadded = _e === void 0 ? false : _e,
45
45
  propsOnDismiss = _a.onDismiss,
46
- props = tslib.__rest(_a, ["isOpen", "mood", "title", "onSubmit", "onSecondaryAction", "onAfterLeave", "localeDirection", "submitLabel", "dismissLabel", "secondaryLabel", "submitWorking", "children", "unpadded", "onDismiss"]);
46
+ onAfterEnter = _a.onAfterEnter,
47
+ props = tslib.__rest(_a, ["isOpen", "mood", "title", "onSubmit", "onSecondaryAction", "onAfterLeave", "localeDirection", "submitLabel", "dismissLabel", "secondaryLabel", "submitWorking", "children", "unpadded", "onDismiss", "onAfterEnter"]);
47
48
  var onDismiss = submitWorking ? undefined : propsOnDismiss;
48
49
  var submitAction = {
49
50
  label: submitLabel,
@@ -63,7 +64,8 @@ var InputEditModal = function (_a) {
63
64
  return React__default.default.createElement(GenericModal.GenericModal, {
64
65
  isOpen: isOpen,
65
66
  onEscapeKeyup: onDismiss,
66
- onAfterLeave: onAfterLeave
67
+ onAfterLeave: onAfterLeave,
68
+ onAfterEnter: onAfterEnter
67
69
  }, React__default.default.createElement("div", tslib.__assign({
68
70
  className: InputEditModal_module.modal,
69
71
  dir: localeDirection,
@@ -51,7 +51,11 @@ var LinkModal = function (_a) {
51
51
  title: defaultHref ? "Edit link" : "Add link",
52
52
  onSubmit: handleSubmit,
53
53
  onDismiss: onDismiss,
54
- onAfterLeave: onAfterLeave
54
+ onAfterLeave: onAfterLeave,
55
+ onAfterEnter: function () {
56
+ var _a;
57
+ return (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.focus();
58
+ }
55
59
  }, React__default.default.createElement(TextField.TextField, {
56
60
  id: "href",
57
61
  type: "text",
@@ -1,9 +1,9 @@
1
1
  .Select-module_container__TaMKg{position:relative;width:100%}.Select-module_notFullWidth__Mr-3G{width:180px}
2
- .Wrapper-module_wrapper__89WmC{background:var(--color-gray-100,#f9f9f9);display:grid;grid-template-rows:min-content 1fr min-content;min-height:100vh;position:relative}
3
2
  .Main-module_main__hMyB1{z-index:0}
4
- .Titles-module_titles__JYwU0{align-items:center;flex-grow:1;grid-area:titles;justify-content:center}.Titles-module_pageTitle__YDp9S,.Titles-module_titles__JYwU0{display:flex;flex-direction:column}.Titles-module_prefix__40x8n{margin-bottom:var(--spacing-4,.25rem)}.Titles-module_status__huuP7{margin-top:var(--spacing-8,.5rem)}
3
+ .Wrapper-module_wrapper__89WmC{background:var(--color-gray-100,#f9f9f9);display:grid;grid-template-rows:min-content 1fr min-content;min-height:100vh;position:relative}
5
4
  .FooterActions-module_footerAction__v7eL-{display:flex;flex-basis:auto;flex-grow:1}.FooterActions-module_footerActionPrevious__2XByZ{grid-area:"prev";justify-content:start}.FooterActions-module_footerActionNext__IKRta{grid-area:"next";justify-content:end}
6
5
  .FooterRoot-module_footerRoot__N-6nQ{align-items:center;background:var(--color-blue-500,#0168b3);display:grid;flex-grow:1;gap:var(--spacing-16,1rem);grid-template-areas:"prev stepper next";grid-template-columns:1fr 2fr 1fr;justify-content:center;padding:var(--spacing-24,1.5rem) var(--spacing-12,.75rem)}@media (min-width:768px){.FooterRoot-module_footerRoot__N-6nQ{bottom:0;grid-template-columns:1fr 5fr 1fr;padding:var(--spacing-24,1.5rem) var(--spacing-32,2rem);position:sticky;z-index:1}}
6
+ .Titles-module_titles__JYwU0{align-items:center;flex-grow:1;grid-area:titles;justify-content:center}.Titles-module_pageTitle__YDp9S,.Titles-module_titles__JYwU0{display:flex;flex-direction:column}.Titles-module_prefix__40x8n{margin-bottom:var(--spacing-4,.25rem)}.Titles-module_status__huuP7{margin-top:var(--spacing-8,.5rem)}
7
7
  .Actions-module_actions__Prrp0{align-items:center;display:flex;flex-direction:column;flex-grow:1;grid-area:actions;justify-content:center}@media (min-width:768px){.Actions-module_actions__Prrp0{align-items:flex-start;flex-direction:row;justify-content:flex-end;margin-top:calc(var(--spacing-12, .75rem)*-1)}}
8
8
  .Branding-module_branding__4h-rD{display:flex;flex-grow:1;grid-area:branding;justify-content:center;padding-top:var(--spacing-4,.25rem)}@media (min-width:768px){.Branding-module_branding__4h-rD{justify-content:unset}}.Branding-module_logo__vqqec{flex-basis:7.5rem}
9
9
  .ProgressStepper-module_stepsContainer__WMxXN{grid-area:stepper;width:100%}.ProgressStepper-module_stepList__b1wWX{align-items:flex-end;display:none;justify-content:center;list-style:none;margin:0;padding:0}@media (min-width:768px){.ProgressStepper-module_stepList__b1wWX{display:flex}}.ProgressStepper-module_step__-Ep19{container:step/inline-size;display:flex;flex-basis:100%;flex-grow:1;justify-content:center;max-width:var(--spacing-96,6rem);overflow-wrap:break-word;position:relative}.ProgressStepper-module_stepContent__B4uFS{align-items:center;display:flex;flex-direction:column}.ProgressStepper-module_stepIndicator__-qEWT{height:1.25rem;position:relative;width:1.25rem}.ProgressStepper-module_stepName__hS4lp{display:none;font-weight:var(--typography-paragraph-bold-font-weight,600);margin-bottom:var(--spacing-12,.75rem);text-align:center}.ProgressStepper-module_stepIcon__0Kh4y{color:var(--color-white,#fff);height:1.25rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:1.25rem}.ProgressStepper-module_stepDivider__KEZPU{border:var(--spacing-1,.0625rem) solid var(--color-white,#fff);border-radius:var(--border-solid-border-radius,7px);display:flex;flex-grow:1;height:0;left:100%;margin:0;min-width:calc(100% - var(--spacing-24, 1.5rem));position:absolute;top:calc(100% - .625rem);transform:translateX(-50%)}[dir=rtl] .ProgressStepper-module_stepDivider__KEZPU{left:unset;right:100%;transform:translateX(50%)}.ProgressStepper-module_stepperDescription__B00hX{display:flex;justify-content:center}@media (min-width:768px){.ProgressStepper-module_stepperDescription__B00hX{height:0;overflow:hidden;position:absolute;width:0}}@container step (min-width: 4.5rem){.ProgressStepper-module_stepName__hS4lp{display:inline}}
@@ -94,7 +94,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs{all:unset;-webkit-ap
94
94
  .GuidanceBlock-module_rightMargin__-iEFa{margin-right:var(--spacing-8,.5rem)}.GuidanceBlock-module_noRightMargin__4Uy9N{margin-right:0}.GuidanceBlock-module_banner__FxKcd.GuidanceBlock-module_noMaxWidth__UzHP1{max-width:inherit}.GuidanceBlock-module_banner__FxKcd{background:var(--color-white,#fff);border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06));color:var(--color-purple-800,#2f2438);display:flex;flex-direction:column;gap:var(--spacing-sm,.75rem);max-width:1080px;min-width:320px;padding:var(--spacing-lg,2.25rem);position:relative;top:-1px;transition:opacity var(--animation-duration-slow,.4s) ease,margin-top var(--animation-duration-fast,.3s) var(--animation-duration-slow,.4s) ease}@media (min-width:1024px){.GuidanceBlock-module_banner__FxKcd{align-items:center;flex-direction:row;gap:var(--spacing-md,1.5rem);min-height:calc(12rem - var(--spacing-lg, 2.25rem)*2);width:auto}}@media (max-width:767px){.GuidanceBlock-module_banner__FxKcd{min-width:unset}}.GuidanceBlock-module_illustrationWrapper__AEljX{display:flex}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_illustrationWrapper__AEljX{align-self:center;justify-content:center;padding:var(--spacing-sm,.75rem);text-align:center}}@media (max-width:767px){.GuidanceBlock-module_illustrationWrapper__AEljX{display:none}}.GuidanceBlock-module_illustration__sU1Vu{height:155px;width:155px}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu{display:flex;height:auto;justify-content:center;max-height:300px;max-width:300px;width:300px}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu figure{aspect-ratio:4/3;max-height:100%;max-width:100%}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu img{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.GuidanceBlock-module_descriptionContainer__aywtY{align-self:center;flex:1;max-width:780px;text-align:center}@media (min-width:1024px){.GuidanceBlock-module_descriptionContainer__aywtY{padding:0 var(--spacing-sm,.75rem);text-align:left}}@media (max-width:767px){.GuidanceBlock-module_descriptionContainer__aywtY{margin:var(--spacing-sm,.75rem);max-width:100%}}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_descriptionContainer__aywtY{padding:0 var(--spacing-sm,.75rem);text-align:right}}.GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:center;display:flex;flex:1;gap:var(--spacing-md,1.5rem);justify-content:space-between}@media (max-width:1023px){.GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:unset;flex-direction:column;width:100%}}.GuidanceBlock-module_buttonContainer__U2Hxn{display:flex;flex:1 0 auto;flex-direction:row-reverse;gap:var(--spacing-sm,.75rem);justify-content:center;min-width:-moz-max-content;min-width:max-content}@media (min-width:768px){.GuidanceBlock-module_buttonContainer__U2Hxn{text-align:center}}@media (max-width:767px){.GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:column;margin-top:var(--spacing-xs,.375rem);width:100%}}[dir=rtl] .GuidanceBlock-module_buttonContainer__U2Hxn svg{transform:rotate(180deg)}.GuidanceBlock-module_hidden__CbgXn{margin-bottom:0;opacity:0}.GuidanceBlock-module_headingWrapper__zgVmA{margin-bottom:var(--spacing-md,1.5rem)}.GuidanceBlock-module_cancel__UaIA-{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;color:var(--color-purple-800,#2f2438);cursor:pointer;display:inline;font:inherit;margin:0;padding:0;position:absolute;right:var(--spacing-sm,.75rem);top:var(--spacing-sm,.75rem)}.GuidanceBlock-module_cancel__UaIA- .GuidanceBlock-module_icon__y2xz8{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GuidanceBlock-module_cancel__UaIA-.GuidanceBlock-module_disabled__Uhgsr .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:disabled .GuidanceBlock-module_icon__y2xz8{opacity:30%}.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_hover__7V9x1 .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):focus .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):hover .GuidanceBlock-module_icon__y2xz8{opacity:100%}.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_active__YJaZt .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):active .GuidanceBlock-module_icon__y2xz8{opacity:100%}.GuidanceBlock-module_positive__yENlT{background:var(--color-green-100,#e8f8f4)}.GuidanceBlock-module_negative__E-Jvh{background:var(--color-red-100,#fdeaee)}.GuidanceBlock-module_informative__ZUH4j{background:var(--color-blue-100,#e6f6ff)}.GuidanceBlock-module_cautionary__sJ1CE{background:var(--color-yellow-100,#fff9e4)}.GuidanceBlock-module_assertive__6PZlM{background:var(--color-orange-100,#fff0e8)}.GuidanceBlock-module_prominent__nn-r4{background:var(--color-purple-100,#f4edf8)}.GuidanceBlock-module_inline__GwOWR,.GuidanceBlock-module_stacked__rDupX{align-items:unset;flex-flow:row wrap;gap:var(--spacing-md,1.5rem);min-width:unset}@media (max-width:1023px){.GuidanceBlock-module_inline__GwOWR,.GuidanceBlock-module_stacked__rDupX{flex-direction:unset}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{margin-right:var(--spacing-sm,.75rem)}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{margin-left:var(--spacing-sm,.75rem);margin-right:inherit}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{display:flex}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionAndActions__E5BcL,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL{margin:auto 0}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{max-width:unset;min-width:320px;text-align:left}@media (min-width:1024px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{margin:0}}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{text-align:right}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{padding:0}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{justify-content:flex-start;min-width:unset;padding-left:var(--spacing-sm,.75rem);width:unset}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:row-reverse}}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{padding-left:0;padding-right:var(--spacing-sm,.75rem)}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn>*,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn>*{width:unset}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_hasSceneIllustration__tvFRD,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_hasSceneIllustration__tvFRD{justify-content:center}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB{flex-direction:column}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu{width:100%}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX{align-self:center;margin:0 auto}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY{min-width:unset;text-align:center}[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY{text-align:center}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:column;justify-content:center;min-width:unset;padding:0}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY{text-align:left}[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY{text-align:right}.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:unset;flex-direction:column}.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{align-self:flex-start}
95
95
  .GenericNotification-module_notification__-JP1M{box-sizing:border-box;display:flex;pointer-events:all}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5,.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid);border-radius:var(--border-solid-border-radius,7px);margin-bottom:var(--spacing-24,1.5rem)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5{min-height:46px;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) var(--spacing-12,.75rem);transition:opacity .2s ease,transform .2s ease-out,margin-top .2s ease,margin-bottom .2s ease;width:auto}.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{box-shadow:var(--shadow-small-box-shadow,0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06));container-type:inline-size;max-width:100%;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) 10px;transition:opacity .2s ease,transform .3s ease-out,margin-top .2s ease .2s,margin-bottom .2s ease;width:25rem;will-change:transform}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-{align-items:center;border-radius:0;border-width:0;display:flex;margin-bottom:0;position:relative;transition:margin-top .2s ease,margin-bottom .2s ease;width:100%;z-index:1030}.GenericNotification-module_notification__-JP1M.GenericNotification-module_positive__U-3HK{background:var(--color-green-100,#e8f8f4);border-color:var(--color-green-300,#8fdbc7);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK{background-color:var(--color-green-200,#c4ede2)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_informative__WLimi{background:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-300,#73c0e8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi{background-color:var(--color-blue-200,#bde2f5)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_security__QTALa{background:var(--color-yellow-100,#fff9e4);border-color:var(--color-yellow-400,#ffca4d);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa{background-color:var(--color-yellow-200,#ffeeb3)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_negative__lUWhD{background:var(--color-red-100,#fdeaee);border-color:var(--color-red-300,#f597a8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD{background-color:var(--color-red-200,#f9c2cb)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct{opacity:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-,.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{transform:translateY(-50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_toast__GOVfC{transform:translateX(50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-{opacity:100%;z-index:1029}.GenericNotification-module_notification__-JP1M.GenericNotification-module_noBottomMargin__28nF8{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_persistent__O7bgI{transition:none}.GenericNotification-module_notification__-JP1M.GenericNotification-module_subtle__kPns9{background:none;border:none;padding:0}.GenericNotification-module_icon__SDb8v{align-items:flex-start;box-sizing:content-box}.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{color:var(--color-green-500,#44a289)}.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{color:var(--color-blue-500,#0168b3)}.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{color:var(--color-red-500,#c93b55)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_icon__SDb8v,.GenericNotification-module_toast__GOVfC .GenericNotification-module_icon__SDb8v{height:22px;margin-top:var(--spacing-6,.375rem);width:22px}.GenericNotification-module_global__Weka- .GenericNotification-module_icon__SDb8v{border-radius:var(--border-solid-border-radius,7px);color:var(--color-white,#fff);height:calc(var(--spacing-24, 1.5rem)*1.25);margin:calc(var(--spacing-24, 1.5rem)/4);padding:calc(var(--spacing-24, 1.5rem)*2/2 - var(--spacing-24, 1.5rem)*1.25/2);width:calc(var(--spacing-24, 1.5rem)*1.25)}.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{background-color:var(--color-green-500,#44a289)}.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{background-color:var(--color-blue-500,#0168b3)}.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{background-color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{background-color:var(--color-red-500,#c93b55)}.GenericNotification-module_textContainer__Avpbk{box-sizing:content-box;display:flex;flex:1 0 0;flex-flow:row wrap}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk,.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-6,.375rem)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{-webkit-hyphens:auto;hyphens:auto;margin-inline-start:var(--spacing-6,.375rem);max-width:calc(100% - var(--spacing-48, 3rem));overflow-wrap:break-word}.GenericNotification-module_global__Weka- .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-12,.75rem);padding:calc(var(--spacing-24, 1.5rem)*.25) 0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk{transition:opacity .2s ease}.GenericNotification-module_textContainer__Avpbk.GenericNotification-module_forceMultiline__JcVA4{flex-direction:column}.GenericNotification-module_title__dvQOr{color:inherit;font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);margin:0;padding-right:6px;position:relative;text-transform:none;top:.37em}.GenericNotification-module_text__X-5ld{color:inherit;margin:0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);position:relative}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{flex:0 1 auto;margin-top:var(--spacing-6,.375rem);padding-bottom:var(--spacing-12,.75rem);top:.21em}.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{width:100%}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld{font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:static}.GenericNotification-module_text__X-5ld a[href]{color:var(--color-blue-500,#0168b3);text-decoration:underline}.GenericNotification-module_text__X-5ld a[href]:hover{color:var(--color-blue-500,#0168b3);text-decoration:none}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld a[href]{color:var(--color-purple-800,#2f2438)}.GenericNotification-module_text__X-5ld strong{font-weight:var(--typography-button-secondary-font-weight,500)}.GenericNotification-module_text__X-5ld p{font-weight:inherit}.GenericNotification-module_cancel__c6wky{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:var(--color-purple-800,#2f2438);cursor:pointer;font:inherit;margin:0;padding:0;transform:none;transition:none}.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GenericNotification-module_cancel__c6wky:disabled .GenericNotification-module_icon__SDb8v,.GenericNotification-module_disabled__WGBhD.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:30%}.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_hover__hUURd .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):focus .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):hover .GenericNotification-module_icon__SDb8v{opacity:100%}.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_active__-6ahb .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):active .GenericNotification-module_icon__SDb8v{opacity:100%}.GenericNotification-module_cancel__c6wky:active{transform:translateY(1px)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky,.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{height:var(--spacing-48,3rem);margin-bottom:calc(var(--spacing-6, .375rem)*-1);margin-top:calc(var(--spacing-6, .375rem)*-1);width:var(--spacing-48,3rem)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky{margin-right:calc(var(--spacing-12, .75rem)*-1)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{margin-right:-10px}.GenericNotification-module_global__Weka- .GenericNotification-module_cancel__c6wky{height:3.75rem;margin-bottom:calc(var(--spacing-12, .75rem)*-1);margin-right:-15px;margin-top:calc(var(--spacing-12, .75rem)*-1);padding-right:calc(var(--spacing-24, 1.5rem)*.625);width:3.75rem}.GenericNotification-module_cancelLabel__HJzsk{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.GenericNotification-module_cancel__c6wky{align-items:center;display:flex;justify-content:center;position:relative}.GenericNotification-module_cancel__c6wky:focus{outline:none}.GenericNotification-module_cancel__c6wky:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:6px;pointer-events:none;position:absolute}.GenericNotification-module_notificationTitle__Oaqb8{line-height:var(--typography-heading-6-line-height,1.5rem);margin-inline-end:var(--spacing-6,.375rem);position:relative;top:.42em}@container (max-width: 25rem){.GenericNotification-module_notificationTitle__Oaqb8{width:100%}}
96
96
  .ToastNotificationsList-module_toastNotificationsList__APiSP{align-items:flex-end;bottom:0;display:flex;flex-direction:column;max-width:100%;overflow:hidden;padding-bottom:0;padding-top:172px;pointer-events:none;position:fixed;right:var(--spacing-md,1.5rem);top:0;z-index:1030}@media (max-width:1079px){.ToastNotificationsList-module_toastNotificationsList__APiSP{padding-top:108px}}@media (max-width:767px){.ToastNotificationsList-module_toastNotificationsList__APiSP{left:var(--spacing-md,1.5rem)}}
97
- @keyframes LikertScaleLegacy-module_pop__hTH48{0%{opacity:50%;-webkit-transform:scale(1)}to{opacity:0;-webkit-transform:scale(1.78)}}.LikertScaleLegacy-module_container__5wjIJ{box-sizing:border-box;position:relative;width:220px}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{position:static;width:258px}}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{transition:background .1s}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_reversed__qrwrP.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{background-color:transparent;border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_container__5wjIJ :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_container__5wjIJ :is(.LikertScaleLegacy-module_likertItem4__0SWtD.LikertScaleLegacy-module_suggested__0xk0D,.LikertScaleLegacy-module_likertItem5__ZF0By.LikertScaleLegacy-module_suggested__0xk0D) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_likertItemFill__yj0tC:focus,.LikertScaleLegacy-module_likertItem__LwX2w:focus{outline:none}.LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline:var(--color-blue-500,#0168b3) var(--border-focus-ring-border-style,solid) var(--border-focus-ring-border-width,2px);outline-offset:1px}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_itemContainer__9Vfq0{display:inline-block;font-size:0;height:37px;white-space:nowrap;width:100%}.LikertScaleLegacy-module_legend__HYNg-{left:0;position:absolute;right:0;text-align:center;top:calc(var(--spacing-md, 1.5rem)*-1)}@media only screen and (max-width:767px){.LikertScaleLegacy-module_legend__HYNg-{position:static;top:0}}.LikertScaleLegacy-module_likertItem__LwX2w{display:inline-block;font-size:1px;line-height:1;margin-left:2px;margin-right:2px;overflow-x:visible;padding:0;position:relative;width:18.5%}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:first-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:2px}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:last-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:0;margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-left:2px;margin-right:0}.LikertScaleLegacy-module_likertItem__LwX2w:after,.LikertScaleLegacy-module_likertItem__LwX2w:before{content:"";height:100%;position:absolute;right:100%;top:0;width:2px}.LikertScaleLegacy-module_likertItem__LwX2w:after{left:100%;right:auto}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field1__TDRE-{background-color:var(--color-yellow-300,#ffe36e)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field1__TDRE-:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field1__TDRE-:after{background-color:var(--color-yellow-300,#ffe36e)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field2__s-CD7{background-color:var(--color-yellow-400,#ffca4d)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field2__s-CD7:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field2__s-CD7:after{background-color:var(--color-yellow-400,#ffca4d)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field3__xp5eQ{background-color:var(--color-orange-400,#ff9461)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field3__xp5eQ:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field3__xp5eQ:after{background-color:var(--color-orange-400,#ff9461)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field4__IVK7E{background-color:var(--color-orange-500,#e96c2f)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field4__IVK7E:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field4__IVK7E:after{background-color:var(--color-orange-500,#e96c2f)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field5__9sETV{background-color:var(--color-red-500,#c93b55)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field5__9sETV:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field5__9sETV:after{background-color:var(--color-red-500,#c93b55)}.LikertScaleLegacy-module_likertItemFill__yj0tC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);height:35px;transition:background .1s,border-color .1s}.LikertScaleLegacy-module_likertItemFill__yj0tC:hover{transition:background 0s,border-color 0s}.LikertScaleLegacy-module_likertItemFill__yj0tC:after{content:" ";display:block;height:100%;pointer-events:none;width:100%}.LikertScaleLegacy-module_likertItemFill__yj0tC.LikertScaleLegacy-module_pop__hTH48:after{-webkit-animation:LikertScaleLegacy-module_pop__hTH48 .7s cubic-bezier(0,.94,.32,1) 1}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItemFill__yj0tC{border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_check__3wQsx{color:#000;display:block;left:50%;margin:-10px 0 0 -10px;position:absolute;top:50%}.LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}[dir=rtl] .LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-11px}.LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-12px}[dir=rtl] .LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}.LikertScaleLegacy-module_hovered__vVUN6 :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#000}.LikertScaleLegacy-module_hovered__vVUN6.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_itemContainer__9Vfq0>:not(.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_likertItem__LwX2w) .LikertScaleLegacy-module_check__3wQsx{color:#fff}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{min-width:258px}.LikertScaleLegacy-module_itemContainer__9Vfq0{height:50px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItemFill__yj0tC{height:48px}}@media print{.LikertScaleLegacy-module_legend__HYNg-{display:none}.LikertScaleLegacy-module_container__5wjIJ{right:2em;top:1em;width:150px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border:1px solid #d7d8d8;height:25px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC,.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border-width:2px}}
97
+ @keyframes LikertScaleLegacy-module_pop__hTH48{0%{opacity:50%;-webkit-transform:scale(1)}to{opacity:0;-webkit-transform:scale(1.78)}}.LikertScaleLegacy-module_container__5wjIJ{box-sizing:border-box;position:relative;width:220px}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{position:static;width:258px}}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{transition:background .1s}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_reversed__qrwrP.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{background-color:transparent;border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_container__5wjIJ :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_container__5wjIJ :is(.LikertScaleLegacy-module_likertItem4__0SWtD.LikertScaleLegacy-module_suggested__0xk0D,.LikertScaleLegacy-module_likertItem5__ZF0By.LikertScaleLegacy-module_suggested__0xk0D) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_likertItemFill__yj0tC:focus,.LikertScaleLegacy-module_likertItem__LwX2w:focus{outline:none}.LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline:var(--color-blue-500,#0168b3) var(--border-focus-ring-border-style,solid) var(--border-focus-ring-border-width,2px);outline-offset:1px}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_itemContainer__9Vfq0{display:inline-block;font-size:0;height:37px;white-space:nowrap;width:100%}.LikertScaleLegacy-module_legend__HYNg-{left:0;position:absolute;right:0;text-align:center;top:calc(var(--spacing-md, 1.5rem)*-1)}@media only screen and (max-width:767px){.LikertScaleLegacy-module_legend__HYNg-{position:static;top:0}}.LikertScaleLegacy-module_likertItem__LwX2w{display:inline-block;font-size:1px;line-height:1;margin-left:2px;margin-right:2px;overflow-x:visible;padding:0;position:relative;width:18.5%}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:first-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:2px}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:last-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:0;margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-left:2px;margin-right:0}.LikertScaleLegacy-module_likertItem__LwX2w:after,.LikertScaleLegacy-module_likertItem__LwX2w:before{content:"";height:100%;position:absolute;right:100%;top:0;width:2px}.LikertScaleLegacy-module_likertItem__LwX2w:after{left:100%;right:auto}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-{background-color:var(--color-yellow-300,#ffe36e)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-:after{background-color:var(--color-yellow-300,#ffe36e)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7{background-color:var(--color-yellow-400,#ffca4d)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7:after{background-color:var(--color-yellow-400,#ffca4d)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ{background-color:var(--color-orange-400,#ff9461)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ:after{background-color:var(--color-orange-400,#ff9461)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E{background-color:var(--color-orange-500,#e96c2f)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E:after{background-color:var(--color-orange-500,#e96c2f)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV{background-color:var(--color-red-500,#c93b55)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV:after{background-color:var(--color-red-500,#c93b55)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-{background-color:var(--color-blue-100,#e6f6ff)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-:after{background-color:var(--color-blue-100,#e6f6ff)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7{background-color:var(--color-blue-200,#bde2f5)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7:after{background-color:var(--color-blue-200,#bde2f5)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ{background-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ:after{background-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E{background-color:var(--color-blue-400,#008bd6)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E:after{background-color:var(--color-blue-400,#008bd6)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV{background-color:var(--color-blue-500,#0168b3)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV:after{background-color:var(--color-blue-500,#0168b3)}.LikertScaleLegacy-module_likertItemFill__yj0tC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);height:35px;transition:background .1s,border-color .1s}.LikertScaleLegacy-module_likertItemFill__yj0tC:hover{transition:background 0s,border-color 0s}.LikertScaleLegacy-module_likertItemFill__yj0tC:after{content:" ";display:block;height:100%;pointer-events:none;width:100%}.LikertScaleLegacy-module_likertItemFill__yj0tC.LikertScaleLegacy-module_pop__hTH48:after{-webkit-animation:LikertScaleLegacy-module_pop__hTH48 .7s cubic-bezier(0,.94,.32,1) 1}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItemFill__yj0tC{border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_check__3wQsx{color:#000;display:block;left:50%;margin:-10px 0 0 -10px;position:absolute;top:50%}.LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}[dir=rtl] .LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-11px}.LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-12px}[dir=rtl] .LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}.LikertScaleLegacy-module_hovered__vVUN6 :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#000}.LikertScaleLegacy-module_hovered__vVUN6.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_itemContainer__9Vfq0>:not(.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_likertItem__LwX2w) .LikertScaleLegacy-module_check__3wQsx{color:#fff}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{min-width:258px}.LikertScaleLegacy-module_itemContainer__9Vfq0{height:50px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItemFill__yj0tC{height:48px}}@media print{.LikertScaleLegacy-module_legend__HYNg-{display:none}.LikertScaleLegacy-module_container__5wjIJ{right:2em;top:1em;width:150px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border:1px solid #d7d8d8;height:25px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC,.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border-width:2px}}
98
98
  .GenericModal-module_defaultModalWidth__kG7lU{max-width:600px;min-width:300px}.GenericModal-module_backdropLayer__RNQ-U{background-color:#000;bottom:0;left:0;opacity:50%;position:fixed;right:0;top:0;z-index:1040}.GenericModal-module_backdropLayer__RNQ-U[dir=rtl],[dir=rtl] .GenericModal-module_backdropLayer__RNQ-U{left:0;right:0}.GenericModal-module_scrollLayer__A5VdY{align-items:center;bottom:0;display:flex;left:0;overflow-y:auto;position:fixed;right:0;top:0;z-index:1050}.GenericModal-module_scrollLayer__A5VdY[dir=rtl],[dir=rtl] .GenericModal-module_scrollLayer__A5VdY{left:0;right:0}.GenericModal-module_modalLayer__WfD1U{margin:auto;padding:1.5rem 0;width:100%}.GenericModal-module_animatingEnter__P3wuk{transition-duration:var(--animation-duration-fast,.3s)}.GenericModal-module_animatingEnter__P3wuk .GenericModal-module_backdropLayer__RNQ-U{animation-duration:201ms;animation-fill-mode:forwards;animation-name:GenericModal-module_fade-0-to-0-5__-4t3h}@keyframes GenericModal-module_fade-0-to-0-5__-4t3h{0%{opacity:0}to{opacity:.5}}.GenericModal-module_animatingEnter__P3wuk [data-modal]{animation-duration:var(--animation-duration-fast,.3s);animation-fill-mode:forwards;animation-name:GenericModal-module_custom-1__G0JT4;animation-timing-function:var(--animation-easing-function-bounce-in,cubic-bezier(.485,.155,.24,1.245))}@keyframes GenericModal-module_custom-1__G0JT4{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.GenericModal-module_animatingLeave__rNkKX{transition-duration:var(--animation-duration-rapid,.2s)}.GenericModal-module_animatingLeave__rNkKX .GenericModal-module_backdropLayer__RNQ-U{animation-duration:var(--animation-duration-rapid,.2s);animation-fill-mode:forwards;animation-name:GenericModal-module_fade-0-5-to-0__JkaSn}@keyframes GenericModal-module_fade-0-5-to-0__JkaSn{0%{opacity:.5}to{opacity:0}}.GenericModal-module_animatingLeave__rNkKX [data-modal]{animation-duration:var(--animation-duration-rapid,.2s);animation-fill-mode:forwards;animation-name:GenericModal-module_custom-3__oWflS;animation-timing-function:var(--animation-easing-function-bounce-out,cubic-bezier(.485,.155,.515,.845))}@keyframes GenericModal-module_custom-3__oWflS{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.5)}}.GenericModal-module_unscrollable__HjRaW{overflow:hidden!important}.GenericModal-module_pseudoScrollbar__BhRqh{padding-right:15px!important}.GenericModal-module_hide__SK9PI{opacity:0;pointer-events:none}
99
99
  .ModalAccessibleDescription-module_modalDescription__gq-Mn{grid-column-start:2}
100
100
  .ModalBody-module_inputEdit__4Krgt{background-color:var(--color-gray-200,#f4f4f5);border-radius:var(--border-solid-border-radius,7px)}
@@ -21,14 +21,16 @@ var LikertScaleLegacy = function (_a) {
21
21
  var scale = _a.scale,
22
22
  selectedItem = _a.selectedItem,
23
23
  reversed = _a.reversed,
24
+ _b = _a.colorSchema,
25
+ colorSchema = _b === void 0 ? "classical" : _b,
24
26
  dataTestId = _a["data-testid"],
25
27
  onSelect = _a.onSelect,
26
28
  validationMessage = _a.validationMessage,
27
29
  status = _a.status,
28
30
  labelId = _a.labelId;
29
- var _b = useState(null),
30
- hoveredItem = _b[0],
31
- setHoveredItem = _b[1];
31
+ var _c = useState(null),
32
+ hoveredItem = _c[0],
33
+ setHoveredItem = _c[1];
32
34
  var itemRefs = scale.map(function (s) {
33
35
  return {
34
36
  value: s.value,
@@ -101,7 +103,7 @@ var LikertScaleLegacy = function (_a) {
101
103
  var isSuggested = hoveredItem && hoveredItem.value >= item.value;
102
104
  var isUnselected = selectedItem && selectedItem.value < item.value;
103
105
  return /*#__PURE__*/React.createElement("div", {
104
- className: classnames(styles.likertItem, styles["likertItem".concat(item.value)], isSelected && styles.selected, isSuggested && styles.suggested, isUnselected && styles.unselected),
106
+ className: classnames(styles.likertItem, colorSchema == "blue" ? styles.blueColorSchema : styles.classicalColorSchema, styles["likertItem".concat(item.value)], isSelected && styles.selected, isSuggested && styles.suggested, isUnselected && styles.unselected),
105
107
  key: item.value,
106
108
  "data-testid": dataTestId && "".concat(dataTestId, "-item-").concat(item.value),
107
109
  onClick: function () {
@@ -11,12 +11,14 @@ var styles = {
11
11
  "suggested": "LikertScaleLegacy-module_suggested__0xk0D",
12
12
  "itemContainer": "LikertScaleLegacy-module_itemContainer__9Vfq0",
13
13
  "legend": "LikertScaleLegacy-module_legend__HYNg-",
14
+ "classicalColorSchema": "LikertScaleLegacy-module_classicalColorSchema__nPw3y",
14
15
  "field1": "LikertScaleLegacy-module_field1__TDRE-",
15
16
  "selected": "LikertScaleLegacy-module_selected__MVmcb",
16
17
  "field2": "LikertScaleLegacy-module_field2__s-CD7",
17
18
  "field3": "LikertScaleLegacy-module_field3__xp5eQ",
18
19
  "field4": "LikertScaleLegacy-module_field4__IVK7E",
19
20
  "field5": "LikertScaleLegacy-module_field5__9sETV",
21
+ "blueColorSchema": "LikertScaleLegacy-module_blueColorSchema__w8XlF",
20
22
  "pop": "LikertScaleLegacy-module_pop__hTH48",
21
23
  "likertItem1": "LikertScaleLegacy-module_likertItem1__cYmY6",
22
24
  "hovered": "LikertScaleLegacy-module_hovered__vVUN6"
@@ -62,6 +62,7 @@ const ConfirmationModal = /*#__PURE__*/function () {
62
62
  title = _a.title,
63
63
  onConfirm = _a.onConfirm,
64
64
  onAfterLeave = _a.onAfterLeave,
65
+ onAfterEnter = _a.onAfterEnter,
65
66
  _d = _a.confirmLabel,
66
67
  confirmLabel = _d === void 0 ? "Confirm" : _d,
67
68
  _e = _a.dismissLabel,
@@ -69,7 +70,7 @@ const ConfirmationModal = /*#__PURE__*/function () {
69
70
  confirmWorking = _a.confirmWorking,
70
71
  propsOnDismiss = _a.onDismiss,
71
72
  children = _a.children,
72
- props = __rest(_a, ["isOpen", "isProminent", "unpadded", "mood", "title", "onConfirm", "onAfterLeave", "confirmLabel", "dismissLabel", "confirmWorking", "onDismiss", "children"]);
73
+ props = __rest(_a, ["isOpen", "isProminent", "unpadded", "mood", "title", "onConfirm", "onAfterLeave", "onAfterEnter", "confirmLabel", "dismissLabel", "confirmWorking", "onDismiss", "children"]);
73
74
  var onDismiss = confirmWorking ? undefined : propsOnDismiss;
74
75
  var footerActions = [];
75
76
  if (onConfirm) {
@@ -93,7 +94,8 @@ const ConfirmationModal = /*#__PURE__*/function () {
93
94
  isOpen: isOpen,
94
95
  onEscapeKeyup: onDismiss,
95
96
  onOutsideModalClick: onDismiss,
96
- onAfterLeave: onAfterLeave
97
+ onAfterLeave: onAfterLeave,
98
+ onAfterEnter: onAfterEnter
97
99
  }, /*#__PURE__*/React.createElement("div", __assign({
98
100
  className: styles.modal,
99
101
  "data-modal": true
@@ -26,6 +26,7 @@ const ContextModal = /*#__PURE__*/function () {
26
26
  onConfirm = _a.onConfirm,
27
27
  propsOnDismiss = _a.onDismiss,
28
28
  onAfterLeave = _a.onAfterLeave,
29
+ onAfterEnter = _a.onAfterEnter,
29
30
  _d = _a.confirmLabel,
30
31
  confirmLabel = _d === void 0 ? "Confirm" : _d,
31
32
  confirmWorking = _a.confirmWorking,
@@ -35,7 +36,7 @@ const ContextModal = /*#__PURE__*/function () {
35
36
  image = _a.image,
36
37
  secondaryLabel = _a.secondaryLabel,
37
38
  onSecondaryAction = _a.onSecondaryAction,
38
- props = __rest(_a, ["isOpen", "unpadded", "layout", "title", "onConfirm", "onDismiss", "onAfterLeave", "confirmLabel", "confirmWorking", "renderBackground", "children", "contentHeader", "image", "secondaryLabel", "onSecondaryAction"]);
39
+ props = __rest(_a, ["isOpen", "unpadded", "layout", "title", "onConfirm", "onDismiss", "onAfterLeave", "onAfterEnter", "confirmLabel", "confirmWorking", "renderBackground", "children", "contentHeader", "image", "secondaryLabel", "onSecondaryAction"]);
39
40
  var onDismiss = confirmWorking ? undefined : propsOnDismiss;
40
41
  var footerActions = [];
41
42
  var workingProps = confirmWorking ? {
@@ -61,7 +62,8 @@ const ContextModal = /*#__PURE__*/function () {
61
62
  isOpen: isOpen,
62
63
  onEscapeKeyup: onDismiss,
63
64
  onOutsideModalClick: onDismiss,
64
- onAfterLeave: onAfterLeave
65
+ onAfterLeave: onAfterLeave,
66
+ onAfterEnter: onAfterEnter
65
67
  }, /*#__PURE__*/React.createElement("div", __assign({
66
68
  className: styles.modal,
67
69
  "data-modal": true
@@ -14,6 +14,7 @@ const GenericModal = /*#__PURE__*/function () {
14
14
  focusLockDisabled = _a.focusLockDisabled,
15
15
  onEscapeKeyup = _a.onEscapeKeyup,
16
16
  onOutsideModalClick = _a.onOutsideModalClick,
17
+ onAfterEnter = _a.onAfterEnter,
17
18
  propsOnAfterLeave = _a.onAfterLeave;
18
19
  var reactId = useId();
19
20
  var id = propsId !== null && propsId !== void 0 ? propsId : reactId;
@@ -39,16 +40,15 @@ const GenericModal = /*#__PURE__*/function () {
39
40
  onOutsideModalClick === null || onOutsideModalClick === void 0 ? void 0 : onOutsideModalClick(event);
40
41
  }
41
42
  };
42
- var focusAccessibleLabel = function () {
43
- if (modalLayer) {
44
- var labelElement = document.getElementById(labelledByID);
45
- if (labelElement) {
46
- labelElement.focus();
47
- }
43
+ var focusOnAccessibleLabel = function () {
44
+ // Check if focus already exists within the modal
45
+ if (modalLayer === null || modalLayer === void 0 ? void 0 : modalLayer.contains(document.activeElement)) {
46
+ return;
48
47
  }
48
+ var labelElement = document.getElementById(labelledByID);
49
+ labelElement === null || labelElement === void 0 ? void 0 : labelElement.focus();
49
50
  };
50
51
  var a11yWarn = function () {
51
- if (!modalLayer) return;
52
52
  // Ensure that consumers have provided an element that labels the modal
53
53
  // to meet ARIA accessibility guidelines.
54
54
  if (!document.getElementById(labelledByID)) {
@@ -66,8 +66,11 @@ const GenericModal = /*#__PURE__*/function () {
66
66
  };
67
67
  var onAfterEnterHandler = function () {
68
68
  scrollModalToTop();
69
- focusAccessibleLabel();
70
- a11yWarn();
69
+ if (modalLayer) {
70
+ onAfterEnter === null || onAfterEnter === void 0 ? void 0 : onAfterEnter();
71
+ focusOnAccessibleLabel();
72
+ a11yWarn();
73
+ }
71
74
  };
72
75
  var onBeforeEnterHandler = function () {
73
76
  preventBodyScroll();
@@ -35,7 +35,8 @@ const InputEditModal = /*#__PURE__*/function () {
35
35
  _e = _a.unpadded,
36
36
  unpadded = _e === void 0 ? false : _e,
37
37
  propsOnDismiss = _a.onDismiss,
38
- props = __rest(_a, ["isOpen", "mood", "title", "onSubmit", "onSecondaryAction", "onAfterLeave", "localeDirection", "submitLabel", "dismissLabel", "secondaryLabel", "submitWorking", "children", "unpadded", "onDismiss"]);
38
+ onAfterEnter = _a.onAfterEnter,
39
+ props = __rest(_a, ["isOpen", "mood", "title", "onSubmit", "onSecondaryAction", "onAfterLeave", "localeDirection", "submitLabel", "dismissLabel", "secondaryLabel", "submitWorking", "children", "unpadded", "onDismiss", "onAfterEnter"]);
39
40
  var onDismiss = submitWorking ? undefined : propsOnDismiss;
40
41
  var submitAction = {
41
42
  label: submitLabel,
@@ -55,7 +56,8 @@ const InputEditModal = /*#__PURE__*/function () {
55
56
  return /*#__PURE__*/React.createElement(GenericModal, {
56
57
  isOpen: isOpen,
57
58
  onEscapeKeyup: onDismiss,
58
- onAfterLeave: onAfterLeave
59
+ onAfterLeave: onAfterLeave,
60
+ onAfterEnter: onAfterEnter
59
61
  }, /*#__PURE__*/React.createElement("div", __assign({
60
62
  className: styles.modal,
61
63
  dir: localeDirection,
@@ -44,7 +44,11 @@ const LinkModal = /*#__PURE__*/function () {
44
44
  title: defaultHref ? "Edit link" : "Add link",
45
45
  onSubmit: handleSubmit,
46
46
  onDismiss: onDismiss,
47
- onAfterLeave: onAfterLeave
47
+ onAfterLeave: onAfterLeave,
48
+ onAfterEnter: function () {
49
+ var _a;
50
+ return (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.focus();
51
+ }
48
52
  }, /*#__PURE__*/React.createElement(TextField, {
49
53
  id: "href",
50
54
  type: "text",