-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demo app with studio web activity for action center
- Loading branch information
1 parent
b1b6ba4
commit fdef5a5
Showing
5 changed files
with
93 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
| App Topic | Description | Link | Current Version | Last Modified Date | | ||
| :--- | :----: | ---: | ---: | ---: | | ||
| External Context Usage in Apps | This App demonstrates the ability to pass strings, ints and complex json objects using query parameters into Apps | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/expressions/ExternalContext_3.0.0_DemoApp.uiapp) |3.0.0 | Jan 2024| | ||
| Create Charts using Custom HTML Control | This App demonstrates the ability to create different types of charts using d3.js or chart.js | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/controls/custom-html/CustomHTMLCharts_DemoApp.uiapp) |2.0.0| Jan 2024| | ||
| Create Charts using Custom HTML Control | This App demonstrates the ability to create different types of charts using d3.js or chart.js | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/controls/custom-html/CustomHTMLChart_DemoApp.uiapp) |3.0.0| Feb 2024| | ||
| Custom HTML Control App Variable functions usage | This App demonstrates the ability to create a pie chart from entity data utilizing the app variable access functions provided by Custom HTML control | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/controls/custom-html/CustomHTMLPieChart_DemoApp.zip) |2.0.0| Jan 2024| | ||
| Date Time Picker using Custom HTML Control | This App demonstrates the ability to create a Date Time picker control in Apps | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/controls/custom-html/CustomHTMLDateTimeControl_DemoApp.uiapp) |2.0.0| Jan 2024| | ||
| Password Input using Custom HTML Control | This App demonstrates the ability to create password control in Apps | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/controls/custom-html/CustomHTMLPasswordControl_DemoApp.uiapp) |3.0.0 | Jan 2024| | ||
| Action app for employee onboarding | This App demonstrates the ability to create action center task using apps to onboard employee | [Sample](https://github.com/UiPath/AppsClientSample/blob/master/demo-apps/integrations/action-center-app/App_BuildADeskNew.uiapp) |1.0.0 | Mar 2024| |
1 change: 1 addition & 0 deletions
1
demo-apps/integrations/action-center-app/App_BuildADeskNew.uiapp
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+23.9 KB
...integrations/action-center-app/Instructions to install Apps for Action Center Sample.docx
Binary file not shown.
90 changes: 90 additions & 0 deletions
90
demo-apps/integrations/action-center-app/Onboarding-Doc3.json
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,90 @@ | ||
{ | ||
"Name": "Onboarding-Doc3", | ||
"Description": "Validate and approve onboarding3", | ||
"AllowedActions": [ | ||
"Approve", | ||
"Reject" | ||
], | ||
"Schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"firstName": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The unique identifier name." | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The unique identifier name." | ||
}, | ||
"preferredName": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The preferred Name name." | ||
}, | ||
"Designation": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The designation of the employee." | ||
}, | ||
"address": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The Address of the employee." | ||
}, | ||
"city": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The City of the employee." | ||
}, | ||
"zip_code": { | ||
"type": "string", | ||
"direction": "in", | ||
"description": "The zip code of the employee." | ||
}, | ||
"Laptop": { | ||
"type": "string", | ||
"description": "type of laptop" | ||
}, | ||
"Monitor": { | ||
"type": "string", | ||
"description": "type of monitor" | ||
}, | ||
"Keyboard": { | ||
"type": "string", | ||
"description": "type of Keyboard" | ||
}, | ||
"Laptopinventory": { | ||
"type": "string", | ||
"description": "inventory of laptop" | ||
}, | ||
"Monitorinventory": { | ||
"type": "string", | ||
"description": "inventory of Monitor" | ||
}, | ||
"Keyboardinventory": { | ||
"type": "string", | ||
"description": "inventory of keyboard and mouse" | ||
}, | ||
"LaptopApproved": { | ||
"type": "string", | ||
"description": "inventory of laptop" | ||
}, | ||
"MonitorApproved": { | ||
"type": "string", | ||
"description": "inventory of Monitor" | ||
}, | ||
"KeyboardApproved": { | ||
"type": "string", | ||
"description": "inventory of keyboard and mouse" | ||
} | ||
}, | ||
"required": [ | ||
"firstName", | ||
"lastName", | ||
"address" | ||
] | ||
} | ||
} |
Binary file not shown.