@elliemae/ds-form-combobox 3.53.0-beta.7 → 3.53.0-beta.9

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.
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSComboboxT } from './react-desc-prop-types.js';
3
2
  import type { DSComboboxInternalsT } from './sharedTypes.js';
4
3
  export declare function noop<T extends unknown[]>(..._args: T): void;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const DropdownIndicator: () => JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const Container: () => JSX.Element;
@@ -1,9 +1,9 @@
1
1
  import type { XstyledProps } from '@elliemae/ds-props-helpers';
2
2
  export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, XstyledProps & {
3
- disabled?: boolean | undefined;
3
+ disabled?: boolean;
4
4
  applyAriaDisabled: boolean;
5
5
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
6
6
  export declare const StyledPopperWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
7
- disabled?: boolean | undefined;
7
+ disabled?: boolean;
8
8
  applyAriaDisabled: boolean;
9
9
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const Controls: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface StyledControlsWrapperT {
3
2
  hasError: boolean;
4
3
  inline: boolean;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const ControlsInput: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface UseControlsInputT {
3
2
  handleOnBlur: () => void;
4
3
  handleOnChange?: React.ChangeEventHandler<HTMLInputElement>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const useKeyboardNavigation: () => {
3
2
  onInputKeyDown: import("react").KeyboardEventHandler<HTMLInputElement>;
4
3
  };
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  declare const useMaskedOnChange: () => import("react").ChangeEventHandler<HTMLInputElement>;
3
2
  export { useMaskedOnChange };
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const MenuList: () => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const SkeletonContainer: ({ instanceUid }: {
3
2
  instanceUid: string;
4
3
  }) => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { SizingProps } from '@elliemae/ds-system';
3
2
  interface StyledListWrapperT {
4
3
  minWidth: SizingProps['minWidth'];
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { DSComboboxT } from '../../react-desc-prop-types.js';
3
2
  interface ItemRendererT {
4
3
  extraItemProps?: {
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export declare const MultiSelectedValuesContainer: () => JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import type React from 'react';
2
- export declare const useOnElementResize: <T extends HTMLElement>(targetRef: React.RefObject<T>) => Record<'width' | 'height', number>;
2
+ export declare const useOnElementResize: <T extends HTMLElement>(targetRef: React.RefObject<T>) => Record<"width" | "height", number>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-combobox",
3
- "version": "3.53.0-beta.7",
3
+ "version": "3.53.0-beta.9",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Combobox",
6
6
  "files": [
@@ -38,27 +38,28 @@
38
38
  "dependencies": {
39
39
  "react-virtual": "~2.10.4",
40
40
  "uid": "~2.0.1",
41
- "@elliemae/ds-button-v2": "3.53.0-beta.7",
42
- "@elliemae/ds-circular-progress-indicator": "3.53.0-beta.7",
43
- "@elliemae/ds-floating-context": "3.53.0-beta.7",
44
- "@elliemae/ds-fast-list": "3.53.0-beta.7",
45
- "@elliemae/ds-grid": "3.53.0-beta.7",
46
- "@elliemae/ds-menu-items": "3.53.0-beta.7",
47
- "@elliemae/ds-form-checkbox": "3.53.0-beta.7",
48
- "@elliemae/ds-icons": "3.53.0-beta.7",
49
- "@elliemae/ds-pills-v2": "3.53.0-beta.7",
50
- "@elliemae/ds-props-helpers": "3.53.0-beta.7",
51
- "@elliemae/ds-system": "3.53.0-beta.7",
52
- "@elliemae/ds-truncated-tooltip-text": "3.53.0-beta.7"
41
+ "@elliemae/ds-circular-progress-indicator": "3.53.0-beta.9",
42
+ "@elliemae/ds-button-v2": "3.53.0-beta.9",
43
+ "@elliemae/ds-fast-list": "3.53.0-beta.9",
44
+ "@elliemae/ds-icons": "3.53.0-beta.9",
45
+ "@elliemae/ds-floating-context": "3.53.0-beta.9",
46
+ "@elliemae/ds-form-checkbox": "3.53.0-beta.9",
47
+ "@elliemae/ds-pills-v2": "3.53.0-beta.9",
48
+ "@elliemae/ds-menu-items": "3.53.0-beta.9",
49
+ "@elliemae/ds-system": "3.53.0-beta.9",
50
+ "@elliemae/ds-props-helpers": "3.53.0-beta.9",
51
+ "@elliemae/ds-grid": "3.53.0-beta.9",
52
+ "@elliemae/ds-truncated-tooltip-text": "3.53.0-beta.9"
53
53
  },
54
54
  "devDependencies": {
55
- "@elliemae/pui-cli": "9.0.0-next.63",
55
+ "@elliemae/pui-cli": "9.0.0-next.65",
56
56
  "@elliemae/pui-theme": "~2.13.0",
57
57
  "jest": "~29.7.0",
58
58
  "styled-components": "~5.3.9",
59
59
  "styled-system": "^5.1.5",
60
- "@elliemae/ds-monorepo-devops": "3.53.0-beta.7",
61
- "@elliemae/ds-form-helpers-mask-hooks": "3.53.0-beta.7"
60
+ "@elliemae/ds-form-helpers-mask-hooks": "3.53.0-beta.9",
61
+ "@elliemae/ds-monorepo-devops": "3.53.0-beta.9",
62
+ "@elliemae/ds-test-utils": "3.53.0-beta.9"
62
63
  },
63
64
  "peerDependencies": {
64
65
  "@elliemae/pui-theme": "~2.13.0",