@wavelengthusaf/components 2.3.0 → 2.3.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 +4 -0
- package/dist/cjs/index.cjs +5412 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/cjs/index.d.cts +425 -0
- package/dist/esm/index.d.ts +425 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +9 -7
- package/dist/index.js.map +0 -1
- /package/dist/{index.js → esm/index.js} +0 -0
|
@@ -0,0 +1,425 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default, { ReactNode } from 'react';
|
|
3
|
+
import { SxProps, Theme } from '@mui/material/styles';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
+
import { TextFieldVariants, SxProps as SxProps$1, Theme as Theme$1 } from '@mui/material';
|
|
6
|
+
import { Mark } from '@mui/material/Slider/useSlider.types';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Helper Functions
|
|
10
|
+
* @param a
|
|
11
|
+
* @param b
|
|
12
|
+
* @returns
|
|
13
|
+
*/
|
|
14
|
+
declare function add(a: number, b: number): number;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Helper Functions
|
|
18
|
+
* @param a
|
|
19
|
+
* @param b
|
|
20
|
+
* @returns
|
|
21
|
+
*/
|
|
22
|
+
declare function concat(a: string, b: string): string;
|
|
23
|
+
|
|
24
|
+
interface OutlinedButtonProps {
|
|
25
|
+
id?: string;
|
|
26
|
+
variant: "outlined" | "contained" | "text" | "custom";
|
|
27
|
+
colorOne?: string;
|
|
28
|
+
colorTwo?: string;
|
|
29
|
+
onClick?: any;
|
|
30
|
+
margin?: string;
|
|
31
|
+
padding?: string;
|
|
32
|
+
autoFocus?: boolean;
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
children?: ReactNode;
|
|
35
|
+
data_test?: string;
|
|
36
|
+
borderRadius?: string;
|
|
37
|
+
mySx?: SxProps<Theme> | undefined;
|
|
38
|
+
}
|
|
39
|
+
declare function WavelengthButton({ id, variant, colorOne, colorTwo, margin, padding, autoFocus, disabled, onClick, children, borderRadius, mySx }: OutlinedButtonProps): React__default.JSX.Element;
|
|
40
|
+
|
|
41
|
+
interface ButtonProps {
|
|
42
|
+
onClick?: any;
|
|
43
|
+
children?: ReactNode;
|
|
44
|
+
}
|
|
45
|
+
interface IconProps {
|
|
46
|
+
text: string;
|
|
47
|
+
numIcon?: string;
|
|
48
|
+
children: ReactNode;
|
|
49
|
+
active?: boolean;
|
|
50
|
+
width: string;
|
|
51
|
+
height: number;
|
|
52
|
+
fontsize: number;
|
|
53
|
+
}
|
|
54
|
+
declare function ButtonIcon({ text, numIcon, children, active, width, height, fontsize }: IconProps): react_jsx_runtime.JSX.Element;
|
|
55
|
+
interface ButtonMenuProps {
|
|
56
|
+
children: ReactNode;
|
|
57
|
+
}
|
|
58
|
+
declare function ButtonMenu({ children }: ButtonMenuProps): react_jsx_runtime.JSX.Element;
|
|
59
|
+
declare function WavelengthDropdownButton({ children, onClick }: ButtonProps): React__default.JSX.Element;
|
|
60
|
+
|
|
61
|
+
interface WavelengthAutocompleteProps {
|
|
62
|
+
id?: string;
|
|
63
|
+
label: string;
|
|
64
|
+
items?: any;
|
|
65
|
+
variant?: TextFieldVariants;
|
|
66
|
+
width?: number;
|
|
67
|
+
borderColor?: string;
|
|
68
|
+
hoverColor?: string;
|
|
69
|
+
textColor?: string;
|
|
70
|
+
onChange?: (selectedValue: string) => void;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Returns the Best Matching String from a List; Defaults to the first item if no good match is found
|
|
74
|
+
* @param searchString - the string we want to look for
|
|
75
|
+
* @param choices - the list of strings we get to choose from (must be greater than 0)
|
|
76
|
+
* @returns - a string with the "best" match, or "" if no match is found
|
|
77
|
+
*/
|
|
78
|
+
declare function findBestStringMatch(searchString: string, choices: string[]): string;
|
|
79
|
+
declare function WavelengthAutocomplete({ label, width, variant, items, onChange, borderColor, textColor, hoverColor, id }: WavelengthAutocompleteProps): react_jsx_runtime.JSX.Element;
|
|
80
|
+
|
|
81
|
+
interface DownloadProps {
|
|
82
|
+
fileLoc: "local" | "api";
|
|
83
|
+
fileURL: string;
|
|
84
|
+
fileName: string;
|
|
85
|
+
button?: ReactNode | React__default.JSX.Element;
|
|
86
|
+
id?: string;
|
|
87
|
+
}
|
|
88
|
+
declare function WavelengthFileDownloader({ fileLoc, fileURL, fileName, button, id }: DownloadProps): react_jsx_runtime.JSX.Element | undefined;
|
|
89
|
+
|
|
90
|
+
interface WavelengthBoxProps {
|
|
91
|
+
width?: number;
|
|
92
|
+
height?: number;
|
|
93
|
+
children: ReactNode;
|
|
94
|
+
borderTopRadius?: string;
|
|
95
|
+
borderBottomRadius?: string;
|
|
96
|
+
id?: string;
|
|
97
|
+
}
|
|
98
|
+
declare function WavelengthBox({ width, height, children, borderBottomRadius, borderTopRadius, id }: WavelengthBoxProps): react_jsx_runtime.JSX.Element;
|
|
99
|
+
|
|
100
|
+
interface WavelengthContentPlaceholderProps {
|
|
101
|
+
type?: "circle" | "rectangle";
|
|
102
|
+
width?: string | number;
|
|
103
|
+
height?: string | number;
|
|
104
|
+
txtcolor?: string;
|
|
105
|
+
bgcolor?: string;
|
|
106
|
+
children: ReactNode;
|
|
107
|
+
id?: string;
|
|
108
|
+
}
|
|
109
|
+
declare function WavelengthContentPlaceholder({ type, width, height, txtcolor, bgcolor, children, id }: WavelengthContentPlaceholderProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
|
|
111
|
+
interface WavelengthExampleComponentProps {
|
|
112
|
+
width?: number;
|
|
113
|
+
height?: number;
|
|
114
|
+
}
|
|
115
|
+
declare function WavelengthExampleComponent({ width, height }: WavelengthExampleComponentProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
|
|
117
|
+
interface SearchResult {
|
|
118
|
+
id: number | string;
|
|
119
|
+
title: string;
|
|
120
|
+
subtitle?: string;
|
|
121
|
+
}
|
|
122
|
+
interface SearchProps {
|
|
123
|
+
id?: string;
|
|
124
|
+
mode: "automatic" | "manual";
|
|
125
|
+
type?: "text-box" | "search-bar";
|
|
126
|
+
iconPos?: "start" | "end";
|
|
127
|
+
borderRadius?: number | string;
|
|
128
|
+
label?: string;
|
|
129
|
+
width?: string;
|
|
130
|
+
height?: string | number;
|
|
131
|
+
children?: ReactNode;
|
|
132
|
+
borderColor?: string;
|
|
133
|
+
hoverColor?: string;
|
|
134
|
+
textColor?: string;
|
|
135
|
+
backgroundColor?: string;
|
|
136
|
+
placeholder?: string;
|
|
137
|
+
onEnter?: (arg0?: any) => any;
|
|
138
|
+
size?: "small" | "medium";
|
|
139
|
+
fontSize?: string;
|
|
140
|
+
options: SearchResult[];
|
|
141
|
+
onChange?: React__default.ChangeEventHandler<HTMLInputElement | HTMLTextAreaElement>;
|
|
142
|
+
onSearchItemSelected?: (selectedItem: SearchResult | string) => void;
|
|
143
|
+
}
|
|
144
|
+
declare function WavelengthSearch({ id, mode, type, width, height, label, size, borderRadius, children, placeholder, onEnter, onSearchItemSelected, options, onChange, borderColor, hoverColor, textColor, fontSize, backgroundColor, iconPos, }: SearchProps): react_jsx_runtime.JSX.Element | undefined;
|
|
145
|
+
|
|
146
|
+
declare function SearchTextField(): react_jsx_runtime.JSX.Element;
|
|
147
|
+
|
|
148
|
+
interface NotAvailablePageProps {
|
|
149
|
+
appLogoName?: string;
|
|
150
|
+
errorMessage: string;
|
|
151
|
+
backgroundColor?: string;
|
|
152
|
+
buttonText: string;
|
|
153
|
+
redirectLink?: string;
|
|
154
|
+
buttonColorOne?: string;
|
|
155
|
+
buttonColorTwo?: string;
|
|
156
|
+
id?: string;
|
|
157
|
+
}
|
|
158
|
+
declare function NotAvailablePage({ appLogoName, errorMessage, backgroundColor, buttonText, redirectLink, buttonColorOne, buttonColorTwo, id }: NotAvailablePageProps): react_jsx_runtime.JSX.Element;
|
|
159
|
+
|
|
160
|
+
interface SubSectionItem {
|
|
161
|
+
title?: string;
|
|
162
|
+
path?: string;
|
|
163
|
+
onClick?: () => void;
|
|
164
|
+
items?: SubSectionItem[];
|
|
165
|
+
}
|
|
166
|
+
interface SubSection {
|
|
167
|
+
title?: string;
|
|
168
|
+
items?: SubSectionItem[];
|
|
169
|
+
}
|
|
170
|
+
interface Section {
|
|
171
|
+
title: string;
|
|
172
|
+
subsections?: SubSection[];
|
|
173
|
+
}
|
|
174
|
+
interface SidebarProps {
|
|
175
|
+
id?: string;
|
|
176
|
+
sections: Section[];
|
|
177
|
+
bgColor?: string;
|
|
178
|
+
txtColor?: string;
|
|
179
|
+
labelColor?: string;
|
|
180
|
+
arrowColor?: string;
|
|
181
|
+
marginTop?: string;
|
|
182
|
+
marginLeft?: string;
|
|
183
|
+
width?: string | number;
|
|
184
|
+
height?: string | number;
|
|
185
|
+
}
|
|
186
|
+
declare function WavelengthSideBar({ sections, txtColor, bgColor, labelColor, arrowColor, marginTop, marginLeft, width, height, id }: SidebarProps): React__default.JSX.Element;
|
|
187
|
+
|
|
188
|
+
interface ISpinningSvgProps {
|
|
189
|
+
size: number;
|
|
190
|
+
id: "outer-circle" | "middle-circle" | "inner-circle" | "spinning";
|
|
191
|
+
clip: string;
|
|
192
|
+
color: string;
|
|
193
|
+
gradient: boolean;
|
|
194
|
+
radius: number;
|
|
195
|
+
}
|
|
196
|
+
declare function WavelengthSpinningOuterCircle({ size, id, clip, color, gradient, radius }: ISpinningSvgProps): react_jsx_runtime.JSX.Element;
|
|
197
|
+
|
|
198
|
+
interface spinningLogoProps {
|
|
199
|
+
svg?: React__default.ReactNode;
|
|
200
|
+
size?: number;
|
|
201
|
+
id?: string;
|
|
202
|
+
}
|
|
203
|
+
declare function WavelengthSpinningLogo({ svg, size, id }: spinningLogoProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
|
|
205
|
+
interface WavelengthFooterProps {
|
|
206
|
+
text?: string;
|
|
207
|
+
textColor?: string;
|
|
208
|
+
}
|
|
209
|
+
declare function WavelengthFooter({ text, textColor }: WavelengthFooterProps): react_jsx_runtime.JSX.Element;
|
|
210
|
+
|
|
211
|
+
interface titlebarProps {
|
|
212
|
+
id?: string;
|
|
213
|
+
}
|
|
214
|
+
declare function WavelengthTitleBar({ id }: titlebarProps): react_jsx_runtime.JSX.Element;
|
|
215
|
+
|
|
216
|
+
interface WavelengthBannerProps {
|
|
217
|
+
classification?: "unclassified" | "controlled" | "controlled unclassified information" | "cui" | "u" | "confidential" | "c" | "secret" | "s" | "top secret" | "ts" | string;
|
|
218
|
+
control?: ("cui" | "sci" | "fouo" | "nf" | "propin" | "frd" | "gbr s" | "si" | "si-g" | "tk" | "relido" | "rd" | "rd-n" | "rel" | "fvey" | "hcs" | string)[];
|
|
219
|
+
headerColor?: string;
|
|
220
|
+
textColor?: string;
|
|
221
|
+
id?: string;
|
|
222
|
+
}
|
|
223
|
+
declare function WavelengthBanner({ classification, control, headerColor, textColor, id }: WavelengthBannerProps): react_jsx_runtime.JSX.Element;
|
|
224
|
+
|
|
225
|
+
interface AppLogoProps {
|
|
226
|
+
width?: number;
|
|
227
|
+
height?: number;
|
|
228
|
+
name?: string;
|
|
229
|
+
grayscale?: boolean;
|
|
230
|
+
id?: string;
|
|
231
|
+
}
|
|
232
|
+
declare function AppLogo({ width, height, name, grayscale, id }: AppLogoProps): react_jsx_runtime.JSX.Element;
|
|
233
|
+
|
|
234
|
+
interface HeaderProps {
|
|
235
|
+
numberOfPlanes?: number;
|
|
236
|
+
trailDir?: "right" | "left";
|
|
237
|
+
color?: string;
|
|
238
|
+
opacity?: number;
|
|
239
|
+
gradient?: boolean;
|
|
240
|
+
}
|
|
241
|
+
declare function ManyPlanesComponent({ numberOfPlanes, trailDir, color, opacity, gradient }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
242
|
+
|
|
243
|
+
interface DefaultProps {
|
|
244
|
+
width?: string;
|
|
245
|
+
height?: number;
|
|
246
|
+
}
|
|
247
|
+
declare function DefaultIcon({ width, height }: DefaultProps): react_jsx_runtime.JSX.Element;
|
|
248
|
+
|
|
249
|
+
interface WavelengthPlaneTrailProps {
|
|
250
|
+
trailDir?: "right" | "left";
|
|
251
|
+
id?: string;
|
|
252
|
+
}
|
|
253
|
+
declare function WavelengthPlaneTrail({ trailDir, id }: WavelengthPlaneTrailProps): react_jsx_runtime.JSX.Element;
|
|
254
|
+
|
|
255
|
+
type ThemeProperties = {
|
|
256
|
+
name?: string;
|
|
257
|
+
};
|
|
258
|
+
declare const WavelengthAppTheme: React.Context<ThemeProperties>;
|
|
259
|
+
declare const useThemeContext: () => ThemeProperties;
|
|
260
|
+
|
|
261
|
+
interface WavelengthConfirmationModalProps {
|
|
262
|
+
show: boolean;
|
|
263
|
+
setShow: (show: boolean) => void;
|
|
264
|
+
textObj: Record<string, string>;
|
|
265
|
+
handleConfirmationModalOnConfirmProp: () => void;
|
|
266
|
+
id?: string;
|
|
267
|
+
}
|
|
268
|
+
declare function WavelengthConfirmationModal(props: WavelengthConfirmationModalProps): react_jsx_runtime.JSX.Element;
|
|
269
|
+
|
|
270
|
+
interface WavelengthContentModalProps {
|
|
271
|
+
show: boolean;
|
|
272
|
+
setShow: (show: boolean) => void;
|
|
273
|
+
textObj: Record<string, string>;
|
|
274
|
+
handleContentModalOnConfirmProp: () => void;
|
|
275
|
+
}
|
|
276
|
+
declare function WavelengthContentModal(props: WavelengthContentModalProps): react_jsx_runtime.JSX.Element;
|
|
277
|
+
|
|
278
|
+
interface menuItemProps {
|
|
279
|
+
itemType: "header" | "link" | "footer" | string;
|
|
280
|
+
label: string | number;
|
|
281
|
+
link?: string;
|
|
282
|
+
end?: boolean;
|
|
283
|
+
email?: string;
|
|
284
|
+
}
|
|
285
|
+
interface PopUPMenuProps {
|
|
286
|
+
menuItems: menuItemProps[];
|
|
287
|
+
customIcon?: React__default.ReactNode;
|
|
288
|
+
width?: string;
|
|
289
|
+
menuDirection?: "top" | "bottom";
|
|
290
|
+
color?: string;
|
|
291
|
+
emailHoverColor?: string;
|
|
292
|
+
id?: string;
|
|
293
|
+
}
|
|
294
|
+
declare function WavelengthPopUpMenu({ menuItems, customIcon, width, menuDirection, color, emailHoverColor, id }: PopUPMenuProps): react_jsx_runtime.JSX.Element;
|
|
295
|
+
|
|
296
|
+
interface DropdownProps {
|
|
297
|
+
id?: string;
|
|
298
|
+
palette: "brewery" | "custom";
|
|
299
|
+
width: string;
|
|
300
|
+
options: menuOptions[];
|
|
301
|
+
buttonSx?: SxProps$1<Theme$1> | undefined;
|
|
302
|
+
menuSx?: MenuSxProps;
|
|
303
|
+
buttonText: string | ReactNode;
|
|
304
|
+
}
|
|
305
|
+
interface menuOptions {
|
|
306
|
+
option: React__default.ReactNode;
|
|
307
|
+
onClick?: React__default.MouseEventHandler<HTMLLIElement> | undefined;
|
|
308
|
+
}
|
|
309
|
+
interface MenuSxProps {
|
|
310
|
+
backgroundColor?: string;
|
|
311
|
+
borderColor?: string;
|
|
312
|
+
hoverColor?: string;
|
|
313
|
+
width?: string;
|
|
314
|
+
boxShadow?: string;
|
|
315
|
+
}
|
|
316
|
+
declare function WavelengthDropdown({ id, options, buttonSx, width, buttonText, menuSx, palette }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
317
|
+
|
|
318
|
+
interface ConfirmationSnackbarProps {
|
|
319
|
+
show: boolean;
|
|
320
|
+
setShow: (show: boolean) => void;
|
|
321
|
+
closeIcon?: ReactNode | React__default.JSX.Element;
|
|
322
|
+
message?: string;
|
|
323
|
+
snackBarColor?: string;
|
|
324
|
+
textColor?: string;
|
|
325
|
+
horryAlign?: "left" | "right" | "center";
|
|
326
|
+
vertyAlign?: "top" | "bottom";
|
|
327
|
+
durationSb?: number;
|
|
328
|
+
id?: string;
|
|
329
|
+
width?: string | number;
|
|
330
|
+
icon?: ReactNode;
|
|
331
|
+
}
|
|
332
|
+
declare function WavelengthSnackbar({ show, setShow, closeIcon, message, snackBarColor, textColor, horryAlign, vertyAlign, durationSb, width, icon, id }: ConfirmationSnackbarProps): react_jsx_runtime.JSX.Element;
|
|
333
|
+
|
|
334
|
+
interface StandardSnackbarProps {
|
|
335
|
+
type: "success" | "error" | "disabled";
|
|
336
|
+
show: boolean;
|
|
337
|
+
closeIcon: ReactNode | React__default.JSX.Element;
|
|
338
|
+
icon?: ReactNode;
|
|
339
|
+
toggleShow: (on: boolean) => void;
|
|
340
|
+
horryAlign?: "left" | "right" | "center";
|
|
341
|
+
vertyAlign?: "top" | "bottom";
|
|
342
|
+
durationSb?: number;
|
|
343
|
+
width?: string | number;
|
|
344
|
+
message?: string | ReactNode;
|
|
345
|
+
customVertyAlign?: string;
|
|
346
|
+
id?: string;
|
|
347
|
+
}
|
|
348
|
+
declare function WavelengthStandardSnackbar({ type, show, icon, horryAlign, vertyAlign, durationSb, width, message, customVertyAlign, toggleShow, closeIcon, id }: StandardSnackbarProps): react_jsx_runtime.JSX.Element;
|
|
349
|
+
|
|
350
|
+
interface Testprops {
|
|
351
|
+
isPopUpOpen: boolean;
|
|
352
|
+
type: "success" | "error" | "disabled";
|
|
353
|
+
icon?: ReactNode;
|
|
354
|
+
width?: string | number;
|
|
355
|
+
message?: string | ReactNode;
|
|
356
|
+
img: React__default.JSX.Element | ReactNode;
|
|
357
|
+
toggleOpen: (value: React__default.SetStateAction<boolean>) => void;
|
|
358
|
+
customVertyAlign?: string;
|
|
359
|
+
}
|
|
360
|
+
declare const useOutsideClick: (callback: () => void) => React__default.RefObject<HTMLDivElement>;
|
|
361
|
+
declare function TestSnackbar({ isPopUpOpen, toggleOpen, type, message, customVertyAlign, width, img }: Testprops): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
interface sliderProps {
|
|
364
|
+
width?: string;
|
|
365
|
+
labelColor?: string;
|
|
366
|
+
color?: string;
|
|
367
|
+
value: number;
|
|
368
|
+
valueDisplayed?: boolean;
|
|
369
|
+
minVal: number;
|
|
370
|
+
maxVal: number;
|
|
371
|
+
step: number;
|
|
372
|
+
handleChange: (event: Event, newValue: number | number[]) => void;
|
|
373
|
+
labelFunc?(val: number): string;
|
|
374
|
+
marks?: Mark[];
|
|
375
|
+
}
|
|
376
|
+
declare function WavelengthSlider({ width, color, valueDisplayed, marks, labelColor, value, maxVal, minVal, step, labelFunc, handleChange }: sliderProps): react_jsx_runtime.JSX.Element;
|
|
377
|
+
|
|
378
|
+
interface carouselItem$1 {
|
|
379
|
+
title?: string;
|
|
380
|
+
description?: string;
|
|
381
|
+
image: string;
|
|
382
|
+
path: string;
|
|
383
|
+
}
|
|
384
|
+
interface carouselConfigArray$1 {
|
|
385
|
+
items: carouselItem$1[];
|
|
386
|
+
}
|
|
387
|
+
interface adjustableDimensions {
|
|
388
|
+
buttonSize?: number;
|
|
389
|
+
imageHeight?: number;
|
|
390
|
+
imageWidth?: number;
|
|
391
|
+
cardWidth?: number;
|
|
392
|
+
cardHeight?: number;
|
|
393
|
+
}
|
|
394
|
+
declare const DefaultCarousel: React__default.FC<carouselConfigArray$1 & adjustableDimensions>;
|
|
395
|
+
|
|
396
|
+
interface carouselItem {
|
|
397
|
+
title?: string;
|
|
398
|
+
description?: string;
|
|
399
|
+
image: string;
|
|
400
|
+
path: string;
|
|
401
|
+
}
|
|
402
|
+
interface carouselConfigArray {
|
|
403
|
+
items: carouselItem[];
|
|
404
|
+
}
|
|
405
|
+
interface adjustDimenforCarousel {
|
|
406
|
+
contHeight?: number;
|
|
407
|
+
contWidth?: number;
|
|
408
|
+
cardWidth?: number;
|
|
409
|
+
cardHeight?: number;
|
|
410
|
+
}
|
|
411
|
+
declare const SliderCardCarousel: React__default.FC<carouselConfigArray & adjustDimenforCarousel>;
|
|
412
|
+
|
|
413
|
+
interface PaginationProps {
|
|
414
|
+
totalPages: number;
|
|
415
|
+
boundaryCount?: number;
|
|
416
|
+
siblingCount?: number;
|
|
417
|
+
currentPageNumber: number;
|
|
418
|
+
style?: "text" | "contained" | "outlined" | "circular";
|
|
419
|
+
onPageChange: (page: number) => void;
|
|
420
|
+
}
|
|
421
|
+
declare const range: (start: number, end: number) => number[];
|
|
422
|
+
declare function ascendingRange(start: number, end: number): number[];
|
|
423
|
+
declare function DefaultPagination({ totalPages, currentPageNumber, siblingCount, boundaryCount, style, onPageChange }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
424
|
+
|
|
425
|
+
export { AppLogo, ButtonIcon, ButtonMenu, DefaultCarousel, DefaultIcon, DefaultPagination, ManyPlanesComponent, NotAvailablePage, type SearchResult, SearchTextField, SliderCardCarousel, TestSnackbar, type ThemeProperties, WavelengthAppTheme, WavelengthAutocomplete, WavelengthBanner, WavelengthBox, WavelengthButton, WavelengthConfirmationModal, WavelengthContentModal, WavelengthContentPlaceholder, WavelengthDropdown, WavelengthDropdownButton, WavelengthExampleComponent, WavelengthFileDownloader, WavelengthFooter, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSpinningLogo, WavelengthSpinningOuterCircle, WavelengthStandardSnackbar, WavelengthTitleBar, add, ascendingRange, concat, findBestStringMatch, type menuItemProps, range, useOutsideClick, useThemeContext };
|