@allxsmith/bestax-bulma 5.6.0 → 5.6.2
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 +77 -46
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +77 -46
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/Navbar.d.ts +1 -0
- package/package.json +7 -2
|
@@ -35,6 +35,7 @@ export interface NavbarItemProps extends Omit<React.AnchorHTMLAttributes<HTMLAnc
|
|
|
35
35
|
textColor?: (typeof validColors)[number] | 'inherit' | 'current';
|
|
36
36
|
bgColor?: (typeof validColors)[number] | 'inherit' | 'current';
|
|
37
37
|
children?: React.ReactNode;
|
|
38
|
+
[key: string]: unknown;
|
|
38
39
|
}
|
|
39
40
|
export declare const NavbarItem: React.FC<NavbarItemProps>;
|
|
40
41
|
export interface NavbarBurgerProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Omit<BulmaClassesProps, 'color' | 'backgroundColor'> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allxsmith/bestax-bulma",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.2",
|
|
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",
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
"storybook": "storybook dev -p 6006",
|
|
32
32
|
"start": "storybook dev -p 6006",
|
|
33
33
|
"build-storybook": "storybook build",
|
|
34
|
-
"release": "npx semantic-release"
|
|
34
|
+
"release": "npx semantic-release",
|
|
35
|
+
"test-storybook": "test-storybook",
|
|
36
|
+
"test-storybook:dark": "STORYBOOK_THEME=dark test-storybook",
|
|
37
|
+
"test-storybook:ci": "node scripts/test-storybook-ci.mjs"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
37
40
|
"@faker-js/faker": "^10.5.0",
|
|
@@ -43,6 +46,7 @@
|
|
|
43
46
|
"@storybook/addon-docs": "^10.1.11",
|
|
44
47
|
"@storybook/addon-onboarding": "^10.1.11",
|
|
45
48
|
"@storybook/react-vite": "^10.1.11",
|
|
49
|
+
"@storybook/test-runner": "^0.24.4",
|
|
46
50
|
"@testing-library/jest-dom": "^6.5.0",
|
|
47
51
|
"@testing-library/react": "^16.3.1",
|
|
48
52
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -61,6 +65,7 @@
|
|
|
61
65
|
"jest-environment-jsdom": "^30.2.0",
|
|
62
66
|
"material-icons": "^1.13.14",
|
|
63
67
|
"material-symbols": "^0.45.2",
|
|
68
|
+
"playwright": "^1.61.1",
|
|
64
69
|
"prettier": "^3.9.4",
|
|
65
70
|
"rimraf": "^6.0.1",
|
|
66
71
|
"rollup": "^4.55.1",
|