proto-sudoku-wc 0.0.732 → 0.0.734
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-3a1e7e63.js +5 -0
- package/dist/cjs/loader.cjs.js +3 -1
- package/dist/cjs/proto-sudoku-wc.cjs.js +4 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/loader.js +3 -1
- package/dist/esm/proto-sudoku-wc.js +4 -2
- package/dist/proto-sudoku-wc/p-e1255160.js +1 -0
- package/dist/proto-sudoku-wc/proto-sudoku-wc.esm.js +1 -1
- package/package.json +2 -2
package/dist/cjs/loader.cjs.js
CHANGED
@@ -3,9 +3,11 @@
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
5
|
const index = require('./index-e53fd9d7.js');
|
6
|
+
const appGlobals = require('./app-globals-3a1e7e63.js');
|
6
7
|
|
7
|
-
const defineCustomElements = (win, options) => {
|
8
|
+
const defineCustomElements = async (win, options) => {
|
8
9
|
if (typeof window === 'undefined') return undefined;
|
10
|
+
await appGlobals.globalScripts();
|
9
11
|
return index.bootstrapLazy([["proto-sudoku.cjs",[[1,"proto-sudoku",{"tag":[1],"platform":[1]}]]]], options);
|
10
12
|
};
|
11
13
|
|
@@ -3,9 +3,10 @@
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
5
|
const index = require('./index-e53fd9d7.js');
|
6
|
+
const appGlobals = require('./app-globals-3a1e7e63.js');
|
6
7
|
|
7
8
|
/*
|
8
|
-
Stencil Client Patch Browser v4.12.
|
9
|
+
Stencil Client Patch Browser v4.12.2 | MIT Licensed | https://stenciljs.com
|
9
10
|
*/
|
10
11
|
const patchBrowser = () => {
|
11
12
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('proto-sudoku-wc.cjs.js', document.baseURI).href));
|
@@ -16,7 +17,8 @@ const patchBrowser = () => {
|
|
16
17
|
return index.promiseResolve(opts);
|
17
18
|
};
|
18
19
|
|
19
|
-
patchBrowser().then(options => {
|
20
|
+
patchBrowser().then(async (options) => {
|
21
|
+
await appGlobals.globalScripts();
|
20
22
|
return index.bootstrapLazy([["proto-sudoku.cjs",[[1,"proto-sudoku",{"tag":[1],"platform":[1]}]]]], options);
|
21
23
|
});
|
22
24
|
|
package/dist/esm/loader.js
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
import { b as bootstrapLazy } from './index-ff464e74.js';
|
2
2
|
export { s as setNonce } from './index-ff464e74.js';
|
3
|
+
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
3
4
|
|
4
|
-
const defineCustomElements = (win, options) => {
|
5
|
+
const defineCustomElements = async (win, options) => {
|
5
6
|
if (typeof window === 'undefined') return undefined;
|
7
|
+
await globalScripts();
|
6
8
|
return bootstrapLazy([["proto-sudoku",[[1,"proto-sudoku",{"tag":[1],"platform":[1]}]]]], options);
|
7
9
|
};
|
8
10
|
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { p as promiseResolve, b as bootstrapLazy } from './index-ff464e74.js';
|
2
2
|
export { s as setNonce } from './index-ff464e74.js';
|
3
|
+
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
3
4
|
|
4
5
|
/*
|
5
|
-
Stencil Client Patch Browser v4.12.
|
6
|
+
Stencil Client Patch Browser v4.12.2 | MIT Licensed | https://stenciljs.com
|
6
7
|
*/
|
7
8
|
const patchBrowser = () => {
|
8
9
|
const importMeta = import.meta.url;
|
@@ -13,6 +14,7 @@ const patchBrowser = () => {
|
|
13
14
|
return promiseResolve(opts);
|
14
15
|
};
|
15
16
|
|
16
|
-
patchBrowser().then(options => {
|
17
|
+
patchBrowser().then(async (options) => {
|
18
|
+
await globalScripts();
|
17
19
|
return bootstrapLazy([["proto-sudoku",[[1,"proto-sudoku",{"tag":[1],"platform":[1]}]]]], options);
|
18
20
|
});
|
@@ -0,0 +1 @@
|
|
1
|
+
const o=()=>{};export{o as g}
|
@@ -1 +1 @@
|
|
1
|
-
import{p as o,b as t}from"./p-2585763c.js";export{s as setNonce}from"./p-2585763c.js";(()=>{const
|
1
|
+
import{p as o,b as t}from"./p-2585763c.js";export{s as setNonce}from"./p-2585763c.js";import{g as p}from"./p-e1255160.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),o(t)})().then((async o=>(await p(),t([["p-7e6218df",[[1,"proto-sudoku",{tag:[1],platform:[1]}]]]],o))));
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "proto-sudoku-wc",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.734",
|
4
4
|
"description": "prototype - a simple Sudoku app rendered in Stencil and Tailwind",
|
5
5
|
"main": "dist/index.cjs.js",
|
6
6
|
"module": "dist/index.js",
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"format": "prettier --write src"
|
28
28
|
},
|
29
29
|
"dependencies": {
|
30
|
-
"@stencil/core": "4.12.
|
30
|
+
"@stencil/core": "4.12.2",
|
31
31
|
"@stencil/store": "2.0.13",
|
32
32
|
"ky": "1.2.0",
|
33
33
|
"proto-tailwindcss-clrs": "0.0.309",
|