not-bulma 1.0.35 → 1.0.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-bulma",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "not-* family UI components on Bulma CSS Framework",
5
5
  "main": "src/index.js",
6
6
  "svelte": "src/index.js",
@@ -174,6 +174,13 @@ class notForm extends notBase {
174
174
  this.emit("reject");
175
175
  }
176
176
 
177
+ //binding event to actual UI
178
+ $on() {
179
+ if (this.#form) {
180
+ this.#form.$on(...arguments);
181
+ }
182
+ }
183
+
177
184
  setLoading() {
178
185
  this.emit("loading");
179
186
  this.#form.setLoading();