@elliemae/ds-form-layout-input-group 3.16.4-rc.2 → 3.16.4-rc.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/dist/types/InputGroup.d.ts +5 -0
- package/dist/types/exported-related/data-test-ids.d.ts +6 -0
- package/dist/types/exported-related/index.d.ts +2 -0
- package/dist/types/exported-related/theming.d.ts +6 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/react-desc-prop-types.d.ts +19 -0
- package/dist/types/styled.d.ts +5 -0
- package/dist/types/tests/DSInputGroup.test.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DSInputGroupT } from './react-desc-prop-types.js';
|
|
3
|
+
declare const DSInputGroup: React.ComponentType<DSInputGroupT.Props>;
|
|
4
|
+
declare const DSInputGroupWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<DSInputGroupT.Props>;
|
|
5
|
+
export { DSInputGroup, DSInputGroupWithSchema };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
export declare namespace DSInputGroupT {
|
|
3
|
+
interface RequiredProps {
|
|
4
|
+
children: React.ReactChild;
|
|
5
|
+
}
|
|
6
|
+
interface OptionalProps {
|
|
7
|
+
leftAddon?: React.ReactNode;
|
|
8
|
+
rightAddon?: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
interface Props extends Partial<OptionalProps>, RequiredProps {
|
|
11
|
+
}
|
|
12
|
+
interface InternalProps extends OptionalProps, RequiredProps {
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export declare const propTypes: {
|
|
16
|
+
leftAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
17
|
+
rightAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
18
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
19
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const StyledContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object, never>;
|
|
3
|
+
export declare const StyledLeftAddon: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
4
|
+
export declare const StyledRightAddon: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
5
|
+
export declare const StyledInput: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-form-layout-input-group",
|
|
3
|
-
"version": "3.16.4-rc.
|
|
3
|
+
"version": "3.16.4-rc.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Form Layout - Input Group",
|
|
6
6
|
"files": [
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"styled-components": "~5.3.9",
|
|
39
|
-
"@elliemae/ds-form-combobox": "3.16.4-rc.
|
|
40
|
-
"@elliemae/ds-form-input-text": "3.16.4-rc.
|
|
41
|
-
"@elliemae/ds-grid": "3.16.4-rc.
|
|
42
|
-
"@elliemae/ds-props-helpers": "3.16.4-rc.
|
|
43
|
-
"@elliemae/ds-system": "3.16.4-rc.
|
|
44
|
-
"@elliemae/ds-utilities": "3.16.4-rc.
|
|
39
|
+
"@elliemae/ds-form-combobox": "3.16.4-rc.3",
|
|
40
|
+
"@elliemae/ds-form-input-text": "3.16.4-rc.3",
|
|
41
|
+
"@elliemae/ds-grid": "3.16.4-rc.3",
|
|
42
|
+
"@elliemae/ds-props-helpers": "3.16.4-rc.3",
|
|
43
|
+
"@elliemae/ds-system": "3.16.4-rc.3",
|
|
44
|
+
"@elliemae/ds-utilities": "3.16.4-rc.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@elliemae/pui-theme": "~2.7.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@testing-library/user-event": "~13.5.0",
|
|
52
52
|
"styled-components": "~5.3.9",
|
|
53
53
|
"styled-system": "~5.1.5",
|
|
54
|
-
"@elliemae/ds-button": "3.16.4-rc.
|
|
54
|
+
"@elliemae/ds-button": "3.16.4-rc.3"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@elliemae/pui-theme": "~2.7.0",
|