@luminescent/ui 0.14.0 → 0.16.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/lib/index.qwik.cjs +293 -104
- package/lib/index.qwik.mjs +293 -104
- package/lib-types/components/elements/Button.d.ts +102 -25
- package/lib-types/components/elements/Dropdown.d.ts +2 -0
- package/lib-types/components/elements/Toggle.d.ts +2 -0
- package/lib-types/svg/Shuffle.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,56 +1,133 @@
|
|
|
1
1
|
import type { PropsOf } from '@builder.io/qwik';
|
|
2
2
|
export declare const buttonColorClasses: {
|
|
3
|
-
slate:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
3
|
+
slate: {
|
|
4
|
+
hover: string;
|
|
5
|
+
bg: string;
|
|
6
|
+
};
|
|
7
|
+
gray: {
|
|
8
|
+
hover: string;
|
|
9
|
+
bg: string;
|
|
10
|
+
};
|
|
11
|
+
darkgray: {
|
|
12
|
+
hover: string;
|
|
13
|
+
bg: string;
|
|
14
|
+
};
|
|
15
|
+
darkergray: {
|
|
16
|
+
hover: string;
|
|
17
|
+
bg: string;
|
|
18
|
+
};
|
|
19
|
+
zinc: {
|
|
20
|
+
hover: string;
|
|
21
|
+
bg: string;
|
|
22
|
+
};
|
|
23
|
+
neutral: {
|
|
24
|
+
hover: string;
|
|
25
|
+
bg: string;
|
|
26
|
+
};
|
|
27
|
+
stone: {
|
|
28
|
+
hover: string;
|
|
29
|
+
bg: string;
|
|
30
|
+
};
|
|
31
|
+
red: {
|
|
32
|
+
hover: string;
|
|
33
|
+
bg: string;
|
|
34
|
+
};
|
|
35
|
+
orange: {
|
|
36
|
+
hover: string;
|
|
37
|
+
bg: string;
|
|
38
|
+
};
|
|
39
|
+
amber: {
|
|
40
|
+
hover: string;
|
|
41
|
+
bg: string;
|
|
42
|
+
};
|
|
43
|
+
yellow: {
|
|
44
|
+
hover: string;
|
|
45
|
+
bg: string;
|
|
46
|
+
};
|
|
47
|
+
lime: {
|
|
48
|
+
hover: string;
|
|
49
|
+
bg: string;
|
|
50
|
+
};
|
|
51
|
+
green: {
|
|
52
|
+
hover: string;
|
|
53
|
+
bg: string;
|
|
54
|
+
};
|
|
55
|
+
emerald: {
|
|
56
|
+
hover: string;
|
|
57
|
+
bg: string;
|
|
58
|
+
};
|
|
59
|
+
teal: {
|
|
60
|
+
hover: string;
|
|
61
|
+
bg: string;
|
|
62
|
+
};
|
|
63
|
+
cyan: {
|
|
64
|
+
hover: string;
|
|
65
|
+
bg: string;
|
|
66
|
+
};
|
|
67
|
+
sky: {
|
|
68
|
+
hover: string;
|
|
69
|
+
bg: string;
|
|
70
|
+
};
|
|
71
|
+
blue: {
|
|
72
|
+
hover: string;
|
|
73
|
+
bg: string;
|
|
74
|
+
};
|
|
75
|
+
indigo: {
|
|
76
|
+
hover: string;
|
|
77
|
+
bg: string;
|
|
78
|
+
};
|
|
79
|
+
violet: {
|
|
80
|
+
hover: string;
|
|
81
|
+
bg: string;
|
|
82
|
+
};
|
|
83
|
+
purple: {
|
|
84
|
+
hover: string;
|
|
85
|
+
bg: string;
|
|
86
|
+
};
|
|
87
|
+
fuchsia: {
|
|
88
|
+
hover: string;
|
|
89
|
+
bg: string;
|
|
90
|
+
};
|
|
91
|
+
pink: {
|
|
92
|
+
hover: string;
|
|
93
|
+
bg: string;
|
|
94
|
+
};
|
|
95
|
+
rose: {
|
|
96
|
+
hover: string;
|
|
97
|
+
bg: string;
|
|
98
|
+
};
|
|
28
99
|
};
|
|
29
100
|
export declare const sizeClasses: {
|
|
30
101
|
sm: {
|
|
31
102
|
base: string;
|
|
103
|
+
round: string;
|
|
32
104
|
pad: string;
|
|
33
105
|
equal: string;
|
|
34
106
|
};
|
|
35
107
|
md: {
|
|
36
108
|
base: string;
|
|
109
|
+
round: string;
|
|
37
110
|
pad: string;
|
|
38
111
|
equal: string;
|
|
39
112
|
};
|
|
40
113
|
lg: {
|
|
41
114
|
base: string;
|
|
115
|
+
round: string;
|
|
42
116
|
pad: string;
|
|
43
117
|
equal: string;
|
|
44
118
|
};
|
|
45
119
|
xl: {
|
|
46
120
|
base: string;
|
|
121
|
+
round: string;
|
|
47
122
|
pad: string;
|
|
48
123
|
equal: string;
|
|
49
124
|
};
|
|
50
125
|
};
|
|
51
126
|
interface GenericButtonProps {
|
|
52
127
|
color?: keyof typeof buttonColorClasses;
|
|
128
|
+
transparent?: boolean;
|
|
53
129
|
size?: keyof typeof sizeClasses;
|
|
130
|
+
round?: boolean;
|
|
54
131
|
square?: boolean;
|
|
55
132
|
class?: {
|
|
56
133
|
[key: string]: boolean | undefined;
|