@elliemae/ds-controlled-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 +10 -10
- package/types/controlled-autocomplete/Autocomplete.d.ts +1 -1
- package/types/controlled-checkbox/ControlledCheckbox.d.ts +1 -1
- package/types/controlled-combobox/ComboBox.d.ts +1 -1
- package/types/controlled-date-range-picker/ControlledDateRangePicker.d.ts +1 -1
- package/types/controlled-date-time-picker/ControlledDateTimePicker.d.ts +1 -1
- package/types/controlled-toggle/ControlledToggle.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-controlled-form",
|
|
3
|
-
"version": "2.2.0-
|
|
3
|
+
"version": "2.2.0-next.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Controlled Form Controllers",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -744,15 +744,15 @@
|
|
|
744
744
|
"build": "node ../../scripts/build/build.js"
|
|
745
745
|
},
|
|
746
746
|
"dependencies": {
|
|
747
|
-
"@elliemae/ds-button": "2.2.0-
|
|
748
|
-
"@elliemae/ds-form-layout-blocks": "2.2.0-
|
|
749
|
-
"@elliemae/ds-grid": "2.2.0-
|
|
750
|
-
"@elliemae/ds-icon": "2.2.0-
|
|
751
|
-
"@elliemae/ds-icons": "2.2.0-
|
|
752
|
-
"@elliemae/ds-props-helpers": "2.2.0-
|
|
753
|
-
"@elliemae/ds-system": "2.2.0-
|
|
754
|
-
"@elliemae/ds-tooltip": "2.2.0-
|
|
755
|
-
"@elliemae/ds-truncated-tooltip-text": "2.2.0-
|
|
747
|
+
"@elliemae/ds-button": "2.2.0-next.4",
|
|
748
|
+
"@elliemae/ds-form-layout-blocks": "2.2.0-next.4",
|
|
749
|
+
"@elliemae/ds-grid": "2.2.0-next.4",
|
|
750
|
+
"@elliemae/ds-icon": "2.2.0-next.4",
|
|
751
|
+
"@elliemae/ds-icons": "2.2.0-next.4",
|
|
752
|
+
"@elliemae/ds-props-helpers": "2.2.0-next.4",
|
|
753
|
+
"@elliemae/ds-system": "2.2.0-next.4",
|
|
754
|
+
"@elliemae/ds-tooltip": "2.2.0-next.4",
|
|
755
|
+
"@elliemae/ds-truncated-tooltip-text": "2.2.0-next.4",
|
|
756
756
|
"prop-types": "~15.7.2",
|
|
757
757
|
"react-desc": "~4.1.3",
|
|
758
758
|
"react-popper": "~2.2.5",
|
|
@@ -55,7 +55,7 @@ declare const DSAutocomplete: {
|
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
declare const DSAutocompleteWithSchema: {
|
|
58
|
-
(props?:
|
|
58
|
+
(props?: AutocompletePropsT | undefined): JSX.Element;
|
|
59
59
|
propTypes: unknown;
|
|
60
60
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
61
61
|
};
|
|
@@ -64,7 +64,7 @@ declare const DSControlledCheckbox: {
|
|
|
64
64
|
};
|
|
65
65
|
};
|
|
66
66
|
declare const DSControlledCheckboxWithSchema: {
|
|
67
|
-
(props?:
|
|
67
|
+
(props?: DSControlledCheckboxPropsT | undefined): JSX.Element;
|
|
68
68
|
propTypes: unknown;
|
|
69
69
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
70
70
|
};
|
|
@@ -58,7 +58,7 @@ declare const DSComboBox: {
|
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
declare const DSComboBoxWithSchema: {
|
|
61
|
-
(props?:
|
|
61
|
+
(props?: ComboBoxPropsT | undefined): JSX.Element;
|
|
62
62
|
propTypes: unknown;
|
|
63
63
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
64
64
|
};
|
|
@@ -13,7 +13,7 @@ declare const DSControlledDateRangePicker: {
|
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
15
|
declare const DSControlledDateRangePickerWithSchema: {
|
|
16
|
-
(props?:
|
|
16
|
+
(props?: DateRangePickerPropsT | undefined): JSX.Element;
|
|
17
17
|
propTypes: unknown;
|
|
18
18
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
19
19
|
};
|
|
@@ -85,7 +85,7 @@ declare const DSControlledDateTimePicker: {
|
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
87
|
declare const DSControlledDateTimePickerWithSchema: {
|
|
88
|
-
(props?:
|
|
88
|
+
(props?: DateTimePickerPropsT | undefined): JSX.Element;
|
|
89
89
|
propTypes: unknown;
|
|
90
90
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
91
91
|
};
|
|
@@ -91,7 +91,7 @@ declare const DSControlledToggle: {
|
|
|
91
91
|
};
|
|
92
92
|
};
|
|
93
93
|
declare const DSControlledToggleWithSchema: {
|
|
94
|
-
(props?:
|
|
94
|
+
(props?: DSControlledTogglePropsT | undefined): JSX.Element;
|
|
95
95
|
propTypes: unknown;
|
|
96
96
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
97
97
|
};
|