@scalably/ui 0.5.0 → 0.5.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/dist/index.d.cts +93 -63
- package/dist/index.d.ts +93 -63
- package/dist/index.esm.js +32 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +32 -3
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +8 -1
package/dist/index.d.cts
CHANGED
|
@@ -2407,6 +2407,15 @@ interface RichTextEditorProps {
|
|
|
2407
2407
|
max: number;
|
|
2408
2408
|
current: number;
|
|
2409
2409
|
}) => void;
|
|
2410
|
+
/**
|
|
2411
|
+
* Controls when Tiptap renders the editor content.
|
|
2412
|
+
*
|
|
2413
|
+
* - Set to `false` when using SSR (e.g., Next.js) to prevent hydration mismatches.
|
|
2414
|
+
* - Set to `true` or leave undefined for client-side only rendering.
|
|
2415
|
+
*
|
|
2416
|
+
* @default undefined (Tiptap auto-detects, but you should explicitly set `false` for SSR)
|
|
2417
|
+
*/
|
|
2418
|
+
immediatelyRender?: boolean;
|
|
2410
2419
|
}
|
|
2411
2420
|
/**
|
|
2412
2421
|
* RichTextEditor - Controlled rich text editor built on top of Tiptap.
|
|
@@ -2415,6 +2424,22 @@ interface RichTextEditorProps {
|
|
|
2415
2424
|
* - Renders a toolbar with common formatting controls.
|
|
2416
2425
|
* - Mimics the design system's input styling (label, error, helper text).
|
|
2417
2426
|
*
|
|
2427
|
+
* **Supported HTML Tags:**
|
|
2428
|
+
* The editor supports the following HTML tags through TipTap extensions:
|
|
2429
|
+
* - **Text formatting**: `<p>`, `<h1>`, `<h2>`, `<h3>`, `<strong>`, `<em>`, `<u>`, `<code>`, `<blockquote>`, `<s>` (strikethrough)
|
|
2430
|
+
* - **Advanced formatting**: `<sub>` (subscript), `<sup>` (superscript), `<mark>` (highlight)
|
|
2431
|
+
* - **Lists**: `<ul>`, `<ol>`, `<li>`
|
|
2432
|
+
* - **Links**: `<a>`
|
|
2433
|
+
* - **Media**: `<img>`, `<iframe>` (YouTube embeds)
|
|
2434
|
+
* - **Tables**: `<table>`, `<thead>`, `<tbody>`, `<tr>`, `<th>`, `<td>`
|
|
2435
|
+
* - **Semantic**: `<figure>`, `<figcaption>`, `<span>` (with classes/styles preserved)
|
|
2436
|
+
* - **Alignment**: Text alignment via `style="text-align: ..."` on paragraphs and headings
|
|
2437
|
+
* - **Other**: `<hr>`, `<br>`
|
|
2438
|
+
*
|
|
2439
|
+
* **Important:** TipTap uses a schema-based system. HTML tags not explicitly
|
|
2440
|
+
* supported by extensions will be stripped or converted during parsing. If you
|
|
2441
|
+
* need additional tag support, custom extensions must be added.
|
|
2442
|
+
*
|
|
2418
2443
|
* **Viewing Content:**
|
|
2419
2444
|
* To display the HTML content created with this editor in read-only mode,
|
|
2420
2445
|
* use the `RichTextViewer` component. It ensures content rendered in "view"
|
|
@@ -2429,7 +2454,12 @@ interface RichTextEditorProps {
|
|
|
2429
2454
|
*
|
|
2430
2455
|
* return (
|
|
2431
2456
|
* <div>
|
|
2432
|
-
*
|
|
2457
|
+
* {/* For SSR (Next.js, etc.), set immediatelyRender={false} *\/}
|
|
2458
|
+
* <RichTextEditor
|
|
2459
|
+
* value={content}
|
|
2460
|
+
* onChange={setContent}
|
|
2461
|
+
* immediatelyRender={false}
|
|
2462
|
+
* />
|
|
2433
2463
|
* <RichTextViewer content={content} />
|
|
2434
2464
|
* </div>
|
|
2435
2465
|
* );
|
|
@@ -2439,7 +2469,7 @@ interface RichTextEditorProps {
|
|
|
2439
2469
|
* @see RichTextViewer - Read-only viewer component for displaying rich text content
|
|
2440
2470
|
*/
|
|
2441
2471
|
declare const RichTextEditor: {
|
|
2442
|
-
({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2472
|
+
({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, immediatelyRender, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
|
|
2443
2473
|
displayName: string;
|
|
2444
2474
|
};
|
|
2445
2475
|
|
|
@@ -2722,8 +2752,6 @@ interface CalendarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2722
2752
|
size?: number;
|
|
2723
2753
|
/** Additional CSS classes to apply to the icon */
|
|
2724
2754
|
className?: string;
|
|
2725
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
2726
|
-
strokeWidth?: number;
|
|
2727
2755
|
}
|
|
2728
2756
|
/**
|
|
2729
2757
|
* Calendar icon component - displays a calendar with date indicators.
|
|
@@ -2770,8 +2798,6 @@ interface CheckIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2770
2798
|
size?: number;
|
|
2771
2799
|
/** Additional CSS classes to apply to the icon */
|
|
2772
2800
|
className?: string;
|
|
2773
|
-
/** Stroke width of the icon in pixels. Defaults to 2.2. */
|
|
2774
|
-
strokeWidth?: number;
|
|
2775
2801
|
}
|
|
2776
2802
|
/**
|
|
2777
2803
|
* Check icon component - displays a checkmark in a green gradient circle.
|
|
@@ -2795,8 +2821,6 @@ interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2795
2821
|
size?: number;
|
|
2796
2822
|
/** Additional CSS classes to apply to the icon */
|
|
2797
2823
|
className?: string;
|
|
2798
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
2799
|
-
strokeWidth?: number;
|
|
2800
2824
|
}
|
|
2801
2825
|
/**
|
|
2802
2826
|
* Close icon component - displays a cross icon.
|
|
@@ -2835,8 +2859,6 @@ interface DropdownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2835
2859
|
size?: number;
|
|
2836
2860
|
/** Additional CSS classes to apply to the icon */
|
|
2837
2861
|
className?: string;
|
|
2838
|
-
/** Stroke width of the icon in pixels. Defaults to 2. */
|
|
2839
|
-
strokeWidth?: number;
|
|
2840
2862
|
}
|
|
2841
2863
|
/**
|
|
2842
2864
|
* Dropdown icon component - displays a down arrow icon.
|
|
@@ -2857,8 +2879,6 @@ interface DropUpIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2857
2879
|
size?: number;
|
|
2858
2880
|
/** Additional CSS classes to apply to the icon */
|
|
2859
2881
|
className?: string;
|
|
2860
|
-
/** Stroke width of the icon in pixels. Defaults to 2. */
|
|
2861
|
-
strokeWidth?: number;
|
|
2862
2882
|
}
|
|
2863
2883
|
/**
|
|
2864
2884
|
* DropUp icon component - displays an up arrow icon.
|
|
@@ -2885,8 +2905,6 @@ interface ErrorIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2885
2905
|
size?: number;
|
|
2886
2906
|
/** Additional CSS classes to apply to the icon */
|
|
2887
2907
|
className?: string;
|
|
2888
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
2889
|
-
strokeWidth?: number;
|
|
2890
2908
|
}
|
|
2891
2909
|
/**
|
|
2892
2910
|
* Error icon component - displays an error icon.
|
|
@@ -2902,6 +2920,46 @@ interface ErrorIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2902
2920
|
*/
|
|
2903
2921
|
declare const ErrorIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ErrorIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2904
2922
|
|
|
2923
|
+
interface EyeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2924
|
+
/** Size of the icon in pixels. Defaults to 24. */
|
|
2925
|
+
size?: number;
|
|
2926
|
+
/** Additional CSS classes to apply to the icon */
|
|
2927
|
+
className?: string;
|
|
2928
|
+
}
|
|
2929
|
+
/**
|
|
2930
|
+
* Eye icon component - displays an eye icon.
|
|
2931
|
+
*
|
|
2932
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
2933
|
+
*
|
|
2934
|
+
* @example
|
|
2935
|
+
* ```tsx
|
|
2936
|
+
* import { EyeIcon } from '@scalably/ui';
|
|
2937
|
+
*
|
|
2938
|
+
* <EyeIcon size={24} className="sui-text-primary" />
|
|
2939
|
+
* ```
|
|
2940
|
+
*/
|
|
2941
|
+
declare const EyeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EyeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2942
|
+
|
|
2943
|
+
interface EyeSlashIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2944
|
+
/** Size of the icon in pixels. Defaults to 24. */
|
|
2945
|
+
size?: number;
|
|
2946
|
+
/** Additional CSS classes to apply to the icon */
|
|
2947
|
+
className?: string;
|
|
2948
|
+
}
|
|
2949
|
+
/**
|
|
2950
|
+
* Eye slash icon component - displays an eye slash icon.
|
|
2951
|
+
*
|
|
2952
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
2953
|
+
*
|
|
2954
|
+
* @example
|
|
2955
|
+
* ```tsx
|
|
2956
|
+
* import { EyeSlashIcon } from '@scalably/ui';
|
|
2957
|
+
*
|
|
2958
|
+
* <EyeSlashIcon size={24} className="sui-text-primary" />
|
|
2959
|
+
* ```
|
|
2960
|
+
*/
|
|
2961
|
+
declare const EyeSlashIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EyeSlashIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2962
|
+
|
|
2905
2963
|
interface FileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2906
2964
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
2907
2965
|
size?: number;
|
|
@@ -2925,8 +2983,6 @@ declare const FileIcon: react.MemoExoticComponent<react.ForwardRefExoticComponen
|
|
|
2925
2983
|
interface FileUploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2926
2984
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
2927
2985
|
size?: number;
|
|
2928
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
2929
|
-
strokeWidth?: number;
|
|
2930
2986
|
/** Additional CSS classes to apply to the icon */
|
|
2931
2987
|
className?: string;
|
|
2932
2988
|
}
|
|
@@ -2949,8 +3005,6 @@ interface GridIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2949
3005
|
size?: number;
|
|
2950
3006
|
/** Additional CSS classes to apply to the icon */
|
|
2951
3007
|
className?: string;
|
|
2952
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
2953
|
-
strokeWidth?: number;
|
|
2954
3008
|
}
|
|
2955
3009
|
/**
|
|
2956
3010
|
* Grid icon component - displays a grid icon.
|
|
@@ -2989,8 +3043,6 @@ declare const ImageIcon: react.MemoExoticComponent<react.ForwardRefExoticCompone
|
|
|
2989
3043
|
interface ImageUploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2990
3044
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
2991
3045
|
size?: number;
|
|
2992
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
2993
|
-
strokeWidth?: number;
|
|
2994
3046
|
/** Additional CSS classes to apply to the icon */
|
|
2995
3047
|
className?: string;
|
|
2996
3048
|
}
|
|
@@ -3013,8 +3065,6 @@ interface IndeterminateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3013
3065
|
size?: number;
|
|
3014
3066
|
/** Additional CSS classes to apply to the icon */
|
|
3015
3067
|
className?: string;
|
|
3016
|
-
/** Stroke width of the icon in pixels. Defaults to 2. */
|
|
3017
|
-
strokeWidth?: number;
|
|
3018
3068
|
}
|
|
3019
3069
|
/**
|
|
3020
3070
|
* Indeterminate icon component - displays an indeterminate icon.
|
|
@@ -3035,8 +3085,6 @@ interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3035
3085
|
size?: number;
|
|
3036
3086
|
/** Additional CSS classes to apply to the icon */
|
|
3037
3087
|
className?: string;
|
|
3038
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3039
|
-
strokeWidth?: number;
|
|
3040
3088
|
}
|
|
3041
3089
|
/**
|
|
3042
3090
|
* Info icon component - displays an info icon.
|
|
@@ -3057,8 +3105,6 @@ interface ListIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3057
3105
|
size?: number;
|
|
3058
3106
|
/** Additional CSS classes to apply to the icon */
|
|
3059
3107
|
className?: string;
|
|
3060
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3061
|
-
strokeWidth?: number;
|
|
3062
3108
|
}
|
|
3063
3109
|
/**
|
|
3064
3110
|
* List icon component - displays a list icon.
|
|
@@ -3079,8 +3125,6 @@ interface MinusIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3079
3125
|
size?: number;
|
|
3080
3126
|
/** Additional CSS classes to apply to the icon */
|
|
3081
3127
|
className?: string;
|
|
3082
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3083
|
-
strokeWidth?: number;
|
|
3084
3128
|
}
|
|
3085
3129
|
/**
|
|
3086
3130
|
* Minus icon component - displays a minus icon.
|
|
@@ -3124,8 +3168,6 @@ interface PlusIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3124
3168
|
size?: number;
|
|
3125
3169
|
/** Additional CSS classes to apply to the icon */
|
|
3126
3170
|
className?: string;
|
|
3127
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3128
|
-
strokeWidth?: number;
|
|
3129
3171
|
}
|
|
3130
3172
|
/**
|
|
3131
3173
|
* Plus icon component - displays a plus icon.
|
|
@@ -3210,8 +3252,6 @@ interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3210
3252
|
size?: number;
|
|
3211
3253
|
/** Additional CSS classes to apply to the icon */
|
|
3212
3254
|
className?: string;
|
|
3213
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3214
|
-
strokeWidth?: number;
|
|
3215
3255
|
}
|
|
3216
3256
|
/**
|
|
3217
3257
|
* Search icon component - a magnifying glass icon for search functionality.
|
|
@@ -3232,8 +3272,6 @@ interface SettingsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3232
3272
|
size?: number;
|
|
3233
3273
|
/** Additional CSS classes to apply to the icon */
|
|
3234
3274
|
className?: string;
|
|
3235
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3236
|
-
strokeWidth?: number;
|
|
3237
3275
|
}
|
|
3238
3276
|
/**
|
|
3239
3277
|
* Settings icon component - displays a settings icon.
|
|
@@ -3257,8 +3295,6 @@ interface SuccessIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3257
3295
|
size?: number;
|
|
3258
3296
|
/** Additional CSS classes to apply to the icon */
|
|
3259
3297
|
className?: string;
|
|
3260
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3261
|
-
strokeWidth?: number;
|
|
3262
3298
|
}
|
|
3263
3299
|
/**
|
|
3264
3300
|
* Success icon component - displays a checkmark in a green gradient circle.
|
|
@@ -3280,8 +3316,6 @@ interface TickIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3280
3316
|
size?: number;
|
|
3281
3317
|
/** Additional CSS classes to apply to the icon */
|
|
3282
3318
|
className?: string;
|
|
3283
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3284
|
-
strokeWidth?: number;
|
|
3285
3319
|
}
|
|
3286
3320
|
/**
|
|
3287
3321
|
* Tick icon component - displays a tick icon.
|
|
@@ -3302,8 +3336,6 @@ interface ToFirstIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3302
3336
|
size?: number;
|
|
3303
3337
|
/** Additional CSS classes to apply to the icon */
|
|
3304
3338
|
className?: string;
|
|
3305
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3306
|
-
strokeWidth?: number;
|
|
3307
3339
|
}
|
|
3308
3340
|
/**
|
|
3309
3341
|
* ToFirst icon component - displays a to first icon.
|
|
@@ -3324,8 +3356,6 @@ interface ToLastIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3324
3356
|
size?: number;
|
|
3325
3357
|
/** Additional CSS classes to apply to the icon */
|
|
3326
3358
|
className?: string;
|
|
3327
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3328
|
-
strokeWidth?: number;
|
|
3329
3359
|
}
|
|
3330
3360
|
/**
|
|
3331
3361
|
* ToLast icon component - displays a to last icon.
|
|
@@ -3346,8 +3376,6 @@ interface ToNextIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3346
3376
|
size?: number;
|
|
3347
3377
|
/** Additional CSS classes to apply to the icon */
|
|
3348
3378
|
className?: string;
|
|
3349
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3350
|
-
strokeWidth?: number;
|
|
3351
3379
|
}
|
|
3352
3380
|
/**
|
|
3353
3381
|
* ToNext icon component - displays a to next icon.
|
|
@@ -3368,8 +3396,6 @@ interface ToPreviousIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3368
3396
|
size?: number;
|
|
3369
3397
|
/** Additional CSS classes to apply to the icon */
|
|
3370
3398
|
className?: string;
|
|
3371
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3372
|
-
strokeWidth?: number;
|
|
3373
3399
|
}
|
|
3374
3400
|
/**
|
|
3375
3401
|
* ToPrevious icon component - displays a to previous icon.
|
|
@@ -3385,6 +3411,26 @@ interface ToPreviousIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3385
3411
|
*/
|
|
3386
3412
|
declare const ToPreviousIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ToPreviousIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3387
3413
|
|
|
3414
|
+
interface TranslateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3415
|
+
/** Size of the icon in pixels. Defaults to 24. */
|
|
3416
|
+
size?: number;
|
|
3417
|
+
/** Additional CSS classes to apply to the icon */
|
|
3418
|
+
className?: string;
|
|
3419
|
+
}
|
|
3420
|
+
/**
|
|
3421
|
+
* Translate icon component - displays a translate icon.
|
|
3422
|
+
*
|
|
3423
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3424
|
+
*
|
|
3425
|
+
* @example
|
|
3426
|
+
* ```tsx
|
|
3427
|
+
* import { TranslateIcon } from '@scalably/ui';
|
|
3428
|
+
*
|
|
3429
|
+
* <TranslateIcon size={24} className="sui-text-primary" />
|
|
3430
|
+
* ```
|
|
3431
|
+
*/
|
|
3432
|
+
declare const TranslateIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TranslateIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3433
|
+
|
|
3388
3434
|
interface VideoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3389
3435
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
3390
3436
|
size?: number;
|
|
@@ -3408,8 +3454,6 @@ declare const VideoIcon: react.MemoExoticComponent<react.ForwardRefExoticCompone
|
|
|
3408
3454
|
interface VideoUploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3409
3455
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
3410
3456
|
size?: number;
|
|
3411
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3412
|
-
strokeWidth?: number;
|
|
3413
3457
|
/** Additional CSS classes to apply to the icon */
|
|
3414
3458
|
className?: string;
|
|
3415
3459
|
}
|
|
@@ -3432,8 +3476,6 @@ interface WarnIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3432
3476
|
size?: number;
|
|
3433
3477
|
/** Additional CSS classes to apply to the icon */
|
|
3434
3478
|
className?: string;
|
|
3435
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3436
|
-
strokeWidth?: number;
|
|
3437
3479
|
}
|
|
3438
3480
|
/**
|
|
3439
3481
|
* Warn icon component - displays a warn icon.
|
|
@@ -3797,8 +3839,6 @@ interface AlignCenterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3797
3839
|
size?: number;
|
|
3798
3840
|
/** Additional CSS classes to apply to the icon */
|
|
3799
3841
|
className?: string;
|
|
3800
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3801
|
-
strokeWidth?: number;
|
|
3802
3842
|
}
|
|
3803
3843
|
declare const AlignCenterIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignCenterIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3804
3844
|
|
|
@@ -3807,8 +3847,6 @@ interface AlignLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3807
3847
|
size?: number;
|
|
3808
3848
|
/** Additional CSS classes to apply to the icon */
|
|
3809
3849
|
className?: string;
|
|
3810
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3811
|
-
strokeWidth?: number;
|
|
3812
3850
|
}
|
|
3813
3851
|
declare const AlignLeftIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignLeftIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3814
3852
|
|
|
@@ -3817,8 +3855,6 @@ interface AlignRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3817
3855
|
size?: number;
|
|
3818
3856
|
/** Additional CSS classes to apply to the icon */
|
|
3819
3857
|
className?: string;
|
|
3820
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3821
|
-
strokeWidth?: number;
|
|
3822
3858
|
}
|
|
3823
3859
|
declare const AlignRightIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignRightIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3824
3860
|
|
|
@@ -3827,8 +3863,6 @@ interface BoldIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3827
3863
|
size?: number;
|
|
3828
3864
|
/** Additional CSS classes to apply to the icon */
|
|
3829
3865
|
className?: string;
|
|
3830
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3831
|
-
strokeWidth?: number;
|
|
3832
3866
|
}
|
|
3833
3867
|
/**
|
|
3834
3868
|
* Bold icon component - displays a bold icon.
|
|
@@ -3865,8 +3899,6 @@ interface ItalicIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3865
3899
|
size?: number;
|
|
3866
3900
|
/** Additional CSS classes to apply to the icon */
|
|
3867
3901
|
className?: string;
|
|
3868
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3869
|
-
strokeWidth?: number;
|
|
3870
3902
|
}
|
|
3871
3903
|
/**
|
|
3872
3904
|
* Italic icon component - displays an italic icon.
|
|
@@ -3911,8 +3943,6 @@ interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3911
3943
|
size?: number;
|
|
3912
3944
|
/** Additional CSS classes to apply to the icon */
|
|
3913
3945
|
className?: string;
|
|
3914
|
-
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3915
|
-
strokeWidth?: number;
|
|
3916
3946
|
}
|
|
3917
3947
|
/**
|
|
3918
3948
|
* Underline icon component - displays an underline icon.
|
|
@@ -3928,4 +3958,4 @@ interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3928
3958
|
*/
|
|
3929
3959
|
declare const UnderlineIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<UnderlineIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3930
3960
|
|
|
3931
|
-
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|
|
3961
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|