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