@uniformdev/design-system 20.50.2-alpha.109 → 20.50.2-alpha.117
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/index.d.mts
CHANGED
|
@@ -5383,8 +5383,14 @@ type PageHeaderSectionProps = Omit<React$1.HTMLAttributes<HTMLHeadingElement>, '
|
|
|
5383
5383
|
linkText?: string;
|
|
5384
5384
|
level?: LevelProps;
|
|
5385
5385
|
linkManagerComponent?: LinkManagerWithRefType;
|
|
5386
|
-
|
|
5387
|
-
|
|
5386
|
+
/** The content to render after the title. */
|
|
5387
|
+
afterTitle?: React$1.ReactNode;
|
|
5388
|
+
/** The gap between the title and the afterTitle. */
|
|
5389
|
+
afterTitleGap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
5390
|
+
/** The alignment of the afterTitle. */
|
|
5391
|
+
afterTitleAlign?: 'left' | 'center' | 'right';
|
|
5392
|
+
};
|
|
5393
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, afterTitle, afterTitleGap, afterTitleAlign, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
5388
5394
|
|
|
5389
5395
|
type ParagraphProps = {
|
|
5390
5396
|
/** (optional) adds child elements to the paragraph tag */
|
package/dist/index.d.ts
CHANGED
|
@@ -5383,8 +5383,14 @@ type PageHeaderSectionProps = Omit<React$1.HTMLAttributes<HTMLHeadingElement>, '
|
|
|
5383
5383
|
linkText?: string;
|
|
5384
5384
|
level?: LevelProps;
|
|
5385
5385
|
linkManagerComponent?: LinkManagerWithRefType;
|
|
5386
|
-
|
|
5387
|
-
|
|
5386
|
+
/** The content to render after the title. */
|
|
5387
|
+
afterTitle?: React$1.ReactNode;
|
|
5388
|
+
/** The gap between the title and the afterTitle. */
|
|
5389
|
+
afterTitleGap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
5390
|
+
/** The alignment of the afterTitle. */
|
|
5391
|
+
afterTitleAlign?: 'left' | 'center' | 'right';
|
|
5392
|
+
};
|
|
5393
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, afterTitle, afterTitleGap, afterTitleAlign, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
5388
5394
|
|
|
5389
5395
|
type ParagraphProps = {
|
|
5390
5396
|
/** (optional) adds child elements to the paragraph tag */
|