-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #861 from DNNCommunity/release/0.22.0
Merged `release/0.22.0` into `main` to release `v0.22.0`
- Loading branch information
Showing
28 changed files
with
24,811 additions
and
31,986 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "7.0.302", | ||
"version": "7.0.400-preview.23330.10", | ||
"rollForward": "latestMajor" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"useWorkspaces": true, | ||
"version": "0.0.0" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
import type { StorybookConfig } from "@storybook/web-components-webpack5"; | ||
|
||
const config: StorybookConfig = { | ||
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], | ||
addons: [ | ||
"@storybook/addon-links", | ||
"@storybook/addon-essentials", | ||
"@storybook/addon-actions", | ||
"@storybook/addon-a11y", | ||
{ | ||
name: "@storybook/addon-docs", | ||
options: { | ||
configureJSX: true, | ||
babelOptions: {}, | ||
sourceLoaderOptions: null, | ||
transcludeMarkdown: true, | ||
}, | ||
}, | ||
], | ||
framework: { | ||
name: "@storybook/web-components-webpack5", | ||
options: {}, | ||
}, | ||
staticDirs: [{ from: './assets', to: '/assets'}], | ||
docs: { | ||
autodocs: "tag", | ||
}, | ||
}; | ||
export default config; | ||
import { dirname, join } from "path"; | ||
import type { StorybookConfig } from "@storybook/web-components-webpack5"; | ||
|
||
const config: StorybookConfig = { | ||
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], | ||
addons: [ | ||
getAbsolutePath("@storybook/addon-links"), | ||
getAbsolutePath("@storybook/addon-essentials"), | ||
getAbsolutePath("@storybook/addon-actions"), | ||
getAbsolutePath("@storybook/addon-a11y"), | ||
{ | ||
name: "@storybook/addon-docs", | ||
options: { | ||
configureJSX: true, | ||
babelOptions: {}, | ||
sourceLoaderOptions: null, | ||
transcludeMarkdown: true, | ||
}, | ||
}, | ||
], | ||
framework: { | ||
name: getAbsolutePath("@storybook/web-components-webpack5"), | ||
options: {}, | ||
}, | ||
staticDirs: [{ from: './assets', to: '/assets'}], | ||
docs: { | ||
autodocs: "tag", | ||
}, | ||
}; | ||
export default config; | ||
|
||
function getAbsolutePath(value: string): any { | ||
return dirname(require.resolve(join(value, "package.json"))); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,12 @@ | |
"path": "node_modules\\@stencil\\eslint-plugin", | ||
"licenseFile": "node_modules\\@stencil\\eslint-plugin\\LICENSE.md" | ||
}, | ||
"@typescript-eslint/[email protected]": { | ||
"licenses": "BSD-2-Clause", | ||
"repository": "https://github.com/typescript-eslint/typescript-eslint", | ||
"path": "node_modules\\@typescript-eslint\\parser", | ||
"licenseFile": "node_modules\\@typescript-eslint\\parser\\LICENSE" | ||
}, | ||
"[email protected]": { | ||
"licenses": "MIT", | ||
"repository": "https://github.com/eslint/eslint", | ||
|
Oops, something went wrong.