@sprucelabs/heartwood-view-controllers 117.2.28 → 118.0.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/barChart.schema.js +3 -3
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/cardSection.schema.js +7 -0
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataPoint.schema.d.ts +3 -0
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/{barChartDataPoint.schema.js → chartDataPoint.schema.js} +4 -4
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataSet.schema.d.ts +3 -0
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/{barChartDataSet.schema.js → chartDataSet.schema.js} +7 -7
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lineGraph.schema.d.ts +3 -0
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lineGraph.schema.js +36 -0
- package/build/.spruce/schemas/schemas.types.d.ts +231 -181
- package/build/controllerMap.d.ts +3 -2
- package/build/controllerMap.js +2 -1
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChart.schema.js +3 -3
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/cardSection.schema.js +7 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataPoint.schema.d.ts +3 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/{barChartDataPoint.schema.js → chartDataPoint.schema.js} +4 -4
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataSet.schema.d.ts +3 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/{barChartDataSet.schema.js → chartDataSet.schema.js} +7 -7
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lineGraph.schema.d.ts +3 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lineGraph.schema.js +31 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +231 -181
- package/build/esm/controllerMap.d.ts +3 -2
- package/build/esm/controllerMap.js +3 -2
- package/build/esm/index.d.ts +6 -4
- package/build/esm/index.js +6 -4
- package/build/esm/schemas/v2021_02_11/barChart.builder.d.ts +1 -0
- package/build/esm/schemas/v2021_02_11/barChart.builder.js +3 -29
- package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.js +8 -0
- package/build/esm/schemas/v2021_02_11/chartDataSet.builder.d.ts +30 -0
- package/build/esm/schemas/v2021_02_11/chartDataSet.builder.js +30 -0
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/layout.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/lineGraph.builder.d.ts +53 -0
- package/build/esm/schemas/v2021_02_11/lineGraph.builder.js +26 -0
- package/build/esm/schemas/v2021_02_11/lockScreen.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/skillView.builder.d.ts +59 -0
- package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +59 -0
- package/build/esm/tests/utilities/chartAssert.d.ts +7 -0
- package/build/esm/tests/utilities/chartAssert.js +33 -0
- package/build/esm/types/heartwood.types.d.ts +10 -3
- package/build/esm/viewControllers/charts/BarChart.vc.d.ts +9 -0
- package/build/esm/viewControllers/{BarChart.vc.js → charts/BarChart.vc.js} +2 -2
- package/build/esm/viewControllers/charts/LineGraph.vc.d.ts +9 -0
- package/build/esm/viewControllers/charts/LineGraph.vc.js +19 -0
- package/build/index.d.ts +6 -4
- package/build/index.js +15 -11
- package/build/schemas/v2021_02_11/barChart.builder.d.ts +1 -0
- package/build/schemas/v2021_02_11/barChart.builder.js +6 -29
- package/build/schemas/v2021_02_11/cards/card.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/cards/cardSection.builder.js +8 -0
- package/build/schemas/v2021_02_11/chartDataSet.builder.d.ts +30 -0
- package/build/schemas/v2021_02_11/chartDataSet.builder.js +32 -0
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/layout.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/lineGraph.builder.d.ts +53 -0
- package/build/schemas/v2021_02_11/lineGraph.builder.js +31 -0
- package/build/schemas/v2021_02_11/lockScreen.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/skillView.builder.d.ts +59 -0
- package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +59 -0
- package/build/tests/utilities/chartAssert.d.ts +7 -0
- package/build/tests/utilities/chartAssert.js +38 -0
- package/build/types/heartwood.types.d.ts +10 -3
- package/build/viewControllers/charts/BarChart.vc.d.ts +9 -0
- package/build/viewControllers/{BarChart.vc.js → charts/BarChart.vc.js} +2 -2
- package/build/viewControllers/charts/LineGraph.vc.d.ts +9 -0
- package/build/viewControllers/charts/LineGraph.vc.js +27 -0
- package/package.json +5 -5
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChartDataPoint.schema.d.ts +0 -3
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChartDataSet.schema.d.ts +0 -3
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChartDataPoint.schema.d.ts +0 -3
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChartDataSet.schema.d.ts +0 -3
- package/build/esm/tests/utilities/barChartAssert.d.ts +0 -7
- package/build/esm/tests/utilities/barChartAssert.js +0 -24
- package/build/esm/viewControllers/BarChart.vc.d.ts +0 -9
- package/build/tests/utilities/barChartAssert.d.ts +0 -7
- package/build/tests/utilities/barChartAssert.js +0 -29
- package/build/viewControllers/BarChart.vc.d.ts +0 -9
|
@@ -7010,88 +7010,16 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7010
7010
|
}
|
|
7011
7011
|
}
|
|
7012
7012
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7013
|
-
interface
|
|
7014
|
-
'items': SpruceSchemas.Spruce.v2020_07_22.FeedItem[];
|
|
7015
|
-
'onSubmitMessage'?: (HeartwoodTypes.OnSubmitFeedMessageHandler) | undefined | null;
|
|
7016
|
-
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>) | undefined | null;
|
|
7017
|
-
}
|
|
7018
|
-
interface FeedSchema extends SpruceSchema.Schema {
|
|
7019
|
-
id: 'feed';
|
|
7020
|
-
version: 'v2021_02_11';
|
|
7021
|
-
namespace: 'HeartwoodViewControllers';
|
|
7022
|
-
name: 'Feed';
|
|
7023
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7024
|
-
fields: {
|
|
7025
|
-
/** . */
|
|
7026
|
-
'items': {
|
|
7027
|
-
type: 'schema';
|
|
7028
|
-
isRequired: true;
|
|
7029
|
-
isArray: true;
|
|
7030
|
-
minArrayLength: 0;
|
|
7031
|
-
options: {
|
|
7032
|
-
schema: SpruceSchemas.Spruce.v2020_07_22.FeedItemSchema;
|
|
7033
|
-
};
|
|
7034
|
-
};
|
|
7035
|
-
/** . */
|
|
7036
|
-
'onSubmitMessage': {
|
|
7037
|
-
type: 'raw';
|
|
7038
|
-
options: {
|
|
7039
|
-
valueType: `HeartwoodTypes.OnSubmitFeedMessageHandler`;
|
|
7040
|
-
};
|
|
7041
|
-
};
|
|
7042
|
-
/** . */
|
|
7043
|
-
'controller': {
|
|
7044
|
-
type: 'raw';
|
|
7045
|
-
options: {
|
|
7046
|
-
valueType: `HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>`;
|
|
7047
|
-
};
|
|
7048
|
-
};
|
|
7049
|
-
};
|
|
7050
|
-
}
|
|
7051
|
-
interface FeedEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FeedSchema> {
|
|
7052
|
-
}
|
|
7053
|
-
}
|
|
7054
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7055
|
-
interface PolarAreaDataItem {
|
|
7056
|
-
'label': string;
|
|
7057
|
-
'value': number;
|
|
7058
|
-
}
|
|
7059
|
-
interface PolarAreaDataItemSchema extends SpruceSchema.Schema {
|
|
7060
|
-
id: 'polarAreaDataItem';
|
|
7061
|
-
version: 'v2021_02_11';
|
|
7062
|
-
namespace: 'HeartwoodViewControllers';
|
|
7063
|
-
name: '';
|
|
7064
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7065
|
-
fields: {
|
|
7066
|
-
/** . */
|
|
7067
|
-
'label': {
|
|
7068
|
-
type: 'text';
|
|
7069
|
-
isRequired: true;
|
|
7070
|
-
options: undefined;
|
|
7071
|
-
};
|
|
7072
|
-
/** . */
|
|
7073
|
-
'value': {
|
|
7074
|
-
type: 'number';
|
|
7075
|
-
isRequired: true;
|
|
7076
|
-
options: undefined;
|
|
7077
|
-
};
|
|
7078
|
-
};
|
|
7079
|
-
}
|
|
7080
|
-
interface PolarAreaDataItemEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema> {
|
|
7081
|
-
}
|
|
7082
|
-
}
|
|
7083
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7084
|
-
interface PolarArea {
|
|
7013
|
+
interface LineGraph {
|
|
7085
7014
|
'id'?: string | undefined | null;
|
|
7086
|
-
|
|
7087
|
-
'
|
|
7088
|
-
'data': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItem[];
|
|
7015
|
+
'controller'?: (HeartwoodTypes.ChartViewController<HeartwoodTypes.LineGraph>) | undefined | null;
|
|
7016
|
+
'dataSets': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataSet[];
|
|
7089
7017
|
}
|
|
7090
|
-
interface
|
|
7091
|
-
id: '
|
|
7018
|
+
interface LineGraphSchema extends SpruceSchema.Schema {
|
|
7019
|
+
id: 'lineGraph';
|
|
7092
7020
|
version: 'v2021_02_11';
|
|
7093
7021
|
namespace: 'HeartwoodViewControllers';
|
|
7094
|
-
name: '
|
|
7022
|
+
name: 'Line graph';
|
|
7095
7023
|
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7096
7024
|
fields: {
|
|
7097
7025
|
/** . */
|
|
@@ -7099,108 +7027,26 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7099
7027
|
type: 'id';
|
|
7100
7028
|
options: undefined;
|
|
7101
7029
|
};
|
|
7102
|
-
/**
|
|
7030
|
+
/** . */
|
|
7103
7031
|
'controller': {
|
|
7104
|
-
label: 'Controller';
|
|
7105
7032
|
type: 'raw';
|
|
7106
7033
|
options: {
|
|
7107
|
-
valueType: `HeartwoodTypes.
|
|
7034
|
+
valueType: `HeartwoodTypes.ChartViewController<HeartwoodTypes.LineGraph>`;
|
|
7108
7035
|
};
|
|
7109
7036
|
};
|
|
7110
7037
|
/** . */
|
|
7111
|
-
'
|
|
7038
|
+
'dataSets': {
|
|
7112
7039
|
type: 'schema';
|
|
7113
7040
|
isRequired: true;
|
|
7114
7041
|
isArray: true;
|
|
7042
|
+
minArrayLength: 0;
|
|
7115
7043
|
options: {
|
|
7116
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.
|
|
7117
|
-
};
|
|
7118
|
-
};
|
|
7119
|
-
};
|
|
7120
|
-
}
|
|
7121
|
-
interface PolarAreaEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaSchema> {
|
|
7122
|
-
}
|
|
7123
|
-
}
|
|
7124
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7125
|
-
interface ReceiptTotal {
|
|
7126
|
-
'label': string;
|
|
7127
|
-
'value': string;
|
|
7128
|
-
'shouldBeEmphasized'?: boolean | undefined | null;
|
|
7129
|
-
'shouldBeCalledOut'?: boolean | undefined | null;
|
|
7130
|
-
}
|
|
7131
|
-
interface ReceiptTotalSchema extends SpruceSchema.Schema {
|
|
7132
|
-
id: 'receiptTotal';
|
|
7133
|
-
version: 'v2021_02_11';
|
|
7134
|
-
namespace: 'HeartwoodViewControllers';
|
|
7135
|
-
name: '';
|
|
7136
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7137
|
-
fields: {
|
|
7138
|
-
/** . */
|
|
7139
|
-
'label': {
|
|
7140
|
-
type: 'text';
|
|
7141
|
-
isRequired: true;
|
|
7142
|
-
options: undefined;
|
|
7143
|
-
};
|
|
7144
|
-
/** . */
|
|
7145
|
-
'value': {
|
|
7146
|
-
type: 'text';
|
|
7147
|
-
isRequired: true;
|
|
7148
|
-
options: undefined;
|
|
7149
|
-
};
|
|
7150
|
-
/** . */
|
|
7151
|
-
'shouldBeEmphasized': {
|
|
7152
|
-
type: 'boolean';
|
|
7153
|
-
options: undefined;
|
|
7154
|
-
};
|
|
7155
|
-
/** . */
|
|
7156
|
-
'shouldBeCalledOut': {
|
|
7157
|
-
type: 'boolean';
|
|
7158
|
-
options: undefined;
|
|
7159
|
-
};
|
|
7160
|
-
};
|
|
7161
|
-
}
|
|
7162
|
-
interface ReceiptTotalEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema> {
|
|
7163
|
-
}
|
|
7164
|
-
}
|
|
7165
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7166
|
-
interface Receipt {
|
|
7167
|
-
'header'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeader | undefined | null;
|
|
7168
|
-
'sections'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSection[] | undefined | null;
|
|
7169
|
-
'totals'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotal[] | undefined | null;
|
|
7170
|
-
}
|
|
7171
|
-
interface ReceiptSchema extends SpruceSchema.Schema {
|
|
7172
|
-
id: 'receipt';
|
|
7173
|
-
version: 'v2021_02_11';
|
|
7174
|
-
namespace: 'HeartwoodViewControllers';
|
|
7175
|
-
name: 'Receipt';
|
|
7176
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7177
|
-
fields: {
|
|
7178
|
-
/** . */
|
|
7179
|
-
'header': {
|
|
7180
|
-
type: 'schema';
|
|
7181
|
-
options: {
|
|
7182
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeaderSchema;
|
|
7183
|
-
};
|
|
7184
|
-
};
|
|
7185
|
-
/** . */
|
|
7186
|
-
'sections': {
|
|
7187
|
-
type: 'schema';
|
|
7188
|
-
isArray: true;
|
|
7189
|
-
options: {
|
|
7190
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSectionSchema;
|
|
7191
|
-
};
|
|
7192
|
-
};
|
|
7193
|
-
/** . */
|
|
7194
|
-
'totals': {
|
|
7195
|
-
type: 'schema';
|
|
7196
|
-
isArray: true;
|
|
7197
|
-
options: {
|
|
7198
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema;
|
|
7044
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataSetSchema;
|
|
7199
7045
|
};
|
|
7200
7046
|
};
|
|
7201
7047
|
};
|
|
7202
7048
|
}
|
|
7203
|
-
interface
|
|
7049
|
+
interface LineGraphEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LineGraphSchema> {
|
|
7204
7050
|
}
|
|
7205
7051
|
}
|
|
7206
7052
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
@@ -7256,6 +7102,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7256
7102
|
'pager'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Pager | undefined | null;
|
|
7257
7103
|
/** Bar chart. */
|
|
7258
7104
|
'barChart'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.BarChart | undefined | null;
|
|
7105
|
+
/** Line graph. */
|
|
7106
|
+
'lineGraph'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LineGraph | undefined | null;
|
|
7259
7107
|
/** Grid. */
|
|
7260
7108
|
'shouldRenderContentsAsGrid'?: boolean | undefined | null;
|
|
7261
7109
|
/** Grid size. */
|
|
@@ -7472,6 +7320,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7472
7320
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.BarChartSchema;
|
|
7473
7321
|
};
|
|
7474
7322
|
};
|
|
7323
|
+
/** Line graph. */
|
|
7324
|
+
'lineGraph': {
|
|
7325
|
+
label: 'Line graph';
|
|
7326
|
+
type: 'schema';
|
|
7327
|
+
options: {
|
|
7328
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LineGraphSchema;
|
|
7329
|
+
};
|
|
7330
|
+
};
|
|
7475
7331
|
/** Grid. */
|
|
7476
7332
|
'shouldRenderContentsAsGrid': {
|
|
7477
7333
|
label: 'Grid';
|
|
@@ -7527,6 +7383,200 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7527
7383
|
interface CardSectionEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSectionSchema> {
|
|
7528
7384
|
}
|
|
7529
7385
|
}
|
|
7386
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7387
|
+
interface Feed {
|
|
7388
|
+
'items': SpruceSchemas.Spruce.v2020_07_22.FeedItem[];
|
|
7389
|
+
'onSubmitMessage'?: (HeartwoodTypes.OnSubmitFeedMessageHandler) | undefined | null;
|
|
7390
|
+
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>) | undefined | null;
|
|
7391
|
+
}
|
|
7392
|
+
interface FeedSchema extends SpruceSchema.Schema {
|
|
7393
|
+
id: 'feed';
|
|
7394
|
+
version: 'v2021_02_11';
|
|
7395
|
+
namespace: 'HeartwoodViewControllers';
|
|
7396
|
+
name: 'Feed';
|
|
7397
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7398
|
+
fields: {
|
|
7399
|
+
/** . */
|
|
7400
|
+
'items': {
|
|
7401
|
+
type: 'schema';
|
|
7402
|
+
isRequired: true;
|
|
7403
|
+
isArray: true;
|
|
7404
|
+
minArrayLength: 0;
|
|
7405
|
+
options: {
|
|
7406
|
+
schema: SpruceSchemas.Spruce.v2020_07_22.FeedItemSchema;
|
|
7407
|
+
};
|
|
7408
|
+
};
|
|
7409
|
+
/** . */
|
|
7410
|
+
'onSubmitMessage': {
|
|
7411
|
+
type: 'raw';
|
|
7412
|
+
options: {
|
|
7413
|
+
valueType: `HeartwoodTypes.OnSubmitFeedMessageHandler`;
|
|
7414
|
+
};
|
|
7415
|
+
};
|
|
7416
|
+
/** . */
|
|
7417
|
+
'controller': {
|
|
7418
|
+
type: 'raw';
|
|
7419
|
+
options: {
|
|
7420
|
+
valueType: `HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>`;
|
|
7421
|
+
};
|
|
7422
|
+
};
|
|
7423
|
+
};
|
|
7424
|
+
}
|
|
7425
|
+
interface FeedEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FeedSchema> {
|
|
7426
|
+
}
|
|
7427
|
+
}
|
|
7428
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7429
|
+
interface PolarAreaDataItem {
|
|
7430
|
+
'label': string;
|
|
7431
|
+
'value': number;
|
|
7432
|
+
}
|
|
7433
|
+
interface PolarAreaDataItemSchema extends SpruceSchema.Schema {
|
|
7434
|
+
id: 'polarAreaDataItem';
|
|
7435
|
+
version: 'v2021_02_11';
|
|
7436
|
+
namespace: 'HeartwoodViewControllers';
|
|
7437
|
+
name: '';
|
|
7438
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7439
|
+
fields: {
|
|
7440
|
+
/** . */
|
|
7441
|
+
'label': {
|
|
7442
|
+
type: 'text';
|
|
7443
|
+
isRequired: true;
|
|
7444
|
+
options: undefined;
|
|
7445
|
+
};
|
|
7446
|
+
/** . */
|
|
7447
|
+
'value': {
|
|
7448
|
+
type: 'number';
|
|
7449
|
+
isRequired: true;
|
|
7450
|
+
options: undefined;
|
|
7451
|
+
};
|
|
7452
|
+
};
|
|
7453
|
+
}
|
|
7454
|
+
interface PolarAreaDataItemEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema> {
|
|
7455
|
+
}
|
|
7456
|
+
}
|
|
7457
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7458
|
+
interface PolarArea {
|
|
7459
|
+
'id'?: string | undefined | null;
|
|
7460
|
+
/** Controller. */
|
|
7461
|
+
'controller'?: (HeartwoodTypes.PolarAreaViewController) | undefined | null;
|
|
7462
|
+
'data': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItem[];
|
|
7463
|
+
}
|
|
7464
|
+
interface PolarAreaSchema extends SpruceSchema.Schema {
|
|
7465
|
+
id: 'polarArea';
|
|
7466
|
+
version: 'v2021_02_11';
|
|
7467
|
+
namespace: 'HeartwoodViewControllers';
|
|
7468
|
+
name: 'Polar Area';
|
|
7469
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7470
|
+
fields: {
|
|
7471
|
+
/** . */
|
|
7472
|
+
'id': {
|
|
7473
|
+
type: 'id';
|
|
7474
|
+
options: undefined;
|
|
7475
|
+
};
|
|
7476
|
+
/** Controller. */
|
|
7477
|
+
'controller': {
|
|
7478
|
+
label: 'Controller';
|
|
7479
|
+
type: 'raw';
|
|
7480
|
+
options: {
|
|
7481
|
+
valueType: `HeartwoodTypes.PolarAreaViewController`;
|
|
7482
|
+
};
|
|
7483
|
+
};
|
|
7484
|
+
/** . */
|
|
7485
|
+
'data': {
|
|
7486
|
+
type: 'schema';
|
|
7487
|
+
isRequired: true;
|
|
7488
|
+
isArray: true;
|
|
7489
|
+
options: {
|
|
7490
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema;
|
|
7491
|
+
};
|
|
7492
|
+
};
|
|
7493
|
+
};
|
|
7494
|
+
}
|
|
7495
|
+
interface PolarAreaEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaSchema> {
|
|
7496
|
+
}
|
|
7497
|
+
}
|
|
7498
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7499
|
+
interface ReceiptTotal {
|
|
7500
|
+
'label': string;
|
|
7501
|
+
'value': string;
|
|
7502
|
+
'shouldBeEmphasized'?: boolean | undefined | null;
|
|
7503
|
+
'shouldBeCalledOut'?: boolean | undefined | null;
|
|
7504
|
+
}
|
|
7505
|
+
interface ReceiptTotalSchema extends SpruceSchema.Schema {
|
|
7506
|
+
id: 'receiptTotal';
|
|
7507
|
+
version: 'v2021_02_11';
|
|
7508
|
+
namespace: 'HeartwoodViewControllers';
|
|
7509
|
+
name: '';
|
|
7510
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7511
|
+
fields: {
|
|
7512
|
+
/** . */
|
|
7513
|
+
'label': {
|
|
7514
|
+
type: 'text';
|
|
7515
|
+
isRequired: true;
|
|
7516
|
+
options: undefined;
|
|
7517
|
+
};
|
|
7518
|
+
/** . */
|
|
7519
|
+
'value': {
|
|
7520
|
+
type: 'text';
|
|
7521
|
+
isRequired: true;
|
|
7522
|
+
options: undefined;
|
|
7523
|
+
};
|
|
7524
|
+
/** . */
|
|
7525
|
+
'shouldBeEmphasized': {
|
|
7526
|
+
type: 'boolean';
|
|
7527
|
+
options: undefined;
|
|
7528
|
+
};
|
|
7529
|
+
/** . */
|
|
7530
|
+
'shouldBeCalledOut': {
|
|
7531
|
+
type: 'boolean';
|
|
7532
|
+
options: undefined;
|
|
7533
|
+
};
|
|
7534
|
+
};
|
|
7535
|
+
}
|
|
7536
|
+
interface ReceiptTotalEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema> {
|
|
7537
|
+
}
|
|
7538
|
+
}
|
|
7539
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7540
|
+
interface Receipt {
|
|
7541
|
+
'header'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeader | undefined | null;
|
|
7542
|
+
'sections'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSection[] | undefined | null;
|
|
7543
|
+
'totals'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotal[] | undefined | null;
|
|
7544
|
+
}
|
|
7545
|
+
interface ReceiptSchema extends SpruceSchema.Schema {
|
|
7546
|
+
id: 'receipt';
|
|
7547
|
+
version: 'v2021_02_11';
|
|
7548
|
+
namespace: 'HeartwoodViewControllers';
|
|
7549
|
+
name: 'Receipt';
|
|
7550
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7551
|
+
fields: {
|
|
7552
|
+
/** . */
|
|
7553
|
+
'header': {
|
|
7554
|
+
type: 'schema';
|
|
7555
|
+
options: {
|
|
7556
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeaderSchema;
|
|
7557
|
+
};
|
|
7558
|
+
};
|
|
7559
|
+
/** . */
|
|
7560
|
+
'sections': {
|
|
7561
|
+
type: 'schema';
|
|
7562
|
+
isArray: true;
|
|
7563
|
+
options: {
|
|
7564
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSectionSchema;
|
|
7565
|
+
};
|
|
7566
|
+
};
|
|
7567
|
+
/** . */
|
|
7568
|
+
'totals': {
|
|
7569
|
+
type: 'schema';
|
|
7570
|
+
isArray: true;
|
|
7571
|
+
options: {
|
|
7572
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema;
|
|
7573
|
+
};
|
|
7574
|
+
};
|
|
7575
|
+
};
|
|
7576
|
+
}
|
|
7577
|
+
interface ReceiptEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSchema> {
|
|
7578
|
+
}
|
|
7579
|
+
}
|
|
7530
7580
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7531
7581
|
interface ReceiptLineItem {
|
|
7532
7582
|
'id'?: string | undefined | null;
|
|
@@ -18297,8 +18347,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
18297
18347
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
18298
18348
|
interface BarChart {
|
|
18299
18349
|
'id'?: string | undefined | null;
|
|
18300
|
-
'controller'?: (HeartwoodTypes.
|
|
18301
|
-
'dataSets': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.
|
|
18350
|
+
'controller'?: (HeartwoodTypes.ChartViewController<HeartwoodTypes.BarChart>) | undefined | null;
|
|
18351
|
+
'dataSets': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataSet[];
|
|
18302
18352
|
}
|
|
18303
18353
|
interface BarChartSchema extends SpruceSchema.Schema {
|
|
18304
18354
|
id: 'barChart';
|
|
@@ -18316,7 +18366,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
18316
18366
|
'controller': {
|
|
18317
18367
|
type: 'raw';
|
|
18318
18368
|
options: {
|
|
18319
|
-
valueType: `HeartwoodTypes.
|
|
18369
|
+
valueType: `HeartwoodTypes.ChartViewController<HeartwoodTypes.BarChart>`;
|
|
18320
18370
|
};
|
|
18321
18371
|
};
|
|
18322
18372
|
/** . */
|
|
@@ -18326,7 +18376,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
18326
18376
|
isArray: true;
|
|
18327
18377
|
minArrayLength: 0;
|
|
18328
18378
|
options: {
|
|
18329
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.
|
|
18379
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataSetSchema;
|
|
18330
18380
|
};
|
|
18331
18381
|
};
|
|
18332
18382
|
};
|
|
@@ -18335,12 +18385,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
18335
18385
|
}
|
|
18336
18386
|
}
|
|
18337
18387
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
18338
|
-
interface
|
|
18388
|
+
interface ChartDataPoint {
|
|
18339
18389
|
'label'?: string | undefined | null;
|
|
18340
18390
|
'value': number;
|
|
18341
18391
|
}
|
|
18342
|
-
interface
|
|
18343
|
-
id: '
|
|
18392
|
+
interface ChartDataPointSchema extends SpruceSchema.Schema {
|
|
18393
|
+
id: 'chartDataPoint';
|
|
18344
18394
|
version: 'v2021_02_11';
|
|
18345
18395
|
namespace: 'HeartwoodViewControllers';
|
|
18346
18396
|
name: '';
|
|
@@ -18359,19 +18409,19 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
18359
18409
|
};
|
|
18360
18410
|
};
|
|
18361
18411
|
}
|
|
18362
|
-
interface
|
|
18412
|
+
interface ChartDataPointEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataPointSchema> {
|
|
18363
18413
|
}
|
|
18364
18414
|
}
|
|
18365
18415
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
18366
|
-
interface
|
|
18416
|
+
interface ChartDataSet {
|
|
18367
18417
|
'label'?: string | undefined | null;
|
|
18368
|
-
'dataPoints': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.
|
|
18418
|
+
'dataPoints': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataPoint[];
|
|
18369
18419
|
}
|
|
18370
|
-
interface
|
|
18371
|
-
id: '
|
|
18420
|
+
interface ChartDataSetSchema extends SpruceSchema.Schema {
|
|
18421
|
+
id: 'chartDataSet';
|
|
18372
18422
|
version: 'v2021_02_11';
|
|
18373
18423
|
namespace: 'HeartwoodViewControllers';
|
|
18374
|
-
name: '';
|
|
18424
|
+
name: 'Chart data set';
|
|
18375
18425
|
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
18376
18426
|
fields: {
|
|
18377
18427
|
/** . */
|
|
@@ -18386,12 +18436,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
18386
18436
|
isArray: true;
|
|
18387
18437
|
minArrayLength: 0;
|
|
18388
18438
|
options: {
|
|
18389
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.
|
|
18439
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataPointSchema;
|
|
18390
18440
|
};
|
|
18391
18441
|
};
|
|
18392
18442
|
};
|
|
18393
18443
|
}
|
|
18394
|
-
interface
|
|
18444
|
+
interface ChartDataSetEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ChartDataSetSchema> {
|
|
18395
18445
|
}
|
|
18396
18446
|
}
|
|
18397
18447
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { PagerViewController } from '.';
|
|
1
|
+
import { LineGraphViewController, PagerViewController } from '.';
|
|
2
2
|
import LockScreenSkillViewController from './skillViewControllers/LockScreen.svc';
|
|
3
3
|
import ActiveRecordCardViewController from './viewControllers/activeRecord/ActiveRecordCard.vc';
|
|
4
4
|
import ActiveRecordListViewController from './viewControllers/activeRecord/ActiveRecordList.vc';
|
|
5
|
-
import BarChartViewController from './viewControllers/BarChart.vc';
|
|
6
5
|
import BigFormViewController from './viewControllers/BigForm.vc';
|
|
7
6
|
import ButtonBarViewController from './viewControllers/ButtonBar.vc';
|
|
8
7
|
import ButtonGroupViewController from './viewControllers/ButtonGroup.vc';
|
|
9
8
|
import CalendarViewController from './viewControllers/Calendar.vc';
|
|
10
9
|
import CalendarEventViewController from './viewControllers/CalendarEvent.vc';
|
|
11
10
|
import CardViewController from './viewControllers/card/Card.vc';
|
|
11
|
+
import BarChartViewController from './viewControllers/charts/BarChart.vc';
|
|
12
12
|
import ConfirmViewController from './viewControllers/Confirm.vc';
|
|
13
13
|
import CountdownTimerViewController from './viewControllers/countdownTimer/CountdownTimer.vc';
|
|
14
14
|
import DialogViewController from './viewControllers/Dialog.vc';
|
|
@@ -96,5 +96,6 @@ export declare const CORE_CONTROLLER_MAP: {
|
|
|
96
96
|
'polar-area': typeof PolarAreaViewController;
|
|
97
97
|
pager: typeof PagerViewController;
|
|
98
98
|
'bar-chart': typeof BarChartViewController;
|
|
99
|
+
'line-graph': typeof LineGraphViewController;
|
|
99
100
|
'lock-screen': typeof LockScreenSkillViewController;
|
|
100
101
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { PagerViewController } from './index.js';
|
|
1
|
+
import { LineGraphViewController, PagerViewController } from './index.js';
|
|
2
2
|
import LockScreenSkillViewController from './skillViewControllers/LockScreen.svc.js';
|
|
3
3
|
import ActiveRecordCardViewController from './viewControllers/activeRecord/ActiveRecordCard.vc.js';
|
|
4
4
|
import ActiveRecordListViewController from './viewControllers/activeRecord/ActiveRecordList.vc.js';
|
|
5
|
-
import BarChartViewController from './viewControllers/BarChart.vc.js';
|
|
6
5
|
import BigFormViewController from './viewControllers/BigForm.vc.js';
|
|
7
6
|
import ButtonBarViewController from './viewControllers/ButtonBar.vc.js';
|
|
8
7
|
import ButtonGroupViewController from './viewControllers/ButtonGroup.vc.js';
|
|
9
8
|
import CalendarViewController from './viewControllers/Calendar.vc.js';
|
|
10
9
|
import CalendarEventViewController from './viewControllers/CalendarEvent.vc.js';
|
|
11
10
|
import CardViewController from './viewControllers/card/Card.vc.js';
|
|
11
|
+
import BarChartViewController from './viewControllers/charts/BarChart.vc.js';
|
|
12
12
|
import ConfirmViewController from './viewControllers/Confirm.vc.js';
|
|
13
13
|
import CountdownTimerViewController from './viewControllers/countdownTimer/CountdownTimer.vc.js';
|
|
14
14
|
import DialogViewController from './viewControllers/Dialog.vc.js';
|
|
@@ -96,5 +96,6 @@ export const CORE_CONTROLLER_MAP = {
|
|
|
96
96
|
'polar-area': PolarAreaViewController,
|
|
97
97
|
pager: PagerViewController,
|
|
98
98
|
'bar-chart': BarChartViewController,
|
|
99
|
+
'line-graph': LineGraphViewController,
|
|
99
100
|
'lock-screen': LockScreenSkillViewController,
|
|
100
101
|
};
|
package/build/esm/index.d.ts
CHANGED
|
@@ -19,7 +19,8 @@ export { default as ListRowViewController } from './viewControllers/list/ListRow
|
|
|
19
19
|
export { default as ListCellViewController } from './viewControllers/list/ListCell.vc';
|
|
20
20
|
export { default as FormViewControllerImpl } from './viewControllers/form/Form.vc';
|
|
21
21
|
export { default as ToolBeltViewController } from './viewControllers/ToolBelt.vc';
|
|
22
|
-
export { default as BarChartViewController } from './viewControllers/BarChart.vc';
|
|
22
|
+
export { default as BarChartViewController } from './viewControllers/charts/BarChart.vc';
|
|
23
|
+
export { default as LineGraphViewController } from './viewControllers/charts/LineGraph.vc';
|
|
23
24
|
export * from './viewControllers/ToolBelt.vc';
|
|
24
25
|
export * from './viewControllers/form/Form.vc';
|
|
25
26
|
export { default as LoginViewController } from './viewControllers/Login.vc';
|
|
@@ -173,7 +174,7 @@ export { default as calendarInteractor } from './tests/utilities/calendarInterac
|
|
|
173
174
|
export { default as countdownTimerAssert } from './tests/utilities/countdownTimerAssert';
|
|
174
175
|
export { default as countdownTimerInteractor } from './tests/utilities/countdownTimerInteractor';
|
|
175
176
|
export { default as progressNavigatorAssert } from './tests/utilities/progressNavigatorAssert';
|
|
176
|
-
export { default as
|
|
177
|
+
export { default as chartAssert } from './tests/utilities/chartAssert';
|
|
177
178
|
export { default as interactionUtil } from './tests/utilities/interaction.utility';
|
|
178
179
|
export { default as calendarSeeder } from './tests/utilities/calendarSeeder';
|
|
179
180
|
export { default as confirmTestPatcher } from './tests/utilities/confirmTestPatcher';
|
|
@@ -196,8 +197,9 @@ export { default as progressNavigatorSchema } from './.spruce/schemas/heartwoodV
|
|
|
196
197
|
export { default as progressNavigatorStepSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/progressNavigatorStep.schema';
|
|
197
198
|
export { default as progressDetailsSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/progressDetails.schema';
|
|
198
199
|
export { default as barChartSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChart.schema';
|
|
199
|
-
export { default as
|
|
200
|
-
export { default as
|
|
200
|
+
export { default as lineGraphSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/lineGraph.schema';
|
|
201
|
+
export { default as chartDataPointSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataPoint.schema';
|
|
202
|
+
export { default as chartDataSetSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataSet.schema';
|
|
201
203
|
export { default as navigationButtonDropdownSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/navigationButtonDropdown.schema';
|
|
202
204
|
export { default as navigationDropdownButtonSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/navigationDropdownButton.schema';
|
|
203
205
|
export { default as routerDestinationSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/routerDestination.schema';
|
package/build/esm/index.js
CHANGED
|
@@ -19,7 +19,8 @@ export { default as ListRowViewController } from './viewControllers/list/ListRow
|
|
|
19
19
|
export { default as ListCellViewController } from './viewControllers/list/ListCell.vc.js';
|
|
20
20
|
export { default as FormViewControllerImpl } from './viewControllers/form/Form.vc.js';
|
|
21
21
|
export { default as ToolBeltViewController } from './viewControllers/ToolBelt.vc.js';
|
|
22
|
-
export { default as BarChartViewController } from './viewControllers/BarChart.vc.js';
|
|
22
|
+
export { default as BarChartViewController } from './viewControllers/charts/BarChart.vc.js';
|
|
23
|
+
export { default as LineGraphViewController } from './viewControllers/charts/LineGraph.vc.js';
|
|
23
24
|
export * from './viewControllers/ToolBelt.vc.js';
|
|
24
25
|
export * from './viewControllers/form/Form.vc.js';
|
|
25
26
|
export { default as LoginViewController } from './viewControllers/Login.vc.js';
|
|
@@ -172,7 +173,7 @@ export { default as calendarInteractor } from './tests/utilities/calendarInterac
|
|
|
172
173
|
export { default as countdownTimerAssert } from './tests/utilities/countdownTimerAssert.js';
|
|
173
174
|
export { default as countdownTimerInteractor } from './tests/utilities/countdownTimerInteractor.js';
|
|
174
175
|
export { default as progressNavigatorAssert } from './tests/utilities/progressNavigatorAssert.js';
|
|
175
|
-
export { default as
|
|
176
|
+
export { default as chartAssert } from './tests/utilities/chartAssert.js';
|
|
176
177
|
export { default as interactionUtil } from './tests/utilities/interaction.utility.js';
|
|
177
178
|
export { default as calendarSeeder } from './tests/utilities/calendarSeeder.js';
|
|
178
179
|
export { default as confirmTestPatcher } from './tests/utilities/confirmTestPatcher.js';
|
|
@@ -195,8 +196,9 @@ export { default as progressNavigatorSchema } from './.spruce/schemas/heartwoodV
|
|
|
195
196
|
export { default as progressNavigatorStepSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/progressNavigatorStep.schema.js';
|
|
196
197
|
export { default as progressDetailsSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/progressDetails.schema.js';
|
|
197
198
|
export { default as barChartSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/barChart.schema.js';
|
|
198
|
-
export { default as
|
|
199
|
-
export { default as
|
|
199
|
+
export { default as lineGraphSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/lineGraph.schema.js';
|
|
200
|
+
export { default as chartDataPointSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataPoint.schema.js';
|
|
201
|
+
export { default as chartDataSetSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/chartDataSet.schema.js';
|
|
200
202
|
export { default as navigationButtonDropdownSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/navigationButtonDropdown.schema.js';
|
|
201
203
|
export { default as navigationDropdownButtonSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/navigationDropdownButton.schema.js';
|
|
202
204
|
export { default as routerDestinationSchema } from './.spruce/schemas/heartwoodViewControllers/v2021_02_11/routerDestination.schema.js';
|