Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<span>
<div class="lui-tooltip hidden"
data-controller="tooltips"
data-tooltips-tippy-target-id-value=""
data-tooltips-position-value="right"
data-tooltips-interactive-value="false"
>
<div class="lui-tooltip__title">
This is a tooltip
</div>
<div class="lui-tooltip__description">
Description of a tooltip
</div>
<div class="lui-tooltip__link">
<a href=" ">Click here to know more about it</a>
</div>
<span id="lui-token_5793709857" class="lui-token lui-entity-token lui-entity-token-general lui-tag-token" style="color: #006053; border-color: #b3d0cc;">
<i class="lui-token__icon fa-regular fa-regular fa-tag"></i>
<span class="lui-token__text">Tag</span>
<div class="lui-token__actions">
</div>
</span>
<span id="lui-token_9912568611" class="lui-token lui-entity-token lui-entity-token-general lui-tag-token" style="color: #006053; border-color: #b3d0cc;">
<i class="lui-token__icon fa-regular fa-regular fa-tag"></i>
<span class="lui-token__text">Other Tag</span>
<div class="lui-token__actions">
</div>
</span>
<button class="lui-button lui-button--size-tiny lui-button--core--secondary w-fit w-fit" data-controller="lui--button">
<span class="lui-button__text" data-lui--button-target="text">
Button
</span>
</button>
<button class="lui-button lui-button--size-tiny lui-button--core--secondary w-fit w-fit" data-controller="lui--button">
<span class="lui-button__text" data-lui--button-target="text">
Other Button
</span>
</button>
</div>
Hover me
</span>

No Usage documentation to display.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<span>
<%= render LooposUi::Tooltip.new(title: "This is a tooltip", position: :right) do |tooltip| %>
<% tooltip.with_link(name: "Click here to know more about it", href: " ") %>
<% tooltip.with_tokens([
{text: "Tag"},
{text:"Other Tag"}]) %>
<% tooltip.with_buttons([
{text: "Button", href: " ", type: :secondary, size: :tiny},
{text: "Other Button", href: " ", type: :secondary, size: :tiny}]) %>
Description of a tooltip
<% end %>
Hover me
</span>