Support

gcp/Item/Support
include('gcp/Item/Support')
Illustration Support SupportCard SupportGroup
illustration for Illustration illustration for Support illustration for SupportCard illustration for SupportGroup

Sprites

The item provides the following sriptes:

  • <$SupportXs>
  • <$SupportSm>
  • <$SupportMd>
  • <$SupportLg>

Support

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element Support
include('gcp/Item/Support')

' renders the element
Support('Support', 'Support', 'an optional tech label', 'an optional description')
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element Support
include('gcp/Item/Support')

' renders the element
Support('Support', 'Support', 'an optional tech label', 'an optional description')
@enduml

SupportCard

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element SupportCard
include('gcp/Item/Support')

' renders the element
SupportCard('SupportCard', 'Support Card', 'an optional description')
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element SupportCard
include('gcp/Item/Support')

' renders the element
SupportCard('SupportCard', 'Support Card', 'an optional description')
@enduml

SupportGroup

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element SupportGroup
include('gcp/Item/Support')

' renders the element
SupportGroup('SupportGroup', 'Support Group', 'an optional tech label') {
    note as note
        the content of the group
    end note
}
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element SupportGroup
include('gcp/Item/Support')

' renders the element
SupportGroup('SupportGroup', 'Support Group', 'an optional tech label') {
    note as note
        the content of the group
    end note
}
@enduml