@bitrise/bitkit-v2 0.3.151 → 0.3.153
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/dist/components/BitkitButton/BitkitButton.d.ts +3 -3
- package/dist/components/BitkitButton/BitkitButton.js +12 -12
- package/dist/components/BitkitCalendar/components/CalendarNextTrigger.js +1 -1
- package/dist/components/BitkitCalendar/components/CalendarPrevTrigger.js +3 -3
- package/dist/components/BitkitDialog/BitkitDialog.d.ts +24 -0
- package/dist/components/BitkitDialog/BitkitDialog.js +50 -0
- package/dist/components/BitkitDialog/BitkitDialogBody.d.ts +9 -0
- package/dist/components/BitkitDialog/BitkitDialogBody.js +53 -0
- package/dist/components/BitkitDialog/BitkitDialogContent.d.ts +11 -0
- package/dist/components/BitkitDialog/BitkitDialogContent.js +29 -0
- package/dist/components/BitkitDialog/BitkitDialogRoot.d.ts +4 -0
- package/dist/components/BitkitDialog/BitkitDialogRoot.js +10 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/main.js +584 -576
- package/dist/theme/recipes/Button.recipe.js +24 -9
- package/dist/theme/recipes/ControlButton.recipe.d.ts +1 -1
- package/dist/theme/recipes/ControlButton.recipe.js +4 -4
- package/dist/theme/recipes/index.d.ts +1 -1
- package/dist/theme/semantic-tokens/semanticColors.js +14 -2
- package/dist/theme/slot-recipes/Dialog.recipe.d.ts +35 -0
- package/dist/theme/slot-recipes/Dialog.recipe.js +171 -0
- package/dist/theme/slot-recipes/NumberInput.recipe.js +1 -1
- package/dist/theme/slot-recipes/index.d.ts +146 -112
- package/dist/theme/slot-recipes/index.js +36 -34
- package/package.json +4 -4
|
@@ -8,48 +8,50 @@ import m from "./Checkbox.recipe.js";
|
|
|
8
8
|
import c from "./Combobox.recipe.js";
|
|
9
9
|
import l from "./DatePicker.recipe.js";
|
|
10
10
|
import a from "./DatePickerSelect.recipe.js";
|
|
11
|
-
import S from "./
|
|
12
|
-
import f from "./
|
|
13
|
-
import R from "./
|
|
14
|
-
import d from "./
|
|
15
|
-
import b from "./
|
|
16
|
-
import n from "./
|
|
17
|
-
import s from "./
|
|
18
|
-
import u from "./
|
|
19
|
-
import x from "./
|
|
11
|
+
import S from "./Dialog.recipe.js";
|
|
12
|
+
import f from "./EmptyState.recipe.js";
|
|
13
|
+
import R from "./ExpandableCard.recipe.js";
|
|
14
|
+
import d from "./Field.recipe.js";
|
|
15
|
+
import b from "./Fieldset.recipe.js";
|
|
16
|
+
import n from "./Menu.recipe.js";
|
|
17
|
+
import s from "./NativeSelect.recipe.js";
|
|
18
|
+
import u from "./NumberInput.recipe.js";
|
|
19
|
+
import x from "./RadioGroup.recipe.js";
|
|
20
|
+
import g from "./SegmentGroup.recipe.js";
|
|
20
21
|
import { selectSlotRecipe as k } from "./Select.recipe.js";
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
const
|
|
22
|
+
import h from "./Switch.recipe.js";
|
|
23
|
+
import v from "./Table.recipe.js";
|
|
24
|
+
import G from "./Tabs.recipe.js";
|
|
25
|
+
import P from "./Tag.recipe.js";
|
|
26
|
+
import w from "./Tooltip.recipe.js";
|
|
27
|
+
const _ = {
|
|
28
|
+
accordion: e,
|
|
27
29
|
actionBar: o,
|
|
30
|
+
alert: t,
|
|
28
31
|
avatar: r,
|
|
29
32
|
breadcrumb: i,
|
|
30
33
|
card: p,
|
|
31
|
-
datePicker: l,
|
|
32
|
-
datePickerSelect: a,
|
|
33
34
|
checkbox: m,
|
|
34
35
|
combobox: c,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
36
|
+
datePicker: l,
|
|
37
|
+
datePickerSelect: a,
|
|
38
|
+
dialog: S,
|
|
39
|
+
emptyState: f,
|
|
40
|
+
expandableCard: R,
|
|
41
|
+
field: d,
|
|
42
|
+
fieldset: b,
|
|
43
|
+
menu: n,
|
|
44
|
+
nativeSelect: s,
|
|
45
|
+
numberInput: u,
|
|
46
|
+
radioGroup: x,
|
|
47
|
+
segmentGroup: g,
|
|
44
48
|
select: k,
|
|
45
|
-
switch:
|
|
46
|
-
table:
|
|
47
|
-
tabs:
|
|
48
|
-
tag:
|
|
49
|
-
tooltip:
|
|
50
|
-
accordion: e,
|
|
51
|
-
menu: b
|
|
49
|
+
switch: h,
|
|
50
|
+
table: v,
|
|
51
|
+
tabs: G,
|
|
52
|
+
tag: P,
|
|
53
|
+
tooltip: w
|
|
52
54
|
};
|
|
53
55
|
export {
|
|
54
|
-
|
|
56
|
+
_ as default
|
|
55
57
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitrise/bitkit-v2",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.153",
|
|
5
5
|
"description": "Bitrise Design System Components built with Chakra UI V3",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"react",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"@figma-export/output-components-as-svg": "^6.4.0",
|
|
61
61
|
"@figma-export/transform-svg-with-svgo": "^6.4.0",
|
|
62
62
|
"@google-cloud/storage": "^7.19.0",
|
|
63
|
-
"@storybook/addon-docs": "10.3.
|
|
64
|
-
"@storybook/react-vite": "10.3.
|
|
63
|
+
"@storybook/addon-docs": "10.3.3",
|
|
64
|
+
"@storybook/react-vite": "10.3.3",
|
|
65
65
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
66
66
|
"@types/node": "^24.12.0",
|
|
67
67
|
"@types/react": "^19.2.14",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react": "^19.2.4",
|
|
73
73
|
"react-dom": "^19.2.4",
|
|
74
74
|
"release-it": "^19.2.4",
|
|
75
|
-
"storybook": "10.3.
|
|
75
|
+
"storybook": "10.3.3",
|
|
76
76
|
"tsx": "^4.21.0",
|
|
77
77
|
"typescript": "^5.9.3",
|
|
78
78
|
"vite": "^7.3.1",
|