-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1021 from upyog/digit2.9-merge
Digit2.9 merge
- Loading branch information
Showing
2,743 changed files
with
143,110 additions
and
1,898 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
|
||
"printWidth": 150 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 0 additions & 55 deletions
55
frontend/micro-ui/web/micro-ui-internals/packages/css/README.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,4 +52,4 @@ module.exports = { | |
// }, | ||
// }, | ||
// }; | ||
// }; | ||
// }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...o-ui/web/micro-ui-internals/packages/libraries/src/hooks/surveys/useCfdefinitionsearch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Surveys } from "../../services/elements/Surveys"; | ||
import { useQuery } from "react-query"; | ||
|
||
const useCfdefinitionsearch = (filters, config) => { | ||
return useQuery([`search_surveys`,filters.Pagination,filters.ServiceDefinitionCriteria], () => Surveys.cfdefinitionsearch(filters), { ...config }); | ||
}; | ||
|
||
export default useCfdefinitionsearch; |
9 changes: 9 additions & 0 deletions
9
...eb/micro-ui-internals/packages/libraries/src/hooks/surveys/useCfdefinitionsearchresult.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Surveys } from "../../services/elements/Surveys"; | ||
import { useQuery } from "react-query"; | ||
|
||
const useCfdefinitionsearchresult = (filters, config) => { | ||
console.log(config,"useCfdefinitionsearchresult") | ||
return useQuery(`useCfdefinitionsearchresult_search_surveys_${new Date()}`, () => Surveys.cfdefinitionsearch(filters), { ...config }); | ||
}; | ||
|
||
export default useCfdefinitionsearchresult; |
10 changes: 10 additions & 0 deletions
10
...d/micro-ui/web/micro-ui-internals/packages/libraries/src/hooks/surveys/useCreateSurvey.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Surveys } from "../../services/elements/Surveys"; | ||
import { useMutation } from "react-query"; | ||
|
||
const useCreateSurveysDef = (filters, config) => { | ||
console.log("useCreateSurveysDef"); | ||
|
||
return useMutation((filters) => Surveys.createSurvey(filters)); | ||
}; | ||
|
||
export default useCreateSurveysDef; |
9 changes: 9 additions & 0 deletions
9
...ui/web/micro-ui-internals/packages/libraries/src/hooks/surveys/useSelectedSurveySearch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Surveys } from "../../services/elements/Surveys"; | ||
import { useQuery } from "react-query"; | ||
|
||
const useSelectedSurveySearch = (filters, config) => { | ||
console.log(config,"useSelectedSurveySearch") | ||
return useQuery(`search_selected_survey_${new Date()}`, () => Surveys.selectedSurveySearch(filters), { ...config }); | ||
}; | ||
|
||
export default useSelectedSurveySearch; |
8 changes: 8 additions & 0 deletions
8
...ui/web/micro-ui-internals/packages/libraries/src/hooks/surveys/useSubmitSurveyResponse.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Surveys } from "../../services/elements/Surveys"; | ||
import { useMutation } from "react-query"; | ||
|
||
const useSubmitSurveyResponse = (filters, config) => { | ||
return useMutation((filters) => Surveys.submitSurveyResponse(filters)); | ||
}; | ||
|
||
export default useSubmitSurveyResponse; |
9 changes: 9 additions & 0 deletions
9
...d/micro-ui/web/micro-ui-internals/packages/libraries/src/hooks/surveys/useSurveyUpdate.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Surveys } from "../../services/elements/Surveys"; | ||
import { useMutation } from "react-query"; | ||
|
||
const useUpdateSurvey = (filters, config) => { | ||
console.log("updateSurvey") | ||
return useMutation((filters) => Surveys.updateSurvey(filters)); | ||
}; | ||
|
||
export default useUpdateSurvey; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.