@swc-react/checkbox 0.0.0-20241211071818

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.
package/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ import type { EventName } from '@lit/react';
2
+ import { Checkbox as SpCheckbox } from '@spectrum-web-components/checkbox';
3
+ import '@spectrum-web-components/checkbox/sp-checkbox.js';
4
+ export declare const Checkbox: import("@lit/react").ReactWebComponent<SpCheckbox, {
5
+ change: EventName<Event>;
6
+ }>;
7
+ export type CheckboxType = EventTarget & SpCheckbox;
package/index.dev.js ADDED
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import { Checkbox as SpCheckbox } from "@spectrum-web-components/checkbox";
5
+ import "@spectrum-web-components/checkbox/sp-checkbox.js";
6
+ export const Checkbox = createComponent({
7
+ displayName: "Checkbox",
8
+ elementClass: SpCheckbox,
9
+ react: React,
10
+ tagName: "sp-checkbox",
11
+ events: {
12
+ change: "change"
13
+ // Announces a change in the `checked` property of a Checkbox
14
+ }
15
+ });
16
+ //# sourceMappingURL=index.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["index.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport type { EventName } from '@lit/react';\nimport { Checkbox as SpCheckbox } from '@spectrum-web-components/checkbox';\n\nimport '@spectrum-web-components/checkbox/sp-checkbox.js';\n\nexport const Checkbox = createComponent({\n displayName: 'Checkbox',\n elementClass: SpCheckbox,\n react: React,\n tagName: 'sp-checkbox',\n events: {\n change: 'change' as EventName<Event>, // Announces a change in the `checked` property of a Checkbox\n },\n});\n\nexport type CheckboxType = EventTarget & SpCheckbox;\n"],
5
+ "mappings": ";AAYA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAEhC,SAAS,YAAY,kBAAkB;AAEvC,OAAO;AAEA,aAAM,WAAW,gBAAgB;AAAA,EACpC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,OAAO;AAAA,EACP,SAAS;AAAA,EACT,QAAQ;AAAA,IACJ,QAAQ;AAAA;AAAA,EACZ;AACJ,CAAC;",
6
+ "names": []
7
+ }
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";import*as e from"react";import{createComponent as t}from"@lit/react";import{Checkbox as o}from"@spectrum-web-components/checkbox";import"@spectrum-web-components/checkbox/sp-checkbox.js";export const Checkbox=t({displayName:"Checkbox",elementClass:o,react:e,tagName:"sp-checkbox",events:{change:"change"}});
2
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["index.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport type { EventName } from '@lit/react';\nimport { Checkbox as SpCheckbox } from '@spectrum-web-components/checkbox';\n\nimport '@spectrum-web-components/checkbox/sp-checkbox.js';\n\nexport const Checkbox = createComponent({\n displayName: 'Checkbox',\n elementClass: SpCheckbox,\n react: React,\n tagName: 'sp-checkbox',\n events: {\n change: 'change' as EventName<Event>, // Announces a change in the `checked` property of a Checkbox\n },\n});\n\nexport type CheckboxType = EventTarget & SpCheckbox;\n"],
5
+ "mappings": "aAYA,UAAYA,MAAW,QACvB,OAAS,mBAAAC,MAAuB,aAEhC,OAAS,YAAYC,MAAkB,oCAEvC,MAAO,mDAEA,aAAM,SAAWD,EAAgB,CACpC,YAAa,WACb,aAAcC,EACd,MAAOF,EACP,QAAS,cACT,OAAQ,CACJ,OAAQ,QACZ,CACJ,CAAC",
6
+ "names": ["React", "createComponent", "SpCheckbox"]
7
+ }
package/next.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export declare const Checkbox: import("react").ComponentType<Omit<import("react").HTMLAttributes<import("checkbox/src").Checkbox>, "size" | "checked" | "name" | "readonly" | "inputElement" | "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "change" | "invalid" | "disabled" | "indeterminate" | "emphasized" | "handleChange" | "renderOptions" | "isLTR" | "hasVisibleFocusInTree"> & {
2
+ change?: ((e: Event) => void) | undefined;
3
+ } & Partial<Omit<import("checkbox/src").Checkbox, keyof HTMLElement>> & import("react").RefAttributes<import("checkbox/src").Checkbox>>;
package/next.dev.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import dynamic from "next/dynamic";
3
+ export const Checkbox = dynamic(() => import(".").then(({ Checkbox: Checkbox2 }) => Checkbox2), { ssr: false });
4
+ //# sourceMappingURL=next.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["next.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { Checkbox as SpCheckbox } from '.';\n\nexport const Checkbox = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpCheckbox,\n ComponentProps<typeof SpCheckbox>\n >\n>(() => import('.').then(({ Checkbox }) => Checkbox), { ssr: false });\n"],
5
+ "mappings": ";AAaA,OAAO,aAAa;AAIb,aAAM,WAAW,QAKtB,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,UAAAA,UAAS,MAAMA,SAAQ,GAAG,EAAE,KAAK,MAAM,CAAC;",
6
+ "names": ["Checkbox"]
7
+ }
package/next.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";import e from"next/dynamic";export const Checkbox=e(()=>import(".").then(({Checkbox:o})=>o),{ssr:!1});
2
+ //# sourceMappingURL=next.js.map
package/next.js.map ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["next.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { Checkbox as SpCheckbox } from '.';\n\nexport const Checkbox = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpCheckbox,\n ComponentProps<typeof SpCheckbox>\n >\n>(() => import('.').then(({ Checkbox }) => Checkbox), { ssr: false });\n"],
5
+ "mappings": "aAaA,OAAOA,MAAa,eAIb,aAAM,SAAWA,EAKtB,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,SAAAC,CAAS,IAAMA,CAAQ,EAAG,CAAE,IAAK,EAAM,CAAC",
6
+ "names": ["dynamic", "Checkbox"]
7
+ }
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@swc-react/checkbox",
3
+ "version": "0.0.0-20241211071818",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "React and Next.js wrapper of the @spectrum-web-components/checkbox component",
8
+ "license": "Apache-2.0",
9
+ "author": "",
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "development": "./index.dev.js",
14
+ "default": "./index.js"
15
+ },
16
+ "./next.js": {
17
+ "development": "./next.dev.js",
18
+ "default": "./next.js"
19
+ }
20
+ },
21
+ "files": ["**/*.d.ts", "**/*.js", "**/*.js.map"],
22
+ "keywords": [
23
+ "React",
24
+ "Spectrum Web Components",
25
+ "@spectrum-web-components/checkbox"
26
+ ],
27
+ "dependencies": {
28
+ "@lit/react": "^1.0.2",
29
+ "@spectrum-web-components/checkbox": "^0.0.0-20241211071818"
30
+ },
31
+ "peerDependencies": {
32
+ "next": "~13.4 || ~14"
33
+ },
34
+ "peerDependenciesMeta": {
35
+ "next": {
36
+ "optional": true
37
+ }
38
+ }
39
+ }