@elliemae/ds-button-group 2.0.2 → 2.1.0-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-button-group",
3
- "version": "2.0.2",
3
+ "version": "2.1.0-rc.3",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Button Group",
6
6
  "module": "./esm/index.js",
@@ -40,9 +40,9 @@
40
40
  "build": "node ../../scripts/build/build.js"
41
41
  },
42
42
  "dependencies": {
43
- "@elliemae/ds-button": "2.0.2",
44
- "@elliemae/ds-classnames": "2.0.2",
45
- "@elliemae/ds-shared": "2.0.2",
43
+ "@elliemae/ds-button": "2.1.0-rc.3",
44
+ "@elliemae/ds-classnames": "2.1.0-rc.3",
45
+ "@elliemae/ds-shared": "2.1.0-rc.3",
46
46
  "react-desc": "~4.1.3"
47
47
  },
48
48
  "devDependencies": {
@@ -21,55 +21,55 @@ declare const DSButtonGroup: {
21
21
  propTypes: {
22
22
  /** props injected to wrapper of page header */
23
23
  containerProps: {
24
- defaultValue<T = unknown>(arg: T): {
24
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
25
25
  deprecated: import("react-desc").PropTypesDescValidator;
26
26
  };
27
- isRequired: import("react-desc").PropTypesDescValidator;
27
+ isRequired: import("react-desc").PropTypesDescValue;
28
28
  };
29
29
  /**
30
30
  * ['s', 'm', 'l']
31
31
  */
32
32
  size: {
33
- defaultValue<T = unknown>(arg: T): {
33
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
34
34
  deprecated: import("react-desc").PropTypesDescValidator;
35
35
  };
36
- isRequired: import("react-desc").PropTypesDescValidator;
36
+ isRequired: import("react-desc").PropTypesDescValue;
37
37
  };
38
38
  /**
39
39
  * ['primary', 'secondary', 'text', 'link']
40
40
  */
41
41
  buttonType: {
42
- defaultValue<T = unknown>(arg: T): {
42
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
43
43
  deprecated: import("react-desc").PropTypesDescValidator;
44
44
  };
45
- isRequired: import("react-desc").PropTypesDescValidator;
45
+ isRequired: import("react-desc").PropTypesDescValue;
46
46
  };
47
47
  /**
48
48
  * ['horizontal', 'vertical']
49
49
  */
50
50
  orientation: {
51
- defaultValue<T = unknown>(arg: T): {
51
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
52
52
  deprecated: import("react-desc").PropTypesDescValidator;
53
53
  };
54
- isRequired: import("react-desc").PropTypesDescValidator;
54
+ isRequired: import("react-desc").PropTypesDescValue;
55
55
  };
56
56
  /**
57
57
  * ['s', 'm', 'l']
58
58
  */
59
59
  spacing: {
60
- defaultValue<T = unknown>(arg: T): {
60
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
61
61
  deprecated: import("react-desc").PropTypesDescValidator;
62
62
  };
63
- isRequired: import("react-desc").PropTypesDescValidator;
63
+ isRequired: import("react-desc").PropTypesDescValue;
64
64
  };
65
65
  /**
66
66
  * Button group items to show of type DSButton
67
67
  */
68
68
  children: {
69
- defaultValue<T = unknown>(arg: T): {
69
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
70
70
  deprecated: import("react-desc").PropTypesDescValidator;
71
71
  };
72
- isRequired: import("react-desc").PropTypesDescValidator;
72
+ isRequired: import("react-desc").PropTypesDescValue;
73
73
  };
74
74
  };
75
75
  };
@@ -83,7 +83,9 @@ declare const DSButtonGroupWithSchema: {
83
83
  containerProps: any;
84
84
  } | undefined): JSX.Element;
85
85
  propTypes: unknown;
86
- toTypescript: () => import("react-desc").TypescriptSchema;
86
+ toTypescript: () => import("react-desc").TypescriptSchema; /**
87
+ * Button group items to show of type DSButton
88
+ */
87
89
  };
88
90
  export { DSButtonGroup, DSButtonGroupWithSchema };
89
91
  export default DSButtonGroup;