Skip to content

Commit

Permalink
⚡ Deprecate step size and node color (n8n-io#2586)
Browse files Browse the repository at this point in the history
* 🔥 Deprecate numberStepSize

* 🔥 Deprecate color in non-FA nodes

* ⚡ Minor node name fixes

* 📦 Update package-lock.json

* ⏪ Restore Merge node color

* 👕 Fix lint
  • Loading branch information
ivov authored Dec 23, 2021
1 parent 0ce26d4 commit 2b74b62
Show file tree
Hide file tree
Showing 302 changed files with 167 additions and 446 deletions.
268 changes: 150 additions & 118 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/editor-ui/src/components/ParameterInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
:max="getArgument('maxValue')"
:min="getArgument('minValue')"
:precision="getArgument('numberPrecision')"
:step="getArgument('numberStepSize')"
:disabled="isReadOnly"
@change="valueChanged"
@input="onTextInputChange"
Expand Down
1 change: 0 additions & 1 deletion packages/node-dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ All properties are optional. However, most only work when the node-property is o
- **multipleValues** [type: all]: If set the property gets turned into an Array and the user can add multiple values
- **multipleValueButtonText** [type: all]: Custom text for add button in case "multipleValues" got set
- **numberPrecision** [type: number]: The precision of the number. By default it is "0" and will so only allow integers.
- **numberStepSize** [type: number]: If step size in the UI if "numberPrecision" got set
- **password** [type: string]: If a password field should be displayed (normally only used by credentials because all node data is not encrypted and get saved in clear-text)
- **rows** [type: string]: Number of rows the input field should have. By default it is "1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export class ActionNetwork implements INodeType {
description: 'Consume the Action Network API',
defaults: {
name: 'Action Network',
color: '#9dd3ed',
},
inputs: ['main'],
outputs: ['main'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ export class ActiveCampaign implements INodeType {
description: 'Create and edit data in ActiveCampaign',
defaults: {
name: 'ActiveCampaign',
color: '#356ae6',
},
inputs: ['main'],
outputs: ['main'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export class ActiveCampaignTrigger implements INodeType {
description: 'Handle ActiveCampaign events via webhooks',
defaults: {
name: 'ActiveCampaign Trigger',
color: '#356ae6',
},
inputs: [],
outputs: ['main'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export class AcuitySchedulingTrigger implements INodeType {
description: 'Handle Acuity Scheduling events via webhooks',
defaults: {
name: 'Acuity Scheduling Trigger',
color: '#000000',
},
inputs: [],
outputs: ['main'],
Expand Down
1 change: 0 additions & 1 deletion packages/nodes-base/nodes/Affinity/Affinity.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export class Affinity implements INodeType {
description: 'Consume Affinity API',
defaults: {
name: 'Affinity',
color: '#3343df',
},
inputs: ['main'],
outputs: ['main'],
Expand Down
Loading

0 comments on commit 2b74b62

Please sign in to comment.