@mborecki/crossword-react 0.0.3

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/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@mborecki/crossword-react",
3
+ "version": "0.0.3",
4
+ "private": false,
5
+ "description": "",
6
+ "main": "src/index.ts",
7
+ "type": "module",
8
+ "keywords": [],
9
+ "author": "",
10
+ "license": "ISC",
11
+ "files": [
12
+ "src"
13
+ ],
14
+ "devDependencies": {
15
+ "@stencil/react-output-target": "^1.2.0",
16
+ "@stencil/core": "4.41.0",
17
+ "@stencil/sass": "3.2.3",
18
+ "@types/react": "^19.2.7",
19
+ "react": "^19.2.3",
20
+ "react-dom": "^19.2.3",
21
+ "typescript": "5.9.3",
22
+ "@mborecki/crossword": "0.0.2"
23
+ },
24
+ "dependencies": {
25
+ "@mborecki/crossword": "0.0.2"
26
+ },
27
+ "peerDependencies": {
28
+ "react": "^19.2.3"
29
+ },
30
+ "scripts": {
31
+ "build": "stencil build",
32
+ "test": "echo \"Error: no test specified\" && exit 1"
33
+ }
34
+ }
@@ -0,0 +1,24 @@
1
+ 'use client';
2
+
3
+ /**
4
+ * This file was automatically generated by the Stencil React Output Target.
5
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
6
+ */
7
+
8
+ /* eslint-disable */
9
+
10
+ import { MbCrossword as MbCrosswordElement, defineCustomElement as defineMbCrossword } from "@mborecki/crossword/dist/components/mb-crossword.js";
11
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
12
+ import { createComponent } from '@stencil/react-output-target/runtime';
13
+ import React from 'react';
14
+
15
+ export type MbCrosswordEvents = NonNullable<unknown>;
16
+
17
+ export const MbCrossword: StencilReactComponent<MbCrosswordElement, MbCrosswordEvents> = /*@__PURE__*/ createComponent<MbCrosswordElement, MbCrosswordEvents>({
18
+ tagName: 'mb-crossword',
19
+ elementClass: MbCrosswordElement,
20
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
21
+ react: React,
22
+ events: {} as MbCrosswordEvents,
23
+ defineCustomElement: defineMbCrossword
24
+ });
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './generated/components';