Skip to content

Commit

Permalink
4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetemrekilinc committed Feb 11, 2024
1 parent 79e0fad commit b4d3d4d
Show file tree
Hide file tree
Showing 7 changed files with 1,863 additions and 1,873 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [20.9.0]
node-version: [20.10.0]

steps:
- uses: actions/checkout@v3
Expand All @@ -25,7 +25,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Update yarn @v2
run: corepack enable
- run: corepack prepare yarn@4.0.1 --activate
- run: corepack prepare yarn@4.1.0 --activate
- run: yarn -v
- name: Install dependencies
run: rm -rf node_modules && yarn install --immutable
Expand Down
893 changes: 0 additions & 893 deletions .yarn/releases/yarn-4.0.1.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.1.cjs
yarnPath: .yarn/releases/yarn-4.1.0.cjs
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "comfort-react-demo",
"version": "4.2.0",
"version": "4.2.1",
"type": "module",
"license": "MIT",
"scripts": {
Expand All @@ -22,7 +22,7 @@
"@mui/x-date-pickers": "6.17.0",
"@testing-library/jest-dom": "^6.2.1",
"@testing-library/react": "^14.1.2",
"comfort-react": "4.2.0",
"comfort-react": "4.2.1",
"date-fns": "2.30.0",
"jsx-to-string": "1.4.0",
"miragejs": "0.1.48",
Expand Down Expand Up @@ -85,5 +85,5 @@
"last 1 safari version"
]
},
"packageManager": "yarn@4.0.1"
"packageManager": "yarn@4.1.0"
}
24 changes: 7 additions & 17 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,18 +305,18 @@ input {
border-color: transparent #1975d2 transparent transparent;
}

[dir='ltr'] .obssTriangle{
[dir='ltr'] .obssTriangle {
top: 0;
right: 0;
}

[dir='rtl'] .obssTriangle{
[dir='rtl'] .obssTriangle {
top: 0;
left: 0;
transform: rotate(270deg);
}

.obssTriangle:hover{
.obssTriangle:hover {
border-color: transparent #1565c0 transparent transparent;
}

Expand All @@ -329,31 +329,21 @@ input {
writing-mode: vertical-lr;
}

[dir='ltr'] .triangleIcon{
[dir='ltr'] .triangleIcon {
top: 0;
right: 5px;
}

[dir='rtl'] .triangleIcon{
[dir='rtl'] .triangleIcon {
top: 0;
left: 20px;
}


.codesandboxIFrame {
padding-top: 20px;
width: 100%;
height: 500px;
border: 0;
border-radius: 4px;
overflow: hidden;
}

.selectedSideItem{
.selectedSideItem {
background-color: lightgrey;
}

.generalDiv{
.generalDiv {
width: 100%;
}

Expand Down
Loading

0 comments on commit b4d3d4d

Please sign in to comment.