feat(components): Add reusable message input component, refactor element properties to use accessor, update styles and docs, bump dependencies

This commit is contained in:
2025-12-08 23:03:02 +00:00
parent 5f48ecf7af
commit 7731054f0e
20 changed files with 3956 additions and 4853 deletions

View File

@@ -38,13 +38,13 @@ export class SioConversationSelector extends DeesElement {
`;
@property({ type: Array })
public conversations: IConversation[] = [];
public accessor conversations: IConversation[] = [];
@property({ type: String })
public selectedConversationId: string | null = null;
public accessor selectedConversationId: string | null = null;
@state()
private searchQuery: string = '';
private accessor searchQuery: string = '';
public static styles = [
cssManager.defaultStyles,