@claspo/common 6.0.12 → 6.0.13

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.
@@ -17,7 +17,6 @@ export interface ComponentManifestI {
17
17
  focusParentOnClick?: boolean;
18
18
  preventDraggable?: boolean;
19
19
  recursiveRemove?: boolean;
20
- canStack?: boolean;
21
20
  i18n?: ComponentManifestTranslationI;
22
21
  children?: ClBaseComponentI[];
23
22
  mappingTypes?: ManifestMappingType[];
@@ -36,6 +35,8 @@ export interface ComponentManifestI {
36
35
  isExternalStartCapable?: boolean;
37
36
  waitForResourcesLoad?: boolean;
38
37
  resourcesPropPaths?: string[][];
38
+ syncEnabled?: boolean;
39
+ stylesImitationEnabled?: boolean;
39
40
  }
40
41
  export declare enum ManifestMappingType {
41
42
  TEXT = "TEXT",
@@ -15,7 +15,6 @@ export interface ClBaseComponentI {
15
15
  focusParentOnClick?: boolean;
16
16
  preventDraggable?: boolean;
17
17
  recursiveRemove?: boolean;
18
- canStack?: boolean;
19
18
  }
20
19
  export declare enum ClComponentType {
21
20
  VIEW = "VIEW",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claspo/common",
3
- "version": "6.0.12",
3
+ "version": "6.0.13",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -24,7 +24,7 @@
24
24
  "build:docs": "rm -rf ./docs && typedoc --options typedoc.md.json && npx concat-md --decrease-title-levels docs > docs/index.md && find docs -name '*.md' ! -name 'index.md' -delete",
25
25
  "minify": "find out -name '*.js' ! -name '*.d.js' -exec terser {} --compress --mangle --output {} \\;",
26
26
  "dev": " tsc --project tsconfig.json --watch",
27
- "package": "npm i && npm run test && npm run build && npm run build:docs && npm run sync:docs && cp package.json README.md LICENSE.md out && cd out && npm publish --access=public && cd ..",
27
+ "package": "npm i && npm run test && npm run build && npm run build:docs && cp package.json README.md LICENSE.md out && cd out && npm publish --access=public && cd ..",
28
28
  "sync:docs": "node ../../scripts/sync-docs.js --package=common"
29
29
  },
30
30
  "dependencies": {
@@ -41,6 +41,7 @@
41
41
  "ts-node": "^10.8.0",
42
42
  "typedoc": "^0.28.0",
43
43
  "typedoc-plugin-markdown": "^4.4.1",
44
+ "typedoc-plugin-no-inherit": "^1.6.1",
44
45
  "typescript": "^5.8.2"
45
46
  },
46
47
  "author": "alex-chernysh",