@swc-react/split-view 0.36.0 → 0.37.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,33 +3,35 @@
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;
6
21
  defaultChecked?: boolean | undefined;
7
22
  defaultValue?: string | number | readonly string[] | undefined;
8
23
  suppressContentEditableWarning?: boolean | undefined;
9
24
  suppressHydrationWarning?: boolean | undefined;
10
- accessKey?: string | undefined;
11
25
  autoFocus?: boolean | undefined;
12
- className?: string | undefined;
13
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
14
26
  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;
20
27
  placeholder?: string | undefined;
21
28
  spellCheck?: (boolean | "true" | "false") | undefined;
22
- style?: import("react").CSSProperties | undefined;
23
- tabIndex?: number | undefined;
24
- title?: string | undefined;
25
- translate?: "yes" | "no" | undefined;
26
29
  radioGroup?: string | undefined;
27
30
  role?: import("react").AriaRole | undefined;
28
31
  about?: string | undefined;
29
32
  content?: string | undefined;
30
33
  datatype?: string | undefined;
31
34
  inlist?: any;
32
- prefix?: string | undefined;
33
35
  property?: string | undefined;
34
36
  rel?: string | undefined;
35
37
  resource?: string | undefined;
@@ -48,11 +50,10 @@ export declare const SplitView: import("react").ComponentType<Partial<{
48
50
  results?: number | undefined;
49
51
  security?: string | undefined;
50
52
  unselectable?: "off" | "on" | undefined;
51
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
52
53
  is?: string | undefined;
53
54
  'aria-activedescendant'?: string | undefined;
54
55
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
55
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
56
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
56
57
  'aria-braillelabel'?: string | undefined;
57
58
  'aria-brailleroledescription'?: string | undefined;
58
59
  'aria-busy'?: (boolean | "true" | "false") | undefined;
@@ -103,7 +104,6 @@ export declare const SplitView: import("react").ComponentType<Partial<{
103
104
  'aria-valuemin'?: number | undefined;
104
105
  'aria-valuenow'?: number | undefined;
105
106
  'aria-valuetext'?: string | undefined;
106
- children?: import("react").ReactNode;
107
107
  dangerouslySetInnerHTML?: {
108
108
  __html: string | TrustedHTML;
109
109
  } | undefined;
@@ -283,7 +283,16 @@ export declare const SplitView: import("react").ComponentType<Partial<{
283
283
  secondaryMax: number;
284
284
  splitterPos?: number | undefined;
285
285
  label?: string | undefined;
286
- normalize: () => void;
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>;
287
296
  readonly accessKeyLabel: string;
288
297
  autocapitalize: string;
289
298
  inert: boolean;
@@ -404,6 +413,7 @@ export declare const SplitView: import("react").ComponentType<Partial<{
404
413
  isSameNode: (otherNode: Node | null) => boolean;
405
414
  lookupNamespaceURI: (prefix: string | null) => string | null;
406
415
  lookupPrefix: (namespace: string | null) => string | null;
416
+ normalize: () => void;
407
417
  removeChild: <T_2 extends Node>(child: T_2) => T_2;
408
418
  replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
409
419
  readonly ATTRIBUTE_NODE: number;
@@ -585,18 +595,8 @@ export declare const SplitView: import("react").ComponentType<Partial<{
585
595
  readonly dataset: DOMStringMap;
586
596
  blur: () => void;
587
597
  focus: (options?: FocusOptions | undefined) => void;
588
- connectedCallback: () => void;
589
- disconnectedCallback: () => void;
590
598
  readonly splitterSize: number;
591
599
  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.36.0",
3
+ "version": "0.37.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.36.0"
33
+ "@spectrum-web-components/split-view": "^0.37.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": "d771f62f0d8063070af43283bb0fd5e3400bad06"
44
44
  }