@swc-react/color-area 0.33.3-overlay.65 → 0.34.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 +6 -6
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
export declare const ColorArea: import("react").ComponentType<Partial<{
|
|
3
3
|
dir?: string | undefined;
|
|
4
4
|
color?: string | undefined;
|
|
5
|
+
lang?: string | undefined;
|
|
6
|
+
slot?: string | undefined;
|
|
7
|
+
style?: import("react").CSSProperties | undefined;
|
|
8
|
+
title?: string | undefined;
|
|
5
9
|
defaultChecked?: boolean | undefined;
|
|
6
10
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
7
11
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -13,14 +17,10 @@ export declare const ColorArea: import("react").ComponentType<Partial<{
|
|
|
13
17
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
14
18
|
hidden?: boolean | undefined;
|
|
15
19
|
id?: string | undefined;
|
|
16
|
-
lang?: string | undefined;
|
|
17
20
|
nonce?: string | undefined;
|
|
18
21
|
placeholder?: string | undefined;
|
|
19
|
-
slot?: string | undefined;
|
|
20
22
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
21
|
-
style?: import("react").CSSProperties | undefined;
|
|
22
23
|
tabIndex?: number | undefined;
|
|
23
|
-
title?: string | undefined;
|
|
24
24
|
translate?: "yes" | "no" | undefined;
|
|
25
25
|
radioGroup?: string | undefined;
|
|
26
26
|
role?: import("react").AriaRole | undefined;
|
|
@@ -54,7 +54,7 @@ export declare const ColorArea: import("react").ComponentType<Partial<{
|
|
|
54
54
|
'aria-colindex'?: number | undefined;
|
|
55
55
|
'aria-colspan'?: number | undefined;
|
|
56
56
|
'aria-controls'?: string | undefined;
|
|
57
|
-
'aria-current'?: boolean | "
|
|
57
|
+
'aria-current'?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
58
58
|
'aria-describedby'?: string | undefined;
|
|
59
59
|
'aria-details'?: string | undefined;
|
|
60
60
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -274,6 +274,7 @@ export declare const ColorArea: import("react").ComponentType<Partial<{
|
|
|
274
274
|
};
|
|
275
275
|
hue: number;
|
|
276
276
|
normalize: () => void;
|
|
277
|
+
shadowRoot: ShadowRoot;
|
|
277
278
|
label: string | undefined;
|
|
278
279
|
labelX: string;
|
|
279
280
|
labelY: string;
|
|
@@ -318,7 +319,6 @@ export declare const ColorArea: import("react").ComponentType<Partial<{
|
|
|
318
319
|
scrollLeft: number;
|
|
319
320
|
scrollTop: number;
|
|
320
321
|
readonly scrollWidth: number;
|
|
321
|
-
shadowRoot: ShadowRoot;
|
|
322
322
|
readonly tagName: string;
|
|
323
323
|
attachShadow: (init: ShadowRootInit) => ShadowRoot;
|
|
324
324
|
closest: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/color-area",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.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-area": "^0.
|
|
33
|
+
"@spectrum-web-components/color-area": "^0.34.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": "f9b3294d67cdd52b2c36897cdc1c20ceaeb019cf"
|
|
44
44
|
}
|