From 024efa24052aa05b5c597f9b6811e7995959cf04 Mon Sep 17 00:00:00 2001 From: Jason Buckner Date: Thu, 11 Dec 2025 10:06:08 -0800 Subject: [PATCH 1/2] Add JSDocs for CE manifest --- src/elements/ia-button/ia-button.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/elements/ia-button/ia-button.ts b/src/elements/ia-button/ia-button.ts index 621945d..d57059a 100644 --- a/src/elements/ia-button/ia-button.ts +++ b/src/elements/ia-button/ia-button.ts @@ -3,7 +3,11 @@ import { customElement } from 'lit/decorators/custom-element.js'; /** * A button element to demo the elements library - */ + * + * @slot The content of the button + * + * @cssprop --ia-button-background-color - The background color of the button + */ @customElement('ia-button') export class IAButton extends LitElement { render() { From 24b83b9f2c84eab807b390461a018150c45eaee7 Mon Sep 17 00:00:00 2001 From: Jason Buckner Date: Mon, 26 Jan 2026 15:31:14 -0800 Subject: [PATCH 2/2] Update JSDoc --- src/elements/ia-button/ia-button.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/elements/ia-button/ia-button.ts b/src/elements/ia-button/ia-button.ts index a1f56c0..5ac0470 100644 --- a/src/elements/ia-button/ia-button.ts +++ b/src/elements/ia-button/ia-button.ts @@ -8,7 +8,8 @@ import themeStyles from '@src/themes/theme-styles'; * * @slot The content of the button * - * @cssprop --ia-button-background-color - The background color of the button + * @cssprop --primary-cta-fill - The background color of the button + * @cssprop --primary-cta-text-color - The text color of the button */ @customElement('ia-button') export class IAButton extends LitElement {