@wavelengthusaf/components 2.9.3 → 2.10.0

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,54 +260,6 @@ 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
- variant?: "caveman" | "basic" | "civilized";
298
- backgroundColor?: string;
299
- alertType?: string;
300
- alertDescription?: string;
301
- datatestid?: string;
302
- viewed?: boolean;
303
- timeStamp?: string;
304
- appName?: string;
305
- url?: string;
306
- initiator?: string;
307
- onClose?: () => void;
308
- }
309
- declare function WavelengthAlert({ viewed, width, height, backgroundColor, appName, alertType, alertDescription, datatestid, variant, timeStamp, url, initiator, id, onClose, }: WavelengthAlertProps): react_jsx_runtime.JSX.Element;
310
-
311
263
  interface WavelengthFooterProps {
312
264
  text?: string;
313
265
  textColor?: string;
@@ -579,4 +531,9 @@ type Props<T> = {
579
531
  };
580
532
  declare const WavelengthDataTable: <T extends DataType>({ data, columns, itemsPerPage, totalPages }: Props<T>) => react_jsx_runtime.JSX.Element;
581
533
 
582
- 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 };
534
+ interface SampleComponentProps extends React__default.HTMLAttributes<HTMLElement> {
535
+ testProp?: string;
536
+ }
537
+ declare const SampleComponent: React__default.FC<SampleComponentProps>;
538
+
539
+ export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, SampleComponent, 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 };
@@ -260,54 +260,6 @@ 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
- variant?: "caveman" | "basic" | "civilized";
298
- backgroundColor?: string;
299
- alertType?: string;
300
- alertDescription?: string;
301
- datatestid?: string;
302
- viewed?: boolean;
303
- timeStamp?: string;
304
- appName?: string;
305
- url?: string;
306
- initiator?: string;
307
- onClose?: () => void;
308
- }
309
- declare function WavelengthAlert({ viewed, width, height, backgroundColor, appName, alertType, alertDescription, datatestid, variant, timeStamp, url, initiator, id, onClose, }: WavelengthAlertProps): react_jsx_runtime.JSX.Element;
310
-
311
263
  interface WavelengthFooterProps {
312
264
  text?: string;
313
265
  textColor?: string;
@@ -579,4 +531,9 @@ type Props<T> = {
579
531
  };
580
532
  declare const WavelengthDataTable: <T extends DataType>({ data, columns, itemsPerPage, totalPages }: Props<T>) => react_jsx_runtime.JSX.Element;
581
533
 
582
- 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 };
534
+ interface SampleComponentProps extends React__default.HTMLAttributes<HTMLElement> {
535
+ testProp?: string;
536
+ }
537
+ declare const SampleComponent: React__default.FC<SampleComponentProps>;
538
+
539
+ export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, SampleComponent, 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 };