From c5af71e0a2e36e27f1d0415ed36e26f561bcd2c5 Mon Sep 17 00:00:00 2001 From: Kazuhito Yokoi Date: Thu, 5 May 2022 20:38:55 +0900 Subject: [PATCH] Change icon path from png to svg --- .../editor-client/src/js/ui/editors/json.js | 4 ++-- .../@node-red/nodes/99-sample.html.demo | 2 +- .../@node-red/nodes/core/function/10-switch.html | 14 +++++++------- .../@node-red/nodes/core/network/21-httpin.html | 8 ++++---- .../@node-red/nodes/core/sequence/17-split.html | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js index 48fc8f86a..8531ba2c5 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js @@ -311,8 +311,8 @@ types:[ 'str','num','bool', {value:"null",label:RED._("common.type.null"),hasValue:false}, - {value:"array",label:RED._("common.type.array"),hasValue:false,icon:"red/images/typedInput/json.png"}, - {value:"object",label:RED._("common.type.object"),hasValue:false,icon:"red/images/typedInput/json.png"} + {value:"array",label:RED._("common.type.array"),hasValue:false,icon:"red/images/typedInput/json.svg"}, + {value:"object",label:RED._("common.type.object"),hasValue:false,icon:"red/images/typedInput/json.svg"} ], default: valType }); diff --git a/packages/node_modules/@node-red/nodes/99-sample.html.demo b/packages/node_modules/@node-red/nodes/99-sample.html.demo index 467815f7c..38bbc988e 100644 --- a/packages/node_modules/@node-red/nodes/99-sample.html.demo +++ b/packages/node_modules/@node-red/nodes/99-sample.html.demo @@ -69,7 +69,7 @@ outputs:1, // set the number of outputs - 0 to n color: "#ddd", // set icon color // set the icon (held in icons dir below where you save the node) - icon: "myicon.png", // saved in icons/myicon.png + icon: "myicon.svg", // saved in icons/myicon.svg label: function() { // sets the default label contents return this.name||this.topic||"sample"; }, diff --git a/packages/node_modules/@node-red/nodes/core/function/10-switch.html b/packages/node_modules/@node-red/nodes/core/function/10-switch.html index 3ac3c67ed..ca2ad362f 100644 --- a/packages/node_modules/@node-red/nodes/core/function/10-switch.html +++ b/packages/node_modules/@node-red/nodes/core/function/10-switch.html @@ -146,13 +146,13 @@ function createTypeValueField(row, defaultType){ return $('',{class:"node-input-rule-type-value",type:"text",style:"width: 100%;"}).appendTo(row).typedInput({default:defaultType || 'string',types:[ - {value:"string",label:RED._("common.type.string"),hasValue:false,icon:"red/images/typedInput/az.png"}, - {value:"number",label:RED._("common.type.number"),hasValue:false,icon:"red/images/typedInput/09.png"}, - {value:"boolean",label:RED._("common.type.boolean"),hasValue:false,icon:"red/images/typedInput/bool.png"}, - {value:"array",label:RED._("common.type.array"),hasValue:false,icon:"red/images/typedInput/json.png"}, - {value:"buffer",label:RED._("common.type.buffer"),hasValue:false,icon:"red/images/typedInput/bin.png"}, - {value:"object",label:RED._("common.type.object"),hasValue:false,icon:"red/images/typedInput/json.png"}, - {value:"json",label:RED._("common.type.jsonString"),hasValue:false,icon:"red/images/typedInput/json.png"}, + {value:"string",label:RED._("common.type.string"),hasValue:false,icon:"red/images/typedInput/az.svg"}, + {value:"number",label:RED._("common.type.number"),hasValue:false,icon:"red/images/typedInput/09.svg"}, + {value:"boolean",label:RED._("common.type.boolean"),hasValue:false,icon:"red/images/typedInput/bool.svg"}, + {value:"array",label:RED._("common.type.array"),hasValue:false,icon:"red/images/typedInput/json.svg"}, + {value:"buffer",label:RED._("common.type.buffer"),hasValue:false,icon:"red/images/typedInput/bin.svg"}, + {value:"object",label:RED._("common.type.object"),hasValue:false,icon:"red/images/typedInput/json.svg"}, + {value:"json",label:RED._("common.type.jsonString"),hasValue:false,icon:"red/images/typedInput/json.svg"}, {value:"undefined",label:RED._("common.type.undefined"),hasValue:false}, {value:"null",label:RED._("common.type.null"),hasValue:false} ]}); diff --git a/packages/node_modules/@node-red/nodes/core/network/21-httpin.html b/packages/node_modules/@node-red/nodes/core/network/21-httpin.html index 917361845..ce2f81e12 100644 --- a/packages/node_modules/@node-red/nodes/core/network/21-httpin.html +++ b/packages/node_modules/@node-red/nodes/core/network/21-httpin.html @@ -129,7 +129,7 @@ var headerTypes = [ {value:"content-type",label:"Content-Type",hasValue: false}, {value:"location",label:"Location",hasValue: false}, - {value:"other",label:RED._("node-red:httpin.label.other"),icon:"red/images/typedInput/az.png"} + {value:"other",label:RED._("node-red:httpin.label.other"),icon:"red/images/typedInput/az.svg"} ] var contentTypes = [ {value:"application/json",label:"application/json",hasValue: false}, @@ -139,7 +139,7 @@ {value:"text/plain",label:"text/plain",hasValue: false}, {value:"image/gif",label:"image/gif",hasValue: false}, {value:"image/png",label:"image/png",hasValue: false}, - {value:"other",label:RED._("node-red:httpin.label.other"),icon:"red/images/typedInput/az.png"} + {value:"other",label:RED._("node-red:httpin.label.other"),icon:"red/images/typedInput/az.svg"} ]; RED.nodes.registerType('http response',{ @@ -180,7 +180,7 @@ var propertyValue = $('',{class:"node-input-header-value",type:"text",style:"width: 100%"}) .appendTo(propertyValueCell) .typedInput({types: - header.h === 'content-type'?contentTypes:[{value:"other",label:"other",icon:"red/images/typedInput/az.png"}] + header.h === 'content-type'?contentTypes:[{value:"other",label:"other",icon:"red/images/typedInput/az.svg"}] }); var matchedType = headerTypes.filter(function(ht) { @@ -223,7 +223,7 @@ if (type === 'content-type') { propertyValue.typedInput('types',contentTypes); } else { - propertyValue.typedInput('types',[{value:"other",label:"other",icon:"red/images/typedInput/az.png"}]); + propertyValue.typedInput('types',[{value:"other",label:"other",icon:"red/images/typedInput/az.svg"}]); } }); }, diff --git a/packages/node_modules/@node-red/nodes/core/sequence/17-split.html b/packages/node_modules/@node-red/nodes/core/sequence/17-split.html index 270bd0e80..9862d4492 100644 --- a/packages/node_modules/@node-red/nodes/core/sequence/17-split.html +++ b/packages/node_modules/@node-red/nodes/core/sequence/17-split.html @@ -247,7 +247,7 @@ var jsonata_or_empty = { value: "jsonata", label: "expression", - icon: "red/images/typedInput/expr.png", + icon: "red/images/typedInput/expr.svg", validate: function(v) { try{ if(v !== "") {