diff --git a/package-lock.json b/package-lock.json index 8be305ce..3738b0f0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -37,7 +37,7 @@ "@radix-ui/react-toggle-group": "^1.0.0", "@radix-ui/react-tooltip": "^1.0.0", "@radix-ui/react-visually-hidden": "^1.0.0", - "@stitches/react": "^1.2.7" + "@stitches/react": "^1.2.8" }, "devDependencies": { "@commitlint/cli": "^16.2.3", @@ -98,7 +98,7 @@ "storybook-dark-mode": "^1.1.2", "ts-jest": "^27.1.4", "tsconfig-paths-webpack-plugin": "^3.5.2", - "typescript": "^4.6.3" + "typescript": "4.7.4" }, "engines": { "node": ">=10" @@ -6169,9 +6169,9 @@ } }, "node_modules/@stitches/react": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@stitches/react/-/react-1.2.7.tgz", - "integrity": "sha512-6AxpUag7OW55ANzRnuy7R15FEyQeZ66fytVo3BBilFIU0mfo3t49CAMcEAL/A1SbhSj/FCdWkn/XrbjGBTJTzg==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@stitches/react/-/react-1.2.8.tgz", + "integrity": "sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==", "peerDependencies": { "react": ">= 16.3.0" } @@ -37149,9 +37149,9 @@ } }, "node_modules/typescript": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz", - "integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -44120,9 +44120,9 @@ } }, "@stitches/react": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@stitches/react/-/react-1.2.7.tgz", - "integrity": "sha512-6AxpUag7OW55ANzRnuy7R15FEyQeZ66fytVo3BBilFIU0mfo3t49CAMcEAL/A1SbhSj/FCdWkn/XrbjGBTJTzg==" + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@stitches/react/-/react-1.2.8.tgz", + "integrity": "sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==" }, "@storybook/addon-actions": { "version": "6.5.12", @@ -68055,9 +68055,9 @@ } }, "typescript": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz", - "integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true }, "uglify-js": { diff --git a/package.json b/package.json index 6f83d8b5..29184487 100644 --- a/package.json +++ b/package.json @@ -142,7 +142,7 @@ "storybook-dark-mode": "^1.1.2", "ts-jest": "^27.1.4", "tsconfig-paths-webpack-plugin": "^3.5.2", - "typescript": "^4.6.3" + "typescript": "4.7.4" }, "dependencies": { "@committed/hooks": "^0.8.0", @@ -173,6 +173,6 @@ "@radix-ui/react-toggle-group": "^1.0.0", "@radix-ui/react-tooltip": "^1.0.0", "@radix-ui/react-visually-hidden": "^1.0.0", - "@stitches/react": "^1.2.7" + "@stitches/react": "^1.2.8" } } diff --git a/src/typings.d.ts b/src/typings.d.ts index 68751fa8..afc811da 100644 --- a/src/typings.d.ts +++ b/src/typings.d.ts @@ -17,7 +17,7 @@ export type PartialPick = { } /** - * A utility typing to allow the extraction of just the raw variants from a stiches variant. + * A utility typing to allow the extraction of just the raw variants from a stitches variant. * * For example: * ```JustVariants['variant']> // "scale" | "draw" | "spin"```