@pagerduty/backstage-plugin 0.13.0-next.52 → 0.13.0-next.54
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/components/Logo/PagerDutyIcon.esm.js +9 -0
- package/dist/components/Logo/PagerDutyIcon.esm.js.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
- package/dist/components/Logo/PagerDutyLogo.esm.js +0 -9
- package/dist/components/Logo/PagerDutyLogo.esm.js.map +0 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PDIcon from '../../assets/PD-Icon.svg';
|
|
3
|
+
|
|
4
|
+
const PagerDutyIcon = () => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement("img", { src: PDIcon, alt: "PagerDuty", height: "20px" });
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export { PagerDutyIcon };
|
|
9
|
+
//# sourceMappingURL=PagerDutyIcon.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PagerDutyIcon.esm.js","sources":["../../../src/components/Logo/PagerDutyIcon.tsx"],"sourcesContent":["import React from \"react\";\nimport PDIcon from \"../../assets/PD-Icon.svg\";\n\n/** @public */\nexport const PagerDutyIcon = () => {\n\n return <img src={PDIcon} alt=\"PagerDuty\" height=\"20px\" />;\n};\n"],"names":[],"mappings":";;;AAIO,MAAM,gBAAgB,MAAM;AAEjC,EAAA,2CAAQ,KAAI,EAAA,EAAA,GAAA,EAAK,QAAQ,GAAI,EAAA,WAAA,EAAY,QAAO,MAAO,EAAA,CAAA,CAAA;AACzD;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ declare const EntityPagerDutySmallCard: (props: EntityPagerDutySmallCardProps) =
|
|
|
49
49
|
declare const HomePagePagerDutyCard: (props: _backstage_plugin_home_react.CardExtensionProps<HomePagePagerDutyCardProps>) => React.JSX.Element;
|
|
50
50
|
|
|
51
51
|
/** @public */
|
|
52
|
-
declare const
|
|
52
|
+
declare const PagerDutyIcon: () => React__default.JSX.Element;
|
|
53
53
|
|
|
54
54
|
/** @public */
|
|
55
55
|
declare function TriggerButton(props: {
|
|
@@ -166,4 +166,4 @@ declare const PagerDutyCard: (props: EntityPagerDutyCardProps) => React.JSX.Elem
|
|
|
166
166
|
*/
|
|
167
167
|
type PagerDutyCardProps = EntityPagerDutyCardProps;
|
|
168
168
|
|
|
169
|
-
export { EntityPagerDutyCard, type EntityPagerDutyCardProps, EntityPagerDutySmallCard, type EntityPagerDutySmallCardProps, HomePagePagerDutyCard, type HomePagePagerDutyCardProps, type PagerDutyApi, PagerDutyCard, type PagerDutyCardProps, PagerDutyClient, type PagerDutyClientApiConfig, type PagerDutyClientApiDependencies, type PagerDutyEntity,
|
|
169
|
+
export { EntityPagerDutyCard, type EntityPagerDutyCardProps, EntityPagerDutySmallCard, type EntityPagerDutySmallCardProps, HomePagePagerDutyCard, type HomePagePagerDutyCardProps, type PagerDutyApi, PagerDutyCard, type PagerDutyCardProps, PagerDutyClient, type PagerDutyClientApiConfig, type PagerDutyClientApiDependencies, type PagerDutyEntity, PagerDutyIcon, PagerDutyPage, type PagerDutyTriggerAlarmRequest, TriggerButton, UnauthorizedError, isPluginApplicableToEntity as isPagerDutyAvailable, isPluginApplicableToEntity$1 as isPagerDutySmallCardAvailable, isPluginApplicableToEntity, pagerDutyApiRef, pagerDutyPlugin, pagerDutyPlugin as plugin };
|
package/dist/index.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { EntityPagerDutyCard, EntityPagerDutySmallCard, HomePagePagerDutyCard, PagerDutyPage, pagerDutyPlugin, pagerDutyPlugin as plugin } from './plugin.esm.js';
|
|
2
2
|
export { isPluginApplicableToEntity as isPagerDutyAvailable, isPluginApplicableToEntity } from './components/EntityPagerDutyCard/index.esm.js';
|
|
3
3
|
export { isPluginApplicableToEntity as isPagerDutySmallCardAvailable } from './components/EntityPagerDutySmallCard/index.esm.js';
|
|
4
|
-
export {
|
|
4
|
+
export { PagerDutyIcon } from './components/Logo/PagerDutyIcon.esm.js';
|
|
5
5
|
export { TriggerButton } from './components/TriggerButton/index.esm.js';
|
|
6
6
|
export { PagerDutyClient, UnauthorizedError, pagerDutyApiRef } from './api/client.esm.js';
|
|
7
7
|
export { PagerDutyCard } from './deprecated.esm.js';
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PDIcon from '../../assets/PD-Icon.svg';
|
|
3
|
-
|
|
4
|
-
const PagerDutyLogo = () => {
|
|
5
|
-
return /* @__PURE__ */ React.createElement("img", { src: PDIcon, alt: "PagerDuty", height: "1.25em" });
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
export { PagerDutyLogo };
|
|
9
|
-
//# sourceMappingURL=PagerDutyLogo.esm.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PagerDutyLogo.esm.js","sources":["../../../src/components/Logo/PagerDutyLogo.tsx"],"sourcesContent":["import React from \"react\";\nimport PDIcon from \"../../assets/PD-Icon.svg\";\n\n/** @public */\nexport const PagerDutyLogo = () => {\n\n return <img src={PDIcon} alt=\"PagerDuty\" height=\"1.25em\" />;\n};\n"],"names":[],"mappings":";;;AAIO,MAAM,gBAAgB,MAAM;AAEjC,EAAA,2CAAQ,KAAI,EAAA,EAAA,GAAA,EAAK,QAAQ,GAAI,EAAA,WAAA,EAAY,QAAO,QAAS,EAAA,CAAA,CAAA;AAC3D;;;;"}
|