This is an automated email from the ASF dual-hosted git repository.
ocket8888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git.
from 1afe5aa Bump minimist from 1.2.5 to 1.2.6 in /traffic_portal (#6683)
add b9506a3 Improve TP Tenant Selection (#6623)
No new revisions were added by this update.
Summary of changes:
CHANGELOG.md | 1 +
traffic_portal/app/src/app.js | 1 +
.../app/src/common/directives/_directives.scss | 89 +++++
.../directives/treeSelect/TreeSelectDirective.d.ts | 67 ++++
.../directives/treeSelect/TreeSelectDirective.js | 217 ++++++++++++
.../directives/{match => treeSelect}/index.js | 5 +-
.../directives/treeSelect/tree.select.tpl.html | 40 +++
.../FormDeliveryServiceController.js | 4 -
.../form.deliveryService.DNS.tpl.html | 4 +-
.../form.deliveryService.HTTP.tpl.html | 4 +-
.../form.deliveryService.Steering.tpl.html | 4 +-
.../form.deliveryService.anyMap.tpl.html | 4 +-
.../modules/form/origin/FormOriginController.js | 4 -
.../modules/form/origin/form.origin.tpl.html | 4 +-
.../modules/form/tenant/FormTenantController.js | 4 -
.../modules/form/tenant/form.tenant.tpl.html | 4 +-
.../common/modules/form/user/FormUserController.js | 4 -
.../common/modules/form/user/form.user.tpl.html | 4 +-
.../user/register/FormRegisterUserController.js | 4 -
.../form/user/register/form.user.register.tpl.html | 4 +-
.../private/user/edit/UserEditController.js | 4 -
traffic_portal/app/src/styles/main.scss | 1 +
.../integration/Data/deliveryservicerequest.ts | 6 +-
.../test/integration/Data/deliveryservices.ts | 387 +++++++++++----------
traffic_portal/test/integration/Data/origins.ts | 12 +-
traffic_portal/test/integration/Data/tenant.ts | 4 +-
traffic_portal/test/integration/Data/users.ts | 4 +-
.../PageObjects/DeliveryServicePage.po.ts | 13 +-
.../PageObjects/DeliveryServiceRequestPage.po.ts | 5 +-
.../test/integration/PageObjects/OriginsPage.po.ts | 5 +-
.../test/integration/PageObjects/TenantsPage.po.ts | 9 +-
.../test/integration/PageObjects/UsersPage.po.ts | 8 +-
32 files changed, 659 insertions(+), 271 deletions(-)
create mode 100644 traffic_portal/app/src/common/directives/_directives.scss
create mode 100644
traffic_portal/app/src/common/directives/treeSelect/TreeSelectDirective.d.ts
create mode 100644
traffic_portal/app/src/common/directives/treeSelect/TreeSelectDirective.js
copy traffic_portal/app/src/common/directives/{match => treeSelect}/index.js
(85%)
create mode 100644
traffic_portal/app/src/common/directives/treeSelect/tree.select.tpl.html