@backstage/plugin-scaffolder 1.6.0-next.2 → 1.6.0-next.3
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/CHANGELOG.md +20 -0
- package/alpha/package.json +1 -1
- package/dist/esm/{Router-72bec8f5.esm.js → Router-7a18bcf2.esm.js} +3 -3
- package/dist/esm/{Router-72bec8f5.esm.js.map → Router-7a18bcf2.esm.js.map} +1 -1
- package/dist/esm/{default-7c2e7b25.esm.js → default-77c6fe10.esm.js} +2 -2
- package/dist/esm/{default-7c2e7b25.esm.js.map → default-77c6fe10.esm.js.map} +1 -1
- package/dist/esm/{index-6ab5f5ce.esm.js → index-3b8e3839.esm.js} +39 -18
- package/dist/esm/index-3b8e3839.esm.js.map +1 -0
- package/dist/esm/{index-5eebaa47.esm.js → index-d3042a6f.esm.js} +3 -3
- package/dist/esm/{index-5eebaa47.esm.js.map → index-d3042a6f.esm.js.map} +1 -1
- package/dist/index.alpha.d.ts +2 -0
- package/dist/index.beta.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/package.json +18 -19
- package/dist/esm/index-6ab5f5ce.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.6.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7d47def9c4: Removed dependency on `@types/jest`.
|
|
8
|
+
- 6522e459aa: Support displaying and ordering by counts in `EntityTagPicker` field. Add the `showCounts` option to enable this. Also support configuring `helperText`.
|
|
9
|
+
- f0510a20b5: Addition of a dismissible Error Banner in Scaffolder page
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/plugin-catalog-react@1.1.4-next.2
|
|
12
|
+
- @backstage/catalog-client@1.1.0-next.2
|
|
13
|
+
- @backstage/catalog-model@1.1.1-next.0
|
|
14
|
+
- @backstage/config@1.0.2-next.0
|
|
15
|
+
- @backstage/core-components@0.11.1-next.3
|
|
16
|
+
- @backstage/core-plugin-api@1.0.6-next.3
|
|
17
|
+
- @backstage/errors@1.1.1-next.0
|
|
18
|
+
- @backstage/integration@1.3.1-next.2
|
|
19
|
+
- @backstage/integration-react@1.1.4-next.2
|
|
20
|
+
- @backstage/plugin-permission-react@0.4.5-next.2
|
|
21
|
+
- @backstage/plugin-scaffolder-common@1.2.0-next.1
|
|
22
|
+
|
|
3
23
|
## 1.6.0-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/alpha/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import { useNavigate, Navigate, useOutlet, Routes, Route } from 'react-router';
|
|
|
3
3
|
import { ItemCardHeader, MarkdownContent, Button, ContentHeader, Progress, WarningPanel, Link as Link$1, Content, ItemCardGrid, Page, Header, CreateButton, SupportButton, StructuredMetadataTable, InfoCard, ErrorPage, ErrorPanel, LogViewer, StatusError, StatusOK, StatusPending, Lifecycle, EmptyState, Table as Table$1 } from '@backstage/core-components';
|
|
4
4
|
import { useRouteRef, useApi, errorApiRef, featureFlagsApiRef, useApiHolder, useRouteRefParams, alertApiRef, useElementFilter } from '@backstage/core-plugin-api';
|
|
5
5
|
import { getEntityRelations, getEntitySourceLocation, FavoriteEntity, EntityRefLinks, useEntityList, EntityListProvider, CatalogFilterLayout, EntitySearchBar, EntityKindPicker, UserListPicker, EntityTagPicker, catalogApiRef, humanizeEntityRef, EntityRefLink } from '@backstage/plugin-catalog-react';
|
|
6
|
-
import { s as selectedTemplateRouteRef, e as editRouteRef, a as actionsRouteRef, b as scaffolderListTaskRouteRef, r as registerComponentRouteRef, T as TemplateTypePicker, S as SecretsContext, c as scaffolderApiRef, d as scaffolderTaskRouteRef, f as rootRouteRef, g as TaskStatusStepper, h as TaskPageLinks, F as FIELD_EXTENSION_WRAPPER_KEY, i as FIELD_EXTENSION_KEY, l as legacySelectedTemplateRouteRef, j as SecretsContextProvider, k as TaskPage } from './index-
|
|
6
|
+
import { s as selectedTemplateRouteRef, e as editRouteRef, a as actionsRouteRef, b as scaffolderListTaskRouteRef, r as registerComponentRouteRef, T as TemplateTypePicker, S as SecretsContext, c as scaffolderApiRef, d as scaffolderTaskRouteRef, f as rootRouteRef, g as TaskStatusStepper, h as TaskPageLinks, F as FIELD_EXTENSION_WRAPPER_KEY, i as FIELD_EXTENSION_KEY, l as legacySelectedTemplateRouteRef, j as SecretsContextProvider, k as TaskPage } from './index-3b8e3839.esm.js';
|
|
7
7
|
import { RELATION_OWNED_BY, parseEntityRef, stringifyEntityRef } from '@backstage/catalog-model';
|
|
8
8
|
import { makeStyles, useTheme, Card, CardMedia, CardContent, Box, Typography, Chip, CardActions, IconButton, Tooltip, Link, Stepper, Step, StepLabel, StepContent, Button as Button$1, Paper, LinearProgress, TableContainer, Table, TableHead, TableRow, TableCell, TableBody, Divider as Divider$1, FormControl, InputLabel, Select, MenuItem as MenuItem$1, List as List$2, ListItemIcon as ListItemIcon$1, ListItemText as ListItemText$1 } from '@material-ui/core';
|
|
9
9
|
import { scmIntegrationsApiRef, ScmIntegrationIcon } from '@backstage/integration-react';
|
|
@@ -65,7 +65,7 @@ import SettingsIcon from '@material-ui/icons/Settings';
|
|
|
65
65
|
import AllIcon from '@material-ui/icons/FontDownload';
|
|
66
66
|
import { DateTime, Interval } from 'luxon';
|
|
67
67
|
import humanizeDuration from 'humanize-duration';
|
|
68
|
-
import { D as DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS } from './default-
|
|
68
|
+
import { D as DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS } from './default-77c6fe10.esm.js';
|
|
69
69
|
import '@backstage/errors';
|
|
70
70
|
import 'zen-observable';
|
|
71
71
|
import '@material-ui/core/FormControl';
|
|
@@ -2513,4 +2513,4 @@ const Router = (props) => {
|
|
|
2513
2513
|
};
|
|
2514
2514
|
|
|
2515
2515
|
export { Router };
|
|
2516
|
-
//# sourceMappingURL=Router-
|
|
2516
|
+
//# sourceMappingURL=Router-7a18bcf2.esm.js.map
|