@wavelengthusaf/components 2.9.1 → 2.9.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.
@@ -260,6 +260,49 @@ interface CommentProps {
260
260
  }
261
261
  declare function WavelengthCommentDisplay(props: CommentProps): react_jsx_runtime.JSX.Element;
262
262
 
263
+ interface PermissionAlertProps {
264
+ height?: string;
265
+ width?: string;
266
+ permission?: "Permission Requested" | "Permission Denied";
267
+ applicationName?: string;
268
+ requestorName?: string;
269
+ dateOfRequest?: string;
270
+ backgroundColor?: string;
271
+ unit?: string;
272
+ onDismiss?: React__default.MouseEventHandler<HTMLAnchorElement> | undefined;
273
+ dataTestId?: string;
274
+ }
275
+ declare function WavelengthPermissionAlert({ dataTestId, height, width, backgroundColor, permission, applicationName, requestorName, dateOfRequest, onDismiss, unit, }: PermissionAlertProps): react_jsx_runtime.JSX.Element;
276
+
277
+ interface AccessAlertProps {
278
+ height?: string;
279
+ width?: string;
280
+ access?: "Access Request" | "Access Granted" | "Access Denied";
281
+ appAdmin?: string;
282
+ time?: string;
283
+ requestorName?: string;
284
+ appNickname?: string;
285
+ message?: string;
286
+ appLogo?: string;
287
+ dataTestId?: string;
288
+ backgroundColor?: string;
289
+ onClear?: React__default.MouseEventHandler<HTMLAnchorElement> | undefined;
290
+ }
291
+ declare function WavelengthAccessAlert({ height, dataTestId, width, time, access, appNickname, appLogo, appAdmin, requestorName, }: AccessAlertProps): react_jsx_runtime.JSX.Element;
292
+
293
+ interface WavelengthAlertProps {
294
+ id?: string;
295
+ height?: string;
296
+ width?: string;
297
+ backgroundColor?: string;
298
+ alertHeader?: string;
299
+ alertDescription?: string;
300
+ datatestid?: string;
301
+ viewed?: boolean;
302
+ onClose?: () => void;
303
+ }
304
+ declare function WavelengthAlert({ viewed, width, height, backgroundColor, alertHeader, alertDescription, datatestid, id, onClose, }: WavelengthAlertProps): react_jsx_runtime.JSX.Element;
305
+
263
306
  interface WavelengthFooterProps {
264
307
  text?: string;
265
308
  textColor?: string;
@@ -531,4 +574,4 @@ type Props<T> = {
531
574
  };
532
575
  declare const WavelengthDataTable: <T extends DataType>({ data, columns, itemsPerPage, totalPages }: Props<T>) => react_jsx_runtime.JSX.Element;
533
576
 
534
- export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, type SearchProps, type SearchResult, SearchTextField, SliderCardCarousel, type StyledButtonPropsTwo, TestSnackbar, type ThemeProperties, WavelengthAppTheme, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, type WavelengthButtonProps, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFooter, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTextField, WavelengthTitleBar, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
577
+ export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, type SearchProps, type SearchResult, SearchTextField, SliderCardCarousel, type StyledButtonPropsTwo, TestSnackbar, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppTheme, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, type WavelengthButtonProps, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFooter, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTextField, WavelengthTitleBar, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
@@ -260,6 +260,49 @@ interface CommentProps {
260
260
  }
261
261
  declare function WavelengthCommentDisplay(props: CommentProps): react_jsx_runtime.JSX.Element;
262
262
 
263
+ interface PermissionAlertProps {
264
+ height?: string;
265
+ width?: string;
266
+ permission?: "Permission Requested" | "Permission Denied";
267
+ applicationName?: string;
268
+ requestorName?: string;
269
+ dateOfRequest?: string;
270
+ backgroundColor?: string;
271
+ unit?: string;
272
+ onDismiss?: React__default.MouseEventHandler<HTMLAnchorElement> | undefined;
273
+ dataTestId?: string;
274
+ }
275
+ declare function WavelengthPermissionAlert({ dataTestId, height, width, backgroundColor, permission, applicationName, requestorName, dateOfRequest, onDismiss, unit, }: PermissionAlertProps): react_jsx_runtime.JSX.Element;
276
+
277
+ interface AccessAlertProps {
278
+ height?: string;
279
+ width?: string;
280
+ access?: "Access Request" | "Access Granted" | "Access Denied";
281
+ appAdmin?: string;
282
+ time?: string;
283
+ requestorName?: string;
284
+ appNickname?: string;
285
+ message?: string;
286
+ appLogo?: string;
287
+ dataTestId?: string;
288
+ backgroundColor?: string;
289
+ onClear?: React__default.MouseEventHandler<HTMLAnchorElement> | undefined;
290
+ }
291
+ declare function WavelengthAccessAlert({ height, dataTestId, width, time, access, appNickname, appLogo, appAdmin, requestorName, }: AccessAlertProps): react_jsx_runtime.JSX.Element;
292
+
293
+ interface WavelengthAlertProps {
294
+ id?: string;
295
+ height?: string;
296
+ width?: string;
297
+ backgroundColor?: string;
298
+ alertHeader?: string;
299
+ alertDescription?: string;
300
+ datatestid?: string;
301
+ viewed?: boolean;
302
+ onClose?: () => void;
303
+ }
304
+ declare function WavelengthAlert({ viewed, width, height, backgroundColor, alertHeader, alertDescription, datatestid, id, onClose, }: WavelengthAlertProps): react_jsx_runtime.JSX.Element;
305
+
263
306
  interface WavelengthFooterProps {
264
307
  text?: string;
265
308
  textColor?: string;
@@ -531,4 +574,4 @@ type Props<T> = {
531
574
  };
532
575
  declare const WavelengthDataTable: <T extends DataType>({ data, columns, itemsPerPage, totalPages }: Props<T>) => react_jsx_runtime.JSX.Element;
533
576
 
534
- export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, type SearchProps, type SearchResult, SearchTextField, SliderCardCarousel, type StyledButtonPropsTwo, TestSnackbar, type ThemeProperties, WavelengthAppTheme, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, type WavelengthButtonProps, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFooter, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTextField, WavelengthTitleBar, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
577
+ export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, type SearchProps, type SearchResult, SearchTextField, SliderCardCarousel, type StyledButtonPropsTwo, TestSnackbar, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppTheme, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, type WavelengthButtonProps, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFooter, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTextField, WavelengthTitleBar, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };