-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathexperimental.ts
More file actions
55 lines (54 loc) · 2.27 KB
/
Copy pathexperimental.ts
File metadata and controls
55 lines (54 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// frappe-ui experimental — UNSTABLE. No backward-compatibility promise.
export * from './experimental/Accordion'
export * from './experimental/FloatingWindow'
export * from './experimental/MultiEmailInput'
export { inputFontSizeClasses } from './src/components/Combobox/utils'
export {
InputLabel,
InputDescription,
InputError,
} from './src/components/InputLabeling'
export { useInputLabeling } from './src/composables/useInputLabeling'
export type { FrappeUIError } from './src/composables/useInputLabeling'
export { CodeEditor, CodePreview, loadLanguage } from './experimental/CodeEditor'
export type {
CodeLanguage,
CodeEditorProps,
CodeEditorEmits,
CodePreviewProps,
} from './experimental/CodeEditor'
// Calendar family. Moved out of root (#1020, redirect of #989) — parked
// here, unstable, with its public API unchanged, until a redesigned
// calendar family replaces it. Migration is the import-path change only.
export * from './experimental/Calendar'
// ListView family. Moved out of root (#985) — `frappe-ui/list` is
// composition-based by design (P3) and doesn't replicate ListView's
// config-driven columns (resizable widths, per-column getLabel/prefix
// functions, tooltips, disabled-row exclusion, the select banner), so this
// stays here, unstable, until `frappe-ui/list` reaches parity.
export * from './experimental/ListView'
// v0 TextEditor family. Moved out of root (#974) — `frappe-ui/editor` is the
// composition-based replacement. Parked here (#1007), unstable, as an interim
// import path while apps migrate. Deletion stays human-gated (spec/editor.md
// §12).
export {
TextEditor,
TextEditorBubbleMenu,
TextEditorFixedMenu,
TextEditorFloatingMenu,
TextEditorContent,
createEditorButton,
} from './experimental/TextEditor'
export {
ImageExtension,
type SetImageOptions,
} from './experimental/TextEditor/extensions/image'
export {
createSuggestionExtension,
type BaseSuggestionItem,
type CreateSuggestionExtensionOptions,
} from './experimental/TextEditor/extensions/suggestion'
// Sprite icon trio. Moved out of `frappe-ui/icons` (#904) as a parking spot
// while apps migrate — `lucide-*` classes (and the root `Icon` component)
// are the canonical way to render icons. Unstable; will be removed.
export * from './experimental/SpriteIcons'