Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit ea0dfbe

Browse files
author
Anton
authored
General base dialog (#124)
* chore: update yarn sdk configuration * feat(dialog)!: generalize `BaseDialog` so it accepts only children BREAKING CHANGE: - Generalize `BaseDialog` so it accepts only children, `header`, `footer` and `children` should be wrapped into `DialogHeader`, `DialogFooter` and `DialogContent` to get the previous behaviour of `BaseDialog`. `Dialog`, `AlertDialog` and `ConfirmDialog` work as before
1 parent 37e7a44 commit ea0dfbe

File tree

19 files changed

+310
-78
lines changed

19 files changed

+310
-78
lines changed

.vim/coc-settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"tsserver.tsdk": ".yarn/sdks/typescript/lib",
33
"eslint.packageManager": "yarn",
4-
"eslint.nodePath": ".yarn/sdks"
4+
"eslint.nodePath": ".yarn/sdks",
5+
"workspace.workspaceFolderCheckCwd": false
56
}

.yarn/sdks/eslint/bin/eslint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
const {existsSync} = require(`fs`);
44
const {createRequire, createRequireFromPath} = require(`module`);
5-
const {resolve, dirname} = require(`path`);
5+
const {resolve} = require(`path`);
66

7-
const relPnpApiPath = "../../../../.pnp.js";
7+
const relPnpApiPath = "../../../../.pnp.cjs";
88

99
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1010
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);

.yarn/sdks/eslint/lib/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
const {existsSync} = require(`fs`);
44
const {createRequire, createRequireFromPath} = require(`module`);
5-
const {resolve, dirname} = require(`path`);
5+
const {resolve} = require(`path`);
66

7-
const relPnpApiPath = "../../../../.pnp.js";
7+
const relPnpApiPath = "../../../../.pnp.cjs";
88

99
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1010
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);

.yarn/sdks/eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint",
3-
"version": "7.14.0-pnpify",
3+
"version": "7.32.0-sdk",
44
"main": "./lib/api.js",
55
"type": "commonjs"
66
}

.yarn/sdks/integrations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# This file is automatically generated by PnPify.
2-
# Manual changes will be lost!
1+
# This file is automatically generated by @yarnpkg/sdks.
2+
# Manual changes might be lost!
33

44
integrations:
55
- vscode

.yarn/sdks/prettier/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
const {existsSync} = require(`fs`);
44
const {createRequire, createRequireFromPath} = require(`module`);
5-
const {resolve, dirname} = require(`path`);
5+
const {resolve} = require(`path`);
66

7-
const relPnpApiPath = "../../../.pnp.js";
7+
const relPnpApiPath = "../../../.pnp.cjs";
88

99
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1010
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);

.yarn/sdks/prettier/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier",
3-
"version": "2.2.0-pnpify",
3+
"version": "2.3.2-sdk",
44
"main": "./index.js",
55
"type": "commonjs"
66
}

.yarn/sdks/stylelint/bin/stylelint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
const {existsSync} = require(`fs`);
44
const {createRequire, createRequireFromPath} = require(`module`);
5-
const {resolve, dirname} = require(`path`);
5+
const {resolve} = require(`path`);
66

7-
const relPnpApiPath = "../../../../.pnp.js";
7+
const relPnpApiPath = "../../../../.pnp.cjs";
88

99
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1010
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);

.yarn/sdks/stylelint/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
const {existsSync} = require(`fs`);
44
const {createRequire, createRequireFromPath} = require(`module`);
5-
const {resolve, dirname} = require(`path`);
5+
const {resolve} = require(`path`);
66

7-
const relPnpApiPath = "../../../../.pnp.js";
7+
const relPnpApiPath = "../../../../.pnp.cjs";
88

99
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1010
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);

.yarn/sdks/stylelint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stylelint",
3-
"version": "13.8.0-pnpify",
3+
"version": "13.13.1-sdk",
44
"main": "lib/index.js",
55
"type": "commonjs"
66
}

0 commit comments

Comments
 (0)