@allxsmith/bestax-bulma 1.0.8 → 1.0.9

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.
Files changed (62) hide show
  1. package/README.md +3 -3
  2. package/package.json +45 -5
  3. package/dist/index.cjs.js +0 -2002
  4. package/dist/index.cjs.js.map +0 -1
  5. package/dist/index.esm.js +0 -1904
  6. package/dist/index.esm.js.map +0 -1
  7. package/dist/types/columns/Column.d.ts +0 -30
  8. package/dist/types/columns/Columns.d.ts +0 -23
  9. package/dist/types/components/Breadcrumb.d.ts +0 -17
  10. package/dist/types/components/Card.d.ts +0 -20
  11. package/dist/types/components/Dropdown.d.ts +0 -30
  12. package/dist/types/components/Menu.d.ts +0 -31
  13. package/dist/types/components/Message.d.ts +0 -13
  14. package/dist/types/components/Modal.d.ts +0 -15
  15. package/dist/types/components/Navbar.d.ts +0 -83
  16. package/dist/types/components/Pagination.d.ts +0 -49
  17. package/dist/types/components/Panel.d.ts +0 -55
  18. package/dist/types/components/Tab.d.ts +0 -30
  19. package/dist/types/components/Tabs.d.ts +0 -30
  20. package/dist/types/elements/Block.d.ts +0 -10
  21. package/dist/types/elements/Box.d.ts +0 -11
  22. package/dist/types/elements/Button.d.ts +0 -28
  23. package/dist/types/elements/Buttons.d.ts +0 -14
  24. package/dist/types/elements/Content.d.ts +0 -12
  25. package/dist/types/elements/Delete.d.ts +0 -14
  26. package/dist/types/elements/Icon.d.ts +0 -17
  27. package/dist/types/elements/IconText.d.ts +0 -18
  28. package/dist/types/elements/Image.d.ts +0 -17
  29. package/dist/types/elements/Notification.d.ts +0 -11
  30. package/dist/types/elements/Progress.d.ts +0 -11
  31. package/dist/types/elements/SubTitle.d.ts +0 -14
  32. package/dist/types/elements/Table.d.ts +0 -13
  33. package/dist/types/elements/Tag.d.ts +0 -18
  34. package/dist/types/elements/Tags.d.ts +0 -9
  35. package/dist/types/elements/Tbody.d.ts +0 -7
  36. package/dist/types/elements/Td.d.ts +0 -10
  37. package/dist/types/elements/Tfoot.d.ts +0 -7
  38. package/dist/types/elements/Th.d.ts +0 -14
  39. package/dist/types/elements/Thead.d.ts +0 -7
  40. package/dist/types/elements/Title.d.ts +0 -15
  41. package/dist/types/elements/Tr.d.ts +0 -10
  42. package/dist/types/form/Checkbox.d.ts +0 -9
  43. package/dist/types/form/Checkboxes.d.ts +0 -8
  44. package/dist/types/form/Control.d.ts +0 -31
  45. package/dist/types/form/Field.d.ts +0 -39
  46. package/dist/types/form/File.d.ts +0 -19
  47. package/dist/types/form/Input.d.ts +0 -16
  48. package/dist/types/form/Radio.d.ts +0 -9
  49. package/dist/types/form/Radios.d.ts +0 -8
  50. package/dist/types/form/Select.d.ts +0 -16
  51. package/dist/types/form/TextArea.d.ts +0 -19
  52. package/dist/types/grid/Cell.d.ts +0 -17
  53. package/dist/types/grid/Grid.d.ts +0 -25
  54. package/dist/types/helpers/classNames.d.ts +0 -2
  55. package/dist/types/helpers/useBulmaClasses.d.ts +0 -64
  56. package/dist/types/index.d.ts +0 -54
  57. package/dist/types/layout/Container.d.ts +0 -17
  58. package/dist/types/layout/Footer.d.ts +0 -12
  59. package/dist/types/layout/Hero.d.ts +0 -41
  60. package/dist/types/layout/Level.d.ts +0 -45
  61. package/dist/types/layout/Media.d.ts +0 -41
  62. package/dist/types/layout/Section.d.ts +0 -13
package/README.md CHANGED
@@ -79,15 +79,15 @@ export default App;
79
79
  - **Supports the latest Bulma v1.x**
80
80
  Other React Bulma libraries are stuck on Bulma 0.9.4 — bestax-bulma is built for the future.
81
81
  - **Super small bundle size**
82
- The published ESM build (dist/index.esm.js) is just over 110kB. Smaller than most other CSS based React frameworks.
83
- - **Super small unpacked size**
84
- Just over 700kB unpacked — smaller than most other Bulma React packages.
82
+ The published ESM/CJS builds (dist/index.esm.js) are just over 81kB. Smaller than most other CSS based React frameworks.
85
83
  - **Zero external dependencies**
86
84
  Clean install, smaller bundle, fewer codeql security issues.
87
85
  - **99% unit test coverage**
88
86
  Rigorously tested for reliability and stability.
89
87
  - **100% TypeScript**
90
88
  Full type safety for you and your team.
89
+ - **100% Bulma Implementation**
90
+ Complete bulma implementation.
91
91
  - **Active developer support**
92
92
  Issues? Questions? PRs? Get fast responses and real improvements.
93
93
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@allxsmith/bestax-bulma",
3
- "version": "1.0.8",
4
- "description": "A React component library with TypeScript",
3
+ "version": "1.0.9",
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",
7
7
  "types": "dist/types/index.d.ts",
@@ -26,7 +26,8 @@
26
26
  "clean": "rimraf dist",
27
27
  "storybook": "storybook dev -p 6006",
28
28
  "start": "storybook dev -p 6006",
29
- "build-storybook": "storybook build"
29
+ "build-storybook": "storybook build",
30
+ "release": "npx semantic-release"
30
31
  },
31
32
  "dependencies": {},
32
33
  "devDependencies": {
@@ -70,11 +71,50 @@
70
71
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
71
72
  },
72
73
  "keywords": [
74
+ "bulma",
75
+ "bulma-react",
76
+ "bulma components",
77
+ "bulma ui",
73
78
  "react",
74
- "components",
79
+ "react components",
80
+ "react bulma",
81
+ "react bulma components",
82
+ "react ui",
75
83
  "typescript",
76
- "ui"
84
+ "component library",
85
+ "ui library",
86
+ "ui kit",
87
+ "design system",
88
+ "frontend",
89
+ "web components",
90
+ "css framework",
91
+ "bootstrap alternative",
92
+ "material alternative",
93
+ "storybook",
94
+ "bestax"
77
95
  ],
96
+ "exports": {
97
+ ".": {
98
+ "import": "./dist/index.esm.js",
99
+ "require": "./dist/index.cjs.js",
100
+ "types": "./dist/types/index.d.ts"
101
+ }
102
+ },
103
+ "funding": {
104
+ "type": "github",
105
+ "url": "https://github.com/sponsors/allxsmith"
106
+ },
107
+ "engines": {
108
+ "node": ">=16",
109
+ "npm": ">=7"
110
+ },
111
+ "typesVersions": {
112
+ "*": {
113
+ "*": [
114
+ "dist/types/*"
115
+ ]
116
+ }
117
+ },
78
118
  "author": "Alex Smith",
79
119
  "license": "MIT",
80
120
  "repository": {