@kaizen/components 1.68.4 → 1.68.5

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 (52) hide show
  1. package/dist/cjs/Tile/subcomponents/GenericTile/GenericTile.cjs +23 -2
  2. package/dist/esm/Tile/subcomponents/GenericTile/GenericTile.mjs +24 -3
  3. package/dist/styles.css +79 -79
  4. package/locales/ar.json +8 -0
  5. package/locales/bg.json +8 -0
  6. package/locales/cs.json +8 -0
  7. package/locales/cy.json +8 -0
  8. package/locales/da.json +8 -0
  9. package/locales/de.json +8 -0
  10. package/locales/el.json +8 -0
  11. package/locales/en-GB.json +8 -0
  12. package/locales/es-419.json +8 -0
  13. package/locales/es.json +8 -0
  14. package/locales/et.json +8 -0
  15. package/locales/fi.json +8 -0
  16. package/locales/fr-CA.json +8 -0
  17. package/locales/fr.json +8 -0
  18. package/locales/he.json +8 -0
  19. package/locales/hi.json +8 -0
  20. package/locales/ht.json +8 -0
  21. package/locales/hu.json +8 -0
  22. package/locales/id.json +8 -0
  23. package/locales/it.json +8 -0
  24. package/locales/ja.json +8 -0
  25. package/locales/km-KH.json +8 -0
  26. package/locales/ko.json +8 -0
  27. package/locales/lt.json +8 -0
  28. package/locales/lv.json +8 -0
  29. package/locales/mi.json +8 -0
  30. package/locales/ms.json +8 -0
  31. package/locales/nb.json +8 -0
  32. package/locales/nl.json +8 -0
  33. package/locales/pl.json +8 -0
  34. package/locales/pt-BR.json +8 -0
  35. package/locales/pt.json +8 -0
  36. package/locales/ro.json +8 -0
  37. package/locales/ru.json +8 -0
  38. package/locales/si-LK.json +8 -0
  39. package/locales/sk.json +8 -0
  40. package/locales/sr.json +8 -0
  41. package/locales/sv.json +8 -0
  42. package/locales/th.json +8 -0
  43. package/locales/tl.json +8 -0
  44. package/locales/tr.json +8 -0
  45. package/locales/uk.json +8 -0
  46. package/locales/vi.json +8 -0
  47. package/locales/zh-TW.json +8 -0
  48. package/locales/zh.json +8 -0
  49. package/package.json +1 -1
  50. package/src/Tile/TileGrid/_docs/TileGrid.stories.tsx +41 -8
  51. package/src/Tile/subcomponents/GenericTile/GenericTile.spec.stories.tsx +58 -0
  52. package/src/Tile/subcomponents/GenericTile/GenericTile.tsx +24 -1
@@ -34,7 +34,26 @@ var GenericTile = function (_a) {
34
34
  var _d = React.useState(false),
35
35
  isFlipped = _d[0],
36
36
  setIsFlipped = _d[1];
37
+ var _e = React.useState(false),
38
+ isDocumentReady = _e[0],
39
+ setIsDocumentReady = _e[1];
37
40
  var formatMessage = i18nReactIntl.useIntl().formatMessage;
41
+ var infoButtonRef = React.useRef(null);
42
+ var infoButtonReturnRef = React.useRef(null);
43
+ React.useEffect(function () {
44
+ setIsDocumentReady(true);
45
+ }, []);
46
+ React.useEffect(function () {
47
+ if (!isDocumentReady) {
48
+ setIsDocumentReady(true);
49
+ return;
50
+ }
51
+ if (isFlipped) {
52
+ infoButtonReturnRef.current.focus();
53
+ } else {
54
+ infoButtonRef.current.focus();
55
+ }
56
+ }, [isFlipped]);
38
57
  var translatedInfoLabel = formatMessage({
39
58
  id: "kzGenericTile.infoButtonLabel",
40
59
  defaultMessage: "View more information:",
@@ -69,7 +88,8 @@ var GenericTile = function (_a) {
69
88
  return setIsFlipped(true);
70
89
  },
71
90
  disabled: isFlipped,
72
- "aria-hidden": isFlipped
91
+ "aria-hidden": isFlipped,
92
+ ref: infoButtonRef
73
93
  })), renderTitle(), React__default.default.createElement("div", {
74
94
  className: GenericTile_module.children
75
95
  }, children && children), footer && React__default.default.createElement("div", {
@@ -114,7 +134,8 @@ var GenericTile = function (_a) {
114
134
  return setIsFlipped(false);
115
135
  },
116
136
  disabled: !isFlipped,
117
- "aria-hidden": !isFlipped
137
+ "aria-hidden": !isFlipped,
138
+ ref: infoButtonReturnRef
118
139
  })), React__default.default.createElement("div", {
119
140
  className: GenericTile_module.information
120
141
  }, renderInformation(information)));
@@ -1,5 +1,5 @@
1
1
  import { __rest, __assign } from 'tslib';
2
- import React, { useState } from 'react';
2
+ import React, { useState, useRef, useEffect } from 'react';
3
3
  import { useIntl } from '@cultureamp/i18n-react-intl';
4
4
  import classnames from 'classnames';
5
5
  import { Heading } from '../../../Heading/Heading.mjs';
@@ -26,7 +26,26 @@ const GenericTile = /*#__PURE__*/function () {
26
26
  var _d = useState(false),
27
27
  isFlipped = _d[0],
28
28
  setIsFlipped = _d[1];
29
+ var _e = useState(false),
30
+ isDocumentReady = _e[0],
31
+ setIsDocumentReady = _e[1];
29
32
  var formatMessage = useIntl().formatMessage;
33
+ var infoButtonRef = useRef(null);
34
+ var infoButtonReturnRef = useRef(null);
35
+ useEffect(function () {
36
+ setIsDocumentReady(true);
37
+ }, []);
38
+ useEffect(function () {
39
+ if (!isDocumentReady) {
40
+ setIsDocumentReady(true);
41
+ return;
42
+ }
43
+ if (isFlipped) {
44
+ infoButtonReturnRef.current.focus();
45
+ } else {
46
+ infoButtonRef.current.focus();
47
+ }
48
+ }, [isFlipped]);
30
49
  var translatedInfoLabel = formatMessage({
31
50
  id: "kzGenericTile.infoButtonLabel",
32
51
  defaultMessage: "View more information:",
@@ -61,7 +80,8 @@ const GenericTile = /*#__PURE__*/function () {
61
80
  return setIsFlipped(true);
62
81
  },
63
82
  disabled: isFlipped,
64
- "aria-hidden": isFlipped
83
+ "aria-hidden": isFlipped,
84
+ ref: infoButtonRef
65
85
  }))), renderTitle(), /*#__PURE__*/React.createElement("div", {
66
86
  className: styles.children
67
87
  }, children && children), footer && /*#__PURE__*/React.createElement("div", {
@@ -106,7 +126,8 @@ const GenericTile = /*#__PURE__*/function () {
106
126
  return setIsFlipped(false);
107
127
  },
108
128
  disabled: !isFlipped,
109
- "aria-hidden": !isFlipped
129
+ "aria-hidden": !isFlipped,
130
+ ref: infoButtonReturnRef
110
131
  })), /*#__PURE__*/React.createElement("div", {
111
132
  className: styles.information
112
133
  }, renderInformation(information)));
package/dist/styles.css CHANGED
@@ -1,52 +1,4 @@
1
1
  @layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:500;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:600;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:600;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:600;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:500;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
2
- .MenuItem-module_item__uImZI {
3
- display: block;
4
- font-family: var(--typography-paragraph-body-font-family);
5
- font-size: var(--typography-paragraph-body-font-size);
6
- letter-spacing: var(--typography-paragraph-body-letter-spacing);
7
- font-weight: var(--typography-paragraph-body-font-weight);
8
- line-height: var(--typography-paragraph-body-line-height);
9
- color: rgba(var(--color-purple-800-rgb), 0.7);
10
- padding: var(--spacing-6) var(--spacing-8);
11
- border: var(--border-focus-ring-border-width)
12
- var(--border-focus-ring-border-style) transparent;
13
- border-radius: 4px;
14
- margin-inline: var(--spacing-6);
15
- text-decoration: none;
16
- cursor: pointer;
17
- }
18
-
19
- .MenuItem-module_flexWrapper__hiXro {
20
- display: flex;
21
- gap: 0 var(--spacing-8);
22
- align-items: center;
23
- }
24
-
25
- .MenuItem-module_iconWrapper__QoZgd {
26
- flex-shrink: 0;
27
- display: flex;
28
- align-items: center;
29
- }
30
-
31
- .MenuItem-module_item__uImZI:focus {
32
- outline: none;
33
- }
34
-
35
- .MenuItem-module_item__uImZI[data-hovered],
36
- .MenuItem-module_item__uImZI[data-focus-visible] {
37
- background-color: var(--color-blue-100);
38
- color: var(--color-blue-500);
39
- }
40
-
41
- .MenuItem-module_item__uImZI[data-focus-visible] {
42
- outline: var(--border-focus-ring-border-width)
43
- var(--border-focus-ring-border-style) var(--color-blue-500);
44
- }
45
-
46
- .MenuItem-module_item__uImZI[data-disabled] {
47
- opacity: 0.3;
48
- }
49
-
50
2
  .Menu-module_menu__AowD8 {
51
3
  background-color: var(--color-white);
52
4
  color: var(--color-purple-800);
@@ -316,6 +268,54 @@
316
268
  visibility: hidden;
317
269
  }
318
270
 
271
+ .MenuItem-module_item__uImZI {
272
+ display: block;
273
+ font-family: var(--typography-paragraph-body-font-family);
274
+ font-size: var(--typography-paragraph-body-font-size);
275
+ letter-spacing: var(--typography-paragraph-body-letter-spacing);
276
+ font-weight: var(--typography-paragraph-body-font-weight);
277
+ line-height: var(--typography-paragraph-body-line-height);
278
+ color: rgba(var(--color-purple-800-rgb), 0.7);
279
+ padding: var(--spacing-6) var(--spacing-8);
280
+ border: var(--border-focus-ring-border-width)
281
+ var(--border-focus-ring-border-style) transparent;
282
+ border-radius: 4px;
283
+ margin-inline: var(--spacing-6);
284
+ text-decoration: none;
285
+ cursor: pointer;
286
+ }
287
+
288
+ .MenuItem-module_flexWrapper__hiXro {
289
+ display: flex;
290
+ gap: 0 var(--spacing-8);
291
+ align-items: center;
292
+ }
293
+
294
+ .MenuItem-module_iconWrapper__QoZgd {
295
+ flex-shrink: 0;
296
+ display: flex;
297
+ align-items: center;
298
+ }
299
+
300
+ .MenuItem-module_item__uImZI:focus {
301
+ outline: none;
302
+ }
303
+
304
+ .MenuItem-module_item__uImZI[data-hovered],
305
+ .MenuItem-module_item__uImZI[data-focus-visible] {
306
+ background-color: var(--color-blue-100);
307
+ color: var(--color-blue-500);
308
+ }
309
+
310
+ .MenuItem-module_item__uImZI[data-focus-visible] {
311
+ outline: var(--border-focus-ring-border-width)
312
+ var(--border-focus-ring-border-style) var(--color-blue-500);
313
+ }
314
+
315
+ .MenuItem-module_item__uImZI[data-disabled] {
316
+ opacity: 0.3;
317
+ }
318
+
319
319
  .ButtonContent-module_buttonContent__v5mHZ {
320
320
  display: inline-flex;
321
321
  align-items: center;
@@ -353,6 +353,37 @@
353
353
  transform: translate(-50%, -50%);
354
354
  }
355
355
 
356
+ /** THIS IS AN AUTOGENERATED FILE **/
357
+ /** THIS IS AN AUTOGENERATED FILE **/
358
+ .OverlayArrow-module_overlayArrow__hoDyK {
359
+ display: flex;
360
+ padding: 8px;
361
+ }
362
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
363
+ padding: 0 8px;
364
+ }
365
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
366
+ padding: 8px 0;
367
+ }
368
+ .OverlayArrow-module_overlayArrow__hoDyK path {
369
+ fill: var(--color-purple-800, #2f2438);
370
+ box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
371
+ }
372
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
373
+ transform: rotate(90deg);
374
+ }
375
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
376
+ transform: rotate(180deg);
377
+ }
378
+ .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
379
+ transform: rotate(270deg);
380
+ }
381
+ .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
382
+ fill: var(--color-white, #ffffff);
383
+ }
384
+ .Focusable-module_focusableWrapper__NfuIi {
385
+ display: inline-flex;
386
+ }
356
387
  /** THIS IS AN AUTOGENERATED FILE **/
357
388
  /** THIS IS AN AUTOGENERATED FILE **/
358
389
  /** THIS IS AN AUTOGENERATED FILE **/
@@ -409,37 +440,6 @@
409
440
  opacity: 1;
410
441
  }
411
442
  }
412
- .Focusable-module_focusableWrapper__NfuIi {
413
- display: inline-flex;
414
- }
415
- /** THIS IS AN AUTOGENERATED FILE **/
416
- /** THIS IS AN AUTOGENERATED FILE **/
417
- .OverlayArrow-module_overlayArrow__hoDyK {
418
- display: flex;
419
- padding: 8px;
420
- }
421
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=top], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] {
422
- padding: 0 8px;
423
- }
424
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left], .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] {
425
- padding: 8px 0;
426
- }
427
- .OverlayArrow-module_overlayArrow__hoDyK path {
428
- fill: var(--color-purple-800, #2f2438);
429
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
430
- }
431
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg {
432
- transform: rotate(90deg);
433
- }
434
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg {
435
- transform: rotate(180deg);
436
- }
437
- .OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg {
438
- transform: rotate(270deg);
439
- }
440
- .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
441
- fill: var(--color-white, #ffffff);
442
- }
443
443
  /*
444
444
  * This is taken from the Material Symbols CDN
445
445
  * font-weight & font-size removed as overridden in .icon
package/locales/ar.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "الانتقال إلى الصفحة الرئيسية"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "عرض المزيد من المعلومات:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "إخفاء المعلومات:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "إجراءات إضافية"
package/locales/bg.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Отидете на начална страница"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Вижте повече информация:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Скриване на информация:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Допълнителни действия"
package/locales/cs.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Přejít na domovskou stránku"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Zobrazit více informací:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Skrýt informace:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Další akce"
package/locales/cy.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ewch i'r Hafan"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Gweld mwy o wybodaeth:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Cuddio gwybodaeth:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Gweithredoedd ychwanegol"
package/locales/da.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Gå til forsiden"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Se mere information:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Skjul oplysninger:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Yderligere handlinger"
package/locales/de.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Zur Startseite"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Mehr Informationen anzeigen:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Informationen ausblenden:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Zusätzliche Aktionen"
package/locales/el.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Επιστροφή στην αρχή σελίδα"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Δείτε περισσότερες πληροφορίες:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Κρύψτε πληροφορίες:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Περαιτέρω ενέργειες"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Go to Home"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "View more information:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Hide information:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Additional actions"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ir a Inicio"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Ver más información:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ocultar información:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Acciones adicionales"
package/locales/es.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ir a Inicio"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Ver más información:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Ocultar información:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Otras acciones"
package/locales/et.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Avalehele"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Vaata rohkem teavet:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Peida teave:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Täiendavad toimingud"
package/locales/fi.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Siirry Etusivulle"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Katso lisätietoja:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Piilota tiedot:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Lisätoimet"
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Retour à la page d'accueil"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Afficher plus d'informations :"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Masquer les informations :"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Actions supplémentaires"
package/locales/fr.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Retour à la page d'accueil"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Afficher plus d'informations :"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Masquer les informations :"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Actions supplémentaires"
package/locales/he.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "מעבר אל דף הבית"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "עיון במידע נוסף:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "הסתרת מידע:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "פעולות נוספות"
package/locales/hi.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "होम पेज पर जाएं"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "ज़्यादा जानकारी देखें:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "जानकारी छिपाएं:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "अतिरिक्त कार्यवाईयां"
package/locales/ht.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ale nan paj akèy la"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Gade plis enfòmasyon:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Kache Enfòmasyon:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Desizyon adisyonèl"
package/locales/hu.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Ugrás a kezdőlapra"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "További információk megjelenítése:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Információk elrejtése:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "További műveletek"
package/locales/id.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Pergi ke Beranda"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Lihat informasi lebih lanjut:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Sembunyikan informasi:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Tindakan lain"
package/locales/it.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "Vai alla Home"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "Visualizza ulteriori informazioni:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "Nascondi informazioni:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "Azioni aggiuntive"
package/locales/ja.json CHANGED
@@ -164,6 +164,14 @@
164
164
  "description" : "Home button label",
165
165
  "message" : "ホームに移動"
166
166
  },
167
+ "kzGenericTile.infoButtonLabel" : {
168
+ "description" : "Prompts user to interact with button to reveal more information",
169
+ "message" : "詳細情報を見る:"
170
+ },
171
+ "kzGenericTile.infoButtonReturnLabel" : {
172
+ "description" : "Prompts user to interact with button to hide information",
173
+ "message" : "情報を非表示にする:"
174
+ },
167
175
  "splitButton.dropdownButton.label" : {
168
176
  "description" : "Label for a dropdown menu holding additional actions",
169
177
  "message" : "追加のアクション"