-
Notifications
You must be signed in to change notification settings - Fork 809
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:surveyjs/survey-library into bug/…
…6205-popup-height-after-filtering
- Loading branch information
Showing
335 changed files
with
9,262 additions
and
383 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
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
"use strict"; | ||
|
||
const webpackCommonConfigCreator = require("../webpack.common"); | ||
const { merge } = require("webpack-merge"); | ||
var FixStyleOnlyEntriesPlugin = require("webpack-fix-style-only-entries"); | ||
var path = require("path"); | ||
|
||
const config = { | ||
entry: { | ||
"default-light": path.resolve(__dirname, "../../src/themes/default-light.ts"), | ||
"default-dark": path.resolve(__dirname, "../../src/themes/default-dark.ts"), | ||
"default-light-panelless": path.resolve(__dirname, "../../src/themes/default-light-panelless.ts"), | ||
"default-dark-panelless": path.resolve(__dirname, "../../src/themes/default-dark-panelless.ts"), | ||
"sharp-light": path.resolve(__dirname, "../../src/themes/sharp-light.ts"), | ||
"sharp-dark": path.resolve(__dirname, "../../src/themes/sharp-dark.ts"), | ||
"sharp-light-panelless": path.resolve(__dirname, "../../src/themes/sharp-light-panelless.ts"), | ||
"sharp-dark-panelless": path.resolve(__dirname, "../../src/themes/sharp-dark-panelless.ts"), | ||
"borderless-light": path.resolve(__dirname, "../../src/themes/borderless-light.ts"), | ||
"borderless-dark": path.resolve(__dirname, "../../src/themes/borderless-dark.ts"), | ||
"borderless-light-panelless.": path.resolve(__dirname, "../../src/themes/borderless-light-panelless.ts"), | ||
"borderless-dark-panelless": path.resolve(__dirname, "../../src/themes/borderless-dark-panelless.ts"), | ||
"flat-light": path.resolve(__dirname, "../../src/themes/flat-light.ts"), | ||
"flat-dark": path.resolve(__dirname, "../../src/themes/flat-dark.ts"), | ||
"flat-light-panelless": path.resolve(__dirname, "../../src/themes/flat-light-panelless.ts"), | ||
"flat-dark-panelless": path.resolve(__dirname, "../../src/themes/flat-dark-panelless.ts"), | ||
"plain-light": path.resolve(__dirname, "../../src/themes/plain-light.ts"), | ||
"plain-dark": path.resolve(__dirname, "../../src/themes/plain-dark.ts"), | ||
"plain-light-panelless": path.resolve(__dirname, "../../src/themes/plain-light-panelless.ts"), | ||
"plain-dark-panelless": path.resolve(__dirname, "../../src/themes/plain-dark-panelless.ts"), | ||
"doubleborder-light": path.resolve(__dirname, "../../src/themes/doubleborder-light.ts"), | ||
"doubleborder-dark": path.resolve(__dirname, "../../src/themes/doubleborder-dark.ts"), | ||
"doubleborder-light-panelles": path.resolve(__dirname, "../../src/themes/doubleborder-light-panelless.ts"), | ||
"doubleborder-dark-panelless": path.resolve(__dirname, "../../src/themes/doubleborder-dark-panelless.ts"), | ||
"layered-light": path.resolve(__dirname, "../../src/themes/layered-light.ts"), | ||
"layered-dark": path.resolve(__dirname, "../../src/themes/layered-dark.ts"), | ||
"layered-light-panelless": path.resolve(__dirname, "../../src/themes/layered-light-panelless.ts"), | ||
"layered-dark-panelless": path.resolve(__dirname, "../../src/themes/layered-dark-panelless.ts"), | ||
"solid-light": path.resolve(__dirname, "../../src/themes/solid-light.ts"), | ||
"solid-dark": path.resolve(__dirname, "../../src/themes/solid-dark.ts"), | ||
"solid-light-panelless": path.resolve(__dirname, "../../src/themes/solid-light-panelless.ts"), | ||
"solid-dark-panelless": path.resolve(__dirname, "../../src/themes/solid-dark-panelless.ts"), | ||
"three-dimensional-light": path.resolve(__dirname, "../../src/themes/threedimensional-light.ts"), | ||
"three-dimensional-dark": path.resolve(__dirname, "../../src/themes/threedimensional-dark.ts"), | ||
"three-dimensional-light-panelless": path.resolve(__dirname, "../../src/themes/threedimensional-light-panelless.ts"), | ||
"three-dimensional-dark-panelless": path.resolve(__dirname, "../../src/themes/threedimensional-dark-panelless.ts"), | ||
"contrast-light": path.resolve(__dirname, "../../src/themes/contrast-light.ts"), | ||
"contrast-dark": path.resolve(__dirname, "../../src/themes/contrast-dark.ts"), | ||
"contrast-light-panelless": path.resolve(__dirname, "../../src/themes/contrast-light-panelless.ts"), | ||
"contrast-dark-panelless": path.resolve(__dirname, "../../src/themes/contrast-dark-panelless.ts"), | ||
"index": path.resolve(__dirname, "../../src/themes/index.ts"), | ||
}, | ||
plugins: [new FixStyleOnlyEntriesPlugin()], | ||
}; | ||
|
||
module.exports = function (options) { | ||
options.platform = ""; | ||
options.libraryName = "SurveyTheme"; | ||
return merge(webpackCommonConfigCreator(options, { "name": "survey-themes" }, "survey.themes", "survey-core/themes"), config); | ||
}; |
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
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
Oops, something went wrong.