allaw-ui 3.4.0 → 3.4.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/dist/components/molecules/entityAdminCard/EntityAdminCard.d.ts +1 -1
- package/dist/components/molecules/entityAdminCard/EntityAdminCard.js +1 -1
- package/dist/components/molecules/entityAdminCard/entityAdminCard.stories.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import styles from "./
|
|
2
|
+
import styles from "./EntityAdminCard.module.css";
|
|
3
3
|
function EntityAdminCard(_a) {
|
|
4
4
|
var email = _a.email, dateSent = _a.dateSent, role = _a.role, status = _a.status, avatarUrl = _a.avatarUrl, onAccept = _a.onAccept, onRefuse = _a.onRefuse, onRoleChange = _a.onRoleChange;
|
|
5
5
|
return (React.createElement("div", { className: styles.card },
|
|
@@ -13,7 +13,7 @@ import { action } from "@storybook/addon-actions";
|
|
|
13
13
|
import React from "react";
|
|
14
14
|
import EntityAdminCard from "./EntityAdminCard";
|
|
15
15
|
export default {
|
|
16
|
-
title: "Components/Molecules/
|
|
16
|
+
title: "Components/Molecules/EntityAdminCard",
|
|
17
17
|
component: EntityAdminCard,
|
|
18
18
|
};
|
|
19
19
|
var Template = function (args) { return React.createElement(EntityAdminCard, __assign({}, args)); };
|
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,8 @@ export { default as FeatureGrid } from "./components/molecules/featureGrid/Featu
|
|
|
83
83
|
export type { FeatureGridProps } from "./components/molecules/featureGrid/FeatureGrid";
|
|
84
84
|
export { default as EntityCard } from "./components/molecules/entityCard/EntityCard";
|
|
85
85
|
export type { EntityCardProps } from "./components/molecules/entityCard/EntityCard";
|
|
86
|
+
export { default as EntityAdminCard } from "./components/molecules/entityAdminCard/EntityAdminCard";
|
|
87
|
+
export type { EntityAdminCardProps } from "./components/molecules/entityAdminCard/EntityAdminCard";
|
|
86
88
|
export { default as HeroSection } from "./components/molecules/heroSection/HeroSection";
|
|
87
89
|
export type { HeroSectionProps } from "./components/molecules/heroSection/HeroSection";
|
|
88
90
|
export { default as FrameCTA } from "./components/molecules/frameCTA/FrameCTA";
|
package/dist/index.js
CHANGED
|
@@ -92,6 +92,7 @@ export { default as Banner } from "./components/molecules/banner/Banner";
|
|
|
92
92
|
export { default as FeatureCard } from "./components/atoms/featureCard/featureCard";
|
|
93
93
|
export { default as FeatureGrid } from "./components/molecules/featureGrid/FeatureGrid";
|
|
94
94
|
export { default as EntityCard } from "./components/molecules/entityCard/EntityCard";
|
|
95
|
+
export { default as EntityAdminCard } from "./components/molecules/entityAdminCard/EntityAdminCard";
|
|
95
96
|
export { default as HeroSection } from "./components/molecules/heroSection/HeroSection";
|
|
96
97
|
export { default as FrameCTA } from "./components/molecules/frameCTA/FrameCTA";
|
|
97
98
|
export { default as QuestionAnswer } from "./components/molecules/questionAnswer/QuestionAnswer";
|