@carbon/ibm-products 2.43.2-canary.123 → 2.43.2-canary.124

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/css/index-full-carbon.css +141 -34
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +1 -1
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon.css +6 -0
  6. package/css/index-without-carbon.css.map +1 -1
  7. package/css/index-without-carbon.min.css +1 -1
  8. package/css/index-without-carbon.min.css.map +1 -1
  9. package/css/index.css +141 -34
  10. package/css/index.css.map +1 -1
  11. package/css/index.min.css +1 -1
  12. package/css/index.min.css.map +1 -1
  13. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +1 -1
  14. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +2 -1
  15. package/es/components/FullPageError/FullPageError.js +6 -3
  16. package/es/components/FullPageError/assets/Error403SVG.d.ts +3 -1
  17. package/es/components/FullPageError/assets/Error403SVG.js +6 -3
  18. package/es/components/FullPageError/assets/Error404SVG.d.ts +3 -1
  19. package/es/components/FullPageError/assets/Error404SVG.js +6 -3
  20. package/es/components/FullPageError/assets/ErrorGenericSVG.d.ts +3 -1
  21. package/es/components/FullPageError/assets/ErrorGenericSVG.js +6 -3
  22. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +2 -1
  23. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +2 -1
  24. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +1 -0
  25. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.d.ts +3 -1
  26. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +6 -3
  27. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.d.ts +3 -1
  28. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +6 -3
  29. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.d.ts +3 -1
  30. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +6 -3
  31. package/es/node_modules/@carbon/icons-react/es/generated/bucket-9.js +2 -4
  32. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +1 -1
  33. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +2 -1
  34. package/lib/components/FullPageError/FullPageError.js +6 -3
  35. package/lib/components/FullPageError/assets/Error403SVG.d.ts +3 -1
  36. package/lib/components/FullPageError/assets/Error403SVG.js +6 -3
  37. package/lib/components/FullPageError/assets/Error404SVG.d.ts +3 -1
  38. package/lib/components/FullPageError/assets/Error404SVG.js +6 -3
  39. package/lib/components/FullPageError/assets/ErrorGenericSVG.d.ts +3 -1
  40. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +6 -3
  41. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +2 -1
  42. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +2 -1
  43. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +1 -0
  44. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.d.ts +3 -1
  45. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +6 -3
  46. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.d.ts +3 -1
  47. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +6 -3
  48. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.d.ts +3 -1
  49. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +6 -3
  50. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +2 -4
  51. package/package.json +8 -8
@@ -1,9 +1,11 @@
1
- export function Error403SVG({ className }: {
1
+ export function Error403SVG({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace Error403SVG {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -10,12 +10,14 @@ import { p as propTypesExports } from '../../../node_modules/prop-types/index.js
10
10
 
11
11
  var _g, _defs;
12
12
  var Error403SVG = function Error403SVG(_ref) {
13
- var className = _ref.className;
13
+ var className = _ref.className,
14
+ title = _ref.title;
14
15
  return /*#__PURE__*/React__default.createElement("svg", {
15
16
  viewBox: "0 0 750 570",
16
17
  fill: "none",
17
18
  className: className,
18
- xmlns: "http://www.w3.org/2000/svg"
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ "aria-label": title
19
21
  }, _g || (_g = /*#__PURE__*/React__default.createElement("g", {
20
22
  clipPath: "url(#clip0_0_2401)"
21
23
  }, /*#__PURE__*/React__default.createElement("path", {
@@ -708,7 +710,8 @@ var Error403SVG = function Error403SVG(_ref) {
708
710
  // in alphabetical order (for consistency).
709
711
  // See https://www.npmjs.com/package/prop-types#usage.
710
712
  Error403SVG.propTypes = {
711
- className: propTypesExports.string
713
+ className: propTypesExports.string,
714
+ title: propTypesExports.string
712
715
  };
713
716
 
714
717
  export { Error403SVG };
@@ -1,9 +1,11 @@
1
- export function Error404SVG({ className }: {
1
+ export function Error404SVG({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace Error404SVG {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -10,12 +10,14 @@ import { p as propTypesExports } from '../../../node_modules/prop-types/index.js
10
10
 
11
11
  var _g, _defs;
12
12
  var Error404SVG = function Error404SVG(_ref) {
13
- var className = _ref.className;
13
+ var className = _ref.className,
14
+ title = _ref.title;
14
15
  return /*#__PURE__*/React__default.createElement("svg", {
15
16
  viewBox: "0 0 751 549",
16
17
  fill: "none",
17
18
  className: className,
18
- xmlns: "http://www.w3.org/2000/svg"
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ "aria-label": title
19
21
  }, _g || (_g = /*#__PURE__*/React__default.createElement("g", {
20
22
  clipPath: "url(#clip0_0_2285)"
21
23
  }, /*#__PURE__*/React__default.createElement("path", {
@@ -617,7 +619,8 @@ var Error404SVG = function Error404SVG(_ref) {
617
619
  // in alphabetical order (for consistency).
618
620
  // See https://www.npmjs.com/package/prop-types#usage.
619
621
  Error404SVG.propTypes = {
620
- className: propTypesExports.string
622
+ className: propTypesExports.string,
623
+ title: propTypesExports.string
621
624
  };
622
625
 
623
626
  export { Error404SVG };
@@ -1,9 +1,11 @@
1
- export function ErrorGenericSVG({ className }: {
1
+ export function ErrorGenericSVG({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace ErrorGenericSVG {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -10,12 +10,14 @@ import { p as propTypesExports } from '../../../node_modules/prop-types/index.js
10
10
 
11
11
  var _g, _defs;
12
12
  var ErrorGenericSVG = function ErrorGenericSVG(_ref) {
13
- var className = _ref.className;
13
+ var className = _ref.className,
14
+ title = _ref.title;
14
15
  return /*#__PURE__*/React__default.createElement("svg", {
15
16
  viewBox: "0 0 750 506",
16
17
  fill: "none",
17
18
  className: className,
18
- xmlns: "http://www.w3.org/2000/svg"
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ "aria-label": title
19
21
  }, _g || (_g = /*#__PURE__*/React__default.createElement("g", {
20
22
  clipPath: "url(#clip0_203_144)"
21
23
  }, /*#__PURE__*/React__default.createElement("path", {
@@ -708,7 +710,8 @@ var ErrorGenericSVG = function ErrorGenericSVG(_ref) {
708
710
  // in alphabetical order (for consistency).
709
711
  // See https://www.npmjs.com/package/prop-types#usage.
710
712
  ErrorGenericSVG.propTypes = {
711
- className: propTypesExports.string
713
+ className: propTypesExports.string,
714
+ title: propTypesExports.string
712
715
  };
713
716
 
714
717
  export { ErrorGenericSVG };
@@ -40,7 +40,8 @@ var HTTPError403 = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
40
40
  title: title,
41
41
  links: links
42
42
  }), /*#__PURE__*/React__default.createElement(HTTPErrorSvg403, {
43
- className: "".concat(blockClass, "__image")
43
+ className: "".concat(blockClass, "__image"),
44
+ title: title
44
45
  }));
45
46
  });
46
47
 
@@ -40,7 +40,8 @@ var HTTPError404 = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
40
40
  title: title,
41
41
  links: links
42
42
  }), /*#__PURE__*/React__default.createElement(HTTPErrorSvg404, {
43
- className: "".concat(blockClass, "__image")
43
+ className: "".concat(blockClass, "__image"),
44
+ title: title
44
45
  }));
45
46
  });
46
47
 
@@ -40,6 +40,7 @@ var HTTPErrorOther = /*#__PURE__*/React__default.forwardRef(function (_ref, ref)
40
40
  title: title,
41
41
  links: links
42
42
  }), /*#__PURE__*/React__default.createElement(HTTPErrorSvgOther, {
43
+ title: title,
43
44
  className: "".concat(blockClass, "__image")
44
45
  }));
45
46
  });
@@ -1,9 +1,11 @@
1
- export function HTTPErrorSvg403({ className }: {
1
+ export function HTTPErrorSvg403({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace HTTPErrorSvg403 {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -14,13 +14,15 @@ var _linearGradient, _linearGradient2, _linearGradient3, _linearGradient4, _line
14
14
  // The block part of our conventional BEM class names (blockClass__E--M).
15
15
  var blockClass = "".concat(pkg.prefix, "--http-errors-403");
16
16
  var HTTPErrorSvg403 = function HTTPErrorSvg403(_ref) {
17
- var className = _ref.className;
17
+ var className = _ref.className,
18
+ title = _ref.title;
18
19
  return /*#__PURE__*/React__default.createElement("svg", {
19
20
  xmlns: "http://www.w3.org/2000/svg",
20
21
  xmlnsXlink: "http://www.w3.org/1999/xlink",
21
22
  viewBox: "0 0 1584 916",
22
23
  className: className,
23
- preserveAspectRatio: "xMinYMax meet"
24
+ preserveAspectRatio: "xMinYMax meet",
25
+ "aria-label": title
24
26
  }, /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
25
27
  id: "prefix__clip-path"
26
28
  }, /*#__PURE__*/React__default.createElement("path", {
@@ -1239,7 +1241,8 @@ var HTTPErrorSvg403 = function HTTPErrorSvg403(_ref) {
1239
1241
  // in alphabetical order (for consistency).
1240
1242
  // See https://www.npmjs.com/package/prop-types#usage.
1241
1243
  HTTPErrorSvg403.propTypes = {
1242
- className: propTypesExports.string
1244
+ className: propTypesExports.string,
1245
+ title: propTypesExports.string
1243
1246
  };
1244
1247
 
1245
1248
  export { HTTPErrorSvg403 };
@@ -1,9 +1,11 @@
1
- export function HTTPErrorSvg404({ className }: {
1
+ export function HTTPErrorSvg404({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace HTTPErrorSvg404 {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -14,13 +14,15 @@ var _linearGradient, _linearGradient2, _linearGradient3, _g, _path, _g2, _image,
14
14
  // The block part of our conventional BEM class names (blockClass__E--M).
15
15
  var blockClass = "".concat(pkg.prefix, "--http-errors-404");
16
16
  var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
17
- var className = _ref.className;
17
+ var className = _ref.className,
18
+ title = _ref.title;
18
19
  return /*#__PURE__*/React__default.createElement("svg", {
19
20
  xmlns: "http://www.w3.org/2000/svg",
20
21
  xmlnsXlink: "http://www.w3.org/1999/xlink",
21
22
  viewBox: "0 0 1584 916",
22
23
  className: className,
23
- preserveAspectRatio: "xMinYMax meet"
24
+ preserveAspectRatio: "xMinYMax meet",
25
+ "aria-label": title
24
26
  }, /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
25
27
  id: "prefix__clip-path"
26
28
  }, /*#__PURE__*/React__default.createElement("path", {
@@ -1038,7 +1040,8 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
1038
1040
  // in alphabetical order (for consistency).
1039
1041
  // See https://www.npmjs.com/package/prop-types#usage.
1040
1042
  HTTPErrorSvg404.propTypes = {
1041
- className: propTypesExports.string
1043
+ className: propTypesExports.string,
1044
+ title: propTypesExports.string
1042
1045
  };
1043
1046
 
1044
1047
  export { HTTPErrorSvg404 };
@@ -1,9 +1,11 @@
1
- export function HTTPErrorSvgOther({ className }: {
1
+ export function HTTPErrorSvgOther({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace HTTPErrorSvgOther {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -14,13 +14,15 @@ var _linearGradient, _linearGradient2, _linearGradient3, _linearGradient4, _line
14
14
  // The block part of our conventional BEM class names (blockClass__E--M).
15
15
  var blockClass = "".concat(pkg.prefix, "--http-errors-other");
16
16
  var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
17
- var className = _ref.className;
17
+ var className = _ref.className,
18
+ title = _ref.title;
18
19
  return /*#__PURE__*/React__default.createElement("svg", {
19
20
  xmlns: "http://www.w3.org/2000/svg",
20
21
  xmlnsXlink: "http://www.w3.org/1999/xlink",
21
22
  viewBox: "0 0 1584 916",
22
23
  className: className,
23
- preserveAspectRatio: "xMinYMax meet"
24
+ preserveAspectRatio: "xMinYMax meet",
25
+ "aria-label": title
24
26
  }, /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
25
27
  id: "prefix__clip-path"
26
28
  }, /*#__PURE__*/React__default.createElement("path", {
@@ -1089,7 +1091,8 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
1089
1091
  // in alphabetical order (for consistency).
1090
1092
  // See https://www.npmjs.com/package/prop-types#usage.
1091
1093
  HTTPErrorSvgOther.propTypes = {
1092
- className: propTypesExports.string
1094
+ className: propTypesExports.string,
1095
+ title: propTypesExports.string
1093
1096
  };
1094
1097
 
1095
1098
  export { HTTPErrorSvgOther };
@@ -1479,8 +1479,7 @@ var KubernetesControlPlaneNode = /*#__PURE__*/React__default.forwardRef(function
1479
1479
  }, rest), _path108 || (_path108 = /*#__PURE__*/React__default.createElement("path", {
1480
1480
  d: "M22.951 20h-2.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h6.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h2.1843v-2Zm-5 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Zm5-10h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h2.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h6.1843v-2Zm-9 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Z"
1481
1481
  })), _path109 || (_path109 = /*#__PURE__*/React__default.createElement("path", {
1482
- d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z",
1483
- style: "mix-blend-mode:multiply"
1482
+ d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z"
1484
1483
  })), _path110 || (_path110 = /*#__PURE__*/React__default.createElement("path", {
1485
1484
  fill: "none",
1486
1485
  d: "M0 0h32v32H0z"
@@ -1575,8 +1574,7 @@ var KubernetesWorkerNode = /*#__PURE__*/React__default.forwardRef(function Kuber
1575
1574
  }, rest), _path116 || (_path116 = /*#__PURE__*/React__default.createElement("path", {
1576
1575
  d: "M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"
1577
1576
  })), _path117 || (_path117 = /*#__PURE__*/React__default.createElement("path", {
1578
- d: "m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z",
1579
- style: "mix-blend-mode:multiply"
1577
+ d: "m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"
1580
1578
  })), _path118 || (_path118 = /*#__PURE__*/React__default.createElement("path", {
1581
1579
  fill: "none",
1582
1580
  d: "M0 0h32v32H0z"
@@ -57,7 +57,7 @@ exports.CoachmarkBeacon = /*#__PURE__*/React__default["default"].forwardRef(func
57
57
  className: "".concat(blockClass, "__target")
58
58
  }), /*#__PURE__*/React__default["default"].createElement("svg", {
59
59
  className: "".concat(blockClass, "__center")
60
- }, _circle || (_circle = /*#__PURE__*/React__default["default"].createElement("circle", {
60
+ }, /*#__PURE__*/React__default["default"].createElement("title", null, label), _circle || (_circle = /*#__PURE__*/React__default["default"].createElement("circle", {
61
61
  r: 1,
62
62
  cx: 38,
63
63
  cy: 38
@@ -354,7 +354,8 @@ var InlineEditCell = function InlineEditCell(_ref) {
354
354
  }
355
355
  }
356
356
  },
357
- ref: dropdownRef
357
+ ref: dropdownRef,
358
+ autoAlign: true
358
359
  }));
359
360
  };
360
361
  var setRenderIcon = function setRenderIcon() {
@@ -51,17 +51,20 @@ exports.FullPageError = /*#__PURE__*/React__default["default"].forwardRef(functi
51
51
  var errorData = {
52
52
  403: {
53
53
  svg: /*#__PURE__*/React__default["default"].createElement(Error403SVG.Error403SVG, {
54
- className: "".concat(blockClass, "__svg ").concat(blockClass, "__403")
54
+ className: "".concat(blockClass, "__svg ").concat(blockClass, "__403"),
55
+ title: title
55
56
  })
56
57
  },
57
58
  404: {
58
59
  svg: /*#__PURE__*/React__default["default"].createElement(Error404SVG.Error404SVG, {
59
- className: "".concat(blockClass, "__svg ").concat(blockClass, "__404")
60
+ className: "".concat(blockClass, "__svg ").concat(blockClass, "__404"),
61
+ title: title
60
62
  })
61
63
  },
62
64
  custom: {
63
65
  svg: /*#__PURE__*/React__default["default"].createElement(ErrorGenericSVG.ErrorGenericSVG, {
64
- className: "".concat(blockClass, "__svg ").concat(blockClass, "__custom")
66
+ className: "".concat(blockClass, "__svg ").concat(blockClass, "__custom"),
67
+ title: title
65
68
  })
66
69
  }
67
70
  };
@@ -1,9 +1,11 @@
1
- export function Error403SVG({ className }: {
1
+ export function Error403SVG({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace Error403SVG {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -18,12 +18,14 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
18
18
 
19
19
  var _g, _defs;
20
20
  var Error403SVG = function Error403SVG(_ref) {
21
- var className = _ref.className;
21
+ var className = _ref.className,
22
+ title = _ref.title;
22
23
  return /*#__PURE__*/React__default["default"].createElement("svg", {
23
24
  viewBox: "0 0 750 570",
24
25
  fill: "none",
25
26
  className: className,
26
- xmlns: "http://www.w3.org/2000/svg"
27
+ xmlns: "http://www.w3.org/2000/svg",
28
+ "aria-label": title
27
29
  }, _g || (_g = /*#__PURE__*/React__default["default"].createElement("g", {
28
30
  clipPath: "url(#clip0_0_2401)"
29
31
  }, /*#__PURE__*/React__default["default"].createElement("path", {
@@ -716,7 +718,8 @@ var Error403SVG = function Error403SVG(_ref) {
716
718
  // in alphabetical order (for consistency).
717
719
  // See https://www.npmjs.com/package/prop-types#usage.
718
720
  Error403SVG.propTypes = {
719
- className: index.propTypesExports.string
721
+ className: index.propTypesExports.string,
722
+ title: index.propTypesExports.string
720
723
  };
721
724
 
722
725
  exports.Error403SVG = Error403SVG;
@@ -1,9 +1,11 @@
1
- export function Error404SVG({ className }: {
1
+ export function Error404SVG({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace Error404SVG {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -18,12 +18,14 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
18
18
 
19
19
  var _g, _defs;
20
20
  var Error404SVG = function Error404SVG(_ref) {
21
- var className = _ref.className;
21
+ var className = _ref.className,
22
+ title = _ref.title;
22
23
  return /*#__PURE__*/React__default["default"].createElement("svg", {
23
24
  viewBox: "0 0 751 549",
24
25
  fill: "none",
25
26
  className: className,
26
- xmlns: "http://www.w3.org/2000/svg"
27
+ xmlns: "http://www.w3.org/2000/svg",
28
+ "aria-label": title
27
29
  }, _g || (_g = /*#__PURE__*/React__default["default"].createElement("g", {
28
30
  clipPath: "url(#clip0_0_2285)"
29
31
  }, /*#__PURE__*/React__default["default"].createElement("path", {
@@ -625,7 +627,8 @@ var Error404SVG = function Error404SVG(_ref) {
625
627
  // in alphabetical order (for consistency).
626
628
  // See https://www.npmjs.com/package/prop-types#usage.
627
629
  Error404SVG.propTypes = {
628
- className: index.propTypesExports.string
630
+ className: index.propTypesExports.string,
631
+ title: index.propTypesExports.string
629
632
  };
630
633
 
631
634
  exports.Error404SVG = Error404SVG;
@@ -1,9 +1,11 @@
1
- export function ErrorGenericSVG({ className }: {
1
+ export function ErrorGenericSVG({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace ErrorGenericSVG {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -18,12 +18,14 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
18
18
 
19
19
  var _g, _defs;
20
20
  var ErrorGenericSVG = function ErrorGenericSVG(_ref) {
21
- var className = _ref.className;
21
+ var className = _ref.className,
22
+ title = _ref.title;
22
23
  return /*#__PURE__*/React__default["default"].createElement("svg", {
23
24
  viewBox: "0 0 750 506",
24
25
  fill: "none",
25
26
  className: className,
26
- xmlns: "http://www.w3.org/2000/svg"
27
+ xmlns: "http://www.w3.org/2000/svg",
28
+ "aria-label": title
27
29
  }, _g || (_g = /*#__PURE__*/React__default["default"].createElement("g", {
28
30
  clipPath: "url(#clip0_203_144)"
29
31
  }, /*#__PURE__*/React__default["default"].createElement("path", {
@@ -716,7 +718,8 @@ var ErrorGenericSVG = function ErrorGenericSVG(_ref) {
716
718
  // in alphabetical order (for consistency).
717
719
  // See https://www.npmjs.com/package/prop-types#usage.
718
720
  ErrorGenericSVG.propTypes = {
719
- className: index.propTypesExports.string
721
+ className: index.propTypesExports.string,
722
+ title: index.propTypesExports.string
720
723
  };
721
724
 
722
725
  exports.ErrorGenericSVG = ErrorGenericSVG;
@@ -49,7 +49,8 @@ exports.HTTPError403 = /*#__PURE__*/React__default["default"].forwardRef(functio
49
49
  title: title,
50
50
  links: links
51
51
  }), /*#__PURE__*/React__default["default"].createElement(HTTPErrorSvg403.HTTPErrorSvg403, {
52
- className: "".concat(blockClass, "__image")
52
+ className: "".concat(blockClass, "__image"),
53
+ title: title
53
54
  }));
54
55
  });
55
56
 
@@ -49,7 +49,8 @@ exports.HTTPError404 = /*#__PURE__*/React__default["default"].forwardRef(functio
49
49
  title: title,
50
50
  links: links
51
51
  }), /*#__PURE__*/React__default["default"].createElement(HTTPErrorSvg404.HTTPErrorSvg404, {
52
- className: "".concat(blockClass, "__image")
52
+ className: "".concat(blockClass, "__image"),
53
+ title: title
53
54
  }));
54
55
  });
55
56
 
@@ -49,6 +49,7 @@ exports.HTTPErrorOther = /*#__PURE__*/React__default["default"].forwardRef(funct
49
49
  title: title,
50
50
  links: links
51
51
  }), /*#__PURE__*/React__default["default"].createElement(HTTPErrorSvgOther.HTTPErrorSvgOther, {
52
+ title: title,
52
53
  className: "".concat(blockClass, "__image")
53
54
  }));
54
55
  });
@@ -1,9 +1,11 @@
1
- export function HTTPErrorSvg403({ className }: {
1
+ export function HTTPErrorSvg403({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace HTTPErrorSvg403 {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -22,13 +22,15 @@ var _linearGradient, _linearGradient2, _linearGradient3, _linearGradient4, _line
22
22
  // The block part of our conventional BEM class names (blockClass__E--M).
23
23
  var blockClass = "".concat(settings.pkg.prefix, "--http-errors-403");
24
24
  var HTTPErrorSvg403 = function HTTPErrorSvg403(_ref) {
25
- var className = _ref.className;
25
+ var className = _ref.className,
26
+ title = _ref.title;
26
27
  return /*#__PURE__*/React__default["default"].createElement("svg", {
27
28
  xmlns: "http://www.w3.org/2000/svg",
28
29
  xmlnsXlink: "http://www.w3.org/1999/xlink",
29
30
  viewBox: "0 0 1584 916",
30
31
  className: className,
31
- preserveAspectRatio: "xMinYMax meet"
32
+ preserveAspectRatio: "xMinYMax meet",
33
+ "aria-label": title
32
34
  }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", {
33
35
  id: "prefix__clip-path"
34
36
  }, /*#__PURE__*/React__default["default"].createElement("path", {
@@ -1247,7 +1249,8 @@ var HTTPErrorSvg403 = function HTTPErrorSvg403(_ref) {
1247
1249
  // in alphabetical order (for consistency).
1248
1250
  // See https://www.npmjs.com/package/prop-types#usage.
1249
1251
  HTTPErrorSvg403.propTypes = {
1250
- className: index.propTypesExports.string
1252
+ className: index.propTypesExports.string,
1253
+ title: index.propTypesExports.string
1251
1254
  };
1252
1255
 
1253
1256
  exports.HTTPErrorSvg403 = HTTPErrorSvg403;
@@ -1,9 +1,11 @@
1
- export function HTTPErrorSvg404({ className }: {
1
+ export function HTTPErrorSvg404({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace HTTPErrorSvg404 {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -22,13 +22,15 @@ var _linearGradient, _linearGradient2, _linearGradient3, _g, _path, _g2, _image,
22
22
  // The block part of our conventional BEM class names (blockClass__E--M).
23
23
  var blockClass = "".concat(settings.pkg.prefix, "--http-errors-404");
24
24
  var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
25
- var className = _ref.className;
25
+ var className = _ref.className,
26
+ title = _ref.title;
26
27
  return /*#__PURE__*/React__default["default"].createElement("svg", {
27
28
  xmlns: "http://www.w3.org/2000/svg",
28
29
  xmlnsXlink: "http://www.w3.org/1999/xlink",
29
30
  viewBox: "0 0 1584 916",
30
31
  className: className,
31
- preserveAspectRatio: "xMinYMax meet"
32
+ preserveAspectRatio: "xMinYMax meet",
33
+ "aria-label": title
32
34
  }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", {
33
35
  id: "prefix__clip-path"
34
36
  }, /*#__PURE__*/React__default["default"].createElement("path", {
@@ -1046,7 +1048,8 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
1046
1048
  // in alphabetical order (for consistency).
1047
1049
  // See https://www.npmjs.com/package/prop-types#usage.
1048
1050
  HTTPErrorSvg404.propTypes = {
1049
- className: index.propTypesExports.string
1051
+ className: index.propTypesExports.string,
1052
+ title: index.propTypesExports.string
1050
1053
  };
1051
1054
 
1052
1055
  exports.HTTPErrorSvg404 = HTTPErrorSvg404;
@@ -1,9 +1,11 @@
1
- export function HTTPErrorSvgOther({ className }: {
1
+ export function HTTPErrorSvgOther({ className, title }: {
2
2
  className: any;
3
+ title: any;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export namespace HTTPErrorSvgOther {
5
6
  namespace propTypes {
6
7
  export { string as className };
8
+ export { string as title };
7
9
  }
8
10
  }
9
11
  import { string } from 'prop-types';
@@ -22,13 +22,15 @@ var _linearGradient, _linearGradient2, _linearGradient3, _linearGradient4, _line
22
22
  // The block part of our conventional BEM class names (blockClass__E--M).
23
23
  var blockClass = "".concat(settings.pkg.prefix, "--http-errors-other");
24
24
  var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
25
- var className = _ref.className;
25
+ var className = _ref.className,
26
+ title = _ref.title;
26
27
  return /*#__PURE__*/React__default["default"].createElement("svg", {
27
28
  xmlns: "http://www.w3.org/2000/svg",
28
29
  xmlnsXlink: "http://www.w3.org/1999/xlink",
29
30
  viewBox: "0 0 1584 916",
30
31
  className: className,
31
- preserveAspectRatio: "xMinYMax meet"
32
+ preserveAspectRatio: "xMinYMax meet",
33
+ "aria-label": title
32
34
  }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", {
33
35
  id: "prefix__clip-path"
34
36
  }, /*#__PURE__*/React__default["default"].createElement("path", {
@@ -1097,7 +1099,8 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
1097
1099
  // in alphabetical order (for consistency).
1098
1100
  // See https://www.npmjs.com/package/prop-types#usage.
1099
1101
  HTTPErrorSvgOther.propTypes = {
1100
- className: index.propTypesExports.string
1102
+ className: index.propTypesExports.string,
1103
+ title: index.propTypesExports.string
1101
1104
  };
1102
1105
 
1103
1106
  exports.HTTPErrorSvgOther = HTTPErrorSvgOther;