aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/components
AgeCommit message (Expand)AuthorFilesLines
2023-01-25Implement hiding mechanismvasraz1-1/+0
2022-11-30View data types in UI catalogKrupaNagabhushan1-5/+0
2022-06-11Fix component workspace metadata not being setandre.schmid1-0/+5
2021-11-15Fix archive and restore actionsaribeiro1-3/+3
2021-10-21Make Service base type optionalandre.schmid1-0/+4
2021-08-20Select a Model when Importing a VSPandre.schmid1-0/+3
2021-08-12Update base types based on modelMichaelMorris1-1/+1
2021-08-06Retrieve data types based on component modelaribeiro1-0/+1
2021-07-15Specify model at service creationaribeiro1-0/+2
2021-03-24Enable selection of base type of servicevasraz1-0/+5
2021-03-16Fix Security Vulnerabilitiesaribeiro1-1/+1
2021-01-12Support for category specific metadataMichaelMorris1-0/+31
2020-09-21Support for Test Topology Auto Design- Service Importzhaoxiangjun6662-2/+46
2020-09-04Support for Nested/Hierarchical ServicesMichaelMorris1-1/+1
2020-01-22Catalog alignmentys96933-602/+59
2018-07-29re base codeMichael Lando4-58/+103
2018-05-01Interface Operation tab and screensArielk1-1/+3
2018-03-07Sync Integ to MasterMichael Lando4-17/+130
2017-12-10Final commit to master merge fromTal Gitelman1-6/+64
2017-09-13ComponentBaseTest.java enhancement andIdan Amit1-0/+3
2017-07-18[SDC] rebase 1710Michael Lando2-21/+23
2017-07-17[SDC] rebase 1710 codeMichael Lando5-135/+11
2017-07-12[sdc] rebase updateMichael Lando5-2/+82
2017-06-11[SDC-29] rebase continue work to align sourceMichael Lando1-2/+14
2017-06-09[SDC-29] catalog 1707 rebase commit.Michael Lando5-0/+1434
>: [{ loader: "babel-loader" }] }] }, optimization: { noEmitOnErrors: true, namedModules: env !== "release", minimize: env === "release", minimizer: env !== "release" ? [] : [new TerserPlugin({ terserOptions: { warnings: false, // false, true, "verbose" compress: { drop_console: true, drop_debugger: true, } } })], }, plugins: [ new webpack.DllReferencePlugin({ context: path.resolve(__dirname, "../../framework/src"), manifest: require(path.resolve(frameworkPath, "vendor-manifest.json")), sourceType: "umd2" }), new webpack.DllReferencePlugin({ context: path.resolve(__dirname, "../../framework/src"), manifest: require(path.resolve(frameworkPath, "app-manifest.json")), sourceType: "umd2" }), ...(env === "release" ? [ new webpack.DefinePlugin({ "process.env": { NODE_ENV: "'production'", VERSION: JSON.stringify(require("./package.json").version) } }), ] : [ new webpack.DefinePlugin({ "process.env": { NODE_ENV: "'development'", VERSION: JSON.stringify(require("./package.json").version) } }), new CopyWebpackPlugin([{ from: 'index.html', to: distPath }]), ]) ], devServer: { public: "http://localhost:3100", contentBase: frameworkPath, compress: true, headers: { "Access-Control-Allow-Origin": "*" }, host: "0.0.0.0", port: 3100, disableHostCheck: true, historyApiFallback: true, inline: true, hot: false, quiet: false, stats: { colors: true }, proxy: { "/oauth2/": { target: "http://10.20.6.29:48181", secure: false }, "/database/": { target: "http://10.20.6.29:48181", secure: false }, "/restconf/": { target: "http://10.20.6.29:48181", secure: false }, "/rests/": { target: "http://10.20.6.29:48181", secure: false }, "/help/": { target: "http://10.20.6.29:48181", secure: false }, "/websocket": { target: "http://10.20.6.29:48181", ws: true, changeOrigin: true, secure: false } } } }]; }