@wavelengthusaf/components 2.6.0 → 2.7.1

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.
@@ -241,6 +241,20 @@ interface ProgressProps {
241
241
  }
242
242
  declare function WavelengthProgressBar({ width, height, backgroundColor, borderRadius, progressColor, value, name, textColor }: ProgressProps): react_jsx_runtime.JSX.Element;
243
243
 
244
+ interface CommentProps {
245
+ width?: string;
246
+ height?: string;
247
+ author: string;
248
+ date: string;
249
+ comments: string;
250
+ onClick?: React__default.MouseEventHandler<HTMLButtonElement> | undefined;
251
+ textColor?: string;
252
+ backgroundColor?: string;
253
+ border?: string;
254
+ iconSelectedColor?: string;
255
+ }
256
+ declare function WavelengthCommentDisplay(props: CommentProps): react_jsx_runtime.JSX.Element;
257
+
244
258
  interface WavelengthFooterProps {
245
259
  text?: string;
246
260
  textColor?: string;
@@ -483,7 +497,10 @@ interface TextFieldProps {
483
497
  regex?: RegExp;
484
498
  placeholder?: string;
485
499
  type?: string;
500
+ variant?: "outlined" | "standard";
501
+ error?: boolean;
502
+ errorMessage?: string;
486
503
  }
487
- declare function WavelengthTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
504
+ declare function WavelengthTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element | null;
488
505
 
489
- 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, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, 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 };
506
+ 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, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, 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 };
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ interface CommentProps {
3
+ width?: string;
4
+ height?: string;
5
+ author: string;
6
+ date: string;
7
+ comments: string;
8
+ onClick?: React.MouseEventHandler<HTMLButtonElement> | undefined;
9
+ textColor?: string;
10
+ backgroundColor?: string;
11
+ border?: string;
12
+ iconSelectedColor?: string;
13
+ }
14
+ export declare function WavelengthCommentDisplay(props: CommentProps): import("react/jsx-runtime").JSX.Element;
15
+ export default WavelengthCommentDisplay;
16
+ //# sourceMappingURL=WavelengthCommentDisplay.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WavelengthCommentDisplay.d.ts","sourceRoot":"","sources":["../../../src/components/PageComponents/WavelengthCommentDisplay.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,UAAU,YAAY;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC;IACjE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AACD,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,YAAY,2CA8C3D;AAED,eAAe,wBAAwB,CAAC"}
@@ -13,7 +13,10 @@ interface TextFieldProps {
13
13
  regex?: RegExp;
14
14
  placeholder?: string;
15
15
  type?: string;
16
+ variant?: "outlined" | "standard";
17
+ error?: boolean;
18
+ errorMessage?: string;
16
19
  }
17
- export declare function WavelengthTextField(props: TextFieldProps): import("react/jsx-runtime").JSX.Element;
20
+ export declare function WavelengthTextField(props: TextFieldProps): import("react/jsx-runtime").JSX.Element | null;
18
21
  export default WavelengthTextField;
19
22
  //# sourceMappingURL=WavelengthTextField.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"WavelengthTextField.d.ts","sourceRoot":"","sources":["../../../src/components/TextField/WavelengthTextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAGrD,UAAU,cAAc;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,gBAAgB,GAAG,mBAAmB,CAAC,GAAG,SAAS,CAAC;IACxF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,cAAc,2CAoDxD;AAED,eAAe,mBAAmB,CAAC"}
1
+ {"version":3,"file":"WavelengthTextField.d.ts","sourceRoot":"","sources":["../../../src/components/TextField/WavelengthTextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAyDrD,UAAU,cAAc;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,gBAAgB,GAAG,mBAAmB,CAAC,GAAG,SAAS,CAAC;IACxF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,UAAU,GAAG,UAAU,CAAC;IAClC,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,cAAc,kDAoFxD;AAED,eAAe,mBAAmB,CAAC"}
@@ -241,6 +241,20 @@ interface ProgressProps {
241
241
  }
242
242
  declare function WavelengthProgressBar({ width, height, backgroundColor, borderRadius, progressColor, value, name, textColor }: ProgressProps): react_jsx_runtime.JSX.Element;
243
243
 
244
+ interface CommentProps {
245
+ width?: string;
246
+ height?: string;
247
+ author: string;
248
+ date: string;
249
+ comments: string;
250
+ onClick?: React__default.MouseEventHandler<HTMLButtonElement> | undefined;
251
+ textColor?: string;
252
+ backgroundColor?: string;
253
+ border?: string;
254
+ iconSelectedColor?: string;
255
+ }
256
+ declare function WavelengthCommentDisplay(props: CommentProps): react_jsx_runtime.JSX.Element;
257
+
244
258
  interface WavelengthFooterProps {
245
259
  text?: string;
246
260
  textColor?: string;
@@ -483,7 +497,10 @@ interface TextFieldProps {
483
497
  regex?: RegExp;
484
498
  placeholder?: string;
485
499
  type?: string;
500
+ variant?: "outlined" | "standard";
501
+ error?: boolean;
502
+ errorMessage?: string;
486
503
  }
487
- declare function WavelengthTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
504
+ declare function WavelengthTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element | null;
488
505
 
489
- 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, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, 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 };
506
+ 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, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, 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 };