@frontify/guideline-blocks-settings 0.35.0 → 0.36.0
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/RichTextEditor/RichTextEditor.es.js +37 -27
- package/dist/components/RichTextEditor/RichTextEditor.es.js.map +1 -1
- package/dist/components/RichTextEditor/SerializedText.es.js +8 -8
- package/dist/components/RichTextEditor/SerializedText.es.js.map +1 -1
- package/dist/components/RichTextEditor/plugins/ButtonPlugin/createButtonPlugin.es.js +8 -8
- package/dist/components/RichTextEditor/plugins/ColumnBreakPlugin/ColumnBreakPlugin.es.js +27 -0
- package/dist/components/RichTextEditor/plugins/ColumnBreakPlugin/ColumnBreakPlugin.es.js.map +1 -0
- package/dist/components/RichTextEditor/plugins/ColumnBreakPlugin/helpers.es.js +12 -0
- package/dist/components/RichTextEditor/plugins/ColumnBreakPlugin/helpers.es.js.map +1 -0
- package/dist/components/RichTextEditor/plugins/LinkPlugin/index.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/custom1Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/custom2Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/custom3Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/heading1Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/heading2Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/heading3Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/heading4Plugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/imageCaptionPlugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/imageTitlePlugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/paragraphPlugin.es.js +1 -1
- package/dist/components/RichTextEditor/plugins/TextStylePlugins/quotePlugin.es.js +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +16 -3
- package/dist/index.es.js +167 -163
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/settings/border.es.js +1 -1
- package/dist/settings/borderRadius.es.js +1 -1
- package/dist/settings/borderRadiusExtended.es.js +1 -1
- package/dist/settings/gutter.es.js +1 -1
- package/dist/settings/margin.es.js +1 -1
- package/dist/settings/marginExtended.es.js +1 -1
- package/dist/settings/padding.es.js +1 -1
- package/dist/settings/paddingExtended.es.js +1 -1
- package/dist/settings/securityGlobalControl.es.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -4
- package/tailwind.config.ts +3 -1
- package/dist/styles.css.es.js +0 -2
- package/dist/styles.css.es.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
|
|
3
1
|
import { AppBridgeBlock } from '@frontify/app-bridge';
|
|
4
2
|
import { AppBridgeTheme } from '@frontify/app-bridge';
|
|
5
3
|
import { Asset } from '@frontify/app-bridge';
|
|
@@ -290,6 +288,17 @@ export declare enum BorderStyle {
|
|
|
290
288
|
|
|
291
289
|
export declare const borderStyleMap: Record<BorderStyle, string>;
|
|
292
290
|
|
|
291
|
+
export declare class BreakAfterPlugin extends Plugin_2 {
|
|
292
|
+
private columns;
|
|
293
|
+
private gap;
|
|
294
|
+
private customClass;
|
|
295
|
+
constructor(props?: {
|
|
296
|
+
columns?: number;
|
|
297
|
+
gap?: string | number;
|
|
298
|
+
});
|
|
299
|
+
plugins(): PlatePlugin[];
|
|
300
|
+
}
|
|
301
|
+
|
|
293
302
|
export declare type Bundle = Bundle_2<AppBridgeBlock>;
|
|
294
303
|
|
|
295
304
|
export declare const BUTTON_PLUGIN = "button-plugin";
|
|
@@ -353,7 +362,7 @@ export declare type ChoicesType = ChoicesType_2<AppBridgeBlock>;
|
|
|
353
362
|
|
|
354
363
|
export declare type ColorInputBlock = ColorInputBlock_2<AppBridgeBlock>;
|
|
355
364
|
|
|
356
|
-
export declare const convertToRteValue: (textStyle?: string, text?: string, align?:
|
|
365
|
+
export declare const convertToRteValue: (textStyle?: string, text?: string, align?: "center" | "right" | "left" | "justify") => string;
|
|
357
366
|
|
|
358
367
|
export declare const createButtonNode: <V extends Value>(editor: PlateEditor<V>, { url, text, buttonStyle, target, children }: CreateButtonNodeOptions) => TButtonElement;
|
|
359
368
|
|
|
@@ -468,6 +477,8 @@ export declare type FlyoutToolbarItem = {
|
|
|
468
477
|
|
|
469
478
|
export declare type FontInputBlock = FontInputBlock_2<AppBridgeBlock>;
|
|
470
479
|
|
|
480
|
+
export declare const GAP_DEFAULT = "normal";
|
|
481
|
+
|
|
471
482
|
export declare const getBackgroundColorStyles: (backgroundColor: Color) => CSSProperties;
|
|
472
483
|
|
|
473
484
|
/**
|
|
@@ -654,6 +665,8 @@ export declare const isValidUrlOrEmpty: (url: string) => boolean;
|
|
|
654
665
|
*/
|
|
655
666
|
export declare const joinClassNames: (classNames: (string | undefined | boolean)[]) => string;
|
|
656
667
|
|
|
668
|
+
export declare const KEY_ELEMENT_BREAK_AFTER_COLUMN = "breakAfterColumn";
|
|
669
|
+
|
|
657
670
|
export declare type LegacyAssetInputBlock = LegacyAssetInputBlock_2<AppBridgeBlock>;
|
|
658
671
|
|
|
659
672
|
export declare type LinkBlock = LinkBlock_2<AppBridgeBlock>;
|
package/dist/index.es.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
/* empty css */
|
|
2
2
|
export * from "@frontify/sidebar-settings";
|
|
3
3
|
import { BlockInjectButton as m } from "./components/BlockInjectButton/BlockInjectButton.es.js";
|
|
4
4
|
import { BlockItemWrapper as g } from "./components/BlockItemWrapper/BlockItemWrapper.es.js";
|
|
5
5
|
import { DragPreviewContextProvider as u, useDragPreviewContext as f } from "./components/BlockItemWrapper/Toolbar/context/DragPreviewContext.es.js";
|
|
6
|
-
import { MultiFlyoutContextProvider as d, useMultiFlyoutContext as
|
|
7
|
-
import { useMultiFlyoutState as
|
|
6
|
+
import { MultiFlyoutContextProvider as d, useMultiFlyoutContext as P } from "./components/BlockItemWrapper/Toolbar/context/MultiFlyoutContext.es.js";
|
|
7
|
+
import { useMultiFlyoutState as T } from "./components/BlockItemWrapper/Toolbar/hooks/useMultiFlyoutState.es.js";
|
|
8
8
|
import { Toolbar as y } from "./components/BlockItemWrapper/Toolbar/Toolbar.es.js";
|
|
9
|
-
import { AttachmentsToolbarButton as
|
|
10
|
-
import { DragHandleToolbarButton as
|
|
9
|
+
import { AttachmentsToolbarButton as E, DEFAULT_ATTACHMENTS_BUTTON_ID as A } from "./components/BlockItemWrapper/Toolbar/AttachmentsToolbarButton/AttachmentsToolbarButton.es.js";
|
|
10
|
+
import { DragHandleToolbarButton as L } from "./components/BlockItemWrapper/Toolbar/DragHandleToolbarButton/DragHandleToolbarButton.es.js";
|
|
11
11
|
import { FlyoutToolbarButton as F } from "./components/BlockItemWrapper/Toolbar/FlyoutToolbarButton/FlyoutToolbarButton.es.js";
|
|
12
|
-
import { DEFAULT_MENU_BUTTON_ID as k, MenuToolbarButton as
|
|
13
|
-
import { ToolbarFlyoutMenu as
|
|
14
|
-
import { DEFAULT_DRAGGING_TOOLTIP as
|
|
12
|
+
import { DEFAULT_MENU_BUTTON_ID as k, MenuToolbarButton as R } from "./components/BlockItemWrapper/Toolbar/MenuToolbarButton/MenuToolbarButton.es.js";
|
|
13
|
+
import { ToolbarFlyoutMenu as _ } from "./components/BlockItemWrapper/Toolbar/MenuToolbarButton/ToolbarFlyoutMenu.es.js";
|
|
14
|
+
import { DEFAULT_DRAGGING_TOOLTIP as I, DEFAULT_DRAG_TOOLTIP as b } from "./components/BlockItemWrapper/constants.es.js";
|
|
15
15
|
import { Attachments as G } from "./components/Attachments/Attachments.es.js";
|
|
16
|
-
import { DownloadButton as
|
|
16
|
+
import { DownloadButton as H } from "./components/DownloadButton/DownloadButton.es.js";
|
|
17
17
|
import { RichTextEditor as w } from "./components/RichTextEditor/RichTextEditor.es.js";
|
|
18
18
|
import { LinkPlugin as W, createLinkPlugin as j } from "./components/RichTextEditor/plugins/LinkPlugin/index.es.js";
|
|
19
|
-
import { BUTTON_PLUGIN as
|
|
20
|
-
import { withButton as
|
|
19
|
+
import { BUTTON_PLUGIN as K, ButtonPlugin as X, ELEMENT_BUTTON as Y, createButtonPlugin as q } from "./components/RichTextEditor/plugins/ButtonPlugin/createButtonPlugin.es.js";
|
|
20
|
+
import { withButton as J } from "./components/RichTextEditor/plugins/ButtonPlugin/withButton.es.js";
|
|
21
21
|
import { insertButton as $ } from "./components/RichTextEditor/plugins/ButtonPlugin/transforms/insertButton.es.js";
|
|
22
22
|
import { submitFloatingButton as rt } from "./components/RichTextEditor/plugins/ButtonPlugin/transforms/submitFloatingButton.es.js";
|
|
23
23
|
import { unwrapButton as et } from "./components/RichTextEditor/plugins/ButtonPlugin/transforms/unwrapButton.es.js";
|
|
@@ -27,191 +27,195 @@ import { wrapButton as lt } from "./components/RichTextEditor/plugins/ButtonPlug
|
|
|
27
27
|
import { getUrlFromEditor as xt } from "./components/RichTextEditor/plugins/ButtonPlugin/utils/getUrl.es.js";
|
|
28
28
|
import { createButtonNode as ft } from "./components/RichTextEditor/plugins/ButtonPlugin/utils/createButtonNode.es.js";
|
|
29
29
|
import { triggerFloatingButton as dt } from "./components/RichTextEditor/plugins/ButtonPlugin/utils/triggerFloatingButton.es.js";
|
|
30
|
-
import { triggerFloatingButtonEdit as
|
|
31
|
-
import { triggerFloatingButtonInsert as
|
|
30
|
+
import { triggerFloatingButtonEdit as St } from "./components/RichTextEditor/plugins/ButtonPlugin/utils/triggerFloatingButtonEdit.es.js";
|
|
31
|
+
import { triggerFloatingButtonInsert as Bt } from "./components/RichTextEditor/plugins/ButtonPlugin/utils/triggerFloatingButtonInsert.es.js";
|
|
32
32
|
import { BlockButtonStyles as ct } from "./components/RichTextEditor/plugins/ButtonPlugin/utils/styles.es.js";
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
33
|
+
import { BreakAfterPlugin as At, GAP_DEFAULT as Mt, KEY_ELEMENT_BREAK_AFTER_COLUMN as Lt } from "./components/RichTextEditor/plugins/ColumnBreakPlugin/ColumnBreakPlugin.es.js";
|
|
34
|
+
import { Custom1Plugin as Ft } from "./components/RichTextEditor/plugins/TextStylePlugins/custom1Plugin.es.js";
|
|
35
|
+
import { Custom2Plugin as kt } from "./components/RichTextEditor/plugins/TextStylePlugins/custom2Plugin.es.js";
|
|
36
|
+
import { Custom3Plugin as Ut } from "./components/RichTextEditor/plugins/TextStylePlugins/custom3Plugin.es.js";
|
|
37
|
+
import { Heading1Plugin as Dt } from "./components/RichTextEditor/plugins/TextStylePlugins/heading1Plugin.es.js";
|
|
37
38
|
import { Heading2Plugin as bt } from "./components/RichTextEditor/plugins/TextStylePlugins/heading2Plugin.es.js";
|
|
38
|
-
import { Heading3Plugin as
|
|
39
|
-
import { Heading4Plugin as
|
|
40
|
-
import { ImageCaptionPlugin as
|
|
41
|
-
import { ImageTitlePlugin as
|
|
42
|
-
import { PARAGRAPH_CLASSES as
|
|
43
|
-
import { QuoteMarkupElementNode as
|
|
44
|
-
import { AllTextStylePlugins as
|
|
45
|
-
import { BlockStyles as
|
|
46
|
-
import { getDefaultPluginsWithLinkChooser as
|
|
47
|
-
import { THEME_PREFIX as
|
|
48
|
-
import { LinkSelector as
|
|
49
|
-
import { LinkInput as
|
|
50
|
-
import { getLegacyUrl as
|
|
51
|
-
import { relativeUrlRegex as
|
|
52
|
-
import { isValidUrl as
|
|
53
|
-
import { convertToRteValue as
|
|
54
|
-
import { customCoordinatesGetterFactory as
|
|
55
|
-
import { hasRichTextValue as
|
|
56
|
-
import { isDownloadable as
|
|
57
|
-
import { mapAppBridgeColorPaletteToFonduePalette as br, mapAppBridgeColorPalettesToFonduePalettes as
|
|
58
|
-
import { addHttps as
|
|
59
|
-
import { AttachmentsProvider as
|
|
60
|
-
import { useDndSensors as
|
|
61
|
-
import { getBackgroundSettings as
|
|
62
|
-
import { getBorderSettings as
|
|
63
|
-
import { getBorderRadiusSettings as
|
|
64
|
-
import { getExtendedBorderRadiusSettings as
|
|
65
|
-
import { getGutterSettings as
|
|
66
|
-
import { getMarginSettings as
|
|
67
|
-
import { getMarginExtendedSettings as
|
|
68
|
-
import { getPaddingSettings as
|
|
69
|
-
import { getPaddingExtendedSettings as
|
|
70
|
-
import { BorderStyle as
|
|
71
|
-
import { getSecurityDownloadableSetting as
|
|
72
|
-
import { getSecurityGlobalControlSetting as
|
|
73
|
-
import { isDark as
|
|
39
|
+
import { Heading3Plugin as Gt } from "./components/RichTextEditor/plugins/TextStylePlugins/heading3Plugin.es.js";
|
|
40
|
+
import { Heading4Plugin as Ht } from "./components/RichTextEditor/plugins/TextStylePlugins/heading4Plugin.es.js";
|
|
41
|
+
import { ImageCaptionPlugin as wt } from "./components/RichTextEditor/plugins/TextStylePlugins/imageCaptionPlugin.es.js";
|
|
42
|
+
import { ImageTitlePlugin as Wt } from "./components/RichTextEditor/plugins/TextStylePlugins/imageTitlePlugin.es.js";
|
|
43
|
+
import { PARAGRAPH_CLASSES as Qt, ParagraphMarkupElement as Kt, ParagraphMarkupElementNode as Xt, ParagraphPlugin as Yt, createParagraphPlugin as qt } from "./components/RichTextEditor/plugins/TextStylePlugins/paragraphPlugin.es.js";
|
|
44
|
+
import { QuoteMarkupElementNode as Jt, QuotePlugin as Zt, createQuotePlugin as $t } from "./components/RichTextEditor/plugins/TextStylePlugins/quotePlugin.es.js";
|
|
45
|
+
import { AllTextStylePlugins as rr, AllTextStyles as or, TextStylePluginsWithoutImage as er, TextStylesWithoutImage as nr } from "./components/RichTextEditor/plugins/TextStylePlugins/helpers.es.js";
|
|
46
|
+
import { BlockStyles as ir, TextStyles as pr } from "./components/RichTextEditor/plugins/styles.es.js";
|
|
47
|
+
import { getDefaultPluginsWithLinkChooser as lr } from "./components/RichTextEditor/pluginPresets/defaultPluginsWithLinkChooser.es.js";
|
|
48
|
+
import { THEME_PREFIX as xr } from "./components/RichTextEditor/constants.es.js";
|
|
49
|
+
import { LinkSelector as fr } from "./components/Link/LinkSelector/LinkSelector.es.js";
|
|
50
|
+
import { LinkInput as dr } from "./components/Link/LinkInput.es.js";
|
|
51
|
+
import { getLegacyUrl as Sr, getLinkFromEditor as Tr, getUrl as Br, getUrlFromLinkOrLegacyLink as yr } from "./components/Link/utils/getUrl.es.js";
|
|
52
|
+
import { relativeUrlRegex as Er } from "./components/Link/utils/relativeUrlRegex.es.js";
|
|
53
|
+
import { isValidUrl as Mr, isValidUrlOrEmpty as Lr } from "./components/Link/utils/url.es.js";
|
|
54
|
+
import { convertToRteValue as Fr } from "./helpers/convertToRichTextValue.es.js";
|
|
55
|
+
import { customCoordinatesGetterFactory as kr } from "./helpers/customCoordinatesGetterFactory.es.js";
|
|
56
|
+
import { hasRichTextValue as Ur } from "./helpers/hasRichTextValue.es.js";
|
|
57
|
+
import { isDownloadable as Dr } from "./helpers/isDownloadable.es.js";
|
|
58
|
+
import { mapAppBridgeColorPaletteToFonduePalette as br, mapAppBridgeColorPalettesToFonduePalettes as Nr } from "./helpers/mapColorPalettes.es.js";
|
|
59
|
+
import { addHttps as Or } from "./helpers/addHttps.es.js";
|
|
60
|
+
import { AttachmentsProvider as vr, useAttachments as wr, useAttachmentsContext as Vr, withAttachmentsProvider as Wr } from "./hooks/useAttachments.es.js";
|
|
61
|
+
import { useDndSensors as Qr } from "./hooks/useDndSensors.es.js";
|
|
62
|
+
import { getBackgroundSettings as Xr } from "./settings/background.es.js";
|
|
63
|
+
import { getBorderSettings as qr } from "./settings/border.es.js";
|
|
64
|
+
import { getBorderRadiusSettings as Jr, getBorderRadiusSlider as Zr } from "./settings/borderRadius.es.js";
|
|
65
|
+
import { getExtendedBorderRadiusSettings as to } from "./settings/borderRadiusExtended.es.js";
|
|
66
|
+
import { getGutterSettings as oo } from "./settings/gutter.es.js";
|
|
67
|
+
import { getMarginSettings as no, getMarginSlider as ao } from "./settings/margin.es.js";
|
|
68
|
+
import { getMarginExtendedSettings as po } from "./settings/marginExtended.es.js";
|
|
69
|
+
import { getPaddingSettings as lo, getPaddingSlider as go } from "./settings/padding.es.js";
|
|
70
|
+
import { getPaddingExtendedSettings as uo } from "./settings/paddingExtended.es.js";
|
|
71
|
+
import { BorderStyle as so, GutterSpacing as Po, Margin as So, Padding as To, Radius as Bo, Security as yo, borderStyleMap as co, gutterSpacingStyleMap as Eo, marginStyleMap as Ao, paddingStyleMap as Mo, radiusStyleMap as Lo } from "./settings/types.es.js";
|
|
72
|
+
import { getSecurityDownloadableSetting as Fo, getSecurityGlobalControlId as ho } from "./settings/securityDownloadable.es.js";
|
|
73
|
+
import { getSecurityGlobalControlSetting as Ro } from "./settings/securityGlobalControl.es.js";
|
|
74
|
+
import { isDark as _o } from "./utilities/color/isDark.es.js";
|
|
74
75
|
import { toHex8String as Io } from "./utilities/color/toHex8String.es.js";
|
|
75
|
-
import { toHexString as
|
|
76
|
-
import { toRgbaString as
|
|
77
|
-
import { setAlpha as
|
|
78
|
-
import { toColorObject as
|
|
79
|
-
import { getReadableColor as
|
|
80
|
-
import { toShortRgba as
|
|
81
|
-
import { moveItemInArray as
|
|
82
|
-
import { getBackgroundColorStyles as
|
|
83
|
-
import { getBorderStyles as
|
|
84
|
-
import { getRadiusStyles as
|
|
85
|
-
import { joinClassNames as
|
|
76
|
+
import { toHexString as No } from "./utilities/color/toHexString.es.js";
|
|
77
|
+
import { toRgbaString as Oo } from "./utilities/color/toRgbaString.es.js";
|
|
78
|
+
import { setAlpha as vo } from "./utilities/color/setAlpha.es.js";
|
|
79
|
+
import { toColorObject as Vo } from "./utilities/color/toColorObject.es.js";
|
|
80
|
+
import { getReadableColor as jo } from "./utilities/color/getReadableColor.es.js";
|
|
81
|
+
import { toShortRgba as Ko } from "./utilities/color/toShortRgba.es.js";
|
|
82
|
+
import { moveItemInArray as Yo } from "./utilities/moveItemInArray.es.js";
|
|
83
|
+
import { getBackgroundColorStyles as zo } from "./utilities/react/getBackgroundColorStyles.es.js";
|
|
84
|
+
import { getBorderStyles as Zo } from "./utilities/react/getBorderStyles.es.js";
|
|
85
|
+
import { getRadiusStyles as te } from "./utilities/react/getRadiusStyles.es.js";
|
|
86
|
+
import { joinClassNames as oe } from "./utilities/react/joinClassNames.es.js";
|
|
86
87
|
var r = /* @__PURE__ */ ((t) => (t.Main = "main", t.Basics = "basics", t.Layout = "layout", t.Style = "style", t.Security = "security", t.Targets = "targets", t))(r || {});
|
|
87
88
|
const e = (t) => t, n = (t) => t;
|
|
88
89
|
export {
|
|
89
|
-
|
|
90
|
-
|
|
90
|
+
rr as AllTextStylePlugins,
|
|
91
|
+
or as AllTextStyles,
|
|
91
92
|
G as Attachments,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
vr as AttachmentsProvider,
|
|
94
|
+
E as AttachmentsToolbarButton,
|
|
95
|
+
K as BUTTON_PLUGIN,
|
|
95
96
|
ct as BlockButtonStyles,
|
|
96
97
|
m as BlockInjectButton,
|
|
97
98
|
g as BlockItemWrapper,
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
99
|
+
ir as BlockStyles,
|
|
100
|
+
so as BorderStyle,
|
|
101
|
+
At as BreakAfterPlugin,
|
|
102
|
+
X as ButtonPlugin,
|
|
103
|
+
Ft as Custom1Plugin,
|
|
104
|
+
kt as Custom2Plugin,
|
|
105
|
+
Ut as Custom3Plugin,
|
|
106
|
+
A as DEFAULT_ATTACHMENTS_BUTTON_ID,
|
|
107
|
+
I as DEFAULT_DRAGGING_TOOLTIP,
|
|
108
|
+
b as DEFAULT_DRAG_TOOLTIP,
|
|
107
109
|
k as DEFAULT_MENU_BUTTON_ID,
|
|
108
|
-
|
|
109
|
-
|
|
110
|
+
H as DownloadButton,
|
|
111
|
+
L as DragHandleToolbarButton,
|
|
110
112
|
u as DragPreviewContextProvider,
|
|
111
|
-
|
|
113
|
+
Y as ELEMENT_BUTTON,
|
|
112
114
|
F as FlyoutToolbarButton,
|
|
113
|
-
|
|
114
|
-
|
|
115
|
+
Mt as GAP_DEFAULT,
|
|
116
|
+
Po as GutterSpacing,
|
|
117
|
+
Dt as Heading1Plugin,
|
|
115
118
|
bt as Heading2Plugin,
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
Gt as Heading3Plugin,
|
|
120
|
+
Ht as Heading4Plugin,
|
|
121
|
+
wt as ImageCaptionPlugin,
|
|
122
|
+
Wt as ImageTitlePlugin,
|
|
123
|
+
Lt as KEY_ELEMENT_BREAK_AFTER_COLUMN,
|
|
124
|
+
dr as LinkInput,
|
|
121
125
|
W as LinkPlugin,
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
126
|
+
fr as LinkSelector,
|
|
127
|
+
So as Margin,
|
|
128
|
+
R as MenuToolbarButton,
|
|
125
129
|
d as MultiFlyoutContextProvider,
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
130
|
+
Qt as PARAGRAPH_CLASSES,
|
|
131
|
+
To as Padding,
|
|
132
|
+
Kt as ParagraphMarkupElement,
|
|
133
|
+
Xt as ParagraphMarkupElementNode,
|
|
134
|
+
Yt as ParagraphPlugin,
|
|
135
|
+
Jt as QuoteMarkupElementNode,
|
|
136
|
+
Zt as QuotePlugin,
|
|
137
|
+
Bo as Radius,
|
|
134
138
|
w as RichTextEditor,
|
|
135
139
|
r as Sections,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
140
|
+
yo as Security,
|
|
141
|
+
xr as THEME_PREFIX,
|
|
142
|
+
er as TextStylePluginsWithoutImage,
|
|
143
|
+
pr as TextStyles,
|
|
144
|
+
nr as TextStylesWithoutImage,
|
|
141
145
|
y as Toolbar,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
+
_ as ToolbarFlyoutMenu,
|
|
147
|
+
Or as addHttps,
|
|
148
|
+
co as borderStyleMap,
|
|
149
|
+
Fr as convertToRteValue,
|
|
146
150
|
ft as createButtonNode,
|
|
147
|
-
|
|
151
|
+
q as createButtonPlugin,
|
|
148
152
|
j as createLinkPlugin,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
153
|
+
qt as createParagraphPlugin,
|
|
154
|
+
$t as createQuotePlugin,
|
|
155
|
+
kr as customCoordinatesGetterFactory,
|
|
152
156
|
e as defineBlock,
|
|
153
157
|
n as defineSettings,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
158
|
+
zo as getBackgroundColorStyles,
|
|
159
|
+
Xr as getBackgroundSettings,
|
|
160
|
+
Jr as getBorderRadiusSettings,
|
|
161
|
+
Zr as getBorderRadiusSlider,
|
|
162
|
+
qr as getBorderSettings,
|
|
163
|
+
Zo as getBorderStyles,
|
|
164
|
+
lr as getDefaultPluginsWithLinkChooser,
|
|
165
|
+
to as getExtendedBorderRadiusSettings,
|
|
166
|
+
oo as getGutterSettings,
|
|
167
|
+
Sr as getLegacyUrl,
|
|
168
|
+
Tr as getLinkFromEditor,
|
|
169
|
+
po as getMarginExtendedSettings,
|
|
170
|
+
no as getMarginSettings,
|
|
171
|
+
ao as getMarginSlider,
|
|
172
|
+
uo as getPaddingExtendedSettings,
|
|
173
|
+
lo as getPaddingSettings,
|
|
174
|
+
go as getPaddingSlider,
|
|
175
|
+
te as getRadiusStyles,
|
|
176
|
+
jo as getReadableColor,
|
|
177
|
+
Fo as getSecurityDownloadableSetting,
|
|
178
|
+
ho as getSecurityGlobalControlId,
|
|
179
|
+
Ro as getSecurityGlobalControlSetting,
|
|
180
|
+
Br as getUrl,
|
|
177
181
|
xt as getUrlFromEditor,
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
182
|
+
yr as getUrlFromLinkOrLegacyLink,
|
|
183
|
+
Eo as gutterSpacingStyleMap,
|
|
184
|
+
Ur as hasRichTextValue,
|
|
181
185
|
$ as insertButton,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
186
|
+
_o as isDark,
|
|
187
|
+
Dr as isDownloadable,
|
|
188
|
+
Mr as isValidUrl,
|
|
189
|
+
Lr as isValidUrlOrEmpty,
|
|
190
|
+
oe as joinClassNames,
|
|
187
191
|
br as mapAppBridgeColorPaletteToFonduePalette,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
192
|
+
Nr as mapAppBridgeColorPalettesToFonduePalettes,
|
|
193
|
+
Ao as marginStyleMap,
|
|
194
|
+
Yo as moveItemInArray,
|
|
195
|
+
Mo as paddingStyleMap,
|
|
196
|
+
Lo as radiusStyleMap,
|
|
197
|
+
Er as relativeUrlRegex,
|
|
198
|
+
vo as setAlpha,
|
|
195
199
|
rt as submitFloatingButton,
|
|
196
|
-
|
|
200
|
+
Vo as toColorObject,
|
|
197
201
|
Io as toHex8String,
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
202
|
+
No as toHexString,
|
|
203
|
+
Oo as toRgbaString,
|
|
204
|
+
Ko as toShortRgba,
|
|
201
205
|
dt as triggerFloatingButton,
|
|
202
|
-
|
|
203
|
-
|
|
206
|
+
St as triggerFloatingButtonEdit,
|
|
207
|
+
Bt as triggerFloatingButtonInsert,
|
|
204
208
|
et as unwrapButton,
|
|
205
209
|
at as upsertButton,
|
|
206
210
|
pt as upsertButtonText,
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
211
|
+
wr as useAttachments,
|
|
212
|
+
Vr as useAttachmentsContext,
|
|
213
|
+
Qr as useDndSensors,
|
|
210
214
|
f as useDragPreviewContext,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
+
P as useMultiFlyoutContext,
|
|
216
|
+
T as useMultiFlyoutState,
|
|
217
|
+
Wr as withAttachmentsProvider,
|
|
218
|
+
J as withButton,
|
|
215
219
|
lt as wrapButton
|
|
216
220
|
};
|
|
217
221
|
//# sourceMappingURL=index.es.js.map
|
package/dist/index.es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":["../src/index.ts"],"sourcesContent":["/* (c) Copyright Frontify Ltd., all rights reserved. */\n\nimport './styles.css';\n\nimport { type AppBridgeBlock } from '@frontify/app-bridge';\nimport {\n type AssetInputBlock as AssetInputBlockSidebarSettings,\n type BaseBlock as BaseBlockSidebarSettings,\n type Bundle as BundleSidebarSettings,\n type ChecklistBlock as ChecklistBlockSidebarSettings,\n type ChoicesType as ChoicesTypeSidebarSettings,\n type ColorInputBlock as ColorInputBlockSidebarSettings,\n type DropdownBlock as DropdownBlockSidebarSettings,\n type DynamicSettingBlock as DynamicSettingBlockSidebarSettings,\n type DynamicSupportedBlock as DynamicSupportedBlockSidebarSettings,\n type FontInputBlock as FontInputBlockSidebarSettings,\n type InputBlock as InputBlockSidebarSettings,\n type LegacyAssetInputBlock as LegacyAssetInputBlockSidebarSettings,\n type LinkBlock as LinkBlockSidebarSettings,\n type LinkChooserBlock as LinkChooserBlockSidebarSettings,\n type MultiInputBlock as MultiInputBlockSidebarSettings,\n type NotificationBlock as NotificationBlockSidebarSettings,\n type SectionHeadingBlock as SectionHeadingBlockSidebarSettings,\n type SegmentedControlsBlock as SegmentedControlsBlockSidebarSettings,\n type SettingBlock as SettingBlockSidebarSettings,\n type SimpleSettingBlock as SimpleSettingBlockSidebarSettings,\n type SwitchBlock as SwitchBlockSidebarSettings,\n type TemplateInputBlock as TemplateInputBlockSidebarSettings,\n type TextareaBlock as TextareaBlockSidebarSettings,\n type ValueOrPromisedValue as ValueOrPromisedValueSidebarSettings,\n} from '@frontify/sidebar-settings';\nimport { type FC } from 'react';\n\nexport * from '@frontify/sidebar-settings';\n\nexport type AssetInputBlock = AssetInputBlockSidebarSettings<AppBridgeBlock>;\nexport type BaseBlock<T = undefined> = BaseBlockSidebarSettings<AppBridgeBlock, T>;\nexport type Bundle = BundleSidebarSettings<AppBridgeBlock>;\nexport type ChecklistBlock = ChecklistBlockSidebarSettings<AppBridgeBlock>;\nexport type ChoicesType = ChoicesTypeSidebarSettings<AppBridgeBlock>;\nexport type ColorInputBlock = ColorInputBlockSidebarSettings<AppBridgeBlock>;\nexport type DropdownBlock = DropdownBlockSidebarSettings<AppBridgeBlock>;\nexport type DynamicSettingBlock<Block extends DynamicSupportedBlock = DynamicSupportedBlock> =\n DynamicSettingBlockSidebarSettings<AppBridgeBlock, Block>;\nexport type DynamicSupportedBlock = DynamicSupportedBlockSidebarSettings<AppBridgeBlock>;\nexport type FontInputBlock = FontInputBlockSidebarSettings<AppBridgeBlock>;\nexport type InputBlock = InputBlockSidebarSettings<AppBridgeBlock>;\nexport type LegacyAssetInputBlock = LegacyAssetInputBlockSidebarSettings<AppBridgeBlock>;\nexport type LinkBlock = LinkBlockSidebarSettings<AppBridgeBlock>;\nexport type LinkChooserBlock = LinkChooserBlockSidebarSettings<AppBridgeBlock>;\nexport type MultiInputBlock = MultiInputBlockSidebarSettings<AppBridgeBlock>;\nexport type NotificationBlock = NotificationBlockSidebarSettings<AppBridgeBlock>;\nexport type SectionHeadingBlock = SectionHeadingBlockSidebarSettings<AppBridgeBlock>;\nexport type SegmentedControlsBlock = SegmentedControlsBlockSidebarSettings<AppBridgeBlock>;\nexport type SettingBlock = SettingBlockSidebarSettings<AppBridgeBlock>;\nexport type SimpleSettingBlock = SimpleSettingBlockSidebarSettings<AppBridgeBlock>;\nexport type SwitchBlock = SwitchBlockSidebarSettings<AppBridgeBlock>;\nexport type TemplateInputBlock = TemplateInputBlockSidebarSettings<AppBridgeBlock>;\nexport type TextareaBlock = TextareaBlockSidebarSettings<AppBridgeBlock>;\nexport type ValueOrPromisedValue<T> = ValueOrPromisedValueSidebarSettings<AppBridgeBlock, T>;\n\nexport enum Sections {\n Main = 'main',\n Basics = 'basics',\n Layout = 'layout',\n Style = 'style',\n Security = 'security',\n Targets = 'targets',\n}\n\nexport type BlockSettingsStructureExport = {\n [Sections.Main]?: SettingBlock[];\n [Sections.Basics]?: SettingBlock[];\n [Sections.Layout]?: SettingBlock[];\n [Sections.Style]?: SettingBlock[];\n [Sections.Security]?: SettingBlock[];\n} & { [customSectionName: string]: SettingBlock[] };\n\nexport type BlockProps = {\n /**\n * The Frontify App Bridge provides an interface to the Frontify app internals.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/content-blocks/introducing-the-app-bridge}\n */\n appBridge: AppBridgeBlock;\n};\n\nexport type BlockConfigExport = {\n /**\n * Block component to render.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/content-blocks}\n */\n block: FC<BlockProps>;\n /**\n * Contains the block settings and its structure.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/block-settings-1}\n */\n settings: ReturnType<typeof defineSettings>;\n /**\n * Block lifecycle hook ran before the block gets added in the Guideline.\n * The hook support both synchronous or asynchronous execution.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/block-lifecycle/on-block-creation}\n */\n onBlockCreated?:\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => void)\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => Promise<void>);\n /**\n * Block lifecycle hook ran before the block gets deleted from the Guideline.\n * The hook support both synchronous or asynchronous execution.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/block-lifecycle/on-block-deletion}\n */\n onBlockDeleted?:\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => void)\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => Promise<void>);\n};\n\n/**\n * Type helper to make it easier to export a theme, accepts a direct {@link BlockConfigExport} object.\n */\nexport const defineBlock = (config: BlockConfigExport): BlockConfigExport => config;\n\n/**\n * Type helper to make it easier to export block's settings structure, accepts a direct {@link BlockSettingsStructureExport} object\n * or a function return a direct {@link BlockSettingsStructureExport} or a function returning a Promise of {@link BlockSettingsStructureExport}.\n */\nexport const defineSettings = <\n T extends\n | BlockSettingsStructureExport\n | (() => Promise<BlockSettingsStructureExport>)\n | (() => BlockSettingsStructureExport),\n>(\n settingsStructure: T,\n): T => settingsStructure;\n\nexport * from './components';\nexport * from './helpers';\nexport * from './hooks';\nexport * from './settings';\nexport * from './utilities';\n"],"names":["Sections","defineBlock","config","defineSettings","settingsStructure"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.es.js","sources":["../src/index.ts"],"sourcesContent":["/* (c) Copyright Frontify Ltd., all rights reserved. */\n\nimport './styles.css';\n\nimport { type AppBridgeBlock } from '@frontify/app-bridge';\nimport {\n type AssetInputBlock as AssetInputBlockSidebarSettings,\n type BaseBlock as BaseBlockSidebarSettings,\n type Bundle as BundleSidebarSettings,\n type ChecklistBlock as ChecklistBlockSidebarSettings,\n type ChoicesType as ChoicesTypeSidebarSettings,\n type ColorInputBlock as ColorInputBlockSidebarSettings,\n type DropdownBlock as DropdownBlockSidebarSettings,\n type DynamicSettingBlock as DynamicSettingBlockSidebarSettings,\n type DynamicSupportedBlock as DynamicSupportedBlockSidebarSettings,\n type FontInputBlock as FontInputBlockSidebarSettings,\n type InputBlock as InputBlockSidebarSettings,\n type LegacyAssetInputBlock as LegacyAssetInputBlockSidebarSettings,\n type LinkBlock as LinkBlockSidebarSettings,\n type LinkChooserBlock as LinkChooserBlockSidebarSettings,\n type MultiInputBlock as MultiInputBlockSidebarSettings,\n type NotificationBlock as NotificationBlockSidebarSettings,\n type SectionHeadingBlock as SectionHeadingBlockSidebarSettings,\n type SegmentedControlsBlock as SegmentedControlsBlockSidebarSettings,\n type SettingBlock as SettingBlockSidebarSettings,\n type SimpleSettingBlock as SimpleSettingBlockSidebarSettings,\n type SwitchBlock as SwitchBlockSidebarSettings,\n type TemplateInputBlock as TemplateInputBlockSidebarSettings,\n type TextareaBlock as TextareaBlockSidebarSettings,\n type ValueOrPromisedValue as ValueOrPromisedValueSidebarSettings,\n} from '@frontify/sidebar-settings';\nimport { type FC } from 'react';\n\nexport * from '@frontify/sidebar-settings';\n\nexport type AssetInputBlock = AssetInputBlockSidebarSettings<AppBridgeBlock>;\nexport type BaseBlock<T = undefined> = BaseBlockSidebarSettings<AppBridgeBlock, T>;\nexport type Bundle = BundleSidebarSettings<AppBridgeBlock>;\nexport type ChecklistBlock = ChecklistBlockSidebarSettings<AppBridgeBlock>;\nexport type ChoicesType = ChoicesTypeSidebarSettings<AppBridgeBlock>;\nexport type ColorInputBlock = ColorInputBlockSidebarSettings<AppBridgeBlock>;\nexport type DropdownBlock = DropdownBlockSidebarSettings<AppBridgeBlock>;\nexport type DynamicSettingBlock<Block extends DynamicSupportedBlock = DynamicSupportedBlock> =\n DynamicSettingBlockSidebarSettings<AppBridgeBlock, Block>;\nexport type DynamicSupportedBlock = DynamicSupportedBlockSidebarSettings<AppBridgeBlock>;\nexport type FontInputBlock = FontInputBlockSidebarSettings<AppBridgeBlock>;\nexport type InputBlock = InputBlockSidebarSettings<AppBridgeBlock>;\nexport type LegacyAssetInputBlock = LegacyAssetInputBlockSidebarSettings<AppBridgeBlock>;\nexport type LinkBlock = LinkBlockSidebarSettings<AppBridgeBlock>;\nexport type LinkChooserBlock = LinkChooserBlockSidebarSettings<AppBridgeBlock>;\nexport type MultiInputBlock = MultiInputBlockSidebarSettings<AppBridgeBlock>;\nexport type NotificationBlock = NotificationBlockSidebarSettings<AppBridgeBlock>;\nexport type SectionHeadingBlock = SectionHeadingBlockSidebarSettings<AppBridgeBlock>;\nexport type SegmentedControlsBlock = SegmentedControlsBlockSidebarSettings<AppBridgeBlock>;\nexport type SettingBlock = SettingBlockSidebarSettings<AppBridgeBlock>;\nexport type SimpleSettingBlock = SimpleSettingBlockSidebarSettings<AppBridgeBlock>;\nexport type SwitchBlock = SwitchBlockSidebarSettings<AppBridgeBlock>;\nexport type TemplateInputBlock = TemplateInputBlockSidebarSettings<AppBridgeBlock>;\nexport type TextareaBlock = TextareaBlockSidebarSettings<AppBridgeBlock>;\nexport type ValueOrPromisedValue<T> = ValueOrPromisedValueSidebarSettings<AppBridgeBlock, T>;\n\nexport enum Sections {\n Main = 'main',\n Basics = 'basics',\n Layout = 'layout',\n Style = 'style',\n Security = 'security',\n Targets = 'targets',\n}\n\nexport type BlockSettingsStructureExport = {\n [Sections.Main]?: SettingBlock[];\n [Sections.Basics]?: SettingBlock[];\n [Sections.Layout]?: SettingBlock[];\n [Sections.Style]?: SettingBlock[];\n [Sections.Security]?: SettingBlock[];\n} & { [customSectionName: string]: SettingBlock[] };\n\nexport type BlockProps = {\n /**\n * The Frontify App Bridge provides an interface to the Frontify app internals.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/content-blocks/introducing-the-app-bridge}\n */\n appBridge: AppBridgeBlock;\n};\n\nexport type BlockConfigExport = {\n /**\n * Block component to render.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/content-blocks}\n */\n block: FC<BlockProps>;\n /**\n * Contains the block settings and its structure.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/block-settings-1}\n */\n settings: ReturnType<typeof defineSettings>;\n /**\n * Block lifecycle hook ran before the block gets added in the Guideline.\n * The hook support both synchronous or asynchronous execution.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/block-lifecycle/on-block-creation}\n */\n onBlockCreated?:\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => void)\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => Promise<void>);\n /**\n * Block lifecycle hook ran before the block gets deleted from the Guideline.\n * The hook support both synchronous or asynchronous execution.\n * {@link https://developer.frontify.com/d/XFPCrGNrXQQM/content-blocks#/details-concepts-1/block-lifecycle/on-block-deletion}\n */\n onBlockDeleted?:\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => void)\n | (({ appBridge }: { appBridge: AppBridgeBlock }) => Promise<void>);\n};\n\n/**\n * Type helper to make it easier to export a theme, accepts a direct {@link BlockConfigExport} object.\n */\nexport const defineBlock = (config: BlockConfigExport): BlockConfigExport => config;\n\n/**\n * Type helper to make it easier to export block's settings structure, accepts a direct {@link BlockSettingsStructureExport} object\n * or a function return a direct {@link BlockSettingsStructureExport} or a function returning a Promise of {@link BlockSettingsStructureExport}.\n */\nexport const defineSettings = <\n T extends\n | BlockSettingsStructureExport\n | (() => Promise<BlockSettingsStructureExport>)\n | (() => BlockSettingsStructureExport),\n>(\n settingsStructure: T,\n): T => settingsStructure;\n\nexport * from './components';\nexport * from './helpers';\nexport * from './hooks';\nexport * from './settings';\nexport * from './utilities';\n"],"names":["Sections","defineBlock","config","defineSettings","settingsStructure"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6DY,IAAAA,sBAAAA,OACRA,EAAA,OAAO,QACPA,EAAA,SAAS,UACTA,EAAA,SAAS,UACTA,EAAA,QAAQ,SACRA,EAAA,WAAW,YACXA,EAAA,UAAU,WANFA,IAAAA,KAAA,CAAA,CAAA;AAyDC,MAAAC,IAAc,CAACC,MAAiDA,GAMhEC,IAAiB,CAM1BC,MACIA;"}
|