@allxsmith/bestax-bulma 1.0.4 → 1.0.6
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/README.md +11 -4
- package/dist/index.cjs.js +357 -2154
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +357 -2154
- package/dist/index.esm.js.map +1 -1
- package/dist/types/columns/Column.d.ts +0 -43
- package/dist/types/columns/Columns.d.ts +0 -32
- package/dist/types/components/Breadcrumb.d.ts +0 -28
- package/dist/types/components/Card.d.ts +0 -24
- package/dist/types/components/Dropdown.d.ts +0 -42
- package/dist/types/components/Menu.d.ts +0 -48
- package/dist/types/components/Message.d.ts +0 -21
- package/dist/types/components/Modal.d.ts +0 -21
- package/dist/types/components/Navbar.d.ts +0 -146
- package/dist/types/components/Pagination.d.ts +0 -68
- package/dist/types/components/Panel.d.ts +0 -81
- package/dist/types/components/Tab.d.ts +0 -49
- package/dist/types/components/Tabs.d.ts +0 -49
- package/dist/types/elements/Block.d.ts +0 -20
- package/dist/types/elements/Box.d.ts +1 -23
- package/dist/types/elements/Button.d.ts +0 -36
- package/dist/types/elements/Buttons.d.ts +0 -22
- package/dist/types/elements/Content.d.ts +0 -21
- package/dist/types/elements/Delete.d.ts +0 -22
- package/dist/types/elements/Icon.d.ts +0 -24
- package/dist/types/elements/IconText.d.ts +0 -27
- package/dist/types/elements/Image.d.ts +0 -27
- package/dist/types/elements/Notification.d.ts +0 -20
- package/dist/types/elements/Progress.d.ts +0 -20
- package/dist/types/elements/SubTitle.d.ts +0 -24
- package/dist/types/elements/Table.d.ts +0 -25
- package/dist/types/elements/Tag.d.ts +0 -28
- package/dist/types/elements/Tags.d.ts +0 -18
- package/dist/types/elements/Tbody.d.ts +0 -19
- package/dist/types/elements/Td.d.ts +0 -23
- package/dist/types/elements/Tfoot.d.ts +0 -19
- package/dist/types/elements/Th.d.ts +0 -25
- package/dist/types/elements/Thead.d.ts +0 -19
- package/dist/types/elements/Title.d.ts +0 -25
- package/dist/types/elements/Tr.d.ts +0 -21
- package/dist/types/form/Checkbox.d.ts +0 -16
- package/dist/types/form/Checkboxes.d.ts +0 -15
- package/dist/types/form/Control.d.ts +0 -30
- package/dist/types/form/Field.d.ts +0 -57
- package/dist/types/form/File.d.ts +0 -26
- package/dist/types/form/Input.d.ts +0 -22
- package/dist/types/form/Radio.d.ts +0 -16
- package/dist/types/form/Radios.d.ts +0 -15
- package/dist/types/form/Select.d.ts +0 -22
- package/dist/types/form/TextArea.d.ts +0 -25
- package/dist/types/grid/Cell.d.ts +0 -26
- package/dist/types/grid/Grid.d.ts +0 -40
- package/dist/types/helpers/classNames.d.ts +0 -14
- package/dist/types/helpers/useBulmaClasses.d.ts +0 -130
- package/dist/types/layout/Container.d.ts +0 -26
- package/dist/types/layout/Footer.d.ts +0 -19
- package/dist/types/layout/Hero.d.ts +0 -57
- package/dist/types/layout/Level.d.ts +0 -59
- package/dist/types/layout/Media.d.ts +0 -55
- package/dist/types/layout/Section.d.ts +0 -21
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -42,12 +42,10 @@ Or add it via CDN in your HTML:
|
|
|
42
42
|
|
|
43
43
|
### 3. (Optional) Add an Icon Library
|
|
44
44
|
|
|
45
|
-
Many components work well with icons. We recommend [Font Awesome](https://fontawesome.com/)
|
|
45
|
+
Many components work well with icons. We recommend [Font Awesome](https://fontawesome.com/):
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
48
|
npm install @fortawesome/fontawesome-free
|
|
49
|
-
# or
|
|
50
|
-
npm install react-icons
|
|
51
49
|
```
|
|
52
50
|
|
|
53
51
|
And then import in your code as needed.
|
|
@@ -80,6 +78,8 @@ export default App;
|
|
|
80
78
|
|
|
81
79
|
- **Supports the latest Bulma v1.x**
|
|
82
80
|
Other React Bulma libraries are stuck on Bulma 0.9.4 — bestax-bulma is built for the future.
|
|
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
83
|
- **Super small unpacked size**
|
|
84
84
|
Just over 700kB unpacked — smaller than most other Bulma React packages.
|
|
85
85
|
- **Zero external dependencies**
|
|
@@ -131,6 +131,13 @@ _Note: We are not affiliated with Bulma or Jeremy Thomas in any way...We’re ju
|
|
|
131
131
|
|
|
132
132
|
---
|
|
133
133
|
|
|
134
|
+
## Attribution
|
|
135
|
+
|
|
136
|
+
- The [Bulma CSS framework](https://bulma.io) is © Jeremy Thomas and licensed under the [MIT License](https://github.com/jgthms/bulma/blob/master/LICENSE).
|
|
137
|
+
- Some example content and documentation in this site is adapted from the Bulma website ([CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)), © Jeremy Thomas.
|
|
138
|
+
|
|
139
|
+
See [Bulma’s license page](https://github.com/jgthms/bulma/blob/main/LICENSE) for more details.
|
|
140
|
+
|
|
134
141
|
## License
|
|
135
142
|
|
|
136
|
-
MIT
|
|
143
|
+
Source code licensed MIT
|