@backstage/plugin-scaffolder 1.16.0 → 1.16.1
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 +11 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +5 -0
- package/dist/alpha.esm.js +3 -3
- package/dist/esm/{DryRunResults-e1570fc4.esm.js → DryRunResults-ac176f6e.esm.js} +2 -2
- package/dist/esm/{DryRunResults-e1570fc4.esm.js.map → DryRunResults-ac176f6e.esm.js.map} +1 -1
- package/dist/esm/{OngoingTask-377f1a3a.esm.js → OngoingTask-1268e13b.esm.js} +3 -3
- package/dist/esm/{OngoingTask-377f1a3a.esm.js.map → OngoingTask-1268e13b.esm.js.map} +1 -1
- package/dist/esm/{Router-71bed7d3.esm.js → Router-19d62c0d.esm.js} +3 -3
- package/dist/esm/{Router-71bed7d3.esm.js.map → Router-19d62c0d.esm.js.map} +1 -1
- package/dist/esm/{index-d04ace27.esm.js → index-b4b12546.esm.js} +10 -7
- package/dist/esm/index-b4b12546.esm.js.map +1 -0
- package/dist/index.esm.js +2 -2
- package/package.json +5 -5
- package/dist/esm/index-d04ace27.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.16.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2c4d57a3ac15: Added `headerOptions` to `TemplateListPage` to optionally override default values.
|
|
8
|
+
Changed `themeId` of TemplateListPage from `website` to `home`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-catalog-react@1.9.1
|
|
11
|
+
- @backstage/plugin-scaffolder-react@1.6.1
|
|
12
|
+
- @backstage/integration-react@1.1.21
|
|
13
|
+
|
|
3
14
|
## 1.16.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
package/dist/alpha.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { LegacyRouter } from './esm/Router-
|
|
2
|
-
export { L as LegacyScaffolderPage } from './esm/OngoingTask-
|
|
1
|
+
export { LegacyRouter } from './esm/Router-19d62c0d.esm.js';
|
|
2
|
+
export { L as LegacyScaffolderPage } from './esm/OngoingTask-1268e13b.esm.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'react-router-dom';
|
|
5
5
|
import '@backstage/core-components';
|
|
@@ -33,7 +33,7 @@ import '@rjsf/material-ui';
|
|
|
33
33
|
import 'lodash/cloneDeep';
|
|
34
34
|
import '@rjsf/validator-ajv8';
|
|
35
35
|
import '@backstage/plugin-scaffolder-react/alpha';
|
|
36
|
-
import './esm/DryRunResults-
|
|
36
|
+
import './esm/DryRunResults-ac176f6e.esm.js';
|
|
37
37
|
import 'classnames';
|
|
38
38
|
import '@material-ui/icons/ExpandMore';
|
|
39
39
|
import '@material-ui/icons/ExpandLess';
|
|
@@ -8,7 +8,7 @@ import ExpandLessIcon from '@material-ui/icons/ExpandLess';
|
|
|
8
8
|
import { useApp, useRouteRef, useApi, useRouteRefParams } from '@backstage/core-plugin-api';
|
|
9
9
|
import { DismissableBanner, Link, Page, Header, Content, ErrorPage, Progress, LogViewer, MarkdownContent, CodeSnippet, StatusError, StatusOK, StatusPending, Lifecycle, ErrorPanel, EmptyState, Table as Table$1 } from '@backstage/core-components';
|
|
10
10
|
import Chip from '@material-ui/core/Chip';
|
|
11
|
-
import { r as rootRouteRef, o as selectedTemplateRouteRef, w as scaffolderTaskRouteRef, y as EntityPicker, z as EntityPickerSchema, A as EntityNamePicker, B as entityNamePickerValidation, C as EntityNamePickerSchema, D as EntityTagsPicker, F as EntityTagsPickerSchema, G as RepoUrlPicker, i as repoPickerValidation, H as RepoUrlPickerSchema, I as OwnerPicker, J as OwnerPickerSchema, K as OwnedEntityPicker, N as OwnedEntityPickerSchema, P as MyGroupsPicker, l as MyGroupsPickerSchema } from './OngoingTask-
|
|
11
|
+
import { r as rootRouteRef, o as selectedTemplateRouteRef, w as scaffolderTaskRouteRef, y as EntityPicker, z as EntityPickerSchema, A as EntityNamePicker, B as entityNamePickerValidation, C as EntityNamePickerSchema, D as EntityTagsPicker, F as EntityTagsPickerSchema, G as RepoUrlPicker, i as repoPickerValidation, H as RepoUrlPickerSchema, I as OwnerPicker, J as OwnerPickerSchema, K as OwnedEntityPicker, N as OwnedEntityPickerSchema, P as MyGroupsPicker, l as MyGroupsPickerSchema } from './OngoingTask-1268e13b.esm.js';
|
|
12
12
|
import { entityRouteRef, catalogApiRef, EntityRefLink, CatalogFilterLayout } from '@backstage/plugin-catalog-react';
|
|
13
13
|
import SettingsIcon from '@material-ui/icons/Settings';
|
|
14
14
|
import AllIcon from '@material-ui/icons/FontDownload';
|
|
@@ -1719,4 +1719,4 @@ function DryRunResults() {
|
|
|
1719
1719
|
}
|
|
1720
1720
|
|
|
1721
1721
|
export { ActionsPage as A, DirectoryEditorProvider as D, ListTasksPage as L, TemplateEditorBrowser as T, WebFileSystemAccess as W, useDirectoryEditor as a, DryRunProvider as b, TemplateEditorTextArea as c, DryRunResults as d, TemplateEditorIntro as e, DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS as f, TaskPage as g, useDryRun as u };
|
|
1722
|
-
//# sourceMappingURL=DryRunResults-
|
|
1722
|
+
//# sourceMappingURL=DryRunResults-ac176f6e.esm.js.map
|