@swc-react/action-group 0.34.1-rc.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.
Files changed (2) hide show
  1. package/next.d.ts +40 -29
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -1,6 +1,8 @@
1
1
  /// <reference types="react" />
2
+ /// <reference types="react" />
2
3
  export declare const ActionGroup: import("react").ComponentType<Partial<{
3
4
  dir?: string | undefined;
5
+ rel?: string | undefined;
4
6
  id?: string | undefined;
5
7
  className?: string | undefined;
6
8
  slot?: string | undefined;
@@ -8,8 +10,19 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
8
10
  title?: string | undefined;
9
11
  tabIndex?: number | undefined;
10
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;
11
23
  role?: import("react").AriaRole | undefined;
12
24
  'aria-label'?: string | undefined;
25
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
13
26
  'aria-haspopup'?: boolean | "true" | "dialog" | "menu" | "false" | "grid" | "listbox" | "tree" | undefined;
14
27
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
15
28
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
@@ -18,23 +31,18 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
18
31
  defaultValue?: string | number | readonly string[] | undefined;
19
32
  suppressContentEditableWarning?: boolean | undefined;
20
33
  suppressHydrationWarning?: boolean | undefined;
21
- accessKey?: string | undefined;
22
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
34
+ autoFocus?: boolean | undefined;
23
35
  contextMenu?: string | undefined;
24
- draggable?: (boolean | "true" | "false") | undefined;
25
- hidden?: boolean | undefined;
26
- lang?: string | undefined;
27
- nonce?: string | undefined;
28
36
  placeholder?: string | undefined;
29
37
  spellCheck?: (boolean | "true" | "false") | undefined;
30
- translate?: "yes" | "no" | undefined;
31
38
  radioGroup?: string | undefined;
32
39
  about?: string | undefined;
40
+ content?: string | undefined;
33
41
  datatype?: string | undefined;
34
42
  inlist?: any;
35
- prefix?: string | undefined;
36
43
  property?: string | undefined;
37
44
  resource?: string | undefined;
45
+ rev?: string | undefined;
38
46
  typeof?: string | undefined;
39
47
  vocab?: string | undefined;
40
48
  autoCapitalize?: string | undefined;
@@ -49,24 +57,26 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
49
57
  results?: number | undefined;
50
58
  security?: string | undefined;
51
59
  unselectable?: "on" | "off" | undefined;
52
- inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
53
60
  is?: string | undefined;
54
61
  'aria-activedescendant'?: string | undefined;
55
62
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
56
63
  'aria-autocomplete'?: "none" | "both" | "list" | "inline" | undefined;
64
+ 'aria-braillelabel'?: string | undefined;
65
+ 'aria-brailleroledescription'?: string | undefined;
57
66
  'aria-busy'?: (boolean | "true" | "false") | undefined;
58
67
  'aria-colcount'?: number | undefined;
59
68
  'aria-colindex'?: number | undefined;
69
+ 'aria-colindextext'?: string | undefined;
60
70
  'aria-colspan'?: number | undefined;
61
71
  'aria-controls'?: string | undefined;
62
72
  'aria-current'?: boolean | "true" | "time" | "false" | "page" | "step" | "location" | "date" | undefined;
63
73
  'aria-describedby'?: string | undefined;
74
+ 'aria-description'?: string | undefined;
64
75
  'aria-details'?: string | undefined;
65
76
  'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
66
77
  'aria-errormessage'?: string | undefined;
67
78
  'aria-flowto'?: string | undefined;
68
79
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
69
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
70
80
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
71
81
  'aria-keyshortcuts'?: string | undefined;
72
82
  'aria-labelledby'?: string | undefined;
@@ -85,6 +95,7 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
85
95
  'aria-roledescription'?: string | undefined;
86
96
  'aria-rowcount'?: number | undefined;
87
97
  'aria-rowindex'?: number | undefined;
98
+ 'aria-rowindextext'?: string | undefined;
88
99
  'aria-rowspan'?: number | undefined;
89
100
  'aria-selected'?: (boolean | "true" | "false") | undefined;
90
101
  'aria-setsize'?: number | undefined;
@@ -93,9 +104,8 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
93
104
  'aria-valuemin'?: number | undefined;
94
105
  'aria-valuenow'?: number | undefined;
95
106
  'aria-valuetext'?: string | undefined;
96
- children?: import("react").ReactNode;
97
107
  dangerouslySetInnerHTML?: {
98
- __html: string;
108
+ __html: string | TrustedHTML;
99
109
  } | undefined;
100
110
  onCopy?: import("react").ClipboardEventHandler<import("action-group/src").ActionGroup> | undefined;
101
111
  onCopyCapture?: import("react").ClipboardEventHandler<import("action-group/src").ActionGroup> | undefined;
@@ -276,13 +286,16 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
276
286
  autofocus: boolean;
277
287
  normalize: () => void;
278
288
  readonly childNodes: NodeListOf<ChildNode>;
279
- quiet: boolean;
280
- emphasized: boolean;
281
- selected: string[];
282
- vertical: boolean;
283
- compact: boolean;
284
- justified: boolean;
285
- selects: "single" | "multiple" | undefined;
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>;
286
299
  readonly accessKeyLabel: string;
287
300
  autocapitalize: string;
288
301
  inert: boolean;
@@ -574,20 +587,18 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
574
587
  onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
575
588
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
576
589
  readonly dataset: DOMStringMap;
590
+ static?: "white" | "black" | undefined;
591
+ quiet: boolean;
592
+ emphasized: boolean;
593
+ selected: string[];
594
+ vertical: boolean;
595
+ compact: boolean;
596
+ justified: boolean;
597
+ selects: "single" | "multiple" | undefined;
577
598
  buttons: import("action-button/src").ActionButton[];
578
599
  _buttons: import("action-button/src").ActionButton[];
579
600
  rovingTabindexController: import("@spectrum-web-components/reactive-controllers/src/RovingTabindex").RovingTabindexController<import("action-button/src").ActionButton>;
580
601
  readonly renderOptions: import("lit-html").RenderOptions;
581
- connectedCallback: () => void;
582
- disconnectedCallback: () => void;
583
- readonly renderRoot: HTMLElement | ShadowRoot;
584
- isUpdatePending: boolean;
585
- hasUpdated: boolean;
586
- addController: (controller: import("lit").ReactiveController) => void;
587
- removeController: (controller: import("lit").ReactiveController) => void;
588
- attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
589
- requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
590
- readonly updateComplete: Promise<boolean>;
591
602
  isLTR: boolean;
592
603
  hasVisibleFocusInTree: () => boolean;
593
604
  } & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/action-group",
3
- "version": "0.34.1-rc.0+1647bfed5",
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/action-group": "^0.34.1-rc.0+1647bfed5"
33
+ "@spectrum-web-components/action-group": "^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": "1647bfed54cb29f3513343cd0d2c2d9e73e1c508"
43
+ "gitHead": "9b76319e4f1cc7cb0dd03e9d9debf544e5bed4e9"
44
44
  }