@lumerahq/cli 0.19.12 → 0.19.14
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/{chunk-OGG5TR4Y.js → chunk-VOIZWYZD.js} +2 -2
- package/dist/{dev-EZTXUSD2.js → dev-PONRO7VN.js} +1 -1
- package/dist/index.js +9 -9
- package/dist/{init-QCNR4ULM.js → init-KJOWD2KQ.js} +9 -3
- package/dist/{resources-DPGY7KC3.js → resources-UZ3TNZ4K.js} +1 -1
- package/package.json +1 -1
- package/templates/default/AGENTS.md +4 -4
- package/templates/default/_gitignore +0 -1
- package/templates/default/package.json +4 -7
- package/templates/default/pnpm-lock.yaml +4083 -0
- package/templates/default/src/styles.css +95 -1
|
@@ -1,6 +1,100 @@
|
|
|
1
1
|
@import "tailwindcss";
|
|
2
2
|
@import "tw-animate-css";
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
@theme inline {
|
|
5
|
+
@keyframes accordion-down {
|
|
6
|
+
from {
|
|
7
|
+
height: 0;
|
|
8
|
+
}
|
|
9
|
+
to {
|
|
10
|
+
height: var(
|
|
11
|
+
--radix-accordion-content-height,
|
|
12
|
+
var(--accordion-panel-height, auto)
|
|
13
|
+
);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@keyframes accordion-up {
|
|
18
|
+
from {
|
|
19
|
+
height: var(
|
|
20
|
+
--radix-accordion-content-height,
|
|
21
|
+
var(--accordion-panel-height, auto)
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
to {
|
|
25
|
+
height: 0;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@custom-variant data-open {
|
|
31
|
+
&:where([data-state="open"]),
|
|
32
|
+
&:where([data-open]:not([data-open="false"])) {
|
|
33
|
+
@slot;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@custom-variant data-closed {
|
|
38
|
+
&:where([data-state="closed"]),
|
|
39
|
+
&:where([data-closed]:not([data-closed="false"])) {
|
|
40
|
+
@slot;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@custom-variant data-checked {
|
|
45
|
+
&:where([data-state="checked"]),
|
|
46
|
+
&:where([data-checked]:not([data-checked="false"])) {
|
|
47
|
+
@slot;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@custom-variant data-unchecked {
|
|
52
|
+
&:where([data-state="unchecked"]),
|
|
53
|
+
&:where([data-unchecked]:not([data-unchecked="false"])) {
|
|
54
|
+
@slot;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@custom-variant data-selected {
|
|
59
|
+
&:where([data-selected="true"]) {
|
|
60
|
+
@slot;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@custom-variant data-disabled {
|
|
65
|
+
&:where([data-disabled="true"]),
|
|
66
|
+
&:where([data-disabled]:not([data-disabled="false"])) {
|
|
67
|
+
@slot;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@custom-variant data-active {
|
|
72
|
+
&:where([data-state="active"]),
|
|
73
|
+
&:where([data-active]:not([data-active="false"])) {
|
|
74
|
+
@slot;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@custom-variant data-horizontal {
|
|
79
|
+
&:where([data-orientation="horizontal"]) {
|
|
80
|
+
@slot;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@custom-variant data-vertical {
|
|
85
|
+
&:where([data-orientation="vertical"]) {
|
|
86
|
+
@slot;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@utility no-scrollbar {
|
|
91
|
+
-ms-overflow-style: none;
|
|
92
|
+
scrollbar-width: none;
|
|
93
|
+
|
|
94
|
+
&::-webkit-scrollbar {
|
|
95
|
+
display: none;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
4
98
|
|
|
5
99
|
@custom-variant dark (&:is(.dark *));
|
|
6
100
|
|