@things-factory/help 4.0.0-y.0 → 4.0.5
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.
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { html, css } from 'lit-element'
|
|
2
|
-
import { unsafeHTML } from 'lit-html/directives/unsafe-html'
|
|
3
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
4
|
-
import { store, navigate, PageView } from '@things-factory/shell'
|
|
5
|
-
import { i18next, localize } from '@things-factory/i18n-base'
|
|
6
|
-
import Headroom from 'headroom.js'
|
|
7
|
-
|
|
8
1
|
import '@material/mwc-icon-button'
|
|
9
|
-
import { md } from '../controller/markdown'
|
|
10
2
|
|
|
11
|
-
import {
|
|
3
|
+
import { HeadroomStyles, ScrollbarStyles } from '@things-factory/styles'
|
|
4
|
+
import { PageView, navigate, store } from '@things-factory/shell'
|
|
5
|
+
import { css, html } from 'lit-element'
|
|
6
|
+
import { i18next, localize } from '@things-factory/i18n-base'
|
|
7
|
+
|
|
8
|
+
import Headroom from '@operato/headroom'
|
|
12
9
|
import { HelpStyle } from '../help-style'
|
|
10
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
11
|
+
import { md } from '../controller/markdown'
|
|
12
|
+
import { unsafeHTML } from 'lit-html/directives/unsafe-html'
|
|
13
13
|
|
|
14
14
|
class HelpHome extends connect(store)(localize(i18next)(PageView)) {
|
|
15
15
|
static get styles() {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit-element'
|
|
2
|
-
import { unsafeHTML } from 'lit-html/directives/unsafe-html'
|
|
3
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
4
|
-
import { store, navigate } from '@things-factory/shell'
|
|
5
|
-
import { closeOverlay } from '@things-factory/layout-base'
|
|
6
|
-
import { md } from '../controller/markdown'
|
|
7
|
-
import Headroom from 'headroom.js'
|
|
8
|
-
|
|
9
1
|
import '@material/mwc-icon-button'
|
|
10
2
|
|
|
11
|
-
import {
|
|
3
|
+
import { HeadroomStyles, ScrollbarStyles } from '@things-factory/styles'
|
|
4
|
+
import { LitElement, css, html } from 'lit-element'
|
|
5
|
+
import { navigate, store } from '@things-factory/shell'
|
|
6
|
+
|
|
7
|
+
import Headroom from '@operato/headroom'
|
|
12
8
|
import { HelpStyle } from '../help-style'
|
|
9
|
+
import { closeOverlay } from '@things-factory/layout-base'
|
|
10
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
11
|
+
import { md } from '../controller/markdown'
|
|
12
|
+
import { unsafeHTML } from 'lit-html/directives/unsafe-html'
|
|
13
13
|
|
|
14
14
|
class HelpPanel extends connect(store)(LitElement) {
|
|
15
15
|
static get properties() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/help",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -26,9 +26,10 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@material/mwc-icon": "^0.22.1",
|
|
28
28
|
"@material/mwc-icon-button": "^0.22.1",
|
|
29
|
-
"@
|
|
30
|
-
"@things-factory/
|
|
29
|
+
"@operato/headroom": "^0.1.11",
|
|
30
|
+
"@things-factory/grist-ui": "^4.0.5",
|
|
31
|
+
"@things-factory/layout-base": "^4.0.5",
|
|
31
32
|
"marked": "^1.2.3"
|
|
32
33
|
},
|
|
33
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "b7b2976818dceab74a34903499d408eed5d45b04"
|
|
34
35
|
}
|