@sprucelabs/heartwood-view-controllers 128.2.0 → 128.3.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/feed.schema.js +7 -0
- package/build/.spruce/schemas/schemas.types.d.ts +9 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/feed.schema.js +7 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +9 -0
- package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +5 -0
- package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +5 -0
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +5 -0
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +5 -0
- package/build/esm/schemas/v2021_02_11/feed.builder.d.ts +5 -0
- package/build/esm/schemas/v2021_02_11/feed.builder.js +4 -0
- package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/cards/card.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/feed.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/feed.builder.js +5 -0
- package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +5 -0
- package/package.json +1 -1
|
@@ -26,6 +26,13 @@ const feedSchema = {
|
|
|
26
26
|
hint: 'Determines how the feed should handle scrolling. Inline will scroll within the feed area, while Full View delegates scrolling to the entire view.',
|
|
27
27
|
options: { choices: [{ "value": "inline", "label": "Inline Scroll" }, { "value": "fullView", "label": "Full View" }], }
|
|
28
28
|
},
|
|
29
|
+
/** Agent Name. The name of the agent associated with this feed. Defaults to "Sprucebot" */
|
|
30
|
+
'agentName': {
|
|
31
|
+
label: 'Agent Name',
|
|
32
|
+
type: 'text',
|
|
33
|
+
hint: 'The name of the agent associated with this feed. Defaults to "Sprucebot"',
|
|
34
|
+
options: undefined
|
|
35
|
+
},
|
|
29
36
|
/** . */
|
|
30
37
|
'onSubmitMessage': {
|
|
31
38
|
type: 'raw',
|
|
@@ -7835,6 +7835,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7835
7835
|
'items': SpruceSchemas.Spruce.v2020_07_22.FeedItem[];
|
|
7836
7836
|
/** . Determines how the feed should handle scrolling. Inline will scroll within the feed area, while Full View delegates scrolling to the entire view. */
|
|
7837
7837
|
'scrollMode'?: ("inline" | "fullView") | undefined | null;
|
|
7838
|
+
/** Agent Name. The name of the agent associated with this feed. Defaults to "Sprucebot" */
|
|
7839
|
+
'agentName'?: string | undefined | null;
|
|
7838
7840
|
'onSubmitMessage'?: (HeartwoodTypes.OnSubmitFeedMessageHandler) | undefined | null;
|
|
7839
7841
|
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>) | undefined | null;
|
|
7840
7842
|
}
|
|
@@ -7869,6 +7871,13 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7869
7871
|
}];
|
|
7870
7872
|
};
|
|
7871
7873
|
};
|
|
7874
|
+
/** Agent Name. The name of the agent associated with this feed. Defaults to "Sprucebot" */
|
|
7875
|
+
'agentName': {
|
|
7876
|
+
label: 'Agent Name';
|
|
7877
|
+
type: 'text';
|
|
7878
|
+
hint: 'The name of the agent associated with this feed. Defaults to "Sprucebot"';
|
|
7879
|
+
options: undefined;
|
|
7880
|
+
};
|
|
7872
7881
|
/** . */
|
|
7873
7882
|
'onSubmitMessage': {
|
|
7874
7883
|
type: 'raw';
|
|
@@ -21,6 +21,13 @@ const feedSchema = {
|
|
|
21
21
|
hint: 'Determines how the feed should handle scrolling. Inline will scroll within the feed area, while Full View delegates scrolling to the entire view.',
|
|
22
22
|
options: { choices: [{ "value": "inline", "label": "Inline Scroll" }, { "value": "fullView", "label": "Full View" }], }
|
|
23
23
|
},
|
|
24
|
+
/** Agent Name. The name of the agent associated with this feed. Defaults to "Sprucebot" */
|
|
25
|
+
'agentName': {
|
|
26
|
+
label: 'Agent Name',
|
|
27
|
+
type: 'text',
|
|
28
|
+
hint: 'The name of the agent associated with this feed. Defaults to "Sprucebot"',
|
|
29
|
+
options: undefined
|
|
30
|
+
},
|
|
24
31
|
/** . */
|
|
25
32
|
'onSubmitMessage': {
|
|
26
33
|
type: 'raw',
|
|
@@ -7835,6 +7835,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7835
7835
|
'items': SpruceSchemas.Spruce.v2020_07_22.FeedItem[];
|
|
7836
7836
|
/** . Determines how the feed should handle scrolling. Inline will scroll within the feed area, while Full View delegates scrolling to the entire view. */
|
|
7837
7837
|
'scrollMode'?: ("inline" | "fullView") | undefined | null;
|
|
7838
|
+
/** Agent Name. The name of the agent associated with this feed. Defaults to "Sprucebot" */
|
|
7839
|
+
'agentName'?: string | undefined | null;
|
|
7838
7840
|
'onSubmitMessage'?: (HeartwoodTypes.OnSubmitFeedMessageHandler) | undefined | null;
|
|
7839
7841
|
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>) | undefined | null;
|
|
7840
7842
|
}
|
|
@@ -7869,6 +7871,13 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7869
7871
|
}];
|
|
7870
7872
|
};
|
|
7871
7873
|
};
|
|
7874
|
+
/** Agent Name. The name of the agent associated with this feed. Defaults to "Sprucebot" */
|
|
7875
|
+
'agentName': {
|
|
7876
|
+
label: 'Agent Name';
|
|
7877
|
+
type: 'text';
|
|
7878
|
+
hint: 'The name of the agent associated with this feed. Defaults to "Sprucebot"';
|
|
7879
|
+
options: undefined;
|
|
7880
|
+
};
|
|
7872
7881
|
/** . */
|
|
7873
7882
|
'onSubmitMessage': {
|
|
7874
7883
|
type: 'raw';
|
|
@@ -30069,6 +30069,11 @@ declare const _default: {
|
|
|
30069
30069
|
};
|
|
30070
30070
|
hint: string;
|
|
30071
30071
|
};
|
|
30072
|
+
agentName: {
|
|
30073
|
+
type: "text";
|
|
30074
|
+
label: string;
|
|
30075
|
+
hint: string;
|
|
30076
|
+
};
|
|
30072
30077
|
onSubmitMessage: {
|
|
30073
30078
|
type: "raw";
|
|
30074
30079
|
options: {
|
|
@@ -22838,6 +22838,11 @@ declare const _default: {
|
|
|
22838
22838
|
};
|
|
22839
22839
|
hint: string;
|
|
22840
22840
|
};
|
|
22841
|
+
agentName: {
|
|
22842
|
+
type: "text";
|
|
22843
|
+
label: string;
|
|
22844
|
+
hint: string;
|
|
22845
|
+
};
|
|
22841
22846
|
onSubmitMessage: {
|
|
22842
22847
|
type: "raw";
|
|
22843
22848
|
options: {
|
|
@@ -22783,6 +22783,11 @@ declare const _default: {
|
|
|
22783
22783
|
};
|
|
22784
22784
|
hint: string;
|
|
22785
22785
|
};
|
|
22786
|
+
agentName: {
|
|
22787
|
+
type: "text";
|
|
22788
|
+
label: string;
|
|
22789
|
+
hint: string;
|
|
22790
|
+
};
|
|
22786
22791
|
onSubmitMessage: {
|
|
22787
22792
|
type: "raw";
|
|
22788
22793
|
options: {
|
|
@@ -30111,6 +30111,11 @@ declare const _default: {
|
|
|
30111
30111
|
};
|
|
30112
30112
|
hint: string;
|
|
30113
30113
|
};
|
|
30114
|
+
agentName: {
|
|
30115
|
+
type: "text";
|
|
30116
|
+
label: string;
|
|
30117
|
+
hint: string;
|
|
30118
|
+
};
|
|
30114
30119
|
onSubmitMessage: {
|
|
30115
30120
|
type: "raw";
|
|
30116
30121
|
options: {
|
|
@@ -18,6 +18,10 @@ export default buildSchema({
|
|
|
18
18
|
],
|
|
19
19
|
},
|
|
20
20
|
hint: 'Determines how the feed should handle scrolling. Inline will scroll within the feed area, while Full View delegates scrolling to the entire view.',
|
|
21
|
+
}, agentName: {
|
|
22
|
+
type: 'text',
|
|
23
|
+
label: 'Agent Name',
|
|
24
|
+
hint: 'The name of the agent associated with this feed. Defaults to "Sprucebot"',
|
|
21
25
|
}, onSubmitMessage: {
|
|
22
26
|
type: 'raw',
|
|
23
27
|
options: {
|
|
@@ -30141,6 +30141,11 @@ declare const _default: {
|
|
|
30141
30141
|
};
|
|
30142
30142
|
hint: string;
|
|
30143
30143
|
};
|
|
30144
|
+
agentName: {
|
|
30145
|
+
type: "text";
|
|
30146
|
+
label: string;
|
|
30147
|
+
hint: string;
|
|
30148
|
+
};
|
|
30144
30149
|
onSubmitMessage: {
|
|
30145
30150
|
type: "raw";
|
|
30146
30151
|
options: {
|
|
@@ -30069,6 +30069,11 @@ declare const _default: {
|
|
|
30069
30069
|
};
|
|
30070
30070
|
hint: string;
|
|
30071
30071
|
};
|
|
30072
|
+
agentName: {
|
|
30073
|
+
type: "text";
|
|
30074
|
+
label: string;
|
|
30075
|
+
hint: string;
|
|
30076
|
+
};
|
|
30072
30077
|
onSubmitMessage: {
|
|
30073
30078
|
type: "raw";
|
|
30074
30079
|
options: {
|
|
@@ -22838,6 +22838,11 @@ declare const _default: {
|
|
|
22838
22838
|
};
|
|
22839
22839
|
hint: string;
|
|
22840
22840
|
};
|
|
22841
|
+
agentName: {
|
|
22842
|
+
type: "text";
|
|
22843
|
+
label: string;
|
|
22844
|
+
hint: string;
|
|
22845
|
+
};
|
|
22841
22846
|
onSubmitMessage: {
|
|
22842
22847
|
type: "raw";
|
|
22843
22848
|
options: {
|
|
@@ -22783,6 +22783,11 @@ declare const _default: {
|
|
|
22783
22783
|
};
|
|
22784
22784
|
hint: string;
|
|
22785
22785
|
};
|
|
22786
|
+
agentName: {
|
|
22787
|
+
type: "text";
|
|
22788
|
+
label: string;
|
|
22789
|
+
hint: string;
|
|
22790
|
+
};
|
|
22786
22791
|
onSubmitMessage: {
|
|
22787
22792
|
type: "raw";
|
|
22788
22793
|
options: {
|
|
@@ -30111,6 +30111,11 @@ declare const _default: {
|
|
|
30111
30111
|
};
|
|
30112
30112
|
hint: string;
|
|
30113
30113
|
};
|
|
30114
|
+
agentName: {
|
|
30115
|
+
type: "text";
|
|
30116
|
+
label: string;
|
|
30117
|
+
hint: string;
|
|
30118
|
+
};
|
|
30114
30119
|
onSubmitMessage: {
|
|
30115
30120
|
type: "raw";
|
|
30116
30121
|
options: {
|
|
@@ -23,6 +23,11 @@ exports.default = (0, schema_1.buildSchema)({
|
|
|
23
23
|
},
|
|
24
24
|
hint: 'Determines how the feed should handle scrolling. Inline will scroll within the feed area, while Full View delegates scrolling to the entire view.',
|
|
25
25
|
},
|
|
26
|
+
agentName: {
|
|
27
|
+
type: 'text',
|
|
28
|
+
label: 'Agent Name',
|
|
29
|
+
hint: 'The name of the agent associated with this feed. Defaults to "Sprucebot"',
|
|
30
|
+
},
|
|
26
31
|
onSubmitMessage: {
|
|
27
32
|
type: 'raw',
|
|
28
33
|
options: {
|
|
@@ -30141,6 +30141,11 @@ declare const _default: {
|
|
|
30141
30141
|
};
|
|
30142
30142
|
hint: string;
|
|
30143
30143
|
};
|
|
30144
|
+
agentName: {
|
|
30145
|
+
type: "text";
|
|
30146
|
+
label: string;
|
|
30147
|
+
hint: string;
|
|
30148
|
+
};
|
|
30144
30149
|
onSubmitMessage: {
|
|
30145
30150
|
type: "raw";
|
|
30146
30151
|
options: {
|
package/package.json
CHANGED