architwin 1.18.6 → 1.19.0
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/bundle/sdk.d.ts +2 -0
- package/lib/architwin.d.ts +6 -1
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/generalSettingsMenuPane.js +14 -0
- package/lib/atwinui/components/toolbar/i18n.js +15 -1
- package/lib/atwinui/components/toolbar/index.d.ts +2 -2
- package/lib/atwinui/components/toolbar/index.js +2 -2
- package/lib/atwinui/components/toolbar/tagFormPane.d.ts +3 -0
- package/lib/atwinui/components/toolbar/tagFormPane.js +122 -96
- package/lib/atwinui/components/toolbar/tagListPane.js +4 -6
- package/lib/atwinui/events.js +65 -4
- package/lib/graphql.d.ts +8 -0
- package/lib/graphql.js +60 -0
- package/lib/tag.d.ts +6 -1
- package/lib/tag.js +10 -1
- package/lib/types.d.ts +41 -1
- package/lib/types.js +2 -0
- package/package.json +1 -1
- package/static/utility.css +3 -0
package/lib/tag.js
CHANGED
|
@@ -125,6 +125,15 @@ function setTagIcon(payload) {
|
|
|
125
125
|
}
|
|
126
126
|
});
|
|
127
127
|
}
|
|
128
|
+
function attachTagMediaById(payload) {
|
|
129
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
130
|
+
if (!payload.attachmentId || payload.attachmentId.length === 0) {
|
|
131
|
+
log.error('__@ No Attachments IDs');
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
134
|
+
yield payload.sdk.Tag.attach(payload.tagId, ...payload.attachmentId);
|
|
135
|
+
});
|
|
136
|
+
}
|
|
128
137
|
function attachTagMedia(payload) {
|
|
129
138
|
return __awaiter(this, void 0, void 0, function* () {
|
|
130
139
|
log.info('__@ attachTagContent()', payload);
|
|
@@ -439,7 +448,7 @@ function toggleTagVisibility(payload) {
|
|
|
439
448
|
navigating: true
|
|
440
449
|
});
|
|
441
450
|
}
|
|
442
|
-
export { renderTag, disposeTag, moveTag, attachTagMedia, detachTagMedia, setTagIcon, editBillboard, editStem, editColor, saveTagDb, deleteTag, getTagColorCodeID, getEmbedlyData, cancelMoveTag, handleTagPlacerCreated, attachSandbox, registerSandbox, toggleTagVisibility };
|
|
451
|
+
export { renderTag, disposeTag, moveTag, attachTagMediaById, attachTagMedia, detachTagMedia, setTagIcon, editBillboard, editStem, editColor, saveTagDb, deleteTag, getTagColorCodeID, getEmbedlyData, cancelMoveTag, handleTagPlacerCreated, attachSandbox, registerSandbox, toggleTagVisibility };
|
|
443
452
|
// # -------------------------------------------------------------------------
|
|
444
453
|
// # tag
|
|
445
454
|
// # -------------------------------------------------------------------------
|
package/lib/types.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ export interface ITag {
|
|
|
34
34
|
iot_tag?: IoTTagDetails;
|
|
35
35
|
created_on?: string;
|
|
36
36
|
notion_page_url: string;
|
|
37
|
+
iconId?: string;
|
|
38
|
+
fontId?: string;
|
|
37
39
|
}
|
|
38
40
|
export interface IoTTagDetails {
|
|
39
41
|
linked_system?: string;
|
|
@@ -71,6 +73,42 @@ export interface IotCategoryType {
|
|
|
71
73
|
iconBase64: string;
|
|
72
74
|
};
|
|
73
75
|
}
|
|
76
|
+
export interface IMattertagVector3 {
|
|
77
|
+
x: number;
|
|
78
|
+
y: number;
|
|
79
|
+
z: number;
|
|
80
|
+
}
|
|
81
|
+
export interface IMattertagFloor {
|
|
82
|
+
id: string;
|
|
83
|
+
}
|
|
84
|
+
export interface IMattertag {
|
|
85
|
+
id: string;
|
|
86
|
+
floor: IMattertagFloor;
|
|
87
|
+
created: string;
|
|
88
|
+
modified: string;
|
|
89
|
+
enabled: boolean;
|
|
90
|
+
color: string;
|
|
91
|
+
icon?: string;
|
|
92
|
+
keywords: string[];
|
|
93
|
+
label: string;
|
|
94
|
+
description: string;
|
|
95
|
+
media?: string | string[];
|
|
96
|
+
mediaType?: string;
|
|
97
|
+
position: IMattertagVector3;
|
|
98
|
+
anchorPosition: IMattertagVector3;
|
|
99
|
+
discPosition: IMattertagVector3;
|
|
100
|
+
stemNormal: IMattertagVector3;
|
|
101
|
+
stemLength: number;
|
|
102
|
+
stemEnabled: boolean;
|
|
103
|
+
stemDirection: IMattertagVector3;
|
|
104
|
+
}
|
|
105
|
+
export interface IMattertagsResponse {
|
|
106
|
+
data: {
|
|
107
|
+
model: {
|
|
108
|
+
mattertags: IMattertag[];
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
}
|
|
74
112
|
export interface ITagColor {
|
|
75
113
|
name: COLOR;
|
|
76
114
|
rgb: {
|
|
@@ -815,7 +853,9 @@ export declare enum SPACE_EVENTS {
|
|
|
815
853
|
DRAW_PIPE_UNDO = "DRAW_PIPE_UNDO",
|
|
816
854
|
DRAW_PIPE_REDO = "DRAW_PIPE_REDO",
|
|
817
855
|
PIPE_VERTEX_REMOVED = "PIPE_VERTEX_REMOVED",
|
|
818
|
-
PATH_UPDATED = "PATH_UPDATED"
|
|
856
|
+
PATH_UPDATED = "PATH_UPDATED",
|
|
857
|
+
IMPORT_MTAGS = "IMPORT_MTAGS",
|
|
858
|
+
PROCEED_IMPORT_MTAGS = "PROCEED_IMPORT_MTAGS"
|
|
819
859
|
}
|
|
820
860
|
export declare const enum TAG_COLOR {
|
|
821
861
|
MAROON = "MAROON",
|
package/lib/types.js
CHANGED
|
@@ -151,6 +151,8 @@ export var SPACE_EVENTS;
|
|
|
151
151
|
SPACE_EVENTS["DRAW_PIPE_REDO"] = "DRAW_PIPE_REDO";
|
|
152
152
|
SPACE_EVENTS["PIPE_VERTEX_REMOVED"] = "PIPE_VERTEX_REMOVED";
|
|
153
153
|
SPACE_EVENTS["PATH_UPDATED"] = "PATH_UPDATED";
|
|
154
|
+
SPACE_EVENTS["IMPORT_MTAGS"] = "IMPORT_MTAGS";
|
|
155
|
+
SPACE_EVENTS["PROCEED_IMPORT_MTAGS"] = "PROCEED_IMPORT_MTAGS";
|
|
154
156
|
})(SPACE_EVENTS || (SPACE_EVENTS = {}));
|
|
155
157
|
export var MEETING_SIDEBAR;
|
|
156
158
|
(function (MEETING_SIDEBAR) {
|
package/package.json
CHANGED