@swc-react/tags 0.35.1-rc.26 → 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.
Files changed (2) hide show
  1. package/next.d.ts +42 -42
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -10,16 +10,6 @@ export declare const Tag: import("react").ComponentType<Partial<{
10
10
  id?: string | undefined;
11
11
  className?: string | 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 Tag: 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 Tag: 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 Tag: 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;
@@ -286,16 +286,8 @@ export declare const Tag: import("react").ComponentType<Partial<{
286
286
  autofocus: boolean;
287
287
  normalize: () => void;
288
288
  readonly childNodes: NodeListOf<ChildNode>;
289
- readonly renderRoot: HTMLElement | ShadowRoot;
290
- isUpdatePending: boolean;
291
- hasUpdated: boolean;
292
- addController: (controller: import("lit").ReactiveController) => void;
293
- removeController: (controller: import("lit").ReactiveController) => void;
294
- connectedCallback: () => void;
295
- disconnectedCallback: () => void;
296
- attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
297
- requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
298
- readonly updateComplete: Promise<boolean>;
289
+ deletable: boolean;
290
+ readonly: boolean;
299
291
  readonly accessKeyLabel: string;
300
292
  autocapitalize: string;
301
293
  inert: boolean;
@@ -587,9 +579,17 @@ export declare const Tag: import("react").ComponentType<Partial<{
587
579
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
588
580
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
589
581
  readonly dataset: DOMStringMap;
590
- deletable: boolean;
591
- readonly: boolean;
592
582
  readonly renderOptions: import("lit-html").RenderOptions;
583
+ connectedCallback: () => void;
584
+ disconnectedCallback: () => void;
585
+ readonly renderRoot: HTMLElement | ShadowRoot;
586
+ isUpdatePending: boolean;
587
+ hasUpdated: boolean;
588
+ addController: (controller: import("lit").ReactiveController) => void;
589
+ removeController: (controller: import("lit").ReactiveController) => void;
590
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
591
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
592
+ readonly updateComplete: Promise<boolean>;
593
593
  isLTR: boolean;
594
594
  hasVisibleFocusInTree: () => boolean;
595
595
  } & {
@@ -605,16 +605,6 @@ export declare const Tags: import("react").ComponentType<Partial<{
605
605
  id?: string | undefined;
606
606
  className?: string | undefined;
607
607
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
608
- accessKey?: string | undefined;
609
- draggable?: (boolean | "true" | "false") | undefined;
610
- hidden?: boolean | undefined;
611
- lang?: string | undefined;
612
- translate?: "yes" | "no" | undefined;
613
- prefix?: string | undefined;
614
- children?: import("react").ReactNode;
615
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
616
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
617
- nonce?: string | undefined;
618
608
  role?: import("react").AriaRole | undefined;
619
609
  'aria-label'?: string | undefined;
620
610
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
@@ -622,15 +612,23 @@ export declare const Tags: import("react").ComponentType<Partial<{
622
612
  defaultValue?: string | number | readonly string[] | undefined;
623
613
  suppressContentEditableWarning?: boolean | undefined;
624
614
  suppressHydrationWarning?: boolean | undefined;
615
+ accessKey?: string | undefined;
625
616
  autoFocus?: boolean | undefined;
617
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
626
618
  contextMenu?: string | undefined;
619
+ draggable?: (boolean | "true" | "false") | undefined;
620
+ hidden?: boolean | undefined;
621
+ lang?: string | undefined;
622
+ nonce?: string | undefined;
627
623
  placeholder?: string | undefined;
628
624
  spellCheck?: (boolean | "true" | "false") | undefined;
625
+ translate?: "yes" | "no" | undefined;
629
626
  radioGroup?: string | undefined;
630
627
  about?: string | undefined;
631
628
  content?: string | undefined;
632
629
  datatype?: string | undefined;
633
630
  inlist?: any;
631
+ prefix?: string | undefined;
634
632
  property?: string | undefined;
635
633
  resource?: string | undefined;
636
634
  rev?: string | undefined;
@@ -648,6 +646,7 @@ export declare const Tags: import("react").ComponentType<Partial<{
648
646
  results?: number | undefined;
649
647
  security?: string | undefined;
650
648
  unselectable?: "on" | "off" | undefined;
649
+ inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
651
650
  is?: string | undefined;
652
651
  'aria-activedescendant'?: string | undefined;
653
652
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
@@ -699,6 +698,7 @@ export declare const Tags: import("react").ComponentType<Partial<{
699
698
  'aria-valuemin'?: number | undefined;
700
699
  'aria-valuenow'?: number | undefined;
701
700
  'aria-valuetext'?: string | undefined;
701
+ children?: import("react").ReactNode;
702
702
  dangerouslySetInnerHTML?: {
703
703
  __html: string | TrustedHTML;
704
704
  } | undefined;
@@ -879,16 +879,6 @@ export declare const Tags: import("react").ComponentType<Partial<{
879
879
  autofocus: boolean;
880
880
  normalize: () => void;
881
881
  readonly childNodes: NodeListOf<ChildNode>;
882
- readonly renderRoot: HTMLElement | ShadowRoot;
883
- isUpdatePending: boolean;
884
- hasUpdated: boolean;
885
- addController: (controller: import("lit").ReactiveController) => void;
886
- removeController: (controller: import("lit").ReactiveController) => void;
887
- connectedCallback: () => void;
888
- disconnectedCallback: () => void;
889
- attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
890
- requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
891
- readonly updateComplete: Promise<boolean>;
892
882
  readonly accessKeyLabel: string;
893
883
  autocapitalize: string;
894
884
  inert: boolean;
@@ -1181,6 +1171,16 @@ export declare const Tags: import("react").ComponentType<Partial<{
1181
1171
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1182
1172
  readonly dataset: DOMStringMap;
1183
1173
  readonly renderOptions: import("lit-html").RenderOptions;
1174
+ connectedCallback: () => void;
1175
+ disconnectedCallback: () => void;
1176
+ readonly renderRoot: HTMLElement | ShadowRoot;
1177
+ isUpdatePending: boolean;
1178
+ hasUpdated: boolean;
1179
+ addController: (controller: import("lit").ReactiveController) => void;
1180
+ removeController: (controller: import("lit").ReactiveController) => void;
1181
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
1182
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
1183
+ readonly updateComplete: Promise<boolean>;
1184
1184
  isLTR: boolean;
1185
1185
  hasVisibleFocusInTree: () => boolean;
1186
1186
  defaultNodes: Node[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/tags",
3
- "version": "0.35.1-rc.26+05bd08374",
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/tags": "^0.35.1-rc.26+05bd08374"
33
+ "@spectrum-web-components/tags": "^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": "05bd0837417e287acdf2685d1ca05ab4d138fc95"
43
+ "gitHead": "a532ff8a410abeefb54d9638a2316ae82570566e"
44
44
  }