@telicent-oss/ds 0.13.0 → 0.14.0
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/ds.js
CHANGED
|
@@ -57686,16 +57686,7 @@ const UserProfile = ({
|
|
|
57686
57686
|
};
|
|
57687
57687
|
const UserProfileContent = ({
|
|
57688
57688
|
children: children2
|
|
57689
|
-
}) => /* @__PURE__ */
|
|
57690
|
-
/* @__PURE__ */ jsxs(Stack, { direction: "row", columnGap: 1, alignItems: "center", children: [
|
|
57691
|
-
/* @__PURE__ */ jsx$1(Avatar, { variant: "circular-outlined", sx: {
|
|
57692
|
-
width: 32,
|
|
57693
|
-
height: 32
|
|
57694
|
-
}, children: /* @__PURE__ */ jsx$1(UserIcon, { color: "primary" }) }),
|
|
57695
|
-
/* @__PURE__ */ jsx$1(H2, { variant: "h4", children: "User Profile" })
|
|
57696
|
-
] }),
|
|
57697
|
-
children2
|
|
57698
|
-
] });
|
|
57689
|
+
}) => /* @__PURE__ */ jsx$1(Stack, { rowGap: 2, children: children2 });
|
|
57699
57690
|
const TitleAndContent = ({
|
|
57700
57691
|
title = "",
|
|
57701
57692
|
content = ""
|
package/dist/ds.umd.cjs
CHANGED
|
@@ -57704,16 +57704,7 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
57704
57704
|
};
|
|
57705
57705
|
const UserProfileContent = ({
|
|
57706
57706
|
children: children2
|
|
57707
|
-
}) => /* @__PURE__ */
|
|
57708
|
-
/* @__PURE__ */ jsxs(Stack, { direction: "row", columnGap: 1, alignItems: "center", children: [
|
|
57709
|
-
/* @__PURE__ */ jsx$1(Avatar, { variant: "circular-outlined", sx: {
|
|
57710
|
-
width: 32,
|
|
57711
|
-
height: 32
|
|
57712
|
-
}, children: /* @__PURE__ */ jsx$1(UserIcon, { color: "primary" }) }),
|
|
57713
|
-
/* @__PURE__ */ jsx$1(H2, { variant: "h4", children: "User Profile" })
|
|
57714
|
-
] }),
|
|
57715
|
-
children2
|
|
57716
|
-
] });
|
|
57707
|
+
}) => /* @__PURE__ */ jsx$1(Stack, { rowGap: 2, children: children2 });
|
|
57717
57708
|
const TitleAndContent = ({
|
|
57718
57709
|
title = "",
|
|
57719
57710
|
content = ""
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta } from '@storybook/react';
|
|
2
|
+
|
|
3
|
+
declare const _default: Meta;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const BasicColumns: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, import('@storybook/csf').Args>;
|
|
6
|
+
export declare const Rows: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, import('@storybook/csf').Args>;
|
|
7
|
+
export declare const MainDetailLayout: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, import('@storybook/csf').Args>;
|