@bitrise/bitkit-v2 0.3.186 → 0.3.188

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 (31) hide show
  1. package/dist/components/BitkitDraggableCard/BitkitDraggableCard.d.ts +37 -0
  2. package/dist/components/BitkitDraggableCard/BitkitDraggableCard.js +62 -0
  3. package/dist/components/BitkitDraggableCard/BitkitDraggableCard.js.map +1 -0
  4. package/dist/components/BitkitLabeledData/BitkitLabeledData.d.ts +16 -0
  5. package/dist/components/BitkitLabeledData/BitkitLabeledData.js +112 -0
  6. package/dist/components/BitkitLabeledData/BitkitLabeledData.js.map +1 -0
  7. package/dist/components/BitkitStat/BitkitStat.d.ts +19 -0
  8. package/dist/components/BitkitStat/BitkitStat.js +166 -0
  9. package/dist/components/BitkitStat/BitkitStat.js.map +1 -0
  10. package/dist/components/index.d.ts +3 -0
  11. package/dist/icons/IconDragHandle.d.ts +8 -0
  12. package/dist/icons/IconDragHandle.js +97 -0
  13. package/dist/icons/IconDragHandle.js.map +1 -0
  14. package/dist/icons/index.d.ts +1 -0
  15. package/dist/main.js +5 -1
  16. package/dist/theme/recipes/DefinitionTooltip.recipe.js +4 -3
  17. package/dist/theme/recipes/DefinitionTooltip.recipe.js.map +1 -1
  18. package/dist/theme/slot-recipes/DraggableCard.recipe.d.ts +83 -0
  19. package/dist/theme/slot-recipes/DraggableCard.recipe.js +133 -0
  20. package/dist/theme/slot-recipes/DraggableCard.recipe.js.map +1 -0
  21. package/dist/theme/slot-recipes/ImageCropper.recipe.d.ts +1 -1
  22. package/dist/theme/slot-recipes/LabeledData.recipe.d.ts +38 -0
  23. package/dist/theme/slot-recipes/LabeledData.recipe.js +64 -0
  24. package/dist/theme/slot-recipes/LabeledData.recipe.js.map +1 -0
  25. package/dist/theme/slot-recipes/Stat.recipe.d.ts +44 -0
  26. package/dist/theme/slot-recipes/Stat.recipe.js +73 -0
  27. package/dist/theme/slot-recipes/Stat.recipe.js.map +1 -0
  28. package/dist/theme/slot-recipes/index.d.ts +163 -1
  29. package/dist/theme/slot-recipes/index.js +6 -0
  30. package/dist/theme/slot-recipes/index.js.map +1 -1
  31. package/package.json +2 -2
@@ -541,6 +541,88 @@ declare const slotRecipes: {
541
541
  };
542
542
  };
543
543
  }>;
544
+ draggableCard: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "root" | "handle", {
545
+ isDragging: {
546
+ true: {
547
+ root: {
548
+ borderColor: "border/strong";
549
+ boxShadow: "elevation/lg";
550
+ cursor: "grabbing";
551
+ };
552
+ handle: {
553
+ color: "icon/secondary";
554
+ };
555
+ };
556
+ };
557
+ isDropTarget: {
558
+ true: {
559
+ root: {
560
+ background: "background/secondary";
561
+ borderColor: "border/strong";
562
+ borderStyle: "dashed";
563
+ boxShadow: "none";
564
+ };
565
+ handle: {
566
+ visibility: "hidden";
567
+ };
568
+ content: {
569
+ visibility: "hidden";
570
+ };
571
+ };
572
+ };
573
+ isFullCardDrag: {
574
+ true: {
575
+ root: {
576
+ cursor: "grab";
577
+ _hover: {
578
+ borderColor: "border/regular";
579
+ _active: {
580
+ borderColor: "border/strong";
581
+ };
582
+ };
583
+ _active: {
584
+ borderColor: "border/strong";
585
+ };
586
+ };
587
+ handle: {
588
+ pointerEvents: "none";
589
+ };
590
+ content: {
591
+ paddingInlineStart: number;
592
+ };
593
+ };
594
+ false: {
595
+ root: {
596
+ _hover: {
597
+ borderColor: "border/regular";
598
+ };
599
+ };
600
+ handle: {
601
+ appearance: "none";
602
+ background: "transparent";
603
+ border: "none";
604
+ cursor: "grab";
605
+ focusVisibleRing: "none";
606
+ _focusVisible: {
607
+ boxShadow: "inset 0 0 0 var(--focus-ring-width) var(--focus-ring-color)";
608
+ };
609
+ _hover: {
610
+ background: "background/hover";
611
+ color: "icon/secondary";
612
+ _active: {
613
+ background: "background/active";
614
+ };
615
+ };
616
+ _active: {
617
+ background: "background/active";
618
+ };
619
+ };
620
+ content: {
621
+ paddingInlineStart: "8";
622
+ };
623
+ };
624
+ };
625
+ }>;
544
626
  emptyState: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "title" | "root" | "description" | "indicator", {
545
627
  colorScheme: {
546
628
  white: {
@@ -590,7 +672,7 @@ declare const slotRecipes: {
590
672
  };
591
673
  };
592
674
  }>;
593
- imageCropper: import('@chakra-ui/react').SlotRecipeDefinition<"grid" | "image" | "root" | "viewport" | "selection" | "handle", import('@chakra-ui/react').SlotRecipeVariantRecord<"grid" | "image" | "root" | "viewport" | "selection" | "handle">>;
675
+ imageCropper: import('@chakra-ui/react').SlotRecipeDefinition<"grid" | "image" | "root" | "handle" | "viewport" | "selection", import('@chakra-ui/react').SlotRecipeVariantRecord<"grid" | "image" | "root" | "handle" | "viewport" | "selection">>;
594
676
  inlineLoading: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "root", {
595
677
  size: {
596
678
  sm: {
@@ -940,6 +1022,43 @@ declare const slotRecipes: {
940
1022
  }>;
941
1023
  ribbon: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "root" | "textBlock", import('@chakra-ui/react').SlotRecipeVariantRecord<"content" | "root" | "textBlock">>;
942
1024
  sectionHeading: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "icon" | "root" | "helperText" | "titleBlock" | "contentBlock" | "helperBlock", import('@chakra-ui/react').SlotRecipeVariantRecord<"label" | "icon" | "root" | "helperText" | "titleBlock" | "contentBlock" | "helperBlock">>;
1025
+ labeledData: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "value" | "root" | "limit" | "helpText", {
1026
+ size: {
1027
+ lg: {
1028
+ label: {
1029
+ color: "text/primary";
1030
+ };
1031
+ value: {
1032
+ textStyle: "comp/data/sm";
1033
+ };
1034
+ limit: {
1035
+ textStyle: "body/md/regular";
1036
+ };
1037
+ };
1038
+ '2xl': {
1039
+ label: {
1040
+ color: "text/secondary";
1041
+ };
1042
+ value: {
1043
+ textStyle: "comp/data/md";
1044
+ };
1045
+ limit: {
1046
+ textStyle: "body/xl/regular";
1047
+ };
1048
+ };
1049
+ '3xl': {
1050
+ label: {
1051
+ color: "text/secondary";
1052
+ };
1053
+ value: {
1054
+ textStyle: "comp/data/lg";
1055
+ };
1056
+ limit: {
1057
+ textStyle: "body/2xl/regular";
1058
+ };
1059
+ };
1060
+ };
1061
+ }>;
943
1062
  segmentGroup: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "root" | "item" | "indicator" | "itemText" | "itemControl", {
944
1063
  fullWidth: {
945
1064
  true: {
@@ -1027,6 +1146,49 @@ declare const slotRecipes: {
1027
1146
  };
1028
1147
  };
1029
1148
  }>;
1149
+ stat: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "value" | "root" | "helpText", {
1150
+ size: {
1151
+ lg: {
1152
+ label: {
1153
+ color: "text/primary";
1154
+ };
1155
+ value: {
1156
+ textStyle: "comp/data/sm";
1157
+ };
1158
+ };
1159
+ '2xl': {
1160
+ label: {
1161
+ color: "text/secondary";
1162
+ };
1163
+ value: {
1164
+ textStyle: "comp/data/md";
1165
+ };
1166
+ };
1167
+ '3xl': {
1168
+ label: {
1169
+ color: "text/secondary";
1170
+ };
1171
+ value: {
1172
+ textStyle: "comp/data/lg";
1173
+ };
1174
+ };
1175
+ };
1176
+ variant: {
1177
+ default: {};
1178
+ compact: {
1179
+ root: {
1180
+ display: "inline-flex";
1181
+ alignItems: "flex-end";
1182
+ };
1183
+ value: {
1184
+ textStyle: "body/md/regular";
1185
+ };
1186
+ helpText: {
1187
+ textStyle: "body/sm/regular";
1188
+ };
1189
+ };
1190
+ };
1191
+ }>;
1030
1192
  switch: import('@chakra-ui/react').SlotRecipeDefinition<"label" | "root" | "indicator" | "control" | "thumb", {
1031
1193
  size: {
1032
1194
  sm: {
@@ -13,6 +13,7 @@ import datePickerSlotRecipe from "./DatePicker.recipe.js";
13
13
  import { selectSlotRecipe } from "./Select.recipe.js";
14
14
  import datePickerSelectSlotRecipe from "./DatePickerSelect.recipe.js";
15
15
  import dialogSlotRecipe from "./Dialog.recipe.js";
16
+ import draggableCardSlotRecipe from "./DraggableCard.recipe.js";
16
17
  import emptyStateSlotRecipe from "./EmptyState.recipe.js";
17
18
  import expandableCardSlotRecipe from "./ExpandableCard.recipe.js";
18
19
  import fieldSlotRecipe from "./Field.recipe.js";
@@ -21,6 +22,7 @@ import fileUploadSlotRecipe from "./FileUpload.recipe.js";
21
22
  import groupHeadingRecipe from "./GroupHeading.recipe.js";
22
23
  import imageCropperSlotRecipe from "./ImageCropper.recipe.js";
23
24
  import inlineLoadingRecipe from "./InlineLoading.recipe.js";
25
+ import labeledDataSlotRecipe from "./LabeledData.recipe.js";
24
26
  import listSlotRecipe from "./List.recipe.js";
25
27
  import markdownSlotRecipe from "./Markdown.recipe.js";
26
28
  import markdownCardSlotRecipe from "./MarkdownCard.recipe.js";
@@ -33,6 +35,7 @@ import ribbonSlotRecipe from "./Ribbon.recipe.js";
33
35
  import sectionHeadingRecipe from "./SectionHeading.recipe.js";
34
36
  import segmentGroupSlotRecipe from "./SegmentGroup.recipe.js";
35
37
  import splitButtonSlotRecipe from "./SplitButton.recipe.js";
38
+ import statSlotRecipe from "./Stat.recipe.js";
36
39
  import switchSlotRecipe from "./Switch.recipe.js";
37
40
  import tableSlotRecipe from "./Table.recipe.js";
38
41
  import tabsSlotRecipe from "./Tabs.recipe.js";
@@ -55,6 +58,7 @@ var slotRecipes = {
55
58
  datePicker: datePickerSlotRecipe,
56
59
  datePickerSelect: datePickerSelectSlotRecipe,
57
60
  dialog: dialogSlotRecipe,
61
+ draggableCard: draggableCardSlotRecipe,
58
62
  emptyState: emptyStateSlotRecipe,
59
63
  expandableCard: expandableCardSlotRecipe,
60
64
  field: fieldSlotRecipe,
@@ -74,9 +78,11 @@ var slotRecipes = {
74
78
  radioGroup: radioGroupSlotRecipe,
75
79
  ribbon: ribbonSlotRecipe,
76
80
  sectionHeading: sectionHeadingRecipe,
81
+ labeledData: labeledDataSlotRecipe,
77
82
  segmentGroup: segmentGroupSlotRecipe,
78
83
  select: selectSlotRecipe,
79
84
  splitButton: splitButtonSlotRecipe,
85
+ stat: statSlotRecipe,
80
86
  switch: switchSlotRecipe,
81
87
  table: tableSlotRecipe,
82
88
  tabs: tabsSlotRecipe,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../../lib/theme/slot-recipes/index.ts"],"sourcesContent":["import accordionSlotRecipe from './Accordion.recipe.ts';\nimport actionBarSlotRecipe from './ActionBar.recipe.ts';\nimport alertSlotRecipe from './Alert.recipe.ts';\nimport avatarSlotRecipe from './Avatar.recipe.ts';\nimport breadcrumbSlotRecipe from './Breadcrumb.recipe.ts';\nimport cardSlotRecipe from './Card.recipe';\nimport checkboxSlotRecipe from './Checkbox.recipe';\nimport codeSnippetSlotRecipe from './CodeSnippet.recipe.ts';\nimport collapsibleSlotRecipe from './Collapsible.recipe.ts';\nimport comboboxSlotRecipe from './Combobox.recipe.ts';\nimport datePickerSlotRecipe from './DatePicker.recipe.ts';\nimport datePickerSelectSlotRecipe from './DatePickerSelect.recipe.ts';\nimport dialogSlotRecipe from './Dialog.recipe.ts';\nimport emptyStateSlotRecipe from './EmptyState.recipe';\nimport expandableCardSlotRecipe from './ExpandableCard.recipe.ts';\nimport fieldSlotRecipe from './Field.recipe';\nimport fieldsetSlotRecipe from './Fieldset.recipe.ts';\nimport fileUploadSlotRecipe from './FileUpload.recipe.ts';\nimport groupHeadingSlotRecipe from './GroupHeading.recipe.ts';\nimport imageCropperSlotRecipe from './ImageCropper.recipe.ts';\nimport inlineLoadingSlotRecipe from './InlineLoading.recipe.ts';\nimport listSlotRecipe from './List.recipe.ts';\nimport markdownSlotRecipe from './Markdown.recipe.ts';\nimport markdownCardSlotRecipe from './MarkdownCard.recipe.ts';\nimport menuSlotRecipe from './Menu.recipe.ts';\nimport nativeSelectSlotRecipe from './NativeSelect.recipe.ts';\nimport noteCardSlotRecipe from './NoteCard.recipe.ts';\nimport numberInputSlotRecipe from './NumberInput.recipe';\nimport paginationLoadMoreSlotRecipe from './PaginationLoadMore.recipe.ts';\nimport radioGroupSlotRecipe from './RadioGroup.recipe.ts';\nimport ribbonSlotRecipe from './Ribbon.recipe.ts';\nimport sectionHeadingSlotRecipe from './SectionHeading.recipe.ts';\nimport segmentGroupSlotRecipe from './SegmentGroup.recipe.ts';\nimport { selectSlotRecipe } from './Select.recipe.ts';\nimport splitButtonSlotRecipe from './SplitButton.recipe.ts';\nimport switchSlotRecipe from './Switch.recipe';\nimport tableSlotRecipe from './Table.recipe.ts';\nimport tabsSlotRecipe from './Tabs.recipe';\nimport tagSlotRecipe from './Tag.recipe.ts';\nimport tagsInputSlotRecipe from './TagsInput.recipe.ts';\nimport toastSlotRecipe from './Toast.recipe';\nimport tooltipSlotRecipe from './Tooltip.recipe';\n\nconst slotRecipes = {\n accordion: accordionSlotRecipe,\n actionBar: actionBarSlotRecipe,\n alert: alertSlotRecipe,\n avatar: avatarSlotRecipe,\n breadcrumb: breadcrumbSlotRecipe,\n card: cardSlotRecipe,\n checkbox: checkboxSlotRecipe,\n codeSnippet: codeSnippetSlotRecipe,\n collapsible: collapsibleSlotRecipe,\n combobox: comboboxSlotRecipe,\n datePicker: datePickerSlotRecipe,\n datePickerSelect: datePickerSelectSlotRecipe,\n dialog: dialogSlotRecipe,\n emptyState: emptyStateSlotRecipe,\n expandableCard: expandableCardSlotRecipe,\n field: fieldSlotRecipe,\n groupHeading: groupHeadingSlotRecipe,\n fieldset: fieldsetSlotRecipe,\n fileUpload: fileUploadSlotRecipe,\n imageCropper: imageCropperSlotRecipe,\n inlineLoading: inlineLoadingSlotRecipe,\n list: listSlotRecipe,\n markdown: markdownSlotRecipe,\n markdownCard: markdownCardSlotRecipe,\n menu: menuSlotRecipe,\n noteCard: noteCardSlotRecipe,\n nativeSelect: nativeSelectSlotRecipe,\n numberInput: numberInputSlotRecipe,\n paginationLoadMore: paginationLoadMoreSlotRecipe,\n radioGroup: radioGroupSlotRecipe,\n ribbon: ribbonSlotRecipe,\n sectionHeading: sectionHeadingSlotRecipe,\n segmentGroup: segmentGroupSlotRecipe,\n select: selectSlotRecipe,\n splitButton: splitButtonSlotRecipe,\n switch: switchSlotRecipe,\n table: tableSlotRecipe,\n tabs: tabsSlotRecipe,\n tag: tagSlotRecipe,\n tagsInput: tagsInputSlotRecipe,\n toast: toastSlotRecipe,\n tooltip: tooltipSlotRecipe,\n};\n\nexport default slotRecipes;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CA,IAAM,cAAc;CAClB,WAAW;CACX,WAAW;CACX,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,MAAM;CACN,UAAU;CACV,aAAa;CACb,aAAa;CACb,UAAU;CACV,YAAY;CACZ,kBAAkB;CAClB,QAAQ;CACR,YAAY;CACZ,gBAAgB;CAChB,OAAO;CACP,cAAc;CACd,UAAU;CACV,YAAY;CACZ,cAAc;CACd,eAAe;CACf,MAAM;CACN,UAAU;CACV,cAAc;CACd,MAAM;CACN,UAAU;CACV,cAAc;CACd,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,QAAQ;CACR,gBAAgB;CAChB,cAAc;CACd,QAAQ;CACR,aAAa;CACb,QAAQ;CACR,OAAO;CACP,MAAM;CACN,KAAK;CACL,WAAW;CACX,OAAO;CACP,SAAS;CACV"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../../lib/theme/slot-recipes/index.ts"],"sourcesContent":["import accordionSlotRecipe from './Accordion.recipe.ts';\nimport actionBarSlotRecipe from './ActionBar.recipe.ts';\nimport alertSlotRecipe from './Alert.recipe.ts';\nimport avatarSlotRecipe from './Avatar.recipe.ts';\nimport breadcrumbSlotRecipe from './Breadcrumb.recipe.ts';\nimport cardSlotRecipe from './Card.recipe';\nimport checkboxSlotRecipe from './Checkbox.recipe';\nimport codeSnippetSlotRecipe from './CodeSnippet.recipe.ts';\nimport collapsibleSlotRecipe from './Collapsible.recipe.ts';\nimport comboboxSlotRecipe from './Combobox.recipe.ts';\nimport datePickerSlotRecipe from './DatePicker.recipe.ts';\nimport datePickerSelectSlotRecipe from './DatePickerSelect.recipe.ts';\nimport dialogSlotRecipe from './Dialog.recipe.ts';\nimport draggableCardSlotRecipe from './DraggableCard.recipe.ts';\nimport emptyStateSlotRecipe from './EmptyState.recipe';\nimport expandableCardSlotRecipe from './ExpandableCard.recipe.ts';\nimport fieldSlotRecipe from './Field.recipe';\nimport fieldsetSlotRecipe from './Fieldset.recipe.ts';\nimport fileUploadSlotRecipe from './FileUpload.recipe.ts';\nimport groupHeadingSlotRecipe from './GroupHeading.recipe.ts';\nimport imageCropperSlotRecipe from './ImageCropper.recipe.ts';\nimport inlineLoadingSlotRecipe from './InlineLoading.recipe.ts';\nimport labeledDataSlotRecipe from './LabeledData.recipe.ts';\nimport listSlotRecipe from './List.recipe.ts';\nimport markdownSlotRecipe from './Markdown.recipe.ts';\nimport markdownCardSlotRecipe from './MarkdownCard.recipe.ts';\nimport menuSlotRecipe from './Menu.recipe.ts';\nimport nativeSelectSlotRecipe from './NativeSelect.recipe.ts';\nimport noteCardSlotRecipe from './NoteCard.recipe.ts';\nimport numberInputSlotRecipe from './NumberInput.recipe';\nimport paginationLoadMoreSlotRecipe from './PaginationLoadMore.recipe.ts';\nimport radioGroupSlotRecipe from './RadioGroup.recipe.ts';\nimport ribbonSlotRecipe from './Ribbon.recipe.ts';\nimport sectionHeadingSlotRecipe from './SectionHeading.recipe.ts';\nimport segmentGroupSlotRecipe from './SegmentGroup.recipe.ts';\nimport { selectSlotRecipe } from './Select.recipe.ts';\nimport splitButtonSlotRecipe from './SplitButton.recipe.ts';\nimport statSlotRecipe from './Stat.recipe.ts';\nimport switchSlotRecipe from './Switch.recipe';\nimport tableSlotRecipe from './Table.recipe.ts';\nimport tabsSlotRecipe from './Tabs.recipe';\nimport tagSlotRecipe from './Tag.recipe.ts';\nimport tagsInputSlotRecipe from './TagsInput.recipe.ts';\nimport toastSlotRecipe from './Toast.recipe';\nimport tooltipSlotRecipe from './Tooltip.recipe';\n\nconst slotRecipes = {\n accordion: accordionSlotRecipe,\n actionBar: actionBarSlotRecipe,\n alert: alertSlotRecipe,\n avatar: avatarSlotRecipe,\n breadcrumb: breadcrumbSlotRecipe,\n card: cardSlotRecipe,\n checkbox: checkboxSlotRecipe,\n codeSnippet: codeSnippetSlotRecipe,\n collapsible: collapsibleSlotRecipe,\n combobox: comboboxSlotRecipe,\n datePicker: datePickerSlotRecipe,\n datePickerSelect: datePickerSelectSlotRecipe,\n dialog: dialogSlotRecipe,\n draggableCard: draggableCardSlotRecipe,\n emptyState: emptyStateSlotRecipe,\n expandableCard: expandableCardSlotRecipe,\n field: fieldSlotRecipe,\n groupHeading: groupHeadingSlotRecipe,\n fieldset: fieldsetSlotRecipe,\n fileUpload: fileUploadSlotRecipe,\n imageCropper: imageCropperSlotRecipe,\n inlineLoading: inlineLoadingSlotRecipe,\n list: listSlotRecipe,\n markdown: markdownSlotRecipe,\n markdownCard: markdownCardSlotRecipe,\n menu: menuSlotRecipe,\n noteCard: noteCardSlotRecipe,\n nativeSelect: nativeSelectSlotRecipe,\n numberInput: numberInputSlotRecipe,\n paginationLoadMore: paginationLoadMoreSlotRecipe,\n radioGroup: radioGroupSlotRecipe,\n ribbon: ribbonSlotRecipe,\n sectionHeading: sectionHeadingSlotRecipe,\n labeledData: labeledDataSlotRecipe,\n segmentGroup: segmentGroupSlotRecipe,\n select: selectSlotRecipe,\n splitButton: splitButtonSlotRecipe,\n stat: statSlotRecipe,\n switch: switchSlotRecipe,\n table: tableSlotRecipe,\n tabs: tabsSlotRecipe,\n tag: tagSlotRecipe,\n tagsInput: tagsInputSlotRecipe,\n toast: toastSlotRecipe,\n tooltip: tooltipSlotRecipe,\n};\n\nexport default slotRecipes;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8CA,IAAM,cAAc;CAClB,WAAW;CACX,WAAW;CACX,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,MAAM;CACN,UAAU;CACV,aAAa;CACb,aAAa;CACb,UAAU;CACV,YAAY;CACZ,kBAAkB;CAClB,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,gBAAgB;CAChB,OAAO;CACP,cAAc;CACd,UAAU;CACV,YAAY;CACZ,cAAc;CACd,eAAe;CACf,MAAM;CACN,UAAU;CACV,cAAc;CACd,MAAM;CACN,UAAU;CACV,cAAc;CACd,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,QAAQ;CACR,gBAAgB;CAChB,aAAa;CACb,cAAc;CACd,QAAQ;CACR,aAAa;CACb,MAAM;CACN,QAAQ;CACR,OAAO;CACP,MAAM;CACN,KAAK;CACL,WAAW;CACX,OAAO;CACP,SAAS;CACV"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit-v2",
3
3
  "private": false,
4
- "version": "0.3.186",
4
+ "version": "0.3.188",
5
5
  "description": "Bitrise Design System Components built with Chakra UI V3",
6
6
  "keywords": [
7
7
  "react",
@@ -61,7 +61,7 @@
61
61
  "@figma-export/transform-svg-with-svgo": "^6.4.0",
62
62
  "@google-cloud/storage": "^7.19.0",
63
63
  "@storybook/addon-docs": "10.3.5",
64
- "@storybook/addon-mcp": "^0.5.0",
64
+ "@storybook/addon-mcp": "^0.6.0",
65
65
  "@storybook/react-vite": "10.3.5",
66
66
  "@svgr/plugin-jsx": "^8.1.0",
67
67
  "@types/node": "^25.6.0",