From bdcb6cff8cbc23a4b9dac313a0cc3f132f3b450d Mon Sep 17 00:00:00 2001 From: Iwin Issac <74755442+iwint@users.noreply.github.com> Date: Sun, 2 Feb 2025 20:07:20 +0530 Subject: [PATCH 1/2] feat(nx-cloud): setup nx cloud workspace This commit sets up Nx Cloud for your Nx workspace, enabling distributed caching and the Nx Cloud GitHub integration for fast CI and improved developer experience. You can access your Nx Cloud workspace by going to https://cloud.nx.app/orgs/679f823a65c43fc4a1ac99c8/workspaces/679f831f71fd2cb4bf200ec8 **Note:** This commit attempts to maintain formatting of the nx.json file, however you may need to correct formatting by running an nx format command and committing the changes. --- nx.json | 79 ++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 61 insertions(+), 18 deletions(-) diff --git a/nx.json b/nx.json index 91b2e0553be697..3d6a17ae070ec7 100644 --- a/nx.json +++ b/nx.json @@ -11,38 +11,63 @@ }, "targetDefaults": { "bundle-size": { - "dependsOn": ["^build"], + "dependsOn": [ + "^build" + ], "cache": true }, "bundle": { "cache": true, - "dependsOn": ["^build"] + "dependsOn": [ + "^build" + ] }, "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], "cache": true }, "build-storybook": { "dependsOn": [], - "inputs": ["default", "{workspaceRoot}/.storybook/**", "{projectRoot}/.storybook/**"], + "inputs": [ + "default", + "{workspaceRoot}/.storybook/**", + "{projectRoot}/.storybook/**" + ], "cache": true }, "generate-api": { - "dependsOn": ["^generate-api"], + "dependsOn": [ + "^generate-api" + ], "cache": true }, "type-check": { - "dependsOn": ["^build"], + "dependsOn": [ + "^build" + ], "cache": true }, "prepare": { - "dependsOn": ["^prepare"], + "dependsOn": [ + "^prepare" + ], "cache": true }, "test": { - "dependsOn": ["^build"], - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production", + "{workspaceRoot}/jest.preset.js" + ], "cache": true }, "test-ssr": { @@ -51,10 +76,16 @@ "e2e": { "dependsOn": [], "cache": true, - "inputs": ["default", "{projectRoot}/cypress.config.ts", "!{projectRoot}/**/?(*.)+cy.[jt]s?(x)?"] + "inputs": [ + "default", + "{projectRoot}/cypress.config.ts", + "!{projectRoot}/**/?(*.)+cy.[jt]s?(x)?" + ] }, "lint": { - "dependsOn": ["build"], + "dependsOn": [ + "build" + ], "cache": true, "inputs": [ "default", @@ -64,11 +95,17 @@ ] }, "verify-packaging": { - "dependsOn": ["^build"], + "dependsOn": [ + "^build" + ], "cache": true }, "@nx/jest:jest": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "inputs": [ + "default", + "^production", + "{workspaceRoot}/jest.preset.js" + ], "cache": true, "options": { "passWithNoTests": true @@ -82,7 +119,10 @@ } }, "namedInputs": { - "default": ["{projectRoot}/**/*", "sharedGlobals"], + "default": [ + "{projectRoot}/**/*", + "sharedGlobals" + ], "sharedGlobals": [], "production": [ "default", @@ -98,11 +138,14 @@ "northstar": { "releaseTagPattern": "@fluentui/react-northstar_v{version}", "projectsRelationship": "fixed", - "projects": ["packages/fluentui/*"] + "projects": [ + "packages/fluentui/*" + ] } } }, "parallel": 3, "useInferencePlugins": false, - "defaultBase": "master" -} + "defaultBase": "master", + "nxCloudAccessToken": "ZTAyOTBkMjAtMDAwNy00ZTllLTg5NzktNTdhNjQzOTJlMDRkfHJlYWQtd3JpdGU=" +} \ No newline at end of file From 8ac433eb6c9057b45129caaecafa8ca1e7960f14 Mon Sep 17 00:00:00 2001 From: iwint Date: Sat, 22 Feb 2025 07:56:44 +0530 Subject: [PATCH 2/2] fix:(react-carousel): v9 carousel non-responsive issue in docs --- .../stories/src/Carousel/CarouselActionCards.stories.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/react-components/react-carousel/stories/src/Carousel/CarouselActionCards.stories.tsx b/packages/react-components/react-carousel/stories/src/Carousel/CarouselActionCards.stories.tsx index ab2cf2caedc727..c6909f90c239a1 100644 --- a/packages/react-components/react-carousel/stories/src/Carousel/CarouselActionCards.stories.tsx +++ b/packages/react-components/react-carousel/stories/src/Carousel/CarouselActionCards.stories.tsx @@ -25,10 +25,6 @@ import * as React from 'react'; const useClasses = makeStyles({ container: { - display: 'grid', - gridTemplateColumns: '1fr', - gridTemplateRows: 'auto 1fr', - boxShadow: tokens.shadow16, }, card: {