@wavelengthusaf/components 2.9.1 → 2.9.3
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 +19 -1
- package/dist/cjs/index.cjs +327 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +49 -1
- package/dist/esm/index.d.ts +49 -1
- package/dist/esm/index.js +521 -198
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -260,6 +260,54 @@ 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
|
+
|
|
263
311
|
interface WavelengthFooterProps {
|
|
264
312
|
text?: string;
|
|
265
313
|
textColor?: string;
|
|
@@ -531,4 +579,4 @@ type Props<T> = {
|
|
|
531
579
|
};
|
|
532
580
|
declare const WavelengthDataTable: <T extends DataType>({ data, columns, itemsPerPage, totalPages }: Props<T>) => react_jsx_runtime.JSX.Element;
|
|
533
581
|
|
|
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 };
|
|
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 };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -260,6 +260,54 @@ 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
|
+
|
|
263
311
|
interface WavelengthFooterProps {
|
|
264
312
|
text?: string;
|
|
265
313
|
textColor?: string;
|
|
@@ -531,4 +579,4 @@ type Props<T> = {
|
|
|
531
579
|
};
|
|
532
580
|
declare const WavelengthDataTable: <T extends DataType>({ data, columns, itemsPerPage, totalPages }: Props<T>) => react_jsx_runtime.JSX.Element;
|
|
533
581
|
|
|
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 };
|
|
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 };
|