reactive-bulma 1.2.0 → 1.3.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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Button/Button.d.ts +1 -1
- package/dist/cjs/types/components/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Button/Button.d.ts +1 -1
- package/dist/esm/types/components/index.d.ts +1 -1
- package/package.json +34 -10
@@ -1,2 +1,2 @@
|
|
1
|
-
import
|
1
|
+
import '../../node_modules/bulma/css/bulma.min.css';
|
2
2
|
export { default as Button } from './Button';
|
package/dist/esm/index.js
CHANGED
@@ -2838,7 +2838,7 @@ function requireReact_development () {
|
|
2838
2838
|
|
2839
2839
|
var React = /*@__PURE__*/getDefaultExportFromCjs(reactExports);
|
2840
2840
|
|
2841
|
-
const Button = ({ text = '' }) => React.createElement("button", { className:
|
2841
|
+
const Button = ({ text = '' }) => (React.createElement("button", { className: 'button' }, text));
|
2842
2842
|
|
2843
2843
|
export { Button };
|
2844
2844
|
//# sourceMappingURL=index.js.map
|