@lumx/vue 4.12.1 → 4.13.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import { ComboboxButtonProps as UIProps, ComboboxButtonLabelDisplayMode, COMPONENT_NAME, CLASSNAME } from '@lumx/core/js/components/Combobox/ComboboxButton';
2
2
  import { VueToJSXProps } from '../../utils/VueToJSX';
3
- export type ComboboxButtonProps = VueToJSXProps<UIProps, 'label'> & {
3
+ export type ComboboxButtonProps = VueToJSXProps<UIProps, 'label' | 'renderButton'> & {
4
4
  /** The label for the button (used for ARIA and tooltip). */
5
5
  label: string;
6
6
  /** The currently selected value to display. */
@@ -18,7 +18,7 @@ declare const ComboboxButton: import('vue').DefineSetupFnComponent<ComboboxButto
18
18
  select: (option: {
19
19
  value: string;
20
20
  }) => true;
21
- }, {}, Omit<UIProps, "className" | "label" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
21
+ }, {}, Omit<UIProps, "className" | "label" | import('@lumx/core/js/types').PropsToOverride | "children" | "renderButton"> & {
22
22
  class?: string;
23
23
  } & {
24
24
  /** The label for the button (used for ARIA and tooltip). */
@@ -27,7 +27,7 @@ export declare const Combobox: {
27
27
  select: (option: {
28
28
  value: string;
29
29
  }) => true;
30
- }, {}, Omit<import('@lumx/core/js/components/Combobox/ComboboxButton').ComboboxButtonProps, "className" | "label" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
30
+ }, {}, Omit<import('@lumx/core/js/components/Combobox/ComboboxButton').ComboboxButtonProps, "className" | "label" | import('@lumx/core/js/types').PropsToOverride | "children" | "renderButton"> & {
31
31
  class?: string;
32
32
  } & {
33
33
  label: string;