@lumx/core 4.12.1-next.0 → 4.12.1-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.
@@ -10,9 +10,14 @@ export declare const setup: (propsOverride: any | undefined, { render, ...option
10
10
  interface CoreTestOptions extends SetupOptions<any> {
11
11
  /**
12
12
  * Render a stateful SelectionChipGroup that updates its own value on change.
13
- * When provided, enables roving tabindex recovery tests.
13
+ * Should also render a sibling `<input>` element wired via `inputRef` so the
14
+ * keyboard navigation tests can assert focus fallback to the input.
15
+ *
16
+ * When provided, enables roving tabindex recovery and keyboard navigation tests.
17
+ *
18
+ * @param initialValue Optional initial value (defaults to all 3 testOptions).
14
19
  */
15
- renderStateful?: () => void;
20
+ renderStateful?: (initialValue?: any[]) => void;
16
21
  }
17
22
  declare const _default: (renderOptions: CoreTestOptions) => void;
18
23
  export default _default;
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.1-next.0",
10
+ "@lumx/icons": "^4.12.1-next.1",
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.1-next.0",
72
+ "version": "4.12.1-next.1",
73
73
  "devDependencies": {
74
74
  "@rollup/plugin-typescript": "^12.3.0",
75
75
  "@testing-library/dom": "^10.4.1",