@mborecki/crossword 0.0.2
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/dist/cjs/app-globals-V2Kpy_OQ.js +5 -0
- package/dist/cjs/index-CwHIXXW5.js +61 -0
- package/dist/cjs/index-TyGpRn4d.js +3159 -0
- package/dist/cjs/index.cjs.js +9 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/cjs/mb-crossword.cjs.entry.js +323 -0
- package/dist/cjs/mb-crossword.cjs.js +25 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/crossword/cell.js +8 -0
- package/dist/collection/components/crossword/clue.js +6 -0
- package/dist/collection/components/crossword/mb-crossword.css +57 -0
- package/dist/collection/components/crossword/mb-crossword.js +405 -0
- package/dist/collection/components/crossword/types.js +1 -0
- package/dist/collection/index.js +10 -0
- package/dist/collection/utils/utils.js +15 -0
- package/dist/collection/utils/utils.test.js +52 -0
- package/dist/components/index.d.ts +35 -0
- package/dist/components/index.js +1 -0
- package/dist/components/mb-crossword.d.ts +11 -0
- package/dist/components/mb-crossword.js +1 -0
- package/dist/esm/app-globals-DQuL1Twl.js +3 -0
- package/dist/esm/index-0i8AYf_G.js +56 -0
- package/dist/esm/index-B4XIBYtu.js +3152 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +11 -0
- package/dist/esm/mb-crossword.entry.js +321 -0
- package/dist/esm/mb-crossword.js +21 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mb-crossword/index.esm.js +1 -0
- package/dist/mb-crossword/mb-crossword.esm.js +1 -0
- package/dist/mb-crossword/p-0i8AYf_G.js +1 -0
- package/dist/mb-crossword/p-5b227b8e.entry.js +1 -0
- package/dist/mb-crossword/p-B4XIBYtu.js +2 -0
- package/dist/mb-crossword/p-DQuL1Twl.js +1 -0
- package/dist/types/components/crossword/cell.d.ts +7 -0
- package/dist/types/components/crossword/clue.d.ts +7 -0
- package/dist/types/components/crossword/mb-crossword.d.ts +40 -0
- package/dist/types/components/crossword/types.d.ts +20 -0
- package/dist/types/components.d.ts +50 -0
- package/dist/types/index.d.ts +11 -0
- package/dist/types/roboczy/mb-puzzle/apps/crossword/.stencil/apps/crossword/vitest.config.d.ts +2 -0
- package/dist/types/roboczy/mb-puzzle/apps/crossword/.stencil/shared/vec2/src/vec2.d.ts +17 -0
- package/dist/types/roboczy/mb-puzzle/apps/crossword/.stencil/shared/vec2/src/vec2.test.d.ts +1 -0
- package/dist/types/roboczy/mb-puzzle/apps/crossword/.stencil/shared/vec2/vitest.config.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +1839 -0
- package/dist/types/utils/utils.d.ts +4 -0
- package/dist/types/utils/utils.test.d.ts +1 -0
- package/dist/vitest.config.js +4 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/package.json +53 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview entry point for your component library
|
|
3
|
+
*
|
|
4
|
+
* This is the entry point for your component library. Use this file to export utilities,
|
|
5
|
+
* constants or data structure that accompany your components.
|
|
6
|
+
*
|
|
7
|
+
* DO NOT use this file to export your components. Instead, use the recommended approaches
|
|
8
|
+
* to consume components of this package as outlined in the `README.md`.
|
|
9
|
+
*/
|
|
10
|
+
export * from './utils/utils';
|
|
11
|
+
export type * from './components';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface Vec2PasrableObject {
|
|
2
|
+
x: number;
|
|
3
|
+
y: number;
|
|
4
|
+
}
|
|
5
|
+
export type Vec2Source = number | number[] | Required<Vec2PasrableObject>;
|
|
6
|
+
export declare class Vec2 {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
get 0(): number;
|
|
10
|
+
set 0(x: number);
|
|
11
|
+
get 1(): number;
|
|
12
|
+
set 1(y: number);
|
|
13
|
+
get xy(): number[];
|
|
14
|
+
[Symbol.iterator](): Generator<number, void, unknown>;
|
|
15
|
+
constructor(x: number, y: number);
|
|
16
|
+
static from(source: Vec2Source): Vec2;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|