@elliemae/ds-form-combobox 3.70.0-next.54 → 3.70.0-next.58
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/dist/cjs/package.json +1 -4
- package/dist/esm/package.json +1 -4
- package/dist/types/ComboBox.d.ts +1 -1
- package/dist/types/TruncatedText.d.ts +1 -1
- package/dist/types/parts/LiveRegion.d.ts +2 -2
- package/dist/types/parts/Section.d.ts +1 -1
- package/dist/types/parts/menu-list/LoadingContainer.d.ts +2 -1
- package/package.json +18 -18
package/dist/cjs/package.json
CHANGED
package/dist/esm/package.json
CHANGED
package/dist/types/ComboBox.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { DSCommonComboboxPropsT } from './DSCommonComboboxPropsT.js';
|
|
|
3
3
|
import type { DSComboboxT } from './react-desc-prop-types.js';
|
|
4
4
|
export declare const offScreenStyle: React.CSSProperties;
|
|
5
5
|
declare const DSComboBox: {
|
|
6
|
-
<T extends DSCommonComboboxPropsT.ItemOption | DSCommonComboboxPropsT.ItemOption[] | null = DSCommonComboboxPropsT.ItemOption | DSCommonComboboxPropsT.ItemOption[]>(props: DSComboboxT.Props<T>):
|
|
6
|
+
<T extends DSCommonComboboxPropsT.ItemOption | DSCommonComboboxPropsT.ItemOption[] | null = DSCommonComboboxPropsT.ItemOption | DSCommonComboboxPropsT.ItemOption[]>(props: DSComboboxT.Props<T>): React.JSX.Element;
|
|
7
7
|
displayName: string;
|
|
8
8
|
};
|
|
9
9
|
declare const DSComboBoxWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<import("./DSComboboxMultiT.js").DSComboboxMultiT.Props | (Omit<import("./DSComboboxSingleT.js").DSComboboxSingleT.Props, "selectedValue"> & {
|
|
@@ -8,6 +8,6 @@ interface TruncatedTextProps {
|
|
|
8
8
|
* menu can't be opened) wrap the combobox in DSTooltipV3 themselves; see the
|
|
9
9
|
* "WithTooltip" examples in ds-form-single-combobox / ds-form-multi-combobox.
|
|
10
10
|
*/
|
|
11
|
-
declare const TruncatedText: ({ value }: TruncatedTextProps) => import("react
|
|
11
|
+
declare const TruncatedText: ({ value }: TruncatedTextProps) => import("react").JSX.Element;
|
|
12
12
|
export { TruncatedText };
|
|
13
13
|
export default TruncatedText;
|
|
@@ -9,7 +9,7 @@ export declare const LiveRegion: () => JSX.Element;
|
|
|
9
9
|
*/
|
|
10
10
|
export declare const Announcer: React.MemoExoticComponent<({ message }: {
|
|
11
11
|
message: string;
|
|
12
|
-
}) =>
|
|
12
|
+
}) => React.JSX.Element>;
|
|
13
13
|
/**
|
|
14
14
|
* PUI-18034 — Polite live region for post-load result count. Replaces the previous
|
|
15
15
|
* assertive Announcer that raced with the SR's aria-expanded announcement.
|
|
@@ -23,4 +23,4 @@ export declare const ResultCountStatus: React.MemoExoticComponent<({ menuOpen, i
|
|
|
23
23
|
isLoading: boolean;
|
|
24
24
|
isSkeleton: boolean;
|
|
25
25
|
resultCount: number;
|
|
26
|
-
}) =>
|
|
26
|
+
}) => React.JSX.Element>;
|
|
@@ -14,5 +14,5 @@ interface SectionProps {
|
|
|
14
14
|
index: number;
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
export declare const Section: React.MemoExoticComponent<(props: SectionProps) =>
|
|
17
|
+
export declare const Section: React.MemoExoticComponent<(props: SectionProps) => React.JSX.Element>;
|
|
18
18
|
export {};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
declare const LoadingContainer: ({ instanceUid, isMulti, getOwnerProps, }: {
|
|
2
3
|
instanceUid: string;
|
|
3
4
|
isMulti: boolean;
|
|
4
5
|
getOwnerProps: () => object;
|
|
5
|
-
}) =>
|
|
6
|
+
}) => React.JSX.Element;
|
|
6
7
|
export { LoadingContainer };
|
|
7
8
|
export default LoadingContainer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-form-combobox",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.58",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Controlled Form Combobox",
|
|
6
6
|
"files": [
|
|
@@ -37,32 +37,32 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"uid": "^2.0.2",
|
|
40
|
-
"@elliemae/ds-
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-pills-v2": "3.70.0-next.
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-
|
|
40
|
+
"@elliemae/ds-circular-progress-indicator": "3.70.0-next.58",
|
|
41
|
+
"@elliemae/ds-floating-context": "3.70.0-next.58",
|
|
42
|
+
"@elliemae/ds-grid": "3.70.0-next.58",
|
|
43
|
+
"@elliemae/ds-button-v2": "3.70.0-next.58",
|
|
44
|
+
"@elliemae/ds-icons": "3.70.0-next.58",
|
|
45
|
+
"@elliemae/ds-menu-items": "3.70.0-next.58",
|
|
46
|
+
"@elliemae/ds-pills-v2": "3.70.0-next.58",
|
|
47
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.58",
|
|
48
|
+
"@elliemae/ds-typography": "3.70.0-next.58",
|
|
49
|
+
"@elliemae/ds-system": "3.70.0-next.58",
|
|
50
|
+
"@elliemae/ds-fast-list": "3.70.0-next.58"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@elliemae/pui-theme": "~2.13.0",
|
|
54
54
|
"jest": "^30.0.0",
|
|
55
|
-
"styled-components": "~5.3.
|
|
55
|
+
"styled-components": "~5.3.11",
|
|
56
56
|
"styled-system": "^5.1.5",
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-
|
|
59
|
-
"@elliemae/ds-
|
|
57
|
+
"@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.58",
|
|
58
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.58",
|
|
59
|
+
"@elliemae/ds-test-utils": "3.70.0-next.58"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"@elliemae/pui-theme": "~2.13.0",
|
|
63
63
|
"react": "^18.3.1",
|
|
64
64
|
"react-dom": "^18.3.1",
|
|
65
|
-
"styled-components": "~5.3.
|
|
65
|
+
"styled-components": "~5.3.11",
|
|
66
66
|
"styled-system": "^5.1.5"
|
|
67
67
|
},
|
|
68
68
|
"publishConfig": {
|
|
@@ -78,4 +78,4 @@
|
|
|
78
78
|
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
79
79
|
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
80
80
|
}
|
|
81
|
-
}
|
|
81
|
+
}
|