Skip to content

Commit

Permalink
5.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetemrekilinc committed Nov 1, 2023
1 parent 4f72d50 commit ad7655c
Show file tree
Hide file tree
Showing 7 changed files with 337 additions and 335 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Update yarn @v2
run: corepack enable
- run: corepack prepare [email protected].0 --activate
- run: corepack prepare [email protected].1 --activate
- run: yarn -v
- name: Install dependencies
run: rm -rf node_modules && yarn install
Expand Down
646 changes: 323 additions & 323 deletions .yarn/releases/yarn-4.0.0.cjs → .yarn/releases/yarn-4.0.1.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.0.cjs
yarnPath: .yarn/releases/yarn-4.0.1.cjs
4 changes: 3 additions & 1 deletion components/CurrentRulesInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ const CurrentRulesInfo = ({ currentRules, header = 'Current Rules' }) => {
<span className={'currentRuleLabel'}>{header}</span>
</AccordionSummary>
<AccordionDetails>
<span className={'currentRuleString'}>{stringifyWithFunction(currentRules)}</span>
<span suppressHydrationWarning={true} className={'currentRuleString'}>
{stringifyWithFunction(currentRules)}
</span>
</AccordionDetails>
</Accordion>
</div>
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const nextConfig = {
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH,
env: {
VERSION: '5.0.0-beta.1',
VERSION: '5.0.0-beta.2',
},
};

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-validatable-form-demo",
"version": "5.0.0-beta.1",
"version": "5.0.0-beta.2",
"license": "MIT",
"scripts": {
"dev": "next dev -p 3155",
Expand All @@ -25,7 +25,7 @@
"react-bootstrap": "2.5.0",
"react-dom": "18.2.0",
"react-minimal-side-navigation": "1.9.2",
"react-validatable-form": "4.0.1"
"react-validatable-form": "5.0.0-beta.2"
},
"devDependencies": {
"eslint": "8.23.1",
Expand All @@ -48,5 +48,5 @@
"last 1 safari version"
]
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].1"
}
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4503,21 +4503,21 @@ __metadata:
react-bootstrap: "npm:2.5.0"
react-dom: "npm:18.2.0"
react-minimal-side-navigation: "npm:1.9.2"
react-validatable-form: "npm:4.0.1"
react-validatable-form: "npm:5.0.0-beta.2"
languageName: unknown
linkType: soft

"react-validatable-form@npm:4.0.1":
version: 4.0.1
resolution: "react-validatable-form@npm:4.0.1"
"react-validatable-form@npm:5.0.0-beta.2":
version: 5.0.0-beta.2
resolution: "react-validatable-form@npm:5.0.0-beta.2"
dependencies:
lodash.get: "npm:4.4.2"
lodash.set: "npm:4.3.2"
lodash.unset: "npm:4.5.2"
peerDependencies:
react: ">=17.0.2"
react-dom: ">=17.0.2"
checksum: 4a44aa9391d0bc65b75623ccece14ffbca711d2da9e39d2b06f1edd5084a64f86c0c487f4064a587abba036df6ecf003d899cff37806629db178e991c28c4679
checksum: bfc236106fa1d3b0492cf9a65e4dfe47a1d3f9f67ebaaf70361d86e9fd0af1f4b59d1e8666fbbc1446ed95d4f1f0ce4adac592d6f822abe50256850703f7dfda
languageName: node
linkType: hard

Expand Down

0 comments on commit ad7655c

Please sign in to comment.