@acorex/platform 20.2.4-next.7 → 20.2.4-next.8
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/core/index.d.ts +1 -8
- package/fesm2022/acorex-platform-layout-builder.mjs +1097 -630
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +79 -17
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +16 -16
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-button-widget-designer.component-lNF95FJv.mjs → acorex-platform-widgets-button-widget-designer.component-BJtkWusr.mjs} +3 -3
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-BJtkWusr.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-DRsLkulH.mjs → acorex-platform-widgets-page-widget-designer.component-Cw9WcZze.mjs} +74 -64
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-Cw9WcZze.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-text-block-widget-designer.component-CCMQtH3e.mjs → acorex-platform-widgets-text-block-widget-designer.component-DaR4Nkv4.mjs} +8 -12
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-DaR4Nkv4.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +3405 -3540
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/index.d.ts +346 -178
- package/layout/designer/index.d.ts +15 -3
- package/package.json +16 -16
- package/widgets/index.d.ts +152 -220
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-lNF95FJv.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DRsLkulH.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-CCMQtH3e.mjs.map +0 -1
package/widgets/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i1 from '@acorex/platform/layout/builder';
|
|
2
|
-
import { AXPWidgetPropertyGroup, AXPWidgetProperty,
|
|
2
|
+
import { AXPWidgetPropertyGroup, AXPWidgetProperty, AXPLayoutBaseWidgetComponent, AXPLayoutElementAPI, AXPWidgetConfig, AXPValueWidgetComponent, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXPWidgetNode, AXPBlockBaseLayoutWidgetComponent, AXPFlexBaseLayoutWidgetComponent, AXPFlexItemBaseLayoutWidgetComponent, AXPGridBoxString, AXPGridBreakpointValues, AXPBreakpoints, AXPBorderBoxString, AXPPropertyEditorSideValues, AXPPropertyEditorCornerValues, AXPBorderBox, AXPFlexBoxString, AXPGridItemBoxString, AXPSpacingBox, AXPSpacingBoxString } from '@acorex/platform/layout/builder';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
4
|
import { EventEmitter, Signal, InjectionToken, OnInit, WritableSignal, OnDestroy, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
5
5
|
import { AXStyleColorType, AXStyleLookType, AXClickEvent, AXDataSource, AXValueChangedEvent, AXDataSourceFilterOption, AXDirection, AXButtonClickEvent } from '@acorex/cdk/common';
|
|
6
6
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
7
|
-
import { AXPExpression, AXPValidationRule, AXPStringValidationRules, AXPFileListItem, AXPExpressionEvaluatorService
|
|
7
|
+
import { AXPExpression, AXPValidationRule, AXPStringValidationRules, AXPFileListItem, AXPExpressionEvaluatorService } from '@acorex/platform/core';
|
|
8
8
|
import { AXPClipBoardService, AXPLanguage } from '@acorex/platform/common';
|
|
9
9
|
import { AXValidationService } from '@acorex/core/validation';
|
|
10
10
|
import { AXTranslationService } from '@acorex/core/translation';
|
|
@@ -81,17 +81,15 @@ declare const AXP_LAYOUT_GRID_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
|
81
81
|
declare const AXP_LAYOUT_FLEX_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
82
82
|
declare const AXP_BOX_MODEL_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
83
83
|
declare const AXP_LAYOUT_GAP_PROPERTY: AXPWidgetProperty;
|
|
84
|
-
declare const AXP_LAYOUT_COL_SPAN_PROPERTY: AXPWidgetProperty;
|
|
85
|
-
declare const AXP_LAYOUT_COL_START_PROPERTY: AXPWidgetProperty;
|
|
86
|
-
declare const AXP_LAYOUT_COL_END_PROPERTY: AXPWidgetProperty;
|
|
87
84
|
declare const AXP_LAYOUT_COLUMNS_PROPERTY: AXPWidgetProperty;
|
|
88
85
|
declare const AXP_LAYOUT_ROWS_PROPERTY: AXPWidgetProperty;
|
|
89
86
|
declare const AXP_LAYOUT_GRID_PROPERTIES: AXPWidgetProperty[];
|
|
90
87
|
declare const AXP_LAYOUT_GRID_ROW_PROPERTIES: AXPWidgetProperty[];
|
|
91
|
-
declare const
|
|
88
|
+
declare const AXP_LAYOUT_GRID_ITEM_PROPERTY: AXPWidgetProperty;
|
|
92
89
|
declare const AXP_LAYOUT_SPACING_PROPERTY: AXPWidgetProperty;
|
|
93
90
|
declare const AXP_LAYOUT_BORDER_PROPERTY: AXPWidgetProperty;
|
|
94
91
|
declare const AXP_LAYOUT_FLEX_PROPERTY: AXPWidgetProperty;
|
|
92
|
+
declare const AXP_LAYOUT_FLEX_ITEM_PROPERTY: AXPWidgetProperty;
|
|
95
93
|
declare const AXP_LAYOUT_GRID_PROPERTY: AXPWidgetProperty;
|
|
96
94
|
declare const AXP_LAYOUT_ADVANCED_GRID_PROPERTY: AXPWidgetProperty;
|
|
97
95
|
declare const AXP_LAYOUT_SHOW_HEADER_PROPERTY: AXPWidgetProperty;
|
|
@@ -110,7 +108,7 @@ declare const AXP_BETWEEN_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
|
110
108
|
declare const AXP_EQUAL_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
111
109
|
declare const AXP_CALLBACK_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
112
110
|
|
|
113
|
-
declare class AXPButtonWidgetViewComponent extends
|
|
111
|
+
declare class AXPButtonWidgetViewComponent extends AXPLayoutBaseWidgetComponent {
|
|
114
112
|
protected disabled: _angular_core.Signal<boolean>;
|
|
115
113
|
protected color: _angular_core.Signal<AXStyleColorType>;
|
|
116
114
|
protected look: _angular_core.Signal<AXStyleLookType>;
|
|
@@ -1127,6 +1125,12 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
1127
1125
|
}
|
|
1128
1126
|
}
|
|
1129
1127
|
|
|
1128
|
+
declare const AXPExtraPropertiesWidget: AXPWidgetConfig;
|
|
1129
|
+
|
|
1130
|
+
declare const AXPExtraPropertiesSchemaWidget: AXPWidgetConfig;
|
|
1131
|
+
|
|
1132
|
+
declare const AXPExtraPropertiesValuesWidget: AXPWidgetConfig;
|
|
1133
|
+
|
|
1130
1134
|
declare class AXPFileUploaderWidgetColumnComponent extends AXPColumnWidgetComponent<string[]> {
|
|
1131
1135
|
protected count: _angular_core.Signal<number>;
|
|
1132
1136
|
private fileService;
|
|
@@ -1506,13 +1510,7 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
1506
1510
|
}
|
|
1507
1511
|
}
|
|
1508
1512
|
|
|
1509
|
-
declare
|
|
1510
|
-
|
|
1511
|
-
declare const AXPExtraPropertiesSchemaWidget: AXPWidgetConfig;
|
|
1512
|
-
|
|
1513
|
-
declare const AXPExtraPropertiesValuesWidget: AXPWidgetConfig;
|
|
1514
|
-
|
|
1515
|
-
declare class AXPAdvancedGridWidgetDesignerComponent extends AXPLayoutWidgetComponent {
|
|
1513
|
+
declare class AXPAdvancedGridWidgetDesignerComponent extends AXPLayoutBaseWidgetComponent {
|
|
1516
1514
|
#private;
|
|
1517
1515
|
private grid;
|
|
1518
1516
|
private el;
|
|
@@ -1564,7 +1562,7 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
1564
1562
|
interface AXPAdvancedGridWidgetOptions {
|
|
1565
1563
|
}
|
|
1566
1564
|
|
|
1567
|
-
declare class AXPAdvancedGridItemWidgetDesignerComponent extends
|
|
1565
|
+
declare class AXPAdvancedGridItemWidgetDesignerComponent extends AXPLayoutBaseWidgetComponent {
|
|
1568
1566
|
protected gridOptions: AXGridLayoutNode;
|
|
1569
1567
|
protected gridItemOptions: AXGridLayoutNode;
|
|
1570
1568
|
af: _angular_core.AfterRenderRef;
|
|
@@ -1573,12 +1571,12 @@ declare class AXPAdvancedGridItemWidgetDesignerComponent extends AXPLayoutWidget
|
|
|
1573
1571
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPAdvancedGridItemWidgetDesignerComponent, "axp-advanced-grid-layout-item-widget", never, {}, {}, never, never, true, never>;
|
|
1574
1572
|
}
|
|
1575
1573
|
|
|
1576
|
-
declare class AXPAdvancedGridItemWidgetPrintComponent extends
|
|
1574
|
+
declare class AXPAdvancedGridItemWidgetPrintComponent extends AXPLayoutBaseWidgetComponent {
|
|
1577
1575
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPAdvancedGridItemWidgetPrintComponent, never>;
|
|
1578
1576
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPAdvancedGridItemWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1579
1577
|
}
|
|
1580
1578
|
|
|
1581
|
-
declare class AXPAdvancedGridItemWidgetViewComponent extends
|
|
1579
|
+
declare class AXPAdvancedGridItemWidgetViewComponent extends AXPLayoutBaseWidgetComponent {
|
|
1582
1580
|
protected colSpan: _angular_core.Signal<number>;
|
|
1583
1581
|
protected colStart: _angular_core.Signal<number>;
|
|
1584
1582
|
protected colEnd: _angular_core.Signal<number>;
|
|
@@ -1601,22 +1599,16 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
1601
1599
|
interface AXPAdvancedGridItemWidgetOptions {
|
|
1602
1600
|
}
|
|
1603
1601
|
|
|
1604
|
-
declare class AXPBlockWidgetDesignerComponent extends
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
protected direction: _angular_core.Signal<string>;
|
|
1608
|
-
private get __class();
|
|
1609
|
-
private get __style();
|
|
1602
|
+
declare class AXPBlockWidgetDesignerComponent extends AXPBlockBaseLayoutWidgetComponent {
|
|
1603
|
+
get __class(): any;
|
|
1604
|
+
get __style(): any;
|
|
1610
1605
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPBlockWidgetDesignerComponent, never>;
|
|
1611
1606
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPBlockWidgetDesignerComponent, "axp-block-widget", never, {}, {}, never, never, true, never>;
|
|
1612
1607
|
}
|
|
1613
1608
|
|
|
1614
|
-
declare class AXPBlockWidgetViewComponent extends
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
protected direction: _angular_core.Signal<string>;
|
|
1618
|
-
private get __class();
|
|
1619
|
-
private get __style();
|
|
1609
|
+
declare class AXPBlockWidgetViewComponent extends AXPBlockBaseLayoutWidgetComponent {
|
|
1610
|
+
get __class(): any;
|
|
1611
|
+
get __style(): any;
|
|
1620
1612
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPBlockWidgetViewComponent, never>;
|
|
1621
1613
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPBlockWidgetViewComponent, "axp-block-widget", never, {}, {}, never, never, true, never>;
|
|
1622
1614
|
}
|
|
@@ -1626,7 +1618,6 @@ type AXPBlockWidgetConfigType = {
|
|
|
1626
1618
|
type: 'container';
|
|
1627
1619
|
};
|
|
1628
1620
|
interface AXPBlockWidgetOptions {
|
|
1629
|
-
flex?: AXPLayoutFlexStyles;
|
|
1630
1621
|
backgroundColor?: string;
|
|
1631
1622
|
cssClass?: string;
|
|
1632
1623
|
canInsert?: boolean;
|
|
@@ -1643,20 +1634,18 @@ interface AXPBlockWidgetOptions {
|
|
|
1643
1634
|
};
|
|
1644
1635
|
}
|
|
1645
1636
|
|
|
1646
|
-
declare class AXPFlexWidgetDesignerComponent extends
|
|
1647
|
-
|
|
1648
|
-
protected
|
|
1649
|
-
|
|
1650
|
-
|
|
1637
|
+
declare class AXPFlexWidgetDesignerComponent extends AXPFlexBaseLayoutWidgetComponent {
|
|
1638
|
+
private designerService;
|
|
1639
|
+
protected handleDrawerSelect(count: number): void;
|
|
1640
|
+
get __class(): any;
|
|
1641
|
+
get __style(): any;
|
|
1651
1642
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFlexWidgetDesignerComponent, never>;
|
|
1652
1643
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFlexWidgetDesignerComponent, "axp-flex-widget", never, {}, {}, never, never, true, never>;
|
|
1653
1644
|
}
|
|
1654
1645
|
|
|
1655
|
-
declare class AXPFlexWidgetViewComponent extends
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
private get __class();
|
|
1659
|
-
private get __style();
|
|
1646
|
+
declare class AXPFlexWidgetViewComponent extends AXPFlexBaseLayoutWidgetComponent {
|
|
1647
|
+
get __class(): any;
|
|
1648
|
+
get __style(): any;
|
|
1660
1649
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFlexWidgetViewComponent, never>;
|
|
1661
1650
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFlexWidgetViewComponent, "axp-flex-widget", never, {}, {}, never, never, true, never>;
|
|
1662
1651
|
}
|
|
@@ -1671,7 +1660,6 @@ type AXPFlexWidgetConfigType = {
|
|
|
1671
1660
|
type: 'container';
|
|
1672
1661
|
};
|
|
1673
1662
|
interface AXPFlexWidgetOptions {
|
|
1674
|
-
flex?: AXPLayoutFlexStyles;
|
|
1675
1663
|
backgroundColor?: string;
|
|
1676
1664
|
cssClass?: string;
|
|
1677
1665
|
canInsert?: boolean;
|
|
@@ -1688,7 +1676,48 @@ interface AXPFlexWidgetOptions {
|
|
|
1688
1676
|
};
|
|
1689
1677
|
}
|
|
1690
1678
|
|
|
1691
|
-
declare class
|
|
1679
|
+
declare class AXPFlexItemWidgetDesignerComponent extends AXPFlexItemBaseLayoutWidgetComponent {
|
|
1680
|
+
private get __class();
|
|
1681
|
+
private get __style();
|
|
1682
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFlexItemWidgetDesignerComponent, never>;
|
|
1683
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFlexItemWidgetDesignerComponent, "axp-flex-item-widget-designer", never, {}, {}, never, never, true, never>;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
declare class AXPFlexItemWidgetViewComponent extends AXPFlexItemBaseLayoutWidgetComponent {
|
|
1687
|
+
private get __class();
|
|
1688
|
+
private get __style();
|
|
1689
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFlexItemWidgetViewComponent, never>;
|
|
1690
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFlexItemWidgetViewComponent, "axp-flex-item-widget", never, {}, {}, never, never, true, never>;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
declare const AXPFlexItemWidget: AXPWidgetConfig;
|
|
1694
|
+
declare module '@acorex/platform/layout/builder' {
|
|
1695
|
+
interface AXPWidgetTypesMap {
|
|
1696
|
+
flexItem: 'flex-item-layout';
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
interface AXPFlexItemWidgetOptions {
|
|
1700
|
+
direction?: string;
|
|
1701
|
+
spacing?: {
|
|
1702
|
+
padding?: string;
|
|
1703
|
+
margin?: string;
|
|
1704
|
+
};
|
|
1705
|
+
border?: {
|
|
1706
|
+
radius?: string;
|
|
1707
|
+
width?: string;
|
|
1708
|
+
color?: string;
|
|
1709
|
+
style?: string;
|
|
1710
|
+
};
|
|
1711
|
+
flexItem?: {
|
|
1712
|
+
order?: number;
|
|
1713
|
+
grow?: number;
|
|
1714
|
+
shrink?: number;
|
|
1715
|
+
basis?: string;
|
|
1716
|
+
alignSelf?: 'auto' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
|
|
1717
|
+
};
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
declare class AXPPageWidgetViewComponent extends AXPLayoutBaseWidgetComponent {
|
|
1692
1721
|
protected backgroundColor: _angular_core.Signal<string>;
|
|
1693
1722
|
protected direction: _angular_core.Signal<string>;
|
|
1694
1723
|
protected theme: _angular_core.Signal<string>;
|
|
@@ -1759,63 +1788,13 @@ interface AXPRepeaterWidgetOptions {
|
|
|
1759
1788
|
hasControls?: boolean;
|
|
1760
1789
|
}
|
|
1761
1790
|
|
|
1762
|
-
type AXPPropertyEditorSideValues = 'top' | 'left' | 'bottom' | 'right';
|
|
1763
|
-
type AXPPropertyEditorCornerValues = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
1764
|
-
type AXPPropertyEditorSideGeneric<T extends string, U extends string | number = string> = Record<T, U>;
|
|
1765
|
-
type AXPPropertySides<T extends string | number = string> = AXPPropertyEditorSideGeneric<AXPPropertyEditorSideValues, T>;
|
|
1766
|
-
type AXPPropertyCorners<T extends string | number = string> = AXPPropertyEditorSideGeneric<AXPPropertyEditorCornerValues, T>;
|
|
1767
|
-
interface AXPSpacingBox<T extends string | number = string> {
|
|
1768
|
-
margin: AXPPropertySides<T>;
|
|
1769
|
-
padding: AXPPropertySides<T>;
|
|
1770
|
-
}
|
|
1771
|
-
interface AXPBorderBox<T extends string | number = string> {
|
|
1772
|
-
width: AXPPropertySides<T>;
|
|
1773
|
-
radius: AXPPropertyCorners<T>;
|
|
1774
|
-
color: AXPPropertySides<T>;
|
|
1775
|
-
style: AXPPropertySides<T>;
|
|
1776
|
-
}
|
|
1777
|
-
interface AXPSpacingBoxString {
|
|
1778
|
-
margin: string;
|
|
1779
|
-
padding: string;
|
|
1780
|
-
}
|
|
1781
|
-
interface AXPBorderBoxString {
|
|
1782
|
-
width: string;
|
|
1783
|
-
radius: string;
|
|
1784
|
-
color: string;
|
|
1785
|
-
style: string;
|
|
1786
|
-
}
|
|
1787
|
-
interface AXPSpacingBoxDefaultValues {
|
|
1788
|
-
label: string;
|
|
1789
|
-
value: number;
|
|
1790
|
-
colspan?: number;
|
|
1791
|
-
rowspan?: number;
|
|
1792
|
-
}
|
|
1793
|
-
declare const AXP_default_Border_Box_Value: AXPBorderBox<string | number>;
|
|
1794
|
-
declare const AXP_default_Border_Box_Units: AXPBorderBox<string>;
|
|
1795
|
-
declare const AXP_default_Spacing_Box_Value: AXPSpacingBox<number>;
|
|
1796
|
-
declare const AXP_default_Spacing_Box_Units: AXPSpacingBox<string>;
|
|
1797
|
-
type AXPBreakpoints = 'default' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
1798
|
-
type AXPBreakpointValues<T> = {
|
|
1799
|
-
[key in AXPBreakpoints]?: T;
|
|
1800
|
-
};
|
|
1801
|
-
declare function findNonEmptyBreakpoints<T>(values: AXPBreakpointValues<T>): AXPBreakpoints[];
|
|
1802
|
-
|
|
1803
|
-
type AXPGridBreakpointValues = AXPBreakpointValues<AXPGridBoxValues>;
|
|
1804
|
-
interface AXPGridBoxValues {
|
|
1805
|
-
gridTemplateColumns: string;
|
|
1806
|
-
gridTemplateRows: string;
|
|
1807
|
-
gap: string;
|
|
1808
|
-
justifyItems: 'start' | 'end' | 'center' | 'stretch';
|
|
1809
|
-
alignItems: 'start' | 'end' | 'center' | 'stretch';
|
|
1810
|
-
gridAutoFlow: 'row' | 'col';
|
|
1811
|
-
}
|
|
1812
1791
|
interface AXPGridBoxOption {
|
|
1813
1792
|
value: string;
|
|
1814
1793
|
label: string;
|
|
1815
1794
|
}
|
|
1816
1795
|
interface AXPGridBoxAlignmentOption extends AXPGridBoxOption {
|
|
1817
|
-
justifyItems:
|
|
1818
|
-
alignItems:
|
|
1796
|
+
justifyItems: AXPGridBoxString['justifyItems'];
|
|
1797
|
+
alignItems: AXPGridBoxString['alignItems'];
|
|
1819
1798
|
}
|
|
1820
1799
|
declare const AXP_Grid_Box_Alignments: AXPGridBoxAlignmentOption[];
|
|
1821
1800
|
declare const AXP_Grid_Box_Align_Items_Options: AXPGridBoxOption[];
|
|
@@ -1832,20 +1811,20 @@ declare class AXPGridOptionsWidgetEditComponent extends AXPValueWidgetComponent<
|
|
|
1832
1811
|
id: AXPBreakpoints;
|
|
1833
1812
|
text: string;
|
|
1834
1813
|
}[];
|
|
1835
|
-
protected
|
|
1836
|
-
protected
|
|
1837
|
-
protected gridDirection: _angular_core.WritableSignal<"
|
|
1814
|
+
protected columns: _angular_core.WritableSignal<number>;
|
|
1815
|
+
protected rows: _angular_core.WritableSignal<number>;
|
|
1816
|
+
protected gridDirection: _angular_core.WritableSignal<"column" | "row" | "dense" | "row dense" | "column dense" | undefined>;
|
|
1838
1817
|
protected gapUnit: _angular_core.WritableSignal<string>;
|
|
1839
1818
|
protected gap: _angular_core.WritableSignal<Record<"x" | "y", number>>;
|
|
1840
1819
|
protected gapMode: _angular_core.WritableSignal<"multiple" | "single">;
|
|
1841
1820
|
protected lastGap: _angular_core.WritableSignal<number>;
|
|
1842
1821
|
protected selectedJustify: _angular_core.WritableSignal<AXPGridBoxOption>;
|
|
1843
1822
|
protected selectedAlign: _angular_core.WritableSignal<AXPGridBoxOption>;
|
|
1844
|
-
protected hoveredAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null>;
|
|
1845
|
-
protected hoveredJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null>;
|
|
1846
|
-
protected clickedAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch">;
|
|
1847
|
-
protected clickedJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch">;
|
|
1848
|
-
protected setGridDirection(value:
|
|
1823
|
+
protected hoveredAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null | undefined>;
|
|
1824
|
+
protected hoveredJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null | undefined>;
|
|
1825
|
+
protected clickedAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | undefined>;
|
|
1826
|
+
protected clickedJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | undefined>;
|
|
1827
|
+
protected setGridDirection(value: AXPGridBoxString['autoFlow']): void;
|
|
1849
1828
|
protected setRowOrColumn(value: number, type: 'column' | 'row'): void;
|
|
1850
1829
|
protected toggleGapMode(): void;
|
|
1851
1830
|
protected setGap(size: number | [number, number], side: 'both' | 'x' | 'y'): void;
|
|
@@ -1887,10 +1866,10 @@ declare class AXPAdvancedGridOptionsWidgetEditComponent extends AXPValueWidgetCo
|
|
|
1887
1866
|
private rendered;
|
|
1888
1867
|
protected selectedJustify: _angular_core.WritableSignal<AXPGridBoxOption>;
|
|
1889
1868
|
protected selectedAlign: _angular_core.WritableSignal<AXPGridBoxOption>;
|
|
1890
|
-
protected hoveredAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null>;
|
|
1891
|
-
protected hoveredJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null>;
|
|
1892
|
-
protected clickedAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch">;
|
|
1893
|
-
protected clickedJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch">;
|
|
1869
|
+
protected hoveredAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null | undefined>;
|
|
1870
|
+
protected hoveredJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | null | undefined>;
|
|
1871
|
+
protected clickedAlign: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | undefined>;
|
|
1872
|
+
protected clickedJustify: _angular_core.WritableSignal<"start" | "end" | "center" | "stretch" | undefined>;
|
|
1894
1873
|
protected columns: _angular_core.WritableSignal<number>;
|
|
1895
1874
|
protected items: _angular_core.WritableSignal<number>;
|
|
1896
1875
|
protected changeValue(event: AXValueChangedEvent<any> | number, type: keyof AXPAdvancedGridBoxValues): void;
|
|
@@ -1964,7 +1943,7 @@ declare class AXPDirectionWidgetEditComponent extends AXPValueWidgetComponent<st
|
|
|
1964
1943
|
icon: string;
|
|
1965
1944
|
}[];
|
|
1966
1945
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDirectionWidgetEditComponent, never>;
|
|
1967
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDirectionWidgetEditComponent, "
|
|
1946
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDirectionWidgetEditComponent, "axp-direction-widget-editor", never, {}, {}, never, never, true, never>;
|
|
1968
1947
|
}
|
|
1969
1948
|
|
|
1970
1949
|
declare const AXPDirectionWidget: AXPWidgetConfig;
|
|
@@ -1974,40 +1953,66 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
1974
1953
|
}
|
|
1975
1954
|
}
|
|
1976
1955
|
|
|
1956
|
+
interface AXPFlexItemStyles {
|
|
1957
|
+
order?: number;
|
|
1958
|
+
grow?: number;
|
|
1959
|
+
shrink?: number;
|
|
1960
|
+
basis?: string;
|
|
1961
|
+
alignSelf?: 'auto' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
declare class AXPFlexItemOptionsWidgetEditComponent extends AXPValueWidgetComponent<AXPFlexItemStyles | undefined> {
|
|
1965
|
+
alignOptions: {
|
|
1966
|
+
value: string;
|
|
1967
|
+
label: string;
|
|
1968
|
+
}[];
|
|
1969
|
+
save<K extends keyof AXPFlexItemStyles>(key: K, val: AXPFlexItemStyles[K]): void;
|
|
1970
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFlexItemOptionsWidgetEditComponent, never>;
|
|
1971
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFlexItemOptionsWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
declare const AXPFlexItemOptionsWidget: AXPWidgetConfig;
|
|
1975
|
+
declare module '@acorex/platform/layout/builder' {
|
|
1976
|
+
interface AXPWidgetTypesMap {
|
|
1977
|
+
flexItemOptions: 'flex-item-options';
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1977
1981
|
interface AXPFlexBoxOption {
|
|
1978
1982
|
value: string;
|
|
1979
1983
|
label: string;
|
|
1980
1984
|
}
|
|
1981
1985
|
interface AXPFlexBoxAlignmentOption extends AXPFlexBoxOption {
|
|
1982
|
-
align:
|
|
1983
|
-
justify:
|
|
1986
|
+
align: AXPFlexBoxString['alignItems'];
|
|
1987
|
+
justify: AXPFlexBoxString['justifyContent'];
|
|
1984
1988
|
}
|
|
1985
1989
|
declare const AXP_Flex_Box_Alignments: AXPFlexBoxAlignmentOption[];
|
|
1986
1990
|
declare const AXP_Flex_Box_Justify_Options: AXPFlexBoxOption[];
|
|
1987
1991
|
declare const AXP_Flex_Box_Align_Options: AXPFlexBoxOption[];
|
|
1988
1992
|
|
|
1989
|
-
declare class AXPFlexOptionsWidgetEditComponent extends AXPValueWidgetComponent<
|
|
1993
|
+
declare class AXPFlexOptionsWidgetEditComponent extends AXPValueWidgetComponent<AXPFlexBoxString> {
|
|
1990
1994
|
#private;
|
|
1991
1995
|
private rendered;
|
|
1992
1996
|
protected flexSides: AXPFlexBoxAlignmentOption[];
|
|
1993
|
-
protected flexDirection: _angular_core.WritableSignal<"
|
|
1994
|
-
protected flexWrap: _angular_core.WritableSignal<"nowrap" | "wrap" | "wrap-reverse">;
|
|
1995
|
-
protected flexDirectionIsColumn: _angular_core.Signal<boolean>;
|
|
1996
|
-
protected flexDirectionIsReverse: _angular_core.Signal<boolean>;
|
|
1997
|
-
protected flexDirectionWithoutReverse: _angular_core.Signal<string>;
|
|
1997
|
+
protected flexDirection: _angular_core.WritableSignal<"column" | "row" | "row-reverse" | "column-reverse" | undefined>;
|
|
1998
|
+
protected flexWrap: _angular_core.WritableSignal<"nowrap" | "wrap" | "wrap-reverse" | undefined>;
|
|
1999
|
+
protected flexDirectionIsColumn: _angular_core.Signal<boolean | undefined>;
|
|
2000
|
+
protected flexDirectionIsReverse: _angular_core.Signal<boolean | undefined>;
|
|
2001
|
+
protected flexDirectionWithoutReverse: _angular_core.Signal<string | undefined>;
|
|
1998
2002
|
protected gapMode: _angular_core.WritableSignal<"single" | "both">;
|
|
1999
2003
|
protected gapUnit: _angular_core.WritableSignal<string>;
|
|
2000
2004
|
protected gap: _angular_core.WritableSignal<Record<"x" | "y" | "both", number>>;
|
|
2001
2005
|
protected lastGap: _angular_core.WritableSignal<number>;
|
|
2002
2006
|
protected selectedJustify: _angular_core.WritableSignal<AXPFlexBoxOption>;
|
|
2003
2007
|
protected selectedAlign: _angular_core.WritableSignal<AXPFlexBoxOption>;
|
|
2004
|
-
protected hoveredAlign: _angular_core.WritableSignal<"center" | "stretch" | "flex-start" | "flex-end" | "baseline" | null>;
|
|
2005
|
-
protected hoveredJustify: _angular_core.WritableSignal<"center" | "flex-start" | "flex-end" | "space-between" | "space-around" | null>;
|
|
2006
|
-
protected clickedAlign: _angular_core.WritableSignal<"center" | "stretch" | "flex-start" | "flex-end" | "baseline">;
|
|
2007
|
-
protected clickedJustify: _angular_core.WritableSignal<"center" | "flex-start" | "flex-end" | "space-between" | "space-around">;
|
|
2008
|
-
protected
|
|
2008
|
+
protected hoveredAlign: _angular_core.WritableSignal<"center" | "stretch" | "flex-start" | "flex-end" | "baseline" | null | undefined>;
|
|
2009
|
+
protected hoveredJustify: _angular_core.WritableSignal<"center" | "flex-start" | "flex-end" | "space-between" | "space-around" | null | undefined>;
|
|
2010
|
+
protected clickedAlign: _angular_core.WritableSignal<"center" | "stretch" | "flex-start" | "flex-end" | "baseline" | undefined>;
|
|
2011
|
+
protected clickedJustify: _angular_core.WritableSignal<"center" | "flex-start" | "flex-end" | "space-between" | "space-around" | undefined>;
|
|
2012
|
+
protected itemsCount: _angular_core.WritableSignal<number>;
|
|
2013
|
+
protected setWrapMode(type: AXPFlexBoxString['flexWrap']): void;
|
|
2009
2014
|
protected setGapMode(): void;
|
|
2010
|
-
protected setFlexDirection(type:
|
|
2015
|
+
protected setFlexDirection(type: AXPFlexBoxString['flexDirection']): void;
|
|
2011
2016
|
protected setGap(size: number, side: 'both' | 'x' | 'y'): void;
|
|
2012
2017
|
protected onClick(data: AXPFlexBoxAlignmentOption): void;
|
|
2013
2018
|
protected onHover(data: AXPFlexBoxAlignmentOption): void;
|
|
@@ -2018,9 +2023,10 @@ declare class AXPFlexOptionsWidgetEditComponent extends AXPValueWidgetComponent<
|
|
|
2018
2023
|
protected alignDataSource: AXDataSource<AXPFlexBoxOption>;
|
|
2019
2024
|
private findAlignNameById;
|
|
2020
2025
|
private findJustifyNameById;
|
|
2021
|
-
protected calculateAlign(value:
|
|
2026
|
+
protected calculateAlign(value: AXPFlexBoxString['alignItems']): AXPFlexBoxString['alignItems'];
|
|
2022
2027
|
private calculateJustify;
|
|
2023
2028
|
private saveValue;
|
|
2029
|
+
protected setItemsCount(count: number): void;
|
|
2024
2030
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFlexOptionsWidgetEditComponent, never>;
|
|
2025
2031
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFlexOptionsWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2026
2032
|
}
|
|
@@ -2032,103 +2038,29 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
2032
2038
|
}
|
|
2033
2039
|
}
|
|
2034
2040
|
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
* @returns Parsed sides object.
|
|
2054
|
-
*/
|
|
2055
|
-
private static parseSides;
|
|
2056
|
-
private static parseSidesWithUnits;
|
|
2057
|
-
/**
|
|
2058
|
-
* Parses corners (top-left, top-right, bottom-left, bottom-right) from a string.
|
|
2059
|
-
* @param input - Input string.
|
|
2060
|
-
* @returns Parsed corners object.
|
|
2061
|
-
*/
|
|
2062
|
-
private static parseCorners;
|
|
2063
|
-
/**
|
|
2064
|
-
* Parses a spacing box from strings for margin and padding.
|
|
2065
|
-
* @param input - Spacing box string input.
|
|
2066
|
-
* @returns Parsed spacing box.
|
|
2067
|
-
*/
|
|
2068
|
-
static parseSpacingBox(input: AXPSpacingBoxString): AXPSpacingBox<number>;
|
|
2069
|
-
/**
|
|
2070
|
-
* Parses a border box from strings for width, radius, color, and style.
|
|
2071
|
-
* @param input - Border box string input.
|
|
2072
|
-
* @returns Parsed border box.
|
|
2073
|
-
*/
|
|
2074
|
-
static parseBorderBox(input: AXPBorderBoxString): AXPBorderBox<number | string>;
|
|
2075
|
-
/**
|
|
2076
|
-
* Reverses a spacing box object into a string representation.
|
|
2077
|
-
* @param input - Spacing box object.
|
|
2078
|
-
* @param units - Units for margin and padding.
|
|
2079
|
-
* @returns String representation of the spacing box.
|
|
2080
|
-
*/
|
|
2081
|
-
static parseSpacingBoxReverse(input: AXPSpacingBox<number>, units: AXPSpacingBox<string>): AXPSpacingBoxString;
|
|
2082
|
-
/**
|
|
2083
|
-
* Reverses a border box object into a string representation.
|
|
2084
|
-
* @param input - Border box object.
|
|
2085
|
-
* @param units - Units for width, radius, color, and style.
|
|
2086
|
-
* @returns String representation of the border box.
|
|
2087
|
-
*/
|
|
2088
|
-
static parseBorderBoxReverse(input: AXPBorderBox<number | string>, units: AXPBorderBox<string>): AXPBorderBoxString;
|
|
2089
|
-
/**
|
|
2090
|
-
* Parses a value with a unit (e.g., "20px") and returns its numeric value and unit.
|
|
2091
|
-
* @param input - Input string or number.
|
|
2092
|
-
* @returns Object with value and unit.
|
|
2093
|
-
*/
|
|
2094
|
-
static getValueWithUnit(input: string | number): {
|
|
2095
|
-
value: number;
|
|
2096
|
-
unit: string;
|
|
2097
|
-
};
|
|
2098
|
-
/**
|
|
2099
|
-
* Reverses a numeric value and unit into a single string.
|
|
2100
|
-
* @param value - Numeric value.
|
|
2101
|
-
* @param unit - Unit string.
|
|
2102
|
-
* @returns Combined string.
|
|
2103
|
-
*/
|
|
2104
|
-
static getValueFromUnit(value: number, unit: string): string;
|
|
2105
|
-
/**
|
|
2106
|
-
* Parses a gap string into x and y values and units.
|
|
2107
|
-
*
|
|
2108
|
-
* @param gapString The gap string to parse (e.g., "10px", "10px 20px").
|
|
2109
|
-
* @returns An object containing the x and y values and units.
|
|
2110
|
-
* @throws Error If the gap string is invalid.
|
|
2111
|
-
*/
|
|
2112
|
-
static parseGap(gap: string): {
|
|
2113
|
-
values: Record<'x' | 'y', number>;
|
|
2114
|
-
unit: string;
|
|
2115
|
-
};
|
|
2116
|
-
/**
|
|
2117
|
-
* Extracts the repetition count from a CSS grid template string of the format "repeat(N, 1fr)".
|
|
2118
|
-
*
|
|
2119
|
-
* @param gridTemplate - The CSS grid template string, e.g., "repeat(5, 1fr)".
|
|
2120
|
-
* @returns The number of repetitions as a number.
|
|
2121
|
-
*/
|
|
2122
|
-
static parseGridTemplate(gridTemplate: string): number;
|
|
2123
|
-
/**
|
|
2124
|
-
* Creates a CSS grid template string of the format "repeat(N, 1fr)"
|
|
2125
|
-
* based on the provided repetition count.
|
|
2126
|
-
*
|
|
2127
|
-
* @param repetitionCount - The number of repetitions.
|
|
2128
|
-
* @returns The CSS grid template string, e.g., "repeat(5, 1fr)".
|
|
2129
|
-
*/
|
|
2130
|
-
static createGridTemplate(repetitionCount: number): string;
|
|
2041
|
+
declare const AXPGridItemOptionsWidget: AXPWidgetConfig;
|
|
2042
|
+
declare module '@acorex/platform/layout/builder' {
|
|
2043
|
+
interface AXPWidgetTypesMap {
|
|
2044
|
+
gridItemOptions: 'grid-item-options';
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
declare class AXPGridItemOptionsWidgetEditComponent extends AXPValueWidgetComponent<AXPGridItemBoxString | undefined> {
|
|
2049
|
+
save<K extends keyof AXPGridItemBoxString>(key: K, val: AXPGridItemBoxString[K]): void;
|
|
2050
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPGridItemOptionsWidgetEditComponent, never>;
|
|
2051
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPGridItemOptionsWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
interface AXPSpacingBoxDefaultValues {
|
|
2055
|
+
label: string;
|
|
2056
|
+
value: number;
|
|
2057
|
+
colspan?: number;
|
|
2058
|
+
rowspan?: number;
|
|
2131
2059
|
}
|
|
2060
|
+
declare const AXP_default_Border_Box_Value: AXPBorderBox<string | number>;
|
|
2061
|
+
declare const AXP_default_Border_Box_Units: AXPBorderBox<string>;
|
|
2062
|
+
declare const AXP_default_Spacing_Box_Value: AXPSpacingBox<number>;
|
|
2063
|
+
declare const AXP_default_Spacing_Box_Units: AXPSpacingBox<string>;
|
|
2132
2064
|
|
|
2133
2065
|
declare class AXPSpacingWidgetEditComponent extends AXPValueWidgetComponent<AXPSpacingBoxString> {
|
|
2134
2066
|
#private;
|
|
@@ -2367,5 +2299,5 @@ declare class AXPWidgetsModule {
|
|
|
2367
2299
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPWidgetsModule>;
|
|
2368
2300
|
}
|
|
2369
2301
|
|
|
2370
|
-
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetPrintComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPListWidget, AXPListWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent,
|
|
2371
|
-
export type { AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridWidgetOptions, AXPBlockWidgetConfigType, AXPBlockWidgetOptions,
|
|
2302
|
+
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetPrintComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPListWidget, AXPListWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTIES, AXP_DATA_SOURCE_PROPERTY, AXP_DATA_SOURCE_TEXT_FIELD, AXP_DATA_SOURCE_VALUE_FIELD, AXP_DATE_FORMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
2303
|
+
export type { AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridWidgetOptions, AXPBlockWidgetConfigType, AXPBlockWidgetOptions, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetOptions, AXPContactWidgetOptions, AXPDateTimeBoxWidgetOptions, AXPEmailBoxWidgetOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexItemStyles, AXPFlexItemWidgetOptions, AXPFlexWidgetConfigType, AXPFlexWidgetOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPImageMarkerWidgetOptions, AXPImageMarkerWidgetPoint, AXPLargeTextWidgetOptions, AXPLinkWidgetOptions, AXPListWidgetColumn, AXPListWidgetOptions, AXPListWidgetRowCommand, AXPNumberBoxWidgetOptions, AXPPageWidgetOptions, AXPPasswordBoxWidgetOptions, AXPPhoneBoxWidgetOptions, AXPRepeaterWidgetOptions, AXPRichTextWidgetOptions, AXPSelectBoxWidgetOptions, AXPSelectionListWidgetOptions, AXPSpacingBoxDefaultValues, AXPTemplateBoxWidgetOptions, AXPTextBoxWidgetOptions, AXPToggleWidgetOptions, StrategyConfig };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"acorex-platform-widgets-button-widget-designer.component-lNF95FJv.mjs","sources":["../tmp-esm2022/widgets/lib/widgets/actions/button/button-widget-designer.component.js"],"sourcesContent":["import { AXBadgeModule } from '@acorex/components/badge';\nimport { AXButtonModule } from '@acorex/components/button';\nimport { AXDecoratorModule } from '@acorex/components/decorators';\nimport { AXLoadingModule } from '@acorex/components/loading';\nimport { AXPLayoutWidgetComponent } from '@acorex/platform/layout/builder';\nimport { ChangeDetectionStrategy, Component, computed, EventEmitter, HostBinding } from '@angular/core';\nimport * as i0 from \"@angular/core\";\nimport * as i1 from \"@acorex/components/button\";\nimport * as i2 from \"@acorex/components/loading\";\nimport * as i3 from \"@acorex/components/decorators\";\nexport class AXPButtonWidgetDesignerComponent extends AXPLayoutWidgetComponent {\n constructor() {\n super(...arguments);\n this.disabled = computed(() => this.options()['disabled'], ...(ngDevMode ? [{ debugName: \"disabled\" }] : []));\n this.color = computed(() => this.options()['color']?.id ?? 'primary', ...(ngDevMode ? [{ debugName: \"color\" }] : []));\n this.look = computed(() => this.options()['look']?.id ?? 'solid', ...(ngDevMode ? [{ debugName: \"look\" }] : []));\n this.text = computed(() => this.options()['text'], ...(ngDevMode ? [{ debugName: \"text\" }] : []));\n this.loading = computed(() => this.options()['loading'], ...(ngDevMode ? [{ debugName: \"loading\" }] : []));\n this.icon = computed(() => this.options()['icon'], ...(ngDevMode ? [{ debugName: \"icon\" }] : []));\n this.onClick = new EventEmitter();\n }\n get __class() {\n const cls = {};\n //\n cls['ax-inline-block'] = true;\n return cls;\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.6\", ngImport: i0, type: AXPButtonWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }\n static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"17.0.0\", version: \"20.1.6\", type: AXPButtonWidgetDesignerComponent, isStandalone: true, selector: \"axp-button-widget\", host: { properties: { \"class\": \"this.__class\" } }, usesInheritance: true, ngImport: i0, template: `\n <ax-button [disabled]=\"disabled()\" [color]=\"color()\" [look]=\"look()\" [text]=\"text()\">\n @if (icon() && text()) {\n <ax-prefix\n ><ax-icon> <i class=\"fa-solid\" [class]=\"icon()\"></i> </ax-icon\n ></ax-prefix>\n } @else if (icon() && !text()) {\n <ax-icon> <i class=\"fa-solid\" [class]=\"icon()\"></i> </ax-icon>\n }\n @if (loading()) {\n <ax-loading> </ax-loading>\n }\n </ax-button>\n `, isInline: true, dependencies: [{ kind: \"ngmodule\", type: AXButtonModule }, { kind: \"component\", type: i1.AXButtonComponent, selector: \"ax-button\", inputs: [\"disabled\", \"size\", \"tabIndex\", \"color\", \"look\", \"text\", \"toggleable\", \"selected\", \"iconOnly\", \"type\", \"loadingText\"], outputs: [\"onBlur\", \"onFocus\", \"onClick\", \"selectedChange\", \"toggleableChange\", \"lookChange\", \"colorChange\", \"disabledChange\", \"loadingTextChange\"] }, { kind: \"ngmodule\", type: AXLoadingModule }, { kind: \"component\", type: i2.AXLoadingComponent, selector: \"ax-loading\", inputs: [\"visible\", \"type\", \"context\"], outputs: [\"visibleChange\"] }, { kind: \"ngmodule\", type: AXDecoratorModule }, { kind: \"component\", type: i3.AXDecoratorIconComponent, selector: \"ax-icon\", inputs: [\"icon\"] }, { kind: \"component\", type: i3.AXDecoratorGenericComponent, selector: \"ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay\" }, { kind: \"ngmodule\", type: AXBadgeModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.6\", ngImport: i0, type: AXPButtonWidgetDesignerComponent, decorators: [{\n type: Component,\n args: [{\n selector: 'axp-button-widget',\n template: `\n <ax-button [disabled]=\"disabled()\" [color]=\"color()\" [look]=\"look()\" [text]=\"text()\">\n @if (icon() && text()) {\n <ax-prefix\n ><ax-icon> <i class=\"fa-solid\" [class]=\"icon()\"></i> </ax-icon\n ></ax-prefix>\n } @else if (icon() && !text()) {\n <ax-icon> <i class=\"fa-solid\" [class]=\"icon()\"></i> </ax-icon>\n }\n @if (loading()) {\n <ax-loading> </ax-loading>\n }\n </ax-button>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [AXButtonModule, AXLoadingModule, AXDecoratorModule, AXBadgeModule],\n }]\n }], propDecorators: { __class: [{\n type: HostBinding,\n args: ['class']\n }] } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2FjdGlvbnMvYnV0dG9uL2J1dHRvbi13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFFM0QsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQzdELE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBRTNFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsUUFBUSxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7O0FBb0J4RyxNQUFNLE9BQU8sZ0NBQWlDLFNBQVEsd0JBQXdCO0lBbkI5RTs7UUFvQlksYUFBUSxHQUFHLFFBQVEsQ0FBVSxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsVUFBVSxDQUFDLG9EQUFDLENBQUM7UUFDL0QsVUFBSyxHQUFHLFFBQVEsQ0FBbUIsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLE9BQU8sQ0FBQyxFQUFFLEVBQUUsSUFBSSxTQUFTLGlEQUFDLENBQUM7UUFDbkYsU0FBSSxHQUFHLFFBQVEsQ0FBa0IsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsSUFBSSxPQUFPLGdEQUFDLENBQUM7UUFDOUUsU0FBSSxHQUFHLFFBQVEsQ0FBcUIsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLE1BQU0sQ0FBQyxnREFBQyxDQUFDO1FBQ2xFLFlBQU8sR0FBRyxRQUFRLENBQVUsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFNBQVMsQ0FBQyxtREFBQyxDQUFDO1FBQzdELFNBQUksR0FBRyxRQUFRLENBQXFCLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLENBQUMsZ0RBQUMsQ0FBQztRQUVyRSxZQUFPLEdBQUcsSUFBSSxZQUFZLEVBQWdCLENBQUM7S0FTbkQ7SUFQQyxJQUNZLE9BQU87UUFDakIsTUFBTSxHQUFHLEdBQVEsRUFBRSxDQUFDO1FBQ3BCLEVBQUU7UUFDRixHQUFHLENBQUMsaUJBQWlCLENBQUMsR0FBRyxJQUFJLENBQUM7UUFDOUIsT0FBTyxHQUFHLENBQUM7SUFDYixDQUFDOzhHQWhCVSxnQ0FBZ0M7a0dBQWhDLGdDQUFnQyx1SkFqQmpDOzs7Ozs7Ozs7Ozs7O0dBYVQsMkRBRVMsY0FBYyw2WEFBRSxlQUFlLDhLQUFFLGlCQUFpQixzVkFBRSxhQUFhOzsyRkFFaEUsZ0NBQWdDO2tCQW5CNUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsbUJBQW1CO29CQUM3QixRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7R0FhVDtvQkFDRCxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsY0FBYyxFQUFFLGVBQWUsRUFBRSxpQkFBaUIsRUFBRSxhQUFhLENBQUM7aUJBQzdFOzhCQVlhLE9BQU87c0JBRGxCLFdBQVc7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQmFkZ2VNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYmFkZ2UnO1xuaW1wb3J0IHsgQVhCdXR0b25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYnV0dG9uJztcbmltcG9ydCB7IEFYQ2xpY2tFdmVudCwgQVhTdHlsZUNvbG9yVHlwZSwgQVhTdHlsZUxvb2tUeXBlIH0gZnJvbSAnQGFjb3JleC9jZGsvY29tbW9uJztcbmltcG9ydCB7IEFYRGVjb3JhdG9yTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2RlY29yYXRvcnMnO1xuaW1wb3J0IHsgQVhMb2FkaW5nTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2xvYWRpbmcnO1xuaW1wb3J0IHsgQVhQTGF5b3V0V2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5cbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGNvbXB1dGVkLCBFdmVudEVtaXR0ZXIsIEhvc3RCaW5kaW5nIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdheHAtYnV0dG9uLXdpZGdldCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGF4LWJ1dHRvbiBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKVwiIFtjb2xvcl09XCJjb2xvcigpXCIgW2xvb2tdPVwibG9vaygpXCIgW3RleHRdPVwidGV4dCgpXCI+XG4gICAgICBAaWYgKGljb24oKSAmJiB0ZXh0KCkpIHtcbiAgICAgICAgPGF4LXByZWZpeFxuICAgICAgICAgID48YXgtaWNvbj4gPGkgY2xhc3M9XCJmYS1zb2xpZFwiIFtjbGFzc109XCJpY29uKClcIj48L2k+IDwvYXgtaWNvblxuICAgICAgICA+PC9heC1wcmVmaXg+XG4gICAgICB9IEBlbHNlIGlmIChpY29uKCkgJiYgIXRleHQoKSkge1xuICAgICAgICA8YXgtaWNvbj4gPGkgY2xhc3M9XCJmYS1zb2xpZFwiIFtjbGFzc109XCJpY29uKClcIj48L2k+IDwvYXgtaWNvbj5cbiAgICAgIH1cbiAgICAgIEBpZiAobG9hZGluZygpKSB7XG4gICAgICAgIDxheC1sb2FkaW5nPiA8L2F4LWxvYWRpbmc+XG4gICAgICB9XG4gICAgPC9heC1idXR0b24+XG4gIGAsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQVhCdXR0b25Nb2R1bGUsIEFYTG9hZGluZ01vZHVsZSwgQVhEZWNvcmF0b3JNb2R1bGUsIEFYQmFkZ2VNb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBCdXR0b25XaWRnZXREZXNpZ25lckNvbXBvbmVudCBleHRlbmRzIEFYUExheW91dFdpZGdldENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCBkaXNhYmxlZCA9IGNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHRoaXMub3B0aW9ucygpWydkaXNhYmxlZCddKTtcbiAgcHJvdGVjdGVkIGNvbG9yID0gY29tcHV0ZWQ8QVhTdHlsZUNvbG9yVHlwZT4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2NvbG9yJ10/LmlkID8/ICdwcmltYXJ5Jyk7XG4gIHByb3RlY3RlZCBsb29rID0gY29tcHV0ZWQ8QVhTdHlsZUxvb2tUeXBlPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnbG9vayddPy5pZCA/PyAnc29saWQnKTtcbiAgcHJvdGVjdGVkIHRleHQgPSBjb21wdXRlZDxzdHJpbmcgfCB1bmRlZmluZWQ+KCgpID0+IHRoaXMub3B0aW9ucygpWyd0ZXh0J10pO1xuICBwcm90ZWN0ZWQgbG9hZGluZyA9IGNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHRoaXMub3B0aW9ucygpWydsb2FkaW5nJ10pO1xuICBwcm90ZWN0ZWQgaWNvbiA9IGNvbXB1dGVkPHN0cmluZyB8IHVuZGVmaW5lZD4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2ljb24nXSk7XG5cbiAgcHVibGljIG9uQ2xpY2sgPSBuZXcgRXZlbnRFbWl0dGVyPEFYQ2xpY2tFdmVudD4oKTtcblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgcHJpdmF0ZSBnZXQgX19jbGFzcygpOiBzdHJpbmcge1xuICAgIGNvbnN0IGNsczogYW55ID0ge307XG4gICAgLy9cbiAgICBjbHNbJ2F4LWlubGluZS1ibG9jayddID0gdHJ1ZTtcbiAgICByZXR1cm4gY2xzO1xuICB9XG59XG4iXX0="],"names":["i3"],"mappings":"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"}
|