@lax-wp/design-system 0.9.0 → 0.9.3
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/components/button/Button.d.ts +2 -1
- package/dist/components/buttons/option-button/OptionButton.d.ts +2 -0
- package/dist/components/data-display/code-editor-beta/CodeEditorBeta.d.ts +10 -14
- package/dist/components/data-display/comparison/Comparison.d.ts +2 -2
- package/dist/components/data-display/comparison/ComparisonContext.d.ts +1 -1
- package/dist/components/data-display/comparison/components/SortableItem.d.ts +1 -1
- package/dist/components/data-display/comparison/constants.d.ts +1 -1
- package/dist/components/data-display/comparison/utils.d.ts +1 -1
- package/dist/components/data-display/label-value/LabelValue.d.ts +2 -0
- package/dist/components/data-display/popper/Popper.d.ts +3 -0
- package/dist/components/forms/creatable-select/CreatableSelect.d.ts +1 -1
- package/dist/components/forms/form/Form.d.ts +2 -0
- package/dist/components/forms/md-input/MarkdownPreview.d.ts +45 -0
- package/dist/components/forms/md-input/RichMarkdownInput.d.ts +79 -0
- package/dist/components/forms/md-input/index.d.ts +6 -0
- package/dist/components/forms/select-field/SelectField.d.ts +1 -0
- package/dist/components/tooltip/Tooltip.d.ts +1 -0
- package/dist/design-system.css +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.es.js +52484 -21989
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +84 -170
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +18 -0
- package/package.json +14 -3
|
@@ -16,6 +16,7 @@ export interface IButtonProps {
|
|
|
16
16
|
type?: 'button' | 'submit' | 'reset';
|
|
17
17
|
options?: ItemType[];
|
|
18
18
|
tooltip?: string;
|
|
19
|
+
autoFocus?: boolean;
|
|
19
20
|
tooltipPlacement?: 'top' | 'bottom' | 'left' | 'right';
|
|
20
21
|
/** Array of keyboard shortcut keys to display inline in the button (e.g., ['Meta', 'S'] or ['Ctrl', 'Enter']) */
|
|
21
22
|
shortcuts?: string[];
|
|
@@ -25,5 +26,5 @@ export interface IButtonProps {
|
|
|
25
26
|
}
|
|
26
27
|
export type IButtonStatus = 'secondary-neutral' | 'primary' | 'secondary' | 'error' | 'warning' | 'success' | 'error-secondary' | 'cancel' | 'no-background' | 'publish' | 'default';
|
|
27
28
|
export type IButtonAppearance = 'filled' | 'outline' | 'ghost' | 'dashed';
|
|
28
|
-
declare const Button: React.
|
|
29
|
+
declare const Button: React.ForwardRefExoticComponent<IButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
29
30
|
export default Button;
|
|
@@ -45,6 +45,8 @@ export interface OptionButtonProps {
|
|
|
45
45
|
isFlowAvailable?: boolean;
|
|
46
46
|
/** Array of keyboard shortcut keys to display inline in the button (e.g., ['Meta', 'S'] or ['Ctrl', 'Enter']) */
|
|
47
47
|
shortcuts?: string[];
|
|
48
|
+
/** Custom CSS classes for the text */
|
|
49
|
+
textClassName?: string;
|
|
48
50
|
}
|
|
49
51
|
/**
|
|
50
52
|
* OptionButton component provides a flexible button for lists, menus, and option selections.
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import { type FC } from "react";
|
|
2
2
|
import { type ReactCodeMirrorRef } from "@uiw/react-codemirror";
|
|
3
|
-
|
|
4
|
-
export type TTabKey = (typeof TABS)[number];
|
|
5
|
-
/**
|
|
6
|
-
* Toolbar context passed to the `renderToolbarActions` callback.
|
|
7
|
-
*/
|
|
3
|
+
import type { CodeBlockInfo } from "../../../types";
|
|
8
4
|
export interface CodeEditorBetaToolbarContext {
|
|
9
5
|
/** The CodeMirror editor view ref */
|
|
10
6
|
editorRef: ReactCodeMirrorRef | null;
|
|
@@ -19,9 +15,6 @@ export interface CodeEditorBetaToolbarContext {
|
|
|
19
15
|
/** Current active tab (JSON or Grid) */
|
|
20
16
|
activeTab: "JSON" | "Grid";
|
|
21
17
|
}
|
|
22
|
-
/**
|
|
23
|
-
* Props for the experimental CodeMirror-based CodeEditor.
|
|
24
|
-
*/
|
|
25
18
|
export interface CodeEditorBetaProps {
|
|
26
19
|
/** The code content to display in the editor */
|
|
27
20
|
value: string;
|
|
@@ -49,9 +42,9 @@ export interface CodeEditorBetaProps {
|
|
|
49
42
|
className?: string;
|
|
50
43
|
/** Auto-format JSON on mount */
|
|
51
44
|
enableAutoFormatting?: boolean;
|
|
52
|
-
/** Disables parent save button during Python validation
|
|
45
|
+
/** Disables parent save button during Python validation */
|
|
53
46
|
setIsDisableSave?: (flag: boolean) => void;
|
|
54
|
-
/** API to check Python syntax
|
|
47
|
+
/** API to check Python syntax */
|
|
55
48
|
checkSyntaxAPI?: (code: string) => Promise<{
|
|
56
49
|
data: {
|
|
57
50
|
error?: {
|
|
@@ -61,7 +54,7 @@ export interface CodeEditorBetaProps {
|
|
|
61
54
|
};
|
|
62
55
|
};
|
|
63
56
|
}>;
|
|
64
|
-
/** API to format Python code
|
|
57
|
+
/** API to format Python code */
|
|
65
58
|
formatCodeAPI?: (code: string) => Promise<{
|
|
66
59
|
data: {
|
|
67
60
|
formatted_code?: string;
|
|
@@ -69,12 +62,14 @@ export interface CodeEditorBetaProps {
|
|
|
69
62
|
}>;
|
|
70
63
|
/** Custom toolbar actions render function */
|
|
71
64
|
renderToolbarActions?: (context: CodeEditorBetaToolbarContext) => React.ReactNode;
|
|
65
|
+
/** Callback fired when the user clicks inside a code block. Receives the innermost block. */
|
|
66
|
+
onBlockClick?: (block: CodeBlockInfo) => void;
|
|
67
|
+
/** When set, the editor searches for this text, scrolls to the match, and highlights the enclosing block. */
|
|
68
|
+
focusBlock?: string;
|
|
72
69
|
}
|
|
73
70
|
/**
|
|
74
71
|
* CodeEditorBeta — experimental CodeMirror 6 replacement for the Monaco-based CodeEditor.
|
|
75
72
|
*
|
|
76
|
-
* Smaller bundle, no web workers, same toolbar UX. Drops Codeium AI completions.
|
|
77
|
-
*
|
|
78
73
|
* @example
|
|
79
74
|
* ```tsx
|
|
80
75
|
* <CodeEditorBeta
|
|
@@ -82,8 +77,9 @@ export interface CodeEditorBetaProps {
|
|
|
82
77
|
* onChange={setJsonString}
|
|
83
78
|
* language="json"
|
|
84
79
|
* height="400px"
|
|
80
|
+
* onBlockClick={(block) => console.log(block)}
|
|
81
|
+
* focusBlock="customer"
|
|
85
82
|
* />
|
|
86
83
|
* ```
|
|
87
84
|
*/
|
|
88
85
|
export declare const CodeEditorBeta: FC<CodeEditorBetaProps>;
|
|
89
|
-
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Dispatch, ReactNode } from 'react';
|
|
2
|
-
import { ILayoutItem } from './constants';
|
|
1
|
+
import type { Dispatch, ReactNode } from 'react';
|
|
2
|
+
import type { ILayoutItem } from './constants';
|
|
3
3
|
export interface ComparisonProps {
|
|
4
4
|
/** Configuration for header tabs */
|
|
5
5
|
headerTabConfig?: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ILayoutItem } from './constants';
|
|
1
|
+
import type { ILayoutItem } from './constants';
|
|
2
2
|
export declare const gridLayoutItems: import("memoize-one").MemoizedFn<(layoutItems: Array<Pick<ILayoutItem, "id" | "visible" | "states" | "isLoading">>) => {
|
|
3
3
|
items: Pick<ILayoutItem, "visible" | "id" | "isLoading" | "states">[];
|
|
4
4
|
ids: number[];
|
|
@@ -93,6 +93,8 @@ export interface LabelValueProps {
|
|
|
93
93
|
showDiff?: boolean;
|
|
94
94
|
/** Whether this is a live field (shows bolt icon) */
|
|
95
95
|
isLiveField?: boolean;
|
|
96
|
+
/** Whether this is an AI extracted field (shows AI extracted icon) */
|
|
97
|
+
isAiExtracted?: boolean;
|
|
96
98
|
/** Delta change value for currency fields */
|
|
97
99
|
deltaChange?: number;
|
|
98
100
|
/** Theme mode */
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type PopoverProps } from "antd";
|
|
1
2
|
import "./styles.css";
|
|
2
3
|
/**
|
|
3
4
|
* Available placement options for the Popper
|
|
@@ -37,6 +38,8 @@ export interface PopperProps {
|
|
|
37
38
|
"aria-label"?: string;
|
|
38
39
|
/** Whether trigger is disabled */
|
|
39
40
|
disabled?: boolean;
|
|
41
|
+
/** Trigger type */
|
|
42
|
+
trigger?: PopoverProps['trigger'];
|
|
40
43
|
}
|
|
41
44
|
/**
|
|
42
45
|
* Popper component provides positioned floating content relative to a trigger element
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import CreatableSelect from "react-select/creatable";
|
|
2
2
|
import type { LabelType } from "../../data-display/label/Label";
|
|
3
|
-
import type
|
|
3
|
+
import { type ComponentProps } from "react";
|
|
4
4
|
/**
|
|
5
5
|
* Option type for the CreatableSelect component
|
|
6
6
|
*/
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Props for the MarkdownPreview component
|
|
3
|
+
*/
|
|
4
|
+
export interface MarkdownPreviewProps {
|
|
5
|
+
/** Markdown content to display */
|
|
6
|
+
content: string;
|
|
7
|
+
/** Additional CSS classes for the wrapper container */
|
|
8
|
+
className?: string;
|
|
9
|
+
/** Link target behavior: '_blank' for new tab, '_self' for current tab */
|
|
10
|
+
linkTarget?: '_blank' | '_self';
|
|
11
|
+
/** Whether to show syntax highlighting for code blocks */
|
|
12
|
+
enableSyntaxHighlighting?: boolean;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* MarkdownPreview component displays rendered markdown content.
|
|
16
|
+
*
|
|
17
|
+
* **Supported Markdown Features:**
|
|
18
|
+
* - Headings (H1-H6)
|
|
19
|
+
* - Text formatting (bold, italic, underline, strikethrough)
|
|
20
|
+
* - Lists (bullet and numbered)
|
|
21
|
+
* - Code blocks with syntax highlighting
|
|
22
|
+
* - Inline code
|
|
23
|
+
* - Block quotes
|
|
24
|
+
* - Links with configurable target
|
|
25
|
+
* - Images (responsive)
|
|
26
|
+
* - Tables
|
|
27
|
+
* - Horizontal rules
|
|
28
|
+
*
|
|
29
|
+
* **Features:**
|
|
30
|
+
* - GFM (GitHub Flavored Markdown) support
|
|
31
|
+
* - HTML support via rehype-raw
|
|
32
|
+
* - Syntax highlighting for code blocks
|
|
33
|
+
* - Responsive images
|
|
34
|
+
* - Dark mode support
|
|
35
|
+
* - Configurable link behavior
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* ```tsx
|
|
39
|
+
* <MarkdownPreview
|
|
40
|
+
* content="# Hello World\n\nThis is **bold** text."
|
|
41
|
+
* linkTarget="_blank"
|
|
42
|
+
* />
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare const MarkdownPreview: import("react").ForwardRefExoticComponent<MarkdownPreviewProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Props for the RichMarkdownInput component
|
|
3
|
+
*/
|
|
4
|
+
export interface RichMarkdownInputProps {
|
|
5
|
+
/** Unique identifier for the markdown input */
|
|
6
|
+
id?: string;
|
|
7
|
+
/** Current markdown value */
|
|
8
|
+
value?: string;
|
|
9
|
+
/** Placeholder text for the textarea */
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
/** Minimum number of visible text lines */
|
|
12
|
+
minRows?: number;
|
|
13
|
+
/** Maximum number of visible text lines */
|
|
14
|
+
maxRows?: number;
|
|
15
|
+
/** Whether the input is disabled */
|
|
16
|
+
isDisabled?: boolean;
|
|
17
|
+
/** Additional CSS classes for the wrapper container */
|
|
18
|
+
className?: string;
|
|
19
|
+
/** Additional CSS classes for the textarea */
|
|
20
|
+
textareaClassName?: string;
|
|
21
|
+
/** Additional CSS classes for the preview container */
|
|
22
|
+
previewClassName?: string;
|
|
23
|
+
/** Label text to display above the input */
|
|
24
|
+
label?: string;
|
|
25
|
+
/** Whether the field is required */
|
|
26
|
+
required?: boolean;
|
|
27
|
+
/** Whether to show the preview button */
|
|
28
|
+
showPreviewOnModal?: boolean;
|
|
29
|
+
/** Maximum character count */
|
|
30
|
+
maxLength?: number;
|
|
31
|
+
/** Link target behavior: '_blank' for new tab, '_self' for current tab */
|
|
32
|
+
linkTarget?: '_blank' | '_self';
|
|
33
|
+
/** Callback function called when the markdown value changes */
|
|
34
|
+
onChange: (value: string) => void;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A rich markdown input component with comprehensive formatting toolbar.
|
|
38
|
+
*
|
|
39
|
+
* **Text Formatting:**
|
|
40
|
+
* - Bold (Ctrl+B) - Always visible
|
|
41
|
+
* - Italic (Ctrl+I) - Always visible
|
|
42
|
+
* - Underline (Ctrl+U) - Always visible
|
|
43
|
+
* - Strikethrough - Hidden on mobile (< 640px)
|
|
44
|
+
*
|
|
45
|
+
* **Lists:**
|
|
46
|
+
* - Bullet lists - Always visible
|
|
47
|
+
* - Numbered lists - Always visible
|
|
48
|
+
*
|
|
49
|
+
* **Additional:**
|
|
50
|
+
* - Inline code (Ctrl+E) - Hidden on small screens (< 1024px)
|
|
51
|
+
* - Block quotes - Hidden on medium screens (< 1280px)
|
|
52
|
+
* - Headings - Hidden on small screens (< 1024px)
|
|
53
|
+
* - Links (Ctrl+K) - Hidden on medium screens (< 1280px)
|
|
54
|
+
* - Images - Supported in preview
|
|
55
|
+
* - Horizontal rules - Hidden on large screens (< 1536px)
|
|
56
|
+
*
|
|
57
|
+
* **Features:**
|
|
58
|
+
* - Edit/Preview toggle with icons
|
|
59
|
+
* - Character counter (optional)
|
|
60
|
+
* - Preview modal with scrolling
|
|
61
|
+
* - Keyboard shortcuts
|
|
62
|
+
* - Syntax highlighting for code blocks
|
|
63
|
+
* - Responsive toolbar (hides buttons progressively on smaller screens)
|
|
64
|
+
* - Dark mode support
|
|
65
|
+
* - Configurable link target behavior
|
|
66
|
+
*
|
|
67
|
+
* @example
|
|
68
|
+
* ```tsx
|
|
69
|
+
* <RichMarkdownInput
|
|
70
|
+
* value={markdown}
|
|
71
|
+
* onChange={setMarkdown}
|
|
72
|
+
* placeholder="Enter description..."
|
|
73
|
+
* label="Description"
|
|
74
|
+
* maxLength={300}
|
|
75
|
+
* linkTarget="_blank"
|
|
76
|
+
* />
|
|
77
|
+
* ```
|
|
78
|
+
*/
|
|
79
|
+
export declare const RichMarkdownInput: import("react").ForwardRefExoticComponent<RichMarkdownInputProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { MdInput } from './MdInput';
|
|
2
|
+
export type { MdInputProps } from './MdInput';
|
|
3
|
+
export { RichMarkdownInput } from './RichMarkdownInput';
|
|
4
|
+
export type { RichMarkdownInputProps } from './RichMarkdownInput';
|
|
5
|
+
export { MarkdownPreview } from './MarkdownPreview';
|
|
6
|
+
export type { MarkdownPreviewProps } from './MarkdownPreview';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import './Tooltip.css';
|
|
2
3
|
export type TooltipPlacement = 'auto' | 'auto-start' | 'auto-end' | 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'right' | 'right-start' | 'right-end' | 'left' | 'left-start' | 'left-end';
|
|
3
4
|
export interface TooltipProps {
|
|
4
5
|
title: React.ReactNode;
|
package/dist/design-system.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.lax-popper-overlay.ant-popover{z-index:9999}.lax-popper-overlay .ant-popover-inner{background-color:#fff;border:1px solid #EAECF0;border-radius:8px;box-shadow:0 10px 30px #9e9e9e4d}.lax-popper-overlay .ant-popover-arrow:before{background-color:#fff;border:1px solid #EAECF0}.dark .lax-popper-overlay .ant-popover-inner{background-color:#1d2939;border-color:#344054;box-shadow:0 10px 30px #10101080}.dark .lax-popper-overlay .ant-popover-arrow:before{background-color:#1d2939;border-color:#344054}.Toastify__toast-container{z-index:100000}.Toastify__toast{min-height:64px;border-radius:4px;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.Toastify__toast--success,.Toastify__toast--error,.Toastify__toast--warning,.Toastify__toast--info{background:transparent}.Toastify__toast-body{padding:0;margin:0;color:inherit;font-size:14px;font-weight:500;line-height:1.5}.Toastify__close-button{color:inherit;opacity:.7;align-self:flex-start;background:transparent;border:none;padding:4px;margin:0;transition:opacity .2s ease}.Toastify__close-button:hover{opacity:1}.Toastify__progress-bar{background:linear-gradient(to right,#4caf50,#8bc34a,#cddc39,#ffeb3b,#ffc107,#ff9800,#ff5722)}.Toastify__progress-bar--success{background:#12b76a}.Toastify__progress-bar--error{background:#f04438}.Toastify__progress-bar--warning{background:#f79009}.Toastify__progress-bar--info{background:#016dcf}@media (prefers-color-scheme: dark){.Toastify__toast-container{background:transparent}.Toastify__toast{box-shadow:0 4px 6px -1px #0000004d,0 2px 4px -1px #0003}}@media screen and (max-width: 640px){.Toastify__toast-container{left:1rem;right:1rem;bottom:1rem;width:auto}.Toastify__toast{margin-bottom:.5rem}}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--bottom-center{animation-duration:.3s;animation-timing-function:cubic-bezier(.4,0,.2,1)}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--bottom-center{animation-duration:.2s;animation-timing-function:cubic-bezier(.4,0,1,1)}@font-face{font-family:swiper-icons;src:url(data:application/font-woff;charset=utf-8;base64,\ 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);font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:#00000026}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,#00000080,#0000)}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}.swiper-lazy-preloader-black{--swiper-preloader-color: #000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0,-50%,0)}.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translate(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}
|
|
1
|
+
:root{--lax-form-focus-border: var(--color-primary-600);--lax-form-focus-shadow: 0 0 0 3px var(--color-primary-100)}.dark{--lax-form-focus-border: var(--color-primary-400);--lax-form-focus-shadow: 0 0 0 3px var(--color-primary-950)}input:where([type=text],[type=email],[type=password],[type=number],[type=search],[type=date],[type=time],[type=datetime-local],[type=url],[type=tel],[type=color]):focus,textarea:focus,select:focus,[contenteditable=true]:focus{outline:none!important;border-color:var(--lax-form-focus-border)!important;box-shadow:var(--lax-form-focus-shadow)!important}.ant-select-focused .ant-select-selector,.ant-picker-focused,.ant-input-affix-wrapper-focused,.ant-input-affix-wrapper:focus-within,.ant-input-number-focused,.ant-input-number:focus-within,.ant-input:focus{outline:none!important;border-color:var(--lax-form-focus-border)!important;box-shadow:var(--lax-form-focus-shadow)!important}.ant-checkbox-input:focus-visible+.ant-checkbox-inner{border-color:var(--lax-form-focus-border)!important;box-shadow:var(--lax-form-focus-shadow)!important}.lax-select__control--is-focused{border-color:var(--lax-form-focus-border)!important;box-shadow:var(--lax-form-focus-shadow)!important}.peer:focus-visible+.lax-toggle-track{border-color:var(--lax-form-focus-border)!important;box-shadow:var(--lax-form-focus-shadow)!important}.lax-form-trigger:focus-visible{outline:none!important;border-color:var(--lax-form-focus-border)!important;box-shadow:var(--lax-form-focus-shadow)!important}.lax-tooltip-body-important-whitespace{white-space:var(--lax-tooltip-white-space, initial)!important;overflow-wrap:break-word!important}.ant-select-selector{padding-left:18px!important}.lax-popper-overlay.ant-popover{z-index:9999}.lax-popper-overlay .ant-popover-inner{background-color:#fff;border:1px solid #EAECF0;border-radius:8px;box-shadow:0 10px 30px #9e9e9e4d}.lax-popper-overlay .ant-popover-arrow:before{background-color:#fff;border:1px solid #EAECF0}.dark .lax-popper-overlay .ant-popover-inner{background-color:#1d2939;border-color:#344054;box-shadow:0 10px 30px #10101080}.dark .lax-popper-overlay .ant-popover-arrow:before{background-color:#1d2939;border-color:#344054}.Toastify__toast-container{z-index:100000}.Toastify__toast{min-height:64px;border-radius:4px;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.Toastify__toast--success,.Toastify__toast--error,.Toastify__toast--warning,.Toastify__toast--info{background:transparent}.Toastify__toast-body{padding:0;margin:0;color:inherit;font-size:14px;font-weight:500;line-height:1.5}.Toastify__close-button{color:inherit;opacity:.7;align-self:flex-start;background:transparent;border:none;padding:4px;margin:0;transition:opacity .2s ease}.Toastify__close-button:hover{opacity:1}.Toastify__progress-bar{background:linear-gradient(to right,#4caf50,#8bc34a,#cddc39,#ffeb3b,#ffc107,#ff9800,#ff5722)}.Toastify__progress-bar--success{background:#12b76a}.Toastify__progress-bar--error{background:#f04438}.Toastify__progress-bar--warning{background:#f79009}.Toastify__progress-bar--info{background:#016dcf}@media (prefers-color-scheme: dark){.Toastify__toast-container{background:transparent}.Toastify__toast{box-shadow:0 4px 6px -1px #0000004d,0 2px 4px -1px #0003}}@media screen and (max-width: 640px){.Toastify__toast-container{left:1rem;right:1rem;bottom:1rem;width:auto}.Toastify__toast{margin-bottom:.5rem}}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--bottom-center{animation-duration:.3s;animation-timing-function:cubic-bezier(.4,0,.2,1)}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--bottom-center{animation-duration:.2s;animation-timing-function:cubic-bezier(.4,0,1,1)}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-slides-offset-before);scroll-margin-inline-start:var(--swiper-slides-offset-before)}.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:last-child{margin-inline-end:var(--swiper-slides-offset-after)}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-slides-offset-before);scroll-margin-block-start:var(--swiper-slides-offset-before)}.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:last-child{margin-block-end:var(--swiper-slides-offset-after)}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:#00000026}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,#00000080,#0000)}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}:is(.swiper:not(.swiper-watch-progress),.swiper-watch-progress .swiper-slide-visible) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}.swiper-lazy-preloader-black{--swiper-preloader-color: #000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0,-50%,0)}:is(.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets) .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}:is(.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}:is(.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}:is(.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets) .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}:is(.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic{left:50%;transform:translate(-50%);white-space:nowrap}:is(.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "./components/forms/shared/FormFieldFocus.css";
|
|
1
2
|
export { InputField } from "./components/forms/input-field/InputField";
|
|
2
3
|
export type { InputFieldProps } from "./components/forms/input-field/InputField";
|
|
3
4
|
export { BaseInputField, default as BaseInputFieldDefault } from "./components/forms/base-input-field/BaseInputField";
|
|
@@ -37,6 +38,7 @@ export type { DynamicDataInputFieldProps, DynamicDataModalProps as DynamicDataIn
|
|
|
37
38
|
export { DynamicDataInput } from "./components/forms/dynamic-data-input/DynamicDataInput";
|
|
38
39
|
export type { DynamicDataInputProps } from "./components/forms/dynamic-data-input/DynamicDataInput";
|
|
39
40
|
export { PercentageInputField } from "./components/forms/percentage-input/PercentageInputField";
|
|
41
|
+
export { Form } from "./components/forms/form/Form";
|
|
40
42
|
export type { PercentageInputFieldProps, RiskDetails as PercentageInputFieldRiskDetails, RiskDetailsCardProps as PercentageInputFieldRiskDetailsCardProps, } from "./components/forms/percentage-input/PercentageInputField";
|
|
41
43
|
export { Toggle } from "./components/forms/toggle/Toggle";
|
|
42
44
|
export type { ToggleProps } from "./components/forms/toggle/Toggle";
|
|
@@ -230,6 +232,10 @@ export { NoAvailableContent as ComparisonNoAvailableContent } from "./components
|
|
|
230
232
|
export type { ComparisonProps, TComparisonContext, ComparisonProviderProps, ILayoutItem, ExitIconProps, LayoutOneIconProps, LayoutTwoIconProps, LayoutThreeIconProps, } from "./components/data-display/comparison";
|
|
231
233
|
export { FormulaInput, convertToPills, convertFromPills, getCursorPosition, setCursorPosition, getTextBeforeCursor, getCursorCoordinates, insertTextAtCursor, } from "./components/forms/formula-input";
|
|
232
234
|
export type { FormulaInputProps } from "./components/forms/formula-input";
|
|
235
|
+
export { RichMarkdownInput } from "./components/forms/md-input/RichMarkdownInput";
|
|
236
|
+
export type { RichMarkdownInputProps } from "./components/forms/md-input/RichMarkdownInput";
|
|
237
|
+
export { MarkdownPreview } from "./components/forms/md-input/MarkdownPreview";
|
|
238
|
+
export type { MarkdownPreviewProps } from "./components/forms/md-input/MarkdownPreview";
|
|
233
239
|
export { ShortcutKbd } from "./components/shortcut-kbd";
|
|
234
240
|
export type { ShortcutKbdProps, ShortcutKbdVariant } from "./components/shortcut-kbd";
|
|
235
241
|
export { ImageSlider } from "./components/sliders/ImageSlider";
|