@elliemae/ds-form 2.2.0-beta.0 → 2.2.0-next.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form",
3
- "version": "2.2.0-beta.0",
3
+ "version": "2.2.0-next.4",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Form",
6
6
  "module": "./esm/index.js",
@@ -748,28 +748,28 @@
748
748
  "build": "node ../../scripts/build/build.js"
749
749
  },
750
750
  "dependencies": {
751
- "@elliemae/ds-button": "2.2.0-beta.0",
752
- "@elliemae/ds-circular-progress-indicator": "2.2.0-beta.0",
753
- "@elliemae/ds-classnames": "2.2.0-beta.0",
754
- "@elliemae/ds-controlled-form": "2.2.0-beta.0",
755
- "@elliemae/ds-dropdownmenu": "2.2.0-beta.0",
756
- "@elliemae/ds-form": "2.2.0-beta.0",
757
- "@elliemae/ds-grid": "2.2.0-beta.0",
758
- "@elliemae/ds-icon": "2.2.0-beta.0",
759
- "@elliemae/ds-icons": "2.2.0-beta.0",
760
- "@elliemae/ds-menu": "2.2.0-beta.0",
761
- "@elliemae/ds-overlay": "2.2.0-beta.0",
762
- "@elliemae/ds-pills": "2.2.0-beta.0",
763
- "@elliemae/ds-popper": "2.2.0-beta.0",
764
- "@elliemae/ds-popperjs": "2.2.0-beta.0",
765
- "@elliemae/ds-props-helpers": "2.2.0-beta.0",
766
- "@elliemae/ds-separator": "2.2.0-beta.0",
767
- "@elliemae/ds-shared": "2.2.0-beta.0",
768
- "@elliemae/ds-system": "2.2.0-beta.0",
769
- "@elliemae/ds-text-wrapper": "2.2.0-beta.0",
770
- "@elliemae/ds-tooltip": "2.2.0-beta.0",
771
- "@elliemae/ds-truncated-tooltip-text": "2.2.0-beta.0",
772
- "@elliemae/ds-utilities": "2.2.0-beta.0",
751
+ "@elliemae/ds-button": "2.2.0-next.4",
752
+ "@elliemae/ds-circular-progress-indicator": "2.2.0-next.4",
753
+ "@elliemae/ds-classnames": "2.2.0-next.4",
754
+ "@elliemae/ds-controlled-form": "2.2.0-next.4",
755
+ "@elliemae/ds-dropdownmenu": "2.2.0-next.4",
756
+ "@elliemae/ds-form": "2.2.0-next.4",
757
+ "@elliemae/ds-grid": "2.2.0-next.4",
758
+ "@elliemae/ds-icon": "2.2.0-next.4",
759
+ "@elliemae/ds-icons": "2.2.0-next.4",
760
+ "@elliemae/ds-menu": "2.2.0-next.4",
761
+ "@elliemae/ds-overlay": "2.2.0-next.4",
762
+ "@elliemae/ds-pills": "2.2.0-next.4",
763
+ "@elliemae/ds-popper": "2.2.0-next.4",
764
+ "@elliemae/ds-popperjs": "2.2.0-next.4",
765
+ "@elliemae/ds-props-helpers": "2.2.0-next.4",
766
+ "@elliemae/ds-separator": "2.2.0-next.4",
767
+ "@elliemae/ds-shared": "2.2.0-next.4",
768
+ "@elliemae/ds-system": "2.2.0-next.4",
769
+ "@elliemae/ds-text-wrapper": "2.2.0-next.4",
770
+ "@elliemae/ds-tooltip": "2.2.0-next.4",
771
+ "@elliemae/ds-truncated-tooltip-text": "2.2.0-next.4",
772
+ "@elliemae/ds-utilities": "2.2.0-next.4",
773
773
  "memoize-one": "~5.1.1",
774
774
  "moment": "~2.29.1",
775
775
  "prop-types": "~15.7.2",
@@ -94,7 +94,7 @@ declare const DSCheckbox: {
94
94
  };
95
95
  };
96
96
  declare const CheckboxWithSchema: {
97
- (props?: unknown): JSX.Element;
97
+ (props?: DSCheckboxPropsT | undefined): JSX.Element;
98
98
  propTypes: unknown;
99
99
  toTypescript: () => import("react-desc").TypescriptSchema;
100
100
  };
@@ -65,7 +65,16 @@ declare const DSCheckboxGroup: {
65
65
  };
66
66
  };
67
67
  declare const DSCheckboxGroupWithSchema: {
68
- (props?: unknown): JSX.Element;
68
+ (props?: {
69
+ onChange: any;
70
+ activeValue: any;
71
+ children: any;
72
+ disabled: any;
73
+ orientation: any;
74
+ truncateText: any;
75
+ labelProps: any;
76
+ containerProps: any;
77
+ } | undefined): JSX.Element;
69
78
  propTypes: unknown;
70
79
  toTypescript: () => import("react-desc").TypescriptSchema;
71
80
  };
@@ -62,7 +62,57 @@ declare const DSComboBox2: {
62
62
  contextType?: React.Context<any> | undefined;
63
63
  };
64
64
  declare const ComboBoxWithSchema: {
65
- (props?: unknown): JSX.Element;
65
+ (props?: {
66
+ [x: string]: any;
67
+ hideSelectedOptions?: boolean | undefined;
68
+ autoFocus?: boolean | undefined;
69
+ className?: string | undefined;
70
+ hasError?: boolean | undefined;
71
+ onFocus?: ((...args: any[]) => void) | undefined;
72
+ onBlur?: ((...args: any[]) => void) | undefined;
73
+ onChange?: ((...args: any[]) => void) | undefined;
74
+ onChangeV2?: ((...args: any[]) => void) | undefined;
75
+ filterOption?: any;
76
+ onClickDropdownIndicator?: ((...args: any[]) => void) | undefined;
77
+ onInputKeyDown?: ((...args: any[]) => void) | undefined;
78
+ onInputChange?: ((...args: any[]) => void) | undefined;
79
+ isRtl?: boolean | undefined;
80
+ isFocused?: undefined;
81
+ isMulti?: boolean | undefined;
82
+ isFreeSolo: any;
83
+ selectAllDisabled?: boolean | undefined;
84
+ formatCreateLabel: any;
85
+ createOptionPosition: any;
86
+ value?: null | undefined;
87
+ options?: never[] | undefined;
88
+ clearable?: boolean | undefined;
89
+ searchable?: boolean | undefined;
90
+ disabled?: boolean | undefined;
91
+ placeholder?: string | undefined;
92
+ valueProperty?: string | undefined;
93
+ labelProperty?: string | undefined;
94
+ noOptionsMessage?: string | undefined;
95
+ loading?: boolean | undefined;
96
+ menuIsOpen?: undefined;
97
+ onMenuClose?: ((...args: any[]) => void) | undefined;
98
+ inlineMenu?: boolean | undefined;
99
+ components?: {} | undefined;
100
+ measureRef: any;
101
+ contentRect: any;
102
+ readOnly?: boolean | undefined;
103
+ returnValue?: boolean | undefined;
104
+ expandMenuToContainer?: boolean | undefined;
105
+ expandMenuOutsideContainer?: boolean | undefined;
106
+ customMenuItemOptions?: {
107
+ useTruncatedText: boolean;
108
+ itemSize: number;
109
+ } | undefined;
110
+ containerProps?: {} | undefined;
111
+ maxOptions: any;
112
+ zIndex?: number | undefined;
113
+ componentsStyle: any;
114
+ keepTypedValue?: boolean | undefined;
115
+ } | undefined): JSX.Element;
66
116
  propTypes: unknown;
67
117
  toTypescript: () => import("react-desc").TypescriptSchema;
68
118
  };
@@ -89,7 +89,19 @@ declare const DSDateInputV2: {
89
89
  };
90
90
  };
91
91
  declare const DSDateInputV2WithSchema: {
92
- (props?: unknown): JSX.Element;
92
+ (props?: {
93
+ onFocus: any;
94
+ onBlur: any;
95
+ onChange: any;
96
+ onDateChange: any;
97
+ onKeyDown: any;
98
+ onError: any;
99
+ value: any;
100
+ disabled: any;
101
+ containerProps: any;
102
+ tabIndex: any;
103
+ innerRef: any;
104
+ } | undefined): JSX.Element;
93
105
  propTypes: unknown;
94
106
  toTypescript: () => import("react-desc").TypescriptSchema;
95
107
  };
@@ -471,7 +471,46 @@ declare const DSFormItemLayout: {
471
471
  };
472
472
  };
473
473
  declare const DSFormItemLayoutWithSchema: {
474
- (props?: unknown): JSX.Element;
474
+ (props?: {
475
+ [x: string]: any;
476
+ leftLabel: any;
477
+ floatingLabel: any;
478
+ name: any;
479
+ id: any;
480
+ value: any;
481
+ inputComponent: any;
482
+ labelComponent: any;
483
+ feedbackComponent: any;
484
+ labelText: any;
485
+ truncateText: any;
486
+ hasError: any;
487
+ validationState: any;
488
+ validationMessage: any;
489
+ feedbackMessage: any;
490
+ readOnly: any;
491
+ focused: any;
492
+ type: any;
493
+ autoFocus: any;
494
+ disabled: any;
495
+ onChange: any;
496
+ onBlur: any;
497
+ onFocus: any;
498
+ onPaste: any;
499
+ onKeyUp: any;
500
+ extraInputProps: any;
501
+ extraContent: any;
502
+ leftAddon: any;
503
+ rightAddon: any;
504
+ required: any;
505
+ optional: any;
506
+ mask: any;
507
+ useSubfix: any;
508
+ suffix: any;
509
+ variant: any;
510
+ fitContent: any;
511
+ withHighlight: any;
512
+ containerProps: any;
513
+ } | undefined): JSX.Element;
475
514
  propTypes: unknown;
476
515
  toTypescript: () => import("react-desc").TypescriptSchema;
477
516
  };
@@ -23,7 +23,10 @@ declare const DSError: {
23
23
  };
24
24
  };
25
25
  declare const DSErrorWithSchema: {
26
- (props?: unknown): JSX.Element;
26
+ (props?: {
27
+ hasError?: boolean | undefined;
28
+ errorText?: string | undefined;
29
+ } | undefined): JSX.Element;
27
30
  propTypes: unknown;
28
31
  toTypescript: () => import("react-desc").TypescriptSchema;
29
32
  };
@@ -64,7 +64,15 @@ declare const DSInputGroup: {
64
64
  };
65
65
  };
66
66
  declare const DSInputGroupWithSchema: {
67
- (props?: unknown): JSX.Element;
67
+ (props?: {
68
+ containerProps: any;
69
+ innerRef: any;
70
+ className: any;
71
+ style: any;
72
+ leftAddon: any;
73
+ rightAddon: any;
74
+ children: any;
75
+ } | undefined): JSX.Element;
68
76
  propTypes: unknown;
69
77
  toTypescript: () => import("react-desc").TypescriptSchema;
70
78
  };
@@ -62,7 +62,17 @@ declare const DSInputProtected: {
62
62
  };
63
63
  };
64
64
  declare const DSInputProtectedWithSchema: {
65
- (props?: unknown): JSX.Element;
65
+ (props?: {
66
+ [x: string]: any;
67
+ leftAddon: any;
68
+ rightAddon: any;
69
+ onChange: any;
70
+ value: any;
71
+ readOnly: any;
72
+ mask: any;
73
+ type: any;
74
+ placeholderChar?: undefined;
75
+ } | undefined): JSX.Element;
66
76
  propTypes: unknown;
67
77
  toTypescript: () => import("react-desc").TypescriptSchema;
68
78
  };
@@ -13,7 +13,7 @@ declare const MenuItem: {
13
13
  };
14
14
  };
15
15
  declare const MenuItemWithSchema: {
16
- (props?: unknown): JSX.Element;
16
+ (props?: MenuItemT | undefined): JSX.Element;
17
17
  propTypes: unknown;
18
18
  toTypescript: () => import("react-desc").TypescriptSchema;
19
19
  };
@@ -14,7 +14,7 @@ declare const MultiMenuItem: {
14
14
  defaultProps: MenuItemT;
15
15
  };
16
16
  declare const MultiMenuItemWithSchema: {
17
- (props?: unknown): JSX.Element;
17
+ (props?: MenuItemT | undefined): JSX.Element;
18
18
  propTypes: unknown;
19
19
  toTypescript: () => import("react-desc").TypescriptSchema;
20
20
  };
@@ -13,7 +13,7 @@ declare const SubmenuItem: {
13
13
  };
14
14
  };
15
15
  declare const SubmenuItemWithSchema: {
16
- (props?: unknown): JSX.Element;
16
+ (props?: MenuItemT | undefined): JSX.Element;
17
17
  propTypes: unknown;
18
18
  toTypescript: () => import("react-desc").TypescriptSchema;
19
19
  };
@@ -149,7 +149,7 @@ declare const DSRadio: {
149
149
  };
150
150
  };
151
151
  declare const DSRadioWithSchema: {
152
- (props?: unknown): JSX.Element;
152
+ (props?: DSRadioT | undefined): JSX.Element;
153
153
  propTypes: unknown;
154
154
  toTypescript: () => import("react-desc").TypescriptSchema;
155
155
  };
@@ -64,7 +64,16 @@ declare const DSRadioGroup: {
64
64
  };
65
65
  };
66
66
  declare const DSRadioGroupWithSchema: {
67
- (props?: unknown): JSX.Element;
67
+ (props?: {
68
+ containerProps: any;
69
+ onChange: any;
70
+ activeValue: any;
71
+ children: any;
72
+ orientation: any;
73
+ disabled: any;
74
+ truncateText: any;
75
+ labelProps: any;
76
+ } | undefined): JSX.Element;
68
77
  propTypes: unknown;
69
78
  toTypescript: () => import("react-desc").TypescriptSchema;
70
79
  };
@@ -168,7 +168,27 @@ declare const DSSearchBox: {
168
168
  };
169
169
  };
170
170
  declare const SearchBoxWithSchema: {
171
- (props?: unknown): JSX.Element;
171
+ (props?: {
172
+ className: any;
173
+ clearable: any;
174
+ containerProps: any;
175
+ disableButton: any;
176
+ disabled: any;
177
+ innerRef: any;
178
+ onBlur: any;
179
+ onChange: any;
180
+ onKeyUp: any;
181
+ onSearch: any;
182
+ onClearButtonClick: any;
183
+ placeholder: any;
184
+ property: any;
185
+ readOnly: any;
186
+ searchOnEnter: any;
187
+ onSearchButtonClick: any;
188
+ showIcon: any;
189
+ style: any;
190
+ value: any;
191
+ } | undefined): JSX.Element;
172
192
  propTypes: unknown;
173
193
  toTypescript: () => import("react-desc").TypescriptSchema;
174
194
  };
@@ -46,7 +46,7 @@ declare const NavSearchBox: {
46
46
  };
47
47
  };
48
48
  declare const DSNavSearchBoxWithSchema: {
49
- (props?: unknown): JSX.Element;
49
+ (props?: PropsT | undefined): JSX.Element;
50
50
  propTypes: unknown;
51
51
  toTypescript: () => import("react-desc").TypescriptSchema;
52
52
  };
@@ -199,7 +199,30 @@ declare const DSTextBox: {
199
199
  };
200
200
  };
201
201
  declare const DSTextBoxWithSchema: {
202
- (props?: unknown): JSX.Element;
202
+ (props?: {
203
+ [x: string]: any;
204
+ containerProps?: {} | undefined;
205
+ autoFocus?: boolean | undefined;
206
+ disabled?: boolean | undefined;
207
+ maxLength?: number | undefined;
208
+ minLength?: number | undefined;
209
+ fluidWidth?: boolean | undefined;
210
+ placeholder: any;
211
+ value?: string | undefined;
212
+ hasError?: boolean | undefined;
213
+ readOnly?: boolean | undefined;
214
+ innerRef?: null | undefined;
215
+ type?: string | undefined;
216
+ min?: undefined;
217
+ max?: undefined;
218
+ clearable?: boolean | undefined;
219
+ leftComponent?: null | undefined;
220
+ rightComponent?: null | undefined;
221
+ required?: boolean | undefined;
222
+ variant: any;
223
+ disableTooltip: any;
224
+ id: any;
225
+ } | undefined): JSX.Element;
203
226
  propTypes: unknown;
204
227
  toTypescript: () => import("react-desc").TypescriptSchema;
205
228
  };
@@ -112,7 +112,18 @@ declare const DSTimeInput: {
112
112
  };
113
113
  };
114
114
  declare const DSTimeInputWithSchema: {
115
- (props?: unknown): JSX.Element;
115
+ (props?: {
116
+ containerProps?: {} | undefined;
117
+ innerRef: any;
118
+ className?: string | undefined;
119
+ style?: {} | undefined;
120
+ onChange?: (() => null) | undefined;
121
+ format: any;
122
+ value?: string | undefined;
123
+ clearable?: boolean | undefined;
124
+ disabled?: boolean | undefined;
125
+ ariaLabel?: string | undefined;
126
+ } | undefined): JSX.Element;
116
127
  propTypes: unknown;
117
128
  toTypescript: () => import("react-desc").TypescriptSchema;
118
129
  };
@@ -126,7 +126,19 @@ declare const DSToggle: {
126
126
  };
127
127
  };
128
128
  declare const DSToggleWithSchema: {
129
- (props?: unknown): JSX.Element;
129
+ (props?: {
130
+ [x: string]: any;
131
+ containerProps: any;
132
+ hasError: any;
133
+ readOnly: any;
134
+ disabled: any;
135
+ checked: any;
136
+ labelOn: any;
137
+ labelOff: any;
138
+ name: any;
139
+ value: any;
140
+ size: any;
141
+ } | undefined): JSX.Element;
130
142
  propTypes: unknown;
131
143
  toTypescript: () => import("react-desc").TypescriptSchema;
132
144
  };