@sprucelabs/heartwood-view-controllers 122.1.5 → 122.2.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/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/cardFooter.schema.js +6 -0
- package/build/.spruce/schemas/schemas.types.d.ts +19 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/cardFooter.schema.js +6 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +19 -0
- package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +40 -0
- package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +20 -0
- package/build/esm/schemas/v2021_02_11/cards/cardFooter.builder.d.ts +10 -0
- package/build/esm/schemas/v2021_02_11/cards/cardFooter.builder.js +11 -0
- package/build/esm/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +10 -0
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +20 -0
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +40 -0
- package/build/esm/schemas/v2021_02_11/forms/bigForm.builder.d.ts +10 -0
- package/build/esm/schemas/v2021_02_11/forms/form.builder.d.ts +10 -0
- package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +40 -0
- package/build/schemas/v2021_02_11/cards/card.builder.d.ts +40 -0
- package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +20 -0
- package/build/schemas/v2021_02_11/cards/cardFooter.builder.d.ts +10 -0
- package/build/schemas/v2021_02_11/cards/cardFooter.builder.js +11 -0
- package/build/schemas/v2021_02_11/cards/cardHeader.builder.d.ts +10 -0
- package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +20 -0
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +40 -0
- package/build/schemas/v2021_02_11/forms/bigForm.builder.d.ts +10 -0
- package/build/schemas/v2021_02_11/forms/form.builder.d.ts +10 -0
- package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +40 -0
- package/package.json +1 -1
|
@@ -58,6 +58,12 @@ const cardFooterSchema = {
|
|
|
58
58
|
defaultValue: true,
|
|
59
59
|
options: undefined
|
|
60
60
|
},
|
|
61
|
+
/** Horizontal alignment. */
|
|
62
|
+
'hAlignment': {
|
|
63
|
+
label: 'Horizontal alignment',
|
|
64
|
+
type: 'select',
|
|
65
|
+
options: { choices: [{ "value": "left", "label": "Left" }, { "value": "center", "label": "Center" }, { "value": "right", "label": "Right" }], }
|
|
66
|
+
},
|
|
61
67
|
/** Layout. */
|
|
62
68
|
'layout': {
|
|
63
69
|
label: 'Layout',
|
|
@@ -11908,6 +11908,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
11908
11908
|
'pager'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Pager | undefined | null;
|
|
11909
11909
|
/** Show border. */
|
|
11910
11910
|
'shouldRenderBorder'?: boolean | undefined | null;
|
|
11911
|
+
/** Horizontal alignment. */
|
|
11912
|
+
'hAlignment'?: ("left" | "center" | "right") | undefined | null;
|
|
11911
11913
|
/** Layout. */
|
|
11912
11914
|
'layout'?: ("vertical" | "horizontal") | undefined | null;
|
|
11913
11915
|
}
|
|
@@ -11969,6 +11971,23 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
11969
11971
|
defaultValue: true;
|
|
11970
11972
|
options: undefined;
|
|
11971
11973
|
};
|
|
11974
|
+
/** Horizontal alignment. */
|
|
11975
|
+
'hAlignment': {
|
|
11976
|
+
label: 'Horizontal alignment';
|
|
11977
|
+
type: 'select';
|
|
11978
|
+
options: {
|
|
11979
|
+
choices: [{
|
|
11980
|
+
"value": "left";
|
|
11981
|
+
"label": "Left";
|
|
11982
|
+
}, {
|
|
11983
|
+
"value": "center";
|
|
11984
|
+
"label": "Center";
|
|
11985
|
+
}, {
|
|
11986
|
+
"value": "right";
|
|
11987
|
+
"label": "Right";
|
|
11988
|
+
}];
|
|
11989
|
+
};
|
|
11990
|
+
};
|
|
11972
11991
|
/** Layout. */
|
|
11973
11992
|
'layout': {
|
|
11974
11993
|
label: 'Layout';
|
|
@@ -53,6 +53,12 @@ const cardFooterSchema = {
|
|
|
53
53
|
defaultValue: true,
|
|
54
54
|
options: undefined
|
|
55
55
|
},
|
|
56
|
+
/** Horizontal alignment. */
|
|
57
|
+
'hAlignment': {
|
|
58
|
+
label: 'Horizontal alignment',
|
|
59
|
+
type: 'select',
|
|
60
|
+
options: { choices: [{ "value": "left", "label": "Left" }, { "value": "center", "label": "Center" }, { "value": "right", "label": "Right" }], }
|
|
61
|
+
},
|
|
56
62
|
/** Layout. */
|
|
57
63
|
'layout': {
|
|
58
64
|
label: 'Layout',
|
|
@@ -11908,6 +11908,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
11908
11908
|
'pager'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Pager | undefined | null;
|
|
11909
11909
|
/** Show border. */
|
|
11910
11910
|
'shouldRenderBorder'?: boolean | undefined | null;
|
|
11911
|
+
/** Horizontal alignment. */
|
|
11912
|
+
'hAlignment'?: ("left" | "center" | "right") | undefined | null;
|
|
11911
11913
|
/** Layout. */
|
|
11912
11914
|
'layout'?: ("vertical" | "horizontal") | undefined | null;
|
|
11913
11915
|
}
|
|
@@ -11969,6 +11971,23 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
11969
11971
|
defaultValue: true;
|
|
11970
11972
|
options: undefined;
|
|
11971
11973
|
};
|
|
11974
|
+
/** Horizontal alignment. */
|
|
11975
|
+
'hAlignment': {
|
|
11976
|
+
label: 'Horizontal alignment';
|
|
11977
|
+
type: 'select';
|
|
11978
|
+
options: {
|
|
11979
|
+
choices: [{
|
|
11980
|
+
"value": "left";
|
|
11981
|
+
"label": "Left";
|
|
11982
|
+
}, {
|
|
11983
|
+
"value": "center";
|
|
11984
|
+
"label": "Center";
|
|
11985
|
+
}, {
|
|
11986
|
+
"value": "right";
|
|
11987
|
+
"label": "Right";
|
|
11988
|
+
}];
|
|
11989
|
+
};
|
|
11990
|
+
};
|
|
11972
11991
|
/** Layout. */
|
|
11973
11992
|
'layout': {
|
|
11974
11993
|
label: 'Layout';
|
|
@@ -6999,6 +6999,16 @@ declare const _default: {
|
|
|
6999
6999
|
label: string;
|
|
7000
7000
|
defaultValue: true;
|
|
7001
7001
|
};
|
|
7002
|
+
hAlignment: {
|
|
7003
|
+
type: "select";
|
|
7004
|
+
label: string;
|
|
7005
|
+
options: {
|
|
7006
|
+
choices: {
|
|
7007
|
+
value: string;
|
|
7008
|
+
label: string;
|
|
7009
|
+
}[];
|
|
7010
|
+
};
|
|
7011
|
+
};
|
|
7002
7012
|
layout: {
|
|
7003
7013
|
type: "select";
|
|
7004
7014
|
label: string;
|
|
@@ -14206,6 +14216,16 @@ declare const _default: {
|
|
|
14206
14216
|
label: string;
|
|
14207
14217
|
defaultValue: true;
|
|
14208
14218
|
};
|
|
14219
|
+
hAlignment: {
|
|
14220
|
+
type: "select";
|
|
14221
|
+
label: string;
|
|
14222
|
+
options: {
|
|
14223
|
+
choices: {
|
|
14224
|
+
value: string;
|
|
14225
|
+
label: string;
|
|
14226
|
+
}[];
|
|
14227
|
+
};
|
|
14228
|
+
};
|
|
14209
14229
|
layout: {
|
|
14210
14230
|
type: "select";
|
|
14211
14231
|
label: string;
|
|
@@ -21498,6 +21518,16 @@ declare const _default: {
|
|
|
21498
21518
|
label: string;
|
|
21499
21519
|
defaultValue: true;
|
|
21500
21520
|
};
|
|
21521
|
+
hAlignment: {
|
|
21522
|
+
type: "select";
|
|
21523
|
+
label: string;
|
|
21524
|
+
options: {
|
|
21525
|
+
choices: {
|
|
21526
|
+
value: string;
|
|
21527
|
+
label: string;
|
|
21528
|
+
}[];
|
|
21529
|
+
};
|
|
21530
|
+
};
|
|
21501
21531
|
layout: {
|
|
21502
21532
|
type: "select";
|
|
21503
21533
|
label: string;
|
|
@@ -30015,6 +30045,16 @@ declare const _default: {
|
|
|
30015
30045
|
label: string;
|
|
30016
30046
|
defaultValue: true;
|
|
30017
30047
|
};
|
|
30048
|
+
hAlignment: {
|
|
30049
|
+
type: "select";
|
|
30050
|
+
label: string;
|
|
30051
|
+
options: {
|
|
30052
|
+
choices: {
|
|
30053
|
+
value: string;
|
|
30054
|
+
label: string;
|
|
30055
|
+
}[];
|
|
30056
|
+
};
|
|
30057
|
+
};
|
|
30018
30058
|
layout: {
|
|
30019
30059
|
type: "select";
|
|
30020
30060
|
label: string;
|
|
@@ -7054,6 +7054,16 @@ declare const _default: {
|
|
|
7054
7054
|
label: string;
|
|
7055
7055
|
defaultValue: true;
|
|
7056
7056
|
};
|
|
7057
|
+
hAlignment: {
|
|
7058
|
+
type: "select";
|
|
7059
|
+
label: string;
|
|
7060
|
+
options: {
|
|
7061
|
+
choices: {
|
|
7062
|
+
value: string;
|
|
7063
|
+
label: string;
|
|
7064
|
+
}[];
|
|
7065
|
+
};
|
|
7066
|
+
};
|
|
7057
7067
|
layout: {
|
|
7058
7068
|
type: "select";
|
|
7059
7069
|
label: string;
|
|
@@ -14346,6 +14356,16 @@ declare const _default: {
|
|
|
14346
14356
|
label: string;
|
|
14347
14357
|
defaultValue: true;
|
|
14348
14358
|
};
|
|
14359
|
+
hAlignment: {
|
|
14360
|
+
type: "select";
|
|
14361
|
+
label: string;
|
|
14362
|
+
options: {
|
|
14363
|
+
choices: {
|
|
14364
|
+
value: string;
|
|
14365
|
+
label: string;
|
|
14366
|
+
}[];
|
|
14367
|
+
};
|
|
14368
|
+
};
|
|
14349
14369
|
layout: {
|
|
14350
14370
|
type: "select";
|
|
14351
14371
|
label: string;
|
|
@@ -80,6 +80,16 @@ declare const _default: {
|
|
|
80
80
|
label: string;
|
|
81
81
|
defaultValue: true;
|
|
82
82
|
};
|
|
83
|
+
hAlignment: {
|
|
84
|
+
type: "select";
|
|
85
|
+
label: string;
|
|
86
|
+
options: {
|
|
87
|
+
choices: {
|
|
88
|
+
value: string;
|
|
89
|
+
label: string;
|
|
90
|
+
}[];
|
|
91
|
+
};
|
|
92
|
+
};
|
|
83
93
|
layout: {
|
|
84
94
|
type: "select";
|
|
85
95
|
label: string;
|
|
@@ -47,6 +47,17 @@ export default buildSchema({
|
|
|
47
47
|
label: 'Show border',
|
|
48
48
|
defaultValue: true,
|
|
49
49
|
},
|
|
50
|
+
hAlignment: {
|
|
51
|
+
type: 'select',
|
|
52
|
+
label: 'Horizontal alignment',
|
|
53
|
+
options: {
|
|
54
|
+
choices: [
|
|
55
|
+
{ value: 'left', label: 'Left' },
|
|
56
|
+
{ value: 'center', label: 'Center' },
|
|
57
|
+
{ value: 'right', label: 'Right' },
|
|
58
|
+
],
|
|
59
|
+
},
|
|
60
|
+
},
|
|
50
61
|
layout: {
|
|
51
62
|
type: 'select',
|
|
52
63
|
label: 'Layout',
|
|
@@ -6976,6 +6976,16 @@ declare const _default: {
|
|
|
6976
6976
|
label: string;
|
|
6977
6977
|
defaultValue: true;
|
|
6978
6978
|
};
|
|
6979
|
+
hAlignment: {
|
|
6980
|
+
type: "select";
|
|
6981
|
+
label: string;
|
|
6982
|
+
options: {
|
|
6983
|
+
choices: {
|
|
6984
|
+
value: string;
|
|
6985
|
+
label: string;
|
|
6986
|
+
}[];
|
|
6987
|
+
};
|
|
6988
|
+
};
|
|
6979
6989
|
layout: {
|
|
6980
6990
|
type: "select";
|
|
6981
6991
|
label: string;
|
|
@@ -7004,6 +7004,16 @@ declare const _default: {
|
|
|
7004
7004
|
label: string;
|
|
7005
7005
|
defaultValue: true;
|
|
7006
7006
|
};
|
|
7007
|
+
hAlignment: {
|
|
7008
|
+
type: "select";
|
|
7009
|
+
label: string;
|
|
7010
|
+
options: {
|
|
7011
|
+
choices: {
|
|
7012
|
+
value: string;
|
|
7013
|
+
label: string;
|
|
7014
|
+
}[];
|
|
7015
|
+
};
|
|
7016
|
+
};
|
|
7007
7017
|
layout: {
|
|
7008
7018
|
type: "select";
|
|
7009
7019
|
label: string;
|
|
@@ -14296,6 +14306,16 @@ declare const _default: {
|
|
|
14296
14306
|
label: string;
|
|
14297
14307
|
defaultValue: true;
|
|
14298
14308
|
};
|
|
14309
|
+
hAlignment: {
|
|
14310
|
+
type: "select";
|
|
14311
|
+
label: string;
|
|
14312
|
+
options: {
|
|
14313
|
+
choices: {
|
|
14314
|
+
value: string;
|
|
14315
|
+
label: string;
|
|
14316
|
+
}[];
|
|
14317
|
+
};
|
|
14318
|
+
};
|
|
14299
14319
|
layout: {
|
|
14300
14320
|
type: "select";
|
|
14301
14321
|
label: string;
|
|
@@ -7030,6 +7030,16 @@ declare const _default: {
|
|
|
7030
7030
|
label: string;
|
|
7031
7031
|
defaultValue: true;
|
|
7032
7032
|
};
|
|
7033
|
+
hAlignment: {
|
|
7034
|
+
type: "select";
|
|
7035
|
+
label: string;
|
|
7036
|
+
options: {
|
|
7037
|
+
choices: {
|
|
7038
|
+
value: string;
|
|
7039
|
+
label: string;
|
|
7040
|
+
}[];
|
|
7041
|
+
};
|
|
7042
|
+
};
|
|
7033
7043
|
layout: {
|
|
7034
7044
|
type: "select";
|
|
7035
7045
|
label: string;
|
|
@@ -14237,6 +14247,16 @@ declare const _default: {
|
|
|
14237
14247
|
label: string;
|
|
14238
14248
|
defaultValue: true;
|
|
14239
14249
|
};
|
|
14250
|
+
hAlignment: {
|
|
14251
|
+
type: "select";
|
|
14252
|
+
label: string;
|
|
14253
|
+
options: {
|
|
14254
|
+
choices: {
|
|
14255
|
+
value: string;
|
|
14256
|
+
label: string;
|
|
14257
|
+
}[];
|
|
14258
|
+
};
|
|
14259
|
+
};
|
|
14240
14260
|
layout: {
|
|
14241
14261
|
type: "select";
|
|
14242
14262
|
label: string;
|
|
@@ -21529,6 +21549,16 @@ declare const _default: {
|
|
|
21529
21549
|
label: string;
|
|
21530
21550
|
defaultValue: true;
|
|
21531
21551
|
};
|
|
21552
|
+
hAlignment: {
|
|
21553
|
+
type: "select";
|
|
21554
|
+
label: string;
|
|
21555
|
+
options: {
|
|
21556
|
+
choices: {
|
|
21557
|
+
value: string;
|
|
21558
|
+
label: string;
|
|
21559
|
+
}[];
|
|
21560
|
+
};
|
|
21561
|
+
};
|
|
21532
21562
|
layout: {
|
|
21533
21563
|
type: "select";
|
|
21534
21564
|
label: string;
|
|
@@ -30046,6 +30076,16 @@ declare const _default: {
|
|
|
30046
30076
|
label: string;
|
|
30047
30077
|
defaultValue: true;
|
|
30048
30078
|
};
|
|
30079
|
+
hAlignment: {
|
|
30080
|
+
type: "select";
|
|
30081
|
+
label: string;
|
|
30082
|
+
options: {
|
|
30083
|
+
choices: {
|
|
30084
|
+
value: string;
|
|
30085
|
+
label: string;
|
|
30086
|
+
}[];
|
|
30087
|
+
};
|
|
30088
|
+
};
|
|
30049
30089
|
layout: {
|
|
30050
30090
|
type: "select";
|
|
30051
30091
|
label: string;
|
|
@@ -7120,6 +7120,16 @@ declare const _default: {
|
|
|
7120
7120
|
label: string;
|
|
7121
7121
|
defaultValue: true;
|
|
7122
7122
|
};
|
|
7123
|
+
hAlignment: {
|
|
7124
|
+
type: "select";
|
|
7125
|
+
label: string;
|
|
7126
|
+
options: {
|
|
7127
|
+
choices: {
|
|
7128
|
+
value: string;
|
|
7129
|
+
label: string;
|
|
7130
|
+
}[];
|
|
7131
|
+
};
|
|
7132
|
+
};
|
|
7123
7133
|
layout: {
|
|
7124
7134
|
type: "select";
|
|
7125
7135
|
label: string;
|
|
@@ -6922,6 +6922,16 @@ declare const _default: {
|
|
|
6922
6922
|
label: string;
|
|
6923
6923
|
defaultValue: true;
|
|
6924
6924
|
};
|
|
6925
|
+
hAlignment: {
|
|
6926
|
+
type: "select";
|
|
6927
|
+
label: string;
|
|
6928
|
+
options: {
|
|
6929
|
+
choices: {
|
|
6930
|
+
value: string;
|
|
6931
|
+
label: string;
|
|
6932
|
+
}[];
|
|
6933
|
+
};
|
|
6934
|
+
};
|
|
6925
6935
|
layout: {
|
|
6926
6936
|
type: "select";
|
|
6927
6937
|
label: string;
|
|
@@ -7071,6 +7071,16 @@ declare const _default: {
|
|
|
7071
7071
|
label: string;
|
|
7072
7072
|
defaultValue: true;
|
|
7073
7073
|
};
|
|
7074
|
+
hAlignment: {
|
|
7075
|
+
type: "select";
|
|
7076
|
+
label: string;
|
|
7077
|
+
options: {
|
|
7078
|
+
choices: {
|
|
7079
|
+
value: string;
|
|
7080
|
+
label: string;
|
|
7081
|
+
}[];
|
|
7082
|
+
};
|
|
7083
|
+
};
|
|
7074
7084
|
layout: {
|
|
7075
7085
|
type: "select";
|
|
7076
7086
|
label: string;
|
|
@@ -14278,6 +14288,16 @@ declare const _default: {
|
|
|
14278
14288
|
label: string;
|
|
14279
14289
|
defaultValue: true;
|
|
14280
14290
|
};
|
|
14291
|
+
hAlignment: {
|
|
14292
|
+
type: "select";
|
|
14293
|
+
label: string;
|
|
14294
|
+
options: {
|
|
14295
|
+
choices: {
|
|
14296
|
+
value: string;
|
|
14297
|
+
label: string;
|
|
14298
|
+
}[];
|
|
14299
|
+
};
|
|
14300
|
+
};
|
|
14281
14301
|
layout: {
|
|
14282
14302
|
type: "select";
|
|
14283
14303
|
label: string;
|
|
@@ -21570,6 +21590,16 @@ declare const _default: {
|
|
|
21570
21590
|
label: string;
|
|
21571
21591
|
defaultValue: true;
|
|
21572
21592
|
};
|
|
21593
|
+
hAlignment: {
|
|
21594
|
+
type: "select";
|
|
21595
|
+
label: string;
|
|
21596
|
+
options: {
|
|
21597
|
+
choices: {
|
|
21598
|
+
value: string;
|
|
21599
|
+
label: string;
|
|
21600
|
+
}[];
|
|
21601
|
+
};
|
|
21602
|
+
};
|
|
21573
21603
|
layout: {
|
|
21574
21604
|
type: "select";
|
|
21575
21605
|
label: string;
|
|
@@ -30087,6 +30117,16 @@ declare const _default: {
|
|
|
30087
30117
|
label: string;
|
|
30088
30118
|
defaultValue: true;
|
|
30089
30119
|
};
|
|
30120
|
+
hAlignment: {
|
|
30121
|
+
type: "select";
|
|
30122
|
+
label: string;
|
|
30123
|
+
options: {
|
|
30124
|
+
choices: {
|
|
30125
|
+
value: string;
|
|
30126
|
+
label: string;
|
|
30127
|
+
}[];
|
|
30128
|
+
};
|
|
30129
|
+
};
|
|
30090
30130
|
layout: {
|
|
30091
30131
|
type: "select";
|
|
30092
30132
|
label: string;
|
|
@@ -6999,6 +6999,16 @@ declare const _default: {
|
|
|
6999
6999
|
label: string;
|
|
7000
7000
|
defaultValue: true;
|
|
7001
7001
|
};
|
|
7002
|
+
hAlignment: {
|
|
7003
|
+
type: "select";
|
|
7004
|
+
label: string;
|
|
7005
|
+
options: {
|
|
7006
|
+
choices: {
|
|
7007
|
+
value: string;
|
|
7008
|
+
label: string;
|
|
7009
|
+
}[];
|
|
7010
|
+
};
|
|
7011
|
+
};
|
|
7002
7012
|
layout: {
|
|
7003
7013
|
type: "select";
|
|
7004
7014
|
label: string;
|
|
@@ -14206,6 +14216,16 @@ declare const _default: {
|
|
|
14206
14216
|
label: string;
|
|
14207
14217
|
defaultValue: true;
|
|
14208
14218
|
};
|
|
14219
|
+
hAlignment: {
|
|
14220
|
+
type: "select";
|
|
14221
|
+
label: string;
|
|
14222
|
+
options: {
|
|
14223
|
+
choices: {
|
|
14224
|
+
value: string;
|
|
14225
|
+
label: string;
|
|
14226
|
+
}[];
|
|
14227
|
+
};
|
|
14228
|
+
};
|
|
14209
14229
|
layout: {
|
|
14210
14230
|
type: "select";
|
|
14211
14231
|
label: string;
|
|
@@ -21498,6 +21518,16 @@ declare const _default: {
|
|
|
21498
21518
|
label: string;
|
|
21499
21519
|
defaultValue: true;
|
|
21500
21520
|
};
|
|
21521
|
+
hAlignment: {
|
|
21522
|
+
type: "select";
|
|
21523
|
+
label: string;
|
|
21524
|
+
options: {
|
|
21525
|
+
choices: {
|
|
21526
|
+
value: string;
|
|
21527
|
+
label: string;
|
|
21528
|
+
}[];
|
|
21529
|
+
};
|
|
21530
|
+
};
|
|
21501
21531
|
layout: {
|
|
21502
21532
|
type: "select";
|
|
21503
21533
|
label: string;
|
|
@@ -30015,6 +30045,16 @@ declare const _default: {
|
|
|
30015
30045
|
label: string;
|
|
30016
30046
|
defaultValue: true;
|
|
30017
30047
|
};
|
|
30048
|
+
hAlignment: {
|
|
30049
|
+
type: "select";
|
|
30050
|
+
label: string;
|
|
30051
|
+
options: {
|
|
30052
|
+
choices: {
|
|
30053
|
+
value: string;
|
|
30054
|
+
label: string;
|
|
30055
|
+
}[];
|
|
30056
|
+
};
|
|
30057
|
+
};
|
|
30018
30058
|
layout: {
|
|
30019
30059
|
type: "select";
|
|
30020
30060
|
label: string;
|
|
@@ -7054,6 +7054,16 @@ declare const _default: {
|
|
|
7054
7054
|
label: string;
|
|
7055
7055
|
defaultValue: true;
|
|
7056
7056
|
};
|
|
7057
|
+
hAlignment: {
|
|
7058
|
+
type: "select";
|
|
7059
|
+
label: string;
|
|
7060
|
+
options: {
|
|
7061
|
+
choices: {
|
|
7062
|
+
value: string;
|
|
7063
|
+
label: string;
|
|
7064
|
+
}[];
|
|
7065
|
+
};
|
|
7066
|
+
};
|
|
7057
7067
|
layout: {
|
|
7058
7068
|
type: "select";
|
|
7059
7069
|
label: string;
|
|
@@ -14346,6 +14356,16 @@ declare const _default: {
|
|
|
14346
14356
|
label: string;
|
|
14347
14357
|
defaultValue: true;
|
|
14348
14358
|
};
|
|
14359
|
+
hAlignment: {
|
|
14360
|
+
type: "select";
|
|
14361
|
+
label: string;
|
|
14362
|
+
options: {
|
|
14363
|
+
choices: {
|
|
14364
|
+
value: string;
|
|
14365
|
+
label: string;
|
|
14366
|
+
}[];
|
|
14367
|
+
};
|
|
14368
|
+
};
|
|
14349
14369
|
layout: {
|
|
14350
14370
|
type: "select";
|
|
14351
14371
|
label: string;
|
|
@@ -80,6 +80,16 @@ declare const _default: {
|
|
|
80
80
|
label: string;
|
|
81
81
|
defaultValue: true;
|
|
82
82
|
};
|
|
83
|
+
hAlignment: {
|
|
84
|
+
type: "select";
|
|
85
|
+
label: string;
|
|
86
|
+
options: {
|
|
87
|
+
choices: {
|
|
88
|
+
value: string;
|
|
89
|
+
label: string;
|
|
90
|
+
}[];
|
|
91
|
+
};
|
|
92
|
+
};
|
|
83
93
|
layout: {
|
|
84
94
|
type: "select";
|
|
85
95
|
label: string;
|
|
@@ -54,6 +54,17 @@ exports.default = (0, schema_1.buildSchema)({
|
|
|
54
54
|
label: 'Show border',
|
|
55
55
|
defaultValue: true,
|
|
56
56
|
},
|
|
57
|
+
hAlignment: {
|
|
58
|
+
type: 'select',
|
|
59
|
+
label: 'Horizontal alignment',
|
|
60
|
+
options: {
|
|
61
|
+
choices: [
|
|
62
|
+
{ value: 'left', label: 'Left' },
|
|
63
|
+
{ value: 'center', label: 'Center' },
|
|
64
|
+
{ value: 'right', label: 'Right' },
|
|
65
|
+
],
|
|
66
|
+
},
|
|
67
|
+
},
|
|
57
68
|
layout: {
|
|
58
69
|
type: 'select',
|
|
59
70
|
label: 'Layout',
|
|
@@ -6976,6 +6976,16 @@ declare const _default: {
|
|
|
6976
6976
|
label: string;
|
|
6977
6977
|
defaultValue: true;
|
|
6978
6978
|
};
|
|
6979
|
+
hAlignment: {
|
|
6980
|
+
type: "select";
|
|
6981
|
+
label: string;
|
|
6982
|
+
options: {
|
|
6983
|
+
choices: {
|
|
6984
|
+
value: string;
|
|
6985
|
+
label: string;
|
|
6986
|
+
}[];
|
|
6987
|
+
};
|
|
6988
|
+
};
|
|
6979
6989
|
layout: {
|
|
6980
6990
|
type: "select";
|
|
6981
6991
|
label: string;
|
|
@@ -7004,6 +7004,16 @@ declare const _default: {
|
|
|
7004
7004
|
label: string;
|
|
7005
7005
|
defaultValue: true;
|
|
7006
7006
|
};
|
|
7007
|
+
hAlignment: {
|
|
7008
|
+
type: "select";
|
|
7009
|
+
label: string;
|
|
7010
|
+
options: {
|
|
7011
|
+
choices: {
|
|
7012
|
+
value: string;
|
|
7013
|
+
label: string;
|
|
7014
|
+
}[];
|
|
7015
|
+
};
|
|
7016
|
+
};
|
|
7007
7017
|
layout: {
|
|
7008
7018
|
type: "select";
|
|
7009
7019
|
label: string;
|
|
@@ -14296,6 +14306,16 @@ declare const _default: {
|
|
|
14296
14306
|
label: string;
|
|
14297
14307
|
defaultValue: true;
|
|
14298
14308
|
};
|
|
14309
|
+
hAlignment: {
|
|
14310
|
+
type: "select";
|
|
14311
|
+
label: string;
|
|
14312
|
+
options: {
|
|
14313
|
+
choices: {
|
|
14314
|
+
value: string;
|
|
14315
|
+
label: string;
|
|
14316
|
+
}[];
|
|
14317
|
+
};
|
|
14318
|
+
};
|
|
14299
14319
|
layout: {
|
|
14300
14320
|
type: "select";
|
|
14301
14321
|
label: string;
|
|
@@ -7030,6 +7030,16 @@ declare const _default: {
|
|
|
7030
7030
|
label: string;
|
|
7031
7031
|
defaultValue: true;
|
|
7032
7032
|
};
|
|
7033
|
+
hAlignment: {
|
|
7034
|
+
type: "select";
|
|
7035
|
+
label: string;
|
|
7036
|
+
options: {
|
|
7037
|
+
choices: {
|
|
7038
|
+
value: string;
|
|
7039
|
+
label: string;
|
|
7040
|
+
}[];
|
|
7041
|
+
};
|
|
7042
|
+
};
|
|
7033
7043
|
layout: {
|
|
7034
7044
|
type: "select";
|
|
7035
7045
|
label: string;
|
|
@@ -14237,6 +14247,16 @@ declare const _default: {
|
|
|
14237
14247
|
label: string;
|
|
14238
14248
|
defaultValue: true;
|
|
14239
14249
|
};
|
|
14250
|
+
hAlignment: {
|
|
14251
|
+
type: "select";
|
|
14252
|
+
label: string;
|
|
14253
|
+
options: {
|
|
14254
|
+
choices: {
|
|
14255
|
+
value: string;
|
|
14256
|
+
label: string;
|
|
14257
|
+
}[];
|
|
14258
|
+
};
|
|
14259
|
+
};
|
|
14240
14260
|
layout: {
|
|
14241
14261
|
type: "select";
|
|
14242
14262
|
label: string;
|
|
@@ -21529,6 +21549,16 @@ declare const _default: {
|
|
|
21529
21549
|
label: string;
|
|
21530
21550
|
defaultValue: true;
|
|
21531
21551
|
};
|
|
21552
|
+
hAlignment: {
|
|
21553
|
+
type: "select";
|
|
21554
|
+
label: string;
|
|
21555
|
+
options: {
|
|
21556
|
+
choices: {
|
|
21557
|
+
value: string;
|
|
21558
|
+
label: string;
|
|
21559
|
+
}[];
|
|
21560
|
+
};
|
|
21561
|
+
};
|
|
21532
21562
|
layout: {
|
|
21533
21563
|
type: "select";
|
|
21534
21564
|
label: string;
|
|
@@ -30046,6 +30076,16 @@ declare const _default: {
|
|
|
30046
30076
|
label: string;
|
|
30047
30077
|
defaultValue: true;
|
|
30048
30078
|
};
|
|
30079
|
+
hAlignment: {
|
|
30080
|
+
type: "select";
|
|
30081
|
+
label: string;
|
|
30082
|
+
options: {
|
|
30083
|
+
choices: {
|
|
30084
|
+
value: string;
|
|
30085
|
+
label: string;
|
|
30086
|
+
}[];
|
|
30087
|
+
};
|
|
30088
|
+
};
|
|
30049
30089
|
layout: {
|
|
30050
30090
|
type: "select";
|
|
30051
30091
|
label: string;
|
|
@@ -7120,6 +7120,16 @@ declare const _default: {
|
|
|
7120
7120
|
label: string;
|
|
7121
7121
|
defaultValue: true;
|
|
7122
7122
|
};
|
|
7123
|
+
hAlignment: {
|
|
7124
|
+
type: "select";
|
|
7125
|
+
label: string;
|
|
7126
|
+
options: {
|
|
7127
|
+
choices: {
|
|
7128
|
+
value: string;
|
|
7129
|
+
label: string;
|
|
7130
|
+
}[];
|
|
7131
|
+
};
|
|
7132
|
+
};
|
|
7123
7133
|
layout: {
|
|
7124
7134
|
type: "select";
|
|
7125
7135
|
label: string;
|
|
@@ -6922,6 +6922,16 @@ declare const _default: {
|
|
|
6922
6922
|
label: string;
|
|
6923
6923
|
defaultValue: true;
|
|
6924
6924
|
};
|
|
6925
|
+
hAlignment: {
|
|
6926
|
+
type: "select";
|
|
6927
|
+
label: string;
|
|
6928
|
+
options: {
|
|
6929
|
+
choices: {
|
|
6930
|
+
value: string;
|
|
6931
|
+
label: string;
|
|
6932
|
+
}[];
|
|
6933
|
+
};
|
|
6934
|
+
};
|
|
6925
6935
|
layout: {
|
|
6926
6936
|
type: "select";
|
|
6927
6937
|
label: string;
|
|
@@ -7071,6 +7071,16 @@ declare const _default: {
|
|
|
7071
7071
|
label: string;
|
|
7072
7072
|
defaultValue: true;
|
|
7073
7073
|
};
|
|
7074
|
+
hAlignment: {
|
|
7075
|
+
type: "select";
|
|
7076
|
+
label: string;
|
|
7077
|
+
options: {
|
|
7078
|
+
choices: {
|
|
7079
|
+
value: string;
|
|
7080
|
+
label: string;
|
|
7081
|
+
}[];
|
|
7082
|
+
};
|
|
7083
|
+
};
|
|
7074
7084
|
layout: {
|
|
7075
7085
|
type: "select";
|
|
7076
7086
|
label: string;
|
|
@@ -14278,6 +14288,16 @@ declare const _default: {
|
|
|
14278
14288
|
label: string;
|
|
14279
14289
|
defaultValue: true;
|
|
14280
14290
|
};
|
|
14291
|
+
hAlignment: {
|
|
14292
|
+
type: "select";
|
|
14293
|
+
label: string;
|
|
14294
|
+
options: {
|
|
14295
|
+
choices: {
|
|
14296
|
+
value: string;
|
|
14297
|
+
label: string;
|
|
14298
|
+
}[];
|
|
14299
|
+
};
|
|
14300
|
+
};
|
|
14281
14301
|
layout: {
|
|
14282
14302
|
type: "select";
|
|
14283
14303
|
label: string;
|
|
@@ -21570,6 +21590,16 @@ declare const _default: {
|
|
|
21570
21590
|
label: string;
|
|
21571
21591
|
defaultValue: true;
|
|
21572
21592
|
};
|
|
21593
|
+
hAlignment: {
|
|
21594
|
+
type: "select";
|
|
21595
|
+
label: string;
|
|
21596
|
+
options: {
|
|
21597
|
+
choices: {
|
|
21598
|
+
value: string;
|
|
21599
|
+
label: string;
|
|
21600
|
+
}[];
|
|
21601
|
+
};
|
|
21602
|
+
};
|
|
21573
21603
|
layout: {
|
|
21574
21604
|
type: "select";
|
|
21575
21605
|
label: string;
|
|
@@ -30087,6 +30117,16 @@ declare const _default: {
|
|
|
30087
30117
|
label: string;
|
|
30088
30118
|
defaultValue: true;
|
|
30089
30119
|
};
|
|
30120
|
+
hAlignment: {
|
|
30121
|
+
type: "select";
|
|
30122
|
+
label: string;
|
|
30123
|
+
options: {
|
|
30124
|
+
choices: {
|
|
30125
|
+
value: string;
|
|
30126
|
+
label: string;
|
|
30127
|
+
}[];
|
|
30128
|
+
};
|
|
30129
|
+
};
|
|
30090
30130
|
layout: {
|
|
30091
30131
|
type: "select";
|
|
30092
30132
|
label: string;
|
package/package.json
CHANGED