@swc-react/progress-bar 0.35.0 → 0.35.1-rc.15
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
|
@@ -14,6 +14,14 @@ export declare const ProgressBar: import("react").ComponentType<Partial<{
|
|
|
14
14
|
className?: string | undefined;
|
|
15
15
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
|
+
hidden?: boolean | undefined;
|
|
19
|
+
translate?: "yes" | "no" | undefined;
|
|
20
|
+
prefix?: string | undefined;
|
|
21
|
+
children?: import("react").ReactNode;
|
|
22
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
23
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
24
|
+
nonce?: string | undefined;
|
|
17
25
|
'aria-labelledby'?: string | undefined;
|
|
18
26
|
'aria-label'?: string | undefined;
|
|
19
27
|
role?: import("react").AriaRole | undefined;
|
|
@@ -25,20 +33,14 @@ export declare const ProgressBar: import("react").ComponentType<Partial<{
|
|
|
25
33
|
suppressContentEditableWarning?: boolean | undefined;
|
|
26
34
|
suppressHydrationWarning?: boolean | undefined;
|
|
27
35
|
autoFocus?: boolean | undefined;
|
|
28
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
29
36
|
contextMenu?: string | undefined;
|
|
30
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
31
|
-
hidden?: boolean | undefined;
|
|
32
|
-
nonce?: string | undefined;
|
|
33
37
|
placeholder?: string | undefined;
|
|
34
38
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
35
|
-
translate?: "yes" | "no" | undefined;
|
|
36
39
|
radioGroup?: string | undefined;
|
|
37
40
|
about?: string | undefined;
|
|
38
41
|
content?: string | undefined;
|
|
39
42
|
datatype?: string | undefined;
|
|
40
43
|
inlist?: any;
|
|
41
|
-
prefix?: string | undefined;
|
|
42
44
|
property?: string | undefined;
|
|
43
45
|
resource?: string | undefined;
|
|
44
46
|
rev?: string | undefined;
|
|
@@ -55,7 +57,6 @@ export declare const ProgressBar: import("react").ComponentType<Partial<{
|
|
|
55
57
|
results?: number | undefined;
|
|
56
58
|
security?: string | undefined;
|
|
57
59
|
unselectable?: "on" | "off" | undefined;
|
|
58
|
-
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
59
60
|
is?: string | undefined;
|
|
60
61
|
'aria-activedescendant'?: string | undefined;
|
|
61
62
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -103,7 +104,6 @@ export declare const ProgressBar: import("react").ComponentType<Partial<{
|
|
|
103
104
|
'aria-setsize'?: number | undefined;
|
|
104
105
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
105
106
|
'aria-valuetext'?: string | undefined;
|
|
106
|
-
children?: import("react").ReactNode;
|
|
107
107
|
dangerouslySetInnerHTML?: {
|
|
108
108
|
__html: string | TrustedHTML;
|
|
109
109
|
} | undefined;
|
|
@@ -290,10 +290,16 @@ export declare const ProgressBar: import("react").ComponentType<Partial<{
|
|
|
290
290
|
autofocus: boolean;
|
|
291
291
|
normalize: () => void;
|
|
292
292
|
ariaHidden: string | null;
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
293
|
+
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
294
|
+
isUpdatePending: boolean;
|
|
295
|
+
hasUpdated: boolean;
|
|
296
|
+
addController: (controller: import("lit").ReactiveController) => void;
|
|
297
|
+
removeController: (controller: import("lit").ReactiveController) => void;
|
|
298
|
+
connectedCallback: () => void;
|
|
299
|
+
disconnectedCallback: () => void;
|
|
300
|
+
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
301
|
+
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
302
|
+
readonly updateComplete: Promise<boolean>;
|
|
297
303
|
readonly accessKeyLabel: string;
|
|
298
304
|
autocapitalize: string;
|
|
299
305
|
inert: boolean;
|
|
@@ -584,16 +590,10 @@ export declare const ProgressBar: import("react").ComponentType<Partial<{
|
|
|
584
590
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
585
591
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
586
592
|
readonly dataset: DOMStringMap;
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
hasUpdated: boolean;
|
|
592
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
593
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
594
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
595
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
596
|
-
readonly updateComplete: Promise<boolean>;
|
|
593
|
+
indeterminate: boolean;
|
|
594
|
+
overBackground: boolean;
|
|
595
|
+
sideLabel: boolean;
|
|
596
|
+
static: "white" | undefined;
|
|
597
597
|
isLTR: boolean;
|
|
598
598
|
hasVisibleFocusInTree: () => boolean;
|
|
599
599
|
manageTextObservedSlot: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/progress-bar",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.1-rc.15+9b76319e4",
|
|
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/progress-bar": "^0.35.
|
|
33
|
+
"@spectrum-web-components/progress-bar": "^0.35.1-rc.15+9b76319e4"
|
|
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": "9b76319e4f1cc7cb0dd03e9d9debf544e5bed4e9"
|
|
44
44
|
}
|