-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
92 lines (90 loc) · 2.45 KB
/
index.js
File metadata and controls
92 lines (90 loc) · 2.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* WordPress Component Library
*
* A collection of reusable components for WordPress projects.
*/
export { AttachmentImage } from "./components/attachment-image";
export {
CustomBlockAppender,
CustomColumnAppender,
CustomInlineAppender,
CustomInspectorAppender,
} from "./components/block-appender";
export { ButtonFrontend } from "./components/button";
export {
AlignmentSettings,
AlignmentToolbar,
AllowWrapSettings,
ContentAlignmentSettings,
ContentAlignmentToolbar,
JustificationSettings,
JustificationToolbar,
LayoutPanel,
LayoutWidthControl,
OrientationSettings,
OrientationToolbar,
} from "./components/layout";
export {
EditorMediaUpload,
InspectorMediaUpload,
SettingsMediaUpload,
ToolbarMediaUpload,
} from "./components/media";
export { ImageControls } from "./components/media/image-controls";
export { MetaAdvanced } from "./components/meta/MetaAdvanced";
export { MetaPanel } from "./components/meta/MetaPanel";
export { DragHandle, RemoveButton, Repeater } from "./components/repeater";
// Query Controls - Individual ToolsPanelItems that can be composed together
export {
default as AttributesPanel,
useAttributes,
} from "./components/attributes-panel";
export { Badge } from "./components/badge";
export { CaptchaPlaceholder } from "./components/captcha-placeholder";
export { useAspectRatioOptions } from "./components/media/utils/aspect-ratios";
export {
ColumnCountControl,
defaultOrderOptions,
DisplayTypeSelect,
ManualPostSelector,
ManualTermSelector,
OrderBySelect,
PostsPerPageControl,
PostTypeSelect,
reorderByIds,
SelectionModeControl,
TaxonomySelect,
useOrderedTerms,
} from "./components/query";
export { SectionDividerSettings } from "./components/section-divider";
export {
SectionPattern,
SectionPatternSettings,
} from "./components/section-pattern";
export {
// Individual control components for custom compositions
FocalPointControl,
ImageSourceControl,
MediaSelectControl,
OpacityControl,
SectionBackground,
SectionSettings,
StyleControl,
} from "./components/section-settings";
export {
default as SortableSelect,
tokensToString,
} from "./components/sortable-select";
export { VariableField } from "./components/variable-field";
export { VariableInserter } from "./components/variable-inserter";
// AI Framework (Clean Architecture)
export {
AIButton,
aiCache,
AIField,
AIFieldWrapper,
AIInline,
AIModal,
useAI,
} from "./components/ai";
// Content extraction utilities removed - use AI type configs instead