@veeqo/ui 13.5.1 → 13.5.2
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.
|
@@ -14,7 +14,7 @@ var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
|
14
14
|
function SectionLayout({ children, title, description, accessorySlot, className, ...otherProps }) {
|
|
15
15
|
const classNames = buildClassnames.buildClassnames([SectionLayout_module.grid, className]);
|
|
16
16
|
return (React__default.default.createElement("div", { className: classNames, ...otherProps },
|
|
17
|
-
React__default.default.createElement(FlexCol.FlexCol,
|
|
17
|
+
React__default.default.createElement(FlexCol.FlexCol, { alignItems: "flex-start" },
|
|
18
18
|
React__default.default.createElement(Text.Text, { variant: "headingSmall" }, title),
|
|
19
19
|
description && React__default.default.createElement(Text.Text, { variant: "hintText" }, description),
|
|
20
20
|
accessorySlot),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionLayout.cjs","sources":["../../../src/components/SectionLayout/SectionLayout.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport { FlexCol } from '../Flex/FlexCol';\nimport { Text } from '../Text';\nimport styles from './SectionLayout.module.scss';\n\ntype SectionLayoutProps = React.HTMLAttributes<HTMLDivElement> & {\n children: React.ReactNode;\n title: string;\n description?: string;\n accessorySlot?: React.ReactNode;\n};\n\nexport function SectionLayout({\n children,\n title,\n description,\n accessorySlot,\n className,\n ...otherProps\n}: SectionLayoutProps) {\n const classNames = buildClassnames([styles.grid, className]);\n return (\n <div className={classNames} {...otherProps}>\n <FlexCol>\n <Text variant=\"headingSmall\">{title}</Text>\n {description && <Text variant=\"hintText\">{description}</Text>}\n {accessorySlot}\n </FlexCol>\n <div>{children}</div>\n </div>\n );\n}\n"],"names":["buildClassnames","styles","React","FlexCol","Text"],"mappings":";;;;;;;;;;;;;SAagB,aAAa,CAAC,EAC5B,QAAQ,EACR,KAAK,EACL,WAAW,EACX,aAAa,EACb,SAAS,EACT,GAAG,UAAU,EACM,EAAA;AACnB,IAAA,MAAM,UAAU,GAAGA,+BAAe,CAAC,CAACC,oBAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AAC5D,IAAA,QACEC,sBAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,KAAM,UAAU,EAAA;AACxC,QAAAA,sBAAA,CAAA,aAAA,CAACC,eAAO,EAAA,
|
|
1
|
+
{"version":3,"file":"SectionLayout.cjs","sources":["../../../src/components/SectionLayout/SectionLayout.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport { FlexCol } from '../Flex/FlexCol';\nimport { Text } from '../Text';\nimport styles from './SectionLayout.module.scss';\n\ntype SectionLayoutProps = React.HTMLAttributes<HTMLDivElement> & {\n children: React.ReactNode;\n title: string;\n description?: string;\n accessorySlot?: React.ReactNode;\n};\n\nexport function SectionLayout({\n children,\n title,\n description,\n accessorySlot,\n className,\n ...otherProps\n}: SectionLayoutProps) {\n const classNames = buildClassnames([styles.grid, className]);\n return (\n <div className={classNames} {...otherProps}>\n <FlexCol alignItems=\"flex-start\">\n <Text variant=\"headingSmall\">{title}</Text>\n {description && <Text variant=\"hintText\">{description}</Text>}\n {accessorySlot}\n </FlexCol>\n <div>{children}</div>\n </div>\n );\n}\n"],"names":["buildClassnames","styles","React","FlexCol","Text"],"mappings":";;;;;;;;;;;;;SAagB,aAAa,CAAC,EAC5B,QAAQ,EACR,KAAK,EACL,WAAW,EACX,aAAa,EACb,SAAS,EACT,GAAG,UAAU,EACM,EAAA;AACnB,IAAA,MAAM,UAAU,GAAGA,+BAAe,CAAC,CAACC,oBAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AAC5D,IAAA,QACEC,sBAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,KAAM,UAAU,EAAA;AACxC,QAAAA,sBAAA,CAAA,aAAA,CAACC,eAAO,EAAA,EAAC,UAAU,EAAC,YAAY,EAAA;AAC9B,YAAAD,sBAAA,CAAA,aAAA,CAACE,SAAI,EAAC,EAAA,OAAO,EAAC,cAAc,EAAA,EAAE,KAAK,CAAQ;YAC1C,WAAW,IAAIF,qCAACE,SAAI,EAAA,EAAC,OAAO,EAAC,UAAU,EAAE,EAAA,WAAW,CAAQ;AAC5D,YAAA,aAAa,CACN;AACV,QAAAF,sBAAA,CAAA,aAAA,CAAA,KAAA,EAAA,IAAA,EAAM,QAAQ,CAAO,CACjB;AAEV;;;;"}
|
|
@@ -8,7 +8,7 @@ import styles from './SectionLayout.module.scss.js';
|
|
|
8
8
|
function SectionLayout({ children, title, description, accessorySlot, className, ...otherProps }) {
|
|
9
9
|
const classNames = buildClassnames([styles.grid, className]);
|
|
10
10
|
return (React__default.createElement("div", { className: classNames, ...otherProps },
|
|
11
|
-
React__default.createElement(FlexCol,
|
|
11
|
+
React__default.createElement(FlexCol, { alignItems: "flex-start" },
|
|
12
12
|
React__default.createElement(Text, { variant: "headingSmall" }, title),
|
|
13
13
|
description && React__default.createElement(Text, { variant: "hintText" }, description),
|
|
14
14
|
accessorySlot),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionLayout.js","sources":["../../../src/components/SectionLayout/SectionLayout.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport { FlexCol } from '../Flex/FlexCol';\nimport { Text } from '../Text';\nimport styles from './SectionLayout.module.scss';\n\ntype SectionLayoutProps = React.HTMLAttributes<HTMLDivElement> & {\n children: React.ReactNode;\n title: string;\n description?: string;\n accessorySlot?: React.ReactNode;\n};\n\nexport function SectionLayout({\n children,\n title,\n description,\n accessorySlot,\n className,\n ...otherProps\n}: SectionLayoutProps) {\n const classNames = buildClassnames([styles.grid, className]);\n return (\n <div className={classNames} {...otherProps}>\n <FlexCol>\n <Text variant=\"headingSmall\">{title}</Text>\n {description && <Text variant=\"hintText\">{description}</Text>}\n {accessorySlot}\n </FlexCol>\n <div>{children}</div>\n </div>\n );\n}\n"],"names":["React"],"mappings":";;;;;;;SAagB,aAAa,CAAC,EAC5B,QAAQ,EACR,KAAK,EACL,WAAW,EACX,aAAa,EACb,SAAS,EACT,GAAG,UAAU,EACM,EAAA;AACnB,IAAA,MAAM,UAAU,GAAG,eAAe,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AAC5D,IAAA,QACEA,cAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,KAAM,UAAU,EAAA;AACxC,QAAAA,cAAA,CAAA,aAAA,CAAC,OAAO,EAAA,
|
|
1
|
+
{"version":3,"file":"SectionLayout.js","sources":["../../../src/components/SectionLayout/SectionLayout.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport { FlexCol } from '../Flex/FlexCol';\nimport { Text } from '../Text';\nimport styles from './SectionLayout.module.scss';\n\ntype SectionLayoutProps = React.HTMLAttributes<HTMLDivElement> & {\n children: React.ReactNode;\n title: string;\n description?: string;\n accessorySlot?: React.ReactNode;\n};\n\nexport function SectionLayout({\n children,\n title,\n description,\n accessorySlot,\n className,\n ...otherProps\n}: SectionLayoutProps) {\n const classNames = buildClassnames([styles.grid, className]);\n return (\n <div className={classNames} {...otherProps}>\n <FlexCol alignItems=\"flex-start\">\n <Text variant=\"headingSmall\">{title}</Text>\n {description && <Text variant=\"hintText\">{description}</Text>}\n {accessorySlot}\n </FlexCol>\n <div>{children}</div>\n </div>\n );\n}\n"],"names":["React"],"mappings":";;;;;;;SAagB,aAAa,CAAC,EAC5B,QAAQ,EACR,KAAK,EACL,WAAW,EACX,aAAa,EACb,SAAS,EACT,GAAG,UAAU,EACM,EAAA;AACnB,IAAA,MAAM,UAAU,GAAG,eAAe,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;AAC5D,IAAA,QACEA,cAAK,CAAA,aAAA,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,KAAM,UAAU,EAAA;AACxC,QAAAA,cAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,UAAU,EAAC,YAAY,EAAA;AAC9B,YAAAA,cAAA,CAAA,aAAA,CAAC,IAAI,EAAC,EAAA,OAAO,EAAC,cAAc,EAAA,EAAE,KAAK,CAAQ;YAC1C,WAAW,IAAIA,6BAAC,IAAI,EAAA,EAAC,OAAO,EAAC,UAAU,EAAE,EAAA,WAAW,CAAQ;AAC5D,YAAA,aAAa,CACN;AACV,QAAAA,cAAA,CAAA,aAAA,CAAA,KAAA,EAAA,IAAA,EAAM,QAAQ,CAAO,CACjB;AAEV;;;;"}
|