Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 673af0e39c | |||
| dc8774718d |
@@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-12-18 - 1.6.1 - fix(sio-combox)
|
||||||
|
tweak dropdown shadow and bind close event on conversation selector
|
||||||
|
|
||||||
|
- Replaced unsafeCSS(shadows.xl) with explicit box-shadow values for the combox dropdown to adjust visual appearance
|
||||||
|
- Added @close listener on <sio-conversation-selector> to call this.close(), enabling the selector to close the combox when it emits a close event
|
||||||
|
- Affected file: ts_web/elements/sio-combox.ts
|
||||||
|
|
||||||
## 2025-12-18 - 1.6.0 - feat(conversation-selector)
|
## 2025-12-18 - 1.6.0 - feat(conversation-selector)
|
||||||
add conversation status badges to conversation selector and include status in sample data
|
add conversation status badges to conversation selector and include status in sample data
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@social.io/catalog",
|
"name": "@social.io/catalog",
|
||||||
"version": "1.6.0",
|
"version": "1.6.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "catalog for social.io",
|
"description": "catalog for social.io",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@social.io/catalog',
|
name: '@social.io/catalog',
|
||||||
version: '1.6.0',
|
version: '1.6.1',
|
||||||
description: 'catalog for social.io'
|
description: 'catalog for social.io'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -259,7 +259,7 @@ export class SioCombox extends DeesElement {
|
|||||||
background: ${bdTheme('background')};
|
background: ${bdTheme('background')};
|
||||||
border-radius: ${unsafeCSS(radius['2xl'])};
|
border-radius: ${unsafeCSS(radius['2xl'])};
|
||||||
border: 1px solid ${bdTheme('border')};
|
border: 1px solid ${bdTheme('border')};
|
||||||
box-shadow: ${unsafeCSS(shadows.xl)};
|
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.35), 0 12px 24px -8px rgb(0 0 0 / 0.15);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-family: ${unsafeCSS(fontFamilies.sans)};
|
font-family: ${unsafeCSS(fontFamilies.sans)};
|
||||||
transform-origin: bottom right;
|
transform-origin: bottom right;
|
||||||
@@ -401,6 +401,7 @@ export class SioCombox extends DeesElement {
|
|||||||
.conversations=${this.conversations}
|
.conversations=${this.conversations}
|
||||||
.selectedConversationId=${this.selectedConversationId}
|
.selectedConversationId=${this.selectedConversationId}
|
||||||
@conversation-selected=${this.handleConversationSelected}
|
@conversation-selected=${this.handleConversationSelected}
|
||||||
|
@close=${() => this.close()}
|
||||||
></sio-conversation-selector>
|
></sio-conversation-selector>
|
||||||
|
|
||||||
<sio-conversation-view
|
<sio-conversation-view
|
||||||
|
|||||||
Reference in New Issue
Block a user