@luminescent/ui 0.13.0 → 0.14.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 +890 -361
- package/lib/index.qwik.mjs +891 -362
- package/lib-types/components/elements/Blobs.d.ts +18 -4
- package/lib-types/components/elements/Button.d.ts +17 -2
- package/lib-types/components/elements/Card.d.ts +128 -64
- package/lib-types/components/elements/Nav.d.ts +17 -2
- package/lib-types/components/elements/NumberInput.d.ts +2 -0
- package/lib-types/components/elements/TextArea.d.ts +2 -0
- package/lib-types/components/elements/TextInput.d.ts +29 -1
- package/lib-types/components/elements/Toggle.d.ts +198 -0
- package/package.json +14 -14
|
@@ -7,16 +7,30 @@ interface BlobProps {
|
|
|
7
7
|
blur?: keyof typeof sizeClasses;
|
|
8
8
|
}
|
|
9
9
|
export declare const blobColorClasses: {
|
|
10
|
-
|
|
10
|
+
slate: string[];
|
|
11
|
+
gray: string[];
|
|
12
|
+
darkgray: string[];
|
|
13
|
+
darkergray: string[];
|
|
14
|
+
zinc: string[];
|
|
15
|
+
neutral: string[];
|
|
16
|
+
stone: string[];
|
|
11
17
|
red: string[];
|
|
12
18
|
orange: string[];
|
|
19
|
+
amber: string[];
|
|
13
20
|
yellow: string[];
|
|
21
|
+
lime: string[];
|
|
14
22
|
green: string[];
|
|
23
|
+
emerald: string[];
|
|
24
|
+
teal: string[];
|
|
25
|
+
cyan: string[];
|
|
26
|
+
sky: string[];
|
|
15
27
|
blue: string[];
|
|
28
|
+
indigo: string[];
|
|
29
|
+
violet: string[];
|
|
16
30
|
purple: string[];
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
31
|
+
fuchsia: string[];
|
|
32
|
+
pink: string[];
|
|
33
|
+
rose: string[];
|
|
20
34
|
};
|
|
21
35
|
export declare const Blobs: import("@builder.io/qwik").Component<BlobProps>;
|
|
22
36
|
export {};
|
|
@@ -1,14 +1,29 @@
|
|
|
1
1
|
import type { PropsOf } from '@builder.io/qwik';
|
|
2
2
|
export declare const buttonColorClasses: {
|
|
3
|
+
slate: string;
|
|
4
|
+
gray: string;
|
|
5
|
+
darkgray: string;
|
|
6
|
+
darkergray: string;
|
|
7
|
+
zinc: string;
|
|
8
|
+
neutral: string;
|
|
9
|
+
stone: string;
|
|
3
10
|
red: string;
|
|
4
11
|
orange: string;
|
|
12
|
+
amber: string;
|
|
5
13
|
yellow: string;
|
|
14
|
+
lime: string;
|
|
6
15
|
green: string;
|
|
16
|
+
emerald: string;
|
|
17
|
+
teal: string;
|
|
18
|
+
cyan: string;
|
|
19
|
+
sky: string;
|
|
7
20
|
blue: string;
|
|
21
|
+
indigo: string;
|
|
22
|
+
violet: string;
|
|
8
23
|
purple: string;
|
|
24
|
+
fuchsia: string;
|
|
9
25
|
pink: string;
|
|
10
|
-
|
|
11
|
-
darkgray: string;
|
|
26
|
+
rose: string;
|
|
12
27
|
transparent: string;
|
|
13
28
|
};
|
|
14
29
|
export declare const sizeClasses: {
|
|
@@ -10,85 +10,149 @@ interface CardProps extends Omit<PropsOf<'div'>, 'class'> {
|
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
12
|
export declare const cardColorClasses: {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
slate: {
|
|
14
|
+
bg_blobs: string;
|
|
15
|
+
bg: string;
|
|
16
|
+
hover: string;
|
|
17
|
+
click: string;
|
|
18
|
+
};
|
|
19
|
+
gray: {
|
|
20
|
+
bg_blobs: string;
|
|
21
|
+
bg: string;
|
|
22
|
+
hover: string;
|
|
23
|
+
click: string;
|
|
24
|
+
};
|
|
25
|
+
darkgray: {
|
|
26
|
+
bg_blobs: string;
|
|
27
|
+
bg: string;
|
|
28
|
+
hover: string;
|
|
29
|
+
click: string;
|
|
30
|
+
};
|
|
31
|
+
darkergray: {
|
|
32
|
+
bg_blobs: string;
|
|
33
|
+
bg: string;
|
|
34
|
+
hover: string;
|
|
35
|
+
click: string;
|
|
36
|
+
};
|
|
37
|
+
zinc: {
|
|
38
|
+
bg_blobs: string;
|
|
39
|
+
bg: string;
|
|
40
|
+
hover: string;
|
|
41
|
+
click: string;
|
|
42
|
+
};
|
|
43
|
+
neutral: {
|
|
44
|
+
bg_blobs: string;
|
|
45
|
+
bg: string;
|
|
46
|
+
hover: string;
|
|
47
|
+
click: string;
|
|
48
|
+
};
|
|
49
|
+
stone: {
|
|
50
|
+
bg_blobs: string;
|
|
51
|
+
bg: string;
|
|
52
|
+
hover: string;
|
|
53
|
+
click: string;
|
|
20
54
|
};
|
|
21
55
|
red: {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
click: string;
|
|
27
|
-
};
|
|
56
|
+
bg_blobs: string;
|
|
57
|
+
bg: string;
|
|
58
|
+
hover: string;
|
|
59
|
+
click: string;
|
|
28
60
|
};
|
|
29
61
|
orange: {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
62
|
+
bg_blobs: string;
|
|
63
|
+
bg: string;
|
|
64
|
+
hover: string;
|
|
65
|
+
click: string;
|
|
66
|
+
};
|
|
67
|
+
amber: {
|
|
68
|
+
bg_blobs: string;
|
|
69
|
+
bg: string;
|
|
70
|
+
hover: string;
|
|
71
|
+
click: string;
|
|
36
72
|
};
|
|
37
73
|
yellow: {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
74
|
+
bg_blobs: string;
|
|
75
|
+
bg: string;
|
|
76
|
+
hover: string;
|
|
77
|
+
click: string;
|
|
78
|
+
};
|
|
79
|
+
lime: {
|
|
80
|
+
bg_blobs: string;
|
|
81
|
+
bg: string;
|
|
82
|
+
hover: string;
|
|
83
|
+
click: string;
|
|
44
84
|
};
|
|
45
85
|
green: {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
86
|
+
bg_blobs: string;
|
|
87
|
+
bg: string;
|
|
88
|
+
hover: string;
|
|
89
|
+
click: string;
|
|
90
|
+
};
|
|
91
|
+
emerald: {
|
|
92
|
+
bg_blobs: string;
|
|
93
|
+
bg: string;
|
|
94
|
+
hover: string;
|
|
95
|
+
click: string;
|
|
96
|
+
};
|
|
97
|
+
teal: {
|
|
98
|
+
bg_blobs: string;
|
|
99
|
+
bg: string;
|
|
100
|
+
hover: string;
|
|
101
|
+
click: string;
|
|
102
|
+
};
|
|
103
|
+
cyan: {
|
|
104
|
+
bg_blobs: string;
|
|
105
|
+
bg: string;
|
|
106
|
+
hover: string;
|
|
107
|
+
click: string;
|
|
108
|
+
};
|
|
109
|
+
sky: {
|
|
110
|
+
bg_blobs: string;
|
|
111
|
+
bg: string;
|
|
112
|
+
hover: string;
|
|
113
|
+
click: string;
|
|
52
114
|
};
|
|
53
115
|
blue: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
116
|
+
bg_blobs: string;
|
|
117
|
+
bg: string;
|
|
118
|
+
hover: string;
|
|
119
|
+
click: string;
|
|
120
|
+
};
|
|
121
|
+
indigo: {
|
|
122
|
+
bg_blobs: string;
|
|
123
|
+
bg: string;
|
|
124
|
+
hover: string;
|
|
125
|
+
click: string;
|
|
126
|
+
};
|
|
127
|
+
violet: {
|
|
128
|
+
bg_blobs: string;
|
|
129
|
+
bg: string;
|
|
130
|
+
hover: string;
|
|
131
|
+
click: string;
|
|
60
132
|
};
|
|
61
133
|
purple: {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
click: string;
|
|
67
|
-
};
|
|
134
|
+
bg_blobs: string;
|
|
135
|
+
bg: string;
|
|
136
|
+
hover: string;
|
|
137
|
+
click: string;
|
|
68
138
|
};
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
click: string;
|
|
75
|
-
};
|
|
139
|
+
fuchsia: {
|
|
140
|
+
bg_blobs: string;
|
|
141
|
+
bg: string;
|
|
142
|
+
hover: string;
|
|
143
|
+
click: string;
|
|
76
144
|
};
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
click: string;
|
|
83
|
-
};
|
|
145
|
+
pink: {
|
|
146
|
+
bg_blobs: string;
|
|
147
|
+
bg: string;
|
|
148
|
+
hover: string;
|
|
149
|
+
click: string;
|
|
84
150
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
click: string;
|
|
91
|
-
};
|
|
151
|
+
rose: {
|
|
152
|
+
bg_blobs: string;
|
|
153
|
+
bg: string;
|
|
154
|
+
hover: string;
|
|
155
|
+
click: string;
|
|
92
156
|
};
|
|
93
157
|
};
|
|
94
158
|
export declare const Card: import("@builder.io/qwik").Component<CardProps>;
|
|
@@ -8,15 +8,30 @@ interface NavContainerProps extends Omit<PropsOf<'nav'>, 'class'> {
|
|
|
8
8
|
color?: keyof typeof navColorClasses;
|
|
9
9
|
}
|
|
10
10
|
export declare const navColorClasses: {
|
|
11
|
+
slate: string;
|
|
12
|
+
gray: string;
|
|
13
|
+
darkgray: string;
|
|
14
|
+
darkergray: string;
|
|
15
|
+
zinc: string;
|
|
16
|
+
neutral: string;
|
|
17
|
+
stone: string;
|
|
11
18
|
red: string;
|
|
12
19
|
orange: string;
|
|
20
|
+
amber: string;
|
|
13
21
|
yellow: string;
|
|
22
|
+
lime: string;
|
|
14
23
|
green: string;
|
|
24
|
+
emerald: string;
|
|
25
|
+
teal: string;
|
|
26
|
+
cyan: string;
|
|
27
|
+
sky: string;
|
|
15
28
|
blue: string;
|
|
29
|
+
indigo: string;
|
|
30
|
+
violet: string;
|
|
16
31
|
purple: string;
|
|
32
|
+
fuchsia: string;
|
|
17
33
|
pink: string;
|
|
18
|
-
|
|
19
|
-
darkgray: string;
|
|
34
|
+
rose: string;
|
|
20
35
|
transparent: string;
|
|
21
36
|
};
|
|
22
37
|
export declare const Nav: import("@builder.io/qwik").Component<NavContainerProps>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import type { PropsOf, QRL } from '@builder.io/qwik';
|
|
2
|
+
import { InputColorClasses } from './TextInput';
|
|
2
3
|
interface NumberInputRawProps extends Omit<(PropsOf<'input'> & {
|
|
3
4
|
type: 'number';
|
|
4
5
|
}), 'class' | 'type'> {
|
|
5
6
|
onDecrement$: QRL<(event: PointerEvent, element: HTMLButtonElement, inputElement?: HTMLInputElement) => void>;
|
|
6
7
|
onIncrement$: QRL<(event: PointerEvent, element: HTMLButtonElement, inputElement?: HTMLInputElement) => void>;
|
|
7
8
|
input?: boolean;
|
|
9
|
+
color?: keyof typeof InputColorClasses;
|
|
8
10
|
class?: {
|
|
9
11
|
[key: string]: boolean;
|
|
10
12
|
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { PropsOf } from '@builder.io/qwik';
|
|
2
|
+
import { InputColorClasses } from './TextInput';
|
|
2
3
|
export interface TextAreaRawProps extends Omit<PropsOf<'textarea'>, 'class' | 'onChange$' | 'onClick$'> {
|
|
3
4
|
class?: {
|
|
4
5
|
[key: string]: boolean;
|
|
5
6
|
};
|
|
7
|
+
color?: keyof typeof InputColorClasses;
|
|
6
8
|
output?: boolean;
|
|
7
9
|
}
|
|
8
10
|
interface TextAreaProps extends Omit<TextAreaRawProps, 'children'> {
|
|
@@ -5,11 +5,39 @@ export interface TextInputRawProps extends Omit<(PropsOf<'input'> & {
|
|
|
5
5
|
class?: {
|
|
6
6
|
[key: string]: boolean;
|
|
7
7
|
};
|
|
8
|
+
color?: keyof typeof InputColorClasses;
|
|
8
9
|
}
|
|
9
10
|
interface TextInputProps extends Omit<TextInputRawProps, 'children'> {
|
|
10
11
|
id: string;
|
|
11
12
|
}
|
|
12
|
-
export declare const
|
|
13
|
+
export declare const InputColorClasses: {
|
|
14
|
+
slate: string;
|
|
15
|
+
gray: string;
|
|
16
|
+
darkgray: string;
|
|
17
|
+
darkergray: string;
|
|
18
|
+
zinc: string;
|
|
19
|
+
neutral: string;
|
|
20
|
+
stone: string;
|
|
21
|
+
red: string;
|
|
22
|
+
orange: string;
|
|
23
|
+
amber: string;
|
|
24
|
+
yellow: string;
|
|
25
|
+
lime: string;
|
|
26
|
+
green: string;
|
|
27
|
+
emerald: string;
|
|
28
|
+
teal: string;
|
|
29
|
+
cyan: string;
|
|
30
|
+
sky: string;
|
|
31
|
+
blue: string;
|
|
32
|
+
indigo: string;
|
|
33
|
+
violet: string;
|
|
34
|
+
purple: string;
|
|
35
|
+
fuchsia: string;
|
|
36
|
+
pink: string;
|
|
37
|
+
rose: string;
|
|
38
|
+
transparent: string;
|
|
39
|
+
};
|
|
40
|
+
export declare const InputClasses = "motion-safe:transition ease-in-out border text-gray-50 hover:shadow-lg focus:outline-none rounded-md px-2.5 py-1.5 touch-manipulation";
|
|
13
41
|
export declare const TextInput: import("@builder.io/qwik").Component<TextInputProps>;
|
|
14
42
|
export declare const TextInputRaw: import("@builder.io/qwik").Component<TextInputRawProps>;
|
|
15
43
|
export {};
|
|
@@ -5,8 +5,206 @@ interface ToggleProps extends Omit<(PropsOf<'input'> & {
|
|
|
5
5
|
class?: {
|
|
6
6
|
[key: string]: boolean;
|
|
7
7
|
};
|
|
8
|
+
onColor?: keyof typeof toggleOnColorClasses;
|
|
9
|
+
offColor?: keyof typeof toggleOffColorClasses;
|
|
8
10
|
center?: boolean;
|
|
9
11
|
label?: string | JSXOutput;
|
|
10
12
|
}
|
|
13
|
+
export declare const toggleOnColorClasses: {
|
|
14
|
+
slate: {
|
|
15
|
+
checked: string;
|
|
16
|
+
checkedAfter: string;
|
|
17
|
+
};
|
|
18
|
+
gray: {
|
|
19
|
+
checked: string;
|
|
20
|
+
checkedAfter: string;
|
|
21
|
+
};
|
|
22
|
+
darkgray: {
|
|
23
|
+
checked: string;
|
|
24
|
+
checkedAfter: string;
|
|
25
|
+
};
|
|
26
|
+
darkergray: {
|
|
27
|
+
checked: string;
|
|
28
|
+
checkedAfter: string;
|
|
29
|
+
};
|
|
30
|
+
zinc: {
|
|
31
|
+
checked: string;
|
|
32
|
+
checkedAfter: string;
|
|
33
|
+
};
|
|
34
|
+
neutral: {
|
|
35
|
+
checked: string;
|
|
36
|
+
checkedAfter: string;
|
|
37
|
+
};
|
|
38
|
+
stone: {
|
|
39
|
+
checked: string;
|
|
40
|
+
checkedAfter: string;
|
|
41
|
+
};
|
|
42
|
+
red: {
|
|
43
|
+
checked: string;
|
|
44
|
+
checkedAfter: string;
|
|
45
|
+
};
|
|
46
|
+
orange: {
|
|
47
|
+
checked: string;
|
|
48
|
+
checkedAfter: string;
|
|
49
|
+
};
|
|
50
|
+
amber: {
|
|
51
|
+
checked: string;
|
|
52
|
+
checkedAfter: string;
|
|
53
|
+
};
|
|
54
|
+
yellow: {
|
|
55
|
+
checked: string;
|
|
56
|
+
checkedAfter: string;
|
|
57
|
+
};
|
|
58
|
+
lime: {
|
|
59
|
+
checked: string;
|
|
60
|
+
checkedAfter: string;
|
|
61
|
+
};
|
|
62
|
+
green: {
|
|
63
|
+
checked: string;
|
|
64
|
+
checkedAfter: string;
|
|
65
|
+
};
|
|
66
|
+
emerald: {
|
|
67
|
+
checked: string;
|
|
68
|
+
checkedAfter: string;
|
|
69
|
+
};
|
|
70
|
+
teal: {
|
|
71
|
+
checked: string;
|
|
72
|
+
checkedAfter: string;
|
|
73
|
+
};
|
|
74
|
+
cyan: {
|
|
75
|
+
checked: string;
|
|
76
|
+
checkedAfter: string;
|
|
77
|
+
};
|
|
78
|
+
sky: {
|
|
79
|
+
checked: string;
|
|
80
|
+
checkedAfter: string;
|
|
81
|
+
};
|
|
82
|
+
blue: {
|
|
83
|
+
checked: string;
|
|
84
|
+
checkedAfter: string;
|
|
85
|
+
};
|
|
86
|
+
indigo: {
|
|
87
|
+
checked: string;
|
|
88
|
+
checkedAfter: string;
|
|
89
|
+
};
|
|
90
|
+
violet: {
|
|
91
|
+
checked: string;
|
|
92
|
+
checkedAfter: string;
|
|
93
|
+
};
|
|
94
|
+
purple: {
|
|
95
|
+
checked: string;
|
|
96
|
+
checkedAfter: string;
|
|
97
|
+
};
|
|
98
|
+
fuchsia: {
|
|
99
|
+
checked: string;
|
|
100
|
+
checkedAfter: string;
|
|
101
|
+
};
|
|
102
|
+
pink: {
|
|
103
|
+
checked: string;
|
|
104
|
+
checkedAfter: string;
|
|
105
|
+
};
|
|
106
|
+
rose: {
|
|
107
|
+
checked: string;
|
|
108
|
+
checkedAfter: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
export declare const toggleOffColorClasses: {
|
|
112
|
+
slate: {
|
|
113
|
+
unchecked: string;
|
|
114
|
+
uncheckedAfter: string;
|
|
115
|
+
};
|
|
116
|
+
gray: {
|
|
117
|
+
unchecked: string;
|
|
118
|
+
uncheckedAfter: string;
|
|
119
|
+
};
|
|
120
|
+
darkgray: {
|
|
121
|
+
unchecked: string;
|
|
122
|
+
uncheckedAfter: string;
|
|
123
|
+
};
|
|
124
|
+
darkergray: {
|
|
125
|
+
unchecked: string;
|
|
126
|
+
uncheckedAfter: string;
|
|
127
|
+
};
|
|
128
|
+
zinc: {
|
|
129
|
+
unchecked: string;
|
|
130
|
+
uncheckedAfter: string;
|
|
131
|
+
};
|
|
132
|
+
neutral: {
|
|
133
|
+
unchecked: string;
|
|
134
|
+
uncheckedAfter: string;
|
|
135
|
+
};
|
|
136
|
+
stone: {
|
|
137
|
+
unchecked: string;
|
|
138
|
+
uncheckedAfter: string;
|
|
139
|
+
};
|
|
140
|
+
red: {
|
|
141
|
+
unchecked: string;
|
|
142
|
+
uncheckedAfter: string;
|
|
143
|
+
};
|
|
144
|
+
orange: {
|
|
145
|
+
unchecked: string;
|
|
146
|
+
uncheckedAfter: string;
|
|
147
|
+
};
|
|
148
|
+
amber: {
|
|
149
|
+
unchecked: string;
|
|
150
|
+
uncheckedAfter: string;
|
|
151
|
+
};
|
|
152
|
+
yellow: {
|
|
153
|
+
unchecked: string;
|
|
154
|
+
uncheckedAfter: string;
|
|
155
|
+
};
|
|
156
|
+
lime: {
|
|
157
|
+
unchecked: string;
|
|
158
|
+
uncheckedAfter: string;
|
|
159
|
+
};
|
|
160
|
+
green: {
|
|
161
|
+
unchecked: string;
|
|
162
|
+
uncheckedAfter: string;
|
|
163
|
+
};
|
|
164
|
+
emerald: {
|
|
165
|
+
unchecked: string;
|
|
166
|
+
uncheckedAfter: string;
|
|
167
|
+
};
|
|
168
|
+
teal: {
|
|
169
|
+
unchecked: string;
|
|
170
|
+
uncheckedAfter: string;
|
|
171
|
+
};
|
|
172
|
+
cyan: {
|
|
173
|
+
unchecked: string;
|
|
174
|
+
uncheckedAfter: string;
|
|
175
|
+
};
|
|
176
|
+
sky: {
|
|
177
|
+
unchecked: string;
|
|
178
|
+
uncheckedAfter: string;
|
|
179
|
+
};
|
|
180
|
+
blue: {
|
|
181
|
+
unchecked: string;
|
|
182
|
+
uncheckedAfter: string;
|
|
183
|
+
};
|
|
184
|
+
indigo: {
|
|
185
|
+
unchecked: string;
|
|
186
|
+
uncheckedAfter: string;
|
|
187
|
+
};
|
|
188
|
+
violet: {
|
|
189
|
+
unchecked: string;
|
|
190
|
+
uncheckedAfter: string;
|
|
191
|
+
};
|
|
192
|
+
purple: {
|
|
193
|
+
unchecked: string;
|
|
194
|
+
uncheckedAfter: string;
|
|
195
|
+
};
|
|
196
|
+
fuchsia: {
|
|
197
|
+
unchecked: string;
|
|
198
|
+
uncheckedAfter: string;
|
|
199
|
+
};
|
|
200
|
+
pink: {
|
|
201
|
+
unchecked: string;
|
|
202
|
+
uncheckedAfter: string;
|
|
203
|
+
};
|
|
204
|
+
rose: {
|
|
205
|
+
unchecked: string;
|
|
206
|
+
uncheckedAfter: string;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
11
209
|
export declare const Toggle: import("@builder.io/qwik").Component<ToggleProps>;
|
|
12
210
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Luminescent UI library",
|
|
5
5
|
"main": "./lib/index.qwik.mjs",
|
|
6
6
|
"qwik": "./lib/index.qwik.mjs",
|
|
@@ -41,22 +41,22 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@anuragroy/tailwindcss-animate": "^1.0.6",
|
|
44
|
-
"@builder.io/qwik": "1.5.
|
|
45
|
-
"@builder.io/qwik-city": "^1.5.
|
|
46
|
-
"@types/eslint": "^8.56.
|
|
47
|
-
"@types/node": "^20.
|
|
48
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
49
|
-
"@typescript-eslint/parser": "^7.
|
|
50
|
-
"autoprefixer": "^10.4.
|
|
44
|
+
"@builder.io/qwik": "1.5.2",
|
|
45
|
+
"@builder.io/qwik-city": "^1.5.2",
|
|
46
|
+
"@types/eslint": "^8.56.9",
|
|
47
|
+
"@types/node": "^20.12.7",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^7.6.0",
|
|
49
|
+
"@typescript-eslint/parser": "^7.6.0",
|
|
50
|
+
"autoprefixer": "^10.4.19",
|
|
51
51
|
"chart.js": "^4.4.2",
|
|
52
52
|
"eslint": "^8.57.0",
|
|
53
53
|
"eslint-plugin-qwik": "latest",
|
|
54
|
-
"np": "^10.0.
|
|
55
|
-
"postcss": "^8.4.
|
|
56
|
-
"tailwindcss": "3.4.
|
|
57
|
-
"typescript": "5.4.
|
|
54
|
+
"np": "^10.0.3",
|
|
55
|
+
"postcss": "^8.4.38",
|
|
56
|
+
"tailwindcss": "3.4.3",
|
|
57
|
+
"typescript": "5.4.5",
|
|
58
58
|
"undici": "*",
|
|
59
|
-
"vite": "^5.
|
|
60
|
-
"vite-tsconfig-paths": "^4.3.
|
|
59
|
+
"vite": "^5.2.8",
|
|
60
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
61
61
|
}
|
|
62
62
|
}
|