@lcem/meta-schemas
Advanced tools
Comparing version 0.7.4 to 0.8.1
@@ -6,7 +6,4 @@ # Change Log | ||
## [0.7.4](https://github.com/salesforce/low-code-experience-model/compare/v0.7.3...v0.7.4) (2021-10-06) | ||
## [0.8.1](https://github.com/salesforce/uem-js/compare/v0.7.4...v0.8.1) (2021-12-14) | ||
### Features | ||
* makes component key available for components in a slot @W-9959728 ([#89](https://github.com/salesforce/low-code-experience-model/issues/89)) ([2b7b933](https://github.com/salesforce/low-code-experience-model/commit/2b7b93314f2279074cdd5a81af3d8f8836254942)) | ||
**Note:** Version bump only for package @lcem/meta-schemas |
{ | ||
"label": "Person", | ||
"apiVersion": 53.0, | ||
"isExposed": true, | ||
"masterLabel": "Person", | ||
"description": "A card to display information of a person.", | ||
"targets": { | ||
"lightning__record": { | ||
"category": "Unmanaged", | ||
"schema": "./person.shape.json", | ||
"view": "./person.view.json", | ||
"renderers": "./person.renderer.json" | ||
"config": "foo" | ||
} | ||
} | ||
} |
{ | ||
"name": "@lcem/meta-schemas", | ||
"license": "MIT", | ||
"version": "0.7.4", | ||
"version": "0.8.1", | ||
"types": "src/types/index.d.ts", | ||
@@ -6,0 +6,0 @@ "publishConfig": { |
{ | ||
"$id": "https://salesforce.com/54.0/schemas/meta", | ||
"title": "Component Manifest file meta-schema", | ||
"$defs": { | ||
"target": { | ||
"type": "object", | ||
"properties": { | ||
"category": { | ||
"type": "string" | ||
}, | ||
"schema": { | ||
"type": "string" | ||
}, | ||
"renderers": { | ||
"type": "string" | ||
}, | ||
"view": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": ["schema"] | ||
"$id": "https://salesforce.com/54.0/schemas/meta", | ||
"title": "Component Manifest file schema", | ||
"$defs": { | ||
"target": { | ||
"type": "object", | ||
"properties": { | ||
"config": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "number" | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"label": { | ||
"type": "string" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"targets": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/$defs/target" | ||
} | ||
} | ||
"isExposed": { | ||
"type": "boolean" | ||
}, | ||
"masterLabel": { | ||
"type": "string" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"targets": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/$defs/target" | ||
} | ||
} | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"apiVersion" | ||
] | ||
} |
export interface Target { | ||
category: string; | ||
schema: string; | ||
renderers: string; | ||
view: string; | ||
config: string; | ||
} | ||
export interface Meta { | ||
target: Record<string, Target>; | ||
apiVersion: number; | ||
isExposed: boolean; | ||
masterLabel: string; | ||
description: string; | ||
targets: Record<string, Target>; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49187
95
1782