@wavelengthusaf/components 4.17.0 → 4.18.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.
- package/dist/cjs/index.cjs +105 -162
- package/dist/cjs/index.d.cts +21 -49
- package/dist/esm/index.d.ts +21 -49
- package/dist/esm/index.js +390 -447
- package/package.json +2 -2
package/dist/esm/index.d.ts
CHANGED
|
@@ -217,36 +217,12 @@ declare namespace WavelengthNotAvailablePage {
|
|
|
217
217
|
var displayName: string;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
interface
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
items?: SubSectionItem[];
|
|
225
|
-
}
|
|
226
|
-
interface SubSection {
|
|
227
|
-
title?: string;
|
|
228
|
-
items?: SubSectionItem[];
|
|
229
|
-
}
|
|
230
|
-
interface Section {
|
|
231
|
-
title: string;
|
|
232
|
-
subsections?: SubSection[];
|
|
233
|
-
}
|
|
234
|
-
interface SidebarProps {
|
|
235
|
-
id?: string;
|
|
236
|
-
sections: Section[];
|
|
237
|
-
bgColor?: string;
|
|
238
|
-
txtColor?: string;
|
|
239
|
-
labelColor?: string;
|
|
240
|
-
arrowColor?: string;
|
|
241
|
-
marginTop?: string;
|
|
242
|
-
marginLeft?: string;
|
|
243
|
-
width?: string | number;
|
|
244
|
-
height?: string | number;
|
|
245
|
-
}
|
|
246
|
-
declare function WavelengthSideBar({ sections, txtColor, bgColor, labelColor, arrowColor, marginTop, marginLeft, width, height, id }: SidebarProps): React__default.JSX.Element;
|
|
247
|
-
declare namespace WavelengthSideBar {
|
|
248
|
-
var displayName: string;
|
|
220
|
+
interface WavelengthSideBarProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
221
|
+
customStyle?: StyleProp;
|
|
222
|
+
sections?: string;
|
|
223
|
+
onItemClick?: (e: CustomEvent) => void;
|
|
249
224
|
}
|
|
225
|
+
declare const WavelengthSideBar: React__default.FC<WavelengthSideBarProps>;
|
|
250
226
|
|
|
251
227
|
interface NavItem {
|
|
252
228
|
title: string;
|
|
@@ -382,25 +358,6 @@ interface WavelengthProgressBarProps extends React__default.HTMLAttributes<HTMLE
|
|
|
382
358
|
}
|
|
383
359
|
declare const WavelengthProgressBar: React__default.FC<WavelengthProgressBarProps>;
|
|
384
360
|
|
|
385
|
-
interface CommentProps {
|
|
386
|
-
width?: string;
|
|
387
|
-
height?: string;
|
|
388
|
-
author: string;
|
|
389
|
-
date: string;
|
|
390
|
-
comments: string;
|
|
391
|
-
onClick?: React__default.MouseEventHandler<HTMLButtonElement> | undefined;
|
|
392
|
-
textColor?: string;
|
|
393
|
-
backgroundColor?: string;
|
|
394
|
-
border?: string;
|
|
395
|
-
iconSelectedColor?: string;
|
|
396
|
-
dataTestId?: string;
|
|
397
|
-
id?: string;
|
|
398
|
-
}
|
|
399
|
-
declare function WavelengthCommentDisplay(props: CommentProps): react_jsx_runtime.JSX.Element;
|
|
400
|
-
declare namespace WavelengthCommentDisplay {
|
|
401
|
-
var displayName: string;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
361
|
interface PermissionAlertProps {
|
|
405
362
|
height?: string;
|
|
406
363
|
width?: string;
|
|
@@ -491,6 +448,21 @@ interface WavelengthBadgeProps extends React__default.HTMLAttributes<HTMLElement
|
|
|
491
448
|
}
|
|
492
449
|
declare const WavelengthBadge: React__default.FC<WavelengthBadgeProps>;
|
|
493
450
|
|
|
451
|
+
interface WavelengthCommentDisplayProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
452
|
+
customStyle: StyleProp;
|
|
453
|
+
author?: string;
|
|
454
|
+
comment?: string;
|
|
455
|
+
date?: string;
|
|
456
|
+
width?: string;
|
|
457
|
+
height?: string;
|
|
458
|
+
txtColor?: string;
|
|
459
|
+
bgColor?: string;
|
|
460
|
+
border?: string;
|
|
461
|
+
iconSelectedColor?: string;
|
|
462
|
+
selected?: boolean;
|
|
463
|
+
}
|
|
464
|
+
declare const WavelengthCommentDisplay: React__default.FC<WavelengthCommentDisplayProps>;
|
|
465
|
+
|
|
494
466
|
interface WavelengthFooterProps {
|
|
495
467
|
text?: string;
|
|
496
468
|
textColor?: string;
|
|
@@ -1123,4 +1095,4 @@ interface MultiSelectAutocompleteProps {
|
|
|
1123
1095
|
}
|
|
1124
1096
|
declare const WavelengthMultiSelectAutocomplete: React__default.FC<MultiSelectAutocompleteProps>;
|
|
1125
1097
|
|
|
1126
|
-
export { ButtonIcon, ButtonMenu, ChildDataTable, DefaultCarousel, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, SliderCardCarousel, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthAutocomplete, WavelengthBadge, type WavelengthBadgeProps, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDefaultPagination, WavelengthDialog, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPagination, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSearchTextField, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthSwitch, WavelengthTestSnackbar, WavelengthTitleBar, WavelengthToolTip, WavelengthWebSnackbar, type WavelengthWebSnackbarProps, add, concat, findBestStringMatch, useOutsideClick, useThemeContext };
|
|
1098
|
+
export { ButtonIcon, ButtonMenu, ChildDataTable, DefaultCarousel, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, SliderCardCarousel, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthAutocomplete, WavelengthBadge, type WavelengthBadgeProps, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDefaultPagination, WavelengthDialog, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPagination, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSearchTextField, WavelengthSideBar, type WavelengthSideBarProps, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthSwitch, WavelengthTestSnackbar, WavelengthTitleBar, WavelengthToolTip, WavelengthWebSnackbar, type WavelengthWebSnackbarProps, add, concat, findBestStringMatch, useOutsideClick, useThemeContext };
|