@skirbi/sugar 0.1.13 → 0.1.14

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/Changes CHANGED
@@ -1,5 +1,9 @@
1
1
  Revision history for @skirbi/sugar
2
2
 
3
+ 0.1.14 2026-07-01 19:35:00Z
4
+
5
+ * withConnectedSucu, not withConnectSucu. Typo's are yya (pun intended).
6
+
3
7
  0.1.13 2026-07-01 19:22:49Z
4
8
 
5
9
  * Whoopsy. Succa ta cu un c :) And also export the damn thing. haha.
package/lib/index.mjs CHANGED
@@ -2,7 +2,7 @@
2
2
  //
3
3
  // SPDX-License-Identifier: MIT
4
4
 
5
- const VERSION = "0.1.13";
5
+ const VERSION = "0.1.14";
6
6
 
7
7
  export { HTMLElementSugar } from './htmlelement.mjs';
8
8
  export { HTMLElementSugarInput } from './htmlelement-input.mjs';
@@ -3,7 +3,7 @@
3
3
  // SPDX-License-Identifier: MIT
4
4
 
5
5
  /**
6
- * withConnectSucu
6
+ * withConnectedSucu
7
7
  *
8
8
  * Second-generation connected-lifecycle mixin. Built and tested alongside
9
9
  * withConnectedSugar so existing components can migrate one at a time.
@@ -20,7 +20,7 @@
20
20
 
21
21
  const sucuState = new WeakMap();
22
22
 
23
- export const withConnectSucu = (Base) =>
23
+ export const withConnectedSucu = (Base) =>
24
24
  class extends Base {
25
25
  static morphTriggerSelector = '';
26
26
 
package/package.json CHANGED
@@ -62,5 +62,5 @@
62
62
  "./aliases-register"
63
63
  ],
64
64
  "type": "module",
65
- "version": "0.1.13"
65
+ "version": "0.1.14"
66
66
  }