1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

fix(rolling-restart): wording and icon changes [EE-4834] (#8239)

* icon and wording changes

* fix inconsistencies and grammar

* fix(ui/buttons): show tooltip

* Change icon and confirmation dialog

* edit icon

* rename be-only-button to be-teaser-button for consistency

Co-authored-by: Chaim Lev-Ari <chaim.levi-ari@portainer.io>
This commit is contained in:
Matt Hook 2023-01-10 10:02:07 +13:00 committed by GitHub
parent 1d42db93f1
commit 4dc643acd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 45 additions and 36 deletions

View file

@ -35,6 +35,7 @@ import { TeamsSelector } from '@@/TeamsSelector';
import { PortainerSelect } from '@@/form-components/PortainerSelect';
import { Slider } from '@@/form-components/Slider';
import { TagButton } from '@@/TagButton';
import { BETeaserButton } from '@@/BETeaserButton';
import { fileUploadField } from './file-upload-field';
import { switchField } from './switch-field';
@ -46,6 +47,17 @@ export const componentsModule = angular
'tagSelector',
r2a(withReactQuery(TagSelector), ['allowCreate', 'onChange', 'value'])
)
.component(
'beTeaserButton',
r2a(BETeaserButton, [
'featureId',
'heading',
'message',
'buttonText',
'className',
'icon',
])
)
.component(
'tagButton',
r2a(TagButton, ['value', 'label', 'title', 'onRemove'])