dev.cds-web
Installation
SKILL.md
CDS Web Package Guidelines
Component Config Adoption (Web)
Use this guidance when adding ComponentConfigProvider defaults for the specific component you are editing.
Required implementation pattern
- Register the component in
packages/web/src/core/componentConfig.tsusing its*BaseProps:
import type { MyComponentBaseProps } from '../category/MyComponent';
export type ComponentConfig = {
MyComponent?: ConfigResolver<MyComponentBaseProps>;
};