@lumx/core 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.
@@ -5769,6 +5769,7 @@ table {
5769
5769
  padding: 0 8px;
5770
5770
  margin: 0;
5771
5771
  border-radius: 10px;
5772
+ background-color: var(--lumx-color-light-N);
5772
5773
  }
5773
5774
  .lumx-flag--is-truncated {
5774
5775
  max-width: 100%;
@@ -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/lumx.css CHANGED
@@ -6450,6 +6450,7 @@ table {
6450
6450
  padding: 0 8px;
6451
6451
  margin: 0;
6452
6452
  border-radius: 10px;
6453
+ background-color: var(--lumx-color-light-N);
6453
6454
  }
6454
6455
  .lumx-flag--is-truncated {
6455
6456
  max-width: 100%;
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.4",
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.4",
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",
@@ -12,6 +12,7 @@
12
12
  padding: 0 $lumx-spacing-unit;
13
13
  margin: 0;
14
14
  border-radius: math.div(map.get($lumx-sizes, lumx-base-const("size", "XS")), 2);
15
+ background-color: lumx-color-variant("light", "N");
15
16
 
16
17
  &--is-truncated {
17
18
  max-width: 100%;