Skip to content

Commit

Permalink
Dev to master merge (#249)
Browse files Browse the repository at this point in the history
* form name issue fixed

* type updation

* type updation

* robot type configuration changes

* btn ui fixed (#242)

* updated with new package json and removed bootstrap vue

* Vue bootstrap (#243)

* form name issue fixed

* updated with new package json and removed bootstrap vue

* fixes

* Update .gitignore

* followup & due date modified (#247)

* lazy loading implemented for better perfomance (#250)

* change log (#252)

* Update Version

Co-authored-by: shuhaib-aot <[email protected]>
Co-authored-by: sneha <[email protected]>
Co-authored-by: fahad-aot <[email protected]>
  • Loading branch information
4 people authored Jul 12, 2022
1 parent 68ac557 commit 750c98a
Show file tree
Hide file tree
Showing 118 changed files with 1,734 additions and 1,963 deletions.
16 changes: 16 additions & 0 deletions camunda-formio-tasklist-vue/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changes for camunda-formio-tasklist-vue

## v1.1.3, 2022-07-12

#### Modified

- Component optimized
- Lazy loading implemented
- Bootstrap-vue dependencies removed
- Added Robocorp cloud

#### Fixes

- Fixed UI
- Fixed date inputs
- Updated UI responsiveness


## v1.1.2, 2022-04-05

#### Modified
Expand Down
3,226 changes: 1,442 additions & 1,784 deletions camunda-formio-tasklist-vue/package-lock.json

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions camunda-formio-tasklist-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "camunda-formio-tasklist-vue",
"version": "1.1.2",
"version": "1.1.3",
"description": "Vue components to integrate formsflow.ai",
"private": false,
"main": "./dist/camunda-formio-tasklist-vue.common.js",
Expand Down Expand Up @@ -31,7 +31,6 @@
"@popperjs/core": "^2.11.2",
"axios": "^0.21.1",
"bootstrap": "^5.1.3",
"bootstrap-vue": "^2.21.2",
"bpmn-js": "^8.6.0",
"crypto-js": "4.0.0",
"font-awesome": "^4.7.0",
Expand Down
8 changes: 6 additions & 2 deletions camunda-formio-tasklist-vue/src/components/form/FormList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ export default class FormList extends Vue {
private formperPage: number = 10;
private formNumPages: number = 1;
private formcurrentPage: number = 1;
private query ={
page:this.formNumPages,
limit:this.formperPage
}
@Prop({
}) private token!: string;
Expand All @@ -68,7 +72,7 @@ export default class FormList extends Vue {
formListItems () {
const apiUrl: any = localStorage.getItem("formsflow.ai.api.url");
CamundaRest.listForms(this.token, apiUrl).then((response) => {
CamundaRest.listForms(this.token, apiUrl,this.query).then((response) => {
this.formNumPages = Math.ceil(response.data.forms.length / this.formperPage);
this.formList = response.data.forms.splice(
(this.formcurrentPage - 1) * this.formperPage,
Expand All @@ -79,7 +83,7 @@ export default class FormList extends Vue {
mounted () {
const apiUrl: any = localStorage.getItem("formsflow.ai.api.url");
CamundaRest.listForms(this.token, apiUrl).then((response) => {
CamundaRest.listForms(this.token, apiUrl,this.query).then((response) => {
this.formList = response.data.forms;
});
}
Expand Down
Loading

0 comments on commit 750c98a

Please sign in to comment.