@wavelengthusaf/components 4.5.2 → 4.8.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 +143 -39
- package/dist/cjs/index.d.cts +38 -11
- package/dist/esm/index.d.ts +38 -11
- package/dist/esm/index.js +459 -355
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -5600,6 +5600,27 @@ function WavelengthAlert({
|
|
|
5600
5600
|
}
|
|
5601
5601
|
WavelengthAlert.displayName = "WavelengthAlert";
|
|
5602
5602
|
|
|
5603
|
+
// src/components/PageComponents/WavelengthToolTip.tsx
|
|
5604
|
+
|
|
5605
|
+
|
|
5606
|
+
var WavelengthToolTip = ({ color: color2, font, direction, children, textColor, textContent, ...rest }) => {
|
|
5607
|
+
const ref = _react.useRef.call(void 0, null);
|
|
5608
|
+
const syncAttribute = (attribute, value) => {
|
|
5609
|
+
const el = ref.current;
|
|
5610
|
+
if (!el) return;
|
|
5611
|
+
el.setAttribute(attribute, value);
|
|
5612
|
+
};
|
|
5613
|
+
_react.useEffect.call(void 0, () => {
|
|
5614
|
+
syncAttribute("color", color2 || "");
|
|
5615
|
+
syncAttribute("font", font || "");
|
|
5616
|
+
syncAttribute("direction", direction || "");
|
|
5617
|
+
syncAttribute("text-color", textColor || "");
|
|
5618
|
+
syncAttribute("text-content", textContent || "");
|
|
5619
|
+
}, [color2, font, direction, textColor, textContent]);
|
|
5620
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "wavelength-tooltip", { ref, ...rest, children });
|
|
5621
|
+
};
|
|
5622
|
+
WavelengthToolTip.displayName = "WavelengthToolTip";
|
|
5623
|
+
|
|
5603
5624
|
// src/components/footers/WavelengthFooter/WavelengthFooter.tsx
|
|
5604
5625
|
|
|
5605
5626
|
var _Box = require('@mui/material/Box'); var _Box2 = _interopRequireDefault(_Box);
|
|
@@ -5866,44 +5887,32 @@ WavelengthDefaultIcon.displayName = "WavelengthDefaultIcon";
|
|
|
5866
5887
|
// src/components/CSFD/WavelengthManyPlanes.tsx
|
|
5867
5888
|
|
|
5868
5889
|
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
flippy = "rotate(180)";
|
|
5877
|
-
}
|
|
5878
|
-
const PlaneGrid = ({ opacity: opacity2 }) => {
|
|
5879
|
-
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Grid2.default, { item: true, children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "svg", { width: "40", height: "40", viewBox: "0 0 40 40", transform: flippy, fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5880
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "mask", { id: "mask0_56_851", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "40", height: "40", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "40", width: "40", height: "40", transform: "rotate(90 40 0)", fill: "#D9D9D9" }) }),
|
|
5881
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "g", { mask: "url(#mask0_56_851)", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
5882
|
-
"path",
|
|
5883
|
-
{
|
|
5884
|
-
d: "M4.16662 14.8988L5.76079 14.8988L8.16454 18.1359L18.2616 18.1359L14.1291 4.16669L16.2425 4.16669L24.5075 18.1359L33.985 18.1359C34.5022 18.1359 34.9422 18.3172 35.305 18.68C35.6677 19.0428 35.8491 19.4828 35.8491 20C35.8491 20.5172 35.6677 20.9572 35.305 21.32C34.9422 21.6828 34.5022 21.8642 33.985 21.8642L24.5075 21.8642L16.2425 35.8334L14.1291 35.8334L18.2616 21.8642L8.19662 21.8642L5.76079 25.1013L4.16662 25.1013L5.64329 20L4.16662 14.8988Z",
|
|
5885
|
-
fillOpacity: opacity2,
|
|
5886
|
-
fill: colorish
|
|
5887
|
-
}
|
|
5888
|
-
) })
|
|
5889
|
-
] }) });
|
|
5890
|
-
};
|
|
5891
|
-
const PlaneGridWrapper = (size, baseOpacity) => {
|
|
5892
|
-
const planes = [];
|
|
5893
|
-
if (gradient) {
|
|
5894
|
-
for (let i = 0; i < size; i++) {
|
|
5895
|
-
const currentOpacity = baseOpacity - i / (size - 1) * (baseOpacity - 0.05);
|
|
5896
|
-
planes.push(/* @__PURE__ */ _jsxruntime.jsx.call(void 0, PlaneGrid, { opacity: currentOpacity }, i));
|
|
5897
|
-
}
|
|
5898
|
-
} else {
|
|
5899
|
-
for (let i = 0; i < size; i++) {
|
|
5900
|
-
planes.push(/* @__PURE__ */ _jsxruntime.jsx.call(void 0, PlaneGrid, { opacity: baseOpacity }, i));
|
|
5901
|
-
}
|
|
5890
|
+
var WavelengthManyPlanes = ({ children, numberOfPlanes, trailDir, opacity, color: color2, gradient, spaced, ...rest }) => {
|
|
5891
|
+
const ref = _react.useRef.call(void 0, null);
|
|
5892
|
+
_react.useEffect.call(void 0, () => {
|
|
5893
|
+
const el = ref.current;
|
|
5894
|
+
if (!el) return;
|
|
5895
|
+
if (numberOfPlanes !== void 0) {
|
|
5896
|
+
el.setAttribute("number-of-planes", numberOfPlanes);
|
|
5902
5897
|
}
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5898
|
+
if (trailDir !== void 0) {
|
|
5899
|
+
el.setAttribute("trail-dir", trailDir);
|
|
5900
|
+
}
|
|
5901
|
+
if (opacity !== void 0) {
|
|
5902
|
+
el.setAttribute("opacity", opacity);
|
|
5903
|
+
}
|
|
5904
|
+
if (color2 !== void 0) {
|
|
5905
|
+
el.setAttribute("color", color2);
|
|
5906
|
+
}
|
|
5907
|
+
if (gradient !== void 0) {
|
|
5908
|
+
el.setAttribute("gradient", gradient);
|
|
5909
|
+
}
|
|
5910
|
+
if (spaced !== void 0) {
|
|
5911
|
+
el.setAttribute("spaced", spaced);
|
|
5912
|
+
}
|
|
5913
|
+
}, [numberOfPlanes, trailDir, opacity, color2, gradient, spaced]);
|
|
5914
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "wavelength-manyplanes", { ref, trailDir, opacity, color: color2, gradient, spaced, ...rest, children });
|
|
5915
|
+
};
|
|
5907
5916
|
WavelengthManyPlanes.displayName = "WavelengthManyPlanes";
|
|
5908
5917
|
|
|
5909
5918
|
// src/components/separators/WavelengthPlaneTrail/WavelengthPlaneTrail.tsx
|
|
@@ -6140,7 +6149,29 @@ WavelengthPopUpMenu.displayName = "WavelengthPopUpMenu";
|
|
|
6140
6149
|
|
|
6141
6150
|
|
|
6142
6151
|
var WavelengthDropdown = _react.forwardRef.call(void 0, (props, ref) => {
|
|
6143
|
-
const {
|
|
6152
|
+
const {
|
|
6153
|
+
options,
|
|
6154
|
+
defaultValue,
|
|
6155
|
+
value,
|
|
6156
|
+
fontSize,
|
|
6157
|
+
fontFamily,
|
|
6158
|
+
borderColor: borderColor2,
|
|
6159
|
+
borderRadius: borderRadius2,
|
|
6160
|
+
width: width2,
|
|
6161
|
+
height: height2,
|
|
6162
|
+
textColor,
|
|
6163
|
+
arrowSize,
|
|
6164
|
+
arrowColor,
|
|
6165
|
+
popupRadius,
|
|
6166
|
+
popupAlign,
|
|
6167
|
+
popupSelectedColor,
|
|
6168
|
+
popupBackgroundColor,
|
|
6169
|
+
popupTextColor,
|
|
6170
|
+
popupTextAlign,
|
|
6171
|
+
popupHoverBackground,
|
|
6172
|
+
onChange,
|
|
6173
|
+
...rest
|
|
6174
|
+
} = props;
|
|
6144
6175
|
const elementRef = _react.useRef.call(void 0, null);
|
|
6145
6176
|
_react.useImperativeHandle.call(void 0, ref, () => elementRef.current);
|
|
6146
6177
|
_react.useEffect.call(void 0, () => {
|
|
@@ -6166,20 +6197,91 @@ var WavelengthDropdown = _react.forwardRef.call(void 0, (props, ref) => {
|
|
|
6166
6197
|
defaultValue,
|
|
6167
6198
|
"font-size": fontSize,
|
|
6168
6199
|
"font-family": fontFamily,
|
|
6200
|
+
"border-color": borderColor2,
|
|
6169
6201
|
"border-radius": borderRadius2,
|
|
6170
6202
|
width: width2,
|
|
6171
6203
|
height: height2,
|
|
6172
6204
|
color: textColor,
|
|
6173
6205
|
"arrow-size": arrowSize,
|
|
6206
|
+
"arrow-color": arrowColor,
|
|
6174
6207
|
"popup-radius": popupRadius,
|
|
6175
6208
|
"popup-align": popupAlign,
|
|
6176
6209
|
"popup-selected-color": popupSelectedColor,
|
|
6210
|
+
"popup-background-color": popupBackgroundColor,
|
|
6211
|
+
"popup-text-color": popupTextColor,
|
|
6212
|
+
"popup-text-align": popupTextAlign,
|
|
6213
|
+
"popup-hover-background": popupHoverBackground,
|
|
6177
6214
|
...rest
|
|
6178
6215
|
}
|
|
6179
6216
|
);
|
|
6180
6217
|
});
|
|
6181
6218
|
WavelengthDropdown.displayName = "WavelengthDropdown";
|
|
6182
6219
|
|
|
6220
|
+
// src/components/modals/WavelengthMenu.tsx
|
|
6221
|
+
|
|
6222
|
+
|
|
6223
|
+
var WavelengthMenu = ({
|
|
6224
|
+
backgroundColor: backgroundColor2,
|
|
6225
|
+
textColor,
|
|
6226
|
+
font,
|
|
6227
|
+
fontSize,
|
|
6228
|
+
border: border2,
|
|
6229
|
+
padding: padding2,
|
|
6230
|
+
borderRadius: borderRadius2,
|
|
6231
|
+
selectedColor,
|
|
6232
|
+
disabledColor,
|
|
6233
|
+
items,
|
|
6234
|
+
WavelengthMenuSelect,
|
|
6235
|
+
...rest
|
|
6236
|
+
// This rest operator includes className, style, onClick, etc.
|
|
6237
|
+
}) => {
|
|
6238
|
+
const ref = _react.useRef.call(void 0, null);
|
|
6239
|
+
const syncAttribute = (attribute, value) => {
|
|
6240
|
+
const el = ref.current;
|
|
6241
|
+
if (!el) return;
|
|
6242
|
+
el.setAttribute(attribute, value);
|
|
6243
|
+
};
|
|
6244
|
+
_react.useEffect.call(void 0, () => {
|
|
6245
|
+
const el = ref.current;
|
|
6246
|
+
if (!el) return;
|
|
6247
|
+
syncAttribute("background-color", backgroundColor2 || "");
|
|
6248
|
+
syncAttribute("text-color", textColor || "");
|
|
6249
|
+
syncAttribute("font", font || "");
|
|
6250
|
+
syncAttribute("font-size", fontSize || "");
|
|
6251
|
+
syncAttribute("border", border2 || "");
|
|
6252
|
+
syncAttribute("padding", padding2 || "");
|
|
6253
|
+
syncAttribute("border-radius", borderRadius2 || "");
|
|
6254
|
+
syncAttribute("selected-color", selectedColor || "");
|
|
6255
|
+
syncAttribute("disabled-color", disabledColor || "");
|
|
6256
|
+
syncAttribute("items", JSON.stringify(items) || "");
|
|
6257
|
+
const handleSelect = (event) => {
|
|
6258
|
+
if (WavelengthMenuSelect) WavelengthMenuSelect(event.detail);
|
|
6259
|
+
};
|
|
6260
|
+
el.addEventListener("wavelength-menu-select", handleSelect);
|
|
6261
|
+
return () => {
|
|
6262
|
+
el.removeEventListener("wavelength-menu-select", handleSelect);
|
|
6263
|
+
};
|
|
6264
|
+
}, [backgroundColor2, textColor, font, fontSize, border2, padding2, borderRadius2, selectedColor, disabledColor, items, WavelengthMenuSelect]);
|
|
6265
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
6266
|
+
"wavelength-menu",
|
|
6267
|
+
{
|
|
6268
|
+
ref,
|
|
6269
|
+
"background-color": backgroundColor2,
|
|
6270
|
+
"text-color": textColor,
|
|
6271
|
+
font,
|
|
6272
|
+
"font-size": fontSize,
|
|
6273
|
+
border: border2,
|
|
6274
|
+
padding: padding2,
|
|
6275
|
+
"border-radius": borderRadius2,
|
|
6276
|
+
"selected-color": selectedColor,
|
|
6277
|
+
"disabled-color": disabledColor,
|
|
6278
|
+
items: JSON.stringify(items),
|
|
6279
|
+
...rest
|
|
6280
|
+
}
|
|
6281
|
+
);
|
|
6282
|
+
};
|
|
6283
|
+
WavelengthMenu.displayName = "WavelengthMenu";
|
|
6284
|
+
|
|
6183
6285
|
// src/components/snackbars/WavelengthSnackbar.tsx
|
|
6184
6286
|
var _Snackbar = require('@mui/material/Snackbar'); var _Snackbar2 = _interopRequireDefault(_Snackbar);
|
|
6185
6287
|
var _SnackbarContent = require('@mui/material/SnackbarContent'); var _SnackbarContent2 = _interopRequireDefault(_SnackbarContent);
|
|
@@ -8505,7 +8607,9 @@ var WavelengthMultiSelectAutocomplete = ({ options, placeholder = "Select Option
|
|
|
8505
8607
|
|
|
8506
8608
|
|
|
8507
8609
|
|
|
8508
|
-
|
|
8610
|
+
|
|
8611
|
+
|
|
8612
|
+
exports.ButtonIcon = ButtonIcon; exports.ButtonMenu = ButtonMenu; exports.ChildDataTable = ChildDataTable2; exports.ChildDataTableElement = _webcomponents.ChildDataTable; exports.DefaultCarousel = DefaultCarousel; exports.NestedDataTable = NestedDataTable; exports.SampleComponent = SampleComponent; exports.SampleComponentElement = _webcomponents.SampleComponent; exports.SliderCardCarousel = SliderCardCarousel; exports.WavelengthAccessAlert = WavelengthAccessAlert; exports.WavelengthAlert = WavelengthAlert; exports.WavelengthAppLogo = WavelengthAppLogo; exports.WavelengthAppTheme = WavelengthAppTheme; exports.WavelengthAutoComplete = WavelengthAutoComplete; exports.WavelengthAutocomplete = WavelengthAutocomplete; exports.WavelengthBanner = WavelengthBanner; exports.WavelengthBannerElement = _webcomponents.WavelengthBanner; exports.WavelengthBox = WavelengthBox; exports.WavelengthButton = WavelengthButton; exports.WavelengthButtonElement = _webcomponents.WavelengthButton; exports.WavelengthCheckbox = WavelengthCheckbox; exports.WavelengthCommentDisplay = WavelengthCommentDisplay; exports.WavelengthConfirmationModal = WavelengthConfirmationModal; exports.WavelengthContentModal = WavelengthContentModal; exports.WavelengthContentPlaceholder = WavelengthContentPlaceholder; exports.WavelengthDataTable = WavelengthDataTable; exports.WavelengthDatePicker = WavelengthDatePicker; exports.WavelengthDatePickerElement = _webcomponents.WavelengthDatePicker; exports.WavelengthDefaultIcon = WavelengthDefaultIcon; exports.WavelengthDefaultPagination = WavelengthDefaultPagination; exports.WavelengthDragAndDrop = WavelengthDragAndDrop; exports.WavelengthDropdown = WavelengthDropdown; exports.WavelengthDropdownButton = WavelengthDropdownButton; exports.WavelengthExampleComponent = WavelengthExampleComponent; exports.WavelengthFileDownloader = WavelengthFileDownloader; exports.WavelengthFileDropZone = WavelengthFileDropZone; exports.WavelengthFooter = WavelengthFooter; exports.WavelengthForm = WavelengthForm; exports.WavelengthFormElement = _webcomponents.WavelengthForm; exports.WavelengthInput = WavelengthInput; exports.WavelengthInputElement = _webcomponents.WavelengthInput; exports.WavelengthManyPlanes = WavelengthManyPlanes; exports.WavelengthMenu = WavelengthMenu; exports.WavelengthMultiSelectAutocomplete = WavelengthMultiSelectAutocomplete; exports.WavelengthMultiSelectAutocompleteElement = _webcomponents.WavelengthMultiSelectAutocomplete; exports.WavelengthNavBar = WavelengthNavBar; exports.WavelengthNotAvailablePage = WavelengthNotAvailablePage; exports.WavelengthNotificationPanel = WavelengthNotificationPanel; exports.WavelengthPermissionAlert = WavelengthPermissionAlert; exports.WavelengthPlaneTrail = WavelengthPlaneTrail; exports.WavelengthPopUpMenu = WavelengthPopUpMenu; exports.WavelengthProgressBar = WavelengthProgressBar; exports.WavelengthProgressBarElement = _webcomponents.WavelengthProgressBar; exports.WavelengthSearch = WavelengthSearch; exports.WavelengthSearchTextField = WavelengthSearchTextField; exports.WavelengthSideBar = WavelengthSideBar; exports.WavelengthSlider = WavelengthSlider; exports.WavelengthSnackbar = WavelengthSnackbar; exports.WavelengthSpinningLogo = WavelengthSpinningLogo; exports.WavelengthSpinningOuterCircle = WavelengthSpinningOuterCircle; exports.WavelengthStandardSnackbar = WavelengthStandardSnackbar; exports.WavelengthStyledButton = WavelengthStyledButton; exports.WavelengthTestSnackbar = WavelengthTestSnackbar; exports.WavelengthTitleBar = WavelengthTitleBar; exports.WavelengthTitleBarElement = _webcomponents.WavelengthTitleBar; exports.WavelengthToolTip = WavelengthToolTip; exports.WavelengthWebSnackbar = WavelengthWebSnackbar; exports.add = add; exports.ascendingRange = ascendingRange; exports.concat = concat; exports.findBestStringMatch = findBestStringMatch; exports.range = range; exports.useOutsideClick = useOutsideClick; exports.useThemeContext = useThemeContext;
|
|
8509
8613
|
/*! Bundled license information:
|
|
8510
8614
|
|
|
8511
8615
|
react-is/cjs/react-is.production.min.js:
|
package/dist/cjs/index.d.cts
CHANGED
|
@@ -463,6 +463,15 @@ declare namespace WavelengthAlert {
|
|
|
463
463
|
var displayName: string;
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
+
interface WavelengthToolTipProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
467
|
+
color?: string;
|
|
468
|
+
font?: string;
|
|
469
|
+
direction?: string;
|
|
470
|
+
textColor?: string;
|
|
471
|
+
textContent?: string;
|
|
472
|
+
}
|
|
473
|
+
declare const WavelengthToolTip: React__default.FC<WavelengthToolTipProps>;
|
|
474
|
+
|
|
466
475
|
interface WavelengthFooterProps {
|
|
467
476
|
text?: string;
|
|
468
477
|
textColor?: string;
|
|
@@ -591,18 +600,15 @@ declare namespace WavelengthDefaultIcon {
|
|
|
591
600
|
var displayName: string;
|
|
592
601
|
}
|
|
593
602
|
|
|
594
|
-
interface
|
|
595
|
-
numberOfPlanes?:
|
|
596
|
-
trailDir?:
|
|
603
|
+
interface WavelengthManyPlanesProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
604
|
+
numberOfPlanes?: string;
|
|
605
|
+
trailDir?: string;
|
|
606
|
+
opacity?: string;
|
|
597
607
|
color?: string;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
id?: string;
|
|
601
|
-
}
|
|
602
|
-
declare function WavelengthManyPlanes({ numberOfPlanes, trailDir, color, opacity, gradient, id }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
603
|
-
declare namespace WavelengthManyPlanes {
|
|
604
|
-
var displayName: string;
|
|
608
|
+
gradient?: string;
|
|
609
|
+
spaced?: string;
|
|
605
610
|
}
|
|
611
|
+
declare const WavelengthManyPlanes: React__default.FC<WavelengthManyPlanesProps>;
|
|
606
612
|
|
|
607
613
|
type StyleProp = {
|
|
608
614
|
[selector: string]: any;
|
|
@@ -686,17 +692,38 @@ interface WavelengthDropdownProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
686
692
|
textColor?: string;
|
|
687
693
|
fontSize?: string;
|
|
688
694
|
fontFamily?: string;
|
|
695
|
+
borderColor?: string;
|
|
689
696
|
borderRadius?: string;
|
|
690
697
|
width?: string;
|
|
691
698
|
height?: string;
|
|
692
699
|
arrowSize?: string;
|
|
700
|
+
arrowColor?: string;
|
|
693
701
|
popupRadius?: string;
|
|
694
702
|
popupAlign?: "left" | "center" | "right";
|
|
695
703
|
popupSelectedColor?: string;
|
|
704
|
+
popupBackgroundColor?: string;
|
|
705
|
+
popupTextColor?: string;
|
|
706
|
+
popupTextAlign?: string;
|
|
707
|
+
popupHoverBackground?: string;
|
|
696
708
|
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
697
709
|
}
|
|
698
710
|
declare const WavelengthDropdown: React$1.ForwardRefExoticComponent<WavelengthDropdownProps & React$1.RefAttributes<HTMLElement>>;
|
|
699
711
|
|
|
712
|
+
interface WavelengthMenuProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
713
|
+
backgroundColor?: string;
|
|
714
|
+
textColor?: string;
|
|
715
|
+
font?: string;
|
|
716
|
+
fontSize?: string;
|
|
717
|
+
border?: string;
|
|
718
|
+
padding?: string;
|
|
719
|
+
borderRadius?: string;
|
|
720
|
+
selectedColor?: string;
|
|
721
|
+
disabledColor?: string;
|
|
722
|
+
items?: any[];
|
|
723
|
+
WavelengthMenuSelect?: (item: any) => void;
|
|
724
|
+
}
|
|
725
|
+
declare const WavelengthMenu: React__default.FC<WavelengthMenuProps>;
|
|
726
|
+
|
|
700
727
|
interface ConfirmationSnackbarProps {
|
|
701
728
|
show: boolean;
|
|
702
729
|
setShow: (show: boolean) => void;
|
|
@@ -1032,4 +1059,4 @@ interface MultiSelectAutocompleteProps {
|
|
|
1032
1059
|
}
|
|
1033
1060
|
declare const WavelengthMultiSelectAutocomplete: React__default.FC<MultiSelectAutocompleteProps>;
|
|
1034
1061
|
|
|
1035
|
-
export { ButtonIcon, ButtonMenu, ChildDataTable, DefaultCarousel, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchProps, type SearchResult, SliderCardCarousel, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDefaultPagination, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSearchTextField, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTestSnackbar, WavelengthTitleBar, WavelengthWebSnackbar, type WavelengthWebSnackbarProps, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
|
|
1062
|
+
export { ButtonIcon, ButtonMenu, ChildDataTable, DefaultCarousel, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchProps, type SearchResult, SliderCardCarousel, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDefaultPagination, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSearchTextField, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTestSnackbar, WavelengthTitleBar, WavelengthToolTip, WavelengthWebSnackbar, type WavelengthWebSnackbarProps, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -463,6 +463,15 @@ declare namespace WavelengthAlert {
|
|
|
463
463
|
var displayName: string;
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
+
interface WavelengthToolTipProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
467
|
+
color?: string;
|
|
468
|
+
font?: string;
|
|
469
|
+
direction?: string;
|
|
470
|
+
textColor?: string;
|
|
471
|
+
textContent?: string;
|
|
472
|
+
}
|
|
473
|
+
declare const WavelengthToolTip: React__default.FC<WavelengthToolTipProps>;
|
|
474
|
+
|
|
466
475
|
interface WavelengthFooterProps {
|
|
467
476
|
text?: string;
|
|
468
477
|
textColor?: string;
|
|
@@ -591,18 +600,15 @@ declare namespace WavelengthDefaultIcon {
|
|
|
591
600
|
var displayName: string;
|
|
592
601
|
}
|
|
593
602
|
|
|
594
|
-
interface
|
|
595
|
-
numberOfPlanes?:
|
|
596
|
-
trailDir?:
|
|
603
|
+
interface WavelengthManyPlanesProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
604
|
+
numberOfPlanes?: string;
|
|
605
|
+
trailDir?: string;
|
|
606
|
+
opacity?: string;
|
|
597
607
|
color?: string;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
id?: string;
|
|
601
|
-
}
|
|
602
|
-
declare function WavelengthManyPlanes({ numberOfPlanes, trailDir, color, opacity, gradient, id }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
603
|
-
declare namespace WavelengthManyPlanes {
|
|
604
|
-
var displayName: string;
|
|
608
|
+
gradient?: string;
|
|
609
|
+
spaced?: string;
|
|
605
610
|
}
|
|
611
|
+
declare const WavelengthManyPlanes: React__default.FC<WavelengthManyPlanesProps>;
|
|
606
612
|
|
|
607
613
|
type StyleProp = {
|
|
608
614
|
[selector: string]: any;
|
|
@@ -686,17 +692,38 @@ interface WavelengthDropdownProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
686
692
|
textColor?: string;
|
|
687
693
|
fontSize?: string;
|
|
688
694
|
fontFamily?: string;
|
|
695
|
+
borderColor?: string;
|
|
689
696
|
borderRadius?: string;
|
|
690
697
|
width?: string;
|
|
691
698
|
height?: string;
|
|
692
699
|
arrowSize?: string;
|
|
700
|
+
arrowColor?: string;
|
|
693
701
|
popupRadius?: string;
|
|
694
702
|
popupAlign?: "left" | "center" | "right";
|
|
695
703
|
popupSelectedColor?: string;
|
|
704
|
+
popupBackgroundColor?: string;
|
|
705
|
+
popupTextColor?: string;
|
|
706
|
+
popupTextAlign?: string;
|
|
707
|
+
popupHoverBackground?: string;
|
|
696
708
|
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
697
709
|
}
|
|
698
710
|
declare const WavelengthDropdown: React$1.ForwardRefExoticComponent<WavelengthDropdownProps & React$1.RefAttributes<HTMLElement>>;
|
|
699
711
|
|
|
712
|
+
interface WavelengthMenuProps extends React__default.HTMLAttributes<HTMLElement> {
|
|
713
|
+
backgroundColor?: string;
|
|
714
|
+
textColor?: string;
|
|
715
|
+
font?: string;
|
|
716
|
+
fontSize?: string;
|
|
717
|
+
border?: string;
|
|
718
|
+
padding?: string;
|
|
719
|
+
borderRadius?: string;
|
|
720
|
+
selectedColor?: string;
|
|
721
|
+
disabledColor?: string;
|
|
722
|
+
items?: any[];
|
|
723
|
+
WavelengthMenuSelect?: (item: any) => void;
|
|
724
|
+
}
|
|
725
|
+
declare const WavelengthMenu: React__default.FC<WavelengthMenuProps>;
|
|
726
|
+
|
|
700
727
|
interface ConfirmationSnackbarProps {
|
|
701
728
|
show: boolean;
|
|
702
729
|
setShow: (show: boolean) => void;
|
|
@@ -1032,4 +1059,4 @@ interface MultiSelectAutocompleteProps {
|
|
|
1032
1059
|
}
|
|
1033
1060
|
declare const WavelengthMultiSelectAutocomplete: React__default.FC<MultiSelectAutocompleteProps>;
|
|
1034
1061
|
|
|
1035
|
-
export { ButtonIcon, ButtonMenu, ChildDataTable, DefaultCarousel, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchProps, type SearchResult, SliderCardCarousel, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDefaultPagination, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSearchTextField, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTestSnackbar, WavelengthTitleBar, WavelengthWebSnackbar, type WavelengthWebSnackbarProps, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
|
|
1062
|
+
export { ButtonIcon, ButtonMenu, ChildDataTable, DefaultCarousel, type IFileSelectedEventDetail, type NavItem, NestedDataTable, SampleComponent, type SearchProps, type SearchResult, SliderCardCarousel, type StyledButtonPropsTwo, type ThemeProperties, WavelengthAccessAlert, WavelengthAlert, WavelengthAppLogo, WavelengthAppTheme, WavelengthAutoComplete, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDataTable, WavelengthDatePicker, WavelengthDefaultIcon, WavelengthDefaultPagination, WavelengthDragAndDrop, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFileDropZone, type WavelengthFileDropZoneProps, WavelengthFooter, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, type WavelengthNavBarProps, WavelengthNotAvailablePage, WavelengthNotificationPanel, WavelengthPermissionAlert, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSearchTextField, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthStyledButton, WavelengthTestSnackbar, WavelengthTitleBar, WavelengthToolTip, WavelengthWebSnackbar, type WavelengthWebSnackbarProps, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
|