@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 +4 -0
- package/lib/index.mjs +1 -1
- package/lib/with-connected-sucu.mjs +2 -2
- package/package.json +1 -1
package/Changes
CHANGED
package/lib/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// SPDX-License-Identifier: MIT
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
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
|
|
23
|
+
export const withConnectedSucu = (Base) =>
|
|
24
24
|
class extends Base {
|
|
25
25
|
static morphTriggerSelector = '';
|
|
26
26
|
|
package/package.json
CHANGED