proto-sudoku-wc 0.1.134 → 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.
@@ -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.1 | MIT Licensed | https://stenciljs.com
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) {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-C3LWFcuJ.js');
3
+ var index = require('./index-Hwv_0jWI.js');
4
4
  var appGlobals = require('./app-globals-V2Kpy_OQ.js');
5
5
 
6
6
  const defineCustomElements = async (win, options) => {
@@ -1,11 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-C3LWFcuJ.js');
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.1 | MIT Licensed | https://stenciljs.com
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-C3LWFcuJ.js');
3
+ var index = require('./index-Hwv_0jWI.js');
4
4
 
5
5
  const Alien = props => {
6
6
  const hex = props.hex || 'currentColor';
@@ -862,6 +862,7 @@ const normalizeRetryOptions = (retry = {}) => {
862
862
  if (retry.methods && !Array.isArray(retry.methods)) {
863
863
  throw new Error('retry.methods must be an array');
864
864
  }
865
+ retry.methods &&= retry.methods.map(method => method.toLowerCase());
865
866
  if (retry.statusCodes && !Array.isArray(retry.statusCodes)) {
866
867
  throw new Error('retry.statusCodes must be an array');
867
868
  }
@@ -1016,21 +1017,35 @@ class Ky {
1016
1017
  for (const hook of ky.#options.hooks.afterResponse) {
1017
1018
  // Clone the response before passing to hook so we can cancel it if needed
1018
1019
  const clonedResponse = ky.#decorateResponse(response.clone());
1019
- // eslint-disable-next-line no-await-in-loop
1020
- const modifiedResponse = await hook(ky.request, ky.#getNormalizedOptions(), clonedResponse, { retryCount: ky.#retryCount });
1021
- if (modifiedResponse instanceof globalThis.Response) {
1022
- response = modifiedResponse;
1020
+ let modifiedResponse;
1021
+ try {
1022
+ // eslint-disable-next-line no-await-in-loop
1023
+ modifiedResponse = await hook(ky.request, ky.#getNormalizedOptions(), clonedResponse, { retryCount: ky.#retryCount });
1024
+ }
1025
+ catch (error) {
1026
+ // Cancel both responses to prevent memory leaks when hook throws
1027
+ ky.#cancelResponseBody(clonedResponse);
1028
+ ky.#cancelResponseBody(response);
1029
+ throw error;
1023
1030
  }
1024
1031
  if (modifiedResponse instanceof RetryMarker) {
1025
- // Cancel both the cloned response passed to the hook and the current response
1026
- // to prevent resource leaks (especially important in Deno/Bun)
1027
- // eslint-disable-next-line no-await-in-loop
1028
- await Promise.all([
1029
- clonedResponse.body?.cancel(),
1030
- response.body?.cancel(),
1031
- ]);
1032
+ // Cancel both the cloned response passed to the hook and the current response to prevent resource leaks (especially important in Deno/Bun).
1033
+ // Do not await cancellation since hooks can clone the response, leaving extra tee branches that keep cancel promises pending per the Streams spec.
1034
+ ky.#cancelResponseBody(clonedResponse);
1035
+ ky.#cancelResponseBody(response);
1032
1036
  throw new ForceRetryError(modifiedResponse.options);
1033
1037
  }
1038
+ // Determine which response to use going forward
1039
+ const nextResponse = modifiedResponse instanceof globalThis.Response ? modifiedResponse : response;
1040
+ // Cancel any response bodies we won't use to prevent memory leaks.
1041
+ // Uses fire-and-forget since hooks may have cloned the response, creating tee branches that block cancellation.
1042
+ if (clonedResponse !== nextResponse) {
1043
+ ky.#cancelResponseBody(clonedResponse);
1044
+ }
1045
+ if (response !== nextResponse) {
1046
+ ky.#cancelResponseBody(response);
1047
+ }
1048
+ response = nextResponse;
1034
1049
  }
1035
1050
  ky.#decorateResponse(response);
1036
1051
  if (!response.ok && (typeof ky.#options.throwHttpErrors === 'function'
@@ -1051,23 +1066,20 @@ class Ky {
1051
1066
  if (!supportsResponseStreams) {
1052
1067
  throw new Error('Streams are not supported in your environment. `ReadableStream` is missing.');
1053
1068
  }
1054
- return streamResponse(response.clone(), ky.#options.onDownloadProgress);
1069
+ const progressResponse = response.clone();
1070
+ ky.#cancelResponseBody(response);
1071
+ return streamResponse(progressResponse, ky.#options.onDownloadProgress);
1055
1072
  }
1056
1073
  return response;
1057
1074
  };
1058
1075
  // Always wrap in #retry to catch forced retries from afterResponse hooks
1059
1076
  // Method retriability is checked in #calculateRetryDelay for non-forced retries
1060
1077
  const result = ky.#retry(function_)
1061
- .finally(async () => {
1078
+ .finally(() => {
1062
1079
  const originalRequest = ky.#originalRequest;
1063
- const cleanupPromises = [];
1064
- if (originalRequest && !originalRequest.bodyUsed) {
1065
- cleanupPromises.push(originalRequest.body?.cancel());
1066
- }
1067
- if (!ky.request.bodyUsed) {
1068
- cleanupPromises.push(ky.request.body?.cancel());
1069
- }
1070
- await Promise.all(cleanupPromises);
1080
+ // Ignore cancellation errors from already-locked or already-consumed streams.
1081
+ ky.#cancelBody(originalRequest?.body ?? undefined);
1082
+ ky.#cancelBody(ky.request.body ?? undefined);
1071
1083
  });
1072
1084
  for (const [type, mimeType] of Object.entries(responseTypes)) {
1073
1085
  // Only expose `.bytes()` when the environment implements it.
@@ -1273,6 +1285,17 @@ class Ky {
1273
1285
  }
1274
1286
  return response;
1275
1287
  }
1288
+ #cancelBody(body) {
1289
+ if (!body) {
1290
+ return;
1291
+ }
1292
+ // Ignore cancellation failures from already-locked or already-consumed streams.
1293
+ void body.cancel().catch(() => undefined);
1294
+ }
1295
+ #cancelResponseBody(response) {
1296
+ // Ignore cancellation failures from already-locked or already-consumed streams.
1297
+ this.#cancelBody(response.body ?? undefined);
1298
+ }
1276
1299
  async #retry(function_) {
1277
1300
  try {
1278
1301
  return await function_();
@@ -1795,7 +1818,309 @@ const ToolBar = _props => {
1795
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)));
1796
1819
  };
1797
1820
 
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`;
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
+ `;
1799
2124
 
1800
2125
  const ProtoSudoku = class {
1801
2126
  constructor(hostRef) {
@@ -4,7 +4,7 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.40.1",
7
+ "version": "4.40.0",
8
8
  "typescriptVersion": "5.8.3"
9
9
  },
10
10
  "collections": [],
@@ -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.1 | MIT Licensed | https://stenciljs.com
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) {
@@ -1,5 +1,5 @@
1
- import { b as bootstrapLazy } from './index-CBGxvxwA.js';
2
- export { s as setNonce } from './index-CBGxvxwA.js';
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-CBGxvxwA.js';
2
- export { s as setNonce } from './index-CBGxvxwA.js';
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.1 | MIT Licensed | https://stenciljs.com
6
+ Stencil Client Patch Browser v4.40.0 | MIT Licensed | https://stenciljs.com
7
7
  */
8
8
 
9
9
  var patchBrowser = () => {