@makolabs/ripple 1.11.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/elements/collapsible/Collapsible.svelte +79 -0
- package/dist/elements/collapsible/Collapsible.svelte.d.ts +4 -0
- package/dist/elements/collapsible/CollapsibleTestWrapper.svelte +23 -0
- package/dist/elements/collapsible/CollapsibleTestWrapper.svelte.d.ts +8 -0
- package/dist/elements/collapsible/collapsible-types.d.ts +16 -0
- package/dist/elements/collapsible/collapsible-types.js +1 -0
- package/dist/elements/combobox/Combobox.svelte +274 -0
- package/dist/elements/combobox/Combobox.svelte.d.ts +25 -0
- package/dist/elements/combobox/ComboboxTestWrapper.svelte +38 -0
- package/dist/elements/combobox/ComboboxTestWrapper.svelte.d.ts +4 -0
- package/dist/elements/combobox/combobox-types.d.ts +39 -0
- package/dist/elements/combobox/combobox-types.js +1 -0
- package/dist/elements/empty-state/EmptyState.svelte +39 -0
- package/dist/elements/empty-state/EmptyState.svelte.d.ts +4 -0
- package/dist/elements/empty-state/EmptyStateTestWrapper.svelte +25 -0
- package/dist/elements/empty-state/EmptyStateTestWrapper.svelte.d.ts +8 -0
- package/dist/elements/empty-state/empty-state-types.d.ts +12 -0
- package/dist/elements/empty-state/empty-state-types.js +1 -0
- package/dist/elements/empty-state/empty-state.d.ts +100 -0
- package/dist/elements/empty-state/empty-state.js +42 -0
- package/dist/elements/pagination/Pagination.svelte +1 -1
- package/dist/elements/spinner/Spinner.svelte +38 -0
- package/dist/elements/spinner/Spinner.svelte.d.ts +4 -0
- package/dist/elements/spinner/spinner-types.d.ts +9 -0
- package/dist/elements/spinner/spinner-types.js +1 -0
- package/dist/elements/spinner/spinner.d.ts +163 -0
- package/dist/elements/spinner/spinner.js +32 -0
- package/dist/elements/tooltip/Tooltip.svelte +82 -0
- package/dist/elements/tooltip/Tooltip.svelte.d.ts +4 -0
- package/dist/elements/tooltip/TooltipTestWrapper.svelte +14 -0
- package/dist/elements/tooltip/TooltipTestWrapper.svelte.d.ts +7 -0
- package/dist/elements/tooltip/tooltip-types.d.ts +13 -0
- package/dist/elements/tooltip/tooltip-types.js +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +13 -0
- package/dist/layout/card/MetricCard.svelte +61 -5
- package/dist/layout/card/MetricCardActionWrapper.svelte +29 -0
- package/dist/layout/card/MetricCardActionWrapper.svelte.d.ts +8 -0
- package/dist/layout/card/card-types.d.ts +19 -0
- package/dist/layout/card/metric-card.d.ts +26 -26
- package/dist/layout/card/metric-card.js +16 -2
- package/dist/layout/navbar/navbar.js +1 -1
- package/dist/modal/Modal.svelte +1 -1
- package/dist/modal/ModalFooter.svelte +35 -0
- package/dist/modal/ModalFooter.svelte.d.ts +11 -0
- package/dist/modal/ModalFooterTestWrapper.svelte +17 -0
- package/dist/modal/ModalFooterTestWrapper.svelte.d.ts +8 -0
- package/dist/modal/modal.js +1 -1
- package/dist/pipeline/Pipeline.svelte +21 -6
- package/dist/pipeline/pipeline-types.d.ts +7 -0
- package/dist/pipeline/pipeline.d.ts +3 -3
- package/dist/pipeline/pipeline.js +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import MetricCard from './MetricCard.svelte';
|
|
3
|
+
import type { MetricCardProps } from '../../index.js';
|
|
4
|
+
|
|
5
|
+
type Props = Omit<MetricCardProps, 'action' | 'actionHover'> & {
|
|
6
|
+
actionText?: string;
|
|
7
|
+
actionHoverText?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
let { actionText, actionHoverText, ...rest }: Props = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
{#snippet actionSnippet()}
|
|
14
|
+
<span class="bg-default-100 text-default-700 rounded-full px-2 py-0.5 text-xs font-medium">
|
|
15
|
+
{actionText}
|
|
16
|
+
</span>
|
|
17
|
+
{/snippet}
|
|
18
|
+
|
|
19
|
+
{#snippet actionHoverSnippet()}
|
|
20
|
+
<span class="bg-primary-100 text-primary-700 rounded-full px-2 py-0.5 text-xs font-medium">
|
|
21
|
+
{actionHoverText}
|
|
22
|
+
</span>
|
|
23
|
+
{/snippet}
|
|
24
|
+
|
|
25
|
+
<MetricCard
|
|
26
|
+
{...rest}
|
|
27
|
+
action={actionText ? actionSnippet : undefined}
|
|
28
|
+
actionHover={actionHoverText ? actionHoverSnippet : undefined}
|
|
29
|
+
/>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { MetricCardProps } from '../../index.js';
|
|
2
|
+
type Props = Omit<MetricCardProps, 'action' | 'actionHover'> & {
|
|
3
|
+
actionText?: string;
|
|
4
|
+
actionHoverText?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const MetricCardActionWrapper: import("svelte").Component<Props, {}, "">;
|
|
7
|
+
type MetricCardActionWrapper = ReturnType<typeof MetricCardActionWrapper>;
|
|
8
|
+
export default MetricCardActionWrapper;
|
|
@@ -39,5 +39,24 @@ export type MetricCardProps = {
|
|
|
39
39
|
percent?: number;
|
|
40
40
|
segments?: ProgressSegment[];
|
|
41
41
|
class?: ClassValue;
|
|
42
|
+
/**
|
|
43
|
+
* When provided, the card becomes a clickable button with cursor-pointer,
|
|
44
|
+
* an elevated hover shadow, a focus-visible ring, and a small action icon
|
|
45
|
+
* in the top-right corner. Omit for a purely presentational card.
|
|
46
|
+
*/
|
|
47
|
+
onclick?: (event: MouseEvent) => void;
|
|
48
|
+
/**
|
|
49
|
+
* Custom content for the corner action slot (e.g. a pill or icon that
|
|
50
|
+
* signals what clicking will do). Only renders when `onclick` is set.
|
|
51
|
+
* If omitted, a default arrow-up-right icon is rendered.
|
|
52
|
+
*/
|
|
53
|
+
action?: Snippet;
|
|
54
|
+
/**
|
|
55
|
+
* Optional alternate content for the corner action slot, shown only
|
|
56
|
+
* while the card is hovered. If provided, it crossfades with the base
|
|
57
|
+
* `action` (or default arrow) on :hover. Only renders when `onclick`
|
|
58
|
+
* is set.
|
|
59
|
+
*/
|
|
60
|
+
actionHover?: Snippet;
|
|
42
61
|
testId?: string;
|
|
43
62
|
};
|
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
export declare const metricCard: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
base
|
|
5
|
-
value?: import("tailwind-merge").ClassNameValue;
|
|
6
|
-
title?: import("tailwind-merge").ClassNameValue;
|
|
7
|
-
progress?: import("tailwind-merge").ClassNameValue;
|
|
8
|
-
detail?: import("tailwind-merge").ClassNameValue;
|
|
2
|
+
interactive: {
|
|
3
|
+
true: {
|
|
4
|
+
base: string;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
[x: string]: {
|
|
13
|
-
[x: string]: import("tailwind-merge").ClassNameValue | {
|
|
14
|
-
base?: import("tailwind-merge").ClassNameValue;
|
|
15
|
-
value?: import("tailwind-merge").ClassNameValue;
|
|
16
|
-
title?: import("tailwind-merge").ClassNameValue;
|
|
17
|
-
progress?: import("tailwind-merge").ClassNameValue;
|
|
18
|
-
detail?: import("tailwind-merge").ClassNameValue;
|
|
6
|
+
false: {
|
|
7
|
+
base: string;
|
|
19
8
|
};
|
|
20
9
|
};
|
|
21
|
-
}
|
|
10
|
+
}, {
|
|
22
11
|
base: string;
|
|
23
12
|
title: string;
|
|
24
13
|
value: string;
|
|
25
14
|
detail: string;
|
|
26
15
|
progress: string;
|
|
16
|
+
action: string;
|
|
27
17
|
}, undefined, {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
base
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
detail?: import("tailwind-merge").ClassNameValue;
|
|
18
|
+
interactive: {
|
|
19
|
+
true: {
|
|
20
|
+
base: string;
|
|
21
|
+
};
|
|
22
|
+
false: {
|
|
23
|
+
base: string;
|
|
35
24
|
};
|
|
36
25
|
};
|
|
37
|
-
}
|
|
26
|
+
}, {
|
|
38
27
|
base: string;
|
|
39
28
|
title: string;
|
|
40
29
|
value: string;
|
|
41
30
|
detail: string;
|
|
42
31
|
progress: string;
|
|
43
|
-
|
|
32
|
+
action: string;
|
|
33
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
34
|
+
interactive: {
|
|
35
|
+
true: {
|
|
36
|
+
base: string;
|
|
37
|
+
};
|
|
38
|
+
false: {
|
|
39
|
+
base: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}, {
|
|
44
43
|
base: string;
|
|
45
44
|
title: string;
|
|
46
45
|
value: string;
|
|
47
46
|
detail: string;
|
|
48
47
|
progress: string;
|
|
48
|
+
action: string;
|
|
49
49
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
import { tv } from 'tailwind-variants';
|
|
2
2
|
export const metricCard = tv({
|
|
3
3
|
slots: {
|
|
4
|
-
base: 'bg-white rounded-lg border border-default-200 p-6 shadow-sm
|
|
4
|
+
base: 'bg-white rounded-lg border border-default-200 p-6 shadow-sm transition-all',
|
|
5
5
|
title: 'text-sm text-default-500',
|
|
6
6
|
value: 'text-3xl font-bold text-default-900 mt-2',
|
|
7
7
|
detail: 'mt-3 space-y-1',
|
|
8
|
-
progress: 'mt-auto'
|
|
8
|
+
progress: 'mt-auto',
|
|
9
|
+
action: 'absolute top-3 right-3 inline-flex items-center text-default-400 transition-opacity duration-200 group-hover:text-primary-500'
|
|
10
|
+
},
|
|
11
|
+
variants: {
|
|
12
|
+
interactive: {
|
|
13
|
+
true: {
|
|
14
|
+
base: 'group relative cursor-pointer text-left w-full hover:shadow-lg hover:border-primary-300 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary-500 focus-visible:ring-offset-2'
|
|
15
|
+
},
|
|
16
|
+
false: {
|
|
17
|
+
base: 'hover:shadow-md'
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
defaultVariants: {
|
|
22
|
+
interactive: false
|
|
9
23
|
}
|
|
10
24
|
});
|
|
@@ -8,7 +8,7 @@ export const navbar = tv({
|
|
|
8
8
|
brand: 'flex flex-shrink-0 items-center',
|
|
9
9
|
menu: 'hidden sm:ml-6 sm:flex sm:space-x-8',
|
|
10
10
|
mobileMenu: 'sm:hidden',
|
|
11
|
-
mobileMenuButton: 'inline-flex items-center justify-center rounded-md p-2',
|
|
11
|
+
mobileMenuButton: 'inline-flex cursor-pointer items-center justify-center rounded-md p-2',
|
|
12
12
|
mobileMenuContainer: 'space-y-1 pb-3 pt-2',
|
|
13
13
|
links: 'flex items-center space-x-4',
|
|
14
14
|
link: 'inline-flex h-full items-center gap-2 border-b-2 px-1 pt-1 text-sm font-medium',
|
package/dist/modal/Modal.svelte
CHANGED
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
{#if !title && !description && !hideCloseButton}
|
|
188
188
|
<button
|
|
189
189
|
type="button"
|
|
190
|
-
class="text-default-400 hover:bg-default-100 hover:text-default-600 absolute top-4 right-4 z-10 rounded-lg p-2 transition-colors"
|
|
190
|
+
class="text-default-400 hover:bg-default-100 hover:text-default-600 absolute top-4 right-4 z-10 cursor-pointer rounded-lg p-2 transition-colors"
|
|
191
191
|
onclick={onclose}
|
|
192
192
|
aria-label="Close"
|
|
193
193
|
data-testid={buildTestId('modal', 'close', testId)}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { cn } from '../helper/cls.js';
|
|
3
|
+
import { buildTestId } from '../helper/testid.js';
|
|
4
|
+
import type { Snippet } from 'svelte';
|
|
5
|
+
import type { ClassValue } from 'tailwind-variants';
|
|
6
|
+
|
|
7
|
+
type Props = {
|
|
8
|
+
class?: ClassValue;
|
|
9
|
+
align?: 'start' | 'center' | 'end' | 'between';
|
|
10
|
+
children: Snippet;
|
|
11
|
+
testId?: string;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
let { class: className = '', align = 'end', children, testId }: Props = $props();
|
|
15
|
+
|
|
16
|
+
const alignClass = $derived(
|
|
17
|
+
{
|
|
18
|
+
start: 'justify-start',
|
|
19
|
+
center: 'justify-center',
|
|
20
|
+
end: 'justify-end',
|
|
21
|
+
between: 'justify-between'
|
|
22
|
+
}[align]
|
|
23
|
+
);
|
|
24
|
+
</script>
|
|
25
|
+
|
|
26
|
+
<div
|
|
27
|
+
class={cn(
|
|
28
|
+
'border-default-200 flex flex-wrap items-center gap-3 border-t px-6 py-4',
|
|
29
|
+
alignClass,
|
|
30
|
+
className
|
|
31
|
+
)}
|
|
32
|
+
data-testid={buildTestId('modal-footer', undefined, testId)}
|
|
33
|
+
>
|
|
34
|
+
{@render children()}
|
|
35
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Snippet } from 'svelte';
|
|
2
|
+
import type { ClassValue } from 'tailwind-variants';
|
|
3
|
+
type Props = {
|
|
4
|
+
class?: ClassValue;
|
|
5
|
+
align?: 'start' | 'center' | 'end' | 'between';
|
|
6
|
+
children: Snippet;
|
|
7
|
+
testId?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const ModalFooter: import("svelte").Component<Props, {}, "">;
|
|
10
|
+
type ModalFooter = ReturnType<typeof ModalFooter>;
|
|
11
|
+
export default ModalFooter;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import ModalFooter from './ModalFooter.svelte';
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
text = '',
|
|
6
|
+
align,
|
|
7
|
+
class: className
|
|
8
|
+
}: {
|
|
9
|
+
text?: string;
|
|
10
|
+
align?: 'start' | 'center' | 'end' | 'between';
|
|
11
|
+
class?: string;
|
|
12
|
+
} = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<ModalFooter {align} class={className}>
|
|
16
|
+
<button type="button">{text}</button>
|
|
17
|
+
</ModalFooter>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
text?: string;
|
|
3
|
+
align?: 'start' | 'center' | 'end' | 'between';
|
|
4
|
+
class?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const ModalFooterTestWrapper: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
7
|
+
type ModalFooterTestWrapper = ReturnType<typeof ModalFooterTestWrapper>;
|
|
8
|
+
export default ModalFooterTestWrapper;
|
package/dist/modal/modal.js
CHANGED
|
@@ -10,7 +10,7 @@ export const modal = tv({
|
|
|
10
10
|
footer: 'px-6 py-4 border-t border-default-200 bg-default-50/80 rounded-b-xl shrink-0',
|
|
11
11
|
title: 'text-lg font-semibold text-default-900',
|
|
12
12
|
description: 'text-sm text-default-600 mt-1',
|
|
13
|
-
close: 'p-2 -mr-2 ml-4 rounded-lg text-default-400 hover:text-default-600 hover:bg-default-100 transition-colors'
|
|
13
|
+
close: 'p-2 -mr-2 ml-4 rounded-lg text-default-400 cursor-pointer hover:text-default-600 hover:bg-default-100 transition-colors'
|
|
14
14
|
},
|
|
15
15
|
variants: {
|
|
16
16
|
size: {
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
class: className = '',
|
|
11
11
|
size = 'base',
|
|
12
12
|
equalWidth = true,
|
|
13
|
+
chevronGap = 0,
|
|
13
14
|
selectedClass,
|
|
14
15
|
unselectedClass,
|
|
15
16
|
disabledClass,
|
|
@@ -33,8 +34,11 @@
|
|
|
33
34
|
});
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
function
|
|
37
|
-
|
|
37
|
+
function stateClassesFor(stage: PipelineStage): string | undefined {
|
|
38
|
+
if (stage.disabled) return undefined; // disabledClass applied separately
|
|
39
|
+
return stage.active
|
|
40
|
+
? (selectedClass as string | undefined)
|
|
41
|
+
: (unselectedClass as string | undefined);
|
|
38
42
|
}
|
|
39
43
|
|
|
40
44
|
function borderClipPath(isFirst: boolean): string {
|
|
@@ -81,12 +85,18 @@
|
|
|
81
85
|
{@const s = getStageStyles(stage)}
|
|
82
86
|
{@const isFirst = index === 0}
|
|
83
87
|
{@const renderAsButton = !!onstageclick}
|
|
88
|
+
{@const marginLeft = chevronGap - CHEVRON_WIDTH}
|
|
84
89
|
{@const stageStyle = isFirst
|
|
85
90
|
? `z-index: ${stages.length - index}`
|
|
86
|
-
: `margin-left:
|
|
91
|
+
: `margin-left: ${marginLeft}px; z-index: ${stages.length - index}`}
|
|
87
92
|
|
|
88
93
|
<div
|
|
89
|
-
class={cn(
|
|
94
|
+
class={cn(
|
|
95
|
+
'flex flex-col',
|
|
96
|
+
s.stage(),
|
|
97
|
+
stateClassesFor(stage),
|
|
98
|
+
stage.disabled ? disabledClass : undefined
|
|
99
|
+
)}
|
|
90
100
|
style={stageStyle}
|
|
91
101
|
data-pipeline-stage=""
|
|
92
102
|
role={onstagehover || onstageleave ? 'group' : undefined}
|
|
@@ -96,7 +106,7 @@
|
|
|
96
106
|
onmouseleave={onstageleave ? (e) => handleStageMouseLeave(stage, index, e) : undefined}
|
|
97
107
|
>
|
|
98
108
|
<div
|
|
99
|
-
class={
|
|
109
|
+
class={s.borderLayer()}
|
|
100
110
|
data-pipeline-border=""
|
|
101
111
|
style="clip-path: {borderClipPath(isFirst)};"
|
|
102
112
|
></div>
|
|
@@ -106,6 +116,7 @@
|
|
|
106
116
|
type="button"
|
|
107
117
|
class={s.innerLayer()}
|
|
108
118
|
style="clip-path: {innerClipPath(isFirst)};"
|
|
119
|
+
data-pipeline-inner=""
|
|
109
120
|
disabled={stage.disabled}
|
|
110
121
|
aria-disabled={stage.disabled ? 'true' : undefined}
|
|
111
122
|
onclick={(e) => handleStageClick(stage, index, e)}
|
|
@@ -113,7 +124,11 @@
|
|
|
113
124
|
{@render stageContent(stage, index, s)}
|
|
114
125
|
</button>
|
|
115
126
|
{:else}
|
|
116
|
-
<div
|
|
127
|
+
<div
|
|
128
|
+
class={s.innerLayer()}
|
|
129
|
+
style="clip-path: {innerClipPath(isFirst)};"
|
|
130
|
+
data-pipeline-inner=""
|
|
131
|
+
>
|
|
117
132
|
{@render stageContent(stage, index, s)}
|
|
118
133
|
</div>
|
|
119
134
|
{/if}
|
|
@@ -20,6 +20,13 @@ export type PipelineProps = {
|
|
|
20
20
|
class?: ClassValue;
|
|
21
21
|
size?: 'sm' | 'base' | 'lg';
|
|
22
22
|
equalWidth?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Pixels of visible gap between chevrons. Independent of the chevron tip width.
|
|
25
|
+
* - `0` (default): tips tuck into notches, no visible gap
|
|
26
|
+
* - positive: visible gap between stages (reduces overlap)
|
|
27
|
+
* - negative: more overlap than default (tips extend past notches)
|
|
28
|
+
*/
|
|
29
|
+
chevronGap?: number;
|
|
23
30
|
children?: Snippet<[PipelineStage, number]>;
|
|
24
31
|
beneathChildren?: Snippet<[PipelineStage, number]>;
|
|
25
32
|
selectedClass?: ClassValue;
|
|
@@ -57,7 +57,7 @@ export declare const pipelineVariants: import("tailwind-variants").TVReturnType<
|
|
|
57
57
|
};
|
|
58
58
|
active: {
|
|
59
59
|
true: {
|
|
60
|
-
|
|
60
|
+
innerLayer: string;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
63
63
|
equalWidth: {
|
|
@@ -142,7 +142,7 @@ export declare const pipelineVariants: import("tailwind-variants").TVReturnType<
|
|
|
142
142
|
};
|
|
143
143
|
active: {
|
|
144
144
|
true: {
|
|
145
|
-
|
|
145
|
+
innerLayer: string;
|
|
146
146
|
};
|
|
147
147
|
};
|
|
148
148
|
equalWidth: {
|
|
@@ -227,7 +227,7 @@ export declare const pipelineVariants: import("tailwind-variants").TVReturnType<
|
|
|
227
227
|
};
|
|
228
228
|
active: {
|
|
229
229
|
true: {
|
|
230
|
-
|
|
230
|
+
innerLayer: string;
|
|
231
231
|
};
|
|
232
232
|
};
|
|
233
233
|
equalWidth: {
|
|
@@ -66,7 +66,7 @@ export const pipelineVariants = tv({
|
|
|
66
66
|
},
|
|
67
67
|
active: {
|
|
68
68
|
true: {
|
|
69
|
-
|
|
69
|
+
innerLayer: 'bg-blue-50 hover:bg-blue-100'
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
equalWidth: {
|
|
@@ -74,7 +74,7 @@ export const pipelineVariants = tv({
|
|
|
74
74
|
},
|
|
75
75
|
interactive: {
|
|
76
76
|
true: {
|
|
77
|
-
innerLayer: 'cursor-pointer focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2'
|
|
77
|
+
innerLayer: 'cursor-pointer hover:bg-default-100 focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2'
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
80
|
disabled: {
|