@lumx/core 4.12.0-next.5 → 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.
@@ -10,7 +10,7 @@ export type ComboboxListType = 'listbox' | 'grid';
10
10
  */
11
11
  export interface ComboboxListProps extends HasClassName {
12
12
  /** Accessible label for the listbox (required for accessibility). */
13
- 'aria-label': string;
13
+ 'aria-label'?: string;
14
14
  /**
15
15
  * Indicates that the listbox content is incomplete (loading).
16
16
  * Set to `true` when skeleton placeholders are present and no real options have loaded yet.
@@ -1,5 +1,4 @@
1
1
  import type { HasAriaDisabled } from '../../types/HasAriaDisabled';
2
- import type { HasClassName } from '../../types/HasClassName';
3
2
  import type { HasTheme } from '../../types/HasTheme';
4
3
  import type { JSXElement, Selector } from '../../types';
5
4
  /**
@@ -122,7 +121,7 @@ export interface SelectTextFieldTranslations {
122
121
  * These are framework-specific concerns (not part of the core template) that both
123
122
  * wrappers need — extracted here to avoid duplication.
124
123
  */
125
- export interface BaseSelectTextFieldWrapperProps<O> extends Pick<BaseSelectProps<O>, 'options' | 'getOptionId' | 'getOptionName' | 'getOptionDescription' | 'getSectionId'>, HasAriaDisabled, HasClassName, HasTheme {
124
+ export interface BaseSelectTextFieldWrapperProps<O> extends Pick<BaseSelectProps<O>, 'options' | 'getOptionId' | 'getOptionName' | 'getOptionDescription' | 'getSectionId'>, HasAriaDisabled, HasTheme {
126
125
  /** Selection type: 'single' or 'multiple'. */
127
126
  selectionType: 'single' | 'multiple';
128
127
  /**
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "dependencies": {
9
9
  "@floating-ui/dom": "^1.7.5",
10
- "@lumx/icons": "^4.12.0-next.5",
10
+ "@lumx/icons": "^4.12.0-next.6",
11
11
  "classnames": "^2.3.2",
12
12
  "focus-visible": "^5.0.2",
13
13
  "lodash": "4.18.1",
@@ -69,7 +69,7 @@
69
69
  "update-version-changelog": "yarn version-changelog ../../CHANGELOG.md"
70
70
  },
71
71
  "sideEffects": false,
72
- "version": "4.12.0-next.5",
72
+ "version": "4.12.0-next.6",
73
73
  "devDependencies": {
74
74
  "@rollup/plugin-typescript": "^12.3.0",
75
75
  "@testing-library/dom": "^10.4.1",