@cntrl-site/components 1.0.12-alpha.25 → 1.0.12-alpha.27
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/Form/Form.d.ts +2 -1
- package/dist/Components/Form/FormComponent.d.ts +2 -2
- package/dist/Components/Grid/Grid.d.ts +11 -6
- package/dist/Components/LightboxJournal/LightboxJournal.d.ts +5 -2
- package/dist/Components/LightboxStrip/LightboxStrip.d.ts +10 -2
- package/dist/Components/List/List.d.ts +13 -8
- package/dist/Components/List/ListComponent.d.ts +2 -1
- package/dist/Components/OnelinerForm/OnelinerForm.d.ts +2 -1
- package/dist/Components/OnelinerForm/OnelinerFormComponent.d.ts +2 -1
- package/dist/Components/TestimonialGrid/TestimonialGrid.d.ts +0 -1
- package/dist/Components/TestimonialGrid/TestimonialGridComponent.d.ts +0 -1
- package/dist/Components/TestimonialSingle/TestimonialSingle.d.ts +1 -2
- package/dist/Components/TestimonialSingle/TestimonialSingleComponent.d.ts +1 -2
- package/dist/Components/utils/imageFitStyles.d.ts +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1751 -479
- package/dist/index.mjs +6993 -5171
- package/dist/types/Component.d.ts +8 -4
- package/package.json +1 -1
- package/dist/Components/utils/getMainFontBaseOnSystem.d.ts +0 -1
|
@@ -5,10 +5,11 @@ type FormProps = {
|
|
|
5
5
|
content?: unknown;
|
|
6
6
|
isEditor?: boolean;
|
|
7
7
|
isEditMode?: boolean;
|
|
8
|
+
isPreviewMode?: boolean;
|
|
8
9
|
activeEvent: string | undefined;
|
|
9
10
|
onUpdateSettings?: (settings: FormSettings) => void;
|
|
10
11
|
} & CommonComponentProps;
|
|
11
|
-
export declare function Form({ settings, isEditor, isEditMode, metadata, activeEvent }: FormProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare function Form({ settings, isEditor, isEditMode, isPreviewMode, metadata, activeEvent }: FormProps): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export type FormFieldType = 'text' | 'textarea' | 'phone' | 'email';
|
|
13
14
|
export type FormFieldItem = {
|
|
14
15
|
name: string;
|
|
@@ -518,14 +518,14 @@ export declare const FormComponent: {
|
|
|
518
518
|
fieldsToShow: number;
|
|
519
519
|
fields: ({
|
|
520
520
|
name: string;
|
|
521
|
-
type: "
|
|
521
|
+
type: "text";
|
|
522
522
|
placeholder: string;
|
|
523
523
|
label: string;
|
|
524
524
|
isRequired: boolean;
|
|
525
525
|
error: string;
|
|
526
526
|
} | {
|
|
527
527
|
name: string;
|
|
528
|
-
type: "
|
|
528
|
+
type: "email";
|
|
529
529
|
placeholder: string;
|
|
530
530
|
label: string;
|
|
531
531
|
isRequired: boolean;
|
|
@@ -19,21 +19,26 @@ type GridLayoutConfig = {
|
|
|
19
19
|
lockedParam?: 'wrapperWidth' | 'entryWidth' | 'horizontalGap' | null;
|
|
20
20
|
};
|
|
21
21
|
type GridSettings = {
|
|
22
|
-
type: '
|
|
22
|
+
type: 'a' | 'b' | 'c';
|
|
23
23
|
gridLayout: GridLayoutConfig;
|
|
24
24
|
textBoxWidth: number;
|
|
25
25
|
verticalGap: number;
|
|
26
26
|
entriesCount: number;
|
|
27
|
-
lightbox: '
|
|
27
|
+
lightbox: 'on' | 'off';
|
|
28
28
|
imageDisplay: {
|
|
29
|
-
display: '
|
|
29
|
+
display: 'fit' | 'cover';
|
|
30
30
|
ratioValue: '1:1' | '2:3' | '3:4' | '4:5' | '16:9';
|
|
31
31
|
reversed: boolean;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
lightboxImageDisplay?: 'fit' | 'cover' | {
|
|
34
|
+
display?: 'fit' | 'cover';
|
|
35
|
+
};
|
|
36
|
+
slider: 'on' | 'off';
|
|
34
37
|
sliderTiming: number;
|
|
35
|
-
direction: '
|
|
36
|
-
transition: '
|
|
38
|
+
direction: 'horizontal' | 'vertical' | 'random';
|
|
39
|
+
transition: 'fade' | 'slide';
|
|
40
|
+
showText: 'always' | 'on hover';
|
|
41
|
+
alignEntries: 'on' | 'off';
|
|
37
42
|
titleMarginTop: number;
|
|
38
43
|
subtitleMarginTop: number;
|
|
39
44
|
titleColor: string;
|
|
@@ -31,12 +31,15 @@ type LightboxJournalProps = {
|
|
|
31
31
|
export declare const LightboxJournal: ({ settings, content, isEditor, isEditMode, isPreviewMode, portalId }: LightboxJournalProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
32
|
export type LightboxJournalSettings = {
|
|
33
33
|
cover: string | null;
|
|
34
|
-
coverFit:
|
|
34
|
+
coverFit: {
|
|
35
|
+
display: 'Fit' | 'Cover';
|
|
36
|
+
ratioValue: '1:1' | '2:3' | '3:4' | '4:5' | '16:9';
|
|
37
|
+
reversed: boolean;
|
|
38
|
+
};
|
|
35
39
|
type: 'A' | 'B';
|
|
36
40
|
maxWidth: number;
|
|
37
41
|
maxHeight: number;
|
|
38
42
|
backgroundColor: string;
|
|
39
|
-
objectFit: 'cover' | 'fit';
|
|
40
43
|
imageGap?: number;
|
|
41
44
|
textMaxWidth: number;
|
|
42
45
|
textTransition: 'none' | 'fade';
|
|
@@ -28,12 +28,20 @@ export declare function extractTitlesFromLegacyText(text: LightboxStripLegacyIte
|
|
|
28
28
|
export declare function resolveSharedStripTitles(items: LightboxStripLegacyItem[]): SharedStripTitles;
|
|
29
29
|
export type LightboxStripSettings = {
|
|
30
30
|
cover: string | null;
|
|
31
|
-
coverFit:
|
|
31
|
+
coverFit: {
|
|
32
|
+
display: 'Fit' | 'Cover';
|
|
33
|
+
ratioValue: '1:1' | '2:3' | '3:4' | '4:5' | '16:9';
|
|
34
|
+
reversed: boolean;
|
|
35
|
+
};
|
|
32
36
|
type: 'A' | 'B';
|
|
33
37
|
backgroundColor: string;
|
|
34
38
|
contentBackgroundColor?: string;
|
|
35
39
|
thumbnailVisibility: 'on' | 'off';
|
|
36
|
-
thumbnailObjectFit:
|
|
40
|
+
thumbnailObjectFit: {
|
|
41
|
+
display: 'Fit' | 'Cover';
|
|
42
|
+
ratioValue: '1:1' | '2:3' | '3:4' | '4:5' | '16:9';
|
|
43
|
+
reversed: boolean;
|
|
44
|
+
};
|
|
37
45
|
thumbnailTrigger: 'click' | 'hover';
|
|
38
46
|
thumbnailActive: 'invert' | 'grayscale' | 'scale-up' | 'opacity';
|
|
39
47
|
thumbnailGap: number;
|
|
@@ -65,11 +65,11 @@ type ListColumnTextStyleOverrides = {
|
|
|
65
65
|
export type ListColumnVerticalAlignKey = `${ListColumnPrefix}VerticalAlign`;
|
|
66
66
|
export type ListSettings = {
|
|
67
67
|
columns: number;
|
|
68
|
-
type: '
|
|
68
|
+
type: 'a' | 'b';
|
|
69
69
|
wrapperWidth: number;
|
|
70
70
|
entriesCount: number;
|
|
71
71
|
cellMinHeight: number;
|
|
72
|
-
imageOnHover: '
|
|
72
|
+
imageOnHover: 'on' | 'off';
|
|
73
73
|
imageSize?: {
|
|
74
74
|
min: number;
|
|
75
75
|
max: number;
|
|
@@ -80,7 +80,8 @@ export type ListSettings = {
|
|
|
80
80
|
showCut: number;
|
|
81
81
|
cutCellMinHeight: number;
|
|
82
82
|
cutLabel: string;
|
|
83
|
-
entryHoverEffect: '
|
|
83
|
+
entryHoverEffect: 'none' | 'default' | 'blinds' | 'reveal';
|
|
84
|
+
entryHoverShowOption: 'always' | 'link only';
|
|
84
85
|
rowPaddingTop: number;
|
|
85
86
|
rowPaddingBottom: number;
|
|
86
87
|
rowPaddingTopB: number;
|
|
@@ -113,17 +114,19 @@ export type ListSettings = {
|
|
|
113
114
|
backgroundHoverColor: string;
|
|
114
115
|
dividerHoverColor: string;
|
|
115
116
|
} & ListColumnTextStyleOverrides;
|
|
117
|
+
type ListMedia = {
|
|
118
|
+
objectFit?: 'cover' | 'contain';
|
|
119
|
+
url: string;
|
|
120
|
+
name: string;
|
|
121
|
+
type?: 'image' | 'video';
|
|
122
|
+
};
|
|
116
123
|
type ListContentItem = {
|
|
117
124
|
AColumn?: string;
|
|
118
125
|
BColumnWidth?: string;
|
|
119
126
|
CColumnWidth?: string;
|
|
120
127
|
DColumnWidth?: string;
|
|
121
128
|
EColumnWidth?: string;
|
|
122
|
-
image?:
|
|
123
|
-
objectFit?: 'cover' | 'contain';
|
|
124
|
-
url: string;
|
|
125
|
-
name: string;
|
|
126
|
-
};
|
|
129
|
+
image?: ListMedia;
|
|
127
130
|
link?: string;
|
|
128
131
|
};
|
|
129
132
|
type ListProps = {
|
|
@@ -144,6 +147,7 @@ export type ListTextStylePrefix = typeof LIST_TEXT_STYLE_PREFIXES[number];
|
|
|
144
147
|
export declare const LIST_COLUMN_LETTERS: readonly ["A", "B", "C", "D", "E"];
|
|
145
148
|
export declare function getListColumnVerticalAlignSettingKey(columnLetter: string): string;
|
|
146
149
|
export declare const COLUMN_VALIGN_BASIC_OPTIONS: readonly ["Top", "Center", "Bottom"];
|
|
150
|
+
export declare function normalizeListColumnVerticalAlign(value: string | undefined): string;
|
|
147
151
|
export declare function isBaselineAnchorColumnVerticalAlign(value: string | undefined): boolean;
|
|
148
152
|
export declare function parseBaselineAnchorLetter(value: string | undefined): string | null;
|
|
149
153
|
export declare function isValidColumnBaselineVAlign(value: string | undefined, forColumnLetter: string, settings: ListSettings): boolean;
|
|
@@ -165,6 +169,7 @@ export declare function resolveListColumnPadding(columnWidth: number, paddingLef
|
|
|
165
169
|
};
|
|
166
170
|
export declare function getEffectiveListColumnWidths(columns: number, wrapperWidth: number, storedWidths: Record<ColumnWidthKey, number>): number[];
|
|
167
171
|
export declare function resolveListColumnWidths(columns: number, wrapperWidth: number, storedWidths: Record<ColumnWidthKey, number>): number[];
|
|
172
|
+
export declare function applyListColumnCountChange(nextSettings: ListSettings, prevSettings: ListSettings): ListSettings;
|
|
168
173
|
export declare function applyListSettingsChange(nextSettings: ListSettings, prevSettings: ListSettings, options?: {
|
|
169
174
|
designWidth?: number;
|
|
170
175
|
}): ListSettings;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { List } from './List';
|
|
1
|
+
import { List, ListSettings } from './List';
|
|
2
2
|
import { ComponentSchemaV1 } from '../../types/SchemaV1';
|
|
3
3
|
export declare const ListComponent: {
|
|
4
4
|
element: typeof List;
|
|
@@ -6,6 +6,7 @@ export declare const ListComponent: {
|
|
|
6
6
|
name: string;
|
|
7
7
|
category: string;
|
|
8
8
|
layoutMode: "structured";
|
|
9
|
+
normalizeLayoutSettingsUpdate: (nextSettings: Record<string, any>, prevSettings: Record<string, any>) => ListSettings;
|
|
9
10
|
preview: {
|
|
10
11
|
type: "image";
|
|
11
12
|
url: string;
|
|
@@ -4,9 +4,10 @@ type OnelinerFormProps = {
|
|
|
4
4
|
settings: OnelinerFormSettings;
|
|
5
5
|
content?: unknown;
|
|
6
6
|
isEditor?: boolean;
|
|
7
|
+
isPreviewMode?: boolean;
|
|
7
8
|
activeEvent?: string;
|
|
8
9
|
} & CommonComponentProps;
|
|
9
|
-
export declare const OnelinerForm: ({ settings, isEditor, metadata, activeEvent }: OnelinerFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const OnelinerForm: ({ settings, isEditor, isPreviewMode, metadata, activeEvent }: OnelinerFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
11
|
type FieldConfig = {
|
|
11
12
|
name: string;
|
|
12
13
|
type: 'text' | 'phone' | 'email';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export declare const OnelinerFormComponent: {
|
|
2
|
-
element: ({ settings, isEditor, metadata, activeEvent }: {
|
|
2
|
+
element: ({ settings, isEditor, isPreviewMode, metadata, activeEvent }: {
|
|
3
3
|
settings: import('./OnelinerForm').OnelinerFormSettings;
|
|
4
4
|
content?: unknown;
|
|
5
5
|
isEditor?: boolean;
|
|
6
|
+
isPreviewMode?: boolean;
|
|
6
7
|
activeEvent?: string;
|
|
7
8
|
} & import('../props').CommonComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
id: string;
|
|
@@ -2,7 +2,6 @@ import { ComponentSchemaV1 } from '../../types/SchemaV1';
|
|
|
2
2
|
export declare const TestimonialGridComponent: {
|
|
3
3
|
element: ({ settings, content, isEditor, isPreviewMode, isEditMode }: {
|
|
4
4
|
settings: {
|
|
5
|
-
autoplay: "on" | "off";
|
|
6
5
|
speed: number;
|
|
7
6
|
align: "start" | "center" | "end";
|
|
8
7
|
direction: "left" | "right";
|
|
@@ -2,8 +2,7 @@ import { ComponentSchemaV1 } from '../../types/SchemaV1';
|
|
|
2
2
|
export declare const TestimonialSingleComponent: {
|
|
3
3
|
element: ({ settings, content, isEditor, isPreviewMode, isEditMode }: {
|
|
4
4
|
settings: {
|
|
5
|
-
|
|
6
|
-
delay: number;
|
|
5
|
+
speed: number;
|
|
7
6
|
align: "start" | "center" | "end";
|
|
8
7
|
width: number;
|
|
9
8
|
imageMarginTop?: number;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type ImageRatioFit = {
|
|
2
|
+
display: 'Fit' | 'Cover';
|
|
3
|
+
ratioValue: '1:1' | '2:3' | '3:4' | '4:5' | '16:9';
|
|
4
|
+
reversed: boolean;
|
|
5
|
+
};
|
|
6
|
+
export declare const isImageRatioCover: (fit: ImageRatioFit) => boolean;
|
|
7
|
+
export declare const getAspectRatio: (fit: ImageRatioFit) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { type Component, isSchemaV1 } from './types/Component';
|
|
1
|
+
export { type Breakpoint, type Component, type ComponentDefaultSize, type ComponentSize, isSchemaV1 } from './types/Component';
|
|
2
2
|
export type { ComponentSchemaV1, SchemaProperty, PropertyScope, LayoutItem, LayoutRow, LayoutGroup, LayoutSwitcher, LayoutTab, SchemaSection, SchemaPanel, SchemaDisplay } from './types/SchemaV1';
|
|
3
3
|
export { components } from './Components/components';
|