mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 09:48:18 -05:00
chore!: set required node version (#969)
* chore!: set required node version * chore: update parcel
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"hardReloadOnChange": true,
|
||||
"node": "12"
|
||||
"node": "16"
|
||||
}
|
||||
|
||||
@@ -727,7 +727,7 @@
|
||||
"params": [
|
||||
{
|
||||
"name": "fieldIdentifier",
|
||||
"description": "Fieldname as a string or a Library dimension",
|
||||
"description": "Fieldname as a string, a Library dimension or an object id",
|
||||
"kind": "union",
|
||||
"items": [
|
||||
{
|
||||
@@ -735,6 +735,9 @@
|
||||
},
|
||||
{
|
||||
"type": "#/definitions/LibraryField"
|
||||
},
|
||||
{
|
||||
"type": "#/definitions/QInfo"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -979,6 +982,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"QInfo": {
|
||||
"kind": "interface",
|
||||
"entries": {
|
||||
"qId": {
|
||||
"description": "Generic object id",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Viz": {
|
||||
"description": "A controller to further modify a visualization after it has been rendered.",
|
||||
"kind": "class",
|
||||
|
||||
8
apis/stardust/types/index.d.ts
vendored
8
apis/stardust/types/index.d.ts
vendored
@@ -232,9 +232,9 @@ declare namespace stardust {
|
||||
|
||||
/**
|
||||
* Gets the listbox instance of the specified field
|
||||
* @param fieldIdentifier Fieldname as a string or a Library dimension
|
||||
* @param fieldIdentifier Fieldname as a string, a Library dimension or an object id
|
||||
*/
|
||||
field(fieldIdentifier: string | stardust.LibraryField): Promise<stardust.FieldInstance>;
|
||||
field(fieldIdentifier: string | stardust.LibraryField | stardust.QInfo): Promise<stardust.FieldInstance>;
|
||||
|
||||
/**
|
||||
* Gets a list of registered visualization types and versions
|
||||
@@ -290,6 +290,10 @@ declare namespace stardust {
|
||||
load(): Promise<stardust.ThemeJSON>;
|
||||
}
|
||||
|
||||
interface QInfo {
|
||||
qId: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* A controller to further modify a visualization after it has been rendered.
|
||||
*/
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
"dependencies": {
|
||||
"@nebula.js/stardust": "<%= nebulaVersion %>",
|
||||
"@nebula.js/sn-bar-chart": "^1.x",
|
||||
"@qlik/sdk": "^0.10.2",
|
||||
"@qlik/sdk": "^0.12.0",
|
||||
"enigma.js": "^2.6.3",
|
||||
"parcel": "^2.3.2"
|
||||
"parcel": "^2.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"keywords": ["qlik", "nebula", "stardust"],
|
||||
"files": ["dist"],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=18"
|
||||
},
|
||||
"main": "dist/<%= name %>.js",
|
||||
"module": "dist/<%= name %>.esm.js",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"keywords": ["qlik", "nebula", "stardust"],
|
||||
"files": ["dist"],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=18"
|
||||
},
|
||||
"main": "dist/<%= name %>.js",
|
||||
"module": "dist/<%= name %>.esm.js",
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.12.3",
|
||||
"parcel": "^2.3.2"
|
||||
"parcel": "^2.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,6 +14,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.12.3",
|
||||
"parcel": "^2.3.2"
|
||||
"parcel": "^2.7.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user