@node-projects/web-component-designer 0.0.137 → 0.0.138
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.
|
@@ -2,8 +2,14 @@ import { IDesignItem } from "../../item/IDesignItem";
|
|
|
2
2
|
import { IPropertiesService } from "./IPropertiesService";
|
|
3
3
|
import { IPropertyGroupsService } from "./IPropertyGroupsService";
|
|
4
4
|
export declare class PropertyGroupsService implements IPropertyGroupsService {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
protected _pgList: {
|
|
6
|
+
name: string;
|
|
7
|
+
propertiesService: IPropertiesService;
|
|
8
|
+
}[];
|
|
9
|
+
protected _svgPgList: {
|
|
10
|
+
name: string;
|
|
11
|
+
propertiesService: IPropertiesService;
|
|
12
|
+
}[];
|
|
7
13
|
getPropertygroups(designItems: IDesignItem[]): {
|
|
8
14
|
name: string;
|
|
9
15
|
propertiesService: IPropertiesService;
|
|
@@ -198,9 +198,12 @@ export class PointerTool {
|
|
|
198
198
|
this._clonedItems = [];
|
|
199
199
|
for (let d of this._actionStartedDesignItems) {
|
|
200
200
|
const clone = await d.clone();
|
|
201
|
-
this._clonedItems
|
|
201
|
+
if (this._clonedItems)
|
|
202
|
+
this._clonedItems.push(clone);
|
|
202
203
|
}
|
|
203
204
|
}
|
|
205
|
+
if (!this._actionStartedDesignItem)
|
|
206
|
+
return;
|
|
204
207
|
if (event.ctrlKey && !this._copiedItemsInserted) {
|
|
205
208
|
this._copiedItemsInserted = true;
|
|
206
209
|
if (!this._changeGroup)
|
package/dist/index.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ export * from "./elements/services/propertiesService/services/SVGElementsPropert
|
|
|
92
92
|
export * from "./elements/services/propertiesService/services/PolymerPropertiesService.js";
|
|
93
93
|
export * from "./elements/services/propertiesService/services/UnkownElementPropertiesService.js";
|
|
94
94
|
export * from "./elements/services/propertiesService/services/WebcomponentManifestPropertiesService.js";
|
|
95
|
+
export * from "./elements/services/propertiesService/services/AttributesPropertiesService.js";
|
|
95
96
|
export * from "./elements/services/propertiesService/PropertyType.js";
|
|
96
97
|
export * from "./elements/services/propertiesService/ValueType.js";
|
|
97
98
|
export * from "./elements/services/propertiesService/PropertyGroupsService.js";
|
package/dist/index.js
CHANGED
|
@@ -63,6 +63,7 @@ export * from "./elements/services/propertiesService/services/SVGElementsPropert
|
|
|
63
63
|
export * from "./elements/services/propertiesService/services/PolymerPropertiesService.js";
|
|
64
64
|
export * from "./elements/services/propertiesService/services/UnkownElementPropertiesService.js";
|
|
65
65
|
export * from "./elements/services/propertiesService/services/WebcomponentManifestPropertiesService.js";
|
|
66
|
+
export * from "./elements/services/propertiesService/services/AttributesPropertiesService.js";
|
|
66
67
|
export * from "./elements/services/propertiesService/PropertyType.js";
|
|
67
68
|
export * from "./elements/services/propertiesService/ValueType.js";
|
|
68
69
|
export * from "./elements/services/propertiesService/PropertyGroupsService.js";
|