proto-sudoku-wc 0.1.135 → 0.1.136
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/{index-C3LWFcuJ.js → index-Hwv_0jWI.js} +1 -4
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/proto-sudoku-wc.cjs.js +2 -2
- package/dist/cjs/proto-sudoku.cjs.entry.js +304 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/esm/{index-CBGxvxwA.js → index-Ch9YH7Mc.js} +1 -4
- package/dist/esm/loader.js +2 -2
- package/dist/esm/proto-sudoku-wc.js +3 -3
- package/dist/esm/proto-sudoku.entry.js +304 -2
- package/dist/proto-sudoku-wc/{p-18a8ddd7.entry.js → p-80784d2f.entry.js} +2 -2
- package/dist/proto-sudoku-wc/p-Ch9YH7Mc.js +2 -0
- package/dist/proto-sudoku-wc/proto-sudoku-wc.esm.js +1 -1
- package/package.json +2 -2
- package/dist/proto-sudoku-wc/p-CBGxvxwA.js +0 -2
|
@@ -5,7 +5,7 @@ const BUILD = /* proto-sudoku-wc */ { allRenderFn: true, appendChildSlotFix: fal
|
|
|
5
5
|
const Env = /* proto-sudoku-wc */ {};
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Platform v4.40.
|
|
8
|
+
Stencil Client Platform v4.40.0 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
var __create = Object.create;
|
|
11
11
|
var __defProp = Object.defineProperty;
|
|
@@ -480,9 +480,6 @@ var supportsListenerOptions = /* @__PURE__ */ (() => {
|
|
|
480
480
|
var promiseResolve = (v) => Promise.resolve(v);
|
|
481
481
|
var supportsConstructableStylesheets = BUILD.constructableCSS ? /* @__PURE__ */ (() => {
|
|
482
482
|
try {
|
|
483
|
-
if (!win.document.adoptedStyleSheets) {
|
|
484
|
-
return false;
|
|
485
|
-
}
|
|
486
483
|
new CSSStyleSheet();
|
|
487
484
|
return typeof new CSSStyleSheet().replaceSync === "function";
|
|
488
485
|
} catch (e) {
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-Hwv_0jWI.js');
|
|
4
4
|
var appGlobals = require('./app-globals-V2Kpy_OQ.js');
|
|
5
5
|
|
|
6
6
|
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v4.40.
|
|
8
|
+
Stencil Client Patch Browser v4.40.0 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
var patchBrowser = () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-Hwv_0jWI.js');
|
|
4
4
|
|
|
5
5
|
const Alien = props => {
|
|
6
6
|
const hex = props.hex || 'currentColor';
|
|
@@ -1818,7 +1818,309 @@ const ToolBar = _props => {
|
|
|
1818
1818
|
return (index.h("div", { class: "flex flex-row" }, index.h(Button, { label: NEW_PUZZLE, callback: handleRefresh(actions) }), list.length === 81 && !solved ? (index.h(Button, { label: CHECK, callback: handleCheck(actions) })) : (''), index.h(TwLabel, null)));
|
|
1819
1819
|
};
|
|
1820
1820
|
|
|
1821
|
-
const shadowCss = () =>
|
|
1821
|
+
const shadowCss = () => `
|
|
1822
|
+
@layer properties;
|
|
1823
|
+
@layer theme, base, components, utilities;
|
|
1824
|
+
@layer theme {
|
|
1825
|
+
:root,
|
|
1826
|
+
:host {
|
|
1827
|
+
--font-sans:
|
|
1828
|
+
ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
|
|
1829
|
+
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
1830
|
+
--color-gray-50: oklch(98.5% 0.002 247.839);
|
|
1831
|
+
--color-white: #fff;
|
|
1832
|
+
--spacing: 0.25rem;
|
|
1833
|
+
--text-xs: 0.75rem;
|
|
1834
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
1835
|
+
--text-lg: 1.125rem;
|
|
1836
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
1837
|
+
--text-6xl: 3.75rem;
|
|
1838
|
+
--text-6xl--line-height: 1;
|
|
1839
|
+
--font-weight-thin: 100;
|
|
1840
|
+
--font-weight-bold: 700;
|
|
1841
|
+
--radius-md: 0.375rem;
|
|
1842
|
+
--animate-spin: spin 1s linear infinite;
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
@layer utilities {
|
|
1846
|
+
.absolute {
|
|
1847
|
+
position: absolute;
|
|
1848
|
+
}
|
|
1849
|
+
.relative {
|
|
1850
|
+
position: relative;
|
|
1851
|
+
}
|
|
1852
|
+
.top-0 {
|
|
1853
|
+
top: calc(var(--spacing) * 0);
|
|
1854
|
+
}
|
|
1855
|
+
.right-0 {
|
|
1856
|
+
right: calc(var(--spacing) * 0);
|
|
1857
|
+
}
|
|
1858
|
+
.m-6 {
|
|
1859
|
+
margin: calc(var(--spacing) * 6);
|
|
1860
|
+
}
|
|
1861
|
+
.mt-2 {
|
|
1862
|
+
margin-top: calc(var(--spacing) * 2);
|
|
1863
|
+
}
|
|
1864
|
+
.mt-5 {
|
|
1865
|
+
margin-top: calc(var(--spacing) * 5);
|
|
1866
|
+
}
|
|
1867
|
+
.mt-11 {
|
|
1868
|
+
margin-top: calc(var(--spacing) * 11);
|
|
1869
|
+
}
|
|
1870
|
+
.mr-0 {
|
|
1871
|
+
margin-right: calc(var(--spacing) * 0);
|
|
1872
|
+
}
|
|
1873
|
+
.mr-1 {
|
|
1874
|
+
margin-right: calc(var(--spacing) * 1);
|
|
1875
|
+
}
|
|
1876
|
+
.mr-2 {
|
|
1877
|
+
margin-right: calc(var(--spacing) * 2);
|
|
1878
|
+
}
|
|
1879
|
+
.mb-11 {
|
|
1880
|
+
margin-bottom: calc(var(--spacing) * 11);
|
|
1881
|
+
}
|
|
1882
|
+
.ml-0 {
|
|
1883
|
+
margin-left: calc(var(--spacing) * 0);
|
|
1884
|
+
}
|
|
1885
|
+
.ml-auto {
|
|
1886
|
+
margin-left: auto;
|
|
1887
|
+
}
|
|
1888
|
+
.flex {
|
|
1889
|
+
display: flex;
|
|
1890
|
+
}
|
|
1891
|
+
.grid {
|
|
1892
|
+
display: grid;
|
|
1893
|
+
}
|
|
1894
|
+
.h-8 {
|
|
1895
|
+
height: calc(var(--spacing) * 8);
|
|
1896
|
+
}
|
|
1897
|
+
.h-24px {
|
|
1898
|
+
height: 24px;
|
|
1899
|
+
}
|
|
1900
|
+
.h-76p5 {
|
|
1901
|
+
height: 19.125rem;
|
|
1902
|
+
}
|
|
1903
|
+
.w-8 {
|
|
1904
|
+
width: calc(var(--spacing) * 8);
|
|
1905
|
+
}
|
|
1906
|
+
.w-76p5 {
|
|
1907
|
+
width: 19.125rem;
|
|
1908
|
+
}
|
|
1909
|
+
.max-w-min {
|
|
1910
|
+
max-width: min-content;
|
|
1911
|
+
}
|
|
1912
|
+
.animate-spin {
|
|
1913
|
+
animation: var(--animate-spin);
|
|
1914
|
+
}
|
|
1915
|
+
.flex-col {
|
|
1916
|
+
flex-direction: column;
|
|
1917
|
+
}
|
|
1918
|
+
.flex-row {
|
|
1919
|
+
flex-direction: row;
|
|
1920
|
+
}
|
|
1921
|
+
.flex-wrap {
|
|
1922
|
+
flex-wrap: wrap;
|
|
1923
|
+
}
|
|
1924
|
+
.items-center {
|
|
1925
|
+
align-items: center;
|
|
1926
|
+
}
|
|
1927
|
+
.justify-end {
|
|
1928
|
+
justify-content: flex-end;
|
|
1929
|
+
}
|
|
1930
|
+
.rounded-md {
|
|
1931
|
+
border-radius: var(--radius-md);
|
|
1932
|
+
}
|
|
1933
|
+
.border {
|
|
1934
|
+
border-style: var(--tw-border-style);
|
|
1935
|
+
border-width: 1px;
|
|
1936
|
+
}
|
|
1937
|
+
.border-solid {
|
|
1938
|
+
--tw-border-style: solid;
|
|
1939
|
+
border-style: solid;
|
|
1940
|
+
}
|
|
1941
|
+
.border-clrs-gray {
|
|
1942
|
+
border-color: var(--clrs-gray, #aaaaaa);
|
|
1943
|
+
}
|
|
1944
|
+
.border-clrs-navy {
|
|
1945
|
+
border-color: var(--clrs-navy, #001f3f);
|
|
1946
|
+
}
|
|
1947
|
+
.border-clrs-red {
|
|
1948
|
+
border-color: var(--clrs-red, #ff4136);
|
|
1949
|
+
}
|
|
1950
|
+
.border-clrs-slate4 {
|
|
1951
|
+
border-color: var(--clrs-slate4, #4e5964);
|
|
1952
|
+
}
|
|
1953
|
+
.bg-clrs-green-a50 {
|
|
1954
|
+
background-color: var(--clrs-green-a50, #2ecc4050);
|
|
1955
|
+
}
|
|
1956
|
+
.bg-clrs-navy {
|
|
1957
|
+
background-color: var(--clrs-navy, #001f3f);
|
|
1958
|
+
}
|
|
1959
|
+
.bg-clrs-red {
|
|
1960
|
+
background-color: var(--clrs-red, #ff4136);
|
|
1961
|
+
}
|
|
1962
|
+
.bg-clrs-red-a50 {
|
|
1963
|
+
background-color: var(--clrs-red-a50, #ff413650);
|
|
1964
|
+
}
|
|
1965
|
+
.bg-clrs-silver {
|
|
1966
|
+
background-color: var(--clrs-silver, #dddddd);
|
|
1967
|
+
}
|
|
1968
|
+
.bg-clrs-slate4 {
|
|
1969
|
+
background-color: var(--clrs-slate4, #4e5964);
|
|
1970
|
+
}
|
|
1971
|
+
.bg-clrs-yellow {
|
|
1972
|
+
background-color: var(--clrs-yellow, #ffdc00);
|
|
1973
|
+
}
|
|
1974
|
+
.bg-gray-50 {
|
|
1975
|
+
background-color: var(--color-gray-50);
|
|
1976
|
+
}
|
|
1977
|
+
.p-0\.5 {
|
|
1978
|
+
padding: calc(var(--spacing) * 0.5);
|
|
1979
|
+
}
|
|
1980
|
+
.px-2 {
|
|
1981
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
1982
|
+
}
|
|
1983
|
+
.px-3 {
|
|
1984
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
1985
|
+
}
|
|
1986
|
+
.py-1 {
|
|
1987
|
+
padding-block: calc(var(--spacing) * 1);
|
|
1988
|
+
}
|
|
1989
|
+
.py-2 {
|
|
1990
|
+
padding-block: calc(var(--spacing) * 2);
|
|
1991
|
+
}
|
|
1992
|
+
.text-center {
|
|
1993
|
+
text-align: center;
|
|
1994
|
+
}
|
|
1995
|
+
.align-top {
|
|
1996
|
+
vertical-align: top;
|
|
1997
|
+
}
|
|
1998
|
+
.font-sans {
|
|
1999
|
+
font-family: var(--font-sans);
|
|
2000
|
+
}
|
|
2001
|
+
.text-6xl {
|
|
2002
|
+
font-size: var(--text-6xl);
|
|
2003
|
+
line-height: var(--tw-leading, var(--text-6xl--line-height));
|
|
2004
|
+
}
|
|
2005
|
+
.text-lg {
|
|
2006
|
+
font-size: var(--text-lg);
|
|
2007
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
2008
|
+
}
|
|
2009
|
+
.text-xs {
|
|
2010
|
+
font-size: var(--text-xs);
|
|
2011
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
2012
|
+
}
|
|
2013
|
+
.leading-8 {
|
|
2014
|
+
--tw-leading: calc(var(--spacing) * 8);
|
|
2015
|
+
line-height: calc(var(--spacing) * 8);
|
|
2016
|
+
}
|
|
2017
|
+
.font-bold {
|
|
2018
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
2019
|
+
font-weight: var(--font-weight-bold);
|
|
2020
|
+
}
|
|
2021
|
+
.font-thin {
|
|
2022
|
+
--tw-font-weight: var(--font-weight-thin);
|
|
2023
|
+
font-weight: var(--font-weight-thin);
|
|
2024
|
+
}
|
|
2025
|
+
.text-clrs-gray {
|
|
2026
|
+
color: var(--clrs-gray, #aaaaaa);
|
|
2027
|
+
}
|
|
2028
|
+
.text-clrs-navy {
|
|
2029
|
+
color: var(--clrs-navy, #001f3f);
|
|
2030
|
+
}
|
|
2031
|
+
.text-clrs-red {
|
|
2032
|
+
color: var(--clrs-red, #ff4136);
|
|
2033
|
+
}
|
|
2034
|
+
.text-clrs-slate4 {
|
|
2035
|
+
color: var(--clrs-slate4, #4e5964);
|
|
2036
|
+
}
|
|
2037
|
+
.text-white {
|
|
2038
|
+
color: var(--color-white);
|
|
2039
|
+
}
|
|
2040
|
+
.uppercase {
|
|
2041
|
+
text-transform: uppercase;
|
|
2042
|
+
}
|
|
2043
|
+
.italic {
|
|
2044
|
+
font-style: italic;
|
|
2045
|
+
}
|
|
2046
|
+
.opacity-25 {
|
|
2047
|
+
opacity: 25%;
|
|
2048
|
+
}
|
|
2049
|
+
.opacity-75 {
|
|
2050
|
+
opacity: 75%;
|
|
2051
|
+
}
|
|
2052
|
+
.shadow {
|
|
2053
|
+
--tw-shadow:
|
|
2054
|
+
0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
2055
|
+
0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2056
|
+
box-shadow:
|
|
2057
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
|
2058
|
+
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2059
|
+
}
|
|
2060
|
+
.border-xbb-clrs-navy {
|
|
2061
|
+
border-bottom: 1px solid var(--clrs-navy, #001f3f) !important;
|
|
2062
|
+
}
|
|
2063
|
+
.border-xbl-clrs-navy {
|
|
2064
|
+
border-left: 1px solid var(--clrs-navy, #001f3f) !important;
|
|
2065
|
+
}
|
|
2066
|
+
.border-xbr-clrs-navy {
|
|
2067
|
+
border-right: 1px solid var(--clrs-navy, #001f3f) !important;
|
|
2068
|
+
}
|
|
2069
|
+
.border-xbt-clrs-navy {
|
|
2070
|
+
border-top: 1px solid var(--clrs-navy, #001f3f) !important;
|
|
2071
|
+
}
|
|
2072
|
+
.hover\:text-clrs-navy {
|
|
2073
|
+
&:hover {
|
|
2074
|
+
@media (hover: hover) {
|
|
2075
|
+
color: var(--clrs-navy, #001f3f);
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2079
|
+
}
|
|
2080
|
+
@layer components {
|
|
2081
|
+
.ds1-main {
|
|
2082
|
+
margin: calc(var(--spacing) * 6);
|
|
2083
|
+
display: flex;
|
|
2084
|
+
flex-direction: column;
|
|
2085
|
+
font-family: var(--font-sans);
|
|
2086
|
+
color: var(--clrs-navy, #001f3f);
|
|
2087
|
+
-webkit-font-smoothing: antialiased;
|
|
2088
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2089
|
+
}
|
|
2090
|
+
}
|
|
2091
|
+
@keyframes spin {
|
|
2092
|
+
to {
|
|
2093
|
+
transform: rotate(360deg);
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
@layer properties {
|
|
2097
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or
|
|
2098
|
+
((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
2099
|
+
*,
|
|
2100
|
+
::before,
|
|
2101
|
+
::after,
|
|
2102
|
+
::backdrop {
|
|
2103
|
+
--tw-border-style: solid;
|
|
2104
|
+
--tw-leading: initial;
|
|
2105
|
+
--tw-font-weight: initial;
|
|
2106
|
+
--tw-shadow: 0 0 #0000;
|
|
2107
|
+
--tw-shadow-color: initial;
|
|
2108
|
+
--tw-shadow-alpha: 100%;
|
|
2109
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
2110
|
+
--tw-inset-shadow-color: initial;
|
|
2111
|
+
--tw-inset-shadow-alpha: 100%;
|
|
2112
|
+
--tw-ring-color: initial;
|
|
2113
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
2114
|
+
--tw-inset-ring-color: initial;
|
|
2115
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
2116
|
+
--tw-ring-inset: initial;
|
|
2117
|
+
--tw-ring-offset-width: 0px;
|
|
2118
|
+
--tw-ring-offset-color: #fff;
|
|
2119
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2120
|
+
}
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
`;
|
|
1822
2124
|
|
|
1823
2125
|
const ProtoSudoku = class {
|
|
1824
2126
|
constructor(hostRef) {
|
|
@@ -3,7 +3,7 @@ const BUILD = /* proto-sudoku-wc */ { allRenderFn: true, appendChildSlotFix: fal
|
|
|
3
3
|
const Env = /* proto-sudoku-wc */ {};
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Platform v4.40.
|
|
6
|
+
Stencil Client Platform v4.40.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var __create = Object.create;
|
|
9
9
|
var __defProp = Object.defineProperty;
|
|
@@ -478,9 +478,6 @@ var supportsListenerOptions = /* @__PURE__ */ (() => {
|
|
|
478
478
|
var promiseResolve = (v) => Promise.resolve(v);
|
|
479
479
|
var supportsConstructableStylesheets = BUILD.constructableCSS ? /* @__PURE__ */ (() => {
|
|
480
480
|
try {
|
|
481
|
-
if (!win.document.adoptedStyleSheets) {
|
|
482
|
-
return false;
|
|
483
|
-
}
|
|
484
481
|
new CSSStyleSheet();
|
|
485
482
|
return typeof new CSSStyleSheet().replaceSync === "function";
|
|
486
483
|
} catch (e) {
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { b as bootstrapLazy } from './index-Ch9YH7Mc.js';
|
|
2
|
+
export { s as setNonce } from './index-Ch9YH7Mc.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-DQuL1Twl.js';
|
|
4
4
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, B as BUILD, c as consoleDevInfo, w as win, N as NAMESPACE, H, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, B as BUILD, c as consoleDevInfo, w as win, N as NAMESPACE, H, b as bootstrapLazy } from './index-Ch9YH7Mc.js';
|
|
2
|
+
export { s as setNonce } from './index-Ch9YH7Mc.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-DQuL1Twl.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.40.
|
|
6
|
+
Stencil Client Patch Browser v4.40.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
var patchBrowser = () => {
|