@swc-react/picker-button 0.35.1-rc.34 → 0.36.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 +22 -22
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -10,16 +10,6 @@ export declare const PickerButton: import("react").ComponentType<Partial<{
|
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
tabIndex?: number | undefined;
|
|
12
12
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
13
|
-
accessKey?: string | undefined;
|
|
14
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
15
|
-
hidden?: boolean | undefined;
|
|
16
|
-
lang?: string | undefined;
|
|
17
|
-
translate?: "yes" | "no" | undefined;
|
|
18
|
-
prefix?: string | undefined;
|
|
19
|
-
children?: import("react").ReactNode;
|
|
20
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
21
|
-
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
22
|
-
nonce?: string | undefined;
|
|
23
13
|
role?: import("react").AriaRole | undefined;
|
|
24
14
|
'aria-label'?: string | undefined;
|
|
25
15
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
@@ -27,15 +17,23 @@ export declare const PickerButton: import("react").ComponentType<Partial<{
|
|
|
27
17
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
28
18
|
suppressContentEditableWarning?: boolean | undefined;
|
|
29
19
|
suppressHydrationWarning?: boolean | undefined;
|
|
20
|
+
accessKey?: string | undefined;
|
|
30
21
|
autoFocus?: boolean | undefined;
|
|
22
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
31
23
|
contextMenu?: string | undefined;
|
|
24
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
25
|
+
hidden?: boolean | undefined;
|
|
26
|
+
lang?: string | undefined;
|
|
27
|
+
nonce?: string | undefined;
|
|
32
28
|
placeholder?: string | undefined;
|
|
33
29
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
30
|
+
translate?: "yes" | "no" | undefined;
|
|
34
31
|
radioGroup?: string | undefined;
|
|
35
32
|
about?: string | undefined;
|
|
36
33
|
content?: string | undefined;
|
|
37
34
|
datatype?: string | undefined;
|
|
38
35
|
inlist?: any;
|
|
36
|
+
prefix?: string | undefined;
|
|
39
37
|
property?: string | undefined;
|
|
40
38
|
resource?: string | undefined;
|
|
41
39
|
rev?: string | undefined;
|
|
@@ -53,6 +51,7 @@ export declare const PickerButton: import("react").ComponentType<Partial<{
|
|
|
53
51
|
results?: number | undefined;
|
|
54
52
|
security?: string | undefined;
|
|
55
53
|
unselectable?: "on" | "off" | undefined;
|
|
54
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
56
55
|
is?: string | undefined;
|
|
57
56
|
'aria-activedescendant'?: string | undefined;
|
|
58
57
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -104,6 +103,7 @@ export declare const PickerButton: import("react").ComponentType<Partial<{
|
|
|
104
103
|
'aria-valuemin'?: number | undefined;
|
|
105
104
|
'aria-valuenow'?: number | undefined;
|
|
106
105
|
'aria-valuetext'?: string | undefined;
|
|
106
|
+
children?: import("react").ReactNode;
|
|
107
107
|
dangerouslySetInnerHTML?: {
|
|
108
108
|
__html: string | TrustedHTML;
|
|
109
109
|
} | undefined;
|
|
@@ -294,16 +294,8 @@ export declare const PickerButton: import("react").ComponentType<Partial<{
|
|
|
294
294
|
slotHasContent: boolean;
|
|
295
295
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
296
296
|
active: boolean;
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
hasUpdated: boolean;
|
|
300
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
301
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
302
|
-
connectedCallback: () => void;
|
|
303
|
-
disconnectedCallback: () => void;
|
|
304
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
305
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
306
|
-
readonly updateComplete: Promise<boolean>;
|
|
297
|
+
slotContentIsPresent: boolean;
|
|
298
|
+
position: "left" | "right";
|
|
307
299
|
readonly accessKeyLabel: string;
|
|
308
300
|
autocapitalize: string;
|
|
309
301
|
inert: boolean;
|
|
@@ -595,11 +587,19 @@ export declare const PickerButton: import("react").ComponentType<Partial<{
|
|
|
595
587
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
596
588
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
597
589
|
readonly dataset: DOMStringMap;
|
|
598
|
-
slotContentIsPresent: boolean;
|
|
599
|
-
position: "left" | "right";
|
|
600
590
|
readonly focusElement: HTMLElement;
|
|
601
591
|
renderAnchor: () => import("lit-html").TemplateResult<2 | 1>;
|
|
592
|
+
connectedCallback: () => void;
|
|
602
593
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
594
|
+
disconnectedCallback: () => void;
|
|
595
|
+
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
596
|
+
isUpdatePending: boolean;
|
|
597
|
+
hasUpdated: boolean;
|
|
598
|
+
addController: (controller: import("lit").ReactiveController) => void;
|
|
599
|
+
removeController: (controller: import("lit").ReactiveController) => void;
|
|
600
|
+
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
601
|
+
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
602
|
+
readonly updateComplete: Promise<boolean>;
|
|
603
603
|
isLTR: boolean;
|
|
604
604
|
hasVisibleFocusInTree: () => boolean;
|
|
605
605
|
manageTextObservedSlot: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/picker-button",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.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/picker-button": "^0.
|
|
33
|
+
"@spectrum-web-components/picker-button": "^0.36.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": "a532ff8a410abeefb54d9638a2316ae82570566e"
|
|
44
44
|
}
|