@bitrise/bitkit 8.1.0 → 8.4.0
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 +28 -0
- package/lib/cjs/ButtonWithDropdown/ButtonWithDropdown.d.ts +19 -0
- package/lib/cjs/ButtonWithDropdown/ButtonWithDropdown.d.ts.map +1 -0
- package/lib/cjs/ButtonWithDropdown/ButtonWithDropdown.js +39 -0
- package/lib/cjs/ButtonWithDropdown/ButtonWithDropdown.js.map +1 -0
- package/lib/cjs/Dropdown/Dropdown.d.ts +9 -4
- package/lib/cjs/Dropdown/Dropdown.d.ts.map +1 -1
- package/lib/cjs/Dropdown/Dropdown.js +6 -4
- package/lib/cjs/Dropdown/Dropdown.js.map +1 -1
- package/lib/cjs/Dropdown/DropdownMenu.css +18 -0
- package/lib/cjs/Dropdown/DropdownMenuItemGroup.d.ts +8 -0
- package/lib/cjs/Dropdown/DropdownMenuItemGroup.d.ts.map +1 -0
- package/lib/cjs/Dropdown/DropdownMenuItemGroup.js +46 -0
- package/lib/cjs/Dropdown/DropdownMenuItemGroup.js.map +1 -0
- package/lib/cjs/Icon/tsx/IconsGauge.d.ts +4 -0
- package/lib/cjs/Icon/tsx/IconsGauge.d.ts.map +1 -0
- package/lib/cjs/Icon/tsx/IconsGauge.js +25 -0
- package/lib/cjs/Icon/tsx/IconsGauge.js.map +1 -0
- package/lib/cjs/Icon/tsx/index.d.ts +1 -1
- package/lib/cjs/Icon/tsx/index.d.ts.map +1 -1
- package/lib/cjs/Icon/tsx/index.js +3 -0
- package/lib/cjs/Icon/tsx/index.js.map +1 -1
- package/lib/cjs/Toggle/Toggle.js +1 -1
- package/lib/cjs/Toggle/Toggle.js.map +1 -1
- package/lib/cjs/index.d.ts +2 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +4 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/tsconfig.tsbuildinfo +58 -7
- package/lib/esn/ButtonWithDropdown/ButtonWithDropdown.d.ts +19 -0
- package/lib/esn/ButtonWithDropdown/ButtonWithDropdown.d.ts.map +1 -0
- package/lib/esn/ButtonWithDropdown/ButtonWithDropdown.js +12 -0
- package/lib/esn/ButtonWithDropdown/ButtonWithDropdown.js.map +1 -0
- package/lib/esn/Dropdown/Dropdown.d.ts +9 -4
- package/lib/esn/Dropdown/Dropdown.d.ts.map +1 -1
- package/lib/esn/Dropdown/Dropdown.js +3 -1
- package/lib/esn/Dropdown/Dropdown.js.map +1 -1
- package/lib/esn/Dropdown/DropdownMenu.css +18 -0
- package/lib/esn/Dropdown/DropdownMenuItemGroup.d.ts +8 -0
- package/lib/esn/Dropdown/DropdownMenuItemGroup.d.ts.map +1 -0
- package/lib/esn/Dropdown/DropdownMenuItemGroup.js +9 -0
- package/lib/esn/Dropdown/DropdownMenuItemGroup.js.map +1 -0
- package/lib/esn/Icon/tsx/IconsGauge.d.ts +4 -0
- package/lib/esn/Icon/tsx/IconsGauge.d.ts.map +1 -0
- package/lib/esn/Icon/tsx/IconsGauge.js +5 -0
- package/lib/esn/Icon/tsx/IconsGauge.js.map +1 -0
- package/lib/esn/Icon/tsx/index.d.ts +1 -1
- package/lib/esn/Icon/tsx/index.d.ts.map +1 -1
- package/lib/esn/Icon/tsx/index.js +3 -0
- package/lib/esn/Icon/tsx/index.js.map +1 -1
- package/lib/esn/Toggle/Toggle.js +1 -1
- package/lib/esn/Toggle/Toggle.js.map +1 -1
- package/lib/esn/index.d.ts +2 -0
- package/lib/esn/index.d.ts.map +1 -1
- package/lib/esn/index.js +2 -0
- package/lib/esn/index.js.map +1 -1
- package/lib/esn/tsconfig.tsbuildinfo +58 -7
- package/package.json +1 -1
- package/site/components/Documentation/Components/SectionButtons.tsx +37 -0
- package/site/components/Documentation/Components/SectionDropdowns.tsx +71 -0
- package/site/components/Documentation/Documentation.tsx +1 -0
- package/src/ButtonWithDropdown/ButtonWithDropdown.tsx +79 -0
- package/src/Dropdown/Dropdown.tsx +27 -11
- package/src/Dropdown/DropdownMenu.css +18 -0
- package/src/Dropdown/DropdownMenuItemGroup.tsx +22 -0
- package/src/Icon/tsx/IconsGauge.tsx +15 -0
- package/src/Icon/tsx/index.tsx +4 -0
- package/src/Toggle/Toggle.tsx +1 -1
- package/src/index.ts +2 -0
package/src/Toggle/Toggle.tsx
CHANGED
package/src/index.ts
CHANGED
|
@@ -23,6 +23,7 @@ export { default as Base, Props as BaseProps, TypeColors, TypeSizes } from './Ba
|
|
|
23
23
|
export { default as Bounds, Props as BoundsProps } from './Bounds/Bounds';
|
|
24
24
|
export { default as Button, Props as ButtonProps } from './Button/Button';
|
|
25
25
|
export { default as Buttons, Props as ButtonsProps } from './Button/Buttons';
|
|
26
|
+
export { default as ButtonWithDropdown, Props as ButtonWithDropdownProps } from './ButtonWithDropdown/ButtonWithDropdown';
|
|
26
27
|
export { default as Card, Props as CardProps } from './Card/Card';
|
|
27
28
|
export { default as CardButton, Props as CardButtonProps } from './Card/CardButton';
|
|
28
29
|
export { default as CardContent, Props as CardContentProps } from './Card/CardContent';
|
|
@@ -37,6 +38,7 @@ export { default as DropdownButton, Props as DropdownButtonProps } from './Dropd
|
|
|
37
38
|
export { default as DropdownMenus, Props as DropdownMenusProps } from './Dropdown/DropdownMenus';
|
|
38
39
|
export { default as DropdownMenu, Props as DropdownMenuProps } from './Dropdown/DropdownMenu';
|
|
39
40
|
export { default as DropdownMenuItem, Props as DropdownMenuItemProps } from './Dropdown/DropdownMenuItem';
|
|
41
|
+
export { default as DropdownMenuItemGroup, Props as DropdownMenuItemGroupProps } from './Dropdown/DropdownMenuItemGroup';
|
|
40
42
|
export { default as Expand, Props as ExpandProps } from './Expand/Expand';
|
|
41
43
|
export { default as ExternalLink, Props as ExternalLinkProps } from './ExternalLink/ExternalLink';
|
|
42
44
|
export { default as Flex, Props as FlexProps } from './Flex/Flex';
|