Skip to content

Commit

Permalink
fix: component doc
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiashader committed Dec 18, 2024
1 parent 8ff107e commit 6b68edc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/core/component-doc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10213,11 +10213,17 @@
"overview": "",
"usage": {},
"docs": "",
"docsTags": [],
"docsTags": [
{
"name": "deprecated",
"text": "since 2.6.1. Will be removed with 3.0.0.\nUse the 'ix-input' component instead"
}
],
"encapsulation": "shadow",
"dependents": [],
"dependencies": [],
"dependencyGraph": {},
"deprecation": "since 2.6.1. Will be removed with 3.0.0.\nUse the 'ix-input' component instead",
"props": [],
"methods": [],
"events": [],
Expand Down
16 changes: 16 additions & 0 deletions packages/core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1610,6 +1610,10 @@ export namespace Components {
*/
"warningText"?: string;
}
/**
* @deprecated since 2.6.1. Will be removed with 3.0.0.
* Use the 'ix-input' component instead
*/
interface IxInputGroup {
}
/**
Expand Down Expand Up @@ -4131,6 +4135,10 @@ declare global {
prototype: HTMLIxInputElement;
new (): HTMLIxInputElement;
};
/**
* @deprecated since 2.6.1. Will be removed with 3.0.0.
* Use the 'ix-input' component instead
*/
interface HTMLIxInputGroupElement extends Components.IxInputGroup, HTMLStencilElement {
}
var HTMLIxInputGroupElement: {
Expand Down Expand Up @@ -6744,6 +6752,10 @@ declare namespace LocalJSX {
*/
"warningText"?: string;
}
/**
* @deprecated since 2.6.1. Will be removed with 3.0.0.
* Use the 'ix-input' component instead
*/
interface IxInputGroup {
}
/**
Expand Down Expand Up @@ -8693,6 +8705,10 @@ declare module "@stencil/core" {
* @form-ready 2.6.0
*/
"ix-input": LocalJSX.IxInput & JSXBase.HTMLAttributes<HTMLIxInputElement>;
/**
* @deprecated since 2.6.1. Will be removed with 3.0.0.
* Use the 'ix-input' component instead
*/
"ix-input-group": LocalJSX.IxInputGroup & JSXBase.HTMLAttributes<HTMLIxInputGroupElement>;
/**
* @since 1.6.0
Expand Down

0 comments on commit 6b68edc

Please sign in to comment.