mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-30 03:38:54 +01:00
playground: update
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" color="black" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" color="black" variant="link" />
|
||||
</div>
|
||||
<div class="flex items-center gap-2 -ml-[174px]">
|
||||
<div class="flex items-center gap-2 -ml-[171px]">
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" size="2xs" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" size="xs" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" size="sm" />
|
||||
@@ -53,7 +53,7 @@
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" size="lg" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" size="xl" />
|
||||
</div>
|
||||
<div class="flex items-center gap-2 -ml-[162px]">
|
||||
<div class="flex items-center gap-2 -ml-[159px]">
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Square" square size="2xs" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Square" square size="xs" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Square" square size="sm" />
|
||||
@@ -61,7 +61,7 @@
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Square" square size="lg" />
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Square" square size="xl" />
|
||||
</div>
|
||||
<div class="flex items-center gap-2 -ml-[68px]">
|
||||
<div class="flex items-center gap-2 -ml-[67px]">
|
||||
<UButton icon="i-heroicons-rocket-launch" size="2xs" />
|
||||
<UButton icon="i-heroicons-rocket-launch" size="xs" />
|
||||
<UButton icon="i-heroicons-rocket-launch" size="sm" />
|
||||
|
||||
@@ -1,10 +1,17 @@
|
||||
<template>
|
||||
<div class="flex gap-1.5">
|
||||
<UCollapsible class="space-y-2 flex flex-col justify-start">
|
||||
<UButton trailing-icon="i-heroicons-chevron-right" label="Open" class="group" :ui="{ icon: 'group-data-[state=open]:rotate-180' }" />
|
||||
<UCollapsible class="space-y-2 w-48">
|
||||
<UButton
|
||||
class="group"
|
||||
color="gray"
|
||||
label="Open"
|
||||
block
|
||||
trailing-icon="i-heroicons-chevron-right-20-solid"
|
||||
:ui="{ trailingIcon: 'group-data-[state=open]:rotate-90 transition' }"
|
||||
/>
|
||||
|
||||
<template #content>
|
||||
<div class="bg-red-500 h-12 w-48" />
|
||||
<div class="bg-red-500 h-12 w-full" />
|
||||
</template>
|
||||
</UCollapsible>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="flex gap-1.5">
|
||||
<UTooltip content="Tooltip" side="bottom">
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" loading />
|
||||
<UTooltip content="Tooltip">
|
||||
<UButton icon="i-heroicons-rocket-launch" label="Button" disabled />
|
||||
</UTooltip>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user