@allxsmith/bestax-bulma 3.0.1 → 4.0.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/dist/index.cjs.js +7 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/Card.d.ts +1 -1
- package/dist/types/elements/Icon.d.ts +1 -1
- package/dist/types/form/_pickerInternals/useFocusTrap.d.ts +2 -2
- package/package.json +13 -19
|
@@ -65,5 +65,5 @@ type CardWithCompounds = typeof CardComponent & {
|
|
|
65
65
|
declare const CardWithSubComponents: CardWithCompounds;
|
|
66
66
|
export { CardWithSubComponents as Card };
|
|
67
67
|
export declare const __test_exports__: {
|
|
68
|
-
renderFooter: (footer: CardProps["footer"], classPrefix: string | undefined) =>
|
|
68
|
+
renderFooter: (footer: CardProps["footer"], classPrefix: string | undefined) => React.JSX.Element[] | null;
|
|
69
69
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
interface UseFocusTrapOptions {
|
|
3
|
-
initialFocusRef?: React.RefObject<HTMLElement>;
|
|
3
|
+
initialFocusRef?: React.RefObject<HTMLElement | null>;
|
|
4
4
|
restoreFocus?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare function useFocusTrap(containerRef: React.RefObject<HTMLElement>, active: boolean, options?: UseFocusTrapOptions): void;
|
|
6
|
+
export declare function useFocusTrap(containerRef: React.RefObject<HTMLElement | null>, active: boolean, options?: UseFocusTrapOptions): void;
|
|
7
7
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allxsmith/bestax-bulma",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "A fully-typed React component library for the Bulma CSS framework. Build modern UIs quickly with reusable, accessible, and customizable Bulma-based React components.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"test:watch": "jest --watch",
|
|
24
24
|
"test:coverage": "jest --coverage",
|
|
25
25
|
"bundle:stats": "rollup -c --configPlugin visualizer",
|
|
26
|
-
"lint": "eslint src
|
|
26
|
+
"lint": "eslint src",
|
|
27
27
|
"typecheck": "tsc --noEmit",
|
|
28
28
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
29
29
|
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
@@ -34,9 +34,10 @@
|
|
|
34
34
|
"release": "npx semantic-release"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@faker-js/faker": "^
|
|
37
|
+
"@faker-js/faker": "^10.5.0",
|
|
38
|
+
"@fortawesome/fontawesome-free": "^7.2.0",
|
|
38
39
|
"@mdi/font": "^7.4.47",
|
|
39
|
-
"@rollup/plugin-commonjs": "^
|
|
40
|
+
"@rollup/plugin-commonjs": "^29.0.3",
|
|
40
41
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
41
42
|
"@rollup/plugin-typescript": "^12.1.0",
|
|
42
43
|
"@storybook/addon-docs": "^10.1.11",
|
|
@@ -45,17 +46,15 @@
|
|
|
45
46
|
"@testing-library/jest-dom": "^6.5.0",
|
|
46
47
|
"@testing-library/react": "^16.3.1",
|
|
47
48
|
"@testing-library/user-event": "^14.5.2",
|
|
48
|
-
"@types/jest": "^
|
|
49
|
-
"@types/react": "^
|
|
50
|
-
"@types/react-dom": "^
|
|
49
|
+
"@types/jest": "^30.0.0",
|
|
50
|
+
"@types/react": "^19.2.17",
|
|
51
|
+
"@types/react-dom": "^19.2.3",
|
|
51
52
|
"@typescript-eslint/eslint-plugin": "^8.8.1",
|
|
52
53
|
"@typescript-eslint/parser": "^8.8.1",
|
|
53
|
-
"eslint": "^
|
|
54
|
+
"eslint": "^10.5.0",
|
|
54
55
|
"eslint-config-prettier": "^10.1.5",
|
|
55
|
-
"eslint-config-react-hooks": "^1.0.0",
|
|
56
56
|
"eslint-plugin-prettier": "^5.2.1",
|
|
57
|
-
"eslint-plugin-react": "^7.
|
|
58
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
57
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
59
58
|
"eslint-plugin-storybook": "^10.1.11",
|
|
60
59
|
"ionicons": "^8.0.13",
|
|
61
60
|
"jest": "^30.2.0",
|
|
@@ -77,13 +76,13 @@
|
|
|
77
76
|
"bulma": "^1.0.4"
|
|
78
77
|
},
|
|
79
78
|
"peerDependencies": {
|
|
80
|
-
"@fortawesome/fontawesome-free": "^6.7.2",
|
|
79
|
+
"@fortawesome/fontawesome-free": "^6.7.2 || ^7.0.0",
|
|
81
80
|
"@mdi/font": "^7.4.47",
|
|
82
81
|
"ionicons": "^8.0.0",
|
|
83
82
|
"material-icons": "^1.13.10",
|
|
84
83
|
"material-symbols": "^0.34.1",
|
|
85
|
-
"react": "^
|
|
86
|
-
"react-dom": "^
|
|
84
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
85
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
87
86
|
},
|
|
88
87
|
"peerDependenciesMeta": {
|
|
89
88
|
"@fortawesome/fontawesome-free": {
|
|
@@ -200,10 +199,5 @@
|
|
|
200
199
|
},
|
|
201
200
|
"publishConfig": {
|
|
202
201
|
"access": "public"
|
|
203
|
-
},
|
|
204
|
-
"eslintConfig": {
|
|
205
|
-
"extends": [
|
|
206
|
-
"plugin:storybook/recommended"
|
|
207
|
-
]
|
|
208
202
|
}
|
|
209
203
|
}
|