deps: bump @primer/react from 36.27.0 to 37.5.0 (#1384)

dependabot[bot] committed Nov 22, 2024 at 11:11 UTC 666ea6140aee003862d805ac4667deb96eeafdb2
7 files changed +2292 -435
gatsby-config.mjs
+1
@@ -66,6 +66,7 @@ const config = {
66 DEV_SSR: !!process.env.GATSBY_DEV_SSR,
67 },
68 plugins: [
69 + 'gatsby-plugin-postcss',
70 'gatsby-plugin-styled-components',
71 'gatsby-transformer-yaml',
72 {
jest.config.js
+3
@@ -4,4 +4,7 @@ module.exports = {
4 transform: {
5 '^.+\\.jsx?$': `<rootDir>/jest-preprocess.js`,
6 },
7 + moduleNameMapper: {
8 + '.+\\.(css|styl|less|sass|scss)$': `identity-obj-proxy`,
9 + },
10 }
package-lock.json
+2275 -431
@@ -17,7 +17,7 @@
17 "@octokit/plugin-throttling": "^9.1.0",
18 "@octokit/rest": "^21.0.0",
19 "@primer/octicons-react": "^19.8.0",
20 - "@primer/react": "^36.17.0",
20 + "@primer/react": "^37.5.0",
21 "babel-plugin-styled-components": "^2.1.4",
22 "copy-to-clipboard": "^3.3.3",
23 "deepmerge": "^4.3.1",
@@ -29,11 +29,16 @@
29 "gatsby-plugin-manifest": "^5.13.0",
30 "gatsby-plugin-mdx": "^5.13.0",
31 "gatsby-plugin-meta-redirect": "^1.1.1",
32 + "gatsby-plugin-postcss": "^6.14.0",
33 "gatsby-plugin-styled-components": "^6.13.0",
34 "gatsby-source-filesystem": "^5.13.0",
35 "gatsby-transformer-yaml": "^5.13.0",
36 "github-slugger": "^2.0.0",
37 "lodash.debounce": "4.0.8",
38 + "postcss": "^8.4.49",
39 + "postcss-import": "^16.1.0",
40 + "postcss-loader": "^8.1.1",
41 + "postcss-preset-env": "^10.1.1",
42 "prism-react-renderer": "^2.3.1",
43 "prismjs": "^1.29.0",
44 "react": "^18.2.0",
@@ -70,6 +75,7 @@
75 "eslint-plugin-promise": "^7.0.0",
76 "eslint-plugin-react": "^7.33.2",
77 "eslint-plugin-react-hooks": "^4.6.0",
78 + "identity-obj-proxy": "^3.0.0",
79 "jest": "^29.7.0",
80 "jest-environment-jsdom": "^29.7.0",
81 "prettier": "^3.1.1"
@@ -2818,6 +2824,1107 @@
2824 "@jridgewell/sourcemap-codec": "^1.4.10"
2825 }
2826 },
2827 + "node_modules/@csstools/cascade-layer-name-parser": {
2828 + "version": "2.0.4",
2829 + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.4.tgz",
2830 + "integrity": "sha512-7DFHlPuIxviKYZrOiwVU/PiHLm3lLUR23OMuEEtfEOQTOp9hzQ2JjdY6X5H18RVuUPJqSCI+qNnD5iOLMVE0bA==",
2831 + "funding": [
2832 + {
2833 + "type": "github",
2834 + "url": "https://github.com/sponsors/csstools"
2835 + },
2836 + {
2837 + "type": "opencollective",
2838 + "url": "https://opencollective.com/csstools"
2839 + }
2840 + ],
2841 + "license": "MIT",
2842 + "engines": {
2843 + "node": ">=18"
2844 + },
2845 + "peerDependencies": {
2846 + "@csstools/css-parser-algorithms": "^3.0.4",
2847 + "@csstools/css-tokenizer": "^3.0.3"
2848 + }
2849 + },
2850 + "node_modules/@csstools/color-helpers": {
2851 + "version": "5.0.1",
2852 + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz",
2853 + "integrity": "sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==",
2854 + "funding": [
2855 + {
2856 + "type": "github",
2857 + "url": "https://github.com/sponsors/csstools"
2858 + },
2859 + {
2860 + "type": "opencollective",
2861 + "url": "https://opencollective.com/csstools"
2862 + }
2863 + ],
2864 + "license": "MIT-0",
2865 + "engines": {
2866 + "node": ">=18"
2867 + }
2868 + },
2869 + "node_modules/@csstools/css-calc": {
2870 + "version": "2.1.0",
2871 + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.0.tgz",
2872 + "integrity": "sha512-X69PmFOrjTZfN5ijxtI8hZ9kRADFSLrmmQ6hgDJ272Il049WGKpDY64KhrFm/7rbWve0z81QepawzjkKlqkNGw==",
2873 + "funding": [
2874 + {
2875 + "type": "github",
2876 + "url": "https://github.com/sponsors/csstools"
2877 + },
2878 + {
2879 + "type": "opencollective",
2880 + "url": "https://opencollective.com/csstools"
2881 + }
2882 + ],
2883 + "license": "MIT",
2884 + "engines": {
2885 + "node": ">=18"
2886 + },
2887 + "peerDependencies": {
2888 + "@csstools/css-parser-algorithms": "^3.0.4",
2889 + "@csstools/css-tokenizer": "^3.0.3"
2890 + }
2891 + },
2892 + "node_modules/@csstools/css-color-parser": {
2893 + "version": "3.0.6",
2894 + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.6.tgz",
2895 + "integrity": "sha512-S/IjXqTHdpI4EtzGoNCHfqraXF37x12ZZHA1Lk7zoT5pm2lMjFuqhX/89L7dqX4CcMacKK+6ZCs5TmEGb/+wKw==",
2896 + "funding": [
2897 + {
2898 + "type": "github",
2899 + "url": "https://github.com/sponsors/csstools"
2900 + },
2901 + {
2902 + "type": "opencollective",
2903 + "url": "https://opencollective.com/csstools"
2904 + }
2905 + ],
2906 + "license": "MIT",
2907 + "dependencies": {
2908 + "@csstools/color-helpers": "^5.0.1",
2909 + "@csstools/css-calc": "^2.1.0"
2910 + },
2911 + "engines": {
2912 + "node": ">=18"
2913 + },
2914 + "peerDependencies": {
2915 + "@csstools/css-parser-algorithms": "^3.0.4",
2916 + "@csstools/css-tokenizer": "^3.0.3"
2917 + }
2918 + },
2919 + "node_modules/@csstools/css-parser-algorithms": {
2920 + "version": "3.0.4",
2921 + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz",
2922 + "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==",
2923 + "funding": [
2924 + {
2925 + "type": "github",
2926 + "url": "https://github.com/sponsors/csstools"
2927 + },
2928 + {
2929 + "type": "opencollective",
2930 + "url": "https://opencollective.com/csstools"
2931 + }
2932 + ],
2933 + "license": "MIT",
2934 + "engines": {
2935 + "node": ">=18"
2936 + },
2937 + "peerDependencies": {
2938 + "@csstools/css-tokenizer": "^3.0.3"
2939 + }
2940 + },
2941 + "node_modules/@csstools/css-tokenizer": {
2942 + "version": "3.0.3",
2943 + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz",
2944 + "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==",
2945 + "funding": [
2946 + {
2947 + "type": "github",
2948 + "url": "https://github.com/sponsors/csstools"
2949 + },
2950 + {
2951 + "type": "opencollective",
2952 + "url": "https://opencollective.com/csstools"
2953 + }
2954 + ],
2955 + "license": "MIT",
2956 + "engines": {
2957 + "node": ">=18"
2958 + }
2959 + },
2960 + "node_modules/@csstools/media-query-list-parser": {
2961 + "version": "4.0.2",
2962 + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz",
2963 + "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==",
2964 + "funding": [
2965 + {
2966 + "type": "github",
2967 + "url": "https://github.com/sponsors/csstools"
2968 + },
2969 + {
2970 + "type": "opencollective",
2971 + "url": "https://opencollective.com/csstools"
2972 + }
2973 + ],
2974 + "license": "MIT",
2975 + "engines": {
2976 + "node": ">=18"
2977 + },
2978 + "peerDependencies": {
2979 + "@csstools/css-parser-algorithms": "^3.0.4",
2980 + "@csstools/css-tokenizer": "^3.0.3"
2981 + }
2982 + },
2983 + "node_modules/@csstools/postcss-cascade-layers": {
2984 + "version": "5.0.1",
2985 + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.1.tgz",
2986 + "integrity": "sha512-XOfhI7GShVcKiKwmPAnWSqd2tBR0uxt+runAxttbSp/LY2U16yAVPmAf7e9q4JJ0d+xMNmpwNDLBXnmRCl3HMQ==",
2987 + "funding": [
2988 + {
2989 + "type": "github",
2990 + "url": "https://github.com/sponsors/csstools"
2991 + },
2992 + {
2993 + "type": "opencollective",
2994 + "url": "https://opencollective.com/csstools"
2995 + }
2996 + ],
2997 + "license": "MIT-0",
2998 + "dependencies": {
2999 + "@csstools/selector-specificity": "^5.0.0",
3000 + "postcss-selector-parser": "^7.0.0"
3001 + },
3002 + "engines": {
3003 + "node": ">=18"
3004 + },
3005 + "peerDependencies": {
3006 + "postcss": "^8.4"
3007 + }
3008 + },
3009 + "node_modules/@csstools/postcss-cascade-layers/node_modules/postcss-selector-parser": {
3010 + "version": "7.0.0",
3011 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
3012 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
3013 + "license": "MIT",
3014 + "dependencies": {
3015 + "cssesc": "^3.0.0",
3016 + "util-deprecate": "^1.0.2"
3017 + },
3018 + "engines": {
3019 + "node": ">=4"
3020 + }
3021 + },
3022 + "node_modules/@csstools/postcss-color-function": {
3023 + "version": "4.0.6",
3024 + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.6.tgz",
3025 + "integrity": "sha512-EcvXfC60cTIumzpsxWuvVjb7rsJEHPvqn3jeMEBUaE3JSc4FRuP7mEQ+1eicxWmIrs3FtzMH9gR3sgA5TH+ebQ==",
3026 + "funding": [
3027 + {
3028 + "type": "github",
3029 + "url": "https://github.com/sponsors/csstools"
3030 + },
3031 + {
3032 + "type": "opencollective",
3033 + "url": "https://opencollective.com/csstools"
3034 + }
3035 + ],
3036 + "license": "MIT-0",
3037 + "dependencies": {
3038 + "@csstools/css-color-parser": "^3.0.6",
3039 + "@csstools/css-parser-algorithms": "^3.0.4",
3040 + "@csstools/css-tokenizer": "^3.0.3",
3041 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3042 + "@csstools/utilities": "^2.0.0"
3043 + },
3044 + "engines": {
3045 + "node": ">=18"
3046 + },
3047 + "peerDependencies": {
3048 + "postcss": "^8.4"
3049 + }
3050 + },
3051 + "node_modules/@csstools/postcss-color-mix-function": {
3052 + "version": "3.0.6",
3053 + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.6.tgz",
3054 + "integrity": "sha512-jVKdJn4+JkASYGhyPO+Wa5WXSx1+oUgaXb3JsjJn/BlrtFh5zjocCY7pwWi0nuP24V1fY7glQsxEYcYNy0dMFg==",
3055 + "funding": [
3056 + {
3057 + "type": "github",
3058 + "url": "https://github.com/sponsors/csstools"
3059 + },
3060 + {
3061 + "type": "opencollective",
3062 + "url": "https://opencollective.com/csstools"
3063 + }
3064 + ],
3065 + "license": "MIT-0",
3066 + "dependencies": {
3067 + "@csstools/css-color-parser": "^3.0.6",
3068 + "@csstools/css-parser-algorithms": "^3.0.4",
3069 + "@csstools/css-tokenizer": "^3.0.3",
3070 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3071 + "@csstools/utilities": "^2.0.0"
3072 + },
3073 + "engines": {
3074 + "node": ">=18"
3075 + },
3076 + "peerDependencies": {
3077 + "postcss": "^8.4"
3078 + }
3079 + },
3080 + "node_modules/@csstools/postcss-content-alt-text": {
3081 + "version": "2.0.4",
3082 + "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.4.tgz",
3083 + "integrity": "sha512-YItlZUOuZJCBlRaCf8Aucc1lgN41qYGALMly0qQllrxYJhiyzlI6RxOTMUvtWk+KhS8GphMDsDhKQ7KTPfEMSw==",
3084 + "funding": [
3085 + {
3086 + "type": "github",
3087 + "url": "https://github.com/sponsors/csstools"
3088 + },
3089 + {
3090 + "type": "opencollective",
3091 + "url": "https://opencollective.com/csstools"
3092 + }
3093 + ],
3094 + "license": "MIT-0",
3095 + "dependencies": {
3096 + "@csstools/css-parser-algorithms": "^3.0.4",
3097 + "@csstools/css-tokenizer": "^3.0.3",
3098 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3099 + "@csstools/utilities": "^2.0.0"
3100 + },
3101 + "engines": {
3102 + "node": ">=18"
3103 + },
3104 + "peerDependencies": {
3105 + "postcss": "^8.4"
3106 + }
3107 + },
3108 + "node_modules/@csstools/postcss-exponential-functions": {
3109 + "version": "2.0.5",
3110 + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.5.tgz",
3111 + "integrity": "sha512-mi8R6dVfA2nDoKM3wcEi64I8vOYEgQVtVKCfmLHXupeLpACfGAided5ddMt5f+CnEodNu4DifuVwb0I6fQDGGQ==",
3112 + "funding": [
3113 + {
3114 + "type": "github",
3115 + "url": "https://github.com/sponsors/csstools"
3116 + },
3117 + {
3118 + "type": "opencollective",
3119 + "url": "https://opencollective.com/csstools"
3120 + }
3121 + ],
3122 + "license": "MIT-0",
3123 + "dependencies": {
3124 + "@csstools/css-calc": "^2.1.0",
3125 + "@csstools/css-parser-algorithms": "^3.0.4",
3126 + "@csstools/css-tokenizer": "^3.0.3"
3127 + },
3128 + "engines": {
3129 + "node": ">=18"
3130 + },
3131 + "peerDependencies": {
3132 + "postcss": "^8.4"
3133 + }
3134 + },
3135 + "node_modules/@csstools/postcss-font-format-keywords": {
3136 + "version": "4.0.0",
3137 + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-4.0.0.tgz",
3138 + "integrity": "sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==",
3139 + "funding": [
3140 + {
3141 + "type": "github",
3142 + "url": "https://github.com/sponsors/csstools"
3143 + },
3144 + {
3145 + "type": "opencollective",
3146 + "url": "https://opencollective.com/csstools"
3147 + }
3148 + ],
3149 + "license": "MIT-0",
3150 + "dependencies": {
3151 + "@csstools/utilities": "^2.0.0",
3152 + "postcss-value-parser": "^4.2.0"
3153 + },
3154 + "engines": {
3155 + "node": ">=18"
3156 + },
3157 + "peerDependencies": {
3158 + "postcss": "^8.4"
3159 + }
3160 + },
3161 + "node_modules/@csstools/postcss-gamut-mapping": {
3162 + "version": "2.0.6",
3163 + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.6.tgz",
3164 + "integrity": "sha512-0ke7fmXfc8H+kysZz246yjirAH6JFhyX9GTlyRnM0exHO80XcA9zeJpy5pOp5zo/AZiC/q5Pf+Hw7Pd6/uAoYA==",
3165 + "funding": [
3166 + {
3167 + "type": "github",
3168 + "url": "https://github.com/sponsors/csstools"
3169 + },
3170 + {
3171 + "type": "opencollective",
3172 + "url": "https://opencollective.com/csstools"
3173 + }
3174 + ],
3175 + "license": "MIT-0",
3176 + "dependencies": {
3177 + "@csstools/css-color-parser": "^3.0.6",
3178 + "@csstools/css-parser-algorithms": "^3.0.4",
3179 + "@csstools/css-tokenizer": "^3.0.3"
3180 + },
3181 + "engines": {
3182 + "node": ">=18"
3183 + },
3184 + "peerDependencies": {
3185 + "postcss": "^8.4"
3186 + }
3187 + },
3188 + "node_modules/@csstools/postcss-gradients-interpolation-method": {
3189 + "version": "5.0.6",
3190 + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.6.tgz",
3191 + "integrity": "sha512-Itrbx6SLUzsZ6Mz3VuOlxhbfuyLTogG5DwEF1V8dAi24iMuvQPIHd7Ti+pNDp7j6WixndJGZaoNR0f9VSzwuTg==",
3192 + "funding": [
3193 + {
3194 + "type": "github",
3195 + "url": "https://github.com/sponsors/csstools"
3196 + },
3197 + {
3198 + "type": "opencollective",
3199 + "url": "https://opencollective.com/csstools"
3200 + }
3201 + ],
3202 + "license": "MIT-0",
3203 + "dependencies": {
3204 + "@csstools/css-color-parser": "^3.0.6",
3205 + "@csstools/css-parser-algorithms": "^3.0.4",
3206 + "@csstools/css-tokenizer": "^3.0.3",
3207 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3208 + "@csstools/utilities": "^2.0.0"
3209 + },
3210 + "engines": {
3211 + "node": ">=18"
3212 + },
3213 + "peerDependencies": {
3214 + "postcss": "^8.4"
3215 + }
3216 + },
3217 + "node_modules/@csstools/postcss-hwb-function": {
3218 + "version": "4.0.6",
3219 + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.6.tgz",
3220 + "integrity": "sha512-927Pqy3a1uBP7U8sTfaNdZVB0mNXzIrJO/GZ8us9219q9n06gOqCdfZ0E6d1P66Fm0fYHvxfDbfcUuwAn5UwhQ==",
3221 + "funding": [
3222 + {
3223 + "type": "github",
3224 + "url": "https://github.com/sponsors/csstools"
3225 + },
3226 + {
3227 + "type": "opencollective",
3228 + "url": "https://opencollective.com/csstools"
3229 + }
3230 + ],
3231 + "license": "MIT-0",
3232 + "dependencies": {
3233 + "@csstools/css-color-parser": "^3.0.6",
3234 + "@csstools/css-parser-algorithms": "^3.0.4",
3235 + "@csstools/css-tokenizer": "^3.0.3",
3236 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3237 + "@csstools/utilities": "^2.0.0"
3238 + },
3239 + "engines": {
3240 + "node": ">=18"
3241 + },
3242 + "peerDependencies": {
3243 + "postcss": "^8.4"
3244 + }
3245 + },
3246 + "node_modules/@csstools/postcss-ic-unit": {
3247 + "version": "4.0.0",
3248 + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.0.tgz",
3249 + "integrity": "sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==",
3250 + "funding": [
3251 + {
3252 + "type": "github",
3253 + "url": "https://github.com/sponsors/csstools"
3254 + },
3255 + {
3256 + "type": "opencollective",
3257 + "url": "https://opencollective.com/csstools"
3258 + }
3259 + ],
3260 + "license": "MIT-0",
3261 + "dependencies": {
3262 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3263 + "@csstools/utilities": "^2.0.0",
3264 + "postcss-value-parser": "^4.2.0"
3265 + },
3266 + "engines": {
3267 + "node": ">=18"
3268 + },
3269 + "peerDependencies": {
3270 + "postcss": "^8.4"
3271 + }
3272 + },
3273 + "node_modules/@csstools/postcss-initial": {
3274 + "version": "2.0.0",
3275 + "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.0.tgz",
3276 + "integrity": "sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==",
3277 + "funding": [
3278 + {
3279 + "type": "github",
3280 + "url": "https://github.com/sponsors/csstools"
3281 + },
3282 + {
3283 + "type": "opencollective",
3284 + "url": "https://opencollective.com/csstools"
3285 + }
3286 + ],
3287 + "license": "MIT-0",
3288 + "engines": {
3289 + "node": ">=18"
3290 + },
3291 + "peerDependencies": {
3292 + "postcss": "^8.4"
3293 + }
3294 + },
3295 + "node_modules/@csstools/postcss-is-pseudo-class": {
3296 + "version": "5.0.1",
3297 + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.1.tgz",
3298 + "integrity": "sha512-JLp3POui4S1auhDR0n8wHd/zTOWmMsmK3nQd3hhL6FhWPaox5W7j1se6zXOG/aP07wV2ww0lxbKYGwbBszOtfQ==",
3299 + "funding": [
3300 + {
3301 + "type": "github",
3302 + "url": "https://github.com/sponsors/csstools"
3303 + },
3304 + {
3305 + "type": "opencollective",
3306 + "url": "https://opencollective.com/csstools"
3307 + }
3308 + ],
3309 + "license": "MIT-0",
3310 + "dependencies": {
3311 + "@csstools/selector-specificity": "^5.0.0",
3312 + "postcss-selector-parser": "^7.0.0"
3313 + },
3314 + "engines": {
3315 + "node": ">=18"
3316 + },
3317 + "peerDependencies": {
3318 + "postcss": "^8.4"
3319 + }
3320 + },
3321 + "node_modules/@csstools/postcss-is-pseudo-class/node_modules/postcss-selector-parser": {
3322 + "version": "7.0.0",
3323 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
3324 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
3325 + "license": "MIT",
3326 + "dependencies": {
3327 + "cssesc": "^3.0.0",
3328 + "util-deprecate": "^1.0.2"
3329 + },
3330 + "engines": {
3331 + "node": ">=4"
3332 + }
3333 + },
3334 + "node_modules/@csstools/postcss-light-dark-function": {
3335 + "version": "2.0.7",
3336 + "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.7.tgz",
3337 + "integrity": "sha512-ZZ0rwlanYKOHekyIPaU+sVm3BEHCe+Ha0/px+bmHe62n0Uc1lL34vbwrLYn6ote8PHlsqzKeTQdIejQCJ05tfw==",
3338 + "funding": [
3339 + {
3340 + "type": "github",
3341 + "url": "https://github.com/sponsors/csstools"
3342 + },
3343 + {
3344 + "type": "opencollective",
3345 + "url": "https://opencollective.com/csstools"
3346 + }
3347 + ],
3348 + "license": "MIT-0",
3349 + "dependencies": {
3350 + "@csstools/css-parser-algorithms": "^3.0.4",
3351 + "@csstools/css-tokenizer": "^3.0.3",
3352 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3353 + "@csstools/utilities": "^2.0.0"
3354 + },
3355 + "engines": {
3356 + "node": ">=18"
3357 + },
3358 + "peerDependencies": {
3359 + "postcss": "^8.4"
3360 + }
3361 + },
3362 + "node_modules/@csstools/postcss-logical-float-and-clear": {
3363 + "version": "3.0.0",
3364 + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-3.0.0.tgz",
3365 + "integrity": "sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==",
3366 + "funding": [
3367 + {
3368 + "type": "github",
3369 + "url": "https://github.com/sponsors/csstools"
3370 + },
3371 + {
3372 + "type": "opencollective",
3373 + "url": "https://opencollective.com/csstools"
3374 + }
3375 + ],
3376 + "license": "MIT-0",
3377 + "engines": {
3378 + "node": ">=18"
3379 + },
3380 + "peerDependencies": {
3381 + "postcss": "^8.4"
3382 + }
3383 + },
3384 + "node_modules/@csstools/postcss-logical-overflow": {
3385 + "version": "2.0.0",
3386 + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-2.0.0.tgz",
3387 + "integrity": "sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==",
3388 + "funding": [
3389 + {
3390 + "type": "github",
3391 + "url": "https://github.com/sponsors/csstools"
3392 + },
3393 + {
3394 + "type": "opencollective",
3395 + "url": "https://opencollective.com/csstools"
3396 + }
3397 + ],
3398 + "license": "MIT-0",
3399 + "engines": {
3400 + "node": ">=18"
3401 + },
3402 + "peerDependencies": {
3403 + "postcss": "^8.4"
3404 + }
3405 + },
3406 + "node_modules/@csstools/postcss-logical-overscroll-behavior": {
3407 + "version": "2.0.0",
3408 + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-2.0.0.tgz",
3409 + "integrity": "sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==",
3410 + "funding": [
3411 + {
3412 + "type": "github",
3413 + "url": "https://github.com/sponsors/csstools"
3414 + },
3415 + {
3416 + "type": "opencollective",
3417 + "url": "https://opencollective.com/csstools"
3418 + }
3419 + ],
3420 + "license": "MIT-0",
3421 + "engines": {
3422 + "node": ">=18"
3423 + },
3424 + "peerDependencies": {
3425 + "postcss": "^8.4"
3426 + }
3427 + },
3428 + "node_modules/@csstools/postcss-logical-resize": {
3429 + "version": "3.0.0",
3430 + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-3.0.0.tgz",
3431 + "integrity": "sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==",
3432 + "funding": [
3433 + {
3434 + "type": "github",
3435 + "url": "https://github.com/sponsors/csstools"
3436 + },
3437 + {
3438 + "type": "opencollective",
3439 + "url": "https://opencollective.com/csstools"
3440 + }
3441 + ],
3442 + "license": "MIT-0",
3443 + "dependencies": {
3444 + "postcss-value-parser": "^4.2.0"
3445 + },
3446 + "engines": {
3447 + "node": ">=18"
3448 + },
3449 + "peerDependencies": {
3450 + "postcss": "^8.4"
3451 + }
3452 + },
3453 + "node_modules/@csstools/postcss-logical-viewport-units": {
3454 + "version": "3.0.3",
3455 + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.3.tgz",
3456 + "integrity": "sha512-OC1IlG/yoGJdi0Y+7duz/kU/beCwO+Gua01sD6GtOtLi7ByQUpcIqs7UE/xuRPay4cHgOMatWdnDdsIDjnWpPw==",
3457 + "funding": [
3458 + {
3459 + "type": "github",
3460 + "url": "https://github.com/sponsors/csstools"
3461 + },
3462 + {
3463 + "type": "opencollective",
3464 + "url": "https://opencollective.com/csstools"
3465 + }
3466 + ],
3467 + "license": "MIT-0",
3468 + "dependencies": {
3469 + "@csstools/css-tokenizer": "^3.0.3",
3470 + "@csstools/utilities": "^2.0.0"
3471 + },
3472 + "engines": {
3473 + "node": ">=18"
3474 + },
3475 + "peerDependencies": {
3476 + "postcss": "^8.4"
3477 + }
3478 + },
3479 + "node_modules/@csstools/postcss-media-minmax": {
3480 + "version": "2.0.5",
3481 + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.5.tgz",
3482 + "integrity": "sha512-sdh5i5GToZOIAiwhdntRWv77QDtsxP2r2gXW/WbLSCoLr00KTq/yiF1qlQ5XX2+lmiFa8rATKMcbwl3oXDMNew==",
3483 + "funding": [
3484 + {
3485 + "type": "github",
3486 + "url": "https://github.com/sponsors/csstools"
3487 + },
3488 + {
3489 + "type": "opencollective",
3490 + "url": "https://opencollective.com/csstools"
3491 + }
3492 + ],
3493 + "license": "MIT",
3494 + "dependencies": {
3495 + "@csstools/css-calc": "^2.1.0",
3496 + "@csstools/css-parser-algorithms": "^3.0.4",
3497 + "@csstools/css-tokenizer": "^3.0.3",
3498 + "@csstools/media-query-list-parser": "^4.0.2"
3499 + },
3500 + "engines": {
3501 + "node": ">=18"
3502 + },
3503 + "peerDependencies": {
3504 + "postcss": "^8.4"
3505 + }
3506 + },
3507 + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": {
3508 + "version": "3.0.4",
3509 + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.4.tgz",
3510 + "integrity": "sha512-AnGjVslHMm5xw9keusQYvjVWvuS7KWK+OJagaG0+m9QnIjZsrysD2kJP/tr/UJIyYtMCtu8OkUd+Rajb4DqtIQ==",
3511 + "funding": [
3512 + {
3513 + "type": "github",
3514 + "url": "https://github.com/sponsors/csstools"
3515 + },
3516 + {
3517 + "type": "opencollective",
3518 + "url": "https://opencollective.com/csstools"
3519 + }
3520 + ],
3521 + "license": "MIT-0",
3522 + "dependencies": {
3523 + "@csstools/css-parser-algorithms": "^3.0.4",
3524 + "@csstools/css-tokenizer": "^3.0.3",
3525 + "@csstools/media-query-list-parser": "^4.0.2"
3526 + },
3527 + "engines": {
3528 + "node": ">=18"
3529 + },
3530 + "peerDependencies": {
3531 + "postcss": "^8.4"
3532 + }
3533 + },
3534 + "node_modules/@csstools/postcss-nested-calc": {
3535 + "version": "4.0.0",
3536 + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-4.0.0.tgz",
3537 + "integrity": "sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==",
3538 + "funding": [
3539 + {
3540 + "type": "github",
3541 + "url": "https://github.com/sponsors/csstools"
3542 + },
3543 + {
3544 + "type": "opencollective",
3545 + "url": "https://opencollective.com/csstools"
3546 + }
3547 + ],
3548 + "license": "MIT-0",
3549 + "dependencies": {
3550 + "@csstools/utilities": "^2.0.0",
3551 + "postcss-value-parser": "^4.2.0"
3552 + },
3553 + "engines": {
3554 + "node": ">=18"
3555 + },
3556 + "peerDependencies": {
3557 + "postcss": "^8.4"
3558 + }
3559 + },
3560 + "node_modules/@csstools/postcss-normalize-display-values": {
3561 + "version": "4.0.0",
3562 + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz",
3563 + "integrity": "sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q==",
3564 + "funding": [
3565 + {
3566 + "type": "github",
3567 + "url": "https://github.com/sponsors/csstools"
3568 + },
3569 + {
3570 + "type": "opencollective",
3571 + "url": "https://opencollective.com/csstools"
3572 + }
3573 + ],
3574 + "license": "MIT-0",
3575 + "dependencies": {
3576 + "postcss-value-parser": "^4.2.0"
3577 + },
3578 + "engines": {
3579 + "node": ">=18"
3580 + },
3581 + "peerDependencies": {
3582 + "postcss": "^8.4"
3583 + }
3584 + },
3585 + "node_modules/@csstools/postcss-oklab-function": {
3586 + "version": "4.0.6",
3587 + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.6.tgz",
3588 + "integrity": "sha512-Hptoa0uX+XsNacFBCIQKTUBrFKDiplHan42X73EklG6XmQLG7/aIvxoNhvZ7PvOWMt67Pw3bIlUY2nD6p5vL8A==",
3589 + "funding": [
3590 + {
3591 + "type": "github",
3592 + "url": "https://github.com/sponsors/csstools"
3593 + },
3594 + {
3595 + "type": "opencollective",
3596 + "url": "https://opencollective.com/csstools"
3597 + }
3598 + ],
3599 + "license": "MIT-0",
3600 + "dependencies": {
3601 + "@csstools/css-color-parser": "^3.0.6",
3602 + "@csstools/css-parser-algorithms": "^3.0.4",
3603 + "@csstools/css-tokenizer": "^3.0.3",
3604 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3605 + "@csstools/utilities": "^2.0.0"
3606 + },
3607 + "engines": {
3608 + "node": ">=18"
3609 + },
3610 + "peerDependencies": {
3611 + "postcss": "^8.4"
3612 + }
3613 + },
3614 + "node_modules/@csstools/postcss-progressive-custom-properties": {
3615 + "version": "4.0.0",
3616 + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.0.0.tgz",
3617 + "integrity": "sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==",
3618 + "funding": [
3619 + {
3620 + "type": "github",
3621 + "url": "https://github.com/sponsors/csstools"
3622 + },
3623 + {
3624 + "type": "opencollective",
3625 + "url": "https://opencollective.com/csstools"
3626 + }
3627 + ],
3628 + "license": "MIT-0",
3629 + "dependencies": {
3630 + "postcss-value-parser": "^4.2.0"
3631 + },
3632 + "engines": {
3633 + "node": ">=18"
3634 + },
3635 + "peerDependencies": {
3636 + "postcss": "^8.4"
3637 + }
3638 + },
3639 + "node_modules/@csstools/postcss-random-function": {
3640 + "version": "1.0.1",
3641 + "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-1.0.1.tgz",
3642 + "integrity": "sha512-Ab/tF8/RXktQlFwVhiC70UNfpFQRhtE5fQQoP2pO+KCPGLsLdWFiOuHgSRtBOqEshCVAzR4H6o38nhvRZq8deA==",
3643 + "funding": [
3644 + {
3645 + "type": "github",
3646 + "url": "https://github.com/sponsors/csstools"
3647 + },
3648 + {
3649 + "type": "opencollective",
3650 + "url": "https://opencollective.com/csstools"
3651 + }
3652 + ],
3653 + "license": "MIT-0",
3654 + "dependencies": {
3655 + "@csstools/css-calc": "^2.1.0",
3656 + "@csstools/css-parser-algorithms": "^3.0.4",
3657 + "@csstools/css-tokenizer": "^3.0.3"
3658 + },
3659 + "engines": {
3660 + "node": ">=18"
3661 + },
3662 + "peerDependencies": {
3663 + "postcss": "^8.4"
3664 + }
3665 + },
3666 + "node_modules/@csstools/postcss-relative-color-syntax": {
3667 + "version": "3.0.6",
3668 + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.6.tgz",
3669 + "integrity": "sha512-yxP618Xb+ji1I624jILaYM62uEmZcmbdmFoZHoaThw896sq0vU39kqTTF+ZNic9XyPtPMvq0vyvbgmHaszq8xg==",
3670 + "funding": [
3671 + {
3672 + "type": "github",
3673 + "url": "https://github.com/sponsors/csstools"
3674 + },
3675 + {
3676 + "type": "opencollective",
3677 + "url": "https://opencollective.com/csstools"
3678 + }
3679 + ],
3680 + "license": "MIT-0",
3681 + "dependencies": {
3682 + "@csstools/css-color-parser": "^3.0.6",
3683 + "@csstools/css-parser-algorithms": "^3.0.4",
3684 + "@csstools/css-tokenizer": "^3.0.3",
3685 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
3686 + "@csstools/utilities": "^2.0.0"
3687 + },
3688 + "engines": {
3689 + "node": ">=18"
3690 + },
3691 + "peerDependencies": {
3692 + "postcss": "^8.4"
3693 + }
3694 + },
3695 + "node_modules/@csstools/postcss-scope-pseudo-class": {
3696 + "version": "4.0.1",
3697 + "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-4.0.1.tgz",
3698 + "integrity": "sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==",
3699 + "funding": [
3700 + {
3701 + "type": "github",
3702 + "url": "https://github.com/sponsors/csstools"
3703 + },
3704 + {
3705 + "type": "opencollective",
3706 + "url": "https://opencollective.com/csstools"
3707 + }
3708 + ],
3709 + "license": "MIT-0",
3710 + "dependencies": {
3711 + "postcss-selector-parser": "^7.0.0"
3712 + },
3713 + "engines": {
3714 + "node": ">=18"
3715 + },
3716 + "peerDependencies": {
3717 + "postcss": "^8.4"
3718 + }
3719 + },
3720 + "node_modules/@csstools/postcss-scope-pseudo-class/node_modules/postcss-selector-parser": {
3721 + "version": "7.0.0",
3722 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
3723 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
3724 + "license": "MIT",
3725 + "dependencies": {
3726 + "cssesc": "^3.0.0",
3727 + "util-deprecate": "^1.0.2"
3728 + },
3729 + "engines": {
3730 + "node": ">=4"
3731 + }
3732 + },
3733 + "node_modules/@csstools/postcss-sign-functions": {
3734 + "version": "1.1.0",
3735 + "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.0.tgz",
3736 + "integrity": "sha512-SLcc20Nujx/kqbSwDmj6oaXgpy3UjFhBy1sfcqPgDkHfOIfUtUVH7OXO+j7BU4v/At5s61N5ZX6shvgPwluhsA==",
3737 + "funding": [
3738 + {
3739 + "type": "github",
3740 + "url": "https://github.com/sponsors/csstools"
3741 + },
3742 + {
3743 + "type": "opencollective",
3744 + "url": "https://opencollective.com/csstools"
3745 + }
3746 + ],
3747 + "license": "MIT-0",
3748 + "dependencies": {
3749 + "@csstools/css-calc": "^2.1.0",
3750 + "@csstools/css-parser-algorithms": "^3.0.4",
3751 + "@csstools/css-tokenizer": "^3.0.3"
3752 + },
3753 + "engines": {
3754 + "node": ">=18"
3755 + },
3756 + "peerDependencies": {
3757 + "postcss": "^8.4"
3758 + }
3759 + },
3760 + "node_modules/@csstools/postcss-stepped-value-functions": {
3761 + "version": "4.0.5",
3762 + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.5.tgz",
3763 + "integrity": "sha512-G6SJ6hZJkhxo6UZojVlLo14MohH4J5J7z8CRBrxxUYy9JuZiIqUo5TBYyDGcE0PLdzpg63a7mHSJz3VD+gMwqw==",
3764 + "funding": [
3765 + {
3766 + "type": "github",
3767 + "url": "https://github.com/sponsors/csstools"
3768 + },
3769 + {
3770 + "type": "opencollective",
3771 + "url": "https://opencollective.com/csstools"
3772 + }
3773 + ],
3774 + "license": "MIT-0",
3775 + "dependencies": {
3776 + "@csstools/css-calc": "^2.1.0",
3777 + "@csstools/css-parser-algorithms": "^3.0.4",
3778 + "@csstools/css-tokenizer": "^3.0.3"
3779 + },
3780 + "engines": {
3781 + "node": ">=18"
3782 + },
3783 + "peerDependencies": {
3784 + "postcss": "^8.4"
3785 + }
3786 + },
3787 + "node_modules/@csstools/postcss-text-decoration-shorthand": {
3788 + "version": "4.0.1",
3789 + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.1.tgz",
3790 + "integrity": "sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==",
3791 + "funding": [
3792 + {
3793 + "type": "github",
3794 + "url": "https://github.com/sponsors/csstools"
3795 + },
3796 + {
3797 + "type": "opencollective",
3798 + "url": "https://opencollective.com/csstools"
3799 + }
3800 + ],
3801 + "license": "MIT-0",
3802 + "dependencies": {
3803 + "@csstools/color-helpers": "^5.0.1",
3804 + "postcss-value-parser": "^4.2.0"
3805 + },
3806 + "engines": {
3807 + "node": ">=18"
3808 + },
3809 + "peerDependencies": {
3810 + "postcss": "^8.4"
3811 + }
3812 + },
3813 + "node_modules/@csstools/postcss-trigonometric-functions": {
3814 + "version": "4.0.5",
3815 + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.5.tgz",
3816 + "integrity": "sha512-/YQThYkt5MLvAmVu7zxjhceCYlKrYddK6LEmK5I4ojlS6BmO9u2yO4+xjXzu2+NPYmHSTtP4NFSamBCMmJ1NJA==",
3817 + "funding": [
3818 + {
3819 + "type": "github",
3820 + "url": "https://github.com/sponsors/csstools"
3821 + },
3822 + {
3823 + "type": "opencollective",
3824 + "url": "https://opencollective.com/csstools"
3825 + }
3826 + ],
3827 + "license": "MIT-0",
3828 + "dependencies": {
3829 + "@csstools/css-calc": "^2.1.0",
3830 + "@csstools/css-parser-algorithms": "^3.0.4",
3831 + "@csstools/css-tokenizer": "^3.0.3"
3832 + },
3833 + "engines": {
3834 + "node": ">=18"
3835 + },
3836 + "peerDependencies": {
3837 + "postcss": "^8.4"
3838 + }
3839 + },
3840 + "node_modules/@csstools/postcss-unset-value": {
3841 + "version": "4.0.0",
3842 + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz",
3843 + "integrity": "sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==",
3844 + "funding": [
3845 + {
3846 + "type": "github",
3847 + "url": "https://github.com/sponsors/csstools"
3848 + },
3849 + {
3850 + "type": "opencollective",
3851 + "url": "https://opencollective.com/csstools"
3852 + }
3853 + ],
3854 + "license": "MIT-0",
3855 + "engines": {
3856 + "node": ">=18"
3857 + },
3858 + "peerDependencies": {
3859 + "postcss": "^8.4"
3860 + }
3861 + },
3862 + "node_modules/@csstools/selector-resolve-nested": {
3863 + "version": "3.0.0",
3864 + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz",
3865 + "integrity": "sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ==",
3866 + "funding": [
3867 + {
3868 + "type": "github",
3869 + "url": "https://github.com/sponsors/csstools"
3870 + },
3871 + {
3872 + "type": "opencollective",
3873 + "url": "https://opencollective.com/csstools"
3874 + }
3875 + ],
3876 + "license": "MIT-0",
3877 + "engines": {
3878 + "node": ">=18"
3879 + },
3880 + "peerDependencies": {
3881 + "postcss-selector-parser": "^7.0.0"
3882 + }
3883 + },
3884 + "node_modules/@csstools/selector-specificity": {
3885 + "version": "5.0.0",
3886 + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz",
3887 + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==",
3888 + "funding": [
3889 + {
3890 + "type": "github",
3891 + "url": "https://github.com/sponsors/csstools"
3892 + },
3893 + {
3894 + "type": "opencollective",
3895 + "url": "https://opencollective.com/csstools"
3896 + }
3897 + ],
3898 + "license": "MIT-0",
3899 + "engines": {
3900 + "node": ">=18"
3901 + },
3902 + "peerDependencies": {
3903 + "postcss-selector-parser": "^7.0.0"
3904 + }
3905 + },
3906 + "node_modules/@csstools/utilities": {
3907 + "version": "2.0.0",
3908 + "resolved": "https://registry.npmjs.org/@csstools/utilities/-/utilities-2.0.0.tgz",
3909 + "integrity": "sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==",
3910 + "funding": [
3911 + {
3912 + "type": "github",
3913 + "url": "https://github.com/sponsors/csstools"
3914 + },
3915 + {
3916 + "type": "opencollective",
3917 + "url": "https://opencollective.com/csstools"
3918 + }
3919 + ],
3920 + "license": "MIT-0",
3921 + "engines": {
3922 + "node": ">=18"
3923 + },
3924 + "peerDependencies": {
3925 + "postcss": "^8.4"
3926 + }
3927 + },
3928 "node_modules/@emotion/is-prop-valid": {
3929 "version": "1.2.2",
3930 "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz",
@@ -3042,21 +4149,6 @@
4149 "integrity": "sha512-gIhjdJp/c2beaIWWIlsXdqXVRUz3r2BxBCpfz/F3JXHvSAQ1paMYjLH+maEATtENg+k5eLV7gA+9yPp762ieuw==",
4150 "dev": true
4151 },
3045 - "node_modules/@github/combobox-nav": {
3046 - "version": "2.3.1",
3047 - "resolved": "https://registry.npmjs.org/@github/combobox-nav/-/combobox-nav-2.3.1.tgz",
3048 - "integrity": "sha512-gwxPzLw8XKecy1nP63i9lOBritS3bWmxl02UX6G0TwMQZbMem1BCS1tEZgYd3mkrkiDrUMWaX+DbFCuDFo3K+A=="
3049 - },
3050 - "node_modules/@github/markdown-toolbar-element": {
3051 - "version": "2.2.3",
3052 - "resolved": "https://registry.npmjs.org/@github/markdown-toolbar-element/-/markdown-toolbar-element-2.2.3.tgz",
3053 - "integrity": "sha512-AlquKGee+IWiAMYVB0xyHFZRMnu4n3X4HTvJHu79GiVJ1ojTukCWyxMlF5NMsecoLcBKsuBhx3QPv2vkE/zQ0A=="
3054 - },
3055 - "node_modules/@github/paste-markdown": {
3056 - "version": "1.5.3",
3057 - "resolved": "https://registry.npmjs.org/@github/paste-markdown/-/paste-markdown-1.5.3.tgz",
3058 - "integrity": "sha512-PzZ1b3PaqBzYqbT4fwKEhiORf38h2OcGp2+JdXNNM7inZ7egaSmfmhyNkQILpqWfS0AYtRS3CDq6z03eZ8yOMQ=="
3059 - },
4152 "node_modules/@github/prettier-config": {
4153 "version": "0.0.6",
4154 "resolved": "https://registry.npmjs.org/@github/prettier-config/-/prettier-config-0.0.6.tgz",
@@ -3064,9 +4156,9 @@
4156 "dev": true
4157 },
4158 "node_modules/@github/relative-time-element": {
3067 - "version": "4.4.2",
3068 - "resolved": "https://registry.npmjs.org/@github/relative-time-element/-/relative-time-element-4.4.2.tgz",
3069 - "integrity": "sha512-wTXunu3hmuGljA5CHaaoUIKV0oI35wno0FKJl2yqKplTRnsCA5bPNj4bDeVIubkuskql6jwionWLlGM1Y6QLaw=="
4159 + "version": "4.4.3",
4160 + "resolved": "https://registry.npmjs.org/@github/relative-time-element/-/relative-time-element-4.4.3.tgz",
4161 + "integrity": "sha512-EVKokqx9/DdUAZ2l9WVyY51EtRCO2gQWWMvsRIn7r4glJ91q9CXcnILVHZVCpfD52ucXUhUvtYsAjNJ4qP4uIg=="
4162 },
4163 "node_modules/@github/tab-container-element": {
4164 "version": "4.8.0",
@@ -4878,9 +5970,9 @@
5970 "integrity": "sha512-DiZdJYFU0tBbdQkfwwRSwYyI/mcWkg3sWesKRsHUd4G+NekTmmeq9fzsurvcKTNVa0comNljwtg4Hvi1ds3V+A=="
5971 },
5972 "node_modules/@lit-labs/ssr-dom-shim": {
4881 - "version": "1.2.0",
4882 - "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.2.0.tgz",
4883 - "integrity": "sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g=="
5973 + "version": "1.2.1",
5974 + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.2.1.tgz",
5975 + "integrity": "sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ=="
5976 },
5977 "node_modules/@lmdb/lmdb-darwin-arm64": {
5978 "version": "2.5.3",
@@ -6500,9 +7592,9 @@
7592 }
7593 },
7594 "node_modules/@oddbird/popover-polyfill": {
6503 - "version": "0.3.8",
6504 - "resolved": "https://registry.npmjs.org/@oddbird/popover-polyfill/-/popover-polyfill-0.3.8.tgz",
6505 - "integrity": "sha512-+aK7EHL3VggfsWGVqUwvtli2+kP5OWyseAsrefhzR2XWoi2oALUCeoDn63i5WS3ZOmLiXHRNBwHPeta8w+aM1g=="
7595 + "version": "0.4.4",
7596 + "resolved": "https://registry.npmjs.org/@oddbird/popover-polyfill/-/popover-polyfill-0.4.4.tgz",
7597 + "integrity": "sha512-n9q0ZXYRct6aYmOjjF5E+i5i0RSjVCkoKDJWILzJAkDBk4jmWOAZFjQfExtcAiJa0buX/Lx/CzBdGgiSSAlbrw=="
7598 },
7599 "node_modules/@parcel/bundler-default": {
7600 "version": "2.8.3",
@@ -7772,17 +8864,14 @@
8864 }
8865 },
8866 "node_modules/@primer/behaviors": {
7775 - "version": "1.7.0",
7776 - "resolved": "https://registry.npmjs.org/@primer/behaviors/-/behaviors-1.7.0.tgz",
7777 - "integrity": "sha512-C0yY6XqYaqmGANX+ALF259hGGaG2i70tDjzMR7YyahW6Iwv8a7znaQK58o2AVtlwxo6CC6Vn/ZJU0Ea1djiu2w==",
7778 - "optionalDependencies": {
7779 - "@rollup/rollup-linux-x64-gnu": "^4.18.0"
7780 - }
8867 + "version": "1.8.0",
8868 + "resolved": "https://registry.npmjs.org/@primer/behaviors/-/behaviors-1.8.0.tgz",
8869 + "integrity": "sha512-ZUfhWVY4ZBKc2Fh3fIa2Qwwa3SnOi914lY5wcmN+UNtsBxeXsjWNwpohJbwRwWZm+nJ3C1n9qJFWpHuBlDVU1A=="
8870 },
8871 "node_modules/@primer/live-region-element": {
7783 - "version": "0.7.0",
7784 - "resolved": "https://registry.npmjs.org/@primer/live-region-element/-/live-region-element-0.7.0.tgz",
7785 - "integrity": "sha512-V3pPHlYDMU6UHDVSYeSzZJ5LHhM06k/CaegstoXUk6DzgNsT4z0IhnqeEtyNAqe21PDXNFCpCtxZZndEDgN7FQ==",
8872 + "version": "0.7.1",
8873 + "resolved": "https://registry.npmjs.org/@primer/live-region-element/-/live-region-element-0.7.1.tgz",
8874 + "integrity": "sha512-9uQCeBCb3wefz3kJNSo+PECc7T7TNB3k22JUdHY08Zlv9bd1rtsQgpazM5umcbZQrACzGbgufAfdbhGUBXI3jA==",
8875 "dependencies": {
8876 "@lit-labs/ssr-dom-shim": "^1.2.0"
8877 }
@@ -7799,26 +8888,27 @@
8888 }
8889 },
8890 "node_modules/@primer/primitives": {
7802 - "version": "7.17.1",
7803 - "resolved": "https://registry.npmjs.org/@primer/primitives/-/primitives-7.17.1.tgz",
7804 - "integrity": "sha512-SiPzEb+up1nDpV2NGwNiY8m6sGnF3OUqRb0has5s6T40vq6Li/g3cYVgl+oolEa4DUoNygEPs09jwJt24f/3zg=="
8891 + "version": "9.1.2",
8892 + "resolved": "https://registry.npmjs.org/@primer/primitives/-/primitives-9.1.2.tgz",
8893 + "integrity": "sha512-KecRJpUdIf14J3gVpoyMMJeQD6Sh5kcHk93N5bYch4XGB0GOZP3ypxz+NByMjr/2HHPsRfCCO5EEgNjmeWYUGQ==",
8894 + "dependencies": {
8895 + "@prettier/sync": "^0.5.2",
8896 + "prettier": "3.3"
8897 + }
8898 },
8899 "node_modules/@primer/react": {
7807 - "version": "36.27.0",
7808 - "resolved": "https://registry.npmjs.org/@primer/react/-/react-36.27.0.tgz",
7809 - "integrity": "sha512-dVyp0f9zbbQYQZ6ztfMET43vVaWhvSz+qWirBzpRjDxvCk8vCQsvWrVGUU/PR0kAxxDHf6hqeLG7vcDL229NLA==",
7810 - "dependencies": {
7811 - "@github/combobox-nav": "^2.1.5",
7812 - "@github/markdown-toolbar-element": "^2.1.0",
7813 - "@github/paste-markdown": "^1.4.0",
7814 - "@github/relative-time-element": "^4.4.1",
8900 + "version": "37.5.0",
8901 + "resolved": "https://registry.npmjs.org/@primer/react/-/react-37.5.0.tgz",
8902 + "integrity": "sha512-HRCAdHNJvuL59ejD5vDPfsPnckvArqDYcEBk73Db3GwBnJHCCWlci0sUPKLJD6QWWd8zVMEefaJLV2/cmnet2Q==",
8903 + "dependencies": {
8904 + "@github/relative-time-element": "^4.4.3",
8905 "@github/tab-container-element": "^4.8.0",
8906 "@lit-labs/react": "1.2.1",
7817 - "@oddbird/popover-polyfill": "^0.3.1",
7818 - "@primer/behaviors": "^1.7.0",
7819 - "@primer/live-region-element": "^0.7.0",
8907 + "@oddbird/popover-polyfill": "^0.4.4",
8908 + "@primer/behaviors": "^1.7.2",
8909 + "@primer/live-region-element": "^0.7.1",
8910 "@primer/octicons-react": "^19.9.0",
7821 - "@primer/primitives": "^7.16.0",
8911 + "@primer/primitives": "9.x || 10.x",
8912 "@styled-system/css": "^5.1.5",
8913 "@styled-system/props": "^5.1.5",
8914 "@styled-system/theme-get": "^5.1.2",
@@ -7828,15 +8918,14 @@
8918 "@types/styled-system__theme-get": "^5.0.1",
8919 "clsx": "^1.2.1",
8920 "color2k": "^2.0.3",
7831 - "deepmerge": "^4.2.2",
8921 + "deepmerge": "^4.3.1",
8922 "focus-visible": "^5.2.0",
7833 - "fzy.js": "^0.4.1",
8923 "history": "^5.0.0",
8924 + "hsluv": "1.0.1",
8925 "lodash.isempty": "^4.4.0",
8926 "lodash.isobject": "^3.0.2",
8927 "react-intersection-observer": "^9.4.3",
8928 "react-is": "^18.2.0",
7839 - "react-markdown": "8.0.7",
8929 "styled-system": "^5.1.5"
8930 },
8931 "engines": {
@@ -7863,18 +8952,6 @@
8952 }
8953 }
8954 },
7866 - "node_modules/@rollup/rollup-linux-x64-gnu": {
7867 - "version": "4.19.0",
7868 - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.19.0.tgz",
7869 - "integrity": "sha512-HBndjQLP8OsdJNSxpNIN0einbDmRFg9+UQeZV1eiYupIRuZsDEoeGU43NQsS34Pp166DtwQOnpcbV/zQxM+rWA==",
7870 - "cpu": [
7871 - "x64"
7872 - ],
7873 - "optional": true,
7874 - "os": [
7875 - "linux"
7876 - ]
7877 - },
8955 "node_modules/@rtsao/scc": {
8956 "version": "1.1.0",
8957 "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
@@ -13625,7 +14702,6 @@
14702 "version": "9.0.0",
14703 "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz",
14704 "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
13628 - "dev": true,
14705 "dependencies": {
14706 "env-paths": "^2.2.1",
14707 "import-fresh": "^3.3.0",
@@ -13667,14 +14743,12 @@
14743 "node_modules/cosmiconfig/node_modules/argparse": {
14744 "version": "2.0.1",
14745 "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
13670 - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
13671 - "dev": true
14746 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
14747 },
14748 "node_modules/cosmiconfig/node_modules/js-yaml": {
14749 "version": "4.1.0",
14750 "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
14751 "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
13677 - "dev": true,
14752 "dependencies": {
14753 "argparse": "^2.0.1"
14754 },
@@ -13827,6 +14901,44 @@
14901 "node": ">=8"
14902 }
14903 },
14904 + "node_modules/css-blank-pseudo": {
14905 + "version": "7.0.1",
14906 + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz",
14907 + "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==",
14908 + "funding": [
14909 + {
14910 + "type": "github",
14911 + "url": "https://github.com/sponsors/csstools"
14912 + },
14913 + {
14914 + "type": "opencollective",
14915 + "url": "https://opencollective.com/csstools"
14916 + }
14917 + ],
14918 + "license": "MIT-0",
14919 + "dependencies": {
14920 + "postcss-selector-parser": "^7.0.0"
14921 + },
14922 + "engines": {
14923 + "node": ">=18"
14924 + },
14925 + "peerDependencies": {
14926 + "postcss": "^8.4"
14927 + }
14928 + },
14929 + "node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": {
14930 + "version": "7.0.0",
14931 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
14932 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
14933 + "license": "MIT",
14934 + "dependencies": {
14935 + "cssesc": "^3.0.0",
14936 + "util-deprecate": "^1.0.2"
14937 + },
14938 + "engines": {
14939 + "node": ">=4"
14940 + }
14941 + },
14942 "node_modules/css-color-keywords": {
14943 "version": "1.0.0",
14944 "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz",
@@ -13846,6 +14958,46 @@
14958 "postcss": "^8.0.9"
14959 }
14960 },
14961 + "node_modules/css-has-pseudo": {
14962 + "version": "7.0.1",
14963 + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.1.tgz",
14964 + "integrity": "sha512-EOcoyJt+OsuKfCADgLT7gADZI5jMzIe/AeI6MeAYKiFBDmNmM7kk46DtSfMj5AohUJisqVzopBpnQTlvbyaBWg==",
14965 + "funding": [
14966 + {
14967 + "type": "github",
14968 + "url": "https://github.com/sponsors/csstools"
14969 + },
14970 + {
14971 + "type": "opencollective",
14972 + "url": "https://opencollective.com/csstools"
14973 + }
14974 + ],
14975 + "license": "MIT-0",
14976 + "dependencies": {
14977 + "@csstools/selector-specificity": "^5.0.0",
14978 + "postcss-selector-parser": "^7.0.0",
14979 + "postcss-value-parser": "^4.2.0"
14980 + },
14981 + "engines": {
14982 + "node": ">=18"
14983 + },
14984 + "peerDependencies": {
14985 + "postcss": "^8.4"
14986 + }
14987 + },
14988 + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": {
14989 + "version": "7.0.0",
14990 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
14991 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
14992 + "license": "MIT",
14993 + "dependencies": {
14994 + "cssesc": "^3.0.0",
14995 + "util-deprecate": "^1.0.2"
14996 + },
14997 + "engines": {
14998 + "node": ">=4"
14999 + }
15000 + },
15001 "node_modules/css-loader": {
15002 "version": "5.2.7",
15003 "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz",
@@ -14003,6 +15155,28 @@
15155 "node": ">=0.10.0"
15156 }
15157 },
15158 + "node_modules/css-prefers-color-scheme": {
15159 + "version": "10.0.0",
15160 + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz",
15161 + "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==",
15162 + "funding": [
15163 + {
15164 + "type": "github",
15165 + "url": "https://github.com/sponsors/csstools"
15166 + },
15167 + {
15168 + "type": "opencollective",
15169 + "url": "https://opencollective.com/csstools"
15170 + }
15171 + ],
15172 + "license": "MIT-0",
15173 + "engines": {
15174 + "node": ">=18"
15175 + },
15176 + "peerDependencies": {
15177 + "postcss": "^8.4"
15178 + }
15179 + },
15180 "node_modules/css-select": {
15181 "version": "4.3.0",
15182 "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
@@ -14069,6 +15243,22 @@
15243 "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz",
15244 "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg=="
15245 },
15246 + "node_modules/cssdb": {
15247 + "version": "8.2.1",
15248 + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.2.1.tgz",
15249 + "integrity": "sha512-KwEPys7lNsC8OjASI8RrmwOYYDcm0JOW9zQhcV83ejYcQkirTEyeAGui8aO2F5PiS6SLpxuTzl6qlMElIdsgIg==",
15250 + "funding": [
15251 + {
15252 + "type": "opencollective",
15253 + "url": "https://opencollective.com/csstools"
15254 + },
15255 + {
15256 + "type": "github",
15257 + "url": "https://github.com/sponsors/csstools"
15258 + }
15259 + ],
15260 + "license": "MIT-0"
15261 + },
15262 "node_modules/cssesc": {
15263 "version": "3.0.0",
15264 "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
@@ -18192,11 +19382,6 @@
19382 "node": ">=10"
19383 }
19384 },
18195 - "node_modules/fzy.js": {
18196 - "version": "0.4.1",
18197 - "resolved": "https://registry.npmjs.org/fzy.js/-/fzy.js-0.4.1.tgz",
18198 - "integrity": "sha512-4sPVXf+9oGhzg2tYzgWe4hgAY0wEbkqeuKVEgdnqX8S8VcLosQsDjb0jV+f5uoQlf8INWId1w0IGoufAoik1TA=="
18199 - },
19385 "node_modules/gatsby": {
19386 "version": "5.14.0",
19387 "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.0.tgz",
@@ -19605,6 +20790,89 @@
20790 "gatsby": "^5.0.0-next"
20791 }
20792 },
20793 + "node_modules/gatsby-plugin-postcss": {
20794 + "version": "6.14.0",
20795 + "resolved": "https://registry.npmjs.org/gatsby-plugin-postcss/-/gatsby-plugin-postcss-6.14.0.tgz",
20796 + "integrity": "sha512-cX3tVwMh/ndQEqYakp3BgpBmTKXZB8FB3csu55eq2wu+aA0XzpnDSsdYT99HzGV93FtBHvxIaF2E5LUavz52EQ==",
20797 + "license": "MIT",
20798 + "dependencies": {
20799 + "@babel/runtime": "^7.20.13",
20800 + "postcss-loader": "^7.3.4"
20801 + },
20802 + "engines": {
20803 + "node": ">=18.0.0"
20804 + },
20805 + "peerDependencies": {
20806 + "gatsby": "^5.0.0-next",
20807 + "postcss": "^8.0.5"
20808 + }
20809 + },
20810 + "node_modules/gatsby-plugin-postcss/node_modules/argparse": {
20811 + "version": "2.0.1",
20812 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
20813 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
20814 + "license": "Python-2.0"
20815 + },
20816 + "node_modules/gatsby-plugin-postcss/node_modules/cosmiconfig": {
20817 + "version": "8.3.6",
20818 + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
20819 + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
20820 + "license": "MIT",
20821 + "dependencies": {
20822 + "import-fresh": "^3.3.0",
20823 + "js-yaml": "^4.1.0",
20824 + "parse-json": "^5.2.0",
20825 + "path-type": "^4.0.0"
20826 + },
20827 + "engines": {
20828 + "node": ">=14"
20829 + },
20830 + "funding": {
20831 + "url": "https://github.com/sponsors/d-fischer"
20832 + },
20833 + "peerDependencies": {
20834 + "typescript": ">=4.9.5"
20835 + },
20836 + "peerDependenciesMeta": {
20837 + "typescript": {
20838 + "optional": true
20839 + }
20840 + }
20841 + },
20842 + "node_modules/gatsby-plugin-postcss/node_modules/js-yaml": {
20843 + "version": "4.1.0",
20844 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
20845 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
20846 + "license": "MIT",
20847 + "dependencies": {
20848 + "argparse": "^2.0.1"
20849 + },
20850 + "bin": {
20851 + "js-yaml": "bin/js-yaml.js"
20852 + }
20853 + },
20854 + "node_modules/gatsby-plugin-postcss/node_modules/postcss-loader": {
20855 + "version": "7.3.4",
20856 + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz",
20857 + "integrity": "sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==",
20858 + "license": "MIT",
20859 + "dependencies": {
20860 + "cosmiconfig": "^8.3.5",
20861 + "jiti": "^1.20.0",
20862 + "semver": "^7.5.4"
20863 + },
20864 + "engines": {
20865 + "node": ">= 14.15.0"
20866 + },
20867 + "funding": {
20868 + "type": "opencollective",
20869 + "url": "https://opencollective.com/webpack"
20870 + },
20871 + "peerDependencies": {
20872 + "postcss": "^7.0.0 || ^8.0.1",
20873 + "webpack": "^5.0.0"
20874 + }
20875 + },
20876 "node_modules/gatsby-plugin-styled-components": {
20877 "version": "6.14.0",
20878 "resolved": "https://registry.npmjs.org/gatsby-plugin-styled-components/-/gatsby-plugin-styled-components-6.14.0.tgz",
@@ -19899,6 +21167,22 @@
21167 "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
21168 "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
21169 },
21170 + "node_modules/gatsby/node_modules/cosmiconfig": {
21171 + "version": "7.1.0",
21172 + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
21173 + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
21174 + "license": "MIT",
21175 + "dependencies": {
21176 + "@types/parse-json": "^4.0.0",
21177 + "import-fresh": "^3.2.1",
21178 + "parse-json": "^5.0.0",
21179 + "path-type": "^4.0.0",
21180 + "yaml": "^1.10.0"
21181 + },
21182 + "engines": {
21183 + "node": ">=10"
21184 + }
21185 + },
21186 "node_modules/gatsby/node_modules/escape-string-regexp": {
21187 "version": "4.0.0",
21188 "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
@@ -20232,6 +21516,28 @@
21516 "url": "https://github.com/sponsors/sindresorhus"
21517 }
21518 },
21519 + "node_modules/gatsby/node_modules/postcss-loader": {
21520 + "version": "5.3.0",
21521 + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.3.0.tgz",
21522 + "integrity": "sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==",
21523 + "license": "MIT",
21524 + "dependencies": {
21525 + "cosmiconfig": "^7.0.0",
21526 + "klona": "^2.0.4",
21527 + "semver": "^7.3.4"
21528 + },
21529 + "engines": {
21530 + "node": ">= 10.13.0"
21531 + },
21532 + "funding": {
21533 + "type": "opencollective",
21534 + "url": "https://opencollective.com/webpack"
21535 + },
21536 + "peerDependencies": {
21537 + "postcss": "^7.0.0 || ^8.0.1",
21538 + "webpack": "^5.0.0"
21539 + }
21540 + },
21541 "node_modules/gatsby/node_modules/signal-exit": {
21542 "version": "3.0.7",
21543 "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
@@ -20256,6 +21562,15 @@
21562 "node": ">=8"
21563 }
21564 },
21565 + "node_modules/gatsby/node_modules/yaml": {
21566 + "version": "1.10.2",
21567 + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
21568 + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
21569 + "license": "ISC",
21570 + "engines": {
21571 + "node": ">= 6"
21572 + }
21573 + },
21574 "node_modules/gensync": {
21575 "version": "1.0.0-beta.2",
21576 "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
@@ -20715,6 +22030,13 @@
22030 "node": ">=6"
22031 }
22032 },
22033 + "node_modules/harmony-reflect": {
22034 + "version": "1.6.2",
22035 + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
22036 + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==",
22037 + "dev": true,
22038 + "license": "(Apache-2.0 OR MPL-1.1)"
22039 + },
22040 "node_modules/has-bigints": {
22041 "version": "1.0.2",
22042 "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
@@ -21171,6 +22493,11 @@
22493 "node": "^16.14.0 || >=18.0.0"
22494 }
22495 },
22496 + "node_modules/hsluv": {
22497 + "version": "1.0.1",
22498 + "resolved": "https://registry.npmjs.org/hsluv/-/hsluv-1.0.1.tgz",
22499 + "integrity": "sha512-zCaFTiDqBLQjCCFBu0qg7z9ASYPd+Bxx2GDCVZJsnehjK80S+jByqhuFz0pCd2Aw3FSKr18AWbRlwnKR0YdizQ=="
22500 + },
22501 "node_modules/html-encoding-sniffer": {
22502 "version": "3.0.0",
22503 "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz",
@@ -21311,6 +22638,19 @@
22638 "postcss": "^8.1.0"
22639 }
22640 },
22641 + "node_modules/identity-obj-proxy": {
22642 + "version": "3.0.0",
22643 + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
22644 + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==",
22645 + "dev": true,
22646 + "license": "MIT",
22647 + "dependencies": {
22648 + "harmony-reflect": "^1.4.6"
22649 + },
22650 + "engines": {
22651 + "node": ">=4"
22652 + }
22653 + },
22654 "node_modules/ieee754": {
22655 "version": "1.2.1",
22656 "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
@@ -24975,7 +26315,6 @@
26315 "version": "1.21.6",
26316 "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz",
26317 "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==",
24978 - "dev": true,
26318 "bin": {
26319 "jiti": "bin/jiti.js"
26320 }
@@ -25250,6 +26589,7 @@
26589 "version": "2.0.6",
26590 "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
26591 "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
26592 + "license": "MIT",
26593 "engines": {
26594 "node": ">= 8"
26595 }
@@ -33048,9 +34388,10 @@
34388 "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g=="
34389 },
34390 "node_modules/picocolors": {
33051 - "version": "1.0.1",
33052 - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz",
33053 - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew=="
34391 + "version": "1.1.1",
34392 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
34393 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
34394 + "license": "ISC"
34395 },
34396 "node_modules/picomatch": {
34397 "version": "2.3.1",
@@ -33063,6 +34404,15 @@
34404 "url": "https://github.com/sponsors/jonschlinkert"
34405 }
34406 },
34407 + "node_modules/pify": {
34408 + "version": "2.3.0",
34409 + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
34410 + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
34411 + "license": "MIT",
34412 + "engines": {
34413 + "node": ">=0.10.0"
34414 + }
34415 + },
34416 "node_modules/pirates": {
34417 "version": "4.0.6",
34418 "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
@@ -33217,57 +34567,192 @@
34567 "integrity": "sha512-OLS/0XeUAcE8a2fdwemNja+udKgXNnY6yKVIXqAD2zVRx1KvY6Ato/rZ2vdzbxqYwPW0u6SCNC/bAMPNzpzxbw==",
34568 "dev": true,
34569 "engines": {
33220 - "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
34570 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
34571 + },
34572 + "funding": {
34573 + "url": "https://github.com/sponsors/isaacs"
34574 + }
34575 + },
34576 + "node_modules/possible-typed-array-names": {
34577 + "version": "1.0.0",
34578 + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
34579 + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
34580 + "engines": {
34581 + "node": ">= 0.4"
34582 + }
34583 + },
34584 + "node_modules/postcss": {
34585 + "version": "8.4.49",
34586 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
34587 + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
34588 + "funding": [
34589 + {
34590 + "type": "opencollective",
34591 + "url": "https://opencollective.com/postcss/"
34592 + },
34593 + {
34594 + "type": "tidelift",
34595 + "url": "https://tidelift.com/funding/github/npm/postcss"
34596 + },
34597 + {
34598 + "type": "github",
34599 + "url": "https://github.com/sponsors/ai"
34600 + }
34601 + ],
34602 + "license": "MIT",
34603 + "dependencies": {
34604 + "nanoid": "^3.3.7",
34605 + "picocolors": "^1.1.1",
34606 + "source-map-js": "^1.2.1"
34607 + },
34608 + "engines": {
34609 + "node": "^10 || ^12 || >=14"
34610 + }
34611 + },
34612 + "node_modules/postcss-attribute-case-insensitive": {
34613 + "version": "7.0.1",
34614 + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz",
34615 + "integrity": "sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==",
34616 + "funding": [
34617 + {
34618 + "type": "github",
34619 + "url": "https://github.com/sponsors/csstools"
34620 + },
34621 + {
34622 + "type": "opencollective",
34623 + "url": "https://opencollective.com/csstools"
34624 + }
34625 + ],
34626 + "license": "MIT",
34627 + "dependencies": {
34628 + "postcss-selector-parser": "^7.0.0"
34629 + },
34630 + "engines": {
34631 + "node": ">=18"
34632 + },
34633 + "peerDependencies": {
34634 + "postcss": "^8.4"
34635 + }
34636 + },
34637 + "node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": {
34638 + "version": "7.0.0",
34639 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
34640 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
34641 + "license": "MIT",
34642 + "dependencies": {
34643 + "cssesc": "^3.0.0",
34644 + "util-deprecate": "^1.0.2"
34645 + },
34646 + "engines": {
34647 + "node": ">=4"
34648 + }
34649 + },
34650 + "node_modules/postcss-calc": {
34651 + "version": "8.2.4",
34652 + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz",
34653 + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
34654 + "dependencies": {
34655 + "postcss-selector-parser": "^6.0.9",
34656 + "postcss-value-parser": "^4.2.0"
34657 },
33222 - "funding": {
33223 - "url": "https://github.com/sponsors/isaacs"
34658 + "peerDependencies": {
34659 + "postcss": "^8.2.2"
34660 }
34661 },
33226 - "node_modules/possible-typed-array-names": {
33227 - "version": "1.0.0",
33228 - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
33229 - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
34662 + "node_modules/postcss-clamp": {
34663 + "version": "4.1.0",
34664 + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz",
34665 + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==",
34666 + "license": "MIT",
34667 + "dependencies": {
34668 + "postcss-value-parser": "^4.2.0"
34669 + },
34670 "engines": {
33231 - "node": ">= 0.4"
34671 + "node": ">=7.6.0"
34672 + },
34673 + "peerDependencies": {
34674 + "postcss": "^8.4.6"
34675 }
34676 },
33234 - "node_modules/postcss": {
33235 - "version": "8.4.38",
33236 - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz",
33237 - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
34677 + "node_modules/postcss-color-functional-notation": {
34678 + "version": "7.0.6",
34679 + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.6.tgz",
34680 + "integrity": "sha512-wLXvm8RmLs14Z2nVpB4CWlnvaWPRcOZFltJSlcbYwSJ1EDZKsKDhPKIMecCnuU054KSmlmubkqczmm6qBPCBhA==",
34681 "funding": [
34682 {
33240 - "type": "opencollective",
33241 - "url": "https://opencollective.com/postcss/"
34683 + "type": "github",
34684 + "url": "https://github.com/sponsors/csstools"
34685 },
34686 {
33244 - "type": "tidelift",
33245 - "url": "https://tidelift.com/funding/github/npm/postcss"
33246 - },
34687 + "type": "opencollective",
34688 + "url": "https://opencollective.com/csstools"
34689 + }
34690 + ],
34691 + "license": "MIT-0",
34692 + "dependencies": {
34693 + "@csstools/css-color-parser": "^3.0.6",
34694 + "@csstools/css-parser-algorithms": "^3.0.4",
34695 + "@csstools/css-tokenizer": "^3.0.3",
34696 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
34697 + "@csstools/utilities": "^2.0.0"
34698 + },
34699 + "engines": {
34700 + "node": ">=18"
34701 + },
34702 + "peerDependencies": {
34703 + "postcss": "^8.4"
34704 + }
34705 + },
34706 + "node_modules/postcss-color-hex-alpha": {
34707 + "version": "10.0.0",
34708 + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz",
34709 + "integrity": "sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==",
34710 + "funding": [
34711 {
34712 "type": "github",
33249 - "url": "https://github.com/sponsors/ai"
34713 + "url": "https://github.com/sponsors/csstools"
34714 + },
34715 + {
34716 + "type": "opencollective",
34717 + "url": "https://opencollective.com/csstools"
34718 }
34719 ],
34720 + "license": "MIT",
34721 "dependencies": {
33253 - "nanoid": "^3.3.7",
33254 - "picocolors": "^1.0.0",
33255 - "source-map-js": "^1.2.0"
34722 + "@csstools/utilities": "^2.0.0",
34723 + "postcss-value-parser": "^4.2.0"
34724 },
34725 "engines": {
33258 - "node": "^10 || ^12 || >=14"
34726 + "node": ">=18"
34727 + },
34728 + "peerDependencies": {
34729 + "postcss": "^8.4"
34730 }
34731 },
33261 - "node_modules/postcss-calc": {
33262 - "version": "8.2.4",
33263 - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz",
33264 - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
34732 + "node_modules/postcss-color-rebeccapurple": {
34733 + "version": "10.0.0",
34734 + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz",
34735 + "integrity": "sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==",
34736 + "funding": [
34737 + {
34738 + "type": "github",
34739 + "url": "https://github.com/sponsors/csstools"
34740 + },
34741 + {
34742 + "type": "opencollective",
34743 + "url": "https://opencollective.com/csstools"
34744 + }
34745 + ],
34746 + "license": "MIT-0",
34747 "dependencies": {
33266 - "postcss-selector-parser": "^6.0.9",
34748 + "@csstools/utilities": "^2.0.0",
34749 "postcss-value-parser": "^4.2.0"
34750 },
34751 + "engines": {
34752 + "node": ">=18"
34753 + },
34754 "peerDependencies": {
33270 - "postcss": "^8.2.2"
34755 + "postcss": "^8.4"
34756 }
34757 },
34758 "node_modules/postcss-colormin": {
@@ -33302,6 +34787,142 @@
34787 "postcss": "^8.2.15"
34788 }
34789 },
34790 + "node_modules/postcss-custom-media": {
34791 + "version": "11.0.5",
34792 + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.5.tgz",
34793 + "integrity": "sha512-SQHhayVNgDvSAdX9NQ/ygcDQGEY+aSF4b/96z7QUX6mqL5yl/JgG/DywcF6fW9XbnCRE+aVYk+9/nqGuzOPWeQ==",
34794 + "funding": [
34795 + {
34796 + "type": "github",
34797 + "url": "https://github.com/sponsors/csstools"
34798 + },
34799 + {
34800 + "type": "opencollective",
34801 + "url": "https://opencollective.com/csstools"
34802 + }
34803 + ],
34804 + "license": "MIT",
34805 + "dependencies": {
34806 + "@csstools/cascade-layer-name-parser": "^2.0.4",
34807 + "@csstools/css-parser-algorithms": "^3.0.4",
34808 + "@csstools/css-tokenizer": "^3.0.3",
34809 + "@csstools/media-query-list-parser": "^4.0.2"
34810 + },
34811 + "engines": {
34812 + "node": ">=18"
34813 + },
34814 + "peerDependencies": {
34815 + "postcss": "^8.4"
34816 + }
34817 + },
34818 + "node_modules/postcss-custom-properties": {
34819 + "version": "14.0.4",
34820 + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.4.tgz",
34821 + "integrity": "sha512-QnW8FCCK6q+4ierwjnmXF9Y9KF8q0JkbgVfvQEMa93x1GT8FvOiUevWCN2YLaOWyByeDX8S6VFbZEeWoAoXs2A==",
34822 + "funding": [
34823 + {
34824 + "type": "github",
34825 + "url": "https://github.com/sponsors/csstools"
34826 + },
34827 + {
34828 + "type": "opencollective",
34829 + "url": "https://opencollective.com/csstools"
34830 + }
34831 + ],
34832 + "license": "MIT",
34833 + "dependencies": {
34834 + "@csstools/cascade-layer-name-parser": "^2.0.4",
34835 + "@csstools/css-parser-algorithms": "^3.0.4",
34836 + "@csstools/css-tokenizer": "^3.0.3",
34837 + "@csstools/utilities": "^2.0.0",
34838 + "postcss-value-parser": "^4.2.0"
34839 + },
34840 + "engines": {
34841 + "node": ">=18"
34842 + },
34843 + "peerDependencies": {
34844 + "postcss": "^8.4"
34845 + }
34846 + },
34847 + "node_modules/postcss-custom-selectors": {
34848 + "version": "8.0.4",
34849 + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.4.tgz",
34850 + "integrity": "sha512-ASOXqNvDCE0dAJ/5qixxPeL1aOVGHGW2JwSy7HyjWNbnWTQCl+fDc968HY1jCmZI0+BaYT5CxsOiUhavpG/7eg==",
34851 + "funding": [
34852 + {
34853 + "type": "github",
34854 + "url": "https://github.com/sponsors/csstools"
34855 + },
34856 + {
34857 + "type": "opencollective",
34858 + "url": "https://opencollective.com/csstools"
34859 + }
34860 + ],
34861 + "license": "MIT",
34862 + "dependencies": {
34863 + "@csstools/cascade-layer-name-parser": "^2.0.4",
34864 + "@csstools/css-parser-algorithms": "^3.0.4",
34865 + "@csstools/css-tokenizer": "^3.0.3",
34866 + "postcss-selector-parser": "^7.0.0"
34867 + },
34868 + "engines": {
34869 + "node": ">=18"
34870 + },
34871 + "peerDependencies": {
34872 + "postcss": "^8.4"
34873 + }
34874 + },
34875 + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": {
34876 + "version": "7.0.0",
34877 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
34878 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
34879 + "license": "MIT",
34880 + "dependencies": {
34881 + "cssesc": "^3.0.0",
34882 + "util-deprecate": "^1.0.2"
34883 + },
34884 + "engines": {
34885 + "node": ">=4"
34886 + }
34887 + },
34888 + "node_modules/postcss-dir-pseudo-class": {
34889 + "version": "9.0.1",
34890 + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz",
34891 + "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==",
34892 + "funding": [
34893 + {
34894 + "type": "github",
34895 + "url": "https://github.com/sponsors/csstools"
34896 + },
34897 + {
34898 + "type": "opencollective",
34899 + "url": "https://opencollective.com/csstools"
34900 + }
34901 + ],
34902 + "license": "MIT-0",
34903 + "dependencies": {
34904 + "postcss-selector-parser": "^7.0.0"
34905 + },
34906 + "engines": {
34907 + "node": ">=18"
34908 + },
34909 + "peerDependencies": {
34910 + "postcss": "^8.4"
34911 + }
34912 + },
34913 + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": {
34914 + "version": "7.0.0",
34915 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
34916 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
34917 + "license": "MIT",
34918 + "dependencies": {
34919 + "cssesc": "^3.0.0",
34920 + "util-deprecate": "^1.0.2"
34921 + },
34922 + "engines": {
34923 + "node": ">=4"
34924 + }
34925 + },
34926 "node_modules/postcss-discard-comments": {
34927 "version": "5.1.2",
34928 "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz",
@@ -33346,6 +34967,33 @@
34967 "postcss": "^8.2.15"
34968 }
34969 },
34970 + "node_modules/postcss-double-position-gradients": {
34971 + "version": "6.0.0",
34972 + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.0.tgz",
34973 + "integrity": "sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==",
34974 + "funding": [
34975 + {
34976 + "type": "github",
34977 + "url": "https://github.com/sponsors/csstools"
34978 + },
34979 + {
34980 + "type": "opencollective",
34981 + "url": "https://opencollective.com/csstools"
34982 + }
34983 + ],
34984 + "license": "MIT-0",
34985 + "dependencies": {
34986 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
34987 + "@csstools/utilities": "^2.0.0",
34988 + "postcss-value-parser": "^4.2.0"
34989 + },
34990 + "engines": {
34991 + "node": ">=18"
34992 + },
34993 + "peerDependencies": {
34994 + "postcss": "^8.4"
34995 + }
34996 + },
34997 "node_modules/postcss-flexbugs-fixes": {
34998 "version": "5.0.2",
34999 "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz",
@@ -33354,48 +35002,239 @@
35002 "postcss": "^8.1.4"
35003 }
35004 },
35005 + "node_modules/postcss-focus-visible": {
35006 + "version": "10.0.1",
35007 + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz",
35008 + "integrity": "sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==",
35009 + "funding": [
35010 + {
35011 + "type": "github",
35012 + "url": "https://github.com/sponsors/csstools"
35013 + },
35014 + {
35015 + "type": "opencollective",
35016 + "url": "https://opencollective.com/csstools"
35017 + }
35018 + ],
35019 + "license": "MIT-0",
35020 + "dependencies": {
35021 + "postcss-selector-parser": "^7.0.0"
35022 + },
35023 + "engines": {
35024 + "node": ">=18"
35025 + },
35026 + "peerDependencies": {
35027 + "postcss": "^8.4"
35028 + }
35029 + },
35030 + "node_modules/postcss-focus-visible/node_modules/postcss-selector-parser": {
35031 + "version": "7.0.0",
35032 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
35033 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
35034 + "license": "MIT",
35035 + "dependencies": {
35036 + "cssesc": "^3.0.0",
35037 + "util-deprecate": "^1.0.2"
35038 + },
35039 + "engines": {
35040 + "node": ">=4"
35041 + }
35042 + },
35043 + "node_modules/postcss-focus-within": {
35044 + "version": "9.0.1",
35045 + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz",
35046 + "integrity": "sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==",
35047 + "funding": [
35048 + {
35049 + "type": "github",
35050 + "url": "https://github.com/sponsors/csstools"
35051 + },
35052 + {
35053 + "type": "opencollective",
35054 + "url": "https://opencollective.com/csstools"
35055 + }
35056 + ],
35057 + "license": "MIT-0",
35058 + "dependencies": {
35059 + "postcss-selector-parser": "^7.0.0"
35060 + },
35061 + "engines": {
35062 + "node": ">=18"
35063 + },
35064 + "peerDependencies": {
35065 + "postcss": "^8.4"
35066 + }
35067 + },
35068 + "node_modules/postcss-focus-within/node_modules/postcss-selector-parser": {
35069 + "version": "7.0.0",
35070 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
35071 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
35072 + "license": "MIT",
35073 + "dependencies": {
35074 + "cssesc": "^3.0.0",
35075 + "util-deprecate": "^1.0.2"
35076 + },
35077 + "engines": {
35078 + "node": ">=4"
35079 + }
35080 + },
35081 + "node_modules/postcss-font-variant": {
35082 + "version": "5.0.0",
35083 + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz",
35084 + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==",
35085 + "license": "MIT",
35086 + "peerDependencies": {
35087 + "postcss": "^8.1.0"
35088 + }
35089 + },
35090 + "node_modules/postcss-gap-properties": {
35091 + "version": "6.0.0",
35092 + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz",
35093 + "integrity": "sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==",
35094 + "funding": [
35095 + {
35096 + "type": "github",
35097 + "url": "https://github.com/sponsors/csstools"
35098 + },
35099 + {
35100 + "type": "opencollective",
35101 + "url": "https://opencollective.com/csstools"
35102 + }
35103 + ],
35104 + "license": "MIT-0",
35105 + "engines": {
35106 + "node": ">=18"
35107 + },
35108 + "peerDependencies": {
35109 + "postcss": "^8.4"
35110 + }
35111 + },
35112 + "node_modules/postcss-image-set-function": {
35113 + "version": "7.0.0",
35114 + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz",
35115 + "integrity": "sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==",
35116 + "funding": [
35117 + {
35118 + "type": "github",
35119 + "url": "https://github.com/sponsors/csstools"
35120 + },
35121 + {
35122 + "type": "opencollective",
35123 + "url": "https://opencollective.com/csstools"
35124 + }
35125 + ],
35126 + "license": "MIT-0",
35127 + "dependencies": {
35128 + "@csstools/utilities": "^2.0.0",
35129 + "postcss-value-parser": "^4.2.0"
35130 + },
35131 + "engines": {
35132 + "node": ">=18"
35133 + },
35134 + "peerDependencies": {
35135 + "postcss": "^8.4"
35136 + }
35137 + },
35138 + "node_modules/postcss-import": {
35139 + "version": "16.1.0",
35140 + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.0.tgz",
35141 + "integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==",
35142 + "license": "MIT",
35143 + "dependencies": {
35144 + "postcss-value-parser": "^4.0.0",
35145 + "read-cache": "^1.0.0",
35146 + "resolve": "^1.1.7"
35147 + },
35148 + "engines": {
35149 + "node": ">=18.0.0"
35150 + },
35151 + "peerDependencies": {
35152 + "postcss": "^8.0.0"
35153 + }
35154 + },
35155 + "node_modules/postcss-lab-function": {
35156 + "version": "7.0.6",
35157 + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.6.tgz",
35158 + "integrity": "sha512-HPwvsoK7C949vBZ+eMyvH2cQeMr3UREoHvbtra76/UhDuiViZH6pir+z71UaJQohd7VDSVUdR6TkWYKExEc9aQ==",
35159 + "funding": [
35160 + {
35161 + "type": "github",
35162 + "url": "https://github.com/sponsors/csstools"
35163 + },
35164 + {
35165 + "type": "opencollective",
35166 + "url": "https://opencollective.com/csstools"
35167 + }
35168 + ],
35169 + "license": "MIT-0",
35170 + "dependencies": {
35171 + "@csstools/css-color-parser": "^3.0.6",
35172 + "@csstools/css-parser-algorithms": "^3.0.4",
35173 + "@csstools/css-tokenizer": "^3.0.3",
35174 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
35175 + "@csstools/utilities": "^2.0.0"
35176 + },
35177 + "engines": {
35178 + "node": ">=18"
35179 + },
35180 + "peerDependencies": {
35181 + "postcss": "^8.4"
35182 + }
35183 + },
35184 "node_modules/postcss-loader": {
33358 - "version": "5.3.0",
33359 - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.3.0.tgz",
33360 - "integrity": "sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==",
35185 + "version": "8.1.1",
35186 + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.1.1.tgz",
35187 + "integrity": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==",
35188 + "license": "MIT",
35189 "dependencies": {
33362 - "cosmiconfig": "^7.0.0",
33363 - "klona": "^2.0.4",
33364 - "semver": "^7.3.4"
35190 + "cosmiconfig": "^9.0.0",
35191 + "jiti": "^1.20.0",
35192 + "semver": "^7.5.4"
35193 },
35194 "engines": {
33367 - "node": ">= 10.13.0"
35195 + "node": ">= 18.12.0"
35196 },
35197 "funding": {
35198 "type": "opencollective",
35199 "url": "https://opencollective.com/webpack"
35200 },
35201 "peerDependencies": {
35202 + "@rspack/core": "0.x || 1.x",
35203 "postcss": "^7.0.0 || ^8.0.1",
35204 "webpack": "^5.0.0"
35205 + },
35206 + "peerDependenciesMeta": {
35207 + "@rspack/core": {
35208 + "optional": true
35209 + },
35210 + "webpack": {
35211 + "optional": true
35212 + }
35213 }
35214 },
33378 - "node_modules/postcss-loader/node_modules/cosmiconfig": {
33379 - "version": "7.1.0",
33380 - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
33381 - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
35215 + "node_modules/postcss-logical": {
35216 + "version": "8.0.0",
35217 + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.0.0.tgz",
35218 + "integrity": "sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==",
35219 + "funding": [
35220 + {
35221 + "type": "github",
35222 + "url": "https://github.com/sponsors/csstools"
35223 + },
35224 + {
35225 + "type": "opencollective",
35226 + "url": "https://opencollective.com/csstools"
35227 + }
35228 + ],
35229 + "license": "MIT-0",
35230 "dependencies": {
33383 - "@types/parse-json": "^4.0.0",
33384 - "import-fresh": "^3.2.1",
33385 - "parse-json": "^5.0.0",
33386 - "path-type": "^4.0.0",
33387 - "yaml": "^1.10.0"
35231 + "postcss-value-parser": "^4.2.0"
35232 },
35233 "engines": {
33390 - "node": ">=10"
33391 - }
33392 - },
33393 - "node_modules/postcss-loader/node_modules/yaml": {
33394 - "version": "1.10.2",
33395 - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
33396 - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
33397 - "engines": {
33398 - "node": ">= 6"
35234 + "node": ">=18"
35235 + },
35236 + "peerDependencies": {
35237 + "postcss": "^8.4"
35238 }
35239 },
35240 "node_modules/postcss-merge-longhand": {
@@ -33545,6 +35384,46 @@
35384 "postcss": "^8.1.0"
35385 }
35386 },
35387 + "node_modules/postcss-nesting": {
35388 + "version": "13.0.1",
35389 + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.1.tgz",
35390 + "integrity": "sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ==",
35391 + "funding": [
35392 + {
35393 + "type": "github",
35394 + "url": "https://github.com/sponsors/csstools"
35395 + },
35396 + {
35397 + "type": "opencollective",
35398 + "url": "https://opencollective.com/csstools"
35399 + }
35400 + ],
35401 + "license": "MIT-0",
35402 + "dependencies": {
35403 + "@csstools/selector-resolve-nested": "^3.0.0",
35404 + "@csstools/selector-specificity": "^5.0.0",
35405 + "postcss-selector-parser": "^7.0.0"
35406 + },
35407 + "engines": {
35408 + "node": ">=18"
35409 + },
35410 + "peerDependencies": {
35411 + "postcss": "^8.4"
35412 + }
35413 + },
35414 + "node_modules/postcss-nesting/node_modules/postcss-selector-parser": {
35415 + "version": "7.0.0",
35416 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
35417 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
35418 + "license": "MIT",
35419 + "dependencies": {
35420 + "cssesc": "^3.0.0",
35421 + "util-deprecate": "^1.0.2"
35422 + },
35423 + "engines": {
35424 + "node": ">=4"
35425 + }
35426 + },
35427 "node_modules/postcss-normalize-charset": {
35428 "version": "5.1.0",
35429 "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz",
@@ -33670,6 +35549,28 @@
35549 "postcss": "^8.2.15"
35550 }
35551 },
35552 + "node_modules/postcss-opacity-percentage": {
35553 + "version": "3.0.0",
35554 + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz",
35555 + "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==",
35556 + "funding": [
35557 + {
35558 + "type": "kofi",
35559 + "url": "https://ko-fi.com/mrcgrtz"
35560 + },
35561 + {
35562 + "type": "liberapay",
35563 + "url": "https://liberapay.com/mrcgrtz"
35564 + }
35565 + ],
35566 + "license": "MIT",
35567 + "engines": {
35568 + "node": ">=18"
35569 + },
35570 + "peerDependencies": {
35571 + "postcss": "^8.4"
35572 + }
35573 + },
35574 "node_modules/postcss-ordered-values": {
35575 "version": "5.1.3",
35576 "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz",
@@ -33685,6 +35586,190 @@
35586 "postcss": "^8.2.15"
35587 }
35588 },
35589 + "node_modules/postcss-overflow-shorthand": {
35590 + "version": "6.0.0",
35591 + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz",
35592 + "integrity": "sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==",
35593 + "funding": [
35594 + {
35595 + "type": "github",
35596 + "url": "https://github.com/sponsors/csstools"
35597 + },
35598 + {
35599 + "type": "opencollective",
35600 + "url": "https://opencollective.com/csstools"
35601 + }
35602 + ],
35603 + "license": "MIT-0",
35604 + "dependencies": {
35605 + "postcss-value-parser": "^4.2.0"
35606 + },
35607 + "engines": {
35608 + "node": ">=18"
35609 + },
35610 + "peerDependencies": {
35611 + "postcss": "^8.4"
35612 + }
35613 + },
35614 + "node_modules/postcss-page-break": {
35615 + "version": "3.0.4",
35616 + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz",
35617 + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==",
35618 + "license": "MIT",
35619 + "peerDependencies": {
35620 + "postcss": "^8"
35621 + }
35622 + },
35623 + "node_modules/postcss-place": {
35624 + "version": "10.0.0",
35625 + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-10.0.0.tgz",
35626 + "integrity": "sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==",
35627 + "funding": [
35628 + {
35629 + "type": "github",
35630 + "url": "https://github.com/sponsors/csstools"
35631 + },
35632 + {
35633 + "type": "opencollective",
35634 + "url": "https://opencollective.com/csstools"
35635 + }
35636 + ],
35637 + "license": "MIT-0",
35638 + "dependencies": {
35639 + "postcss-value-parser": "^4.2.0"
35640 + },
35641 + "engines": {
35642 + "node": ">=18"
35643 + },
35644 + "peerDependencies": {
35645 + "postcss": "^8.4"
35646 + }
35647 + },
35648 + "node_modules/postcss-preset-env": {
35649 + "version": "10.1.1",
35650 + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.1.tgz",
35651 + "integrity": "sha512-wqqsnBFD6VIwcHHRbhjTOcOi4qRVlB26RwSr0ordPj7OubRRxdWebv/aLjKLRR8zkZrbxZyuus03nOIgC5elMQ==",
35652 + "funding": [
35653 + {
35654 + "type": "github",
35655 + "url": "https://github.com/sponsors/csstools"
35656 + },
35657 + {
35658 + "type": "opencollective",
35659 + "url": "https://opencollective.com/csstools"
35660 + }
35661 + ],
35662 + "license": "MIT-0",
35663 + "dependencies": {
35664 + "@csstools/postcss-cascade-layers": "^5.0.1",
35665 + "@csstools/postcss-color-function": "^4.0.6",
35666 + "@csstools/postcss-color-mix-function": "^3.0.6",
35667 + "@csstools/postcss-content-alt-text": "^2.0.4",
35668 + "@csstools/postcss-exponential-functions": "^2.0.5",
35669 + "@csstools/postcss-font-format-keywords": "^4.0.0",
35670 + "@csstools/postcss-gamut-mapping": "^2.0.6",
35671 + "@csstools/postcss-gradients-interpolation-method": "^5.0.6",
35672 + "@csstools/postcss-hwb-function": "^4.0.6",
35673 + "@csstools/postcss-ic-unit": "^4.0.0",
35674 + "@csstools/postcss-initial": "^2.0.0",
35675 + "@csstools/postcss-is-pseudo-class": "^5.0.1",
35676 + "@csstools/postcss-light-dark-function": "^2.0.7",
35677 + "@csstools/postcss-logical-float-and-clear": "^3.0.0",
35678 + "@csstools/postcss-logical-overflow": "^2.0.0",
35679 + "@csstools/postcss-logical-overscroll-behavior": "^2.0.0",
35680 + "@csstools/postcss-logical-resize": "^3.0.0",
35681 + "@csstools/postcss-logical-viewport-units": "^3.0.3",
35682 + "@csstools/postcss-media-minmax": "^2.0.5",
35683 + "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.4",
35684 + "@csstools/postcss-nested-calc": "^4.0.0",
35685 + "@csstools/postcss-normalize-display-values": "^4.0.0",
35686 + "@csstools/postcss-oklab-function": "^4.0.6",
35687 + "@csstools/postcss-progressive-custom-properties": "^4.0.0",
35688 + "@csstools/postcss-random-function": "^1.0.1",
35689 + "@csstools/postcss-relative-color-syntax": "^3.0.6",
35690 + "@csstools/postcss-scope-pseudo-class": "^4.0.1",
35691 + "@csstools/postcss-sign-functions": "^1.1.0",
35692 + "@csstools/postcss-stepped-value-functions": "^4.0.5",
35693 + "@csstools/postcss-text-decoration-shorthand": "^4.0.1",
35694 + "@csstools/postcss-trigonometric-functions": "^4.0.5",
35695 + "@csstools/postcss-unset-value": "^4.0.0",
35696 + "autoprefixer": "^10.4.19",
35697 + "browserslist": "^4.23.1",
35698 + "css-blank-pseudo": "^7.0.1",
35699 + "css-has-pseudo": "^7.0.1",
35700 + "css-prefers-color-scheme": "^10.0.0",
35701 + "cssdb": "^8.2.1",
35702 + "postcss-attribute-case-insensitive": "^7.0.1",
35703 + "postcss-clamp": "^4.1.0",
35704 + "postcss-color-functional-notation": "^7.0.6",
35705 + "postcss-color-hex-alpha": "^10.0.0",
35706 + "postcss-color-rebeccapurple": "^10.0.0",
35707 + "postcss-custom-media": "^11.0.5",
35708 + "postcss-custom-properties": "^14.0.4",
35709 + "postcss-custom-selectors": "^8.0.4",
35710 + "postcss-dir-pseudo-class": "^9.0.1",
35711 + "postcss-double-position-gradients": "^6.0.0",
35712 + "postcss-focus-visible": "^10.0.1",
35713 + "postcss-focus-within": "^9.0.1",
35714 + "postcss-font-variant": "^5.0.0",
35715 + "postcss-gap-properties": "^6.0.0",
35716 + "postcss-image-set-function": "^7.0.0",
35717 + "postcss-lab-function": "^7.0.6",
35718 + "postcss-logical": "^8.0.0",
35719 + "postcss-nesting": "^13.0.1",
35720 + "postcss-opacity-percentage": "^3.0.0",
35721 + "postcss-overflow-shorthand": "^6.0.0",
35722 + "postcss-page-break": "^3.0.4",
35723 + "postcss-place": "^10.0.0",
35724 + "postcss-pseudo-class-any-link": "^10.0.1",
35725 + "postcss-replace-overflow-wrap": "^4.0.0",
35726 + "postcss-selector-not": "^8.0.1"
35727 + },
35728 + "engines": {
35729 + "node": ">=18"
35730 + },
35731 + "peerDependencies": {
35732 + "postcss": "^8.4"
35733 + }
35734 + },
35735 + "node_modules/postcss-pseudo-class-any-link": {
35736 + "version": "10.0.1",
35737 + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz",
35738 + "integrity": "sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==",
35739 + "funding": [
35740 + {
35741 + "type": "github",
35742 + "url": "https://github.com/sponsors/csstools"
35743 + },
35744 + {
35745 + "type": "opencollective",
35746 + "url": "https://opencollective.com/csstools"
35747 + }
35748 + ],
35749 + "license": "MIT-0",
35750 + "dependencies": {
35751 + "postcss-selector-parser": "^7.0.0"
35752 + },
35753 + "engines": {
35754 + "node": ">=18"
35755 + },
35756 + "peerDependencies": {
35757 + "postcss": "^8.4"
35758 + }
35759 + },
35760 + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": {
35761 + "version": "7.0.0",
35762 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
35763 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
35764 + "license": "MIT",
35765 + "dependencies": {
35766 + "cssesc": "^3.0.0",
35767 + "util-deprecate": "^1.0.2"
35768 + },
35769 + "engines": {
35770 + "node": ">=4"
35771 + }
35772 + },
35773 "node_modules/postcss-reduce-initial": {
35774 "version": "5.1.2",
35775 "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz",
@@ -33714,6 +35799,53 @@
35799 "postcss": "^8.2.15"
35800 }
35801 },
35802 + "node_modules/postcss-replace-overflow-wrap": {
35803 + "version": "4.0.0",
35804 + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz",
35805 + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==",
35806 + "license": "MIT",
35807 + "peerDependencies": {
35808 + "postcss": "^8.0.3"
35809 + }
35810 + },
35811 + "node_modules/postcss-selector-not": {
35812 + "version": "8.0.1",
35813 + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz",
35814 + "integrity": "sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==",
35815 + "funding": [
35816 + {
35817 + "type": "github",
35818 + "url": "https://github.com/sponsors/csstools"
35819 + },
35820 + {
35821 + "type": "opencollective",
35822 + "url": "https://opencollective.com/csstools"
35823 + }
35824 + ],
35825 + "license": "MIT",
35826 + "dependencies": {
35827 + "postcss-selector-parser": "^7.0.0"
35828 + },
35829 + "engines": {
35830 + "node": ">=18"
35831 + },
35832 + "peerDependencies": {
35833 + "postcss": "^8.4"
35834 + }
35835 + },
35836 + "node_modules/postcss-selector-not/node_modules/postcss-selector-parser": {
35837 + "version": "7.0.0",
35838 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
35839 + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
35840 + "license": "MIT",
35841 + "dependencies": {
35842 + "cssesc": "^3.0.0",
35843 + "util-deprecate": "^1.0.2"
35844 + },
35845 + "engines": {
35846 + "node": ">=4"
35847 + }
35848 + },
35849 "node_modules/postcss-selector-parser": {
35850 "version": "6.1.0",
35851 "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz",
@@ -33849,7 +35981,6 @@
35981 "version": "3.3.3",
35982 "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz",
35983 "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==",
33852 - "dev": true,
35984 "bin": {
35985 "prettier": "bin/prettier.cjs"
35986 },
@@ -34756,303 +36887,6 @@
36887 "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
36888 "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="
36889 },
34759 - "node_modules/react-markdown": {
34760 - "version": "8.0.7",
34761 - "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.7.tgz",
34762 - "integrity": "sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==",
34763 - "dependencies": {
34764 - "@types/hast": "^2.0.0",
34765 - "@types/prop-types": "^15.0.0",
34766 - "@types/unist": "^2.0.0",
34767 - "comma-separated-tokens": "^2.0.0",
34768 - "hast-util-whitespace": "^2.0.0",
34769 - "prop-types": "^15.0.0",
34770 - "property-information": "^6.0.0",
34771 - "react-is": "^18.0.0",
34772 - "remark-parse": "^10.0.0",
34773 - "remark-rehype": "^10.0.0",
34774 - "space-separated-tokens": "^2.0.0",
34775 - "style-to-object": "^0.4.0",
34776 - "unified": "^10.0.0",
34777 - "unist-util-visit": "^4.0.0",
34778 - "vfile": "^5.0.0"
34779 - },
34780 - "funding": {
34781 - "type": "opencollective",
34782 - "url": "https://opencollective.com/unified"
34783 - },
34784 - "peerDependencies": {
34785 - "@types/react": ">=16",
34786 - "react": ">=16"
34787 - }
34788 - },
34789 - "node_modules/react-markdown/node_modules/@types/debug": {
34790 - "version": "4.1.12",
34791 - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
34792 - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
34793 - "dependencies": {
34794 - "@types/ms": "*"
34795 - }
34796 - },
34797 - "node_modules/react-markdown/node_modules/@types/hast": {
34798 - "version": "2.3.10",
34799 - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz",
34800 - "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==",
34801 - "dependencies": {
34802 - "@types/unist": "^2"
34803 - }
34804 - },
34805 - "node_modules/react-markdown/node_modules/@types/unist": {
34806 - "version": "2.0.10",
34807 - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz",
34808 - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="
34809 - },
34810 - "node_modules/react-markdown/node_modules/hast-util-whitespace": {
34811 - "version": "2.0.1",
34812 - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz",
34813 - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==",
34814 - "funding": {
34815 - "type": "opencollective",
34816 - "url": "https://opencollective.com/unified"
34817 - }
34818 - },
34819 - "node_modules/react-markdown/node_modules/mdast-util-definitions": {
34820 - "version": "5.1.2",
34821 - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz",
34822 - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==",
34823 - "dependencies": {
34824 - "@types/mdast": "^3.0.0",
34825 - "@types/unist": "^2.0.0",
34826 - "unist-util-visit": "^4.0.0"
34827 - },
34828 - "funding": {
34829 - "type": "opencollective",
34830 - "url": "https://opencollective.com/unified"
34831 - }
34832 - },
34833 - "node_modules/react-markdown/node_modules/mdast-util-from-markdown": {
34834 - "version": "1.3.1",
34835 - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz",
34836 - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==",
34837 - "dependencies": {
34838 - "@types/mdast": "^3.0.0",
34839 - "@types/unist": "^2.0.0",
34840 - "decode-named-character-reference": "^1.0.0",
34841 - "mdast-util-to-string": "^3.1.0",
34842 - "micromark": "^3.0.0",
34843 - "micromark-util-decode-numeric-character-reference": "^1.0.0",
34844 - "micromark-util-decode-string": "^1.0.0",
34845 - "micromark-util-normalize-identifier": "^1.0.0",
34846 - "micromark-util-symbol": "^1.0.0",
34847 - "micromark-util-types": "^1.0.0",
34848 - "unist-util-stringify-position": "^3.0.0",
34849 - "uvu": "^0.5.0"
34850 - },
34851 - "funding": {
34852 - "type": "opencollective",
34853 - "url": "https://opencollective.com/unified"
34854 - }
34855 - },
34856 - "node_modules/react-markdown/node_modules/mdast-util-to-hast": {
34857 - "version": "12.3.0",
34858 - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz",
34859 - "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==",
34860 - "dependencies": {
34861 - "@types/hast": "^2.0.0",
34862 - "@types/mdast": "^3.0.0",
34863 - "mdast-util-definitions": "^5.0.0",
34864 - "micromark-util-sanitize-uri": "^1.1.0",
34865 - "trim-lines": "^3.0.0",
34866 - "unist-util-generated": "^2.0.0",
34867 - "unist-util-position": "^4.0.0",
34868 - "unist-util-visit": "^4.0.0"
34869 - },
34870 - "funding": {
34871 - "type": "opencollective",
34872 - "url": "https://opencollective.com/unified"
34873 - }
34874 - },
34875 - "node_modules/react-markdown/node_modules/mdast-util-to-string": {
34876 - "version": "3.2.0",
34877 - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz",
34878 - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==",
34879 - "dependencies": {
34880 - "@types/mdast": "^3.0.0"
34881 - },
34882 - "funding": {
34883 - "type": "opencollective",
34884 - "url": "https://opencollective.com/unified"
34885 - }
34886 - },
34887 - "node_modules/react-markdown/node_modules/micromark": {
34888 - "version": "3.2.0",
34889 - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz",
34890 - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==",
34891 - "funding": [
34892 - {
34893 - "type": "GitHub Sponsors",
34894 - "url": "https://github.com/sponsors/unifiedjs"
34895 - },
34896 - {
34897 - "type": "OpenCollective",
34898 - "url": "https://opencollective.com/unified"
34899 - }
34900 - ],
34901 - "dependencies": {
34902 - "@types/debug": "^4.0.0",
34903 - "debug": "^4.0.0",
34904 - "decode-named-character-reference": "^1.0.0",
34905 - "micromark-core-commonmark": "^1.0.1",
34906 - "micromark-factory-space": "^1.0.0",
34907 - "micromark-util-character": "^1.0.0",
34908 - "micromark-util-chunked": "^1.0.0",
34909 - "micromark-util-combine-extensions": "^1.0.0",
34910 - "micromark-util-decode-numeric-character-reference": "^1.0.0",
34911 - "micromark-util-encode": "^1.0.0",
34912 - "micromark-util-normalize-identifier": "^1.0.0",
34913 - "micromark-util-resolve-all": "^1.0.0",
34914 - "micromark-util-sanitize-uri": "^1.0.0",
34915 - "micromark-util-subtokenize": "^1.0.0",
34916 - "micromark-util-symbol": "^1.0.0",
34917 - "micromark-util-types": "^1.0.1",
34918 - "uvu": "^0.5.0"
34919 - }
34920 - },
34921 - "node_modules/react-markdown/node_modules/remark-parse": {
34922 - "version": "10.0.2",
34923 - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz",
34924 - "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==",
34925 - "dependencies": {
34926 - "@types/mdast": "^3.0.0",
34927 - "mdast-util-from-markdown": "^1.0.0",
34928 - "unified": "^10.0.0"
34929 - },
34930 - "funding": {
34931 - "type": "opencollective",
34932 - "url": "https://opencollective.com/unified"
34933 - }
34934 - },
34935 - "node_modules/react-markdown/node_modules/remark-rehype": {
34936 - "version": "10.1.0",
34937 - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz",
34938 - "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==",
34939 - "dependencies": {
34940 - "@types/hast": "^2.0.0",
34941 - "@types/mdast": "^3.0.0",
34942 - "mdast-util-to-hast": "^12.1.0",
34943 - "unified": "^10.0.0"
34944 - },
34945 - "funding": {
34946 - "type": "opencollective",
34947 - "url": "https://opencollective.com/unified"
34948 - }
34949 - },
34950 - "node_modules/react-markdown/node_modules/unified": {
34951 - "version": "10.1.2",
34952 - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
34953 - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
34954 - "dependencies": {
34955 - "@types/unist": "^2.0.0",
34956 - "bail": "^2.0.0",
34957 - "extend": "^3.0.0",
34958 - "is-buffer": "^2.0.0",
34959 - "is-plain-obj": "^4.0.0",
34960 - "trough": "^2.0.0",
34961 - "vfile": "^5.0.0"
34962 - },
34963 - "funding": {
34964 - "type": "opencollective",
34965 - "url": "https://opencollective.com/unified"
34966 - }
34967 - },
34968 - "node_modules/react-markdown/node_modules/unist-util-generated": {
34969 - "version": "2.0.1",
34970 - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz",
34971 - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==",
34972 - "funding": {
34973 - "type": "opencollective",
34974 - "url": "https://opencollective.com/unified"
34975 - }
34976 - },
34977 - "node_modules/react-markdown/node_modules/unist-util-position": {
34978 - "version": "4.0.4",
34979 - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz",
34980 - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==",
34981 - "dependencies": {
34982 - "@types/unist": "^2.0.0"
34983 - },
34984 - "funding": {
34985 - "type": "opencollective",
34986 - "url": "https://opencollective.com/unified"
34987 - }
34988 - },
34989 - "node_modules/react-markdown/node_modules/unist-util-stringify-position": {
34990 - "version": "3.0.3",
34991 - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
34992 - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
34993 - "dependencies": {
34994 - "@types/unist": "^2.0.0"
34995 - },
34996 - "funding": {
34997 - "type": "opencollective",
34998 - "url": "https://opencollective.com/unified"
34999 - }
35000 - },
35001 - "node_modules/react-markdown/node_modules/unist-util-visit": {
35002 - "version": "4.1.2",
35003 - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz",
35004 - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==",
35005 - "dependencies": {
35006 - "@types/unist": "^2.0.0",
35007 - "unist-util-is": "^5.0.0",
35008 - "unist-util-visit-parents": "^5.1.1"
35009 - },
35010 - "funding": {
35011 - "type": "opencollective",
35012 - "url": "https://opencollective.com/unified"
35013 - }
35014 - },
35015 - "node_modules/react-markdown/node_modules/unist-util-visit-parents": {
35016 - "version": "5.1.3",
35017 - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz",
35018 - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==",
35019 - "dependencies": {
35020 - "@types/unist": "^2.0.0",
35021 - "unist-util-is": "^5.0.0"
35022 - },
35023 - "funding": {
35024 - "type": "opencollective",
35025 - "url": "https://opencollective.com/unified"
35026 - }
35027 - },
35028 - "node_modules/react-markdown/node_modules/vfile": {
35029 - "version": "5.3.7",
35030 - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz",
35031 - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==",
35032 - "dependencies": {
35033 - "@types/unist": "^2.0.0",
35034 - "is-buffer": "^2.0.0",
35035 - "unist-util-stringify-position": "^3.0.0",
35036 - "vfile-message": "^3.0.0"
35037 - },
35038 - "funding": {
35039 - "type": "opencollective",
35040 - "url": "https://opencollective.com/unified"
35041 - }
35042 - },
35043 - "node_modules/react-markdown/node_modules/vfile-message": {
35044 - "version": "3.1.4",
35045 - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz",
35046 - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==",
35047 - "dependencies": {
35048 - "@types/unist": "^2.0.0",
35049 - "unist-util-stringify-position": "^3.0.0"
35050 - },
35051 - "funding": {
35052 - "type": "opencollective",
35053 - "url": "https://opencollective.com/unified"
35054 - }
35055 - },
36890 "node_modules/react-reconciler": {
36891 "version": "0.29.2",
36892 "resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.29.2.tgz",
@@ -35183,6 +37017,15 @@
37017 "node": ">=0.8"
37018 }
37019 },
37020 + "node_modules/read-cache": {
37021 + "version": "1.0.0",
37022 + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
37023 + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
37024 + "license": "MIT",
37025 + "dependencies": {
37026 + "pify": "^2.3.0"
37027 + }
37028 + },
37029 "node_modules/read-cmd-shim": {
37030 "version": "4.0.0",
37031 "resolved": "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz",
@@ -38881,9 +40724,10 @@
40724 }
40725 },
40726 "node_modules/source-map-js": {
38884 - "version": "1.2.0",
38885 - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
38886 - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
40727 + "version": "1.2.1",
40728 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
40729 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
40730 + "license": "BSD-3-Clause",
40731 "engines": {
40732 "node": ">=0.10.0"
40733 }
package.json
+7 -1
@@ -36,7 +36,7 @@
36 "@octokit/plugin-throttling": "^9.1.0",
37 "@octokit/rest": "^21.0.0",
38 "@primer/octicons-react": "^19.8.0",
39 - "@primer/react": "^36.17.0",
39 + "@primer/react": "^37.5.0",
40 "babel-plugin-styled-components": "^2.1.4",
41 "copy-to-clipboard": "^3.3.3",
42 "deepmerge": "^4.3.1",
@@ -48,11 +48,16 @@
48 "gatsby-plugin-manifest": "^5.13.0",
49 "gatsby-plugin-mdx": "^5.13.0",
50 "gatsby-plugin-meta-redirect": "^1.1.1",
51 + "gatsby-plugin-postcss": "^6.14.0",
52 "gatsby-plugin-styled-components": "^6.13.0",
53 "gatsby-source-filesystem": "^5.13.0",
54 "gatsby-transformer-yaml": "^5.13.0",
55 "github-slugger": "^2.0.0",
56 "lodash.debounce": "4.0.8",
57 + "postcss": "^8.4.49",
58 + "postcss-import": "^16.1.0",
59 + "postcss-loader": "^8.1.1",
60 + "postcss-preset-env": "^10.1.1",
61 "prism-react-renderer": "^2.3.1",
62 "prismjs": "^1.29.0",
63 "react": "^18.2.0",
@@ -89,6 +94,7 @@
94 "eslint-plugin-promise": "^7.0.0",
95 "eslint-plugin-react": "^7.33.2",
96 "eslint-plugin-react-hooks": "^4.6.0",
97 + "identity-obj-proxy": "^3.0.0",
98 "jest": "^29.7.0",
99 "jest-environment-jsdom": "^29.7.0",
100 "prettier": "^3.1.1"
src/components/page-footer.js
+2 -1
@@ -1,5 +1,6 @@
1 import React from 'react'
2 -import {Box, Octicon, Avatar, Text} from '@primer/react'
2 +import {Box, Avatar, Text} from '@primer/react'
3 +import {Octicon} from '@primer/react/deprecated'
4 import {Tooltip} from '@primer/react/next'
5 import {PencilIcon} from '@primer/octicons-react'
6 import Link from './link'
src/mdx/code.js
+2 -1
@@ -1,5 +1,6 @@
1 import React from 'react'
2 -import {Box, Text, Button, Octicon, themeGet} from '@primer/react'
2 +import {Box, Text, Button, themeGet} from '@primer/react'
3 +import {Octicon} from '@primer/react/deprecated'
4 import {Highlight, themes, Prism} from 'prism-react-renderer'
5 import styled from 'styled-components'
6 import {CheckIcon, CopyIcon} from '@primer/octicons-react'
src/mdx/components.js
+2 -1
@@ -1,5 +1,6 @@
1 import React from 'react'
2 -import {Box, Heading, themeGet, Octicon} from '@primer/react'
2 +import {Box, Heading, themeGet} from '@primer/react'
3 +import {Octicon} from '@primer/react/deprecated'
4 import styled from 'styled-components'
5 import {variant as styledVariant} from 'styled-system'
6 import {LinkIcon} from '@primer/octicons-react'