@bitrise/bitkit 10.25.3 → 10.25.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "10.25.3",
4
+ "version": "10.25.4",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -28,7 +28,6 @@
28
28
  "@floating-ui/react-dom-interactions": "^0.8.1",
29
29
  "@popperjs/core": "^2.11.5",
30
30
  "classnames": "^2.3.1",
31
- "clipboard": "^2.0.11",
32
31
  "framer-motion": "^6.5.1",
33
32
  "luxon": "^2.5.0",
34
33
  "react": "^18.2.0",
@@ -66,7 +65,6 @@
66
65
  "@testing-library/react": "^13.3.0",
67
66
  "@testing-library/user-event": "^14.3.0",
68
67
  "@types/cheerio": "^0.22.31",
69
- "@types/clipboard": "^2.0.1",
70
68
  "@types/enzyme": "^3.10.12",
71
69
  "@types/jest": "^28.1.6",
72
70
  "@types/luxon": "^2.4.0",
@@ -109,7 +107,6 @@
109
107
  },
110
108
  "files": [
111
109
  "src",
112
- "icons.ts",
113
110
  "tsconfig.json"
114
111
  ],
115
112
  "publishConfig": {
@@ -1,4 +1,3 @@
1
- export { default as useCopyToClipboard } from './useCopyToClipboard';
2
1
  export { default as useEventListener } from './useEventListener';
3
2
  export { default as useMediaQuery } from './useMediaQuery';
4
3
  export { default as useSyncedStateAndProps } from './useSyncedStateAndProps';
package/src/old.ts CHANGED
@@ -15,15 +15,6 @@ export { default as Base } from './Old/Base/Base';
15
15
  export type { Props as DatePickerProps } from './Old/DatePicker/DatePicker';
16
16
  export { default as DatePicker } from './Old/DatePicker/DatePicker';
17
17
 
18
- export type { Props as DropdownMenuProps } from './Old/Dropdown/DropdownMenu';
19
- export { default as DropdownMenu } from './Old/Dropdown/DropdownMenu';
20
-
21
- export type { Props as DropdownMenuItemProps } from './Old/Dropdown/DropdownMenuItem';
22
- export { default as DropdownMenuItem } from './Old/Dropdown/DropdownMenuItem';
23
-
24
- export type { Props as DropdownMenuItemGroupProps } from './Old/Dropdown/DropdownMenuItemGroup';
25
- export { default as DropdownMenuItemGroup } from './Old/Dropdown/DropdownMenuItemGroup';
26
-
27
18
  export type { Props as FlexProps } from './Old/Flex/Flex';
28
19
  export { default as Flex } from './Old/Flex/Flex';
29
20