Skip to content

Commit

Permalink
chore: bump dependencies & update typegen (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Apr 24, 2024
1 parent 723a024 commit d930ef5
Show file tree
Hide file tree
Showing 8 changed files with 905 additions and 506 deletions.
2 changes: 1 addition & 1 deletion nix/yarn-project.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ let
rm $out/.gitignore
'';
outputHashMode = "recursive";
outputHash = "sha512-z7+VOsmws5XJjPKGNGiEOXCuUlv12VlxRDE0R0KOp1qrNoJuB6+m4lkrZmPdVDcFrqWvd4RBYDn1QQNzIsDo/g==";
outputHash = "sha512-OkidomBHk9k+7KWg8kZYyuQ0bOyXNx27XqR6hxqJjAKdqnB228ZntGA4QI1LgDS6soZjP8oB0sZx3Dc2GT5CmA==";
};

# Main project derivation.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vscode/vsce": "^2.25.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vscode/vsce": "^2.26.0",
"@yarnpkg/types": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/catppuccin-vsc-pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"Catppuccin.catppuccin-vsc-icons"
],
"devDependencies": {
"@vscode/vsce": "^2.25.0"
"@vscode/vsce": "^2.26.0"
},
"scripts": {
"pack:build": "vsce package --no-dependencies --out catppuccin-vsc-pack.vsix"
Expand Down
16 changes: 8 additions & 8 deletions packages/catppuccin-vsc-storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
"private": true,
"devDependencies": {
"@catppuccin/palette": "^1.1.1",
"@fontsource/jetbrains-mono": "^5.0.19",
"@storybook/addon-essentials": "^8.0.8",
"@fontsource/jetbrains-mono": "^5.0.20",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-themes": "^8.0.8",
"@storybook/blocks": "^8.0.8",
"@storybook/web-components-vite": "^8.0.8",
"@storybook/addon-themes": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/web-components-vite": "^8.0.9",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.12.7",
"catppuccin-vsc": "workspace:*",
"chromatic": "^11.3.0",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"lit": "^3.1.2",
"lit": "^3.1.3",
"shiki": "^1.3.0",
"storybook": "^8.0.8",
"storybook": "^8.0.9",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite": "^5.2.8"
"vite": "^5.2.10"
},
"scripts": {
"storybook:chromatic": "chromatic --exit-zero-on-changes --exit-once-uploaded --project-token chpt_e3cba49738d7554",
Expand Down
2 changes: 1 addition & 1 deletion packages/catppuccin-vsc-typegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"private": true,
"devDependencies": {
"json-schema-to-typescript": "^13.1.2",
"json-schema-to-typescript": "^14.0.0",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
Expand Down
68 changes: 64 additions & 4 deletions packages/catppuccin-vsc-typegen/types/workbench-colors.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,27 @@ export interface WorkbenchColors {
*/
"activityBarBadge.foreground"?: string;
/**
* Focus border color for the active item in the Activity bar when it is on top. The activity allows to switch between views of the side bar.
* Background color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.
*/
"activityBarTop.activeBackground"?: string;
/**
* Focus border color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.
*/
"activityBarTop.activeBorder"?: string;
/**
* Drag and drop feedback color for the items in the Activity bar when it is on top. The activity allows to switch between views of the side bar.
* Background color of the activity bar when set to top / bottom.
*/
"activityBarTop.background"?: string;
/**
* Drag and drop feedback color for the items in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.
*/
"activityBarTop.dropBorder"?: string;
/**
* Active foreground color of the item in the Activity bar when it is on top. The activity allows to switch between views of the side bar.
* Active foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.
*/
"activityBarTop.foreground"?: string;
/**
* Inactive foreground color of the item in the Activity bar when it is on top. The activity allows to switch between views of the side bar.
* Inactive foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.
*/
"activityBarTop.inactiveForeground"?: string;
/**
Expand Down Expand Up @@ -177,6 +185,10 @@ export interface WorkbenchColors {
* The foreground color of a chat avatar.
*/
"chat.avatarForeground"?: string;
/**
* The background color of a chat request.
*/
"chat.requestBackground"?: string;
/**
* The border color of a chat request.
*/
Expand Down Expand Up @@ -1037,6 +1049,22 @@ export interface WorkbenchColors {
* Editor marker navigation widget warning heading background.
*/
"editorMarkerNavigationWarning.headerBackground"?: string;
/**
* The background color of the primary editor cursor when multiple cursors are present. Allows customizing the color of a character overlapped by a block cursor.
*/
"editorMultiCursor.primary.background"?: string;
/**
* Color of the primary editor cursor when multiple cursors are present.
*/
"editorMultiCursor.primary.foreground"?: string;
/**
* The background color of secondary editor cursors when multiple cursors are present. Allows customizing the color of a character overlapped by a block cursor.
*/
"editorMultiCursor.secondary.background"?: string;
/**
* Color of secondary editor cursors when multiple cursors are present.
*/
"editorMultiCursor.secondary.foreground"?: string;
/**
* Overview ruler marker color for added content.
*/
Expand Down Expand Up @@ -2258,6 +2286,10 @@ export interface WorkbenchColors {
* Side bar foreground color. The side bar is the container for views like explorer and search.
*/
"sideBar.foreground"?: string;
/**
* Border color between the activity bar at the top/bottom and the views.
*/
"sideBarActivityBarTop.border"?: string;
/**
* Side bar section header background color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar.
*/
Expand Down Expand Up @@ -2582,6 +2614,10 @@ export interface WorkbenchColors {
* Border to separate tabs from each other. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups.
*/
"tab.border"?: string;
/**
* Border between tabs to indicate that a tab can be inserted between two tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups.
*/
"tab.dragAndDropBorder"?: string;
/**
* Tab background color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups.
*/
Expand Down Expand Up @@ -2830,26 +2866,50 @@ export interface WorkbenchColors {
* Color for the 'Errored' icon in the test explorer.
*/
"testing.iconErrored"?: string;
/**
* Retired color for the 'Errored' icon in the test explorer.
*/
"testing.iconErrored.retired"?: string;
/**
* Color for the 'failed' icon in the test explorer.
*/
"testing.iconFailed"?: string;
/**
* Retired color for the 'failed' icon in the test explorer.
*/
"testing.iconFailed.retired"?: string;
/**
* Color for the 'passed' icon in the test explorer.
*/
"testing.iconPassed"?: string;
/**
* Retired color for the 'passed' icon in the test explorer.
*/
"testing.iconPassed.retired"?: string;
/**
* Color for the 'Queued' icon in the test explorer.
*/
"testing.iconQueued"?: string;
/**
* Retired color for the 'Queued' icon in the test explorer.
*/
"testing.iconQueued.retired"?: string;
/**
* Color for the 'Skipped' icon in the test explorer.
*/
"testing.iconSkipped"?: string;
/**
* Retired color for the 'Skipped' icon in the test explorer.
*/
"testing.iconSkipped.retired"?: string;
/**
* Color for the 'Unset' icon in the test explorer.
*/
"testing.iconUnset"?: string;
/**
* Retired color for the 'Unset' icon in the test explorer.
*/
"testing.iconUnset.retired"?: string;
/**
* Text color of test error messages shown inline in the editor.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/catppuccin-vsc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"@types/node": "^20.12.7",
"@types/tinycolor2": "^1.4.6",
"@types/vscode": "~1.80.0",
"@vscode/vsce": "^2.25.0",
"@vscode/vsce": "^2.26.0",
"tinycolor2": "^1.6.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
Expand Down
Loading

0 comments on commit d930ef5

Please sign in to comment.