iguazio.dashboard-controls 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +11 -0
- package/.vscode/extensions.json +5 -0
- package/.vscode/settings.json +24 -0
- package/dist/i18n/en/functions.json +4 -1
- package/dist/images/mCSB_buttons.png +0 -0
- package/dist/js/iguazio.dashboard-controls.js +13875 -13824
- package/dist/less/iguazio.dashboard-controls.less +2039 -2039
- package/package.json +1 -1
- package/src/i18n/en/functions.json +4 -1
- package/src/nuclio/common/components/key-value-input/key-value-input.component.js +142 -89
- package/src/nuclio/common/components/key-value-input/key-value-input.tpl.html +18 -9
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-environment-variables/version-configuration-environment-variables.component.js +20 -19
package/.editorconfig
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"editor.formatOnSave": false,
|
|
3
|
+
"[javascript]": {
|
|
4
|
+
"editor.formatOnSave": false,
|
|
5
|
+
"editor.defaultFormatter": null
|
|
6
|
+
},
|
|
7
|
+
"[html]": {
|
|
8
|
+
"editor.formatOnSave": true,
|
|
9
|
+
"editor.defaultFormatter": "vscode.html-language-features"
|
|
10
|
+
},
|
|
11
|
+
"files.associations": {
|
|
12
|
+
"*.tpl.html": "html"
|
|
13
|
+
},
|
|
14
|
+
"html.format.wrapAttributes": "force-aligned",
|
|
15
|
+
"html.format.wrapLineLength": 120,
|
|
16
|
+
"html.format.indentInnerHtml": true,
|
|
17
|
+
"html.format.maxPreserveNewLines": 2,
|
|
18
|
+
"editor.codeActionsOnSave": {
|
|
19
|
+
"source.fixAll.eslint": "always"
|
|
20
|
+
},
|
|
21
|
+
"eslint.validate": [
|
|
22
|
+
"javascript"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -144,6 +144,8 @@
|
|
|
144
144
|
"EXTERNAL_INVOCATION_URLS": "External invocation URLs",
|
|
145
145
|
"EXECUTION_LOG": "Execution log",
|
|
146
146
|
"FAILED_TO_DEPLOY": "Failed to deploy",
|
|
147
|
+
"FIELD_PATH": "Field path",
|
|
148
|
+
"FIELD_REF": "Field ref",
|
|
147
149
|
"FUNCTION_NAME_IS_USED_WARNING": "The function name you specified is already in use. Function names must be unique across projects. Choose a different name.",
|
|
148
150
|
"FUNCTIONS_NOT_FOUND": "There are currently no functions, you can create a function by pressing ‘New Function’",
|
|
149
151
|
"GET_STARTED_WITH_YOUR_PROJECT": "Get started with your project.",
|
|
@@ -228,6 +230,7 @@
|
|
|
228
230
|
"ENTER_DURATION": "E.g. 1h, 30m, 10s",
|
|
229
231
|
"ENTER_ENDPOINT": "Enter endpoint",
|
|
230
232
|
"ENTER_EVENT_BODY": "Enter event body",
|
|
233
|
+
"ENTER_FIELD_PATH": "metadata.labels['mlrun/class']",
|
|
231
234
|
"ENTER_FUNCTION_NAME": "Enter function name",
|
|
232
235
|
"ENTER_IMAGE": "Enter image",
|
|
233
236
|
"ENTER_IMAGE_NAME": "Enter image name",
|
|
@@ -424,4 +427,4 @@
|
|
|
424
427
|
"WORKER_AVAILABILITY_TIMEOUT_MILLISECONDS_DESCRIPTION": "The number of milliseconds to wait for a worker if one is not available.\n(default: {{default}})",
|
|
425
428
|
"YES_REVERT_CONFIRM": "Yes, revert",
|
|
426
429
|
"YOU_CAN_DOWNLOAD_RESPONSE_BODY": "You can download response body"
|
|
427
|
-
}
|
|
430
|
+
}
|
|
Binary file
|