@elliemae/ds-separator 2.3.0-alpha.8 → 2.3.0-alpha.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.
@@ -0,0 +1,97 @@
1
+ /// <reference path="../../../../shared/typings/react-desc.d.ts" />
2
+ /// <reference types="react" />
3
+ declare const DSSeparator: {
4
+ ({ containerProps, dashed, margin, orientation, type, position, className, style, }: {
5
+ containerProps: any;
6
+ dashed: any;
7
+ margin: any;
8
+ orientation: any;
9
+ type: any;
10
+ position: any;
11
+ className: any;
12
+ style: any;
13
+ }): JSX.Element;
14
+ defaultProps: {
15
+ containerProps: {};
16
+ dashed: boolean;
17
+ margin: string;
18
+ orientation: string;
19
+ type: string;
20
+ position: string;
21
+ };
22
+ propTypes: {
23
+ /** class for separator */
24
+ className: {
25
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
26
+ deprecated: import("react-desc").PropTypesDescValidator;
27
+ };
28
+ isRequired: import("react-desc").PropTypesDescValue;
29
+ };
30
+ /** style object for separator */
31
+ style: {
32
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
33
+ deprecated: import("react-desc").PropTypesDescValidator;
34
+ };
35
+ isRequired: import("react-desc").PropTypesDescValue;
36
+ };
37
+ /** Injected props to wrapper element of component */
38
+ containerProps: {
39
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
40
+ deprecated: import("react-desc").PropTypesDescValidator;
41
+ };
42
+ isRequired: import("react-desc").PropTypesDescValue;
43
+ };
44
+ /**
45
+ * If the separator has to be dashed or solid
46
+ */
47
+ dashed: {
48
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
49
+ deprecated: import("react-desc").PropTypesDescValidator;
50
+ };
51
+ isRequired: import("react-desc").PropTypesDescValue;
52
+ };
53
+ /**
54
+ * Amount of margin to be added to the separator
55
+ */
56
+ margin: {
57
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
58
+ deprecated: import("react-desc").PropTypesDescValidator;
59
+ };
60
+ isRequired: import("react-desc").PropTypesDescValue;
61
+ };
62
+ /**
63
+ * Orientation 'horizontal' or 'vertical'
64
+ */
65
+ orientation: {
66
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
67
+ deprecated: import("react-desc").PropTypesDescValidator;
68
+ };
69
+ isRequired: import("react-desc").PropTypesDescValue;
70
+ };
71
+ /**
72
+ * ['category-level', 'group-level', 'non-form']
73
+ */
74
+ type: {
75
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
76
+ deprecated: import("react-desc").PropTypesDescValidator;
77
+ };
78
+ isRequired: import("react-desc").PropTypesDescValue;
79
+ };
80
+ /**
81
+ * ['initial', 'center', 'end']
82
+ */
83
+ position: {
84
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
85
+ deprecated: import("react-desc").PropTypesDescValidator;
86
+ };
87
+ isRequired: import("react-desc").PropTypesDescValue;
88
+ };
89
+ };
90
+ };
91
+ declare const DSSeparatorWithSchema: {
92
+ (props?: unknown): JSX.Element;
93
+ propTypes: unknown;
94
+ toTypescript: () => import("react-desc").TypescriptSchema;
95
+ };
96
+ export { DSSeparator, DSSeparatorWithSchema };
97
+ export default DSSeparator;
@@ -0,0 +1,2 @@
1
+ export * from './DSSeparator';
2
+ export { default } from './DSSeparator';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-separator",
3
- "version": "2.3.0-alpha.8",
3
+ "version": "2.3.0-alpha.9",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Separator",
6
6
  "files": [
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "author": "ICE MT",
35
35
  "dependencies": {
36
- "@elliemae/ds-classnames": "2.3.0-alpha.8",
36
+ "@elliemae/ds-classnames": "2.3.0-alpha.9",
37
37
  "react-desc": "~4.1.3"
38
38
  },
39
39
  "peerDependencies": {