@sprucelabs/heartwood-view-controllers 122.0.6 → 122.0.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/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCell.schema.js +2 -2
- package/build/.spruce/schemas/schemas.types.d.ts +12 -12
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/listCell.schema.js +2 -2
- package/build/esm/.spruce/schemas/schemas.types.d.ts +12 -12
- package/build/esm/schemas/v2021_02_11/listCell.builder.js +4 -4
- package/build/esm/types/heartwood.types.d.ts +1 -1
- package/build/schemas/v2021_02_11/listCell.builder.js +4 -4
- package/build/types/heartwood.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -132,13 +132,13 @@ const listCellSchema = {
|
|
|
132
132
|
'vAlignment': {
|
|
133
133
|
label: 'Vertical alignment',
|
|
134
134
|
type: 'select',
|
|
135
|
-
options: { choices: [{ "value": "
|
|
135
|
+
options: { choices: [{ "value": "top", "label": "Top" }, { "value": "bottom", "label": "Bottom" }, { "value": "center", "label": "Center" }], }
|
|
136
136
|
},
|
|
137
137
|
/** Horizontal alignment. */
|
|
138
138
|
'hAlignment': {
|
|
139
139
|
label: 'Horizontal alignment',
|
|
140
140
|
type: 'select',
|
|
141
|
-
options: { choices: [{ "value": "
|
|
141
|
+
options: { choices: [{ "value": "left", "label": "Left" }, { "value": "center", "label": "Center" }, { "value": "right", "label": "Right" }], }
|
|
142
142
|
},
|
|
143
143
|
}
|
|
144
144
|
};
|
|
@@ -14315,9 +14315,9 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14315
14315
|
/** Status indicator. */
|
|
14316
14316
|
'statusIndicator'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.StatusIndicator | undefined | null;
|
|
14317
14317
|
/** Vertical alignment. */
|
|
14318
|
-
'vAlignment'?: ("
|
|
14318
|
+
'vAlignment'?: ("top" | "bottom" | "center") | undefined | null;
|
|
14319
14319
|
/** Horizontal alignment. */
|
|
14320
|
-
'hAlignment'?: ("
|
|
14320
|
+
'hAlignment'?: ("left" | "center" | "right") | undefined | null;
|
|
14321
14321
|
}
|
|
14322
14322
|
interface ListCellSchema extends SpruceSchema.Schema {
|
|
14323
14323
|
id: 'listCell';
|
|
@@ -14882,14 +14882,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14882
14882
|
type: 'select';
|
|
14883
14883
|
options: {
|
|
14884
14884
|
choices: [{
|
|
14885
|
-
"value": "
|
|
14886
|
-
"label": "
|
|
14885
|
+
"value": "top";
|
|
14886
|
+
"label": "Top";
|
|
14887
|
+
}, {
|
|
14888
|
+
"value": "bottom";
|
|
14889
|
+
"label": "Bottom";
|
|
14887
14890
|
}, {
|
|
14888
14891
|
"value": "center";
|
|
14889
14892
|
"label": "Center";
|
|
14890
|
-
}, {
|
|
14891
|
-
"value": "right";
|
|
14892
|
-
"label": "Right";
|
|
14893
14893
|
}];
|
|
14894
14894
|
};
|
|
14895
14895
|
};
|
|
@@ -14899,14 +14899,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14899
14899
|
type: 'select';
|
|
14900
14900
|
options: {
|
|
14901
14901
|
choices: [{
|
|
14902
|
-
"value": "
|
|
14903
|
-
"label": "
|
|
14904
|
-
}, {
|
|
14905
|
-
"value": "bottom";
|
|
14906
|
-
"label": "Bottom";
|
|
14902
|
+
"value": "left";
|
|
14903
|
+
"label": "Left";
|
|
14907
14904
|
}, {
|
|
14908
14905
|
"value": "center";
|
|
14909
14906
|
"label": "Center";
|
|
14907
|
+
}, {
|
|
14908
|
+
"value": "right";
|
|
14909
|
+
"label": "Right";
|
|
14910
14910
|
}];
|
|
14911
14911
|
};
|
|
14912
14912
|
};
|
|
@@ -127,13 +127,13 @@ const listCellSchema = {
|
|
|
127
127
|
'vAlignment': {
|
|
128
128
|
label: 'Vertical alignment',
|
|
129
129
|
type: 'select',
|
|
130
|
-
options: { choices: [{ "value": "
|
|
130
|
+
options: { choices: [{ "value": "top", "label": "Top" }, { "value": "bottom", "label": "Bottom" }, { "value": "center", "label": "Center" }], }
|
|
131
131
|
},
|
|
132
132
|
/** Horizontal alignment. */
|
|
133
133
|
'hAlignment': {
|
|
134
134
|
label: 'Horizontal alignment',
|
|
135
135
|
type: 'select',
|
|
136
|
-
options: { choices: [{ "value": "
|
|
136
|
+
options: { choices: [{ "value": "left", "label": "Left" }, { "value": "center", "label": "Center" }, { "value": "right", "label": "Right" }], }
|
|
137
137
|
},
|
|
138
138
|
}
|
|
139
139
|
};
|
|
@@ -14315,9 +14315,9 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14315
14315
|
/** Status indicator. */
|
|
14316
14316
|
'statusIndicator'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.StatusIndicator | undefined | null;
|
|
14317
14317
|
/** Vertical alignment. */
|
|
14318
|
-
'vAlignment'?: ("
|
|
14318
|
+
'vAlignment'?: ("top" | "bottom" | "center") | undefined | null;
|
|
14319
14319
|
/** Horizontal alignment. */
|
|
14320
|
-
'hAlignment'?: ("
|
|
14320
|
+
'hAlignment'?: ("left" | "center" | "right") | undefined | null;
|
|
14321
14321
|
}
|
|
14322
14322
|
interface ListCellSchema extends SpruceSchema.Schema {
|
|
14323
14323
|
id: 'listCell';
|
|
@@ -14882,14 +14882,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14882
14882
|
type: 'select';
|
|
14883
14883
|
options: {
|
|
14884
14884
|
choices: [{
|
|
14885
|
-
"value": "
|
|
14886
|
-
"label": "
|
|
14885
|
+
"value": "top";
|
|
14886
|
+
"label": "Top";
|
|
14887
|
+
}, {
|
|
14888
|
+
"value": "bottom";
|
|
14889
|
+
"label": "Bottom";
|
|
14887
14890
|
}, {
|
|
14888
14891
|
"value": "center";
|
|
14889
14892
|
"label": "Center";
|
|
14890
|
-
}, {
|
|
14891
|
-
"value": "right";
|
|
14892
|
-
"label": "Right";
|
|
14893
14893
|
}];
|
|
14894
14894
|
};
|
|
14895
14895
|
};
|
|
@@ -14899,14 +14899,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
14899
14899
|
type: 'select';
|
|
14900
14900
|
options: {
|
|
14901
14901
|
choices: [{
|
|
14902
|
-
"value": "
|
|
14903
|
-
"label": "
|
|
14904
|
-
}, {
|
|
14905
|
-
"value": "bottom";
|
|
14906
|
-
"label": "Bottom";
|
|
14902
|
+
"value": "left";
|
|
14903
|
+
"label": "Left";
|
|
14907
14904
|
}, {
|
|
14908
14905
|
"value": "center";
|
|
14909
14906
|
"label": "Center";
|
|
14907
|
+
}, {
|
|
14908
|
+
"value": "right";
|
|
14909
|
+
"label": "Right";
|
|
14910
14910
|
}];
|
|
14911
14911
|
};
|
|
14912
14912
|
};
|
|
@@ -209,9 +209,9 @@ export default buildSchema({
|
|
|
209
209
|
label: 'Vertical alignment',
|
|
210
210
|
options: {
|
|
211
211
|
choices: [
|
|
212
|
-
{ value: '
|
|
212
|
+
{ value: 'top', label: 'Top' },
|
|
213
|
+
{ value: 'bottom', label: 'Bottom' },
|
|
213
214
|
{ value: 'center', label: 'Center' },
|
|
214
|
-
{ value: 'right', label: 'Right' },
|
|
215
215
|
],
|
|
216
216
|
},
|
|
217
217
|
},
|
|
@@ -220,9 +220,9 @@ export default buildSchema({
|
|
|
220
220
|
label: 'Horizontal alignment',
|
|
221
221
|
options: {
|
|
222
222
|
choices: [
|
|
223
|
-
{ value: '
|
|
224
|
-
{ value: 'bottom', label: 'Bottom' },
|
|
223
|
+
{ value: 'left', label: 'Left' },
|
|
225
224
|
{ value: 'center', label: 'Center' },
|
|
225
|
+
{ value: 'right', label: 'Right' },
|
|
226
226
|
],
|
|
227
227
|
},
|
|
228
228
|
},
|
|
@@ -199,7 +199,7 @@ export interface SkillViewControllerLoadOptions<Args extends Record<string, any>
|
|
|
199
199
|
export type Theme = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Theme;
|
|
200
200
|
export type InputButton = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.InputButton;
|
|
201
201
|
export interface ThemeManager {
|
|
202
|
-
setTheme(theme: Theme
|
|
202
|
+
setTheme(theme: Theme): void;
|
|
203
203
|
getTheme(): Theme;
|
|
204
204
|
}
|
|
205
205
|
export type CardViewController = CardViewControllerImpl;
|
|
@@ -245,9 +245,9 @@ exports.default = (0, schema_1.buildSchema)({
|
|
|
245
245
|
label: 'Vertical alignment',
|
|
246
246
|
options: {
|
|
247
247
|
choices: [
|
|
248
|
-
{ value: '
|
|
248
|
+
{ value: 'top', label: 'Top' },
|
|
249
|
+
{ value: 'bottom', label: 'Bottom' },
|
|
249
250
|
{ value: 'center', label: 'Center' },
|
|
250
|
-
{ value: 'right', label: 'Right' },
|
|
251
251
|
],
|
|
252
252
|
},
|
|
253
253
|
},
|
|
@@ -256,9 +256,9 @@ exports.default = (0, schema_1.buildSchema)({
|
|
|
256
256
|
label: 'Horizontal alignment',
|
|
257
257
|
options: {
|
|
258
258
|
choices: [
|
|
259
|
-
{ value: '
|
|
260
|
-
{ value: 'bottom', label: 'Bottom' },
|
|
259
|
+
{ value: 'left', label: 'Left' },
|
|
261
260
|
{ value: 'center', label: 'Center' },
|
|
261
|
+
{ value: 'right', label: 'Right' },
|
|
262
262
|
],
|
|
263
263
|
},
|
|
264
264
|
},
|
|
@@ -199,7 +199,7 @@ export interface SkillViewControllerLoadOptions<Args extends Record<string, any>
|
|
|
199
199
|
export type Theme = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Theme;
|
|
200
200
|
export type InputButton = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.InputButton;
|
|
201
201
|
export interface ThemeManager {
|
|
202
|
-
setTheme(theme: Theme
|
|
202
|
+
setTheme(theme: Theme): void;
|
|
203
203
|
getTheme(): Theme;
|
|
204
204
|
}
|
|
205
205
|
export type CardViewController = CardViewControllerImpl;
|
package/package.json
CHANGED