@fmsim/fmsim 1.0.87 → 2.0.0-beta.3
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/Dockerfile +3 -3
- package/_index.html +9 -39
- package/dist-client/apptools/favorite-tool.js +4 -5
- package/dist-client/apptools/favorite-tool.js.map +1 -1
- package/dist-client/board-list/board-tile-list.js +9 -9
- package/dist-client/board-list/board-tile-list.js.map +1 -1
- package/dist-client/board-list/group-bar.js +6 -6
- package/dist-client/board-list/group-bar.js.map +1 -1
- package/dist-client/bootstrap.js +0 -2
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/entries/headless-scene-components.js +7 -0
- package/dist-client/entries/headless-scene-components.js.map +1 -0
- package/dist-client/entries/scene-player.js +83 -0
- package/dist-client/entries/scene-player.js.map +1 -0
- package/dist-client/entries/scene-viewer.js +80 -0
- package/dist-client/entries/scene-viewer.js.map +1 -0
- package/dist-client/entries/things-scene-components.import +1 -0
- package/dist-client/pages/board-list-page.js +2 -3
- package/dist-client/pages/board-list-page.js.map +1 -1
- package/dist-client/themes/index.css +8 -2
- package/dist-client/themes/light.css +51 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/board-info.js +16 -26
- package/dist-client/viewparts/board-info.js.map +1 -1
- package/dist-client/viewparts/group-info.js +15 -25
- package/dist-client/viewparts/group-info.js.map +1 -1
- package/dist-client/viewparts/menu-tools.js +9 -10
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +33 -32
- package/schema.graphql +3309 -384
- package/views/auth-page.html +2 -2
- package/views/internal-board-full-feature-view.html +1 -1
- package/views/internal-board-service-view.html +1 -1
- package/views/public/home.html +2 -2
- package/dist-client/apptools/favorite-tool.d.ts +0 -26
- package/dist-client/board-list/board-tile-list.d.ts +0 -20
- package/dist-client/board-list/group-bar.d.ts +0 -14
- package/dist-client/bootstrap.d.ts +0 -5
- package/dist-client/index.d.ts +0 -0
- package/dist-client/pages/attachment-list-page.d.ts +0 -21
- package/dist-client/pages/board-list-page.d.ts +0 -70
- package/dist-client/pages/connection-list-page.d.ts +0 -30
- package/dist-client/pages/font-list-page.d.ts +0 -10
- package/dist-client/pages/scenario-list-page.d.ts +0 -30
- package/dist-client/pages/toplevel-theme-list-page.d.ts +0 -25
- package/dist-client/route.d.ts +0 -1
- package/dist-client/viewparts/board-info.d.ts +0 -16
- package/dist-client/viewparts/group-info.d.ts +0 -15
- package/dist-client/viewparts/menu-tools.d.ts +0 -20
package/views/auth-page.html
CHANGED
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
|
|
51
51
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
|
52
52
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
53
|
-
<link
|
|
53
|
+
<link href="/fmsim/node_modules/material-symbols/index.css" rel="stylesheet" />
|
|
54
|
+
<link href="/fmsim/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
|
54
55
|
<link rel="stylesheet" href="/fmsim/theme.css" />
|
|
55
56
|
|
|
56
57
|
<style>
|
|
@@ -79,7 +80,6 @@
|
|
|
79
80
|
</noscript>
|
|
80
81
|
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|
|
81
82
|
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
|
|
82
|
-
<script src="/node_modules/web-animations-js/web-animations-next.min.js"></script>
|
|
83
83
|
<!-- Built with love using PWA Starter Kit -->
|
|
84
84
|
|
|
85
85
|
<script src="/fmsim/<%- elementScript %>"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
}
|
|
24
24
|
</style>
|
|
25
25
|
|
|
26
|
-
<link href="/fmsim/node_modules
|
|
26
|
+
<link href="/fmsim/node_modules/material-symbols/index.css" rel="stylesheet" />
|
|
27
27
|
|
|
28
28
|
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
|
29
29
|
|
package/views/public/home.html
CHANGED
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
|
|
51
51
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
|
52
52
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
53
|
-
<link
|
|
53
|
+
<link href="/fmsim/node_modules/material-symbols/index.css" rel="stylesheet" />
|
|
54
|
+
<link href="/fmsim/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
|
54
55
|
<link rel="stylesheet" href="/fmsim/theme.css" />
|
|
55
56
|
|
|
56
57
|
<style>
|
|
@@ -75,7 +76,6 @@
|
|
|
75
76
|
<noscript> Please enable JavaScript to view this website. </noscript>
|
|
76
77
|
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|
|
77
78
|
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
|
|
78
|
-
<script src="/node_modules/web-animations-js/web-animations-next.min.js"></script>
|
|
79
79
|
<!-- Built with love using PWA Starter Kit -->
|
|
80
80
|
|
|
81
81
|
<script src="/fmsim/public/home.js"></script>
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import '@material/mwc-icon';
|
|
2
|
-
import { LitElement } from 'lit';
|
|
3
|
-
declare const FavoriteTool_base: (new (...args: any[]) => {
|
|
4
|
-
_storeUnsubscribe: import("redux").Unsubscribe;
|
|
5
|
-
connectedCallback(): void;
|
|
6
|
-
disconnectedCallback(): void;
|
|
7
|
-
stateChanged(_state: unknown): void;
|
|
8
|
-
readonly isConnected: boolean;
|
|
9
|
-
}) & typeof LitElement;
|
|
10
|
-
export declare class FavoriteTool extends FavoriteTool_base {
|
|
11
|
-
static styles: import("lit").CSSResult;
|
|
12
|
-
favorites?: any[];
|
|
13
|
-
user?: any;
|
|
14
|
-
resourceId?: string;
|
|
15
|
-
favored?: boolean;
|
|
16
|
-
acceptedPages?: any[];
|
|
17
|
-
page: any;
|
|
18
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
19
|
-
updated(changes: any): void;
|
|
20
|
-
stateChanged(state: any): void;
|
|
21
|
-
onClick(event: any): void;
|
|
22
|
-
refreshFavorites(): Promise<void>;
|
|
23
|
-
removeFavorite(boardId: any): Promise<void>;
|
|
24
|
-
addFavorite(boardId: any): Promise<void>;
|
|
25
|
-
}
|
|
26
|
-
export {};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import '@fmsim/board/ox-board-creation-card.js';
|
|
2
|
-
import '@material/mwc-icon';
|
|
3
|
-
import { LitElement } from 'lit';
|
|
4
|
-
import { BoardCreationCard } from '@fmsim/board/ox-board-creation-card.js';
|
|
5
|
-
export default class BoardTileList extends LitElement {
|
|
6
|
-
static styles: import("lit").CSSResult[];
|
|
7
|
-
creatable?: boolean;
|
|
8
|
-
boards?: any[];
|
|
9
|
-
favorites?: any[];
|
|
10
|
-
groups?: any[];
|
|
11
|
-
group?: string;
|
|
12
|
-
creationCard: BoardCreationCard;
|
|
13
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
14
|
-
updated(changes: any): void;
|
|
15
|
-
onCreateBoard(e: any): void;
|
|
16
|
-
infoBoard(boardId: any): void;
|
|
17
|
-
removeFavorite(boardId: any): Promise<void>;
|
|
18
|
-
addFavorite(boardId: any): Promise<void>;
|
|
19
|
-
refreshFavorites(): Promise<void>;
|
|
20
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import '@material/mwc-icon';
|
|
2
|
-
import { LitElement } from 'lit';
|
|
3
|
-
export default class GroupBar extends LitElement {
|
|
4
|
-
static styles: import("lit").CSSResult[];
|
|
5
|
-
groups?: any[];
|
|
6
|
-
groupId?: string;
|
|
7
|
-
targetPage?: string;
|
|
8
|
-
private __sb?;
|
|
9
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
-
infoGroup(groupId?: string): void;
|
|
11
|
-
onWheelEvent(e: any): void;
|
|
12
|
-
updated(change: any): void;
|
|
13
|
-
firstUpdated(): void;
|
|
14
|
-
}
|
package/dist-client/index.d.ts
DELETED
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import '@operato/attachment/ox-attachment-list.js';
|
|
2
|
-
import { PageView } from '@operato/shell';
|
|
3
|
-
import { OxAttachmentList } from '@operato/attachment/ox-attachment-list.js';
|
|
4
|
-
declare const AttachmentListPage_base: (new (...args: any[]) => import("lit").LitElement) & typeof PageView;
|
|
5
|
-
export declare class AttachmentListPage extends AttachmentListPage_base {
|
|
6
|
-
static styles: import("lit").CSSResult[];
|
|
7
|
-
attachmentList: OxAttachmentList;
|
|
8
|
-
get context(): {
|
|
9
|
-
title: string;
|
|
10
|
-
search: {
|
|
11
|
-
handler: (search: any) => void;
|
|
12
|
-
value: string;
|
|
13
|
-
};
|
|
14
|
-
board_topmenu: boolean;
|
|
15
|
-
};
|
|
16
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
17
|
-
get grist(): import("@operato/data-grist").DataGrist;
|
|
18
|
-
languageUpdated(i18next: any): void;
|
|
19
|
-
pageInitialized(): Promise<void>;
|
|
20
|
-
}
|
|
21
|
-
export {};
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import '../board-list/board-tile-list';
|
|
2
|
-
import '../board-list/group-bar';
|
|
3
|
-
import '../viewparts/board-info';
|
|
4
|
-
import '../viewparts/group-info';
|
|
5
|
-
import { PageView } from '@operato/shell';
|
|
6
|
-
import BoardTileList from '../board-list/board-tile-list';
|
|
7
|
-
declare const BoardListPage_base: (new (...args: any[]) => import("lit").LitElement) & (new (...args: any[]) => {
|
|
8
|
-
_storeUnsubscribe: import("redux").Unsubscribe;
|
|
9
|
-
connectedCallback(): void;
|
|
10
|
-
disconnectedCallback(): void;
|
|
11
|
-
stateChanged(_state: unknown): void;
|
|
12
|
-
readonly isConnected: boolean;
|
|
13
|
-
}) & (new (...args: any[]) => {
|
|
14
|
-
_infiniteScrollOptions: {
|
|
15
|
-
threshold: number;
|
|
16
|
-
limit: number;
|
|
17
|
-
totalProp: string;
|
|
18
|
-
pageProp: string;
|
|
19
|
-
};
|
|
20
|
-
onScroll: import("lodash").DebouncedFunc<(e: any) => void>;
|
|
21
|
-
scrollAction(): Promise<void>;
|
|
22
|
-
}) & typeof PageView;
|
|
23
|
-
export declare class BoardListPage extends BoardListPage_base {
|
|
24
|
-
static styles: import("lit").CSSResult[];
|
|
25
|
-
groupId?: string;
|
|
26
|
-
groups?: any[];
|
|
27
|
-
boards?: any[];
|
|
28
|
-
favorites?: any[];
|
|
29
|
-
_page: number;
|
|
30
|
-
_total: number;
|
|
31
|
-
list: BoardTileList;
|
|
32
|
-
_infiniteScrollOptions: any;
|
|
33
|
-
private page?;
|
|
34
|
-
get context(): {
|
|
35
|
-
title: {
|
|
36
|
-
icon: string;
|
|
37
|
-
text: any;
|
|
38
|
-
};
|
|
39
|
-
board_topmenu: boolean;
|
|
40
|
-
};
|
|
41
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
42
|
-
get scrollTargetEl(): BoardTileList;
|
|
43
|
-
refresh(): Promise<void>;
|
|
44
|
-
getBoards({ page, limit }?: {
|
|
45
|
-
page?: number | undefined;
|
|
46
|
-
limit?: any;
|
|
47
|
-
}): Promise<any>;
|
|
48
|
-
getFavoriteBoards({ page, limit }?: {
|
|
49
|
-
page?: number | undefined;
|
|
50
|
-
limit?: any;
|
|
51
|
-
}): Promise<any>;
|
|
52
|
-
refreshBoards(): Promise<void>;
|
|
53
|
-
appendBoards(): Promise<void>;
|
|
54
|
-
scrollAction(): Promise<void>;
|
|
55
|
-
pageInitialized(): Promise<void>;
|
|
56
|
-
pageUpdated(changes: any, lifecycle: any): Promise<void>;
|
|
57
|
-
stateChanged(state: any): void;
|
|
58
|
-
firstUpdated(): void;
|
|
59
|
-
onInfoBoard(boardId: any): Promise<void>;
|
|
60
|
-
onInfoGroup(groupId: any): Promise<void>;
|
|
61
|
-
onCreateGroup(group: any): Promise<void>;
|
|
62
|
-
onUpdateGroup(group: any): Promise<void>;
|
|
63
|
-
onDeleteGroup(group: any): Promise<void>;
|
|
64
|
-
onCreateBoard(board: any): Promise<void>;
|
|
65
|
-
onUpdateBoard(board: any): Promise<void>;
|
|
66
|
-
onDeleteBoard(board: any): Promise<void>;
|
|
67
|
-
refreshFavorites(): Promise<void>;
|
|
68
|
-
_notify(level: any, message?: any, ex?: any): void;
|
|
69
|
-
}
|
|
70
|
-
export {};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Connection } from '@things-factory/integration-ui/dist-client/pages/connection';
|
|
2
|
-
export declare class ConnectionListPage extends Connection {
|
|
3
|
-
get context(): {
|
|
4
|
-
board_topmenu: boolean;
|
|
5
|
-
title: string;
|
|
6
|
-
search: {
|
|
7
|
-
handler: (search: any) => void;
|
|
8
|
-
value: string;
|
|
9
|
-
};
|
|
10
|
-
help: string;
|
|
11
|
-
actions: {
|
|
12
|
-
icon: string;
|
|
13
|
-
emphasis: {
|
|
14
|
-
raised: boolean;
|
|
15
|
-
outlined: boolean;
|
|
16
|
-
dense: boolean;
|
|
17
|
-
danger: boolean;
|
|
18
|
-
};
|
|
19
|
-
title: string;
|
|
20
|
-
action: (name: any) => Promise<void>;
|
|
21
|
-
}[];
|
|
22
|
-
exportable: {
|
|
23
|
-
name: string;
|
|
24
|
-
data: () => Promise<{}[]>;
|
|
25
|
-
};
|
|
26
|
-
importable: {
|
|
27
|
-
handler: (records: any) => Promise<void>;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import '@operato/font';
|
|
2
|
-
import { PageView } from '@operato/shell';
|
|
3
|
-
export declare class FontListPage extends PageView {
|
|
4
|
-
static styles: import("lit").CSSResult[];
|
|
5
|
-
get context(): {
|
|
6
|
-
title: string;
|
|
7
|
-
board_topmenu: boolean;
|
|
8
|
-
};
|
|
9
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Scenario } from '@things-factory/integration-ui/dist-client/pages/scenario';
|
|
2
|
-
export declare class ScenarioListPage extends Scenario {
|
|
3
|
-
get context(): {
|
|
4
|
-
board_topmenu: boolean;
|
|
5
|
-
title: string;
|
|
6
|
-
search: {
|
|
7
|
-
handler: (search: any) => void;
|
|
8
|
-
value: string;
|
|
9
|
-
};
|
|
10
|
-
help: string;
|
|
11
|
-
actions: {
|
|
12
|
-
icon: string;
|
|
13
|
-
emphasis: {
|
|
14
|
-
raised: boolean;
|
|
15
|
-
outlined: boolean;
|
|
16
|
-
dense: boolean;
|
|
17
|
-
danger: boolean;
|
|
18
|
-
};
|
|
19
|
-
title: string;
|
|
20
|
-
action: () => void;
|
|
21
|
-
}[];
|
|
22
|
-
exportable: {
|
|
23
|
-
name: string;
|
|
24
|
-
data: () => Promise<{}[]>;
|
|
25
|
-
};
|
|
26
|
-
importable: {
|
|
27
|
-
handler: (records: any) => Promise<void>;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ThemeListPage } from '@fmsim/layout-view/dist-client/pages/theme/theme-list-page';
|
|
2
|
-
export declare class TopLevelThemeListPage extends ThemeListPage {
|
|
3
|
-
get context(): {
|
|
4
|
-
board_topmenu: boolean;
|
|
5
|
-
title: string;
|
|
6
|
-
search: {
|
|
7
|
-
handler: (search: string) => void;
|
|
8
|
-
value: string;
|
|
9
|
-
};
|
|
10
|
-
filter: {
|
|
11
|
-
handler: () => void;
|
|
12
|
-
};
|
|
13
|
-
actions: {
|
|
14
|
-
icon: string;
|
|
15
|
-
emphasis: {
|
|
16
|
-
raised: boolean;
|
|
17
|
-
outlined: boolean;
|
|
18
|
-
dense: boolean;
|
|
19
|
-
danger: boolean;
|
|
20
|
-
};
|
|
21
|
-
title: string;
|
|
22
|
-
action: () => Promise<void>;
|
|
23
|
-
}[];
|
|
24
|
-
};
|
|
25
|
-
}
|
package/dist-client/route.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function route(page: any): any;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import '@material/mwc-icon';
|
|
2
|
-
import { LitElement } from 'lit';
|
|
3
|
-
export declare class BoardInfo extends LitElement {
|
|
4
|
-
static styles: import("lit").CSSResult[];
|
|
5
|
-
boardId?: string;
|
|
6
|
-
groupId?: string;
|
|
7
|
-
enableModeller?: boolean;
|
|
8
|
-
board: any;
|
|
9
|
-
boardGroupList: any[];
|
|
10
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
11
|
-
firstUpdated(): void;
|
|
12
|
-
refresh(): Promise<void>;
|
|
13
|
-
updateBoard(): Promise<void>;
|
|
14
|
-
deleteBoard(): Promise<void>;
|
|
15
|
-
close(): void;
|
|
16
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import '@material/mwc-icon';
|
|
2
|
-
import { LitElement } from 'lit';
|
|
3
|
-
export declare class GroupInfo extends LitElement {
|
|
4
|
-
static styles: import("lit").CSSResult[];
|
|
5
|
-
groupId?: string;
|
|
6
|
-
group: any;
|
|
7
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
8
|
-
updated(changes: any): void;
|
|
9
|
-
firstUpdated(): void;
|
|
10
|
-
refresh(): Promise<void>;
|
|
11
|
-
createGroup(): Promise<void>;
|
|
12
|
-
updateGroup(): Promise<void>;
|
|
13
|
-
deleteGroup(): Promise<void>;
|
|
14
|
-
close(): void;
|
|
15
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import '@material/mwc-icon';
|
|
2
|
-
import '@operato/i18n/ox-i18n.js';
|
|
3
|
-
import { LitElement } from 'lit';
|
|
4
|
-
declare const MenuTools_base: (new (...args: any[]) => {
|
|
5
|
-
_storeUnsubscribe: import("redux").Unsubscribe;
|
|
6
|
-
connectedCallback(): void;
|
|
7
|
-
disconnectedCallback(): void;
|
|
8
|
-
stateChanged(_state: unknown): void;
|
|
9
|
-
readonly isConnected: boolean;
|
|
10
|
-
}) & typeof LitElement;
|
|
11
|
-
export declare class MenuTools extends MenuTools_base {
|
|
12
|
-
static styles: import("lit").CSSResult[];
|
|
13
|
-
page?: string;
|
|
14
|
-
width?: string;
|
|
15
|
-
editable?: boolean;
|
|
16
|
-
context: any;
|
|
17
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
18
|
-
stateChanged(state: any): void;
|
|
19
|
-
}
|
|
20
|
-
export {};
|