@pantheon-systems/pds-toolkit-react 1.0.0-dev.184 → 1.0.0-dev.186
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/ComparisonList/ComparisonList.d.ts +3 -3
- package/_dist/components/LinkNewWindow/LinkNewWindow.d.ts +27 -0
- package/_dist/components/footer/SiteFooter/SiteFooter.d.ts +25 -17
- package/_dist/components/footer/SiteFooter/footer-content.d.ts +2 -0
- package/_dist/components/inputs/Combobox/Combobox.d.ts +14 -5
- package/_dist/components/navigation/DashboardSearch/DashboardSearch.d.ts +62 -61
- package/_dist/components/navigation/DashboardSearch/SiteOptionDisplay.d.ts +33 -9
- package/_dist/components/navigation/TabMenu/TabMenu.d.ts +43 -0
- package/_dist/components/navigation/TabMenu/TabMenuDropdown.d.ts +33 -0
- package/_dist/components/navigation/navigation-types.d.ts +0 -10
- package/_dist/css/component-css/pds-comparison-list.css +1 -1
- package/_dist/css/component-css/pds-index.css +4 -3
- package/_dist/css/component-css/pds-link-new-window.css +1 -0
- package/_dist/css/component-css/pds-tab-menu.css +2 -0
- package/_dist/css/component-css/pds-tabs.css +1 -1
- package/_dist/css/pds-components.css +4 -3
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +5 -3
- package/_dist/index.js +3809 -3745
- package/_dist/index.js.map +1 -1
- package/_dist/layouts/FlexContainer/FlexContainer.d.ts +44 -26
- package/package.json +1 -1
|
@@ -1,27 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
1
|
+
import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
|
+
import './flex-container.css';
|
|
3
|
+
interface FlexContainerProps extends ComponentPropsWithoutRef<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* Align content
|
|
6
|
+
*/
|
|
7
|
+
alignContent?: 'start' | 'end' | 'center';
|
|
8
|
+
/**
|
|
9
|
+
* Align items
|
|
10
|
+
*/
|
|
11
|
+
alignItems?: 'start' | 'end' | 'center' | 'stretch' | 'baseline';
|
|
12
|
+
/**
|
|
13
|
+
* Flex direction
|
|
14
|
+
*/
|
|
15
|
+
flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
16
|
+
/**
|
|
17
|
+
* Flex wrap
|
|
18
|
+
*/
|
|
19
|
+
flexWrap?: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
20
|
+
/**
|
|
21
|
+
* Justify content
|
|
22
|
+
*/
|
|
23
|
+
justifyContent?: 'start' | 'end' | 'center' | 'between';
|
|
24
|
+
/**
|
|
25
|
+
* How should the flex-direction at mobile (small breakpoint)
|
|
26
|
+
*/
|
|
27
|
+
mobileFlex?: 'none' | 'reverse' | 'same';
|
|
28
|
+
/**
|
|
29
|
+
* Gap size
|
|
30
|
+
*/
|
|
31
|
+
spacing?: 'narrow' | 'standard' | 'wide';
|
|
32
|
+
/**
|
|
33
|
+
* Container content
|
|
34
|
+
*/
|
|
35
|
+
children: ReactNode;
|
|
36
|
+
/**
|
|
37
|
+
* Additional class names
|
|
38
|
+
*/
|
|
39
|
+
className?: string;
|
|
25
40
|
}
|
|
26
|
-
|
|
27
|
-
|
|
41
|
+
/**
|
|
42
|
+
* Flex Container UI component
|
|
43
|
+
*/
|
|
44
|
+
export declare const FlexContainer: ({ alignContent, alignItems, flexDirection, flexWrap, justifyContent, mobileFlex, spacing, children, className, ...props }: FlexContainerProps) => React.JSX.Element;
|
|
45
|
+
export {};
|