@swc-react/field-group 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.
Files changed (2) hide show
  1. package/next.d.ts +9 -9
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -3,14 +3,15 @@
3
3
  export declare const FieldGroup: import("react").ComponentType<Partial<{
4
4
  dir?: string | undefined;
5
5
  'aria-hidden'?: (boolean | "true" | "false") | undefined;
6
+ hidden?: boolean | undefined;
7
+ title?: string | undefined;
8
+ 'aria-describedby'?: string | undefined;
9
+ id?: string | undefined;
6
10
  accessKey?: string | undefined;
7
11
  draggable?: (boolean | "true" | "false") | undefined;
8
- hidden?: boolean | undefined;
9
12
  lang?: string | undefined;
10
- title?: string | undefined;
11
13
  translate?: "yes" | "no" | undefined;
12
14
  className?: string | undefined;
13
- id?: string | undefined;
14
15
  prefix?: string | undefined;
15
16
  slot?: string | undefined;
16
17
  children?: import("react").ReactNode;
@@ -19,7 +20,6 @@ export declare const FieldGroup: import("react").ComponentType<Partial<{
19
20
  inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
20
21
  nonce?: string | undefined;
21
22
  tabIndex?: number | undefined;
22
- 'aria-describedby'?: string | undefined;
23
23
  'aria-label'?: string | undefined;
24
24
  defaultChecked?: boolean | undefined;
25
25
  defaultValue?: string | number | readonly string[] | undefined;
@@ -282,13 +282,16 @@ export declare const FieldGroup: import("react").ComponentType<Partial<{
282
282
  (options?: ScrollToOptions | undefined): void;
283
283
  (x: number, y: number): void;
284
284
  };
285
+ horizontal: boolean;
286
+ vertical: boolean;
287
+ readonly renderOptions: import("lit-html").RenderOptions;
288
+ connectedCallback: () => void;
289
+ disconnectedCallback: () => void;
285
290
  readonly renderRoot: HTMLElement | ShadowRoot;
286
291
  isUpdatePending: boolean;
287
292
  hasUpdated: boolean;
288
293
  addController: (controller: import("lit").ReactiveController) => void;
289
294
  removeController: (controller: import("lit").ReactiveController) => void;
290
- connectedCallback: () => void;
291
- disconnectedCallback: () => void;
292
295
  attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
293
296
  requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
294
297
  readonly updateComplete: Promise<boolean>;
@@ -587,9 +590,6 @@ export declare const FieldGroup: import("react").ComponentType<Partial<{
587
590
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
588
591
  autofocus: boolean;
589
592
  readonly dataset: DOMStringMap;
590
- horizontal: boolean;
591
- vertical: boolean;
592
- readonly renderOptions: import("lit-html").RenderOptions;
593
593
  isLTR: boolean;
594
594
  hasVisibleFocusInTree: () => boolean;
595
595
  renderHelpText: (negative?: boolean | undefined) => import("lit-html").TemplateResult<2 | 1>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/field-group",
3
- "version": "0.35.1-rc.34+2cc53a49a",
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/field-group": "^0.35.1-rc.34+2cc53a49a"
33
+ "@spectrum-web-components/field-group": "^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": "2cc53a49a9491e4d86ed3c39ab430fda8a7a5b96"
43
+ "gitHead": "a532ff8a410abeefb54d9638a2316ae82570566e"
44
44
  }