diff --git a/components/lib/listbox/BaseListbox.vue b/components/lib/listbox/BaseListbox.vue new file mode 100644 index 000000000..f9f0524e2 --- /dev/null +++ b/components/lib/listbox/BaseListbox.vue @@ -0,0 +1,163 @@ + diff --git a/components/lib/listbox/Listbox.d.ts b/components/lib/listbox/Listbox.d.ts index 15d50b974..affa0a404 100755 --- a/components/lib/listbox/Listbox.d.ts +++ b/components/lib/listbox/Listbox.d.ts @@ -316,6 +316,11 @@ export interface ListboxProps { * @type {ListboxPassThroughOptions} */ pt?: ListboxPassThroughOptions; + /** + * When enabled, it removes component related styles in the core. + * @defaultValue false + */ + unstyled?: boolean; } /** diff --git a/components/lib/listbox/Listbox.vue b/components/lib/listbox/Listbox.vue index e41a64751..088b8ec9e 100755 --- a/components/lib/listbox/Listbox.vue +++ b/components/lib/listbox/Listbox.vue @@ -1,14 +1,25 @@