mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
Update stylelint
This commit is contained in:
parent
b6186d874b
commit
1c9f99d388
|
|
@ -1,19 +1,13 @@
|
|||
{
|
||||
"customSyntax": "@stylelint/postcss-css-in-js",
|
||||
"extends": [
|
||||
"stylelint-config-recommended",
|
||||
"stylelint-config-sass-guidelines",
|
||||
"stylelint-config-styled-components",
|
||||
"stylelint-config-prettier"
|
||||
],
|
||||
"customSyntax": "postcss-styled-syntax",
|
||||
"extends": ["stylelint-config-standard"],
|
||||
"plugins": ["stylelint-order"],
|
||||
"rules": {
|
||||
"annotation-no-unknown": null,
|
||||
"function-no-unknown": null,
|
||||
"max-nesting-depth": null,
|
||||
"property-no-unknown": null,
|
||||
"selector-max-compound-selectors": null,
|
||||
"selector-max-id": null,
|
||||
"selector-no-qualifying-type": null
|
||||
"alpha-value-notation": "percentage",
|
||||
"color-function-notation": "legacy",
|
||||
"declaration-empty-line-before": null,
|
||||
"hue-degree-notation": "number",
|
||||
"rule-empty-line-before": null,
|
||||
"value-keyword-case": null
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ const StyledDevTools = styled.div`
|
|||
|
||||
.eruda-dev-tools {
|
||||
height: 100% !important;
|
||||
opacity: 1 !important;
|
||||
opacity: 100% !important;
|
||||
|
||||
.eruda-nav-bar-container {
|
||||
.eruda-nav-bar {
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
import styled from "styled-components";
|
||||
|
||||
const StyledIRC = styled.div``;
|
||||
|
||||
export default StyledIRC;
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
import { getNetworkConfig } from "components/apps/IRC/config";
|
||||
import StyledIRC from "components/apps/IRC/StyledIRC";
|
||||
import type { ComponentProcessProps } from "components/system/Apps/RenderComponent";
|
||||
import StyledLoading from "components/system/Files/FileManager/StyledLoading";
|
||||
import { useProcesses } from "contexts/process";
|
||||
|
|
@ -87,7 +86,7 @@ const IRC: FC<ComponentProcessProps> = ({ id }) => {
|
|||
}, [channels, id, title]);
|
||||
|
||||
return (
|
||||
<StyledIRC>
|
||||
<div>
|
||||
{!loaded && <StyledLoading />}
|
||||
<iframe
|
||||
ref={iframeRef}
|
||||
|
|
@ -97,7 +96,7 @@ const IRC: FC<ComponentProcessProps> = ({ id }) => {
|
|||
title={id}
|
||||
width="100%"
|
||||
/>
|
||||
</StyledIRC>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ const StyledMarked = styled.div`
|
|||
pre {
|
||||
background-color: #f6f8fa;
|
||||
border-radius: 3px;
|
||||
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
|
||||
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier,
|
||||
monospace;
|
||||
font-size: 85%;
|
||||
line-height: 1.45;
|
||||
|
|
@ -125,7 +125,7 @@ const StyledMarked = styled.div`
|
|||
}
|
||||
|
||||
code:not([class]) {
|
||||
background-color: rgba(27, 31, 35, 0.05);
|
||||
background-color: rgba(27, 31, 35, 5%);
|
||||
border-radius: 3px;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ const StyledPaint = styled.div`
|
|||
color: #fff;
|
||||
font-weight: 500;
|
||||
mix-blend-mode: normal;
|
||||
text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
|
||||
text-shadow: 1px 2px 3px rgba(0, 0, 0, 50%);
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
|
|
|||
|
|
@ -76,11 +76,11 @@ const StyledPhotos = styled.div`
|
|||
}
|
||||
|
||||
&:hover {
|
||||
background-color: rgba(75, 75, 75, 0.5);
|
||||
background-color: rgba(75, 75, 75, 50%);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: rgba(100, 100, 100, 0.5);
|
||||
background-color: rgba(100, 100, 100, 50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ const StyledTinyMceEditor = styled.div`
|
|||
position: relative;
|
||||
|
||||
&::before {
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
background-color: rgba(255, 255, 255, 80%);
|
||||
content: "Click to switch to design mode.";
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
|
|
@ -27,7 +27,7 @@ const StyledTinyMceEditor = styled.div`
|
|||
place-content: center;
|
||||
place-items: center;
|
||||
position: absolute;
|
||||
text-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
|
||||
text-shadow: 0 0 25px rgba(0, 0, 0, 80%);
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ const StyledV86 = styled.div`
|
|||
}
|
||||
|
||||
div {
|
||||
font-family: Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
|
||||
font-family: "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
line-height: normal;
|
||||
|
|
|
|||
|
|
@ -16,14 +16,14 @@ const StyledVideoPlayer = styled.div`
|
|||
.vjs-control-bar {
|
||||
background-color: rgb(240, 240, 240);
|
||||
display: flex !important;
|
||||
opacity: 1 !important;
|
||||
opacity: 100% !important;
|
||||
padding: 0 1;
|
||||
}
|
||||
|
||||
&.vjs-youtube,
|
||||
&.vjs-fullscreen.vjs-user-inactive {
|
||||
.vjs-control-bar {
|
||||
opacity: 0 !important;
|
||||
opacity: 0% !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -112,7 +112,7 @@ const StyledVideoPlayer = styled.div`
|
|||
&::before {
|
||||
color: rgb(237, 237, 237);
|
||||
text-shadow: 1px 2px 3px rgb(160, 160, 160);
|
||||
-webkit-text-stroke: 1px rgba(164, 164, 164, 0.8);
|
||||
-webkit-text-stroke: 1px rgba(164, 164, 164, 80%);
|
||||
top: -3px;
|
||||
}
|
||||
}
|
||||
|
|
@ -144,7 +144,7 @@ const StyledVideoPlayer = styled.div`
|
|||
color: rgb(237, 237, 237);
|
||||
font-size: 1.5em;
|
||||
text-shadow: 1px 2px 3px rgb(160, 160, 160);
|
||||
-webkit-text-stroke: 1px rgba(164, 164, 164, 0.8);
|
||||
-webkit-text-stroke: 1px rgba(164, 164, 164, 80%);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ const StyledRun = styled.div`
|
|||
|
||||
&:disabled {
|
||||
border: 1px solid rgb(122, 122, 122);
|
||||
opacity: 1;
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -41,10 +41,12 @@ const StyledTransfer = styled.div`
|
|||
}
|
||||
|
||||
&:indeterminate {
|
||||
/* stylelint-disable-next-line block-no-empty */
|
||||
&::-moz-progress-bar {
|
||||
${gradientAnimation}
|
||||
}
|
||||
|
||||
/* stylelint-disable-next-line block-no-empty */
|
||||
&::after {
|
||||
${gradientAnimation}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,9 +18,7 @@ const StyledStatusBar = styled.footer`
|
|||
padding: 0 3px 0 10px;
|
||||
|
||||
&::after {
|
||||
border-right-color: rgb(247, 247, 247);
|
||||
border-right-style: solid;
|
||||
border-right-width: 1px;
|
||||
border-right: 1px solid rgb(247, 247, 247);
|
||||
content: "";
|
||||
height: 11px;
|
||||
margin-left: 11px;
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ const StyledFileEntry = styled.li`
|
|||
&:active {
|
||||
figcaption {
|
||||
letter-spacing: -0.15px;
|
||||
opacity: 0.9;
|
||||
opacity: 90%;
|
||||
}
|
||||
|
||||
picture {
|
||||
|
|
|
|||
|
|
@ -20,19 +20,19 @@ const ThinScrollBars = css<StyledStartMenuProps>`
|
|||
&::-webkit-scrollbar-corner,
|
||||
&::-webkit-scrollbar-track {
|
||||
background-color: ${({ $showScrolling }) =>
|
||||
!$showScrolling && "transparent"};
|
||||
$showScrolling ? undefined : "transparent"};
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-button:single-button {
|
||||
background-color: ${({ $showScrolling }) =>
|
||||
!$showScrolling && "transparent"};
|
||||
$showScrolling ? undefined : "transparent"};
|
||||
border: ${({ $showScrolling }) =>
|
||||
!$showScrolling && "1px solid transparent"};
|
||||
$showScrolling ? undefined : "1px solid transparent"};
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb:vertical {
|
||||
background-color: ${({ $showScrolling }) =>
|
||||
!$showScrolling && "rgb(167, 167, 167)"};
|
||||
$showScrolling ? undefined : "rgb(167, 167, 167)"};
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ const StyledStartButton = styled(Button)<StyledStartButtonProps>`
|
|||
|
||||
&:hover {
|
||||
background-color: ${({ $active, theme }) =>
|
||||
!$active && theme.colors.taskbar.hover};
|
||||
$active ? undefined : theme.colors.taskbar.hover};
|
||||
|
||||
svg {
|
||||
fill: ${({ theme }) => theme.colors.highlight};
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -81,7 +81,6 @@
|
|||
"7z-wasm": "^1.0.1",
|
||||
"@next/bundle-analyzer": "^13.1.6",
|
||||
"@next/eslint-plugin-next": "^13.1.6",
|
||||
"@stylelint/postcss-css-in-js": "^0.38.0",
|
||||
"@types/gif.js": "^0.2.2",
|
||||
"@types/ini": "^1.3.31",
|
||||
"@types/jest": "^29.4.0",
|
||||
|
|
@ -123,12 +122,11 @@
|
|||
"lunr": "^2.3.9",
|
||||
"monaco-editor": "^0.35.0",
|
||||
"pdfjs-dist": "^3.3.122",
|
||||
"postcss-styled-syntax": "^0.3.1",
|
||||
"postcss-syntax": "^0.36.2",
|
||||
"stylelint": "^14.16.1",
|
||||
"stylelint-config-prettier": "^9.0.4",
|
||||
"stylelint-config-recommended": "^9.0.0",
|
||||
"stylelint-config-sass-guidelines": "^9.0.1",
|
||||
"stylelint-config-styled-components": "^0.1.1",
|
||||
"stylelint": "^15.0.0",
|
||||
"stylelint-config-standard": "^30.0.1",
|
||||
"stylelint-order": "^6.0.2",
|
||||
"terser": "^5.16.3",
|
||||
"tinymce": "^6.3.1",
|
||||
"ts-prune": "^0.10.3",
|
||||
|
|
|
|||
178
yarn.lock
178
yarn.lock
|
|
@ -34,7 +34,7 @@
|
|||
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.14.tgz#4106fc8b755f3e3ee0a0a7c27dde5de1d2b2baf8"
|
||||
integrity sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==
|
||||
|
||||
"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.17.9":
|
||||
"@babel/core@^7.11.6", "@babel/core@^7.12.3":
|
||||
version "7.20.12"
|
||||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d"
|
||||
integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==
|
||||
|
|
@ -331,7 +331,22 @@
|
|||
dependencies:
|
||||
fs-monkey "^1.0.3"
|
||||
|
||||
"@csstools/selector-specificity@^2.0.2":
|
||||
"@csstools/css-parser-algorithms@^2.0.1":
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.0.1.tgz#ff02629c7c95d1f4f8ea84d5ef1173461610535e"
|
||||
integrity sha512-B9/8PmOtU6nBiibJg0glnNktQDZ3rZnGn/7UmDfrm2vMtrdlXO3p7ErE95N0up80IRk9YEtB5jyj/TmQ1WH3dw==
|
||||
|
||||
"@csstools/css-tokenizer@^2.0.1":
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.0.1.tgz#cb1e11752db57e69d9aa0e84c3105a25845d4055"
|
||||
integrity sha512-sYD3H7ReR88S/4+V5VbKiBEUJF4FqvG+8aNJkxqoPAnbhFziDG22IDZc4+h+xA63SfgM+h15lq5OnLeCxQ9nPA==
|
||||
|
||||
"@csstools/media-query-list-parser@^2.0.1":
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.0.1.tgz#d85a366811563a5d002755ed10e5212a1613c91d"
|
||||
integrity sha512-X2/OuzEbjaxhzm97UJ+95GrMeT29d1Ib+Pu+paGLuRWZnWRK9sI9r3ikmKXPWGA1C4y4JEdBEFpp9jEqCvLeRA==
|
||||
|
||||
"@csstools/selector-specificity@^2.1.1":
|
||||
version "2.1.1"
|
||||
resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz#c9c61d9fe5ca5ac664e1153bb0aa0eba1c6d6308"
|
||||
integrity sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==
|
||||
|
|
@ -909,13 +924,6 @@
|
|||
dependencies:
|
||||
"@sinonjs/commons" "^2.0.0"
|
||||
|
||||
"@stylelint/postcss-css-in-js@^0.38.0":
|
||||
version "0.38.0"
|
||||
resolved "https://registry.yarnpkg.com/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.38.0.tgz#eabb061df932744db766f11a153ae1c465b6263c"
|
||||
integrity sha512-XOz5CAe49kS95p5yRd+DAIWDojTjfmyAQ4bbDlXMdbZTQ5t0ThjSLvWI6JI2uiS7MFurVBkZ6zUqcimzcLTBoQ==
|
||||
dependencies:
|
||||
"@babel/core" "^7.17.9"
|
||||
|
||||
"@swc/helpers@0.4.14":
|
||||
version "0.4.14"
|
||||
resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74"
|
||||
|
|
@ -1237,7 +1245,7 @@
|
|||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.51.0.tgz#e7c1622f46c7eea7e12bbf1edfb496d4dec37c90"
|
||||
integrity sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==
|
||||
|
||||
"@typescript-eslint/typescript-estree@5.51.0":
|
||||
"@typescript-eslint/typescript-estree@5.51.0", "@typescript-eslint/typescript-estree@^5.47.0":
|
||||
version "5.51.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz#0ec8170d7247a892c2b21845b06c11eb0718f8de"
|
||||
integrity sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==
|
||||
|
|
@ -2153,7 +2161,7 @@ core-util-is@~1.0.0:
|
|||
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
|
||||
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
|
||||
|
||||
cosmiconfig@^7.0.1, cosmiconfig@^7.1.0:
|
||||
cosmiconfig@^7.0.1:
|
||||
version "7.1.0"
|
||||
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
|
||||
integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
|
||||
|
|
@ -2164,6 +2172,16 @@ cosmiconfig@^7.0.1, cosmiconfig@^7.1.0:
|
|||
path-type "^4.0.0"
|
||||
yaml "^1.10.0"
|
||||
|
||||
cosmiconfig@^8.0.0:
|
||||
version "8.0.0"
|
||||
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97"
|
||||
integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==
|
||||
dependencies:
|
||||
import-fresh "^3.2.1"
|
||||
js-yaml "^4.1.0"
|
||||
parse-json "^5.0.0"
|
||||
path-type "^4.0.0"
|
||||
|
||||
crc-32@^1.2.0, crc-32@~1.2.0, crc-32@~1.2.1:
|
||||
version "1.2.2"
|
||||
resolved "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.2.tgz#3cad35a934b8bf71f25ca524b6da51fb7eace2ff"
|
||||
|
|
@ -2197,6 +2215,14 @@ css-to-react-native@^3.0.0:
|
|||
css-color-keywords "^1.0.0"
|
||||
postcss-value-parser "^4.0.2"
|
||||
|
||||
css-tree@^2.3.1:
|
||||
version "2.3.1"
|
||||
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20"
|
||||
integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
|
||||
dependencies:
|
||||
mdn-data "2.0.30"
|
||||
source-map-js "^1.0.1"
|
||||
|
||||
cssesc@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
|
||||
|
|
@ -2427,9 +2453,9 @@ eel-wasm@^0.0.15:
|
|||
integrity sha512-FSTWf6lwGn7Zc3QiV+KxWTznIqq4j9eST/aXmyN/cC39+1Arqs13YOMosHQ7tqUt+OjQmG79Vd41f9gu+w1lvA==
|
||||
|
||||
electron-to-chromium@^1.4.284:
|
||||
version "1.4.290"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.290.tgz#62ddde1ea2db0dc31b6fe5898911fc85b83977fb"
|
||||
integrity sha512-3uIkNYprKqAixFqANvs7K3zacGz6iVIMcGG1M/7hMn6Gvzxe52Xg//wRUds7GPv2uouF7EZ4Sh51fLDw+aBkHw==
|
||||
version "1.4.293"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.293.tgz#eaea755ad37a0f1759874a8597b33be62def2781"
|
||||
integrity sha512-h7vBlhC83NsgC9UO3LOZx91xgstIrHk5iqMbZgnEArL5rHTM6HfsUZhnwb3oRnNetXM1741kB9SO7x9jLshz5A==
|
||||
|
||||
emittery@^0.13.1:
|
||||
version "0.13.1"
|
||||
|
|
@ -2957,6 +2983,11 @@ estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
|
|||
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
|
||||
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
|
||||
|
||||
estree-walker@^2.0.2:
|
||||
version "2.0.2"
|
||||
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
|
||||
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
|
||||
|
||||
esutils@^2.0.2:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
||||
|
|
@ -3621,7 +3652,7 @@ ieee754@^1.1.13, ieee754@^1.2.1:
|
|||
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
|
||||
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
|
||||
|
||||
ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.1:
|
||||
ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4:
|
||||
version "5.2.4"
|
||||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
|
||||
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
|
||||
|
|
@ -4716,6 +4747,11 @@ mathml-tag-names@^2.1.3:
|
|||
resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3"
|
||||
integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==
|
||||
|
||||
mdn-data@2.0.30:
|
||||
version "2.0.30"
|
||||
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc"
|
||||
integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
|
||||
|
||||
media-typer@0.3.0:
|
||||
version "0.3.0"
|
||||
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
|
||||
|
|
@ -5423,12 +5459,7 @@ postcss-safe-parser@^6.0.0:
|
|||
resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1"
|
||||
integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==
|
||||
|
||||
postcss-scss@^4.0.2:
|
||||
version "4.0.6"
|
||||
resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.6.tgz#5d62a574b950a6ae12f2aa89b60d63d9e4432bfd"
|
||||
integrity sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==
|
||||
|
||||
postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.6:
|
||||
postcss-selector-parser@^6.0.11:
|
||||
version "6.0.11"
|
||||
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc"
|
||||
integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==
|
||||
|
|
@ -5436,17 +5467,25 @@ postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.6:
|
|||
cssesc "^3.0.0"
|
||||
util-deprecate "^1.0.2"
|
||||
|
||||
postcss-sorting@^7.0.1:
|
||||
version "7.0.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz#923b5268451cf2d93ebf8835e17a6537757049a5"
|
||||
integrity sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==
|
||||
postcss-sorting@^8.0.1:
|
||||
version "8.0.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-sorting/-/postcss-sorting-8.0.1.tgz#d03852914979ac0a1ef3ca6e517bf4b53c045f35"
|
||||
integrity sha512-go9Zoxx7KQH+uLrJ9xa5wRErFeXu01ydA6O8m7koPXkmAN7Ts//eRcIqjo0stBR4+Nir2gMYDOWAOx7O5EPUZA==
|
||||
|
||||
postcss-styled-syntax@^0.3.1:
|
||||
version "0.3.1"
|
||||
resolved "https://registry.yarnpkg.com/postcss-styled-syntax/-/postcss-styled-syntax-0.3.1.tgz#3f5654300a2ff008542bf4bd970d02fcf2541204"
|
||||
integrity sha512-DmZ/IxBqBVRLWMPu2VPCGKc8AkV0dAqQ3VdxDlWckQVzMSxzZW3Y+5vqpSgTo2eQqa+6eBX85rdsrWyrAXhUoQ==
|
||||
dependencies:
|
||||
"@typescript-eslint/typescript-estree" "^5.47.0"
|
||||
estree-walker "^2.0.2"
|
||||
|
||||
postcss-syntax@^0.36.2:
|
||||
version "0.36.2"
|
||||
resolved "https://registry.yarnpkg.com/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c"
|
||||
integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==
|
||||
|
||||
postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
|
||||
postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0:
|
||||
version "4.2.0"
|
||||
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
|
||||
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
||||
|
|
@ -5460,7 +5499,7 @@ postcss@8.4.14:
|
|||
picocolors "^1.0.0"
|
||||
source-map-js "^1.0.2"
|
||||
|
||||
postcss@^8.3.11, postcss@^8.4.19:
|
||||
postcss@^8.4.21:
|
||||
version "8.4.21"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4"
|
||||
integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==
|
||||
|
|
@ -6133,7 +6172,7 @@ slice-ansi@^5.0.0:
|
|||
ansi-styles "^6.0.0"
|
||||
is-fullwidth-code-point "^4.0.0"
|
||||
|
||||
source-map-js@^1.0.2:
|
||||
source-map-js@^1.0.1, source-map-js@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
|
||||
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
||||
|
|
@ -6392,59 +6431,40 @@ styled-jsx@5.1.1:
|
|||
dependencies:
|
||||
client-only "0.0.1"
|
||||
|
||||
stylelint-config-prettier@^9.0.4:
|
||||
version "9.0.4"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.4.tgz#1b1dda614d5b3ef6c1f583fa6fa55f88245eb00b"
|
||||
integrity sha512-38nIGTGpFOiK5LjJ8Ma1yUgpKENxoKSOhbDNSemY7Ep0VsJoXIW9Iq/2hSt699oB9tReynfWicTAoIHiq8Rvbg==
|
||||
stylelint-config-recommended@^10.0.1:
|
||||
version "10.0.1"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-10.0.1.tgz#25a8828acf6cde87dac6db2950c8c4ed82a69ae1"
|
||||
integrity sha512-TQ4xQ48tW4QSlODcti7pgSRqBZcUaBzuh0jPpfiMhwJKBPkqzTIAU+IrSWL/7BgXlOM90DjB7YaNgFpx8QWhuA==
|
||||
|
||||
stylelint-config-recommended@^9.0.0:
|
||||
version "9.0.0"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-9.0.0.tgz#1c9e07536a8cd875405f8ecef7314916d94e7e40"
|
||||
integrity sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ==
|
||||
|
||||
stylelint-config-sass-guidelines@^9.0.1:
|
||||
version "9.0.1"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-9.0.1.tgz#3114ce780f2085ba9ea5da2b7d97a1e85e968fa7"
|
||||
integrity sha512-N06PsVsrgKijQ3YT5hqKA7x3NUkgELTRI1cbWMqcYiCGG6MjzvNk6Cb5YYA1PrvrksBV76BvY9P9bAswojVMqA==
|
||||
stylelint-config-standard@^30.0.1:
|
||||
version "30.0.1"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-30.0.1.tgz#a84d57c240c37f7db47023ab9d2e64c49090e1eb"
|
||||
integrity sha512-NbeHOmpRQhjZh5XB1B/S4MLRWvz4xxAxeDBjzl0tY2xEcayNhLbaRGF0ZQzq+DQZLCcPpOHeS2Ru1ydbkhkmLg==
|
||||
dependencies:
|
||||
postcss-scss "^4.0.2"
|
||||
stylelint-order "^5.0.0"
|
||||
stylelint-scss "^4.0.0"
|
||||
stylelint-config-recommended "^10.0.1"
|
||||
|
||||
stylelint-config-styled-components@^0.1.1:
|
||||
version "0.1.1"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-config-styled-components/-/stylelint-config-styled-components-0.1.1.tgz#b408388d7c687833ab4be4c4e6522d97d2827ede"
|
||||
integrity sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==
|
||||
|
||||
stylelint-order@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-order/-/stylelint-order-5.0.0.tgz#abd20f6b85ac640774cbe40e70d3fe9c6fdf4400"
|
||||
integrity sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==
|
||||
stylelint-order@^6.0.2:
|
||||
version "6.0.2"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-order/-/stylelint-order-6.0.2.tgz#df54d3ed9aa5a45d4563ada0375e670140a798c2"
|
||||
integrity sha512-yuac0BE6toHd27wUPvYVVQicAJthKFIv1HPQFH3Q0dExiO3Z6Uam7geoO0tUd5Z9ddsATYK++1qWNDX4RxMH5Q==
|
||||
dependencies:
|
||||
postcss "^8.3.11"
|
||||
postcss-sorting "^7.0.1"
|
||||
postcss "^8.4.21"
|
||||
postcss-sorting "^8.0.1"
|
||||
|
||||
stylelint-scss@^4.0.0:
|
||||
version "4.3.0"
|
||||
resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-4.3.0.tgz#638800faf823db11fff60d537c81051fe74c90fa"
|
||||
integrity sha512-GvSaKCA3tipzZHoz+nNO7S02ZqOsdBzMiCx9poSmLlb3tdJlGddEX/8QzCOD8O7GQan9bjsvLMsO5xiw6IhhIQ==
|
||||
stylelint@^15.0.0:
|
||||
version "15.0.0"
|
||||
resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-15.0.0.tgz#4db01b31949e411e76a0286a5faf767b5cd41657"
|
||||
integrity sha512-K97Jgy0ZYMSs6gXoboXbWvc0KvvGnUftiI1Tiv70mQ/DpeDTHOlqQSk3o65Ien+ddYAJeLjzkYM0O6TWiHdoSg==
|
||||
dependencies:
|
||||
lodash "^4.17.21"
|
||||
postcss-media-query-parser "^0.2.3"
|
||||
postcss-resolve-nested-selector "^0.1.1"
|
||||
postcss-selector-parser "^6.0.6"
|
||||
postcss-value-parser "^4.1.0"
|
||||
|
||||
stylelint@^14.16.1:
|
||||
version "14.16.1"
|
||||
resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-14.16.1.tgz#b911063530619a1bbe44c2b875fd8181ebdc742d"
|
||||
integrity sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==
|
||||
dependencies:
|
||||
"@csstools/selector-specificity" "^2.0.2"
|
||||
"@csstools/css-parser-algorithms" "^2.0.1"
|
||||
"@csstools/css-tokenizer" "^2.0.1"
|
||||
"@csstools/media-query-list-parser" "^2.0.1"
|
||||
"@csstools/selector-specificity" "^2.1.1"
|
||||
balanced-match "^2.0.0"
|
||||
colord "^2.9.3"
|
||||
cosmiconfig "^7.1.0"
|
||||
cosmiconfig "^8.0.0"
|
||||
css-functions-list "^3.1.0"
|
||||
css-tree "^2.3.1"
|
||||
debug "^4.3.4"
|
||||
fast-glob "^3.2.12"
|
||||
fastest-levenshtein "^1.0.16"
|
||||
|
|
@ -6453,7 +6473,7 @@ stylelint@^14.16.1:
|
|||
globby "^11.1.0"
|
||||
globjoin "^0.1.4"
|
||||
html-tags "^3.2.0"
|
||||
ignore "^5.2.1"
|
||||
ignore "^5.2.4"
|
||||
import-lazy "^4.0.0"
|
||||
imurmurhash "^0.1.4"
|
||||
is-plain-object "^5.0.0"
|
||||
|
|
@ -6463,7 +6483,7 @@ stylelint@^14.16.1:
|
|||
micromatch "^4.0.5"
|
||||
normalize-path "^3.0.0"
|
||||
picocolors "^1.0.0"
|
||||
postcss "^8.4.19"
|
||||
postcss "^8.4.21"
|
||||
postcss-media-query-parser "^0.2.3"
|
||||
postcss-resolve-nested-selector "^0.1.1"
|
||||
postcss-safe-parser "^6.0.0"
|
||||
|
|
@ -6477,7 +6497,7 @@ stylelint@^14.16.1:
|
|||
svg-tags "^1.0.0"
|
||||
table "^6.8.1"
|
||||
v8-compile-cache "^2.3.0"
|
||||
write-file-atomic "^4.0.2"
|
||||
write-file-atomic "^5.0.0"
|
||||
|
||||
supports-color@^5.3.0, supports-color@^5.5.0:
|
||||
version "5.5.0"
|
||||
|
|
@ -7132,6 +7152,14 @@ write-file-atomic@^4.0.2:
|
|||
imurmurhash "^0.1.4"
|
||||
signal-exit "^3.0.7"
|
||||
|
||||
write-file-atomic@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.0.tgz#54303f117e109bf3d540261125c8ea5a7320fab0"
|
||||
integrity sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w==
|
||||
dependencies:
|
||||
imurmurhash "^0.1.4"
|
||||
signal-exit "^3.0.7"
|
||||
|
||||
ws@^7.3.1:
|
||||
version "7.5.9"
|
||||
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user