@appquality/unguess-design-system 2.10.4 → 2.10.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,39 @@
1
+ # v2.10.7 (Wed May 04 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - feat(card): add Container variant with different border-radius [#49](https://github.com/AppQuality/unguess-design-system/pull/49) ([@cannarocks](https://github.com/cannarocks))
6
+
7
+ #### Authors: 1
8
+
9
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
10
+
11
+ ---
12
+
13
+ # v2.10.6 (Wed May 04 2022)
14
+
15
+ #### ⚠️ Pushed to `master`
16
+
17
+ - feat(palette): add `water` palette ([@cannarocks](https://github.com/cannarocks))
18
+
19
+ #### Authors: 1
20
+
21
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
22
+
23
+ ---
24
+
25
+ # v2.10.5 (Wed May 04 2022)
26
+
27
+ #### ⚠️ Pushed to `master`
28
+
29
+ - fix(dropdowns-menu): remove width auto for all dropdowns menu ([@marcbon](https://github.com/marcbon))
30
+
31
+ #### Authors: 1
32
+
33
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
34
+
35
+ ---
36
+
1
37
  # v2.10.4 (Tue May 03 2022)
2
38
 
3
39
  #### ⚠️ Pushed to `master`
package/build/index.js CHANGED
@@ -102,7 +102,7 @@ var palette = __assign(__assign({}, reactTheming.DEFAULT_THEME.palette), { black
102
102
  talk: "#efc93d",
103
103
  sell: "#c38f00",
104
104
  }, grey: {
105
- "100": "#f8f9f9",
105
+ "100": "#F6F6F8",
106
106
  "200": "#e9ebed",
107
107
  "300": "#d8dcde",
108
108
  "400": "#c2c8cc",
@@ -210,6 +210,13 @@ var palette = __assign(__assign({}, reactTheming.DEFAULT_THEME.palette), { black
210
210
  "600": "#6a27b8",
211
211
  M400: "#b072cc",
212
212
  M600: "#9358b0",
213
+ }, water: {
214
+ 100: "#D4FFF7",
215
+ 200: "#ABEBDF",
216
+ 300: "#6FD1BE",
217
+ 600: "#2B8473",
218
+ 700: "#206E6A",
219
+ 800: "#0C4D5E",
213
220
  } });
214
221
 
215
222
  var hex2rgba = function (hex, alpha) {
@@ -341,13 +348,32 @@ Used for this:
341
348
  **/
342
349
  var SplitButton = function (props) { return (jsxRuntime.jsx(reactButtons.SplitButton, __assign({}, props))); };
343
350
 
351
+ var ContentCard = styled__default["default"](reactNotifications.Well)(templateObject_1$R || (templateObject_1$R = __makeTemplateObject(["\n border-radius: ", ";\n padding: ", ";\n border: 1px solid ", ";\n ", "\n"], ["\n border-radius: ", ";\n padding: ", ";\n border: 1px solid ", ";\n ", "\n"])), function (_a) {
352
+ var theme = _a.theme;
353
+ return theme.borderRadii.lg;
354
+ }, function (_a) {
355
+ var theme = _a.theme;
356
+ return theme.components.notification.card.padding;
357
+ }, function (_a) {
358
+ var theme = _a.theme;
359
+ return theme.palette.grey["200"];
360
+ }, function (_a) {
361
+ var isFloating = _a.isFloating, theme = _a.theme;
362
+ return !isFloating &&
363
+ "\n &:hover {\n box-shadow: ".concat(theme.shadows.boxShadow(theme), ";\n }");
364
+ });
344
365
  /**
345
366
  * A Card is a container that groups related content.
346
367
  * <hr>
347
368
  * Used for this:
348
369
  - To group related content
349
370
  */
350
- var Card = function (props) { return jsxRuntime.jsx(reactNotifications.Well, __assign({}, props)); };
371
+ var Card = function (props) { return jsxRuntime.jsx(ContentCard, __assign({}, props)); };
372
+ var ContainerCard = styled__default["default"](Card)(templateObject_2$i || (templateObject_2$i = __makeTemplateObject(["\n border-radius: ", ";\n"], ["\n border-radius: ", ";\n"])), function (_a) {
373
+ var theme = _a.theme;
374
+ return theme.borderRadii.xl;
375
+ });
376
+ var templateObject_1$R, templateObject_2$i;
351
377
 
352
378
  /**
353
379
  * Tags let users categorize content using a keyword.
@@ -364,13 +390,13 @@ var Tag = function (props) { return jsxRuntime.jsx(reactTags.Tag, __assign({}, p
364
390
  Tag.Avatar = reactTags.Tag.Avatar;
365
391
  Tag.Close = reactTags.Tag.Close;
366
392
 
367
- var UgLabel$1 = styled__default["default"](reactForms.Label)(templateObject_1$R || (templateObject_1$R = __makeTemplateObject([""], [""])));
393
+ var UgLabel$1 = styled__default["default"](reactForms.Label)(templateObject_1$Q || (templateObject_1$Q = __makeTemplateObject([""], [""])));
368
394
  /**
369
395
  * A Label is used to specify a title for an input.
370
396
  * <hr>
371
397
  **/
372
398
  var Label = function (props) { return jsxRuntime.jsx(UgLabel$1, __assign({}, props)); };
373
- var templateObject_1$R;
399
+ var templateObject_1$Q;
374
400
 
375
401
  var _g$4, _path$p, _path2$7, _path3$6, _path4$4, _path5$3, _path6$3, _path7$3, _path8$3, _path9$3, _path10$3, _path11$2;
376
402
 
@@ -577,7 +603,7 @@ var SvgArrivalStatusRoundIcon = function SvgArrivalStatusRoundIcon(props) {
577
603
  })));
578
604
  };
579
605
 
580
- var UgSkeleton = styled__default["default"](reactLoaders.Skeleton)(templateObject_1$Q || (templateObject_1$Q = __makeTemplateObject(["\n background-color: ", ";\n border-radius: ", ";\n"], ["\n background-color: ", ";\n border-radius: ", ";\n"])), function (props) { return props.theme.palette.grey[500]; }, function (props) { return props.theme.borderRadii.xxl; });
606
+ var UgSkeleton = styled__default["default"](reactLoaders.Skeleton)(templateObject_1$P || (templateObject_1$P = __makeTemplateObject(["\n background-color: ", ";\n border-radius: ", ";\n"], ["\n background-color: ", ";\n border-radius: ", ";\n"])), function (props) { return props.theme.palette.grey[500]; }, function (props) { return props.theme.borderRadii.xxl; });
581
607
  /**
582
608
  * A Skeleton loader shows users a blank version of a page or section of a page into which content is gradually loaded. It provides a visual estimate of the space needed.
583
609
  * <hr>
@@ -592,13 +618,13 @@ var UgSkeleton = styled__default["default"](reactLoaders.Skeleton)(templateObjec
592
618
  - To communicate a typing status, use Inline instead
593
619
  */
594
620
  var Skeleton = function (props) { return jsxRuntime.jsx(UgSkeleton, __assign({}, props)); };
595
- var templateObject_1$Q;
621
+ var templateObject_1$P;
596
622
 
597
623
  var CampaignCardSkeleton = function () {
598
624
  return (jsxRuntime.jsxs(Wrapper$1, { children: [jsxRuntime.jsx(CardHeader, { children: jsxRuntime.jsx(Skeleton, { width: "30%" }) }), jsxRuntime.jsxs(CardBody$1, { children: [jsxRuntime.jsx(Skeleton, { height: "18px", width: "50%" }), jsxRuntime.jsx("br", {}), jsxRuntime.jsx(Skeleton, { height: "26px", style: { backgroundColor: theme.palette.blue[400] } })] }), jsxRuntime.jsx(Divider$1, {}), jsxRuntime.jsxs(CardFooter$1, { children: [jsxRuntime.jsx(Skeleton, { height: "18px", width: "45%" }), " ", jsxRuntime.jsx(Skeleton, { width: "26px", height: "26px", style: { borderRadius: "100%" } })] })] }));
599
625
  };
600
626
 
601
- var flexCenter = styled.css(templateObject_1$P || (templateObject_1$P = __makeTemplateObject(["\n display: flex;\n align-items: center;\n"], ["\n display: flex;\n align-items: center;\n"])));
627
+ var flexCenter = styled.css(templateObject_1$O || (templateObject_1$O = __makeTemplateObject(["\n display: flex;\n align-items: center;\n"], ["\n display: flex;\n align-items: center;\n"])));
602
628
  var flexColumnCenter = styled.css(templateObject_2$h || (templateObject_2$h = __makeTemplateObject(["\n ", ";\n flex-direction: column;\n"], ["\n ", ";\n flex-direction: column;\n"])), flexCenter);
603
629
  var flexStart = styled.css(templateObject_3$c || (templateObject_3$c = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n align-items: ", ";\n"], ["\n display: flex;\n flex-direction: column;\n align-items: ", ";\n"])), function (_a) {
604
630
  var theme = _a.theme;
@@ -617,7 +643,7 @@ var cardStyle = styled.css(templateObject_4$8 || (templateObject_4$8 = __makeTem
617
643
  var theme = _a.theme;
618
644
  return theme.shadows.boxShadow(theme);
619
645
  });
620
- var templateObject_1$P, templateObject_2$h, templateObject_3$c, templateObject_4$8;
646
+ var templateObject_1$O, templateObject_2$h, templateObject_3$c, templateObject_4$8;
621
647
 
622
648
  var getStatusIcon = function (status) {
623
649
  switch (status) {
@@ -641,7 +667,7 @@ var getTypeDataIcon = function (type) {
641
667
  return SvgFunctionalTestRoundIcon;
642
668
  }
643
669
  };
644
- var Wrapper$1 = styled__default["default"](Card)(templateObject_1$O || (templateObject_1$O = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), cardStyle);
670
+ var Wrapper$1 = styled__default["default"](Card)(templateObject_1$N || (templateObject_1$N = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), cardStyle);
645
671
  var StyledTag$1 = styled__default["default"](Tag)(templateObject_2$g || (templateObject_2$g = __makeTemplateObject(["\n color: ", ";\n max-width: 75%;\n cursor: pointer;\n"], ["\n color: ", ";\n max-width: 75%;\n cursor: pointer;\n"])), function (_a) {
646
672
  var theme = _a.theme;
647
673
  return theme.palette.grey["700"];
@@ -703,9 +729,9 @@ var CampaignCard = function (props) {
703
729
  }
704
730
  return props.isLoading ? (jsxRuntime.jsx(CampaignCardSkeleton, {})) : (jsxRuntime.jsxs(Wrapper$1, __assign({}, props, { children: [jsxRuntime.jsxs(CardHeader, { children: [jsxRuntime.jsx(StyledLabel$2, __assign({ isRegular: true }, { children: date })), isNew && (jsxRuntime.jsx(StyledTagNew$1, __assign({ hue: theme.palette.fuschia["600"], isPill: true, size: "medium", title: labelNew ? labelNew : "New!" }, { children: labelNew ? labelNew : "New!" })))] }), jsxRuntime.jsxs(CardBody$1, { children: [jsxRuntime.jsx(StyledLabel$2, __assign({ isRegular: true }, { children: projectTitleCut })), jsxRuntime.jsx(StyledTitleLabel$1, __assign({ isRegular: true }, { children: campaignTitleCut }))] }), jsxRuntime.jsx(Divider$1, {}), jsxRuntime.jsxs(CardFooter$1, { children: [props.pillText && (jsxRuntime.jsxs(StyledTag$1, __assign({ size: "large", isPill: true, isRegular: true, hue: theme.palette.grey[100] }, { children: [jsxRuntime.jsx(Tag.Avatar, { children: jsxRuntime.jsx(PillIcon, {}) }), props.pillText] }))), jsxRuntime.jsx(StatusIcon, {})] })] })));
705
731
  };
706
- var templateObject_1$O, templateObject_2$g, templateObject_3$b, templateObject_4$7, templateObject_5$4, templateObject_6$2, templateObject_7$1, templateObject_8$1, templateObject_9;
732
+ var templateObject_1$N, templateObject_2$g, templateObject_3$b, templateObject_4$7, templateObject_5$4, templateObject_6$2, templateObject_7$1, templateObject_8$1, templateObject_9;
707
733
 
708
- var Wrapper = styled__default["default"](Card)(templateObject_1$N || (templateObject_1$N = __makeTemplateObject(["\n border-radius: ", ";\n padding: ", ";\n border: 1px solid ", ";\n display: flex;\n flex-direction: column;\n\n &:hover {\n box-shadow: ", ";\n }\n"], ["\n border-radius: ", ";\n padding: ", ";\n border: 1px solid ", ";\n display: flex;\n flex-direction: column;\n\n &:hover {\n box-shadow: ", ";\n }\n"])), function (_a) {
734
+ var Wrapper = styled__default["default"](Card)(templateObject_1$M || (templateObject_1$M = __makeTemplateObject(["\n border-radius: ", ";\n padding: ", ";\n border: 1px solid ", ";\n display: flex;\n flex-direction: column;\n\n &:hover {\n box-shadow: ", ";\n }\n"], ["\n border-radius: ", ";\n padding: ", ";\n border: 1px solid ", ";\n display: flex;\n flex-direction: column;\n\n &:hover {\n box-shadow: ", ";\n }\n"])), function (_a) {
709
735
  var theme = _a.theme;
710
736
  return theme.borderRadii.lg;
711
737
  }, function (_a) {
@@ -766,7 +792,7 @@ var ProductCard = function (props) {
766
792
  }
767
793
  return props.isLoading ? (jsxRuntime.jsx(CampaignCardSkeleton, {})) : (jsxRuntime.jsxs(Wrapper, __assign({}, props, { children: [jsxRuntime.jsxs(CardBody, __assign({ onClick: props.onCtaClick }, { children: [isNew && (jsxRuntime.jsx(StyledTagNew, __assign({ hue: theme.palette.fuschia["600"], isPill: true, size: "medium", title: labelNew ? labelNew : "New!" }, { children: labelNew ? labelNew : "New!" }))), props.icon && jsxRuntime.jsx(IconContainer$1, { children: props.icon }), props.preTitle && (jsxRuntime.jsx(StyledLabel$1, __assign({ isRegular: true }, { children: props.preTitle }))), jsxRuntime.jsx(StyledTitleLabel, __assign({ isRegular: true }, { children: productTitleCut }))] })), jsxRuntime.jsx(Divider, {}), jsxRuntime.jsx(CardFooter, { children: jsxRuntime.jsx(Button, __assign({ isPill: true, isPrimary: true, onClick: props.onCtaClick }, { children: props.ctaLabel })) })] })));
768
794
  };
769
- var templateObject_1$N, templateObject_2$f, templateObject_3$a, templateObject_4$6, templateObject_5$3, templateObject_6$1, templateObject_7, templateObject_8;
795
+ var templateObject_1$M, templateObject_2$f, templateObject_3$a, templateObject_4$6, templateObject_5$3, templateObject_6$1, templateObject_7, templateObject_8;
770
796
 
771
797
  /**
772
798
  * Title is a basic component used to display a title. Often used in card headers.
@@ -972,7 +998,7 @@ var SvgCampaignExperiential = function SvgCampaignExperiential(props) {
972
998
  })));
973
999
  };
974
1000
 
975
- var StyledTag = styled__default["default"](Tag)(templateObject_1$M || (templateObject_1$M = __makeTemplateObject(["\n background-color: transparent;\n pointer-events: none;\n font-weight: ", ";\n ", "\n svg {\n margin-right: ", " !important;\n }\n\n span {\n font-weight: ", ";\n margin-left: ", ";\n color: ", ";\n }\n"], ["\n background-color: transparent;\n pointer-events: none;\n font-weight: ", ";\n ", "\n svg {\n margin-right: ", " !important;\n }\n\n span {\n font-weight: ", ";\n margin-left: ", ";\n color: ", ";\n }\n"])), function (_a) {
1001
+ var StyledTag = styled__default["default"](Tag)(templateObject_1$L || (templateObject_1$L = __makeTemplateObject(["\n background-color: transparent;\n pointer-events: none;\n font-weight: ", ";\n ", "\n svg {\n margin-right: ", " !important;\n }\n\n span {\n font-weight: ", ";\n margin-left: ", ";\n color: ", ";\n }\n"], ["\n background-color: transparent;\n pointer-events: none;\n font-weight: ", ";\n ", "\n svg {\n margin-right: ", " !important;\n }\n\n span {\n font-weight: ", ";\n margin-left: ", ";\n color: ", ";\n }\n"])), function (_a) {
976
1002
  var theme = _a.theme;
977
1003
  return theme.fontWeights.regular;
978
1004
  }, function (_a) {
@@ -1008,7 +1034,7 @@ var Counter = function (props) {
1008
1034
  return (jsxRuntime.jsxs(StyledTag, __assign({}, props, { size: props.size || "large" }, { children: [jsxRuntime.jsx(StyledTag.Avatar, { children: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [status === "completed" && jsxRuntime.jsx(SvgCampaignCompleted, {}), status === "progress" && jsxRuntime.jsx(SvgCampaignProgress, {}), status === "incoming" && jsxRuntime.jsx(SvgCampaignIncoming, {}), status === "functional" && jsxRuntime.jsx(SvgCampaignFunctional, {}), status === "experiential" && jsxRuntime.jsx(SvgCampaignExperiential, {})] }) }), props.children, counter !== undefined && jsxRuntime.jsx("span", { children: counter.toString() })] })));
1009
1035
  };
1010
1036
  Counter.Avatar = StyledTag.Avatar;
1011
- var templateObject_1$M;
1037
+ var templateObject_1$L;
1012
1038
 
1013
1039
  /**
1014
1040
  * A Drawer is a container for supplementary content that is anchored to the edge of a page.
@@ -1024,26 +1050,25 @@ Drawer.Footer = reactModals.DrawerModal.Footer;
1024
1050
  Drawer.FooterItem = reactModals.DrawerModal.FooterItem;
1025
1051
  Drawer.Close = reactModals.DrawerModal.Close;
1026
1052
 
1027
- var Field$1 = styled__default["default"](reactDropdowns.Field)(templateObject_1$L || (templateObject_1$L = __makeTemplateObject([""], [""])));
1028
- var templateObject_1$L;
1053
+ var Field$1 = styled__default["default"](reactDropdowns.Field)(templateObject_1$K || (templateObject_1$K = __makeTemplateObject([""], [""])));
1054
+ var templateObject_1$K;
1029
1055
 
1030
1056
  var index$1 = /*#__PURE__*/Object.freeze({
1031
1057
  __proto__: null,
1032
1058
  Field: Field$1
1033
1059
  });
1034
1060
 
1035
- var UgItem = styled__default["default"](reactDropdowns.Item)(templateObject_1$K || (templateObject_1$K = __makeTemplateObject(["\n &[disabled] svg {\n opacity: 0.5;\n }\n &:hover {\n background-color: ", ";\n }\n"], ["\n &[disabled] svg {\n opacity: 0.5;\n }\n &:hover {\n background-color: ", ";\n }\n"])), function (_a) {
1061
+ var UgItem = styled__default["default"](reactDropdowns.Item)(templateObject_1$J || (templateObject_1$J = __makeTemplateObject(["\n &[disabled] svg {\n opacity: 0.5;\n }\n &:hover {\n background-color: ", ";\n }\n"], ["\n &[disabled] svg {\n opacity: 0.5;\n }\n &:hover {\n background-color: ", ";\n }\n"])), function (_a) {
1036
1062
  var theme = _a.theme;
1037
1063
  return theme.palette.blue[100];
1038
1064
  });
1039
1065
  var Item = function (props) { return jsxRuntime.jsx(UgItem, __assign({}, props)); };
1040
- var templateObject_1$K;
1066
+ var templateObject_1$J;
1041
1067
 
1042
- var UgMenu = styled__default["default"](reactDropdowns.Menu)(templateObject_1$J || (templateObject_1$J = __makeTemplateObject(["\n width: auto !important;\n min-width: 100%;\n"], ["\n width: auto !important;\n min-width: 100%;\n"])));
1043
1068
  /**
1044
1069
  * A Menu is a wrapper for items elements
1045
1070
  **/
1046
- var Menu = function (props) { return jsxRuntime.jsx(UgMenu, __assign({}, props)); };
1071
+ var Menu = function (props) { return jsxRuntime.jsx(reactDropdowns.Menu, __assign({}, props)); };
1047
1072
  // Extras
1048
1073
  var PreviousItem = function (props) { return jsxRuntime.jsx(reactDropdowns.PreviousItem, __assign({}, props)); };
1049
1074
  var Separator = function (props) { return jsxRuntime.jsx(reactDropdowns.Separator, __assign({}, props)); };
@@ -1051,8 +1076,7 @@ var NextItem = function (props) { return jsxRuntime.jsx(reactDropdowns.NextItem,
1051
1076
  var ItemMeta = function (props) { return jsxRuntime.jsx(reactDropdowns.ItemMeta, __assign({}, props)); };
1052
1077
  var MediaBody = function (props) { return jsxRuntime.jsx(reactDropdowns.MediaBody, __assign({}, props)); };
1053
1078
  var MediaFigure = function (props) { return jsxRuntime.jsx(reactDropdowns.MediaFigure, __assign({}, props)); };
1054
- var MediaItem = function (props) { return jsxRuntime.jsx(reactDropdowns.MediaItem, __assign({}, props)); };
1055
- var templateObject_1$J;
1079
+ var MediaItem = function (props) { return jsxRuntime.jsx(reactDropdowns.MediaItem, __assign({}, props)); };
1056
1080
 
1057
1081
  /**
1058
1082
  * Multiselect lets users select multiple items from a list. Options are dynamically filtered as a user types in the input field and their selections appear as tags in the input field.
@@ -2387,6 +2411,7 @@ exports.Chrome = Chrome;
2387
2411
  exports.Close = Close;
2388
2412
  exports.Code = Code;
2389
2413
  exports.Col = Col;
2414
+ exports.ContainerCard = ContainerCard;
2390
2415
  exports.Content = Content;
2391
2416
  exports.Counter = Counter;
2392
2417
  exports.CursorPagination = CursorPagination;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { ComponentMeta, Story } from "@storybook/react";
3
+ import { CardProps } from "./_types";
4
+ interface CardStoryProps extends CardProps {
5
+ title: string;
6
+ content: string;
7
+ }
8
+ export declare const Default: Story<CardStoryProps>;
9
+ export declare const Floating: Story<CardStoryProps>;
10
+ declare const _default: ComponentMeta<import("styled-components").StyledComponent<(props: CardProps) => JSX.Element, any, {}, never>>;
11
+ export default _default;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { CardProps } from './_types';
2
+ import { CardProps } from "./_types";
3
3
  /**
4
4
  * A Card is a container that groups related content.
5
5
  * <hr>
@@ -7,4 +7,5 @@ import { CardProps } from './_types';
7
7
  - To group related content
8
8
  */
9
9
  declare const Card: (props: CardProps) => JSX.Element;
10
- export { Card };
10
+ declare const ContainerCard: import("styled-components").StyledComponent<(props: CardProps) => JSX.Element, any, {}, never>;
11
+ export { Card, ContainerCard };
@@ -150,6 +150,14 @@ declare const theme: {
150
150
  M400: string;
151
151
  M600: string;
152
152
  };
153
+ water: {
154
+ 100: string;
155
+ 200: string;
156
+ 300: string;
157
+ 600: string;
158
+ 700: string;
159
+ 800: string;
160
+ };
153
161
  };
154
162
  fonts: {
155
163
  system: string;
@@ -138,4 +138,12 @@ export declare const palette: {
138
138
  M400: string;
139
139
  M600: string;
140
140
  };
141
+ water: {
142
+ 100: string;
143
+ 200: string;
144
+ 300: string;
145
+ 600: string;
146
+ 700: string;
147
+ 800: string;
148
+ };
141
149
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appquality/unguess-design-system",
3
- "version": "2.10.4",
3
+ "version": "2.10.7",
4
4
  "dependencies": {
5
5
  "@zendeskgarden/css-bedrock": "^9.0.0",
6
6
  "@zendeskgarden/react-accordions": "^8.49.0",