@things-factory/integration-sftp 6.0.32 → 6.0.42

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/integration-sftp",
3
- "version": "6.0.32",
3
+ "version": "6.0.42",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -23,13 +23,13 @@
23
23
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
24
24
  },
25
25
  "dependencies": {
26
- "@things-factory/auth-base": "^6.0.32",
27
- "@things-factory/biz-base": "^6.0.32",
28
- "@things-factory/env": "^6.0.32",
29
- "@things-factory/integration-fulfillment": "^6.0.32",
30
- "@things-factory/shell": "^6.0.32",
26
+ "@things-factory/auth-base": "^6.0.34",
27
+ "@things-factory/biz-base": "^6.0.34",
28
+ "@things-factory/env": "^6.0.34",
29
+ "@things-factory/integration-fulfillment": "^6.0.42",
30
+ "@things-factory/shell": "^6.0.34",
31
31
  "aws-sdk": "^2.960.0",
32
32
  "xml-js": "^1.6.11"
33
33
  },
34
- "gitHead": "1b7b1eb2d2e1c0823ec69ee8160790c5da62072c"
34
+ "gitHead": "01c352d388f5c899aa3f662565e8dbb273c51104"
35
35
  }
@@ -1,13 +1 @@
1
- import route from './client/route'
2
- import bootstrap from './client/bootstrap'
3
-
4
- export default {
5
- route,
6
- routes: [
7
- {
8
- tagname: 'integration-sftp-main',
9
- page: 'integration-sftp-main'
10
- }
11
- ],
12
- bootstrap
13
- }
1
+ export default {}
@@ -1 +0,0 @@
1
- export default function bootstrap() {}
@@ -1,25 +0,0 @@
1
- import { html } from 'lit'
2
- import { connect } from 'pwa-helpers/connect-mixin.js'
3
-
4
- import { PageView, store } from '@things-factory/shell'
5
-
6
- class IntegrationSftpMain extends connect(store)(PageView) {
7
- static get properties() {
8
- return {
9
- integrationSftp: String
10
- }
11
- }
12
- render() {
13
- return html`
14
- <section>
15
- <h2>IntegrationSftp</h2>
16
- </section>
17
- `
18
- }
19
-
20
- stateChanged(state) {
21
- this.integrationSftp = state.integrationSftp.state_main
22
- }
23
- }
24
-
25
- window.customElements.define('integration-sftp-main', IntegrationSftpMain)
package/client/route.js DELETED
@@ -1,10 +0,0 @@
1
- export default function route(page) {
2
- switch (page) {
3
- case '':
4
- return '/integration-sftp-main'
5
-
6
- case 'integration-sftp-main':
7
- import('./pages/main')
8
- return page
9
- }
10
- }
@@ -1,59 +0,0 @@
1
- body {
2
- /* theme color */
3
- --primary-color: #22a6a7;
4
- --secondary-color: #394e64;
5
- --focus-color: #fff;
6
- --primary-background-color: var(--secondary-color);
7
- --secondary-background-color: #283644;
8
- --main-section-background-color: #f4f7fb;
9
-
10
- --focus-background-color: var(--primary-color);
11
- --primary-text-color: #111;
12
- --secondary-text-color: #017e7f;
13
-
14
- --opacity-dark-color: rgba(0, 0, 0, 0.4);
15
- --opacity-light-color: rgba(255, 255, 255, 0.8);
16
-
17
- /* status color */
18
- --status-success-color: #35a24a;
19
- --status-warning-color: #ee8d03;
20
- --status-danger-color: #d14946;
21
- --status-info-color: #398ace;
22
-
23
- /* common style */
24
- --border-radius: 4px;
25
- --border-dark-color: 1px solid rgba(0, 0, 0, 0.15);
26
- --border-light-color: 1px solid rgba(255, 255, 255, 0.3);
27
-
28
- --box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
29
-
30
- --theme-font: 'Noto', Helvetica;
31
-
32
- --margin-default: 9px;
33
- --margin-narrow: 4px;
34
- --margin-wide: 15px;
35
-
36
- --scrollbar-thumb-color: rgba(57, 78, 100, 0.5);
37
- --scrollbar-thumb-hover-color: var(--primary-color);
38
-
39
- /* app layout style */
40
- --app-grid-template-area: 'header header header' 'nav main aside' 'nav footer aside';
41
-
42
- /* subtitle style */
43
- --subtitle-padding: 12px 5px 3px 5px;
44
- --subtitle-font: bold 14px/18px var(--theme-font);
45
- --subtitle-text-color: var(--primary-color);
46
- --subtitle-border-bottom: 1px solid var(--primary-color);
47
-
48
- /* icon style */
49
- --icon-tiny-size: 24px;
50
- --icon-default-size: 36px;
51
- --icon-big-size: 48px;
52
- --icon-default-color: #fff;
53
-
54
- /* material design component themes */
55
- --mdc-theme-on-primary: white;
56
- --mdc-theme-primary: var(--primary-color);
57
- --mdc-theme-on-secondary: white;
58
- --mdc-theme-secondary: var(--primary-color);
59
- }