@vectoriox/iox-builder 1.4.30 → 1.4.31
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.
|
@@ -1484,12 +1484,18 @@ const TRANSFORM_FUNS = [
|
|
|
1484
1484
|
['skewX', 'skewX', '0deg'],
|
|
1485
1485
|
['skewY', 'skewY', '0deg'],
|
|
1486
1486
|
];
|
|
1487
|
+
// ─── ::marker pseudo-element ─────────────────────────────────────────────────
|
|
1488
|
+
const MARKER_FUNS = [
|
|
1489
|
+
['markerColor', 'color'],
|
|
1490
|
+
['markerFontSize', 'fontSize'],
|
|
1491
|
+
];
|
|
1487
1492
|
// ─── All virtual trait names ──────────────────────────────────────────────────
|
|
1488
1493
|
const VIRTUAL_TRAIT_KEYS = new Set([
|
|
1489
1494
|
...FILTER_FUNS.map(([t]) => t),
|
|
1490
1495
|
...BACKDROP_FUNS.map(([t]) => t),
|
|
1491
1496
|
...TRANSFORM_FUNS.map(([t]) => t),
|
|
1492
1497
|
'transitionDuration', 'transitionTimingFunction', 'transitionDelay',
|
|
1498
|
+
...MARKER_FUNS.map(([t]) => t),
|
|
1493
1499
|
]);
|
|
1494
1500
|
// ─── Helpers ─────────────────────────────────────────────────────────────────
|
|
1495
1501
|
function buildFns(funs, src) {
|
|
@@ -1541,6 +1547,17 @@ function composeVirtualTraits(raw, base = raw) {
|
|
|
1541
1547
|
const delPart = del && del !== '0ms' && del !== '0s' ? ` ${del}` : '';
|
|
1542
1548
|
result['transition'] = `all ${dur} ${ease}${delPart}`;
|
|
1543
1549
|
}
|
|
1550
|
+
// ::marker pseudo-element — collected into __markerStyles so StyleRegistryService
|
|
1551
|
+
// can emit a separate `.iox-node-{id}::marker { … }` rule.
|
|
1552
|
+
const markerStyles = {};
|
|
1553
|
+
for (const [trait, cssProp] of MARKER_FUNS) {
|
|
1554
|
+
const val = raw[trait] ?? base[trait];
|
|
1555
|
+
if (val != null && val !== '')
|
|
1556
|
+
markerStyles[cssProp] = val;
|
|
1557
|
+
}
|
|
1558
|
+
if (Object.keys(markerStyles).length) {
|
|
1559
|
+
result['__markerStyles'] = markerStyles;
|
|
1560
|
+
}
|
|
1544
1561
|
return result;
|
|
1545
1562
|
}
|
|
1546
1563
|
|
|
@@ -1554,6 +1571,7 @@ var StyleCategory;
|
|
|
1554
1571
|
StyleCategory["Position"] = "Position";
|
|
1555
1572
|
StyleCategory["Background"] = "Background";
|
|
1556
1573
|
StyleCategory["Effects"] = "Effects";
|
|
1574
|
+
StyleCategory["List"] = "List";
|
|
1557
1575
|
// Legacy — kept for backward compat; prefer Size
|
|
1558
1576
|
StyleCategory["Dimensions"] = "Dimensions";
|
|
1559
1577
|
})(StyleCategory || (StyleCategory = {}));
|
|
@@ -1952,6 +1970,32 @@ class EffectsGroupStyleConfig extends GroupStyleConfig {
|
|
|
1952
1970
|
]);
|
|
1953
1971
|
}
|
|
1954
1972
|
}
|
|
1973
|
+
class ListGroupStyleConfig extends GroupStyleConfig {
|
|
1974
|
+
constructor() {
|
|
1975
|
+
super(StyleCategory.List, [
|
|
1976
|
+
new TraitConfig('listStyleType', 'Marker Style', TraitInputType.Select, [
|
|
1977
|
+
{ label: 'None', value: 'none' },
|
|
1978
|
+
{ label: 'Disc', value: 'disc' },
|
|
1979
|
+
{ label: 'Circle', value: 'circle' },
|
|
1980
|
+
{ label: 'Square', value: 'square' },
|
|
1981
|
+
{ label: 'Decimal', value: 'decimal' },
|
|
1982
|
+
{ label: 'Lower Alpha', value: 'lower-alpha' },
|
|
1983
|
+
{ label: 'Upper Alpha', value: 'upper-alpha' },
|
|
1984
|
+
{ label: 'Lower Roman', value: 'lower-roman' },
|
|
1985
|
+
{ label: 'Upper Roman', value: 'upper-roman' },
|
|
1986
|
+
], 'disc'),
|
|
1987
|
+
new TraitConfig('listStylePosition', 'Marker Position', TraitInputType.SelectButton, [
|
|
1988
|
+
{ value: 'outside', label: 'Outside' },
|
|
1989
|
+
{ value: 'inside', label: 'Inside' },
|
|
1990
|
+
], 'outside'),
|
|
1991
|
+
new TraitConfig('columnCount', 'Columns', TraitInputType.Scrub, { min: 1, max: 6, step: 1, units: [''] }, '1'),
|
|
1992
|
+
new TraitConfig('columnGap', 'Column Gap', TraitInputType.Scrub, { min: 0, max: 200, step: 1, units: UNITS_FIXED }, '0px'),
|
|
1993
|
+
new TraitConfig('_sep_marker', 'Marker', TraitInputType.SectionLabel),
|
|
1994
|
+
new TraitConfig('markerColor', 'Color', TraitInputType.Color, { allowGradient: false, allowTransparent: true, formats: ['hex', 'rgb', 'hsl', 'transparent'] }, ''),
|
|
1995
|
+
new TraitConfig('markerFontSize', 'Size', TraitInputType.Scrub, { min: 4, max: 100, step: 1, units: UNITS_FIXED }, ''),
|
|
1996
|
+
]);
|
|
1997
|
+
}
|
|
1998
|
+
}
|
|
1955
1999
|
/**
|
|
1956
2000
|
* Returns a fresh set of all 8 style-group configs in canonical display order.
|
|
1957
2001
|
* Every call produces new TraitConfig instances so different component nodes
|
|
@@ -2063,11 +2107,25 @@ class StyleRegistryService {
|
|
|
2063
2107
|
this.flush();
|
|
2064
2108
|
return;
|
|
2065
2109
|
}
|
|
2110
|
+
// ::marker pseudo-element — emitted as a separate rule, not part of inner/outer split.
|
|
2111
|
+
const markerStyles = styles['__markerStyles'];
|
|
2112
|
+
if (markerStyles && Object.keys(markerStyles).length) {
|
|
2113
|
+
const markerCss = this.compile(`iox-node-${nodeId}::marker`, markerStyles);
|
|
2114
|
+
if (markerCss)
|
|
2115
|
+
this.rules.set(`${nodeId}::marker`, markerCss);
|
|
2116
|
+
else
|
|
2117
|
+
this.rules.delete(`${nodeId}::marker`);
|
|
2118
|
+
}
|
|
2119
|
+
else {
|
|
2120
|
+
this.rules.delete(`${nodeId}::marker`);
|
|
2121
|
+
}
|
|
2066
2122
|
const pos = String(styles['position'] ?? '');
|
|
2067
2123
|
const isOutOfFlow = pos === 'fixed' || pos === 'absolute';
|
|
2068
2124
|
const inner = {};
|
|
2069
2125
|
const outer = {};
|
|
2070
2126
|
for (const [k, v] of Object.entries(styles)) {
|
|
2127
|
+
if (k === '__markerStyles')
|
|
2128
|
+
continue;
|
|
2071
2129
|
const wantsOuter = StyleRegistryService.OUTER_PROPS.has(k);
|
|
2072
2130
|
// width goes to inner for fixed/absolute (the positioned element owns its own width)
|
|
2073
2131
|
if (wantsOuter && !(isOutOfFlow && k === 'width')) {
|
|
@@ -3915,6 +3973,8 @@ class BuilderContainerComponent {
|
|
|
3915
3973
|
this.nodeId = '';
|
|
3916
3974
|
this.dropListId = '';
|
|
3917
3975
|
this.htmlTag = 'div';
|
|
3976
|
+
this.start = 1;
|
|
3977
|
+
this.reversed = false;
|
|
3918
3978
|
this.childClick = new EventEmitter();
|
|
3919
3979
|
this.childMouseEnter = new EventEmitter();
|
|
3920
3980
|
this.childMouseLeave = new EventEmitter();
|
|
@@ -3934,7 +3994,7 @@ class BuilderContainerComponent {
|
|
|
3934
3994
|
this.dragEngine.handleDrop(this.children, event, this.dropListId, this.cdr);
|
|
3935
3995
|
}
|
|
3936
3996
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.11", ngImport: i0, type: BuilderContainerComponent, deps: [{ token: DragEngineService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3937
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.11", type: BuilderContainerComponent, isStandalone: false, selector: "app-builder-container", inputs: { children: "children", style: "style", nodeId: "nodeId", dropListId: "dropListId", htmlTag: "htmlTag" }, outputs: { childClick: "childClick", childMouseEnter: "childMouseEnter", childMouseLeave: "childMouseLeave" }, ngImport: i0, template: `
|
|
3997
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.11", type: BuilderContainerComponent, isStandalone: false, selector: "app-builder-container", inputs: { children: "children", style: "style", nodeId: "nodeId", dropListId: "dropListId", htmlTag: "htmlTag", start: "start", reversed: "reversed" }, outputs: { childClick: "childClick", childMouseEnter: "childMouseEnter", childMouseLeave: "childMouseLeave" }, ngImport: i0, template: `
|
|
3938
3998
|
<ng-template #dropContent>
|
|
3939
3999
|
<div *ngIf="!children.length" class="container-placeholder">
|
|
3940
4000
|
<i class="ph-thin ph-square"></i>
|
|
@@ -3962,7 +4022,7 @@ class BuilderContainerComponent {
|
|
|
3962
4022
|
@case ('main') { <main class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></main> }
|
|
3963
4023
|
@case ('nav') { <nav class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></nav> }
|
|
3964
4024
|
@case ('ul') { <ul class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></ul> }
|
|
3965
|
-
@case ('ol') { <ol class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></ol> }
|
|
4025
|
+
@case ('ol') { <ol class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" [attr.start]="start !== 1 ? start : null" [attr.reversed]="reversed ? '' : null" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></ol> }
|
|
3966
4026
|
@case ('li') { <li class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></li> }
|
|
3967
4027
|
@default { <div class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></div> }
|
|
3968
4028
|
}
|
|
@@ -3998,7 +4058,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.11", ngImpo
|
|
|
3998
4058
|
@case ('main') { <main class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></main> }
|
|
3999
4059
|
@case ('nav') { <nav class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></nav> }
|
|
4000
4060
|
@case ('ul') { <ul class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></ul> }
|
|
4001
|
-
@case ('ol') { <ol class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></ol> }
|
|
4061
|
+
@case ('ol') { <ol class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" [attr.start]="start !== 1 ? start : null" [attr.reversed]="reversed ? '' : null" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></ol> }
|
|
4002
4062
|
@case ('li') { <li class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></li> }
|
|
4003
4063
|
@default { <div class="container-root" [ngClass]="['iox-node-' + nodeId, listOrientation === 'horizontal' ? 'is-horizontal' : '']" ioxDropzone [ioxDropzoneId]="dropListId" [ioxDropzoneData]="children" (ioxDrop)="onDrop($event)"><ng-container [ngTemplateOutlet]="dropContent"></ng-container></div> }
|
|
4004
4064
|
}
|
|
@@ -4013,6 +4073,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.11", ngImpo
|
|
|
4013
4073
|
type: Input
|
|
4014
4074
|
}], htmlTag: [{
|
|
4015
4075
|
type: Input
|
|
4076
|
+
}], start: [{
|
|
4077
|
+
type: Input
|
|
4078
|
+
}], reversed: [{
|
|
4079
|
+
type: Input
|
|
4016
4080
|
}], childClick: [{
|
|
4017
4081
|
type: Output
|
|
4018
4082
|
}], childMouseEnter: [{
|
|
@@ -5227,6 +5291,86 @@ class BuilderLinkedContainerConfig extends ComponentConfig {
|
|
|
5227
5291
|
}
|
|
5228
5292
|
}
|
|
5229
5293
|
|
|
5294
|
+
class BuilderListItemComponentConfig extends ComponentConfig {
|
|
5295
|
+
constructor() {
|
|
5296
|
+
super('ListItem', 'app-builder-container', 'ph-thin ph-list-dashes', 'Layout');
|
|
5297
|
+
this.traits = [
|
|
5298
|
+
new TraitConfig('htmlTag', 'Tag', TraitInputType.Select, ['li'], 'li'),
|
|
5299
|
+
];
|
|
5300
|
+
this.styleTraits = buildFullStyleTraits();
|
|
5301
|
+
this.children = [];
|
|
5302
|
+
this.applyStyleDefaults({
|
|
5303
|
+
width: '100%',
|
|
5304
|
+
display: 'block',
|
|
5305
|
+
backgroundColor: 'transparent',
|
|
5306
|
+
});
|
|
5307
|
+
}
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
class TextBlockComponentConfig extends ComponentConfig {
|
|
5311
|
+
constructor() {
|
|
5312
|
+
super('Text', 'app-text-block', 'ph-thin ph-text-aa', 'Basic');
|
|
5313
|
+
this.inputs = {
|
|
5314
|
+
content: 'text',
|
|
5315
|
+
tag: 'select',
|
|
5316
|
+
};
|
|
5317
|
+
this.traits = [
|
|
5318
|
+
new TraitConfig('content', 'Content', TraitInputType.Text, undefined, 'Enter text here'),
|
|
5319
|
+
new TraitConfig('tag', 'Tag', TraitInputType.Select, ['p', 'span'], 'p'),
|
|
5320
|
+
];
|
|
5321
|
+
this.styleTraits = buildFullStyleTraits();
|
|
5322
|
+
this.applyStyleDefaults({
|
|
5323
|
+
display: 'block',
|
|
5324
|
+
width: '100%',
|
|
5325
|
+
height: 'auto',
|
|
5326
|
+
minHeight: '20px',
|
|
5327
|
+
padding: '10px',
|
|
5328
|
+
});
|
|
5329
|
+
}
|
|
5330
|
+
}
|
|
5331
|
+
|
|
5332
|
+
class BuilderListComponentConfig extends ComponentConfig {
|
|
5333
|
+
constructor() {
|
|
5334
|
+
super('List', 'app-builder-container', 'ph-thin ph-list', 'Layout');
|
|
5335
|
+
this.traits = [
|
|
5336
|
+
new TraitConfig('htmlTag', 'Tag', TraitInputType.Select, ['ul', 'ol'], 'ul'),
|
|
5337
|
+
new TraitConfig('start', 'Start At', TraitInputType.Number, undefined, 1, false, { trait: 'htmlTag', values: 'ol' }),
|
|
5338
|
+
new TraitConfig('reversed', 'Reversed', TraitInputType.Checkbox, undefined, false, false, { trait: 'htmlTag', values: 'ol' }),
|
|
5339
|
+
];
|
|
5340
|
+
this.styleTraits = [
|
|
5341
|
+
new ListGroupStyleConfig(),
|
|
5342
|
+
new PositionGroupStyleConfig(),
|
|
5343
|
+
new LayoutGroupStyleConfig(),
|
|
5344
|
+
new SizeGroupStyleConfig(),
|
|
5345
|
+
new SpacingGroupStyleConfig(),
|
|
5346
|
+
new BorderGroupStyleConfig(),
|
|
5347
|
+
new BackgroundGroupStyleConfig(),
|
|
5348
|
+
new TypographyGroupStyleConfig(),
|
|
5349
|
+
new EffectsGroupStyleConfig(),
|
|
5350
|
+
];
|
|
5351
|
+
this.children = [
|
|
5352
|
+
this.makeListItem(),
|
|
5353
|
+
this.makeListItem(),
|
|
5354
|
+
this.makeListItem(),
|
|
5355
|
+
];
|
|
5356
|
+
this.applyStyleDefaults({
|
|
5357
|
+
width: '100%',
|
|
5358
|
+
display: 'block',
|
|
5359
|
+
backgroundColor: 'transparent',
|
|
5360
|
+
padding: '0px 0px 0px 24px',
|
|
5361
|
+
});
|
|
5362
|
+
}
|
|
5363
|
+
makeListItem() {
|
|
5364
|
+
const item = new BuilderListItemComponentConfig();
|
|
5365
|
+
const textCfg = new TextBlockComponentConfig();
|
|
5366
|
+
const contentTrait = textCfg.traits.find(t => t.name === 'content');
|
|
5367
|
+
if (contentTrait)
|
|
5368
|
+
contentTrait.default = 'List item';
|
|
5369
|
+
item.children = [textCfg];
|
|
5370
|
+
return item;
|
|
5371
|
+
}
|
|
5372
|
+
}
|
|
5373
|
+
|
|
5230
5374
|
class RepeaterComponentConfig extends ComponentConfig {
|
|
5231
5375
|
constructor() {
|
|
5232
5376
|
super('Repeater', 'app-builder-repeater', 'ph-thin ph-repeat', 'Data');
|
|
@@ -5282,28 +5426,6 @@ class BuilderSpacerComponentConfig extends ComponentConfig {
|
|
|
5282
5426
|
}
|
|
5283
5427
|
}
|
|
5284
5428
|
|
|
5285
|
-
class TextBlockComponentConfig extends ComponentConfig {
|
|
5286
|
-
constructor() {
|
|
5287
|
-
super('Text', 'app-text-block', 'ph-thin ph-text-aa', 'Basic');
|
|
5288
|
-
this.inputs = {
|
|
5289
|
-
content: 'text',
|
|
5290
|
-
tag: 'select',
|
|
5291
|
-
};
|
|
5292
|
-
this.traits = [
|
|
5293
|
-
new TraitConfig('content', 'Content', TraitInputType.Text, undefined, 'Enter text here'),
|
|
5294
|
-
new TraitConfig('tag', 'Tag', TraitInputType.Select, ['p', 'span'], 'p'),
|
|
5295
|
-
];
|
|
5296
|
-
this.styleTraits = buildFullStyleTraits();
|
|
5297
|
-
this.applyStyleDefaults({
|
|
5298
|
-
display: 'block',
|
|
5299
|
-
width: '100%',
|
|
5300
|
-
height: 'auto',
|
|
5301
|
-
minHeight: '20px',
|
|
5302
|
-
padding: '10px',
|
|
5303
|
-
});
|
|
5304
|
-
}
|
|
5305
|
-
}
|
|
5306
|
-
|
|
5307
5429
|
/*
|
|
5308
5430
|
* Public API Surface of @vectoriox/iox-builder
|
|
5309
5431
|
*/
|
|
@@ -5312,5 +5434,5 @@ class TextBlockComponentConfig extends ComponentConfig {
|
|
|
5312
5434
|
* Generated bundle index. Do not edit.
|
|
5313
5435
|
*/
|
|
5314
5436
|
|
|
5315
|
-
export { ACTION_TYPE_OPTIONS, BuilderButtonBlockComponent, BuilderButtonComponentConfig, BuilderComponent, BuilderContainerComponent, BuilderContainerComponentConfig, BuilderDividerComponentConfig, BuilderHeadingComponentConfig, BuilderIconComponentConfig, BuilderImageComponentConfig, BuilderLinkComponentConfig, BuilderLinkedContainerComponent, BuilderLinkedContainerConfig, BuilderMode, BuilderRepeaterComponent, BuilderSpacerComponentConfig, ButtonBlockComponentConfig, CardComponentConfig, ComponentConfig, ComponentRegistryService, DEVICE_OPTIONS, DataSourceRegistryService, DeviceMode, DragEngineService, EASING_OPTIONS$1 as EASING_OPTIONS, GroupStyleConfig, INTERACTION_STATES, INVERSE_ACTION, IOX_CONTENT_SERVICE, IOX_FONT_MANAGER, InteractionEngineService, InteractionsPanelComponent, IoxBuilderModule, IoxDraggableDirective, IoxDropzoneDirective, LayerTreeComponent, NodeAction, OverlayComponent, OverlayService, PanelChildComponent, PanelComponent, PanelEventService, PanelEventTypes, PanelTypes, PresetRegistryService, ROUTE_ANIMATION_OPTIONS, RenderDirective, RepeaterComponentConfig, SCREEN_WIDTH_OPTIONS, STRUCTURAL_STATES, SUPPORTED_STATES, SectionComponent, SectionComponentConfig, StyleCategory, StyleRegistryService, TraitConfig as StyleTraitConfig, TRIGGER_OPTIONS, TextBlockComponentConfig, ToolbarAction, ToolbarComponent, TraitConfig, TraitInputType, UNITS_ALL, UNITS_DEG, UNITS_FIXED, UNITS_NO_VW, VIRTUAL_TRAIT_KEYS, ViewportService, ZOOM_OPTIONS, buildFullStyleTraits, buildPresetStyleTraits, composeVirtualTraits, defaultPageSettings, generateNodeId, resolveTraitControllerType, resolveTraitOptions };
|
|
5437
|
+
export { ACTION_TYPE_OPTIONS, BuilderButtonBlockComponent, BuilderButtonComponentConfig, BuilderComponent, BuilderContainerComponent, BuilderContainerComponentConfig, BuilderDividerComponentConfig, BuilderHeadingComponentConfig, BuilderIconComponentConfig, BuilderImageComponentConfig, BuilderLinkComponentConfig, BuilderLinkedContainerComponent, BuilderLinkedContainerConfig, BuilderListComponentConfig, BuilderListItemComponentConfig, BuilderMode, BuilderRepeaterComponent, BuilderSpacerComponentConfig, ButtonBlockComponentConfig, CardComponentConfig, ComponentConfig, ComponentRegistryService, DEVICE_OPTIONS, DataSourceRegistryService, DeviceMode, DragEngineService, EASING_OPTIONS$1 as EASING_OPTIONS, GroupStyleConfig, INTERACTION_STATES, INVERSE_ACTION, IOX_CONTENT_SERVICE, IOX_FONT_MANAGER, InteractionEngineService, InteractionsPanelComponent, IoxBuilderModule, IoxDraggableDirective, IoxDropzoneDirective, LayerTreeComponent, ListGroupStyleConfig, NodeAction, OverlayComponent, OverlayService, PanelChildComponent, PanelComponent, PanelEventService, PanelEventTypes, PanelTypes, PresetRegistryService, ROUTE_ANIMATION_OPTIONS, RenderDirective, RepeaterComponentConfig, SCREEN_WIDTH_OPTIONS, STRUCTURAL_STATES, SUPPORTED_STATES, SectionComponent, SectionComponentConfig, StyleCategory, StyleRegistryService, TraitConfig as StyleTraitConfig, TRIGGER_OPTIONS, TextBlockComponentConfig, ToolbarAction, ToolbarComponent, TraitConfig, TraitInputType, UNITS_ALL, UNITS_DEG, UNITS_FIXED, UNITS_NO_VW, VIRTUAL_TRAIT_KEYS, ViewportService, ZOOM_OPTIONS, buildFullStyleTraits, buildPresetStyleTraits, composeVirtualTraits, defaultPageSettings, generateNodeId, resolveTraitControllerType, resolveTraitOptions };
|
|
5316
5438
|
//# sourceMappingURL=vectoriox-iox-builder.mjs.map
|