@node-projects/web-component-designer 0.1.121 → 0.1.122
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,7 +2,7 @@ import { PreDefinedElementsService } from "../services/elementsService/PreDefine
|
|
|
2
2
|
import { WebcomponentManifestElementsService } from "../services/elementsService/WebcomponentManifestElementsService.js";
|
|
3
3
|
import { WebcomponentManifestPropertiesService } from "../services/propertiesService/services/WebcomponentManifestPropertiesService.js";
|
|
4
4
|
import { removeLeading, removeTrailing } from "./Helper.js";
|
|
5
|
-
import packageHacks from "./NpmPackageHacks.json"
|
|
5
|
+
import packageHacks from "./NpmPackageHacks.json" with { type: 'json' };
|
|
6
6
|
export class NpmPackageLoader {
|
|
7
7
|
static registryPatchedTohandleErrors;
|
|
8
8
|
//packageSource = '//unpkg.com/';
|
|
@@ -3,7 +3,7 @@ import { RefreshMode } from '../IPropertiesService.js';
|
|
|
3
3
|
import { CommonPropertiesService } from './CommonPropertiesService.js';
|
|
4
4
|
import { ValueType } from '../ValueType.js';
|
|
5
5
|
import { NodeType } from '../../../item/NodeType.js';
|
|
6
|
-
import cssProperties from "./CssProperties.json"
|
|
6
|
+
import cssProperties from "./CssProperties.json" with { type: 'json' };
|
|
7
7
|
import { BindingTarget } from '../../../item/BindingTarget.js';
|
|
8
8
|
const localName = '<local>';
|
|
9
9
|
export class CssCurrentPropertiesService extends CommonPropertiesService {
|
|
@@ -5,7 +5,7 @@ import { RefreshMode } from '../IPropertiesService.js';
|
|
|
5
5
|
import { PropertiesHelper } from './PropertiesHelper.js';
|
|
6
6
|
import { GridAssignedRowColumnPropertyEditor } from '../propertyEditors/special/GridAssignedRowColumnPropertyEditor.js';
|
|
7
7
|
import { MetricsPropertyEditor } from '../propertyEditors/special/MetricsPropertyEditor.js';
|
|
8
|
-
import cssProperties from "./CssProperties.json"
|
|
8
|
+
import cssProperties from "./CssProperties.json" with { type: 'json' };
|
|
9
9
|
export class CssPropertiesService extends CommonPropertiesService {
|
|
10
10
|
getRefreshMode(designItem) {
|
|
11
11
|
return RefreshMode.none;
|
package/package.json
CHANGED