iguazio.dashboard-controls 1.1.1 → 1.2.0
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/dist/i18n/en/common.json +5 -1
- package/dist/i18n/en/functions.json +1 -0
- package/dist/js/iguazio.dashboard-controls.js +1375 -1346
- package/dist/less/iguazio.dashboard-controls.less +552 -532
- package/package.json +1 -1
- package/src/i18n/en/common.json +5 -1
- package/src/i18n/en/functions.json +1 -0
- package/src/igz_controls/components/date-time-picker/date-time-picker.component.js +6 -0
- package/src/igz_controls/components/info-page/info-page-filters/info-page-filters.component.js +1 -0
- package/src/igz_controls/components/info-page/info-page-filters/info-page-filters.tpl.html +1 -1
- package/src/igz_controls/components/multiple-checkboxes/multiple-checkboxes.component.js +2 -0
- package/src/igz_controls/components/multiple-checkboxes/multiple-checkboxes.less +4 -0
- package/src/igz_controls/components/multiple-checkboxes/multiple-checkboxes.tpl.html +5 -2
- package/src/nuclio/functions/version/version-execution-log/version-execution-log.component.js +14 -11
- package/src/nuclio/functions/version/version-execution-log/version-execution-log.less +12 -0
- package/src/nuclio/functions/version/version-execution-log/version-execution-log.tpl.html +3 -2
- package/src/nuclio/functions/version/version-triggers/version-triggers.component.js +11 -3
- package/src/nuclio/functions/version/version-triggers/version-triggers.less +4 -0
- package/src/nuclio/functions/version/version-triggers/version-triggers.tpl.html +16 -0
package/dist/i18n/en/common.json
CHANGED
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
"DO_NOT_SHOW_AGAIN": "Do not show again",
|
|
108
108
|
"DOCS": "Docs",
|
|
109
109
|
"DONE": "Done",
|
|
110
|
+
"DO_NOT_CREATE_HTTP_TRIGGER_BY_DEFAULT": "Do not create http trigger by default",
|
|
110
111
|
"DONT_LEAVE": "Don't leave",
|
|
111
112
|
"DONT_REFRESH": "Don't refresh",
|
|
112
113
|
"DONT_SAVE": "Don't save",
|
|
@@ -223,6 +224,7 @@
|
|
|
223
224
|
"ESCALATION": "Escalation",
|
|
224
225
|
"EVENT_LOG": "Event log",
|
|
225
226
|
"EVENTS": "Events",
|
|
227
|
+
"EVERY": "Every",
|
|
226
228
|
"EXPONENT_IS_INVALID": "Exponent is invalid",
|
|
227
229
|
"EXPORT": "Export",
|
|
228
230
|
"EXTERNAL": "External",
|
|
@@ -455,6 +457,7 @@
|
|
|
455
457
|
"SCANNED_ITEMS": "Scanned Items",
|
|
456
458
|
"SCHEDULE": "Schedule",
|
|
457
459
|
"SECONDS": "Seconds",
|
|
460
|
+
"SELECT_ALL": "Select all",
|
|
458
461
|
"SELECT_RANGE": "Select range",
|
|
459
462
|
"SEND": "Send",
|
|
460
463
|
"SERVER_UNREACHABLE_ALERT": "Server unreachable. Try refreshing the page.",
|
|
@@ -561,4 +564,5 @@
|
|
|
561
564
|
"WRITE_PROTECT": "Write-Protect",
|
|
562
565
|
"YES": "Yes",
|
|
563
566
|
"YES_CHANGE": "Yes, change",
|
|
564
|
-
"YES_DELETE": "Yes, delete"
|
|
567
|
+
"YES_DELETE": "Yes, delete"
|
|
568
|
+
}
|
|
@@ -325,6 +325,7 @@
|
|
|
325
325
|
"DEPLOY_IN_PROGRESS": "Deploy is already in-progress.",
|
|
326
326
|
"DISABLE_CACHE": "Build the function's Docker image from scratch without reusing any previously built Docker image layers.",
|
|
327
327
|
"DISABLED_FUNCTION": "Only running and scaled-to-zero functions can be tested.",
|
|
328
|
+
"DO_NOT_CREATE_HTTP_TRIGGER_BY_DEFAULT": "When not checked, an http trigger will be created for the function by default.",
|
|
328
329
|
"GIT": {
|
|
329
330
|
"BRANCH": "The Git repository branch from which to download the function code.",
|
|
330
331
|
"BRANCH_TAG_REFERENCE_DISABLED": "Exactly one of Branch, Tag, and Reference fields must be filled. When one is filled, the others are disabled.",
|