@swc-react/split-view 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 +27 -27
  2. package/package.json +3 -3
package/next.d.ts CHANGED
@@ -3,35 +3,33 @@
3
3
  export declare const SplitView: import("react").ComponentType<Partial<{
4
4
  dir?: string | undefined;
5
5
  slot?: string | undefined;
6
- accessKey?: string | undefined;
7
- draggable?: (boolean | "true" | "false") | undefined;
8
- hidden?: boolean | undefined;
9
- lang?: string | undefined;
10
- title?: string | undefined;
11
- translate?: "yes" | "no" | undefined;
12
- className?: string | undefined;
13
- id?: string | undefined;
14
- prefix?: string | undefined;
15
- children?: import("react").ReactNode;
16
- style?: import("react").CSSProperties | undefined;
17
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
18
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
19
- nonce?: string | undefined;
20
- tabIndex?: number | undefined;
21
6
  defaultChecked?: boolean | undefined;
22
7
  defaultValue?: string | number | readonly string[] | undefined;
23
8
  suppressContentEditableWarning?: boolean | undefined;
24
9
  suppressHydrationWarning?: boolean | undefined;
10
+ accessKey?: string | undefined;
25
11
  autoFocus?: boolean | undefined;
12
+ className?: string | undefined;
13
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
26
14
  contextMenu?: string | undefined;
15
+ draggable?: (boolean | "true" | "false") | undefined;
16
+ hidden?: boolean | undefined;
17
+ id?: string | undefined;
18
+ lang?: string | undefined;
19
+ nonce?: string | undefined;
27
20
  placeholder?: string | undefined;
28
21
  spellCheck?: (boolean | "true" | "false") | undefined;
22
+ style?: import("react").CSSProperties | undefined;
23
+ tabIndex?: number | undefined;
24
+ title?: string | undefined;
25
+ translate?: "yes" | "no" | undefined;
29
26
  radioGroup?: string | undefined;
30
27
  role?: import("react").AriaRole | undefined;
31
28
  about?: string | undefined;
32
29
  content?: string | undefined;
33
30
  datatype?: string | undefined;
34
31
  inlist?: any;
32
+ prefix?: string | undefined;
35
33
  property?: string | undefined;
36
34
  rel?: string | undefined;
37
35
  resource?: string | undefined;
@@ -50,10 +48,11 @@ export declare const SplitView: import("react").ComponentType<Partial<{
50
48
  results?: number | undefined;
51
49
  security?: string | undefined;
52
50
  unselectable?: "off" | "on" | undefined;
51
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
53
52
  is?: string | undefined;
54
53
  'aria-activedescendant'?: string | undefined;
55
54
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
56
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
55
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
57
56
  'aria-braillelabel'?: string | undefined;
58
57
  'aria-brailleroledescription'?: string | undefined;
59
58
  'aria-busy'?: (boolean | "true" | "false") | undefined;
@@ -104,6 +103,7 @@ export declare const SplitView: 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;
@@ -283,16 +283,7 @@ export declare const SplitView: import("react").ComponentType<Partial<{
283
283
  secondaryMax: number;
284
284
  splitterPos?: number | undefined;
285
285
  label?: string | undefined;
286
- readonly renderRoot: HTMLElement | ShadowRoot;
287
- isUpdatePending: boolean;
288
- hasUpdated: boolean;
289
- addController: (controller: import("lit").ReactiveController) => void;
290
- removeController: (controller: import("lit").ReactiveController) => void;
291
- connectedCallback: () => void;
292
- disconnectedCallback: () => void;
293
- attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
294
- requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
295
- readonly updateComplete: Promise<boolean>;
286
+ normalize: () => void;
296
287
  readonly accessKeyLabel: string;
297
288
  autocapitalize: string;
298
289
  inert: boolean;
@@ -413,7 +404,6 @@ export declare const SplitView: import("react").ComponentType<Partial<{
413
404
  isSameNode: (otherNode: Node | null) => boolean;
414
405
  lookupNamespaceURI: (prefix: string | null) => string | null;
415
406
  lookupPrefix: (namespace: string | null) => string | null;
416
- normalize: () => void;
417
407
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
418
408
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
419
409
  readonly ATTRIBUTE_NODE: number;
@@ -595,8 +585,18 @@ export declare const SplitView: import("react").ComponentType<Partial<{
595
585
  readonly dataset: DOMStringMap;
596
586
  blur: () => void;
597
587
  focus: (options?: FocusOptions | undefined) => void;
588
+ connectedCallback: () => void;
589
+ disconnectedCallback: () => void;
598
590
  readonly splitterSize: number;
599
591
  readonly renderOptions: import("lit-html").RenderOptions;
592
+ readonly renderRoot: HTMLElement | ShadowRoot;
593
+ isUpdatePending: boolean;
594
+ hasUpdated: boolean;
595
+ addController: (controller: import("lit").ReactiveController) => void;
596
+ removeController: (controller: import("lit").ReactiveController) => void;
597
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
598
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
599
+ readonly updateComplete: Promise<boolean>;
600
600
  isLTR: boolean;
601
601
  hasVisibleFocusInTree: () => boolean;
602
602
  } & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/split-view",
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/split-view": "^0.35.1-rc.34+2cc53a49a"
33
+ "@spectrum-web-components/split-view": "^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
  }