@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.
@@ -1,56 +1,133 @@
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;
10
- red: string;
11
- orange: string;
12
- amber: string;
13
- yellow: string;
14
- lime: string;
15
- green: string;
16
- emerald: string;
17
- teal: string;
18
- cyan: string;
19
- sky: string;
20
- blue: string;
21
- indigo: string;
22
- violet: string;
23
- purple: string;
24
- fuchsia: string;
25
- pink: string;
26
- rose: string;
27
- transparent: string;
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;
@@ -6,6 +6,8 @@ interface DropdownProps extends Omit<PropsOf<'select'>, 'class' | 'size'> {
6
6
  };
7
7
  display?: JSXChildren;
8
8
  color?: keyof typeof buttonColorClasses;
9
+ round?: boolean;
10
+ transparent?: boolean;
9
11
  size?: keyof typeof sizeClasses;
10
12
  hover?: boolean;
11
13
  values?: {
@@ -5,6 +5,8 @@ interface ToggleProps extends Omit<(PropsOf<'input'> & {
5
5
  class?: {
6
6
  [key: string]: boolean;
7
7
  };
8
+ checkbox?: boolean;
9
+ round?: boolean;
8
10
  onColor?: keyof typeof toggleOnColorClasses;
9
11
  offColor?: keyof typeof toggleOffColorClasses;
10
12
  center?: boolean;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from '../components/logos/IconProps';
2
+ export declare const Shuffle: import("@builder.io/qwik").Component<IconProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminescent/ui",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "description": "Luminescent UI library",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",