@things-factory/integration-pos 9.2.5 → 10.0.0-beta.10
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/client/pages/{pos-xilnex.js → pos-xilnex.ts} +1 -4
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -14
- /package/client/{bootstrap.js → bootstrap.ts} +0 -0
- /package/client/{index.js → index.ts} +0 -0
- /package/client/pages/{create-pos-store-popup.js → create-pos-store-popup.ts} +0 -0
- /package/client/pages/{integration-pos.js → integration-pos.ts} +0 -0
- /package/client/{route.js → route.ts} +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { html, css } from 'lit'
|
|
2
2
|
import gql from 'graphql-tag'
|
|
3
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
4
3
|
import { client, store, PageView } from '@things-factory/shell'
|
|
5
4
|
import LOGO from '../../assets/images/xilnex-logo.png'
|
|
6
5
|
|
|
@@ -14,7 +13,7 @@ const MARKETPLACE_STORE_RESULT = `{
|
|
|
14
13
|
status
|
|
15
14
|
}`
|
|
16
15
|
|
|
17
|
-
class PosXilnex extends
|
|
16
|
+
class PosXilnex extends PageView {
|
|
18
17
|
static get styles() {
|
|
19
18
|
return css`
|
|
20
19
|
:host {
|
|
@@ -176,8 +175,6 @@ class PosXilnex extends connect(store)(PageView) {
|
|
|
176
175
|
`
|
|
177
176
|
}
|
|
178
177
|
|
|
179
|
-
stateChanged(state) {}
|
|
180
|
-
|
|
181
178
|
async pageUpdated(changes, after, before) {
|
|
182
179
|
if (changes.resourceId) {
|
|
183
180
|
this.id = changes.resourceId
|