@spectrum-web-components/reactive-controllers 0.42.2 → 0.42.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/reactive-controllers",
3
- "version": "0.42.2",
3
+ "version": "0.42.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -76,12 +76,12 @@
76
76
  "reactive controllers"
77
77
  ],
78
78
  "dependencies": {
79
- "lit": "^2.5.0"
79
+ "lit": "^3.1.3"
80
80
  },
81
81
  "types": "./src/index.d.ts",
82
82
  "customElements": "custom-elements.json",
83
83
  "sideEffects": [
84
84
  "./**/*.dev.js"
85
85
  ],
86
- "gitHead": "e19af30387032608baaa88c6a17c2ee50103a7c5"
86
+ "gitHead": "a03edce4f21f232f1705d8eb222e6e5436cad4c3"
87
87
  }
package/src/Color.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { ReactiveElement } from 'lit';
2
2
  import { HSL, HSLA, HSV, HSVA, RGB, RGBA, TinyColor } from '@ctrl/tinycolor';
3
3
  export type { HSL, HSLA, HSV, HSVA, RGB, RGBA, TinyColor };
4
- export declare type ColorValue = string | number | TinyColor | HSVA | HSV | RGB | RGBA | HSL | HSLA;
4
+ export type ColorValue = string | number | TinyColor | HSVA | HSV | RGB | RGBA | HSL | HSLA;
5
5
  export declare const extractHueAndSaturationRegExp: RegExp;
6
6
  export declare const replaceHueAndSaturationRegExp: RegExp;
7
7
  export declare const replaceHueRegExp: RegExp;
@@ -1,6 +1,6 @@
1
1
  import type { ReactiveController, ReactiveElement } from 'lit';
2
- declare type DirectionTypes = 'horizontal' | 'vertical' | 'both' | 'grid';
3
- export declare type FocusGroupConfig<T> = {
2
+ type DirectionTypes = 'horizontal' | 'vertical' | 'both' | 'grid';
3
+ export type FocusGroupConfig<T> = {
4
4
  focusInIndex?: (_elements: T[]) => number;
5
5
  direction?: DirectionTypes | (() => DirectionTypes);
6
6
  elementEnterAction?: (el: T) => void;
@@ -1,5 +1,5 @@
1
1
  import { FocusGroupConfig, FocusGroupController } from './FocusGroup.js';
2
- export declare type RovingTabindexConfig<T> = FocusGroupConfig<T>;
2
+ export type RovingTabindexConfig<T> = FocusGroupConfig<T>;
3
3
  interface UpdateTabIndexes {
4
4
  tabIndex: number;
5
5
  removeTabIndex?: boolean;