iguazio.dashboard-controls 0.37.16 → 0.37.20
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 +1 -0
- package/dist/i18n/en/functions.json +2 -3
- package/dist/js/iguazio.dashboard-controls.js +3943 -3900
- package/dist/less/iguazio.dashboard-controls.less +864 -863
- package/package.json +1 -1
- package/src/i18n/en/common.json +1 -0
- package/src/i18n/en/functions.json +2 -3
- package/src/igz_controls/components/size/size.component.js +30 -8
- package/src/igz_controls/components/size/size.less +1 -0
- package/src/igz_controls/directives/resizable-table-column.directive.js +1 -5
- package/src/igz_controls/services/table-size.service.js +13 -9
- package/src/igz_controls/services/validation.service.js +10 -19
- package/src/nuclio/functions/function-collapsing-row/function-collapsing-row.component.js +2 -0
- package/src/nuclio/functions/function-collapsing-row/function-collapsing-row.tpl.html +14 -0
- package/src/nuclio/functions/function-collapsing-row/function-version-row/function-version-row.component.js +1 -0
- package/src/nuclio/functions/function-collapsing-row/function-version-row/function-version-row.tpl.html +13 -0
- package/src/nuclio/functions/functions.component.js +22 -0
- package/src/nuclio/functions/functions.service.js +1 -0
- package/src/nuclio/functions/functions.tpl.html +7 -0
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-annotations/version-configuration-annotations.component.js +1 -1
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-environment-variables/version-configuration-environment-variables.tpl.html +1 -1
- package/src/nuclio/functions/version/version.component.js +47 -40
package/dist/i18n/en/common.json
CHANGED
|
@@ -88,7 +88,6 @@
|
|
|
88
88
|
"EDIT_PROJECT": "Edit Project",
|
|
89
89
|
"ENDPOINT": "Endpoint",
|
|
90
90
|
"ENTER_HOST_TO_SEE_ENDPOINT": "Enter host to see endpoint",
|
|
91
|
-
"ENVIRONMENT_VARIABLES": "Environment Variables",
|
|
92
91
|
"ERROR_MSG": {
|
|
93
92
|
"COULD_NOT_READ_FILE": "Could not read file...",
|
|
94
93
|
"CREATE_FUNCTION_EVENT": "Error occurred while creating the new function event.",
|
|
@@ -182,8 +181,7 @@
|
|
|
182
181
|
"NO_LOGS_HAVE_BEEN_FOUND": "No logs have been found...",
|
|
183
182
|
"NODE_SELECTORS": "Node selector",
|
|
184
183
|
"NORMAL": "Normal",
|
|
185
|
-
"
|
|
186
|
-
"NOT_START_WITH_FORBIDDEN_WORDS_LABEL": "Must not start with 'kubernetes.io', 'k8s.io' or 'nuclio.io'",
|
|
184
|
+
"NOT_START_WITH_FORBIDDEN_WORDS": "Must not start with 'kubernetes.io', 'k8s.io'",
|
|
187
185
|
"NOT_YET_DEPLOYED": "Not yet deployed",
|
|
188
186
|
"OAUTH2": "OAuth2",
|
|
189
187
|
"ONBUILD_IMAGE": "Onbuild image",
|
|
@@ -378,6 +376,7 @@
|
|
|
378
376
|
"UNSPECIFIED_FIELD_NAME": "Unspecified field name",
|
|
379
377
|
"URL_NOT_EXPOSED": "URL not exposed",
|
|
380
378
|
"V3IO": "V3IO",
|
|
379
|
+
"V3IO_INVALID_REPLICAS_MSG": "V3io_stream trigger requires min and max replicas to be the same",
|
|
381
380
|
"VIEW_YAML": "View YAML",
|
|
382
381
|
"VOLUMES": "Volumes",
|
|
383
382
|
"ALWAYS_WAIT_FOR_READINESS_TIMEOUT_EXPIRATION": "Always wait for readiness-timeout expiration",
|