@swc-react/meter 0.36.0 → 0.38.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.
Files changed (2) hide show
  1. package/next.d.ts +24 -24
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -14,6 +14,14 @@ export declare const Meter: 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;
@@ -23,20 +31,14 @@ export declare const Meter: import("react").ComponentType<Partial<{
23
31
  suppressContentEditableWarning?: boolean | undefined;
24
32
  suppressHydrationWarning?: boolean | undefined;
25
33
  autoFocus?: boolean | undefined;
26
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
27
34
  contextMenu?: string | undefined;
28
- draggable?: (boolean | "true" | "false") | undefined;
29
- hidden?: boolean | undefined;
30
- nonce?: string | undefined;
31
35
  placeholder?: string | undefined;
32
36
  spellCheck?: (boolean | "true" | "false") | undefined;
33
- translate?: "yes" | "no" | undefined;
34
37
  radioGroup?: string | undefined;
35
38
  about?: string | undefined;
36
39
  content?: string | undefined;
37
40
  datatype?: string | undefined;
38
41
  inlist?: any;
39
- prefix?: string | undefined;
40
42
  property?: string | undefined;
41
43
  resource?: string | undefined;
42
44
  rev?: string | undefined;
@@ -53,7 +55,6 @@ export declare const Meter: import("react").ComponentType<Partial<{
53
55
  results?: number | undefined;
54
56
  security?: string | undefined;
55
57
  unselectable?: "on" | "off" | undefined;
56
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
57
58
  is?: string | undefined;
58
59
  'aria-activedescendant'?: string | undefined;
59
60
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
@@ -103,7 +104,6 @@ export declare const Meter: import("react").ComponentType<Partial<{
103
104
  'aria-valuemax'?: number | undefined;
104
105
  'aria-valuemin'?: number | undefined;
105
106
  'aria-valuetext'?: string | undefined;
106
- children?: import("react").ReactNode;
107
107
  dangerouslySetInnerHTML?: {
108
108
  __html: string | TrustedHTML;
109
109
  } | undefined;
@@ -290,12 +290,16 @@ export declare const Meter: import("react").ComponentType<Partial<{
290
290
  autofocus: boolean;
291
291
  normalize: () => void;
292
292
  ariaHidden: string | null;
293
- overBackground: boolean;
294
- notice: boolean;
295
- negative: boolean;
296
- positive: boolean;
297
- sideLabel: boolean;
298
- static: "white" | undefined;
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>;
299
303
  readonly accessKeyLabel: string;
300
304
  autocapitalize: string;
301
305
  inert: boolean;
@@ -586,16 +590,12 @@ export declare const Meter: import("react").ComponentType<Partial<{
586
590
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
587
591
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
588
592
  readonly dataset: DOMStringMap;
589
- connectedCallback: () => void;
590
- disconnectedCallback: () => void;
591
- readonly renderRoot: HTMLElement | ShadowRoot;
592
- isUpdatePending: boolean;
593
- hasUpdated: boolean;
594
- addController: (controller: import("lit").ReactiveController) => void;
595
- removeController: (controller: import("lit").ReactiveController) => void;
596
- attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
597
- requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
598
- readonly updateComplete: Promise<boolean>;
593
+ overBackground: boolean;
594
+ notice: boolean;
595
+ negative: boolean;
596
+ positive: boolean;
597
+ sideLabel: boolean;
598
+ static: "white" | undefined;
599
599
  isLTR: boolean;
600
600
  hasVisibleFocusInTree: () => boolean;
601
601
  manageTextObservedSlot: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/meter",
3
- "version": "0.36.0",
3
+ "version": "0.38.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/meter": "^0.36.0"
33
+ "@spectrum-web-components/meter": "^0.38.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": "a532ff8a410abeefb54d9638a2316ae82570566e"
43
+ "gitHead": "9a099b7543672f2fd4030833ab813b16c2cad62e"
44
44
  }