@elliemae/ds-form 2.2.0-next.3 → 2.2.0-rc.0

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-next.3",
3
+ "version": "2.2.0-rc.0",
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-next.3",
752
- "@elliemae/ds-circular-progress-indicator": "2.2.0-next.3",
753
- "@elliemae/ds-classnames": "2.2.0-next.3",
754
- "@elliemae/ds-controlled-form": "2.2.0-next.3",
755
- "@elliemae/ds-dropdownmenu": "2.2.0-next.3",
756
- "@elliemae/ds-form": "2.2.0-next.3",
757
- "@elliemae/ds-grid": "2.2.0-next.3",
758
- "@elliemae/ds-icon": "2.2.0-next.3",
759
- "@elliemae/ds-icons": "2.2.0-next.3",
760
- "@elliemae/ds-menu": "2.2.0-next.3",
761
- "@elliemae/ds-overlay": "2.2.0-next.3",
762
- "@elliemae/ds-pills": "2.2.0-next.3",
763
- "@elliemae/ds-popper": "2.2.0-next.3",
764
- "@elliemae/ds-popperjs": "2.2.0-next.3",
765
- "@elliemae/ds-props-helpers": "2.2.0-next.3",
766
- "@elliemae/ds-separator": "2.2.0-next.3",
767
- "@elliemae/ds-shared": "2.2.0-next.3",
768
- "@elliemae/ds-system": "2.2.0-next.3",
769
- "@elliemae/ds-text-wrapper": "2.2.0-next.3",
770
- "@elliemae/ds-tooltip": "2.2.0-next.3",
771
- "@elliemae/ds-truncated-tooltip-text": "2.2.0-next.3",
772
- "@elliemae/ds-utilities": "2.2.0-next.3",
751
+ "@elliemae/ds-button": "2.2.0-rc.0",
752
+ "@elliemae/ds-circular-progress-indicator": "2.2.0-rc.0",
753
+ "@elliemae/ds-classnames": "2.2.0-rc.0",
754
+ "@elliemae/ds-controlled-form": "2.2.0-rc.0",
755
+ "@elliemae/ds-dropdownmenu": "2.2.0-rc.0",
756
+ "@elliemae/ds-form": "2.2.0-rc.0",
757
+ "@elliemae/ds-grid": "2.2.0-rc.0",
758
+ "@elliemae/ds-icon": "2.2.0-rc.0",
759
+ "@elliemae/ds-icons": "2.2.0-rc.0",
760
+ "@elliemae/ds-menu": "2.2.0-rc.0",
761
+ "@elliemae/ds-overlay": "2.2.0-rc.0",
762
+ "@elliemae/ds-pills": "2.2.0-rc.0",
763
+ "@elliemae/ds-popper": "2.2.0-rc.0",
764
+ "@elliemae/ds-popperjs": "2.2.0-rc.0",
765
+ "@elliemae/ds-props-helpers": "2.2.0-rc.0",
766
+ "@elliemae/ds-separator": "2.2.0-rc.0",
767
+ "@elliemae/ds-shared": "2.2.0-rc.0",
768
+ "@elliemae/ds-system": "2.2.0-rc.0",
769
+ "@elliemae/ds-text-wrapper": "2.2.0-rc.0",
770
+ "@elliemae/ds-tooltip": "2.2.0-rc.0",
771
+ "@elliemae/ds-truncated-tooltip-text": "2.2.0-rc.0",
772
+ "@elliemae/ds-utilities": "2.2.0-rc.0",
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?: DSCheckboxPropsT | undefined): JSX.Element;
97
+ (props?: unknown): JSX.Element;
98
98
  propTypes: unknown;
99
99
  toTypescript: () => import("react-desc").TypescriptSchema;
100
100
  };
@@ -65,16 +65,7 @@ declare const DSCheckboxGroup: {
65
65
  };
66
66
  };
67
67
  declare const DSCheckboxGroupWithSchema: {
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;
68
+ (props?: unknown): JSX.Element;
78
69
  propTypes: unknown;
79
70
  toTypescript: () => import("react-desc").TypescriptSchema;
80
71
  };
@@ -62,57 +62,7 @@ declare const DSComboBox2: {
62
62
  contextType?: React.Context<any> | undefined;
63
63
  };
64
64
  declare const ComboBoxWithSchema: {
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;
65
+ (props?: unknown): JSX.Element;
116
66
  propTypes: unknown;
117
67
  toTypescript: () => import("react-desc").TypescriptSchema;
118
68
  };
@@ -89,19 +89,7 @@ declare const DSDateInputV2: {
89
89
  };
90
90
  };
91
91
  declare const DSDateInputV2WithSchema: {
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;
92
+ (props?: unknown): JSX.Element;
105
93
  propTypes: unknown;
106
94
  toTypescript: () => import("react-desc").TypescriptSchema;
107
95
  };
@@ -471,46 +471,7 @@ declare const DSFormItemLayout: {
471
471
  };
472
472
  };
473
473
  declare const DSFormItemLayoutWithSchema: {
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;
474
+ (props?: unknown): JSX.Element;
514
475
  propTypes: unknown;
515
476
  toTypescript: () => import("react-desc").TypescriptSchema;
516
477
  };
@@ -23,10 +23,7 @@ declare const DSError: {
23
23
  };
24
24
  };
25
25
  declare const DSErrorWithSchema: {
26
- (props?: {
27
- hasError?: boolean | undefined;
28
- errorText?: string | undefined;
29
- } | undefined): JSX.Element;
26
+ (props?: unknown): JSX.Element;
30
27
  propTypes: unknown;
31
28
  toTypescript: () => import("react-desc").TypescriptSchema;
32
29
  };
@@ -64,15 +64,7 @@ declare const DSInputGroup: {
64
64
  };
65
65
  };
66
66
  declare const DSInputGroupWithSchema: {
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;
67
+ (props?: unknown): JSX.Element;
76
68
  propTypes: unknown;
77
69
  toTypescript: () => import("react-desc").TypescriptSchema;
78
70
  };
@@ -62,17 +62,7 @@ declare const DSInputProtected: {
62
62
  };
63
63
  };
64
64
  declare const DSInputProtectedWithSchema: {
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;
65
+ (props?: unknown): JSX.Element;
76
66
  propTypes: unknown;
77
67
  toTypescript: () => import("react-desc").TypescriptSchema;
78
68
  };
@@ -13,7 +13,7 @@ declare const MenuItem: {
13
13
  };
14
14
  };
15
15
  declare const MenuItemWithSchema: {
16
- (props?: MenuItemT | undefined): JSX.Element;
16
+ (props?: unknown): 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?: MenuItemT | undefined): JSX.Element;
17
+ (props?: unknown): 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?: MenuItemT | undefined): JSX.Element;
16
+ (props?: unknown): 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?: DSRadioT | undefined): JSX.Element;
152
+ (props?: unknown): JSX.Element;
153
153
  propTypes: unknown;
154
154
  toTypescript: () => import("react-desc").TypescriptSchema;
155
155
  };
@@ -64,16 +64,7 @@ declare const DSRadioGroup: {
64
64
  };
65
65
  };
66
66
  declare const DSRadioGroupWithSchema: {
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;
67
+ (props?: unknown): JSX.Element;
77
68
  propTypes: unknown;
78
69
  toTypescript: () => import("react-desc").TypescriptSchema;
79
70
  };
@@ -168,27 +168,7 @@ declare const DSSearchBox: {
168
168
  };
169
169
  };
170
170
  declare const SearchBoxWithSchema: {
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;
171
+ (props?: unknown): JSX.Element;
192
172
  propTypes: unknown;
193
173
  toTypescript: () => import("react-desc").TypescriptSchema;
194
174
  };
@@ -46,7 +46,7 @@ declare const NavSearchBox: {
46
46
  };
47
47
  };
48
48
  declare const DSNavSearchBoxWithSchema: {
49
- (props?: PropsT | undefined): JSX.Element;
49
+ (props?: unknown): JSX.Element;
50
50
  propTypes: unknown;
51
51
  toTypescript: () => import("react-desc").TypescriptSchema;
52
52
  };
@@ -199,30 +199,7 @@ declare const DSTextBox: {
199
199
  };
200
200
  };
201
201
  declare const DSTextBoxWithSchema: {
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;
202
+ (props?: unknown): JSX.Element;
226
203
  propTypes: unknown;
227
204
  toTypescript: () => import("react-desc").TypescriptSchema;
228
205
  };
@@ -112,18 +112,7 @@ declare const DSTimeInput: {
112
112
  };
113
113
  };
114
114
  declare const DSTimeInputWithSchema: {
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;
115
+ (props?: unknown): JSX.Element;
127
116
  propTypes: unknown;
128
117
  toTypescript: () => import("react-desc").TypescriptSchema;
129
118
  };
@@ -126,19 +126,7 @@ declare const DSToggle: {
126
126
  };
127
127
  };
128
128
  declare const DSToggleWithSchema: {
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;
129
+ (props?: unknown): JSX.Element;
142
130
  propTypes: unknown;
143
131
  toTypescript: () => import("react-desc").TypescriptSchema;
144
132
  };