Skip to content

Commit

Permalink
[SSP-1962] package.json fix to minors (#2923)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvikito authored Dec 6, 2023
2 parents 7e37b83 + b627b3a commit 63f9d4d
Show file tree
Hide file tree
Showing 6 changed files with 897 additions and 894 deletions.
6 changes: 3 additions & 3 deletions storefront/components/Basic/RangeSlider/RangeSlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,10 @@ const RangeSliderThumb: FC<RangeSliderThumbProps> = ({ dataTestId, isActive, dis
mozTwClass,
msTwClass,
isActive
? '[&::-webkit-slider-thumb]:bg-orange [&::-moz-range-thumb]:bg-orange [&::-ms-thumb]:bg-orange'
: '[&::-webkit-slider-thumb]:bg-greyLight [&::-moz-range-thumb]:bg-greyLight [&::-ms-thumb]:bg-greyLight',
? '[&::-moz-range-thumb]:bg-orange [&::-ms-thumb]:bg-orange [&::-webkit-slider-thumb]:bg-orange'
: '[&::-moz-range-thumb]:bg-greyLight [&::-ms-thumb]:bg-greyLight [&::-webkit-slider-thumb]:bg-greyLight',
disabled &&
'[&::-webkit-slider-thumb]:cursor-not-allowed [&::-moz-range-thumb]:cursor-not-allowed [&::-ms-thumb]:cursor-not-allowed',
'[&::-moz-range-thumb]:cursor-not-allowed [&::-ms-thumb]:cursor-not-allowed [&::-webkit-slider-thumb]:cursor-not-allowed',
)}
{...props}
/>
Expand Down
2 changes: 1 addition & 1 deletion storefront/components/Forms/TextInput/SearchInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const SearchInput: FC<SearchInputProps> = ({
value={value}
className={twMergeCustom(
// class "peer" is used for styling in LabelWrapper
'peer mb-0 h-12 w-full rounded border-2 border-white bg-white pr-20 pl-4 text-dark placeholder:text-grey placeholder:opacity-100 focus:outline-none [&:-webkit-autofill]:!bg-white [&:-webkit-autofill]:!shadow-inner [&:-webkit-autofill]:hover:!bg-white [&:-webkit-autofill]:hover:!shadow-inner [&:-webkit-autofill]:focus:!bg-white [&:-webkit-autofill]:focus:!shadow-inner [&:-internal-autofill-selected]:!bg-white [&:-internal-autofill-selected]:!shadow-inner [&::-webkit-search-decoration]:appearance-none [&::-webkit-search-cancel-button]:appearance-none [&::-webkit-search-results-button]:appearance-none [&::-webkit-search-results-decoration]:appearance-none [&::-webkit-cancel-button]:appearance-none [&::-webkit-results-button]:appearance-none [&::-webkit-results-decoration]:appearance-none',
'peer mb-0 h-12 w-full rounded border-2 border-white bg-white pr-20 pl-4 text-dark placeholder:text-grey placeholder:opacity-100 focus:outline-none [&:-internal-autofill-selected]:!bg-white [&:-internal-autofill-selected]:!shadow-inner [&:-webkit-autofill]:!bg-white [&:-webkit-autofill]:!shadow-inner [&:-webkit-autofill]:hover:!bg-white [&:-webkit-autofill]:hover:!shadow-inner [&:-webkit-autofill]:focus:!bg-white [&:-webkit-autofill]:focus:!shadow-inner [&::-webkit-cancel-button]:appearance-none [&::-webkit-results-button]:appearance-none [&::-webkit-results-decoration]:appearance-none [&::-webkit-search-cancel-button]:appearance-none [&::-webkit-search-decoration]:appearance-none [&::-webkit-search-results-button]:appearance-none [&::-webkit-search-results-decoration]:appearance-none',
value ? 'pr-20' : 'pr-12',
className,
)}
Expand Down
2 changes: 1 addition & 1 deletion storefront/components/Forms/TextInput/TextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const TextInput = forwardRef<HTMLInputElement, TextInputProps>(
className={twMergeCustom(
// class "peer" is used for styling in LabelWrapper
'peer w-full rounded border-2 border-border bg-white px-3 pt-5 text-dark [-moz-appearance:textfield] [-webkit-appearance:none] placeholder:[color:transparent] focus:outline-none disabled:pointer-events-none disabled:cursor-no-drop disabled:opacity-50',
'[&:-webkit-autofill]:!bg-white [&:-webkit-autofill]:!shadow-inner [&:-webkit-autofill]:hover:!bg-white [&:-webkit-autofill]:hover:!shadow-inner [&:-webkit-autofill]:focus:!bg-white [&:-webkit-autofill]:focus:!shadow-inner [&:-internal-autofill-selected]:!bg-white [&:-internal-autofill-selected]:!shadow-inner',
'[&:-internal-autofill-selected]:!bg-white [&:-internal-autofill-selected]:!shadow-inner [&:-webkit-autofill]:!bg-white [&:-webkit-autofill]:!shadow-inner [&:-webkit-autofill]:hover:!bg-white [&:-webkit-autofill]:hover:!shadow-inner [&:-webkit-autofill]:focus:!bg-white [&:-webkit-autofill]:focus:!shadow-inner',
inputSize === 'small' ? 'text-small h-12' : 'text-body h-14',
hasError && 'border-red bg-white shadow-none',
type === 'password' && 'text-2xl text-greyLighter focus-visible:text-dark',
Expand Down
2 changes: 1 addition & 1 deletion storefront/components/Forms/Textarea/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const Textarea = forwardRef<HTMLTextAreaElement, TextareaProps>(
value={value}
// class "peer" is used for styling in LabelWrapper
className={twJoin(
'peer w-full resize-y appearance-none rounded border-2 border-border bg-white py-5 px-[10px] text-dark placeholder:opacity-0 focus:outline-none disabled:pointer-events-none disabled:cursor-no-drop disabled:opacity-50 [&:-webkit-autofill]:!bg-white [&:-webkit-autofill]:!shadow-inner [&:-webkit-autofill]:hover:!bg-white [&:-webkit-autofill]:hover:!shadow-inner [&:-webkit-autofill]:focus:!bg-white [&:-webkit-autofill]:focus:!shadow-inner [&:-internal-autofill-selected]:!bg-white [&:-internal-autofill-selected]:!shadow-inner',
'peer w-full resize-y appearance-none rounded border-2 border-border bg-white py-5 px-[10px] text-dark placeholder:opacity-0 focus:outline-none disabled:pointer-events-none disabled:cursor-no-drop disabled:opacity-50 [&:-internal-autofill-selected]:!bg-white [&:-internal-autofill-selected]:!shadow-inner [&:-webkit-autofill]:!bg-white [&:-webkit-autofill]:!shadow-inner [&:-webkit-autofill]:hover:!bg-white [&:-webkit-autofill]:hover:!shadow-inner [&:-webkit-autofill]:focus:!bg-white [&:-webkit-autofill]:focus:!shadow-inner',
hasError && 'border-red bg-white shadow-none',
)}
onBlur={onBlur}
Expand Down
156 changes: 78 additions & 78 deletions storefront/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,85 +23,85 @@
"test--no-watch": "vitest run"
},
"dependencies": {
"@floating-ui/react": "0.24.6",
"@hookform/resolvers": "2.6.1",
"@next/bundle-analyzer": "13.2.4",
"@sentry/nextjs": "7.58.0",
"@urql/devtools": "2.0.3",
"@urql/exchange-auth": "2.1.4",
"@urql/exchange-graphcache": "6.1.4",
"cookies-next": "2.1.2",
"crypto-js": "4.1.1",
"dayjs": "1.11.3",
"embla-carousel-react": "7.1.0",
"graphql": "16.7.1",
"graphql-tag": "2.12.6",
"js-base64": "3.7.2",
"jwt-decode": "3.1.2",
"keen-slider": "5.5.1",
"lightgallery": "2.7.1",
"lz-string": "1.5.0",
"next": "13.2.0",
"next-translate": "2.0.0",
"next-translate-plugin": "2.0.0",
"next-urql": "5.0.2",
"nprogress": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-hook-form": "7.35.0",
"react-loading-skeleton": "3.3.1",
"react-merge-refs": "2.0.1",
"react-select": "5.7.3",
"react-tabs": "6.0.1",
"react-toastify": "8.0.2",
"react-transition-group": "4.4.2",
"redis": "4.0.4",
"tailwind-merge": "1.9.1",
"tinycolor2": "1.4.2",
"urql": "4.0.4",
"uuid": "8.3.2",
"wonka": "6.3.2",
"yup": "0.32.9",
"zustand": "4.4.4"
"@floating-ui/react": "~0.24.8",
"@hookform/resolvers": "~2.6.1",
"@next/bundle-analyzer": "~13.2.4",
"@sentry/nextjs": "~7.58.1",
"@urql/devtools": "~2.0.3",
"@urql/exchange-auth": "~2.1.6",
"@urql/exchange-graphcache": "~6.1.4",
"cookies-next": "~2.1.2",
"crypto-js": "~4.1.1",
"dayjs": "~1.11.10",
"embla-carousel-react": "~7.1.0",
"graphql": "~16.7.1",
"graphql-tag": "~2.12.6",
"js-base64": "~3.7.5",
"jwt-decode": "~3.1.2",
"keen-slider": "~5.5.1",
"lightgallery": "~2.7.2",
"lz-string": "~1.5.0",
"next": "~13.2.4",
"next-translate": "~2.0.6",
"next-translate-plugin": "~2.0.5",
"next-urql": "~5.0.2",
"nprogress": "~0.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-error-boundary": "~3.1.4",
"react-hook-form": "~7.35.0",
"react-loading-skeleton": "~3.3.1",
"react-merge-refs": "~2.0.2",
"react-select": "~5.7.7",
"react-tabs": "~6.0.2",
"react-toastify": "~8.0.3",
"react-transition-group": "~4.4.5",
"redis": "~4.0.6",
"tailwind-merge": "~1.9.1",
"tinycolor2": "~1.4.2",
"urql": "~4.0.6",
"uuid": "~8.3.2",
"wonka": "~6.3.4",
"yup": "~0.32.11",
"zustand": "~4.4.4"
},
"devDependencies": {
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/fragment-matcher": "5.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-urql": "3.7.3",
"@testing-library/react": "14.0.0",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/crypto-js": "4.1.1",
"@types/node": "20.1.3",
"@types/nprogress": "0.2.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/react-transition-group": "4.4.2",
"@types/tinycolor2": "1.4.2",
"@types/uuid": "8.3.2",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"@vitejs/plugin-react": "4.0.3",
"autoprefixer": "10.4.14",
"concurrently": "7.2.1",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-no-relative-import-paths": "1.5.2",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"graphql-markdown": "7.0.0",
"i18next-parser": "5.0.0",
"jsdom": "22.1.0",
"postcss": "8.4.21",
"prettier": "2.8.3",
"prettier-plugin-tailwindcss": "0.2.2",
"sass": "1.58.3",
"tailwindcss": "3.2.4",
"typescript": "5.1.6",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.33.0"
"@graphql-codegen/cli": "~4.0.1",
"@graphql-codegen/fragment-matcher": "~5.0.0",
"@graphql-codegen/introspection": "~4.0.0",
"@graphql-codegen/typescript-operations": "~4.0.1",
"@graphql-codegen/typescript-urql": "~3.7.3",
"@testing-library/react": "~14.0.0",
"@trivago/prettier-plugin-sort-imports": "~3.2.0",
"@types/crypto-js": "~4.1.3",
"@types/node": "~20.1.7",
"@types/nprogress": "~0.2.3",
"@types/react": "~18.2.37",
"@types/react-dom": "~18.2.15",
"@types/react-transition-group": "~4.4.9",
"@types/tinycolor2": "~1.4.6",
"@types/uuid": "~8.3.4",
"@typescript-eslint/eslint-plugin": "~5.59.11",
"@typescript-eslint/parser": "~5.59.11",
"@vitejs/plugin-react": "~4.0.4",
"autoprefixer": "~10.4.16",
"concurrently": "~7.2.2",
"eslint": "~8.35.0",
"eslint-config-prettier": "~8.6.0",
"eslint-plugin-no-relative-import-paths": "~1.5.3",
"eslint-plugin-react": "~7.32.2",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-unused-imports": "~2.0.0",
"graphql-markdown": "~7.0.0",
"i18next-parser": "~5.0.0",
"jsdom": "~22.1.0",
"postcss": "~8.4.31",
"prettier": "~2.8.8",
"prettier-plugin-tailwindcss": "~0.2.8",
"sass": "~1.58.3",
"tailwindcss": "~3.2.7",
"typescript": "~5.1.6",
"vite-tsconfig-paths": "~4.2.1",
"vitest": "~0.33.0"
}
}
Loading

0 comments on commit 63f9d4d

Please sign in to comment.