halfcab 15.0.3 → 15.0.4
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/halfcab.mjs +4 -4
- package/package.json +1 -1
package/halfcab.mjs
CHANGED
|
@@ -3,6 +3,7 @@ import hrefModule from 'shifty-router/href.js'
|
|
|
3
3
|
import historyModule from 'shifty-router/history.js'
|
|
4
4
|
import createLocation from 'shifty-router/create-location.js'
|
|
5
5
|
import { html as litHtml, render } from 'lit'
|
|
6
|
+
import { unsafeHTML } from 'lit/directives/unsafe-html.js'
|
|
6
7
|
import { render as renderSSR } from '@lit-labs/ssr'
|
|
7
8
|
import { hydrate } from '@lit-labs/ssr-client'
|
|
8
9
|
import axios from 'axios'
|
|
@@ -12,14 +13,12 @@ import marked from 'marked'
|
|
|
12
13
|
import { decode } from 'html-entities'
|
|
13
14
|
import eventEmitter from './eventEmitter/index.mjs'
|
|
14
15
|
import qs from 'qs'
|
|
15
|
-
import * as deepDiff from 'deep-object-diff'
|
|
16
|
-
import clone from 'fast-clone'
|
|
17
16
|
|
|
18
17
|
let cssTag = cssInject
|
|
19
18
|
let componentCSSString = ''
|
|
20
19
|
let routesArray = []
|
|
21
20
|
let externalRoutes = []
|
|
22
|
-
let state = {}
|
|
21
|
+
let state = {}
|
|
23
22
|
let router
|
|
24
23
|
let rootEl
|
|
25
24
|
let components
|
|
@@ -530,5 +529,6 @@ export {
|
|
|
530
529
|
resetTouched,
|
|
531
530
|
nextTick,
|
|
532
531
|
addToHoldingPen,
|
|
533
|
-
removeFromHoldingPen
|
|
532
|
+
removeFromHoldingPen,
|
|
533
|
+
unsafeHTML
|
|
534
534
|
}
|
package/package.json
CHANGED