@arquimedes.co/eureka-forms 2.0.61 → 2.0.64-test
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/dist/@Types/Condition.d.ts +33 -2
- package/dist/@Types/Entity.d.ts +4 -1
- package/dist/@Types/FormStep.d.ts +21 -16
- package/dist/@Types/GenericFormSteps.d.ts +11 -0
- package/dist/@Types/Time.d.ts +6 -0
- package/dist/@Types/Time.js +1 -0
- package/dist/App/App.d.ts +3 -1
- package/dist/App/App.js +1 -1
- package/dist/App/AppFunctions.d.ts +0 -3
- package/dist/App/AppFunctions.js +9 -53
- package/dist/Form/ConfirmationDialog/ConfirmationDialog.js +26 -3
- package/dist/Form/ConfirmationDialog/ConfirmationDialog.module.css +10 -5
- package/dist/Form/Form.d.ts +4 -4
- package/dist/Form/Form.js +2 -2
- package/dist/Form/FormFunctions.js +13 -13
- package/dist/Form/FormTypes/ColumnForm/ColumnForm.d.ts +1 -1
- package/dist/Form/FormTypes/ColumnForm/ColumnForm.js +18 -3
- package/dist/FormSteps/@Construction/CBRElementStep/CBRElementStep.js +1 -1
- package/dist/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.js +1 -1
- package/dist/FormSteps/Step.js +19 -15
- package/dist/FormSteps/StepFunctions.js +140 -53
- package/dist/FormSteps/TimePickerStep/MaterialTimePickerStep/MaterialTimePickerStep.d.ts +4 -0
- package/dist/FormSteps/TimePickerStep/MaterialTimePickerStep/MaterialTimePickerStep.js +29 -0
- package/dist/FormSteps/TimePickerStep/TimePickerStep.d.ts +12 -0
- package/dist/FormSteps/TimePickerStep/TimePickerStep.js +25 -0
- package/dist/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.d.ts +2 -2
- package/dist/Shared/RoundedSelect/RoundedSelect.d.ts +2 -2
- package/dist/Shared/RoundedTimePicker/RoundedTimePicker.d.ts +35 -0
- package/dist/Shared/RoundedTimePicker/RoundedTimePicker.js +293 -0
- package/dist/Shared/RoundedTimePicker/RoundedTimePicker.module.css +30 -0
- package/dist/Shared/Toggle/Toggle.d.ts +18 -0
- package/dist/Shared/Toggle/Toggle.js +31 -0
- package/dist/Utils/FormStepFunctions.d.ts +15 -0
- package/dist/Utils/FormStepFunctions.js +166 -0
- package/dist/constants/EntityPropertyTypes.d.ts +1 -0
- package/dist/constants/EntityPropertyTypes.js +1 -0
- package/dist/constants/FormStepTypes.d.ts +3 -2
- package/dist/constants/FormStepTypes.js +19 -18
- package/package.json +2 -2
|
@@ -7,23 +7,24 @@ export var FormStyleTypes;
|
|
|
7
7
|
(function (FormStyleTypes) {
|
|
8
8
|
FormStyleTypes["MATERIAL"] = "MATERIAL";
|
|
9
9
|
})(FormStyleTypes || (FormStyleTypes = {}));
|
|
10
|
-
export var
|
|
11
|
-
(function (
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
10
|
+
export var FormStepTypes;
|
|
11
|
+
(function (FormStepTypes) {
|
|
12
|
+
FormStepTypes["TIMEPICKER"] = "TIMEPICKER";
|
|
13
|
+
FormStepTypes["TITLE"] = "TITLE";
|
|
14
|
+
FormStepTypes["RATING"] = "RATING";
|
|
15
|
+
FormStepTypes["CHECKBOX"] = "CHECKBOX";
|
|
16
|
+
FormStepTypes["TEXTAREA"] = "TEXTAREA";
|
|
17
|
+
FormStepTypes["DATEPICKER"] = "DATEPICKER";
|
|
18
|
+
FormStepTypes["FILEUPLOAD"] = "FILEUPLOAD";
|
|
19
|
+
FormStepTypes["TEXTINPUT"] = "TEXTINPUT";
|
|
20
|
+
FormStepTypes["SEPARATOR"] = "SEPARATOR";
|
|
21
|
+
FormStepTypes["SELECTOR"] = "SELECTOR";
|
|
22
|
+
FormStepTypes["CLASSIFIER_SELECTOR"] = "CLASSIFIER_SELECTOR";
|
|
23
|
+
FormStepTypes["COLLAPSIBLE"] = "COLLAPSIBLE";
|
|
24
|
+
FormStepTypes["MAPPER"] = "MAPPER";
|
|
25
|
+
FormStepTypes["ENTITYVALUEPICKER"] = "ENTITYVALUEPICKER";
|
|
26
|
+
FormStepTypes["API_SELECTOR"] = "API_SELECTOR";
|
|
27
|
+
})(FormStepTypes || (FormStepTypes = {}));
|
|
27
28
|
export var OptionTypes;
|
|
28
29
|
(function (OptionTypes) {
|
|
29
30
|
OptionTypes["DEFAULT"] = "DEFAULT";
|
|
@@ -54,7 +55,7 @@ export var RatingTypes;
|
|
|
54
55
|
RatingTypes["SATISFACTION"] = "SATISFACTION";
|
|
55
56
|
RatingTypes["LIKE"] = "LIKE";
|
|
56
57
|
})(RatingTypes || (RatingTypes = {}));
|
|
57
|
-
export default
|
|
58
|
+
export default FormStepTypes;
|
|
58
59
|
export var MapperStyleTypes;
|
|
59
60
|
(function (MapperStyleTypes) {
|
|
60
61
|
MapperStyleTypes["PILL"] = "PILL";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arquimedes.co/eureka-forms",
|
|
3
3
|
"repository": "git://github.com/Arquimede5/Eureka-Forms.git",
|
|
4
|
-
"version":
|
|
4
|
+
"version":"2.0.64-test",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "react-scripts start",
|
|
7
7
|
"build": "react-scripts build",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
82
82
|
"@typescript-eslint/parser": "^6.13.1",
|
|
83
83
|
"chromatic": "^10.0.0",
|
|
84
|
-
"cypress": "^13.
|
|
84
|
+
"cypress": "^13.8.1",
|
|
85
85
|
"dotenv-webpack": "^8.0.1",
|
|
86
86
|
"eslint": "^8.55.0",
|
|
87
87
|
"eslint-config-prettier": "^9.1.0",
|