diff --git a/docs/components/combobox/extensions.md b/docs/components/combobox/extensions.md
index ae635dd7c..51cec220f 100644
--- a/docs/components/combobox/extensions.md
+++ b/docs/components/combobox/extensions.md
@@ -46,48 +46,56 @@ export const Github = () => html`
## Whatsapp
```js preview-story
-export const Whatsapp = () => html`
- `),
+ label: () =>
+ renderLitAsNode(
+ html`
`,
+ ),
prefix: () => renderLitAsNode(html` ${googleSearchIcon} `),
suffix: () =>
renderLitAsNode(
diff --git a/docs/components/combobox/src/md-combobox/md-combobox.js b/docs/components/combobox/src/md-combobox/md-combobox.js
index 81250a5dd..e25bdb61b 100644
--- a/docs/components/combobox/src/md-combobox/md-combobox.js
+++ b/docs/components/combobox/src/md-combobox/md-combobox.js
@@ -7,31 +7,29 @@ import './style/load-roboto.js';
// TODO: insert ink wc here
export class MdOption extends LionOption {
- static get styles() {
- return [
- ...super.styles,
- css`
- :host {
- position: relative;
- padding: 8px;
- }
+ static styles = [
+ ...super.styles,
+ css`
+ :host {
+ position: relative;
+ padding: 8px;
+ }
- :host([focused]) {
- background: lightgray;
- }
+ :host([focused]) {
+ background: lightgray;
+ }
- :host([active]) {
- color: #1867c0 !important;
- caret-color: #1867c0 !important;
- }
+ :host([active]) {
+ color: #1867c0 !important;
+ caret-color: #1867c0 !important;
+ }
- :host ::slotted(.md-highlight) {
- color: rgba(0, 0, 0, 0.38);
- background: #eee;
- }
- `,
- ];
- }
+ :host ::slotted(.md-highlight) {
+ color: rgba(0, 0, 0, 0.38);
+ background: #eee;
+ }
+ `,
+ ];
/**
* @override
@@ -67,23 +65,27 @@ export class MdOption extends LionOption {
customElements.define('md-option', MdOption);
export class MdCombobox extends MdFieldMixin(LionCombobox) {
- static get styles() {
- return [
- ...super.styles,
- css`
- .input-group__container {
- display: flex;
- border-bottom: none;
- }
+ static styles = [
+ ...super.styles,
+ css`
+ .input-group__container {
+ display: flex;
+ border-bottom: none;
+ }
- * > ::slotted([role='listbox']) {
- box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.28);
- padding-top: 8px;
- padding-bottom: 8px;
- top: 2px;
- }
- `,
- ];
+ * > ::slotted([role='listbox']) {
+ box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.28);
+ padding-top: 8px;
+ padding-bottom: 8px;
+ top: 2px;
+ }
+ `,
+ ];
+
+ constructor() {
+ super();
+
+ this.showAllOnEmpty = true;
}
}
customElements.define('md-combobox', MdCombobox);
diff --git a/docs/components/combobox/src/wa-combobox/assets/biden.jpeg b/docs/components/combobox/src/wa-combobox/assets/biden.jpeg
new file mode 100644
index 000000000..b182dc1ea
Binary files /dev/null and b/docs/components/combobox/src/wa-combobox/assets/biden.jpeg differ
diff --git a/docs/components/combobox/src/wa-combobox/assets/bush.jpeg b/docs/components/combobox/src/wa-combobox/assets/bush.jpeg
new file mode 100644
index 000000000..b1387e806
Binary files /dev/null and b/docs/components/combobox/src/wa-combobox/assets/bush.jpeg differ
diff --git a/docs/components/combobox/src/wa-combobox/assets/clinton.jpeg b/docs/components/combobox/src/wa-combobox/assets/clinton.jpeg
new file mode 100644
index 000000000..3a6c0bba4
Binary files /dev/null and b/docs/components/combobox/src/wa-combobox/assets/clinton.jpeg differ
diff --git a/docs/components/combobox/src/wa-combobox/assets/obama.jpeg b/docs/components/combobox/src/wa-combobox/assets/obama.jpeg
new file mode 100644
index 000000000..7b812894b
Binary files /dev/null and b/docs/components/combobox/src/wa-combobox/assets/obama.jpeg differ
diff --git a/docs/components/combobox/src/wa-combobox/assets/trump.jpeg b/docs/components/combobox/src/wa-combobox/assets/trump.jpeg
new file mode 100644
index 000000000..7cdbcb549
Binary files /dev/null and b/docs/components/combobox/src/wa-combobox/assets/trump.jpeg differ
diff --git a/docs/components/combobox/src/wa-combobox/wa-combobox.js b/docs/components/combobox/src/wa-combobox/wa-combobox.js
index 5c5ff4383..70180c9f9 100644
--- a/docs/components/combobox/src/wa-combobox/wa-combobox.js
+++ b/docs/components/combobox/src/wa-combobox/wa-combobox.js
@@ -15,164 +15,162 @@ class WaOption extends LionOption {
};
}
- static get styles() {
- return [
- ...super.styles,
- css`
- :host {
- --background-default: white;
- --background-default-active: gray;
- --secondary: #777;
- --secondary-lighter: #aaa;
- --chatlist-icon: #aaa;
- background-color: var(--background-default);
- cursor: pointer;
- color: rgb(74, 74, 74);
- padding: 0;
- transition: max-height 0.4s ease, opacity 0.3s ease;
- max-height: 500px;
- }
+ static styles = [
+ ...super.styles,
+ css`
+ :host {
+ --background-default: white;
+ --background-default-active: gray;
+ --secondary: #777;
+ --secondary-lighter: #aaa;
+ --chatlist-icon: #aaa;
+ background-color: var(--background-default);
+ cursor: pointer;
+ color: rgb(74, 74, 74);
+ padding: 0;
+ transition: max-height 0.4s ease, opacity 0.3s ease;
+ max-height: 500px;
+ }
- :host([checked]) {
- background-color: #eee;
- }
+ :host([checked]) {
+ background-color: #eee;
+ }
- :host(:hover) {
- background-color: #f6f6f6;
- }
+ :host(:hover) {
+ background-color: #f6f6f6;
+ }
- .wa-option {
- position: relative;
- display: flex;
- flex-direction: row;
- height: 72px;
- pointer-events: all;
- }
+ .wa-option {
+ position: relative;
+ display: flex;
+ flex-direction: row;
+ height: 72px;
+ pointer-events: all;
+ }
- .wa-option__image {
- display: flex;
- flex: none;
- align-items: center;
- margin-top: -1px;
- padding: 0 15px 0 13px;
- }
+ .wa-option__image {
+ display: flex;
+ flex: none;
+ align-items: center;
+ margin-top: -1px;
+ padding: 0 15px 0 13px;
+ }
- .wa-option__image-inner {
- position: relative;
- overflow: hidden;
- background-color: var(--avatar-background);
- border-radius: 50%;
- height: 49px;
- width: 49px;
- }
+ .wa-option__image-inner {
+ position: relative;
+ overflow: hidden;
+ background-color: var(--avatar-background);
+ border-radius: 50%;
+ height: 49px;
+ width: 49px;
+ }
- .wa-option__image-inner img,
- .wa-option__image-inner svg {
- width: 100%;
- height: 100%;
- }
+ .wa-option__image-inner img,
+ .wa-option__image-inner svg {
+ width: 100%;
+ height: 100%;
+ }
- .wa-option__image-inner-inner {
- position: absolute;
- top: 0;
- z-index: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- }
+ .wa-option__image-inner-inner {
+ position: absolute;
+ top: 0;
+ z-index: 1;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: 100%;
+ }
- .wa-option__content {
- display: flex;
- flex-basis: auto;
- flex-direction: column;
- flex-grow: 1;
- justify-content: center;
- min-width: 0;
- border-bottom: 1px solid #eee;
- padding-right: 15px;
- }
+ .wa-option__content {
+ display: flex;
+ flex-basis: auto;
+ flex-direction: column;
+ flex-grow: 1;
+ justify-content: center;
+ min-width: 0;
+ border-bottom: 1px solid #eee;
+ padding-right: 15px;
+ }
- .wa-option__content-row1 {
- display: flex;
- align-items: center;
- line-height: normal;
- text-align: left;
- }
+ .wa-option__content-row1 {
+ display: flex;
+ align-items: center;
+ line-height: normal;
+ text-align: left;
+ }
- .wa-option__content-row1-title {
- display: flex;
- flex-grow: 1;
- overflow: hidden;
- color: var(--primary-strong);
- font-weight: 400;
- font-size: 17px;
- line-height: 21px;
- }
+ .wa-option__content-row1-title {
+ display: flex;
+ flex-grow: 1;
+ overflow: hidden;
+ color: var(--primary-strong);
+ font-weight: 400;
+ font-size: 17px;
+ line-height: 21px;
+ }
- .wa-option__content-row1-time {
- line-height: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-left: 6px;
- margin-top: 3px;
+ .wa-option__content-row1-time {
+ line-height: 14px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ margin-left: 6px;
+ margin-top: 3px;
- flex: none;
- max-width: 100%;
- color: var(--secondary-lighter);
- font-size: 12px;
- line-height: 20px;
- }
+ flex: none;
+ max-width: 100%;
+ color: var(--secondary-lighter);
+ font-size: 12px;
+ line-height: 20px;
+ }
- .wa-option__content-row2 {
- display: flex;
- align-items: center;
- min-height: 20px;
- color: var(--secondary);
- font-size: 13px;
- line-height: 20px;
- margin-top: 2px;
- /* color: var(--secondary-stronger); */
- }
+ .wa-option__content-row2 {
+ display: flex;
+ align-items: center;
+ min-height: 20px;
+ color: var(--secondary);
+ font-size: 13px;
+ line-height: 20px;
+ margin-top: 2px;
+ /* color: var(--secondary-stronger); */
+ }
- .wa-option__content-row2-text {
- flex-grow: 1;
- overflow: hidden;
- font-weight: 400;
- font-size: 14px;
- line-height: 20px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
+ .wa-option__content-row2-text {
+ flex-grow: 1;
+ overflow: hidden;
+ font-weight: 400;
+ font-size: 14px;
+ line-height: 20px;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ }
- .wa-option__content-row2-text-inner {
- display: flex;
- align-items: flex-start;
- }
+ .wa-option__content-row2-text-inner {
+ display: flex;
+ align-items: flex-start;
+ }
- .wa-option__content-row2-text-inner-icon {
- display: none;
- flex: none;
- color: var(--chatlist-icon);
- vertical-align: top;
- margin-right: 2px;
- }
+ .wa-option__content-row2-text-inner-icon {
+ display: none;
+ flex: none;
+ color: var(--chatlist-icon);
+ vertical-align: top;
+ margin-right: 2px;
+ }
- :host([is-user-text]) .wa-option__content-row2-text-inner-icon {
- display: inline-block;
- }
+ :host([is-user-text]) .wa-option__content-row2-text-inner-icon {
+ display: inline-block;
+ }
- :host([is-user-text-read]) .wa-option__content-row2-text-inner-icon {
- color: lightblue;
- }
- /*
+ :host([is-user-text-read]) .wa-option__content-row2-text-inner-icon {
+ color: lightblue;
+ }
+ /*
.wa-option__content-row2-menu {
} */
- `,
- ];
- }
+ `,
+ ];
render() {
return html`