@julseb-lib/react 1.1.32 → 1.1.34
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 +24 -24
- package/dist/{Image-4MLJ7FPA.js → Image-N6SBVL55.js} +2 -2
- package/dist/{chunk-PXJ4JXEH.js → chunk-AXOMYMGN.js} +84 -2
- package/dist/chunk-AXOMYMGN.js.map +1 -0
- package/dist/{global-CXiIaXyy.d.cts → global-BFS193oO.d.cts} +83 -0
- package/dist/{global-CXiIaXyy.d.ts → global-BFS193oO.d.ts} +83 -0
- package/dist/index.cjs +83 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +391 -98
- package/dist/index.d.ts +391 -98
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types/components-items-props.d.cts +1 -1
- package/dist/types/components-items-props.d.ts +1 -1
- package/dist/types/components-props.d.cts +1 -1
- package/dist/types/components-props.d.ts +1 -1
- package/dist/types/global.d.cts +1 -1
- package/dist/types/global.d.ts +1 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/chunk-PXJ4JXEH.js.map +0 -1
- /package/dist/{Image-4MLJ7FPA.js.map → Image-N6SBVL55.js.map} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as LibColorsHover, af as CssTextAlign, L as LibColors, a as LibColorsShort, b as LibAllColors, e as LibOverlays, f as LibAllColorsAndOverlays, k as LibSpacers, ak as CssAlignContent, ai as CssAlignItems, aj as CssJustifyContent, ah as CssJustifyItems, E as LibMaxWidth, l as LibRadiuses, an as CssObjectFit, u as LibButtonVariantExtended, j as LibShadows, ag as CssVerticalAlign, h as LibFontSizes, i as LibFontWeights, ad as DispatchState, a5 as TranslateLang, aa as ReactChildren, p as LibThemeNames, ac as FC$1, a7 as LibCountry, ab as ReactElement, s as LibLoaderVariant } from './global-
|
|
2
|
-
export { av as designTokens } from './global-
|
|
1
|
+
import { c as LibColorsHover, af as CssTextAlign, L as LibColors, a as LibColorsShort, b as LibAllColors, e as LibOverlays, f as LibAllColorsAndOverlays, k as LibSpacers, ak as CssAlignContent, ai as CssAlignItems, aj as CssJustifyContent, ah as CssJustifyItems, E as LibMaxWidth, l as LibRadiuses, an as CssObjectFit, u as LibButtonVariantExtended, j as LibShadows, ag as CssVerticalAlign, h as LibFontSizes, i as LibFontWeights, ad as DispatchState, a5 as TranslateLang, aa as ReactChildren, p as LibThemeNames, ac as FC$1, a7 as LibCountry, ab as ReactElement, s as LibLoaderVariant } from './global-BFS193oO.js';
|
|
2
|
+
export { av as designTokens } from './global-BFS193oO.js';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { ClassNameValue } from 'tailwind-merge';
|
|
5
5
|
import { LibMdEditorOptions } from './types/components-items-props.js';
|
|
@@ -15,61 +15,339 @@ import 'fuse.js';
|
|
|
15
15
|
import 'prism-react-renderer';
|
|
16
16
|
import './types/require-at-least-one.js';
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* Regular expression to match URLs in a string.
|
|
20
|
+
* Matches HTTP/HTTPS URLs with optional www, ports, and paths.
|
|
21
|
+
*
|
|
22
|
+
* @type {RegExp}
|
|
23
|
+
*/
|
|
18
24
|
declare const URL_REGEX: RegExp;
|
|
25
|
+
/**
|
|
26
|
+
* Splits a string into words and wraps detected URLs in anchor tags, optionally opening them in a new tab.
|
|
27
|
+
*
|
|
28
|
+
* @param {string} text - The input text to linkify.
|
|
29
|
+
* @param {boolean} [blank] - If true, links open in a new tab.
|
|
30
|
+
* @returns {Array<JSX.Element | string>} Array of JSX elements and strings with URLs linkified.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* linkifyText("Visit https://example.com", true)
|
|
34
|
+
*/
|
|
19
35
|
declare const linkifyText: (text: string, blank?: boolean) => (string | react_jsx_runtime.JSX.Element)[];
|
|
20
36
|
|
|
37
|
+
/**
|
|
38
|
+
* Maps color tokens to Tailwind CSS classes for styling anchor tags (`<a>`) with color, hover, and active states.
|
|
39
|
+
*
|
|
40
|
+
* @type {Record<LibColorsHover, string>}
|
|
41
|
+
* @example
|
|
42
|
+
* genLinkColor.primary // "[&_a]:font-black [&_a]:text-primary-500 [&_a]:hover:text-primary-300 [&_a]:active:text-primary-600"
|
|
43
|
+
*/
|
|
21
44
|
declare const genLinkColor: Record<LibColorsHover, string>;
|
|
45
|
+
/**
|
|
46
|
+
* Maps color tokens to Tailwind CSS classes for styling button tags (`<button>`) with color, hover, and active states.
|
|
47
|
+
*
|
|
48
|
+
* @type {Record<LibColorsHover, string>}
|
|
49
|
+
* @example
|
|
50
|
+
* genButtonColor.secondary // "[&_button]:font-black [&_button]:text-secondary-500 [&_button]:hover:text-secondary-300 [&_button]:active:text-secondary-600"
|
|
51
|
+
*/
|
|
22
52
|
declare const genButtonColor: Record<LibColorsHover, string>;
|
|
23
53
|
|
|
54
|
+
/**
|
|
55
|
+
* Maps CSS `text-align` values to their corresponding Tailwind CSS text alignment utility classes.
|
|
56
|
+
*
|
|
57
|
+
* @type {Record<CssTextAlign, string>}
|
|
58
|
+
* @example
|
|
59
|
+
* genTextAlign.center // "text-center"
|
|
60
|
+
*/
|
|
24
61
|
declare const genTextAlign: Record<CssTextAlign, string>;
|
|
25
62
|
|
|
63
|
+
/**
|
|
64
|
+
* Maps color tokens to their corresponding Tailwind CSS text color utility classes.
|
|
65
|
+
*
|
|
66
|
+
* @type {Record<LibColors, string>}
|
|
67
|
+
* @example
|
|
68
|
+
* genTextColor["primary-500"] // "text-primary-500"
|
|
69
|
+
*/
|
|
26
70
|
declare const genTextColor: Record<LibColors, string>;
|
|
71
|
+
/**
|
|
72
|
+
* Maps shorthand color tokens to their corresponding Tailwind CSS text color utility classes (uses the 500 shade).
|
|
73
|
+
*
|
|
74
|
+
* @type {Record<LibColorsShort, string>}
|
|
75
|
+
* @example
|
|
76
|
+
* genTextColorShort.primary // "text-primary-500"
|
|
77
|
+
*/
|
|
27
78
|
declare const genTextColorShort: Record<LibColorsShort, string>;
|
|
79
|
+
/**
|
|
80
|
+
* Maps color tokens to Tailwind CSS text color utility classes with hover and active states.
|
|
81
|
+
*
|
|
82
|
+
* @type {Record<LibColorsHover, string>}
|
|
83
|
+
* @example
|
|
84
|
+
* genTextColorHover.danger // "text-danger-500 hover:text-danger-300 active:text-danger-600"
|
|
85
|
+
*/
|
|
28
86
|
declare const genTextColorHover: Record<LibColorsHover, string>;
|
|
87
|
+
/**
|
|
88
|
+
* Combined map of all color tokens (full and shorthand) to their Tailwind CSS text color utility classes.
|
|
89
|
+
*
|
|
90
|
+
* @type {Record<LibAllColors, string>}
|
|
91
|
+
* @example
|
|
92
|
+
* genTextAllColor.primary // "text-primary-500"
|
|
93
|
+
* genTextAllColor["primary-100"] // "text-primary-100"
|
|
94
|
+
*/
|
|
29
95
|
declare const genTextAllColor: Record<LibAllColors, string>;
|
|
30
96
|
|
|
97
|
+
/**
|
|
98
|
+
* Maps all library color tokens to their corresponding Tailwind CSS `bg-` classes.
|
|
99
|
+
*
|
|
100
|
+
* @type {Record<LibColors, string>}
|
|
101
|
+
* @example
|
|
102
|
+
* genBgColor["primary-500"] // "bg-primary-500"
|
|
103
|
+
*/
|
|
31
104
|
declare const genBgColor: Record<LibColors, string>;
|
|
105
|
+
/**
|
|
106
|
+
* Maps shorthand color names to their Tailwind CSS `bg-` classes (uses the 500 shade).
|
|
107
|
+
*
|
|
108
|
+
* @type {Record<LibColorsShort, string>}
|
|
109
|
+
* @example
|
|
110
|
+
* genBgColorShort.primary // "bg-primary-500"
|
|
111
|
+
*/
|
|
32
112
|
declare const genBgColorShort: Record<LibColorsShort, string>;
|
|
113
|
+
/**
|
|
114
|
+
* Maps shorthand color names to their lightest (50 shade) Tailwind CSS `bg-` classes.
|
|
115
|
+
*
|
|
116
|
+
* @type {Record<Exclude<LibColorsShort, "black" | "transparent" | "background" | "current">, string>}
|
|
117
|
+
* @example
|
|
118
|
+
* genBgColor50.primary // "bg-primary-50"
|
|
119
|
+
*/
|
|
33
120
|
declare const genBgColor50: Record<Exclude<LibColorsShort, "black" | "transparent" | "background" | "current">, string>;
|
|
121
|
+
/**
|
|
122
|
+
* Maps hover color names to Tailwind CSS `bg-` classes with hover and active states.
|
|
123
|
+
*
|
|
124
|
+
* @type {Record<LibColorsHover, string>}
|
|
125
|
+
* @example
|
|
126
|
+
* genBgColorHover.primary // "bg-primary-500 hover:bg-primary-300 active:bg-primary-600"
|
|
127
|
+
*/
|
|
34
128
|
declare const genBgColorHover: Record<LibColorsHover, string>;
|
|
129
|
+
/**
|
|
130
|
+
* Maps ghost-style hover color names to Tailwind CSS `bg-` classes with hover and active states (lighter shades).
|
|
131
|
+
*
|
|
132
|
+
* @type {Record<LibColorsHover, string>}
|
|
133
|
+
* @example
|
|
134
|
+
* genBgColorGhostHover.primary // "bg-primary-50 hover:bg-primary-300 active:bg-primary-100"
|
|
135
|
+
*/
|
|
35
136
|
declare const genBgColorGhostHover: Record<LibColorsHover, string>;
|
|
137
|
+
/**
|
|
138
|
+
* Maps overlay tokens to their Tailwind CSS `bg-overlay-` classes.
|
|
139
|
+
*
|
|
140
|
+
* @type {Record<LibOverlays, string>}
|
|
141
|
+
* @example
|
|
142
|
+
* genBgOverlay["black-50"] // "bg-overlay-black-50"
|
|
143
|
+
*/
|
|
36
144
|
declare const genBgOverlay: Record<LibOverlays, string>;
|
|
145
|
+
/**
|
|
146
|
+
* Combined map of all color tokens (full and shorthand) to their Tailwind CSS `bg-` classes.
|
|
147
|
+
*
|
|
148
|
+
* @type {Record<LibAllColors, string>}
|
|
149
|
+
* @example
|
|
150
|
+
* genBgAllColors.primary // "bg-primary-500"
|
|
151
|
+
* genBgAllColors["primary-100"] // "bg-primary-100"
|
|
152
|
+
*/
|
|
37
153
|
declare const genBgAllColors: Record<LibAllColors, string>;
|
|
154
|
+
/**
|
|
155
|
+
* Combined map of all color and overlay tokens to their Tailwind CSS `bg-` classes.
|
|
156
|
+
*
|
|
157
|
+
* @type {Record<LibAllColorsAndOverlays, string>}
|
|
158
|
+
* @example
|
|
159
|
+
* genBgAllColorsAndOverlays.primary // "bg-primary-500"
|
|
160
|
+
* genBgAllColorsAndOverlays["black-50"] // "bg-overlay-black-50"
|
|
161
|
+
*/
|
|
38
162
|
declare const genBgAllColorsAndOverlays: Record<LibAllColorsAndOverlays, string>;
|
|
39
163
|
|
|
164
|
+
/**
|
|
165
|
+
* Maps all library color tokens to their corresponding Tailwind CSS `border-` classes.
|
|
166
|
+
*
|
|
167
|
+
* @type {Record<LibColors, string>}
|
|
168
|
+
* @example
|
|
169
|
+
* genBorderColor["primary-500"] // "border-primary-500"
|
|
170
|
+
*/
|
|
40
171
|
declare const genBorderColor: Record<LibColors, string>;
|
|
172
|
+
/**
|
|
173
|
+
* Maps shorthand color names to their Tailwind CSS `border-` classes (uses the 500 shade).
|
|
174
|
+
*
|
|
175
|
+
* @type {Record<LibColorsShort, string>}
|
|
176
|
+
* @example
|
|
177
|
+
* genBorderColorShort.primary // "border-primary-500"
|
|
178
|
+
*/
|
|
41
179
|
declare const genBorderColorShort: Record<LibColorsShort, string>;
|
|
180
|
+
/**
|
|
181
|
+
* Maps hover color names to Tailwind CSS `border-` classes with hover and active states.
|
|
182
|
+
*
|
|
183
|
+
* @type {Record<LibColorsHover, string>}
|
|
184
|
+
* @example
|
|
185
|
+
* genBorderColorHover.primary // "border-primary-500 hover:border-primary-300 active:border-primary-600"
|
|
186
|
+
*/
|
|
42
187
|
declare const genBorderColorHover: Record<LibColorsHover, string>;
|
|
188
|
+
/**
|
|
189
|
+
* Combined map of all color tokens (full and shorthand) to their Tailwind CSS `border-` classes.
|
|
190
|
+
*
|
|
191
|
+
* @type {Record<LibAllColors, string>}
|
|
192
|
+
* @example
|
|
193
|
+
* genBorderAllColors.primary // "border-primary-500"
|
|
194
|
+
* genBorderAllColors["primary-100"] // "border-primary-100"
|
|
195
|
+
*/
|
|
43
196
|
declare const genBorderAllColors: Record<LibAllColors, string>;
|
|
44
197
|
|
|
198
|
+
/**
|
|
199
|
+
* Maps spacing tokens to their corresponding Tailwind CSS gap utility classes.
|
|
200
|
+
*
|
|
201
|
+
* @type {Record<LibSpacers, string>}
|
|
202
|
+
* @example
|
|
203
|
+
* genGap.lg // "gap-6"
|
|
204
|
+
*/
|
|
45
205
|
declare const genGap: Record<LibSpacers, string>;
|
|
206
|
+
/**
|
|
207
|
+
* Maps spacing tokens to their corresponding Tailwind CSS row gap utility classes.
|
|
208
|
+
*
|
|
209
|
+
* @type {Record<LibSpacers, string>}
|
|
210
|
+
* @example
|
|
211
|
+
* genRowGap.md // "gap-y-4"
|
|
212
|
+
*/
|
|
46
213
|
declare const genRowGap: Record<LibSpacers, string>;
|
|
214
|
+
/**
|
|
215
|
+
* Maps spacing tokens to their corresponding Tailwind CSS column gap utility classes.
|
|
216
|
+
*
|
|
217
|
+
* @type {Record<LibSpacers, string>}
|
|
218
|
+
* @example
|
|
219
|
+
* genColGap.sm // "gap-x-3"
|
|
220
|
+
*/
|
|
47
221
|
declare const genColGap: Record<LibSpacers, string>;
|
|
48
222
|
|
|
223
|
+
/**
|
|
224
|
+
* Merges and deduplicates Tailwind CSS class names using `tailwind-merge` and `clsx`.
|
|
225
|
+
* @param classes - Class name values to merge.
|
|
226
|
+
* @returns A single merged class name string.
|
|
227
|
+
*/
|
|
49
228
|
declare const clsx: (...classes: Array<ClassNameValue>) => string;
|
|
50
229
|
|
|
230
|
+
/**
|
|
231
|
+
* Maps CSS `align-content` values to their corresponding Tailwind CSS utility classes.
|
|
232
|
+
*
|
|
233
|
+
* @type {Record<CssAlignContent, string>}
|
|
234
|
+
* @example
|
|
235
|
+
* genAlignContent.center // "content-center"
|
|
236
|
+
*/
|
|
51
237
|
declare const genAlignContent: Record<CssAlignContent, string>;
|
|
238
|
+
/**
|
|
239
|
+
* Maps CSS `align-items` values to their corresponding Tailwind CSS utility classes.
|
|
240
|
+
*
|
|
241
|
+
* @type {Record<CssAlignItems, string>}
|
|
242
|
+
* @example
|
|
243
|
+
* genAlignItems.center // "items-center"
|
|
244
|
+
*/
|
|
52
245
|
declare const genAlignItems: Record<CssAlignItems, string>;
|
|
53
246
|
|
|
247
|
+
/**
|
|
248
|
+
* Maps CSS `justify-content` values to their corresponding Tailwind CSS utility classes.
|
|
249
|
+
*
|
|
250
|
+
* @type {Record<CssJustifyContent, string>}
|
|
251
|
+
* @example
|
|
252
|
+
* genJustifyContent.center // "justify-center"
|
|
253
|
+
*/
|
|
54
254
|
declare const genJustifyContent: Record<CssJustifyContent, string>;
|
|
255
|
+
/**
|
|
256
|
+
* Maps CSS `justify-items` values to their corresponding Tailwind CSS utility classes.
|
|
257
|
+
*
|
|
258
|
+
* @type {Record<CssJustifyItems, string>}
|
|
259
|
+
* @example
|
|
260
|
+
* genJustifyItems.end // "justify-items-end"
|
|
261
|
+
*/
|
|
55
262
|
declare const genJustifyItems: Record<CssJustifyItems, string>;
|
|
56
263
|
|
|
264
|
+
/**
|
|
265
|
+
* Maps max-width tokens to their corresponding Tailwind CSS max-width utility classes.
|
|
266
|
+
*
|
|
267
|
+
* @type {Record<LibMaxWidth, string>}
|
|
268
|
+
* @example
|
|
269
|
+
* genMaxWidth.lg // "max-w-lg"
|
|
270
|
+
*/
|
|
57
271
|
declare const genMaxWidth: Record<LibMaxWidth, string>;
|
|
58
272
|
|
|
273
|
+
/**
|
|
274
|
+
* Maps each LibRadiuses key to its corresponding Tailwind CSS border-radius class.
|
|
275
|
+
*
|
|
276
|
+
* @type {Record<LibRadiuses, string>}
|
|
277
|
+
* @example
|
|
278
|
+
* genBorderRadius.sm // "rounded-sm"
|
|
279
|
+
*/
|
|
59
280
|
declare const genBorderRadius: Record<LibRadiuses, string>;
|
|
60
281
|
|
|
282
|
+
/**
|
|
283
|
+
* Maps CSS `object-fit` values to their corresponding Tailwind CSS object-fit utility classes.
|
|
284
|
+
*
|
|
285
|
+
* @type {Record<CssObjectFit, string>}
|
|
286
|
+
* @example
|
|
287
|
+
* genObjectFit.cover // "object-cover"
|
|
288
|
+
*/
|
|
61
289
|
declare const genObjectFit: Record<CssObjectFit, string>;
|
|
62
290
|
|
|
291
|
+
/**
|
|
292
|
+
* Maps button variant names to their corresponding Tailwind CSS classes for the disabled state.
|
|
293
|
+
*
|
|
294
|
+
* @type {Record<LibButtonVariantExtended, string>}
|
|
295
|
+
* @example
|
|
296
|
+
* genButtonDisabled.plain // "disabled:bg-gray-200 disabled:hover:bg-gray-200 disabled:text-gray-500!"
|
|
297
|
+
*/
|
|
63
298
|
declare const genButtonDisabled: Record<LibButtonVariantExtended, string>;
|
|
64
299
|
|
|
300
|
+
/**
|
|
301
|
+
* Maps each LibShadows key to its corresponding Tailwind CSS box-shadow utility class.
|
|
302
|
+
*
|
|
303
|
+
* @type {Record<LibShadows, string>}
|
|
304
|
+
* @example
|
|
305
|
+
* genBoxShadow.md // "shadow-md"
|
|
306
|
+
*/
|
|
65
307
|
declare const genBoxShadow: Record<LibShadows, string>;
|
|
66
308
|
|
|
309
|
+
/**
|
|
310
|
+
* Maps CSS `vertical-align` values to their corresponding Tailwind CSS vertical alignment utility classes.
|
|
311
|
+
*
|
|
312
|
+
* @type {Record<CssVerticalAlign, string>}
|
|
313
|
+
* @example
|
|
314
|
+
* genVAlign["align-middle"] // "align-middle"
|
|
315
|
+
*/
|
|
67
316
|
declare const genVAlign: Record<CssVerticalAlign, string>;
|
|
68
317
|
|
|
318
|
+
/**
|
|
319
|
+
* Custom React components mapping for rendering Markdown elements using the library's Text and Table components.
|
|
320
|
+
*
|
|
321
|
+
* @type {Components}
|
|
322
|
+
* @example
|
|
323
|
+
* // Usage with react-markdown
|
|
324
|
+
* <ReactMarkdown components={libMarkdownComponents} />
|
|
325
|
+
*/
|
|
69
326
|
declare const libMarkdownComponents: Components;
|
|
327
|
+
/**
|
|
328
|
+
* Default options for the Markdown editor, enabling or disabling formatting features.
|
|
329
|
+
*
|
|
330
|
+
* @type {LibMdEditorOptions}
|
|
331
|
+
* @example
|
|
332
|
+
* libMarkdownEditorOptions.bold // true
|
|
333
|
+
*/
|
|
70
334
|
declare const libMarkdownEditorOptions: LibMdEditorOptions;
|
|
71
335
|
|
|
336
|
+
/**
|
|
337
|
+
* Maps each color variant to its corresponding Tailwind CSS focus ring utility classes.
|
|
338
|
+
*
|
|
339
|
+
* @type {Record<LibColorsHover, string>}
|
|
340
|
+
* @example
|
|
341
|
+
* genRingColor.primary // "focus:ring-1 focus:ring-primary-800"
|
|
342
|
+
*/
|
|
72
343
|
declare const genRingColor: Record<LibColorsHover, string>;
|
|
344
|
+
/**
|
|
345
|
+
* Maps each color variant to its corresponding Tailwind CSS focus ring utility classes, applied to child elements via the `[&>*]` selector.
|
|
346
|
+
*
|
|
347
|
+
* @type {Record<LibColorsHover, string>}
|
|
348
|
+
* @example
|
|
349
|
+
* genRingColorChildren.success // "[&>*]:focus:ring-1 [&>*]:focus:ring-success-800"
|
|
350
|
+
*/
|
|
73
351
|
declare const genRingColorChildren: Record<LibColorsHover, string>;
|
|
74
352
|
|
|
75
353
|
/**
|
|
@@ -154,8 +432,23 @@ declare function enableScroll(): void;
|
|
|
154
432
|
*/
|
|
155
433
|
declare function scrollToTop(): void;
|
|
156
434
|
|
|
435
|
+
/**
|
|
436
|
+
* Maps font size tokens to their corresponding Tailwind CSS text-size utility classes or custom property-based classes.
|
|
437
|
+
*
|
|
438
|
+
* @type {Record<LibFontSizes, string>}
|
|
439
|
+
* @example
|
|
440
|
+
* genFontSize.xl // "text-xl"
|
|
441
|
+
* genFontSize["display-h1"] // "text-(length:--text-display-h1)"
|
|
442
|
+
*/
|
|
157
443
|
declare const genFontSize: Record<LibFontSizes, string>;
|
|
158
444
|
|
|
445
|
+
/**
|
|
446
|
+
* Maps font weight tokens to their corresponding Tailwind CSS font-weight utility classes.
|
|
447
|
+
*
|
|
448
|
+
* @type {Record<LibFontWeights, string>}
|
|
449
|
+
* @example
|
|
450
|
+
* genFontWeight.bold // "font-bold"
|
|
451
|
+
*/
|
|
159
452
|
declare const genFontWeight: Record<LibFontWeights, string>;
|
|
160
453
|
|
|
161
454
|
/**
|
|
@@ -178,7 +471,7 @@ declare const genFontWeight: Record<LibFontWeights, string>;
|
|
|
178
471
|
*
|
|
179
472
|
* @returns {void} This hook doesn't return anything
|
|
180
473
|
*
|
|
181
|
-
* @see https://
|
|
474
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useClickOutside
|
|
182
475
|
*/
|
|
183
476
|
declare const useClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (e?: MouseEvent) => void, isActive?: boolean, delay?: number) => void;
|
|
184
477
|
|
|
@@ -205,7 +498,7 @@ type CopyFn = (text: string) => Promise<boolean>;
|
|
|
205
498
|
* @returns {string} returns[1].text - Text to copy to clipboard
|
|
206
499
|
* @returns {Promise<boolean>} returns[1].Promise - Promise that resolves to true if copy succeeded, false otherwise
|
|
207
500
|
*
|
|
208
|
-
* @see https://
|
|
501
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useCopyToClipboard
|
|
209
502
|
*/
|
|
210
503
|
declare const useCopyToClipboard: () => [CopiedValue, CopyFn];
|
|
211
504
|
|
|
@@ -231,7 +524,7 @@ declare const useCopyToClipboard: () => [CopiedValue, CopyFn];
|
|
|
231
524
|
*
|
|
232
525
|
* @returns {T} The debounced value that updates after the delay period
|
|
233
526
|
*
|
|
234
|
-
* @see https://
|
|
527
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useDebounce
|
|
235
528
|
*/
|
|
236
529
|
declare const useDebounce: <T>(value: T, delay?: number) => T;
|
|
237
530
|
|
|
@@ -262,7 +555,7 @@ declare const useDebounce: <T>(value: T, delay?: number) => T;
|
|
|
262
555
|
* @returns {string} returns.exportToCsv.fileName - Name for the downloaded file (without extension)
|
|
263
556
|
* @returns {Array<string>} returns.exportToCsv.headers - Array of column headers for the CSV file
|
|
264
557
|
*
|
|
265
|
-
* @see https://
|
|
558
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useExportData
|
|
266
559
|
*/
|
|
267
560
|
declare const useExportData: <T>() => {
|
|
268
561
|
exportToCsv: (data: Array<T>, fileName: string, headers: Array<string>) => void;
|
|
@@ -293,7 +586,7 @@ declare const useExportData: <T>() => {
|
|
|
293
586
|
* @returns {any} returns.error - Error object if the fetch failed, undefined otherwise
|
|
294
587
|
* @returns {boolean} returns.loading - Whether the fetch operation is currently in progress
|
|
295
588
|
*
|
|
296
|
-
* @see https://
|
|
589
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useFetch
|
|
297
590
|
*/
|
|
298
591
|
declare const useFetch: <T>(fetchFunction: Promise<T>, dependencies?: any) => {
|
|
299
592
|
readonly response: T | null;
|
|
@@ -330,7 +623,7 @@ declare const useFetch: <T>(fetchFunction: Promise<T>, dependencies?: any) => {
|
|
|
330
623
|
* @returns {function} returns.handleSubmit - Function to handle form submission
|
|
331
624
|
* @returns {ChangeEvent<HTMLFormElement>} returns.handleSubmit.e - Form submit event
|
|
332
625
|
*
|
|
333
|
-
* @see https://
|
|
626
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useForm
|
|
334
627
|
*/
|
|
335
628
|
declare const useForm: <T>(initialState?: T, onSubmit?: (formData: T) => void) => {
|
|
336
629
|
formData: T;
|
|
@@ -362,7 +655,7 @@ declare const useForm: <T>(initialState?: T, onSubmit?: (formData: T) => void) =
|
|
|
362
655
|
*
|
|
363
656
|
* @returns {boolean | undefined} Whether the element is overflowing, or undefined if not yet determined
|
|
364
657
|
*
|
|
365
|
-
* @see https://
|
|
658
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useIsOverflow
|
|
366
659
|
*/
|
|
367
660
|
declare const useIsOverflow: (ref: RefObject<HTMLElement>, options?: {
|
|
368
661
|
callback: RefCallback<boolean>;
|
|
@@ -390,7 +683,7 @@ declare const useIsOverflow: (ref: RefObject<HTMLElement>, options?: {
|
|
|
390
683
|
*
|
|
391
684
|
* @returns {void} This hook doesn't return anything
|
|
392
685
|
*
|
|
393
|
-
* @see https://
|
|
686
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useKeyPress
|
|
394
687
|
*/
|
|
395
688
|
declare const useKeyPress: (keyCodes: string | Array<string>, callback: () => void, excludeKeys?: Array<string>) => void;
|
|
396
689
|
|
|
@@ -411,7 +704,7 @@ declare const useKeyPress: (keyCodes: string | Array<string>, callback: () => vo
|
|
|
411
704
|
*
|
|
412
705
|
* @returns {boolean} Whether the current viewport width is smaller than or equal to the specified width
|
|
413
706
|
*
|
|
414
|
-
* @see https://
|
|
707
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useMaxWidth
|
|
415
708
|
*/
|
|
416
709
|
declare const useMaxWidth: (width: number) => boolean;
|
|
417
710
|
|
|
@@ -432,7 +725,7 @@ declare const useMaxWidth: (width: number) => boolean;
|
|
|
432
725
|
*
|
|
433
726
|
* @returns {RefCallback<Instance> | null} Merged ref callback or null if all refs are null/undefined
|
|
434
727
|
*
|
|
435
|
-
* @see https://
|
|
728
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useMergeRefs
|
|
436
729
|
*/
|
|
437
730
|
declare const useMergeRefs: <Instance>(refs: Array<Ref<Instance> | undefined>) => RefCallback<Instance> | null;
|
|
438
731
|
|
|
@@ -453,7 +746,7 @@ declare const useMergeRefs: <Instance>(refs: Array<Ref<Instance> | undefined>) =
|
|
|
453
746
|
*
|
|
454
747
|
* @returns {boolean} Whether the current viewport width is greater than or equal to the specified width
|
|
455
748
|
*
|
|
456
|
-
* @see https://
|
|
749
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useMinWidth
|
|
457
750
|
*/
|
|
458
751
|
declare const useMinWidth: (width: number) => boolean;
|
|
459
752
|
|
|
@@ -486,7 +779,7 @@ interface IUsePaginatedData<T> {
|
|
|
486
779
|
* @returns {Array<T>} returns.paginatedData - Current page's data items
|
|
487
780
|
* @returns {number} returns.totalPages - Total number of pages based on data length and limit
|
|
488
781
|
*
|
|
489
|
-
* @see https://
|
|
782
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#usePaginatedData
|
|
490
783
|
*/
|
|
491
784
|
declare const usePaginatedData: <T>(data: Array<T>, page: number, defaultLimit?: number) => IUsePaginatedData<T>;
|
|
492
785
|
|
|
@@ -527,7 +820,7 @@ interface ILibUsePaginationNavigation {
|
|
|
527
820
|
* @returns {function} returns.handlePage - Function to navigate to a specific page number
|
|
528
821
|
* @returns {number} returns.handlePage.n - Page number to navigate to
|
|
529
822
|
*
|
|
530
|
-
* @see https://
|
|
823
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#usePagination
|
|
531
824
|
*/
|
|
532
825
|
declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILibUsePaginationNavigation) => {
|
|
533
826
|
handlePrev: () => void;
|
|
@@ -556,7 +849,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
|
|
|
556
849
|
*
|
|
557
850
|
* @returns {{ visualLines: number; elementRef: React.RefObject<HTMLTextAreaElement | HTMLInputElement> }} Object containing the calculated visual line count and element ref to attach to the target element.
|
|
558
851
|
*
|
|
559
|
-
* @see https://
|
|
852
|
+
* @see https://julseb-lib.vercel.app/components/hooks/use-text-line-count
|
|
560
853
|
*/
|
|
561
854
|
declare const useTextLineCount: (text: string, fontSize?: number) => {
|
|
562
855
|
visualLines: number;
|
|
@@ -580,7 +873,7 @@ declare const useTextLineCount: (text: string, fontSize?: number) => {
|
|
|
580
873
|
*
|
|
581
874
|
* @returns {boolean} Whether the current device supports touch screen interaction
|
|
582
875
|
*
|
|
583
|
-
* @see https://
|
|
876
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useTouchScreen
|
|
584
877
|
*/
|
|
585
878
|
declare const useTouchScreen: () => boolean;
|
|
586
879
|
|
|
@@ -617,7 +910,7 @@ declare const useTouchScreen: () => boolean;
|
|
|
617
910
|
* @returns {string} returns.language - Current active language code
|
|
618
911
|
* @returns {Array<string>} returns.languages - Array of available language codes
|
|
619
912
|
*
|
|
620
|
-
* @see https://
|
|
913
|
+
* @see https://julseb-lib.vercel.app/components/helpers/hooks#useTranslation
|
|
621
914
|
*/
|
|
622
915
|
declare const useTranslation: (translations: TranslateLang) => {
|
|
623
916
|
translate: (key: string) => string;
|
|
@@ -884,7 +1177,7 @@ declare const TEXT_BASE_CLASSES: string;
|
|
|
884
1177
|
*
|
|
885
1178
|
* @returns {JSX.Element} The rendered text element.
|
|
886
1179
|
*
|
|
887
|
-
* @see https://
|
|
1180
|
+
* @see https://julseb-lib.vercel.app/components/styles/text
|
|
888
1181
|
*/
|
|
889
1182
|
declare const Text: FC$2<ILibText>;
|
|
890
1183
|
|
|
@@ -911,7 +1204,7 @@ declare const Text: FC$2<ILibText>;
|
|
|
911
1204
|
*
|
|
912
1205
|
* @returns {JSX.Element} The rendered wrapper container.
|
|
913
1206
|
*
|
|
914
|
-
* @see https://
|
|
1207
|
+
* @see https://julseb-lib.vercel.app/components/styles/wrapper
|
|
915
1208
|
*/
|
|
916
1209
|
declare const Wrapper: FC$2<ILibWrapper>;
|
|
917
1210
|
|
|
@@ -937,7 +1230,7 @@ declare const Wrapper: FC$2<ILibWrapper>;
|
|
|
937
1230
|
*
|
|
938
1231
|
* @returns {JSX.Element} The rendered main container.
|
|
939
1232
|
*
|
|
940
|
-
* @see https://
|
|
1233
|
+
* @see https://julseb-lib.vercel.app/components/styles/main
|
|
941
1234
|
*/
|
|
942
1235
|
declare const Main: FC$2<ILibMain>;
|
|
943
1236
|
|
|
@@ -961,7 +1254,7 @@ declare const Main: FC$2<ILibMain>;
|
|
|
961
1254
|
*
|
|
962
1255
|
* @returns {JSX.Element} The rendered aside container.
|
|
963
1256
|
*
|
|
964
|
-
* @see https://
|
|
1257
|
+
* @see https://julseb-lib.vercel.app/components/styles/aside
|
|
965
1258
|
*/
|
|
966
1259
|
declare const Aside: FC$2<ILibAside>;
|
|
967
1260
|
|
|
@@ -985,7 +1278,7 @@ declare const Aside: FC$2<ILibAside>;
|
|
|
985
1278
|
*
|
|
986
1279
|
* @returns {JSX.Element} The rendered section container.
|
|
987
1280
|
*
|
|
988
|
-
* @see https://
|
|
1281
|
+
* @see https://julseb-lib.vercel.app/components/layouts/section
|
|
989
1282
|
*/
|
|
990
1283
|
declare const Section: FC$2<ILibSection>;
|
|
991
1284
|
|
|
@@ -1018,7 +1311,7 @@ declare const Section: FC$2<ILibSection>;
|
|
|
1018
1311
|
*
|
|
1019
1312
|
* @returns {JSX.Element} The rendered grid container.
|
|
1020
1313
|
*
|
|
1021
|
-
* @see https://
|
|
1314
|
+
* @see https://julseb-lib.vercel.app/components/layouts/grid
|
|
1022
1315
|
*/
|
|
1023
1316
|
declare const Grid: FC$2<ILibGrid>;
|
|
1024
1317
|
|
|
@@ -1051,7 +1344,7 @@ declare const Grid: FC$2<ILibGrid>;
|
|
|
1051
1344
|
*
|
|
1052
1345
|
* @returns {JSX.Element} The rendered flexbox container.
|
|
1053
1346
|
*
|
|
1054
|
-
* @see https://
|
|
1347
|
+
* @see https://julseb-lib.vercel.app/components/layouts/flexbox
|
|
1055
1348
|
*/
|
|
1056
1349
|
declare const Flexbox: FC$2<ILibFlexbox>;
|
|
1057
1350
|
|
|
@@ -1070,7 +1363,7 @@ declare const Flexbox: FC$2<ILibFlexbox>;
|
|
|
1070
1363
|
*
|
|
1071
1364
|
* @returns {JSX.Element} The rendered Key component.
|
|
1072
1365
|
*
|
|
1073
|
-
* @see https://
|
|
1366
|
+
* @see https://julseb-lib.vercel.app/components/layouts/key
|
|
1074
1367
|
*/
|
|
1075
1368
|
declare const Key: FC$2<ILibKey>;
|
|
1076
1369
|
|
|
@@ -1088,7 +1381,7 @@ declare const Key: FC$2<ILibKey>;
|
|
|
1088
1381
|
*
|
|
1089
1382
|
* @returns {JSX.Element} The rendered Highlight component.
|
|
1090
1383
|
*
|
|
1091
|
-
* @see https://
|
|
1384
|
+
* @see https://julseb-lib.vercel.app/components/layouts/highlight
|
|
1092
1385
|
*/
|
|
1093
1386
|
declare const Highlight: FC$2<ILibHighlight>;
|
|
1094
1387
|
|
|
@@ -1114,7 +1407,7 @@ declare const Highlight: FC$2<ILibHighlight>;
|
|
|
1114
1407
|
*
|
|
1115
1408
|
* @returns {ReactElement} The rendered Linkify component with URLs converted to clickable links.
|
|
1116
1409
|
*
|
|
1117
|
-
* @see https://
|
|
1410
|
+
* @see https://julseb-lib.vercel.app/components/linkify
|
|
1118
1411
|
*/
|
|
1119
1412
|
declare const Linkify: FC$2<ILibLinkify>;
|
|
1120
1413
|
|
|
@@ -1134,7 +1427,7 @@ declare const Linkify: FC$2<ILibLinkify>;
|
|
|
1134
1427
|
*
|
|
1135
1428
|
* @returns {JSX.Element} The rendered Hr component.
|
|
1136
1429
|
*
|
|
1137
|
-
* @see https://
|
|
1430
|
+
* @see https://julseb-lib.vercel.app/components/hr
|
|
1138
1431
|
*/
|
|
1139
1432
|
declare const Hr: FC$2<ILibHr>;
|
|
1140
1433
|
|
|
@@ -1153,7 +1446,7 @@ declare const Hr: FC$2<ILibHr>;
|
|
|
1153
1446
|
*
|
|
1154
1447
|
* @returns {JSX.Element} The rendered Skeleton component.
|
|
1155
1448
|
*
|
|
1156
|
-
* @see https://
|
|
1449
|
+
* @see https://julseb-lib.vercel.app/components/layouts/skeleton
|
|
1157
1450
|
*/
|
|
1158
1451
|
declare const Skeleton: FC$2<ILibSkeleton>;
|
|
1159
1452
|
|
|
@@ -1182,7 +1475,7 @@ declare const Skeleton: FC$2<ILibSkeleton>;
|
|
|
1182
1475
|
*
|
|
1183
1476
|
* @returns {JSX.Element} The rendered SkeletonCard component.
|
|
1184
1477
|
*
|
|
1185
|
-
* @see https://
|
|
1478
|
+
* @see https://julseb-lib.vercel.app/components/layouts/skeletoncard
|
|
1186
1479
|
*/
|
|
1187
1480
|
declare const SkeletonCard: FC<ILibSkeletonCard>;
|
|
1188
1481
|
|
|
@@ -1223,7 +1516,7 @@ declare const SkeletonCard: FC<ILibSkeletonCard>;
|
|
|
1223
1516
|
*
|
|
1224
1517
|
* @returns {JSX.Element} The rendered Tooltip component.
|
|
1225
1518
|
*
|
|
1226
|
-
* @see https://
|
|
1519
|
+
* @see https://julseb-lib.vercel.app/components/tooltip
|
|
1227
1520
|
*/
|
|
1228
1521
|
declare const Tooltip: FC$2<ILibTooltip>;
|
|
1229
1522
|
|
|
@@ -1245,7 +1538,7 @@ declare const Tooltip: FC$2<ILibTooltip>;
|
|
|
1245
1538
|
*
|
|
1246
1539
|
* @returns {JSX.Element} The rendered Image component.
|
|
1247
1540
|
*
|
|
1248
|
-
* @see https://
|
|
1541
|
+
* @see https://julseb-lib.vercel.app/components/layouts/image
|
|
1249
1542
|
*/
|
|
1250
1543
|
declare const Image: FC$2<ILibImage>;
|
|
1251
1544
|
|
|
@@ -1273,7 +1566,7 @@ declare const Image: FC$2<ILibImage>;
|
|
|
1273
1566
|
*
|
|
1274
1567
|
* @returns {JSX.Element} The rendered LazyImage component with a skeleton fallback while loading.
|
|
1275
1568
|
*
|
|
1276
|
-
* @see https://
|
|
1569
|
+
* @see https://julseb-lib.vercel.app/components/lazy-image
|
|
1277
1570
|
*/
|
|
1278
1571
|
declare const LazyImage: FC$2<ILibLazyImage>;
|
|
1279
1572
|
|
|
@@ -1302,7 +1595,7 @@ declare const LazyImage: FC$2<ILibLazyImage>;
|
|
|
1302
1595
|
*
|
|
1303
1596
|
* @returns {JSX.Element} The rendered Masonry component.
|
|
1304
1597
|
*
|
|
1305
|
-
* @see https://
|
|
1598
|
+
* @see https://julseb-lib.vercel.app/components/masonry
|
|
1306
1599
|
*/
|
|
1307
1600
|
declare const Masonry: FC$2<ILibMasonry>;
|
|
1308
1601
|
|
|
@@ -1327,7 +1620,7 @@ declare const Masonry: FC$2<ILibMasonry>;
|
|
|
1327
1620
|
*
|
|
1328
1621
|
* @returns {JSX.Element} The rendered Badge component.
|
|
1329
1622
|
*
|
|
1330
|
-
* @see https://
|
|
1623
|
+
* @see https://julseb-lib.vercel.app/components/badge
|
|
1331
1624
|
*/
|
|
1332
1625
|
declare const Badge: FC$2<ILibBadge>;
|
|
1333
1626
|
|
|
@@ -1356,7 +1649,7 @@ declare const Badge: FC$2<ILibBadge>;
|
|
|
1356
1649
|
*
|
|
1357
1650
|
* @returns {JSX.Element} The rendered Avatar component.
|
|
1358
1651
|
*
|
|
1359
|
-
* @see https://
|
|
1652
|
+
* @see https://julseb-lib.vercel.app/components/avatar
|
|
1360
1653
|
*/
|
|
1361
1654
|
declare const Avatar: FC$2<ILibAvatar>;
|
|
1362
1655
|
|
|
@@ -1379,7 +1672,7 @@ declare const Avatar: FC$2<ILibAvatar>;
|
|
|
1379
1672
|
*
|
|
1380
1673
|
* @returns {JSX.Element} The rendered Loader component.
|
|
1381
1674
|
*
|
|
1382
|
-
* @see https://
|
|
1675
|
+
* @see https://julseb-lib.vercel.app/components/loader
|
|
1383
1676
|
*/
|
|
1384
1677
|
declare const Loader: FC$2<ILibLoader>;
|
|
1385
1678
|
|
|
@@ -1410,7 +1703,7 @@ declare const Loader: FC$2<ILibLoader>;
|
|
|
1410
1703
|
*
|
|
1411
1704
|
* @returns {JSX.Element} The rendered Burger component.
|
|
1412
1705
|
*
|
|
1413
|
-
* @see https://
|
|
1706
|
+
* @see https://julseb-lib.vercel.app/components/burger
|
|
1414
1707
|
*/
|
|
1415
1708
|
declare const Burger: FC$2<ILibBurger>;
|
|
1416
1709
|
|
|
@@ -1438,7 +1731,7 @@ declare const Burger: FC$2<ILibBurger>;
|
|
|
1438
1731
|
*
|
|
1439
1732
|
* @returns {JSX.Element} The rendered Button component.
|
|
1440
1733
|
*
|
|
1441
|
-
* @see https://
|
|
1734
|
+
* @see https://julseb-lib.vercel.app/components/button
|
|
1442
1735
|
*/
|
|
1443
1736
|
declare const Button: FC$2<ILibButton>;
|
|
1444
1737
|
|
|
@@ -1478,7 +1771,7 @@ declare const Button: FC$2<ILibButton>;
|
|
|
1478
1771
|
*
|
|
1479
1772
|
* @returns {JSX.Element} The rendered ButtonIcon component.
|
|
1480
1773
|
*
|
|
1481
|
-
* @see https://
|
|
1774
|
+
* @see https://julseb-lib.vercel.app/components/button-icon
|
|
1482
1775
|
*/
|
|
1483
1776
|
declare const ButtonIcon: FC$2<ILibButtonIcon>;
|
|
1484
1777
|
|
|
@@ -1512,7 +1805,7 @@ declare const ButtonIcon: FC$2<ILibButtonIcon>;
|
|
|
1512
1805
|
*
|
|
1513
1806
|
* @returns {JSX.Element} The rendered ButtonGroup component.
|
|
1514
1807
|
*
|
|
1515
|
-
* @see https://
|
|
1808
|
+
* @see https://julseb-lib.vercel.app/components/button-group
|
|
1516
1809
|
*/
|
|
1517
1810
|
declare const ButtonGroup: FC$2<ILibButtonGroup>;
|
|
1518
1811
|
|
|
@@ -1542,7 +1835,7 @@ declare const ButtonGroup: FC$2<ILibButtonGroup>;
|
|
|
1542
1835
|
*
|
|
1543
1836
|
* @returns {JSX.Element} The rendered Tag component.
|
|
1544
1837
|
*
|
|
1545
|
-
* @see https://
|
|
1838
|
+
* @see https://julseb-lib.vercel.app/components/tag
|
|
1546
1839
|
*/
|
|
1547
1840
|
declare const Tag: FC$2<ILibTag>;
|
|
1548
1841
|
|
|
@@ -1580,7 +1873,7 @@ declare const Tag: FC$2<ILibTag>;
|
|
|
1580
1873
|
*
|
|
1581
1874
|
* @returns {JSX.Element} The rendered InputContainer component or just children if no wrapper content is needed.
|
|
1582
1875
|
*
|
|
1583
|
-
* @see https://
|
|
1876
|
+
* @see https://julseb-lib.vercel.app/components/input
|
|
1584
1877
|
*/
|
|
1585
1878
|
declare const InputContainer: FC$2<ILibInputContainer>;
|
|
1586
1879
|
|
|
@@ -1622,7 +1915,7 @@ declare const InputContainer: FC$2<ILibInputContainer>;
|
|
|
1622
1915
|
*
|
|
1623
1916
|
* @returns {JSX.Element} The rendered Input component.
|
|
1624
1917
|
*
|
|
1625
|
-
* @see https://
|
|
1918
|
+
* @see https://julseb-lib.vercel.app/components/input
|
|
1626
1919
|
*/
|
|
1627
1920
|
declare const Input: FC$2<ILibInput>;
|
|
1628
1921
|
|
|
@@ -1658,7 +1951,7 @@ declare const Input: FC$2<ILibInput>;
|
|
|
1658
1951
|
*
|
|
1659
1952
|
* @returns {JSX.Element} The rendered InputImage component.
|
|
1660
1953
|
*
|
|
1661
|
-
* @see https://
|
|
1954
|
+
* @see https://julseb-lib.vercel.app/components/input-image
|
|
1662
1955
|
*/
|
|
1663
1956
|
declare const InputImage: FC$2<ILibInputImage>;
|
|
1664
1957
|
|
|
@@ -1695,7 +1988,7 @@ declare const InputImage: FC$2<ILibInputImage>;
|
|
|
1695
1988
|
*
|
|
1696
1989
|
* @returns {JSX.Element} The rendered InputCheck component.
|
|
1697
1990
|
*
|
|
1698
|
-
* @see https://
|
|
1991
|
+
* @see https://julseb-lib.vercel.app/components/input-check
|
|
1699
1992
|
*/
|
|
1700
1993
|
declare const InputCheck: FC$2<ILibInputCheck>;
|
|
1701
1994
|
|
|
@@ -1738,7 +2031,7 @@ declare const InputCheck: FC$2<ILibInputCheck>;
|
|
|
1738
2031
|
*
|
|
1739
2032
|
* @returns {JSX.Element} The rendered InputPhone component.
|
|
1740
2033
|
*
|
|
1741
|
-
* @see https://
|
|
2034
|
+
* @see https://julseb-lib.vercel.app/components/input-phone
|
|
1742
2035
|
*/
|
|
1743
2036
|
declare const InputPhone: FC$2<ILibInputPhone>;
|
|
1744
2037
|
|
|
@@ -1793,7 +2086,7 @@ declare const countries: Array<LibCountry>;
|
|
|
1793
2086
|
*
|
|
1794
2087
|
* @returns {JSX.Element} The rendered InputCounter component.
|
|
1795
2088
|
*
|
|
1796
|
-
* @see https://
|
|
2089
|
+
* @see https://julseb-lib.vercel.app/components/input-counter
|
|
1797
2090
|
*/
|
|
1798
2091
|
declare const InputCounter: FC$2<ILibInputCounter>;
|
|
1799
2092
|
|
|
@@ -1832,7 +2125,7 @@ declare const InputCounter: FC$2<ILibInputCounter>;
|
|
|
1832
2125
|
*
|
|
1833
2126
|
* @returns {JSX.Element} The rendered InputSlider component.
|
|
1834
2127
|
*
|
|
1835
|
-
* @see https://
|
|
2128
|
+
* @see https://julseb-lib.vercel.app/components/input-slider
|
|
1836
2129
|
*/
|
|
1837
2130
|
declare const InputSlider: FC$2<ILibInputSlider>;
|
|
1838
2131
|
|
|
@@ -1873,7 +2166,7 @@ declare const InputSlider: FC$2<ILibInputSlider>;
|
|
|
1873
2166
|
*
|
|
1874
2167
|
* @returns {JSX.Element} The rendered Select component.
|
|
1875
2168
|
*
|
|
1876
|
-
* @see https://
|
|
2169
|
+
* @see https://julseb-lib.vercel.app/components/select
|
|
1877
2170
|
*/
|
|
1878
2171
|
declare const Select: FC$2<ILibSelect>;
|
|
1879
2172
|
|
|
@@ -1919,7 +2212,7 @@ declare const Select: FC$2<ILibSelect>;
|
|
|
1919
2212
|
*
|
|
1920
2213
|
* @returns {JSX.Element} The rendered Autocomplete component.
|
|
1921
2214
|
*
|
|
1922
|
-
* @see https://
|
|
2215
|
+
* @see https://julseb-lib.vercel.app/components/autocomplete
|
|
1923
2216
|
*/
|
|
1924
2217
|
declare const Autocomplete: FC$2<ILibAutocomplete>;
|
|
1925
2218
|
|
|
@@ -1961,7 +2254,7 @@ declare const Autocomplete: FC$2<ILibAutocomplete>;
|
|
|
1961
2254
|
*
|
|
1962
2255
|
* @returns {JSX.Element} The rendered Rating component.
|
|
1963
2256
|
*
|
|
1964
|
-
* @see https://
|
|
2257
|
+
* @see https://julseb-lib.vercel.app/components/rating
|
|
1965
2258
|
*/
|
|
1966
2259
|
declare const Rating: FC$2<ILibRating>;
|
|
1967
2260
|
|
|
@@ -1999,7 +2292,7 @@ declare const Rating: FC$2<ILibRating>;
|
|
|
1999
2292
|
*
|
|
2000
2293
|
* @returns {JSX.Element} The rendered InputPin component.
|
|
2001
2294
|
*
|
|
2002
|
-
* @see https://
|
|
2295
|
+
* @see https://julseb-lib.vercel.app/components/input-pin
|
|
2003
2296
|
*/
|
|
2004
2297
|
declare const InputPin: FC$2<ILibInputPin>;
|
|
2005
2298
|
|
|
@@ -2037,7 +2330,7 @@ declare const InputPin: FC$2<ILibInputPin>;
|
|
|
2037
2330
|
*
|
|
2038
2331
|
* @returns {JSX.Element} The rendered Fieldset component.
|
|
2039
2332
|
*
|
|
2040
|
-
* @see https://
|
|
2333
|
+
* @see https://julseb-lib.vercel.app/components/fieldset
|
|
2041
2334
|
*/
|
|
2042
2335
|
declare const Fieldset: FC$2<ILibFieldset>;
|
|
2043
2336
|
|
|
@@ -2071,7 +2364,7 @@ declare const Fieldset: FC$2<ILibFieldset>;
|
|
|
2071
2364
|
*
|
|
2072
2365
|
* @returns {JSX.Element} The rendered Form component.
|
|
2073
2366
|
*
|
|
2074
|
-
* @see https://
|
|
2367
|
+
* @see https://julseb-lib.vercel.app/components/form
|
|
2075
2368
|
*/
|
|
2076
2369
|
declare const Form: FC$2<ILibForm>;
|
|
2077
2370
|
|
|
@@ -2103,7 +2396,7 @@ declare const Form: FC$2<ILibForm>;
|
|
|
2103
2396
|
*
|
|
2104
2397
|
* @returns {JSX.Element} The rendered ListGroup component.
|
|
2105
2398
|
*
|
|
2106
|
-
* @see https://
|
|
2399
|
+
* @see https://julseb-lib.vercel.app/components/list-group
|
|
2107
2400
|
*/
|
|
2108
2401
|
declare const ListGroup: FC$2<ILibListGroup>;
|
|
2109
2402
|
|
|
@@ -2134,7 +2427,7 @@ declare const ListGroup: FC$2<ILibListGroup>;
|
|
|
2134
2427
|
*
|
|
2135
2428
|
* @returns {JSX.Element} The rendered ListGroupTitle component.
|
|
2136
2429
|
*
|
|
2137
|
-
* @see https://
|
|
2430
|
+
* @see https://julseb-lib.vercel.app/components/list-group
|
|
2138
2431
|
*/
|
|
2139
2432
|
declare const ListGroupTitle: FC$2<ILibListGroupTitle>;
|
|
2140
2433
|
|
|
@@ -2165,7 +2458,7 @@ declare const ListGroupTitle: FC$2<ILibListGroupTitle>;
|
|
|
2165
2458
|
*
|
|
2166
2459
|
* @returns {JSX.Element} The rendered ListGroupItem component.
|
|
2167
2460
|
*
|
|
2168
|
-
* @see https://
|
|
2461
|
+
* @see https://julseb-lib.vercel.app/components/list-group
|
|
2169
2462
|
*/
|
|
2170
2463
|
declare const ListGroupItem: FC$2<ILibListGroupItem>;
|
|
2171
2464
|
|
|
@@ -2195,7 +2488,7 @@ declare const ListGroupItem: FC$2<ILibListGroupItem>;
|
|
|
2195
2488
|
* <Text>Current Page</Text>
|
|
2196
2489
|
* </Breadcrumbs>
|
|
2197
2490
|
*
|
|
2198
|
-
* @see https://
|
|
2491
|
+
* @see https://julseb-lib.vercel.app/components/breadcrumbs
|
|
2199
2492
|
*/
|
|
2200
2493
|
declare const Breadcrumbs: FC$2<ILibBreadcrumbs>;
|
|
2201
2494
|
|
|
@@ -2225,7 +2518,7 @@ declare const Breadcrumbs: FC$2<ILibBreadcrumbs>;
|
|
|
2225
2518
|
*
|
|
2226
2519
|
* @returns {JSX.Element} The rendered Accordion component.
|
|
2227
2520
|
*
|
|
2228
|
-
* @see https://
|
|
2521
|
+
* @see https://julseb-lib.vercel.app/components/accordion
|
|
2229
2522
|
*/
|
|
2230
2523
|
declare const Accordion: FC$2<ILibAccordion>;
|
|
2231
2524
|
|
|
@@ -2253,7 +2546,7 @@ declare const Accordion: FC$2<ILibAccordion>;
|
|
|
2253
2546
|
*
|
|
2254
2547
|
* @returns {JSX.Element} The rendered AccordionItem component.
|
|
2255
2548
|
*
|
|
2256
|
-
* @see https://
|
|
2549
|
+
* @see https://julseb-lib.vercel.app/components/accordion
|
|
2257
2550
|
*/
|
|
2258
2551
|
declare const AccordionItem: FC$2<ILibAccordionItem>;
|
|
2259
2552
|
|
|
@@ -2289,7 +2582,7 @@ declare const AccordionItem: FC$2<ILibAccordionItem>;
|
|
|
2289
2582
|
*
|
|
2290
2583
|
* @returns {JSX.Element} The rendered Dropdown component.
|
|
2291
2584
|
*
|
|
2292
|
-
* @see https://
|
|
2585
|
+
* @see https://julseb-lib.vercel.app/components/dropdown
|
|
2293
2586
|
*/
|
|
2294
2587
|
declare const Dropdown: FC$2<ILibDropdown>;
|
|
2295
2588
|
|
|
@@ -2314,7 +2607,7 @@ declare const Dropdown: FC$2<ILibDropdown>;
|
|
|
2314
2607
|
*
|
|
2315
2608
|
* @returns {JSX.Element} The rendered DropdownItem component.
|
|
2316
2609
|
*
|
|
2317
|
-
* @see https://
|
|
2610
|
+
* @see https://julseb-lib.vercel.app/components/dropdown
|
|
2318
2611
|
*/
|
|
2319
2612
|
declare const DropdownItem: FC$2<ILibDropdownItem>;
|
|
2320
2613
|
|
|
@@ -2346,7 +2639,7 @@ declare const DropdownItem: FC$2<ILibDropdownItem>;
|
|
|
2346
2639
|
*
|
|
2347
2640
|
* @returns {JSX.Element} The rendered Toast component.
|
|
2348
2641
|
*
|
|
2349
|
-
* @see https://
|
|
2642
|
+
* @see https://julseb-lib.vercel.app/components/toast
|
|
2350
2643
|
*/
|
|
2351
2644
|
declare const Toast: FC$2<ILibToast>;
|
|
2352
2645
|
|
|
@@ -2379,7 +2672,7 @@ declare const Toast: FC$2<ILibToast>;
|
|
|
2379
2672
|
*
|
|
2380
2673
|
* @returns {JSX.Element} The rendered ToastContainer component.
|
|
2381
2674
|
*
|
|
2382
|
-
* @see https://
|
|
2675
|
+
* @see https://julseb-lib.vercel.app/components/toast
|
|
2383
2676
|
*/
|
|
2384
2677
|
declare const ToastContainer: FC$2<ToastContainerProps>;
|
|
2385
2678
|
|
|
@@ -2410,7 +2703,7 @@ declare const ToastContainer: FC$2<ToastContainerProps>;
|
|
|
2410
2703
|
* @prop {function} loading - Display a loading toast notification with gray styling.
|
|
2411
2704
|
* @prop {function} close - Close/dismiss all active toast notifications.
|
|
2412
2705
|
*
|
|
2413
|
-
* @see https://
|
|
2706
|
+
* @see https://julseb-lib.vercel.app/components/toast
|
|
2414
2707
|
*/
|
|
2415
2708
|
declare const toast: {
|
|
2416
2709
|
success: (title: string, options?: Omit<ILibToast, "status" | "closeToast" | "title"> & Omit<ToastOptions, "icon" | "closeButton" | "style" | "autoClose" | "className" | "progressClassName"> & {
|
|
@@ -2461,7 +2754,7 @@ declare const toast: {
|
|
|
2461
2754
|
*
|
|
2462
2755
|
* @returns {JSX.Element} The rendered Alert component.
|
|
2463
2756
|
*
|
|
2464
|
-
* @see https://
|
|
2757
|
+
* @see https://julseb-lib.vercel.app/components/alert
|
|
2465
2758
|
*/
|
|
2466
2759
|
declare const Alert: FC$2<ILibAlert>;
|
|
2467
2760
|
|
|
@@ -2498,7 +2791,7 @@ declare const Alert: FC$2<ILibAlert>;
|
|
|
2498
2791
|
*
|
|
2499
2792
|
* @returns {JSX.Element} The rendered Modal component.
|
|
2500
2793
|
*
|
|
2501
|
-
* @see https://
|
|
2794
|
+
* @see https://julseb-lib.vercel.app/components/modal
|
|
2502
2795
|
*/
|
|
2503
2796
|
declare const Modal: FC$2<ILibModal>;
|
|
2504
2797
|
|
|
@@ -2529,7 +2822,7 @@ declare const Modal: FC$2<ILibModal>;
|
|
|
2529
2822
|
*
|
|
2530
2823
|
* @returns {JSX.Element} The rendered DragList component.
|
|
2531
2824
|
*
|
|
2532
|
-
* @see https://
|
|
2825
|
+
* @see https://julseb-lib.vercel.app/components/drag-list
|
|
2533
2826
|
*/
|
|
2534
2827
|
declare const DragList: FC$2<ILibDragList>;
|
|
2535
2828
|
|
|
@@ -2563,7 +2856,7 @@ declare const DragList: FC$2<ILibDragList>;
|
|
|
2563
2856
|
*
|
|
2564
2857
|
* @returns {JSX.Element} The rendered DragListItem component.
|
|
2565
2858
|
*
|
|
2566
|
-
* @see https://
|
|
2859
|
+
* @see https://julseb-lib.vercel.app/components/drag-list
|
|
2567
2860
|
*/
|
|
2568
2861
|
declare const DragListItem: FC$2<ILibDragListItem>;
|
|
2569
2862
|
|
|
@@ -2598,7 +2891,7 @@ declare const DragListItem: FC$2<ILibDragListItem>;
|
|
|
2598
2891
|
*
|
|
2599
2892
|
* @returns {JSX.Element} The rendered Pagination component.
|
|
2600
2893
|
*
|
|
2601
|
-
* @see https://
|
|
2894
|
+
* @see https://julseb-lib.vercel.app/components/pagination
|
|
2602
2895
|
*/
|
|
2603
2896
|
declare const Pagination: FC$2<ILibPagination>;
|
|
2604
2897
|
|
|
@@ -2628,7 +2921,7 @@ declare const Pagination: FC$2<ILibPagination>;
|
|
|
2628
2921
|
*
|
|
2629
2922
|
* @returns {JSX.Element} The rendered PaginationButton component.
|
|
2630
2923
|
*
|
|
2631
|
-
* @see https://
|
|
2924
|
+
* @see https://julseb-lib.vercel.app/components/pagination
|
|
2632
2925
|
*/
|
|
2633
2926
|
declare const PaginationButton: FC$2<ILibPaginationButton>;
|
|
2634
2927
|
|
|
@@ -2671,7 +2964,7 @@ declare const PaginationButton: FC$2<ILibPaginationButton>;
|
|
|
2671
2964
|
*
|
|
2672
2965
|
* @returns {JSX.Element} The rendered Paginator component.
|
|
2673
2966
|
*
|
|
2674
|
-
* @see https://
|
|
2967
|
+
* @see https://julseb-lib.vercel.app/components/paginator
|
|
2675
2968
|
*/
|
|
2676
2969
|
declare const Paginator: FC$2<ILibPaginator>;
|
|
2677
2970
|
|
|
@@ -2700,7 +2993,7 @@ declare const Paginator: FC$2<ILibPaginator>;
|
|
|
2700
2993
|
*
|
|
2701
2994
|
* @returns {JSX.Element} The rendered ProgressBar component.
|
|
2702
2995
|
*
|
|
2703
|
-
* @see https://
|
|
2996
|
+
* @see https://julseb-lib.vercel.app/components/progress-bar
|
|
2704
2997
|
*/
|
|
2705
2998
|
declare const ProgressBar: FC$2<ILibProgressBar>;
|
|
2706
2999
|
|
|
@@ -2732,7 +3025,7 @@ declare const ProgressBar: FC$2<ILibProgressBar>;
|
|
|
2732
3025
|
*
|
|
2733
3026
|
* @returns {JSX.Element} The rendered ProgressCircle component.
|
|
2734
3027
|
*
|
|
2735
|
-
* @see https://
|
|
3028
|
+
* @see https://julseb-lib.vercel.app/components/progress-circle
|
|
2736
3029
|
*/
|
|
2737
3030
|
declare const ProgressCircle: FC$2<ILibProgressCircle>;
|
|
2738
3031
|
|
|
@@ -2767,7 +3060,7 @@ declare const ProgressCircle: FC$2<ILibProgressCircle>;
|
|
|
2767
3060
|
*
|
|
2768
3061
|
* @returns {JSX.Element} The rendered Tabs component.
|
|
2769
3062
|
*
|
|
2770
|
-
* @see https://
|
|
3063
|
+
* @see https://julseb-lib.vercel.app/components/tabs
|
|
2771
3064
|
*/
|
|
2772
3065
|
declare const Tabs: FC$2<ILibTabs>;
|
|
2773
3066
|
|
|
@@ -2795,7 +3088,7 @@ declare const Tabs: FC$2<ILibTabs>;
|
|
|
2795
3088
|
*
|
|
2796
3089
|
* @returns {JSX.Element} The rendered TabsContainer component.
|
|
2797
3090
|
*
|
|
2798
|
-
* @see https://
|
|
3091
|
+
* @see https://julseb-lib.vercel.app/components/tabs
|
|
2799
3092
|
*/
|
|
2800
3093
|
declare const TabsContainer: FC$2<ILibTabsContainer>;
|
|
2801
3094
|
|
|
@@ -2822,7 +3115,7 @@ declare const TabsContainer: FC$2<ILibTabsContainer>;
|
|
|
2822
3115
|
*
|
|
2823
3116
|
* @returns {JSX.Element} The rendered TabsButtonsContainer component.
|
|
2824
3117
|
*
|
|
2825
|
-
* @see https://
|
|
3118
|
+
* @see https://julseb-lib.vercel.app/components/tabs
|
|
2826
3119
|
*/
|
|
2827
3120
|
declare const TabsButtonsContainer: FC$2<ILibTabsButtonsContainer>;
|
|
2828
3121
|
|
|
@@ -2853,7 +3146,7 @@ declare const TabsButtonsContainer: FC$2<ILibTabsButtonsContainer>;
|
|
|
2853
3146
|
*
|
|
2854
3147
|
* @returns {JSX.Element} The rendered TabsButton component.
|
|
2855
3148
|
*
|
|
2856
|
-
* @see https://
|
|
3149
|
+
* @see https://julseb-lib.vercel.app/components/tabs
|
|
2857
3150
|
*/
|
|
2858
3151
|
declare const TabsButton: FC$2<ILibTabsButton>;
|
|
2859
3152
|
|
|
@@ -2878,7 +3171,7 @@ declare const TabsButton: FC$2<ILibTabsButton>;
|
|
|
2878
3171
|
*
|
|
2879
3172
|
* @returns {JSX.Element} The rendered TabsContent component.
|
|
2880
3173
|
*
|
|
2881
|
-
* @see https://
|
|
3174
|
+
* @see https://julseb-lib.vercel.app/components/tabs
|
|
2882
3175
|
*/
|
|
2883
3176
|
declare const TabsContent: FC$2<ILibTabsContent>;
|
|
2884
3177
|
|
|
@@ -2915,7 +3208,7 @@ declare const TabsContent: FC$2<ILibTabsContent>;
|
|
|
2915
3208
|
*
|
|
2916
3209
|
* @returns {JSX.Element} The rendered Slideshow component.
|
|
2917
3210
|
*
|
|
2918
|
-
* @see https://
|
|
3211
|
+
* @see https://julseb-lib.vercel.app/components/slideshow
|
|
2919
3212
|
*/
|
|
2920
3213
|
declare const Slideshow: FC$2<ILibSlideshow>;
|
|
2921
3214
|
|
|
@@ -2948,7 +3241,7 @@ declare const Slideshow: FC$2<ILibSlideshow>;
|
|
|
2948
3241
|
*
|
|
2949
3242
|
* @returns A carousel component with continuous scrolling animation and optional gradient overlays
|
|
2950
3243
|
*
|
|
2951
|
-
* @see https://
|
|
3244
|
+
* @see https://julseb-lib.vercel.app/components/carousel
|
|
2952
3245
|
*/
|
|
2953
3246
|
declare const Carousel: FC$2<ILibCarousel>;
|
|
2954
3247
|
|
|
@@ -2982,7 +3275,7 @@ declare const Carousel: FC$2<ILibCarousel>;
|
|
|
2982
3275
|
*
|
|
2983
3276
|
* @returns {JSX.Element} The rendered Cover component.
|
|
2984
3277
|
*
|
|
2985
|
-
* @see https://
|
|
3278
|
+
* @see https://julseb-lib.vercel.app/components/cover
|
|
2986
3279
|
*/
|
|
2987
3280
|
declare const Cover: FC$2<ILibCover>;
|
|
2988
3281
|
|
|
@@ -3019,7 +3312,7 @@ declare const Cover: FC$2<ILibCover>;
|
|
|
3019
3312
|
*
|
|
3020
3313
|
* @returns {JSX.Element} The rendered Table component.
|
|
3021
3314
|
*
|
|
3022
|
-
* @see https://
|
|
3315
|
+
* @see https://julseb-lib.vercel.app/components/table
|
|
3023
3316
|
*/
|
|
3024
3317
|
declare const Table: FC$2<ILibTable>;
|
|
3025
3318
|
|
|
@@ -3048,7 +3341,7 @@ declare const Table: FC$2<ILibTable>;
|
|
|
3048
3341
|
*
|
|
3049
3342
|
* @returns {JSX.Element} The rendered PageLoading component.
|
|
3050
3343
|
*
|
|
3051
|
-
* @see https://
|
|
3344
|
+
* @see https://julseb-lib.vercel.app/components/page-loading
|
|
3052
3345
|
*/
|
|
3053
3346
|
declare const PageLoading: FC$2<ILibPageLoading>;
|
|
3054
3347
|
|
|
@@ -3072,7 +3365,7 @@ declare const PageLoading: FC$2<ILibPageLoading>;
|
|
|
3072
3365
|
*
|
|
3073
3366
|
* @returns {JSX.Element} The rendered Sticky component.
|
|
3074
3367
|
*
|
|
3075
|
-
* @see https://
|
|
3368
|
+
* @see https://julseb-lib.vercel.app/components/sticky
|
|
3076
3369
|
*/
|
|
3077
3370
|
declare const Sticky: FC$2<ILibSticky>;
|
|
3078
3371
|
|
|
@@ -3116,7 +3409,7 @@ declare const Sticky: FC$2<ILibSticky>;
|
|
|
3116
3409
|
*
|
|
3117
3410
|
* @returns {JSX.Element} The rendered MarkdownEditor component.
|
|
3118
3411
|
*
|
|
3119
|
-
* @see https://
|
|
3412
|
+
* @see https://julseb-lib.vercel.app/components/markdown-editor
|
|
3120
3413
|
*/
|
|
3121
3414
|
declare const MarkdownEditor: FC$2<ILibMarkdownEditor>;
|
|
3122
3415
|
|
|
@@ -3145,7 +3438,7 @@ declare const MarkdownEditor: FC$2<ILibMarkdownEditor>;
|
|
|
3145
3438
|
*
|
|
3146
3439
|
* @returns {JSX.Element} The rendered MarkdownContainer component.
|
|
3147
3440
|
*
|
|
3148
|
-
* @see https://
|
|
3441
|
+
* @see https://julseb-lib.vercel.app/components/markdown-container
|
|
3149
3442
|
*/
|
|
3150
3443
|
declare const MarkdownContainer: FC$2<ILibMarkdownContainer>;
|
|
3151
3444
|
|
|
@@ -3169,7 +3462,7 @@ declare const MarkdownContainer: FC$2<ILibMarkdownContainer>;
|
|
|
3169
3462
|
*
|
|
3170
3463
|
* @returns {JSX.Element} The rendered code block with syntax highlighting and a copy button.
|
|
3171
3464
|
*
|
|
3172
|
-
* @see https://
|
|
3465
|
+
* @see https://julseb-lib.vercel.app/components/code-container
|
|
3173
3466
|
*/
|
|
3174
3467
|
declare const CodeContainer: FC$2<ILibCodeContainer>;
|
|
3175
3468
|
|
|
@@ -3192,7 +3485,7 @@ declare const CodeContainer: FC$2<ILibCodeContainer>;
|
|
|
3192
3485
|
*
|
|
3193
3486
|
* @returns {JSX.Element} The rendered Fade component.
|
|
3194
3487
|
*
|
|
3195
|
-
* @see https://
|
|
3488
|
+
* @see https://julseb-lib.vercel.app/components/fade
|
|
3196
3489
|
*/
|
|
3197
3490
|
declare const Fade: FC$2<ILibFade>;
|
|
3198
3491
|
|
|
@@ -3219,7 +3512,7 @@ declare const Fade: FC$2<ILibFade>;
|
|
|
3219
3512
|
*
|
|
3220
3513
|
* @returns {JSX.Element} The rendered BackToTop component.
|
|
3221
3514
|
*
|
|
3222
|
-
* @see https://
|
|
3515
|
+
* @see https://julseb-lib.vercel.app/components/back-to-top
|
|
3223
3516
|
*/
|
|
3224
3517
|
declare const BackToTop: FC$2<ILibBackToTop>;
|
|
3225
3518
|
|
|
@@ -3261,7 +3554,7 @@ declare const BackToTop: FC$2<ILibBackToTop>;
|
|
|
3261
3554
|
*
|
|
3262
3555
|
* @returns {JSX.Element} The rendered Drawer component.
|
|
3263
3556
|
*
|
|
3264
|
-
* @see https://
|
|
3557
|
+
* @see https://julseb-lib.vercel.app/components/drawer
|
|
3265
3558
|
*/
|
|
3266
3559
|
declare const Drawer: FC$2<ILibDrawer>;
|
|
3267
3560
|
|
|
@@ -3310,7 +3603,7 @@ declare const Drawer: FC$2<ILibDrawer>;
|
|
|
3310
3603
|
*
|
|
3311
3604
|
* @returns {JSX.Element} The rendered Header component.
|
|
3312
3605
|
*
|
|
3313
|
-
* @see https://
|
|
3606
|
+
* @see https://julseb-lib.vercel.app/components/header
|
|
3314
3607
|
*/
|
|
3315
3608
|
declare const Header: FC$2<ILibHeader>;
|
|
3316
3609
|
|
|
@@ -3348,7 +3641,7 @@ declare const Header: FC$2<ILibHeader>;
|
|
|
3348
3641
|
*
|
|
3349
3642
|
* @returns {JSX.Element} The rendered Footer component.
|
|
3350
3643
|
*
|
|
3351
|
-
* @see https://
|
|
3644
|
+
* @see https://julseb-lib.vercel.app/components/footer
|
|
3352
3645
|
*/
|
|
3353
3646
|
declare const Footer: FC$2<ILibFooter>;
|
|
3354
3647
|
|
|
@@ -3394,7 +3687,7 @@ declare const Footer: FC$2<ILibFooter>;
|
|
|
3394
3687
|
*
|
|
3395
3688
|
* @returns {JSX.Element} The rendered Meta component with HTML head elements.
|
|
3396
3689
|
*
|
|
3397
|
-
* @see https://
|
|
3690
|
+
* @see https://julseb-lib.vercel.app/components/meta
|
|
3398
3691
|
*/
|
|
3399
3692
|
declare const Meta: FC$2<ILibMeta>;
|
|
3400
3693
|
|
|
@@ -3425,7 +3718,7 @@ declare const Meta: FC$2<ILibMeta>;
|
|
|
3425
3718
|
*
|
|
3426
3719
|
* @returns {JSX.Element} The rendered PageLayout component with complete page structure.
|
|
3427
3720
|
*
|
|
3428
|
-
* @see https://
|
|
3721
|
+
* @see https://julseb-lib.vercel.app/components/page-layout
|
|
3429
3722
|
*/
|
|
3430
3723
|
declare const PageLayout: FC$2<ILibPageLayout>;
|
|
3431
3724
|
|
|
@@ -3447,7 +3740,7 @@ declare const PageLayout: FC$2<ILibPageLayout>;
|
|
|
3447
3740
|
*
|
|
3448
3741
|
* @returns {JSX.Element} The rendered SrOnly component with screen reader accessible content.
|
|
3449
3742
|
*
|
|
3450
|
-
* @see https://
|
|
3743
|
+
* @see https://julseb-lib.vercel.app/components/sr-only
|
|
3451
3744
|
*/
|
|
3452
3745
|
declare const SrOnly: FC$2<ILibSrOnly>;
|
|
3453
3746
|
|