@swc-react/action-bar 0.33.2 → 0.33.3-overlay.66

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 +6 -6
package/next.d.ts CHANGED
@@ -6,13 +6,11 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
6
6
  slot?: string | undefined;
7
7
  style?: import("react").CSSProperties | undefined;
8
8
  title?: string | undefined;
9
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
10
- accessKey?: string | undefined;
11
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
12
9
  defaultChecked?: boolean | undefined;
13
10
  defaultValue?: string | number | readonly string[] | undefined;
14
11
  suppressContentEditableWarning?: boolean | undefined;
15
12
  suppressHydrationWarning?: boolean | undefined;
13
+ accessKey?: string | undefined;
16
14
  className?: string | undefined;
17
15
  contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
18
16
  contextMenu?: string | undefined;
@@ -45,18 +43,18 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
45
43
  results?: number | undefined;
46
44
  security?: string | undefined;
47
45
  unselectable?: "on" | "off" | undefined;
48
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
46
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
49
47
  is?: string | undefined;
50
48
  'aria-activedescendant'?: string | undefined;
51
49
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
52
- 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
50
+ 'aria-autocomplete'?: "inline" | "list" | "none" | "both" | undefined;
53
51
  'aria-busy'?: (boolean | "true" | "false") | undefined;
54
52
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
55
53
  'aria-colcount'?: number | undefined;
56
54
  'aria-colindex'?: number | undefined;
57
55
  'aria-colspan'?: number | undefined;
58
56
  'aria-controls'?: string | undefined;
59
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
57
+ 'aria-current'?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
60
58
  'aria-describedby'?: string | undefined;
61
59
  'aria-details'?: string | undefined;
62
60
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -66,12 +64,14 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
66
64
  'aria-flowto'?: string | undefined;
67
65
  'aria-grabbed'?: (boolean | "true" | "false") | undefined;
68
66
  'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
67
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
69
68
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
70
69
  'aria-keyshortcuts'?: string | undefined;
71
70
  'aria-label'?: string | undefined;
72
71
  'aria-labelledby'?: string | undefined;
73
72
  'aria-level'?: number | undefined;
74
73
  'aria-live'?: "off" | "assertive" | "polite" | undefined;
74
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
75
75
  'aria-multiline'?: (boolean | "true" | "false") | undefined;
76
76
  'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
77
77
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
@@ -271,9 +271,6 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
271
271
  (options?: ScrollToOptions | undefined): void;
272
272
  (x: number, y: number): void;
273
273
  };
274
- animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
275
- readonly renderOptions: import("lit-html").RenderOptions;
276
- remove: () => void;
277
274
  normalize: () => void;
278
275
  flexible: boolean;
279
276
  variant: string;
@@ -449,9 +446,11 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
449
446
  ariaValueMin: string | null;
450
447
  ariaValueNow: string | null;
451
448
  ariaValueText: string | null;
449
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
452
450
  getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
453
451
  after: (...nodes: (string | Node)[]) => void;
454
452
  before: (...nodes: (string | Node)[]) => void;
453
+ remove: () => void;
455
454
  replaceWith: (...nodes: (string | Node)[]) => void;
456
455
  innerHTML: string;
457
456
  readonly nextElementSibling: Element | null;
@@ -570,6 +569,7 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
570
569
  autofocus: boolean;
571
570
  readonly dataset: DOMStringMap;
572
571
  render: () => import("lit-html").TemplateResult<2 | 1>;
572
+ readonly renderOptions: import("lit-html").RenderOptions;
573
573
  connectedCallback: () => void;
574
574
  disconnectedCallback: () => void;
575
575
  readonly renderRoot: HTMLElement | ShadowRoot;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc-react/action-bar",
3
- "version": "0.33.2",
3
+ "version": "0.33.3-overlay.66+30e96d5ea",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -28,6 +28,10 @@
28
28
  "Spectrum Web Components",
29
29
  "@spectrum-web-components/action-bar"
30
30
  ],
31
+ "dependencies": {
32
+ "@lit-labs/react": "^1.1.1",
33
+ "@spectrum-web-components/action-bar": "^0.33.3-overlay.66+30e96d5ea"
34
+ },
31
35
  "peerDependencies": {
32
36
  "next": "~13.4"
33
37
  },
@@ -36,9 +40,5 @@
36
40
  "optional": true
37
41
  }
38
42
  },
39
- "dependencies": {
40
- "@lit-labs/react": "^1.1.1",
41
- "@spectrum-web-components/action-bar": "^0.33.2"
42
- },
43
- "gitHead": "6d5d6b3c31d92a058202a242a283125d25131f81"
43
+ "gitHead": "30e96d5eaed31b7b2af916d78cabccb722889fe3"
44
44
  }