@swc-react/color-wheel 0.34.0 → 0.35.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/next.d.ts +13 -3
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
3
4
|
dir?: string | undefined;
|
|
4
5
|
slot?: string | undefined;
|
|
@@ -7,18 +8,19 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
7
8
|
tabIndex?: number | undefined;
|
|
8
9
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
9
10
|
color?: string | undefined;
|
|
11
|
+
lang?: string | undefined;
|
|
10
12
|
defaultChecked?: boolean | undefined;
|
|
11
13
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
12
14
|
suppressContentEditableWarning?: boolean | undefined;
|
|
13
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
14
16
|
accessKey?: string | undefined;
|
|
17
|
+
autoFocus?: boolean | undefined;
|
|
15
18
|
className?: string | undefined;
|
|
16
19
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
17
20
|
contextMenu?: string | undefined;
|
|
18
21
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
19
22
|
hidden?: boolean | undefined;
|
|
20
23
|
id?: string | undefined;
|
|
21
|
-
lang?: string | undefined;
|
|
22
24
|
nonce?: string | undefined;
|
|
23
25
|
placeholder?: string | undefined;
|
|
24
26
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
@@ -26,11 +28,14 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
26
28
|
radioGroup?: string | undefined;
|
|
27
29
|
role?: import("react").AriaRole | undefined;
|
|
28
30
|
about?: string | undefined;
|
|
31
|
+
content?: string | undefined;
|
|
29
32
|
datatype?: string | undefined;
|
|
30
33
|
inlist?: any;
|
|
31
34
|
prefix?: string | undefined;
|
|
32
35
|
property?: string | undefined;
|
|
36
|
+
rel?: string | undefined;
|
|
33
37
|
resource?: string | undefined;
|
|
38
|
+
rev?: string | undefined;
|
|
34
39
|
typeof?: string | undefined;
|
|
35
40
|
vocab?: string | undefined;
|
|
36
41
|
autoCapitalize?: string | undefined;
|
|
@@ -49,14 +54,18 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
49
54
|
'aria-activedescendant'?: string | undefined;
|
|
50
55
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
51
56
|
'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
|
|
57
|
+
'aria-braillelabel'?: string | undefined;
|
|
58
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
52
59
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
53
60
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
54
61
|
'aria-colcount'?: number | undefined;
|
|
55
62
|
'aria-colindex'?: number | undefined;
|
|
63
|
+
'aria-colindextext'?: string | undefined;
|
|
56
64
|
'aria-colspan'?: number | undefined;
|
|
57
65
|
'aria-controls'?: string | undefined;
|
|
58
66
|
'aria-current'?: boolean | "time" | "true" | "step" | "false" | "page" | "location" | "date" | undefined;
|
|
59
67
|
'aria-describedby'?: string | undefined;
|
|
68
|
+
'aria-description'?: string | undefined;
|
|
60
69
|
'aria-details'?: string | undefined;
|
|
61
70
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
62
71
|
'aria-errormessage'?: string | undefined;
|
|
@@ -85,6 +94,7 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
85
94
|
'aria-roledescription'?: string | undefined;
|
|
86
95
|
'aria-rowcount'?: number | undefined;
|
|
87
96
|
'aria-rowindex'?: number | undefined;
|
|
97
|
+
'aria-rowindextext'?: string | undefined;
|
|
88
98
|
'aria-rowspan'?: number | undefined;
|
|
89
99
|
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
90
100
|
'aria-setsize'?: number | undefined;
|
|
@@ -95,7 +105,7 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
95
105
|
'aria-valuetext'?: string | undefined;
|
|
96
106
|
children?: import("react").ReactNode;
|
|
97
107
|
dangerouslySetInnerHTML?: {
|
|
98
|
-
__html: string;
|
|
108
|
+
__html: string | TrustedHTML;
|
|
99
109
|
} | undefined;
|
|
100
110
|
onCopy?: import("react").ClipboardEventHandler<import("color-wheel/src").ColorWheel> | undefined;
|
|
101
111
|
onCopyCapture?: import("react").ClipboardEventHandler<import("color-wheel/src").ColorWheel> | undefined;
|
|
@@ -276,6 +286,7 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
276
286
|
autofocus: boolean;
|
|
277
287
|
normalize: () => void;
|
|
278
288
|
focused: boolean;
|
|
289
|
+
shadowRoot: ShadowRoot;
|
|
279
290
|
step: number;
|
|
280
291
|
value: number;
|
|
281
292
|
readonly accessKeyLabel: string;
|
|
@@ -313,7 +324,6 @@ export declare const ColorWheel: import("react").ComponentType<Partial<{
|
|
|
313
324
|
scrollLeft: number;
|
|
314
325
|
scrollTop: number;
|
|
315
326
|
readonly scrollWidth: number;
|
|
316
|
-
shadowRoot: ShadowRoot;
|
|
317
327
|
readonly tagName: string;
|
|
318
328
|
attachShadow: (init: ShadowRootInit) => ShadowRoot;
|
|
319
329
|
closest: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/color-wheel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@lit-labs/react": "^1.1.1",
|
|
33
|
-
"@spectrum-web-components/color-wheel": "^0.
|
|
33
|
+
"@spectrum-web-components/color-wheel": "^0.35.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"next": "~13.4"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"optional": true
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "1ee5a6c92838cdf48321276d97f61c20f8476ac1"
|
|
44
44
|
}
|