@bitrise/bitkit 13.351.0 → 13.353.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.351.0",
4
+ "version": "13.353.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -38,7 +38,7 @@
38
38
  "chakra-ui-2--theme": "npm:@chakra-ui/theme@3.4.9",
39
39
  "chakra-ui-2--theme-tools": "npm:@chakra-ui/theme-tools@2.2.9",
40
40
  "clsx": "^2.1.1",
41
- "framer-motion": "^12.34.3",
41
+ "framer-motion": "^12.38.0",
42
42
  "luxon": "^3.7.2",
43
43
  "react": "^18.3.1",
44
44
  "react-dom": "^18.3.1",
@@ -52,15 +52,15 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@babel/core": "^7.29.0",
55
- "@babel/preset-env": "^7.29.0",
55
+ "@babel/preset-env": "^7.29.2",
56
56
  "@babel/preset-react": "^7.28.5",
57
57
  "@babel/preset-typescript": "^7.28.5",
58
58
  "@bitrise/eslint-plugin": "^4.1.0",
59
59
  "@google-cloud/storage": "^7.19.0",
60
- "@storybook/addon-docs": "^9.1.19",
61
- "@storybook/addon-links": "^9.1.19",
60
+ "@storybook/addon-docs": "^9.1.20",
61
+ "@storybook/addon-links": "^9.1.20",
62
62
  "@storybook/addon-webpack5-compiler-swc": "^3.0.0",
63
- "@storybook/react-webpack5": "^9.1.19",
63
+ "@storybook/react-webpack5": "^9.1.20",
64
64
  "@testing-library/dom": "^10.4.1",
65
65
  "@testing-library/jest-dom": "6.9.1",
66
66
  "@testing-library/react": "16.3.2",
@@ -69,19 +69,19 @@
69
69
  "@types/luxon": "^3.7.1",
70
70
  "@types/react": "^18.3.28",
71
71
  "@types/react-dom": "^18.3.7",
72
- "axios": "^1.13.5",
72
+ "axios": "^1.15.0",
73
73
  "chakra-ui-2--cli": "npm:@chakra-ui/cli@2.5.8",
74
- "eslint": "^9.39.3",
74
+ "eslint": "^9.39.4",
75
75
  "glob": "^11.1.0",
76
76
  "jest": "^29.7.0",
77
77
  "jest-environment-jsdom": "^29.7.0",
78
78
  "jsdom": "26.1.0",
79
- "lodash": "^4.17.23",
80
- "prettier": "^3.8.1",
81
- "react-hook-form": "^7.71.2",
79
+ "lodash": "^4.18.1",
80
+ "prettier": "^3.8.2",
81
+ "react-hook-form": "^7.72.1",
82
82
  "release-it": "^19.2.4",
83
- "storybook": "^9.1.19",
84
- "ts-jest": "^29.4.6",
83
+ "storybook": "^9.1.20",
84
+ "ts-jest": "^29.4.9",
85
85
  "typescript": "^5.9.3"
86
86
  },
87
87
  "files": [
@@ -17,7 +17,7 @@ interface MultiSelectTableContextType {
17
17
 
18
18
  const MultiSelectTableContext = createContext<MultiSelectTableContextType | undefined>(undefined);
19
19
 
20
- interface MultiSelectTableProviderProps {
20
+ export interface MultiSelectTableProviderProps {
21
21
  children: ReactNode;
22
22
  items: any[];
23
23
  compareItems?: (a: unknown, b: unknown) => boolean;
package/src/index.ts CHANGED
@@ -204,6 +204,10 @@ export type { CheckableRowProps } from './Components/Table/CheckableRow';
204
204
  export { default as CheckableRow } from './Components/Table/CheckableRow';
205
205
  export type { ClickableRowProps } from './Components/Table/ClickableRow';
206
206
  export { default as ClickableRow } from './Components/Table/ClickableRow';
207
+ export type { MultiSelectTableProviderProps } from './Components/Table/MultiSelectTable.context';
208
+ export { MultiSelectTableProvider, useMultiSelectTableContext } from './Components/Table/MultiSelectTable.context';
209
+ export type { CheckableThProps } from './Components/Table/MultiSelectTh';
210
+ export { default as MultiSelectTh } from './Components/Table/MultiSelectTh';
207
211
  export type { SelectableRowProps } from './Components/Table/SelectableRow';
208
212
  export { default as SelectableRow } from './Components/Table/SelectableRow';
209
213
  export type { TableProps } from './Components/Table/Table';