feat(editor): Add most important native props and methods to autocomplete (#5486)
* ⚡ Implemented support for documentation links in autocomplete tooltips * ⚡ Added support for arguments and code stying in autocomplete documentation. Added build-in string functions docs. * ⚡ Added support for args without types in autocomplete, Added array native functions. * ⚡ Added native Number and Object methods to autocomplete * ⚡ Added support for native properties in autocomplete * 📚 Added comment for next phase * ✔️ Updating tests to account for native autocomplete options. Fixing lint errros. * 👌 Addressing design review comments * 🎨 Using design-system tokens instead of colors for autocomplete
This commit is contained in:
committed by
GitHub
parent
af703371fc
commit
6592d144d1
28
packages/workflow/src/NativeMethods/Number.methods.ts
Normal file
28
packages/workflow/src/NativeMethods/Number.methods.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import type { NativeDoc } from '@/Extensions/Extensions';
|
||||
|
||||
export const numberMethods: NativeDoc = {
|
||||
typeName: 'Number',
|
||||
functions: {
|
||||
toFixed: {
|
||||
doc: {
|
||||
name: 'toFixed',
|
||||
description:
|
||||
'Formats a number using fixed-point notation. `digits` defaults to null if not given.',
|
||||
docURL:
|
||||
'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed',
|
||||
returnType: 'string',
|
||||
args: [{ name: 'digits?', type: 'number' }],
|
||||
},
|
||||
},
|
||||
toPrecision: {
|
||||
doc: {
|
||||
name: 'toPrecision',
|
||||
description: 'Returns a string representing the number to the specified precision.',
|
||||
docURL:
|
||||
'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision',
|
||||
returnType: 'string',
|
||||
args: [{ name: 'precision?', type: 'number' }],
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user