@elliemae/ds-button-group 3.16.4-rc.2 → 3.16.4
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.
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const DSButtonGroup: {
|
|
3
|
+
({ size, buttonType, orientation, spacing, children: buttons, containerProps }: {
|
|
4
|
+
size: any;
|
|
5
|
+
buttonType: any;
|
|
6
|
+
orientation: any;
|
|
7
|
+
spacing: any;
|
|
8
|
+
children: any;
|
|
9
|
+
containerProps: any;
|
|
10
|
+
}): JSX.Element;
|
|
11
|
+
defaultProps: {
|
|
12
|
+
spacing: null;
|
|
13
|
+
children: never[];
|
|
14
|
+
containerProps: {};
|
|
15
|
+
} | {
|
|
16
|
+
size: string;
|
|
17
|
+
buttonType: string;
|
|
18
|
+
orientation: string;
|
|
19
|
+
};
|
|
20
|
+
propTypes: {
|
|
21
|
+
/** props injected to wrapper of page header */
|
|
22
|
+
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
23
|
+
/**
|
|
24
|
+
* ['s', 'm', 'l']
|
|
25
|
+
*/
|
|
26
|
+
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
27
|
+
/**
|
|
28
|
+
* ['primary', 'secondary', 'text', 'link']
|
|
29
|
+
*/
|
|
30
|
+
buttonType: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
31
|
+
/**
|
|
32
|
+
* ['horizontal', 'vertical']
|
|
33
|
+
*/
|
|
34
|
+
orientation: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
35
|
+
/**
|
|
36
|
+
* ['s', 'm', 'l']
|
|
37
|
+
*/
|
|
38
|
+
spacing: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
39
|
+
/**
|
|
40
|
+
* Button group items to show of type DSButton
|
|
41
|
+
*/
|
|
42
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
43
|
+
};
|
|
44
|
+
displayName: string;
|
|
45
|
+
};
|
|
46
|
+
declare const DSButtonGroupWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
|
|
47
|
+
size: any;
|
|
48
|
+
buttonType: any;
|
|
49
|
+
orientation: any;
|
|
50
|
+
spacing: any;
|
|
51
|
+
children: any;
|
|
52
|
+
containerProps: any;
|
|
53
|
+
}>;
|
|
54
|
+
export { DSButtonGroup, DSButtonGroupWithSchema };
|
|
55
|
+
export default DSButtonGroup;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-button-group",
|
|
3
|
-
"version": "3.16.4
|
|
3
|
+
"version": "3.16.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Button Group",
|
|
6
6
|
"files": [
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"indent": 4
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@elliemae/ds-button": "3.16.4
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-
|
|
46
|
+
"@elliemae/ds-button": "3.16.4",
|
|
47
|
+
"@elliemae/ds-props-helpers": "3.16.4",
|
|
48
|
+
"@elliemae/ds-utilities": "3.16.4",
|
|
49
|
+
"@elliemae/ds-classnames": "3.16.4",
|
|
50
|
+
"@elliemae/ds-shared": "3.16.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@testing-library/jest-dom": "~5.16.5",
|