@terminus/ui-copy
v4.0.1
Published
<h1>Copy</h1>
Downloads
11
Keywords
Readme
This component is used to contain very long strings that users may need to copy.
Table of Contents
Installation
Use the ng add
command to quickly install all the needed dependencies:
ng add @terminus/ui-copy
CSS imports
In your top-level stylesheet, add these imports:
@import '~@terminus/design-tokens/css/library-design-tokens.css';
@import '~@terminus/ui-styles/terminus-ui.css';
CSS resources
Load the needed font families by adding this link to the <head>
of your application:
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
Usage
Pass in text content:
<ts-copy>My text to copy!</ts-copy>
Display format
Three display formats are offered:
| Mode | Description |
|------------|---------------------------------------------------------|
| standard
| The full, bordered version (default) |
| minimal
| Slightly more compact with no border (useful in tables) |
| icon
| Icon only, all text hidden (quick copy must be enabled) |
Initial selection
By default, when a user focuses on this component, the text is automatically selected. This provides an easy fallback in the instance where the user's browser does not support clipboard functionality.
It should be extremely rare, but if needed, this functionality can be disabled.
<ts-copy [disableInitialSelection]="true">My text to copy!</ts-copy>