@wavelengthusaf/components 2.10.0 → 2.10.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.
- package/README.md +11 -0
- package/dist/cjs/index.cjs +326 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +50 -1
- package/dist/esm/index.d.ts +50 -1
- package/dist/esm/index.js +522 -200
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -260,6 +260,53 @@ 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 | React__default.ReactNode;
|
|
300
|
+
alertDescription?: string | React__default.ReactNode;
|
|
301
|
+
datatestid?: string;
|
|
302
|
+
viewed?: boolean;
|
|
303
|
+
timeStamp?: string | React__default.ReactNode;
|
|
304
|
+
appName?: string | React__default.ReactNode;
|
|
305
|
+
url?: string;
|
|
306
|
+
onClose?: () => void;
|
|
307
|
+
}
|
|
308
|
+
declare function WavelengthAlert({ viewed, width, height, backgroundColor, appName, alertType, alertDescription, datatestid, variant, timeStamp, url, id, onClose, }: WavelengthAlertProps): react_jsx_runtime.JSX.Element;
|
|
309
|
+
|
|
263
310
|
interface WavelengthFooterProps {
|
|
264
311
|
text?: string;
|
|
265
312
|
textColor?: string;
|
|
@@ -497,8 +544,10 @@ interface TextFieldProps {
|
|
|
497
544
|
height?: string;
|
|
498
545
|
label?: string;
|
|
499
546
|
borderColor?: string;
|
|
547
|
+
value?: string;
|
|
500
548
|
labelColor?: string;
|
|
501
549
|
focusColor?: string;
|
|
550
|
+
inputRef?: React__default.Ref<any> | undefined;
|
|
502
551
|
shrink?: boolean;
|
|
503
552
|
textColor?: string;
|
|
504
553
|
required?: boolean;
|
|
@@ -536,4 +585,4 @@ interface SampleComponentProps extends React__default.HTMLAttributes<HTMLElement
|
|
|
536
585
|
}
|
|
537
586
|
declare const SampleComponent: React__default.FC<SampleComponentProps>;
|
|
538
587
|
|
|
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 };
|
|
588
|
+
export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, SampleComponent, 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,53 @@ 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 | React__default.ReactNode;
|
|
300
|
+
alertDescription?: string | React__default.ReactNode;
|
|
301
|
+
datatestid?: string;
|
|
302
|
+
viewed?: boolean;
|
|
303
|
+
timeStamp?: string | React__default.ReactNode;
|
|
304
|
+
appName?: string | React__default.ReactNode;
|
|
305
|
+
url?: string;
|
|
306
|
+
onClose?: () => void;
|
|
307
|
+
}
|
|
308
|
+
declare function WavelengthAlert({ viewed, width, height, backgroundColor, appName, alertType, alertDescription, datatestid, variant, timeStamp, url, id, onClose, }: WavelengthAlertProps): react_jsx_runtime.JSX.Element;
|
|
309
|
+
|
|
263
310
|
interface WavelengthFooterProps {
|
|
264
311
|
text?: string;
|
|
265
312
|
textColor?: string;
|
|
@@ -497,8 +544,10 @@ interface TextFieldProps {
|
|
|
497
544
|
height?: string;
|
|
498
545
|
label?: string;
|
|
499
546
|
borderColor?: string;
|
|
547
|
+
value?: string;
|
|
500
548
|
labelColor?: string;
|
|
501
549
|
focusColor?: string;
|
|
550
|
+
inputRef?: React__default.Ref<any> | undefined;
|
|
502
551
|
shrink?: boolean;
|
|
503
552
|
textColor?: string;
|
|
504
553
|
required?: boolean;
|
|
@@ -536,4 +585,4 @@ interface SampleComponentProps extends React__default.HTMLAttributes<HTMLElement
|
|
|
536
585
|
}
|
|
537
586
|
declare const SampleComponent: React__default.FC<SampleComponentProps>;
|
|
538
587
|
|
|
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 };
|
|
588
|
+
export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, SampleComponent, 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 };
|