@lumx/react 4.12.0-next.4 → 4.12.0-next.6

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.
package/index.d.ts CHANGED
@@ -4058,7 +4058,7 @@ interface SelectTextFieldTranslations {
4058
4058
  * These are framework-specific concerns (not part of the core template) that both
4059
4059
  * wrappers need — extracted here to avoid duplication.
4060
4060
  */
4061
- interface BaseSelectTextFieldWrapperProps<O> extends Pick<BaseSelectProps<O>, 'options' | 'getOptionId' | 'getOptionName' | 'getOptionDescription' | 'getSectionId'>, HasAriaDisabled, HasClassName, HasTheme {
4061
+ interface BaseSelectTextFieldWrapperProps<O> extends Pick<BaseSelectProps<O>, 'options' | 'getOptionId' | 'getOptionName' | 'getOptionDescription' | 'getSectionId'>, HasAriaDisabled, HasTheme {
4062
4062
  /** Selection type: 'single' or 'multiple'. */
4063
4063
  selectionType: 'single' | 'multiple';
4064
4064
  /**
@@ -4132,7 +4132,7 @@ interface BaseSelectTextFieldWrapperProps<O> extends Pick<BaseSelectProps<O>, 'o
4132
4132
  translations: SelectTextFieldTranslations;
4133
4133
  }
4134
4134
 
4135
- interface BaseSelectTextFieldProps<O = any> extends BaseSelectTextFieldWrapperProps<O> {
4135
+ interface BaseSelectTextFieldProps<O = any> extends BaseSelectTextFieldWrapperProps<O>, HasClassName$1 {
4136
4136
  /**
4137
4137
  * Custom option render function. Must return a `<Combobox.Option>` element with custom
4138
4138
  * children/props. Core-computed props (`value`, `isSelected`, `description`, `key`) are
package/index.js CHANGED
@@ -6582,8 +6582,6 @@ function setupCombobox(callbacks, options, onTriggerAttach) {
6582
6582
  */
6583
6583
  function attachTriggerKeydown(triggerEl, signal, onKeydown) {
6584
6584
  function handleKeydown(event) {
6585
- if (event.ctrlKey || event.shiftKey) return;
6586
-
6587
6585
  // Let the mode-specific handler run first.
6588
6586
  if (onKeydown?.(event)) {
6589
6587
  event.stopPropagation();