@worldresources/wri-design-systems 2.124.0 → 2.126.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/README.md +1 -0
- package/dist/index.cjs.js +252 -206
- package/dist/index.d.ts +23 -1
- package/dist/index.esm.js +251 -205
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -531,6 +531,16 @@ type NavigationRailProps = {
|
|
531
531
|
|
532
532
|
declare const NavigationRail: ({ tabs, defaultValue, onTabClick, children, onOpenChange, customHeight, }: NavigationRailProps) => _emotion_react_jsx_runtime.JSX.Element;
|
533
533
|
|
534
|
+
type StepBarProps = {
|
535
|
+
steps: {
|
536
|
+
label?: string;
|
537
|
+
onClick?: () => void;
|
538
|
+
}[];
|
539
|
+
currentStep: number;
|
540
|
+
};
|
541
|
+
|
542
|
+
declare const StepBar: ({ steps, currentStep }: StepBarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
543
|
+
|
534
544
|
declare const TabBar: ({ variant, defaultValue, tabs, onTabClick, }: TabBarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
535
545
|
|
536
546
|
type MenuItemProps = {
|
@@ -641,4 +651,16 @@ declare const IconMarkers: {
|
|
641
651
|
Plant: ({ ariaLabel, onClick }: GenericIconMarkersProps) => react_jsx_runtime.JSX.Element;
|
642
652
|
};
|
643
653
|
|
644
|
-
|
654
|
+
type GenericSSOButtonsProps = {
|
655
|
+
ariaLabel?: string;
|
656
|
+
size?: 'default' | 'small';
|
657
|
+
onClick?: () => void;
|
658
|
+
};
|
659
|
+
declare const SSOButtons: {
|
660
|
+
Google: ({ ariaLabel, size, onClick, }: GenericSSOButtonsProps) => react_jsx_runtime.JSX.Element;
|
661
|
+
Facebook: ({ ariaLabel, size, onClick, }: GenericSSOButtonsProps) => react_jsx_runtime.JSX.Element;
|
662
|
+
X: ({ ariaLabel, size, onClick, }: GenericSSOButtonsProps) => react_jsx_runtime.JSX.Element;
|
663
|
+
Microsoft: ({ ariaLabel, size, onClick, }: GenericSSOButtonsProps) => react_jsx_runtime.JSX.Element;
|
664
|
+
};
|
665
|
+
|
666
|
+
export { Badge, Breadcrumb, Button, Checkbox, CheckboxList, CheckboxOptionCard, CloseButton, Footer, IconButton, IconMarker, IconMarkers, InlineMessage, InputWithUnits, ItemCount, LayerGroup, LayerGroupContainer, LayerItem, LayerPanel, LayerParameters, LegendItem, LegendPanel, MapControl, MapControls, Menu, Modal, MultiActionButton, NavigationRail, OptionCard, Pagination, Password, QualitativeAttribute, Radio, RadioGroup, RadioList, SSOButtons, ScaleBar, Select, Slider, SliderInput, StepBar, Switch, TabBar, Table, TableCell, TableRow, Tag, TextInput, Textarea, Toast, designSystemStyles, getThemedColor, showToast };
|