@wavelengthusaf/components 4.26.0 → 4.26.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.
@@ -63,6 +63,33 @@ declare namespace WavelengthStyledButton {
63
63
  var displayName: string;
64
64
  }
65
65
 
66
+ interface ButtonProps {
67
+ onClick?: any;
68
+ children?: ReactNode;
69
+ id?: string;
70
+ name?: string;
71
+ }
72
+ interface IconProps {
73
+ text: string;
74
+ numIcon?: string;
75
+ children: ReactNode;
76
+ active?: boolean;
77
+ width: string;
78
+ height: number;
79
+ fontsize: number;
80
+ id?: string;
81
+ name?: string;
82
+ }
83
+ declare function ButtonIcon({ text, numIcon, children, active, width, height, fontsize, id, name }: IconProps): react_jsx_runtime.JSX.Element;
84
+ interface ButtonMenuProps {
85
+ children: ReactNode;
86
+ }
87
+ declare function ButtonMenu({ children }: ButtonMenuProps): react_jsx_runtime.JSX.Element;
88
+ declare function WavelengthDropdownButton({ children, onClick }: ButtonProps): React__default.JSX.Element;
89
+ declare namespace WavelengthDropdownButton {
90
+ var displayName: string;
91
+ }
92
+
66
93
  interface WavelengthBoxProps {
67
94
  width?: number;
68
95
  height?: number;
@@ -378,6 +405,16 @@ interface WavelengthCommentDisplayProps extends React__default.HTMLAttributes<HT
378
405
  }
379
406
  declare const WavelengthCommentDisplay: React__default.FC<WavelengthCommentDisplayProps>;
380
407
 
408
+ interface WavelengthFooterProps {
409
+ text?: string;
410
+ textColor?: string;
411
+ id?: string;
412
+ }
413
+ declare function WavelengthFooter({ text, textColor, id }: WavelengthFooterProps): react_jsx_runtime.JSX.Element;
414
+ declare namespace WavelengthFooter {
415
+ var displayName: string;
416
+ }
417
+
381
418
  /** Attributes passed through to the underlying `wavelength-button` */
382
419
  interface WavelengthButtonAttributes extends React__default.HTMLAttributes<HTMLElement> {
383
420
  [key: string]: any;
@@ -929,4 +966,4 @@ interface WavelengthCheckboxListProps extends React__default.HTMLAttributes<HTML
929
966
  }
930
967
  declare const WavelengthCheckboxList: React__default.FC<WavelengthCheckboxListProps>;
931
968
 
932
- export { ChildDataTable, type DataGridColumn, type DataGridRow, type FileSelectedEventDetail, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchResult, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthBadge, type WavelengthBadgeProps, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCard, WavelengthCheckbox, WavelengthCheckboxList, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentPlaceholder, WavelengthDataGrid, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDialog, WavelengthDragAndDrop, WavelengthDropdown, WavelengthExampleComponent, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPagination, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, type WavelengthSideBarProps, WavelengthSlider, WavelengthSnackbar, type WavelengthSnackbarProps, WavelengthSpinningLogo, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip, add, concat, useThemeContext };
969
+ export { ButtonIcon, ButtonMenu, ChildDataTable, type DataGridColumn, type DataGridRow, type FileSelectedEventDetail, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchResult, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthBadge, type WavelengthBadgeProps, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCard, WavelengthCheckbox, WavelengthCheckboxList, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentPlaceholder, WavelengthDataGrid, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDialog, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPagination, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, type WavelengthSideBarProps, WavelengthSlider, WavelengthSnackbar, type WavelengthSnackbarProps, WavelengthSpinningLogo, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip, add, concat, useThemeContext };
@@ -63,6 +63,33 @@ declare namespace WavelengthStyledButton {
63
63
  var displayName: string;
64
64
  }
65
65
 
66
+ interface ButtonProps {
67
+ onClick?: any;
68
+ children?: ReactNode;
69
+ id?: string;
70
+ name?: string;
71
+ }
72
+ interface IconProps {
73
+ text: string;
74
+ numIcon?: string;
75
+ children: ReactNode;
76
+ active?: boolean;
77
+ width: string;
78
+ height: number;
79
+ fontsize: number;
80
+ id?: string;
81
+ name?: string;
82
+ }
83
+ declare function ButtonIcon({ text, numIcon, children, active, width, height, fontsize, id, name }: IconProps): react_jsx_runtime.JSX.Element;
84
+ interface ButtonMenuProps {
85
+ children: ReactNode;
86
+ }
87
+ declare function ButtonMenu({ children }: ButtonMenuProps): react_jsx_runtime.JSX.Element;
88
+ declare function WavelengthDropdownButton({ children, onClick }: ButtonProps): React__default.JSX.Element;
89
+ declare namespace WavelengthDropdownButton {
90
+ var displayName: string;
91
+ }
92
+
66
93
  interface WavelengthBoxProps {
67
94
  width?: number;
68
95
  height?: number;
@@ -378,6 +405,16 @@ interface WavelengthCommentDisplayProps extends React__default.HTMLAttributes<HT
378
405
  }
379
406
  declare const WavelengthCommentDisplay: React__default.FC<WavelengthCommentDisplayProps>;
380
407
 
408
+ interface WavelengthFooterProps {
409
+ text?: string;
410
+ textColor?: string;
411
+ id?: string;
412
+ }
413
+ declare function WavelengthFooter({ text, textColor, id }: WavelengthFooterProps): react_jsx_runtime.JSX.Element;
414
+ declare namespace WavelengthFooter {
415
+ var displayName: string;
416
+ }
417
+
381
418
  /** Attributes passed through to the underlying `wavelength-button` */
382
419
  interface WavelengthButtonAttributes extends React__default.HTMLAttributes<HTMLElement> {
383
420
  [key: string]: any;
@@ -929,4 +966,4 @@ interface WavelengthCheckboxListProps extends React__default.HTMLAttributes<HTML
929
966
  }
930
967
  declare const WavelengthCheckboxList: React__default.FC<WavelengthCheckboxListProps>;
931
968
 
932
- export { ChildDataTable, type DataGridColumn, type DataGridRow, type FileSelectedEventDetail, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchResult, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthBadge, type WavelengthBadgeProps, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCard, WavelengthCheckbox, WavelengthCheckboxList, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentPlaceholder, WavelengthDataGrid, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDialog, WavelengthDragAndDrop, WavelengthDropdown, WavelengthExampleComponent, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPagination, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, type WavelengthSideBarProps, WavelengthSlider, WavelengthSnackbar, type WavelengthSnackbarProps, WavelengthSpinningLogo, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip, add, concat, useThemeContext };
969
+ export { ButtonIcon, ButtonMenu, ChildDataTable, type DataGridColumn, type DataGridRow, type FileSelectedEventDetail, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchResult, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthBadge, type WavelengthBadgeProps, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCard, WavelengthCheckbox, WavelengthCheckboxList, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentPlaceholder, WavelengthDataGrid, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDialog, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPagination, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, type WavelengthSideBarProps, WavelengthSlider, WavelengthSnackbar, type WavelengthSnackbarProps, WavelengthSpinningLogo, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip, add, concat, useThemeContext };