@bitrise/bitkit-v2 0.3.152 → 0.3.154
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/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/BitkitLinkButton/BitkitLinkButton.d.ts +9 -0
- package/dist/components/BitkitLinkButton/BitkitLinkButton.js +14 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/main.js +588 -578
- package/dist/theme/recipes/LinkButton.recipe.d.ts +14 -0
- package/dist/theme/recipes/LinkButton.recipe.js +43 -0
- package/dist/theme/recipes/index.d.ts +13 -0
- package/dist/theme/recipes/index.js +12 -10
- 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/index.d.ts +146 -112
- package/dist/theme/slot-recipes/index.js +36 -34
- package/package.json +1 -1
|
@@ -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
|
};
|