+
{formatMessage.rich(
'Add connections to make your bot available in Webchat, Direct Line Speech, Microsoft Teams and more.
Learn more.',
{
@@ -54,12 +54,14 @@ const AdapterSection = ({ projectId, scrollToSectionId }: Props) => {
'Find and install more external services to your bot project in
package manager. For further guidance, see documentation for
adding external connections.',
{
a: ({ children }) => (
-
{
+ navigateTo(`/bot/${projectId}/plugin/package-manager/package-manager`);
+ }}
>
{children}
-
+
),
a2: ({ children }) => (
{
{formatMessage.rich('
Add from package manager', {
a: ({ children }) => (
-
+ {
+ navigateTo(`/bot/${projectId}/plugin/package-manager/package-manager`);
+ }}
+ >
{children}
-
+
),
})}
diff --git a/Composer/packages/client/src/pages/botProject/runtime-settings/RuntimeSettings.tsx b/Composer/packages/client/src/pages/botProject/runtime-settings/RuntimeSettings.tsx
index a839f74e4e..d83efe5ae9 100644
--- a/Composer/packages/client/src/pages/botProject/runtime-settings/RuntimeSettings.tsx
+++ b/Composer/packages/client/src/pages/botProject/runtime-settings/RuntimeSettings.tsx
@@ -273,7 +273,6 @@ export const RuntimeSettings: React.FC
handleRuntimeSettingOnBlur('command')}
onChange={handleRuntimeSettingOnChange('command')}
- onRenderLabel={onRenderLabel}
/>
{needsUpdate && (
diff --git a/Composer/packages/client/src/pages/botProject/styles.ts b/Composer/packages/client/src/pages/botProject/styles.ts
index 7b755b4cc6..9060983fbf 100644
--- a/Composer/packages/client/src/pages/botProject/styles.ts
+++ b/Composer/packages/client/src/pages/botProject/styles.ts
@@ -8,10 +8,16 @@ import { FontSizes, FontWeights, mergeStyleSets } from 'office-ui-fabric-react/l
export const title = css`
font-size: ${FontSizes.large};
font-weight: ${FontWeights.semibold};
- margin-top: 20px;
+ margin-top: 25px;
margin-bottom: 5px;
`;
+export const tabContentContainer = css`
+ margin-left: 10px;
+ max-width: 580px;
+ padding-bottom: 10px;
+`;
+
export const subtext = css`
color: ${NeutralColors.gray130};
font-size: ${FontSizes.medium};
@@ -24,6 +30,12 @@ export const subtitle = css`
padding: 12px 0;
`;
+export const headerText = css`
+ color: ${NeutralColors.gray130};
+ font-size: ${FontSizes.medium};
+ margin-top: 25px;
+`;
+
export const sectionHeader = css`
font-weight: ${FontWeights.semibold};
font-size: ${FontSizes.medium};
@@ -44,7 +56,6 @@ export const tableRow = css`
flex-direction: row;
align-items: center;
height: 42px;
- width: 750px;
`;
export const tableRowItem = (width?: string) => css`
@@ -59,7 +70,7 @@ export const tableRowItem = (width?: string) => css`
export const tableColumnHeader = (width?: string) => css`
font-size: ${FontSizes.medium};
- font-weight: ${FontWeights.bold};
+ font-weight: ${FontWeights.semibold};
padding-top: 10px;
padding-left: 10px;
text-overflow: ellipsis;
@@ -133,7 +144,8 @@ export const unknownIconStyle = (required: boolean) => {
};
export const columnSizes = ['300px', '150px', '150px'];
-export const extendedColumnSizes = ['300px', '150px', '300px'];
+export const extendedColumnSizes = ['220px', '80px', '250px'];
+export const publishProfileButtonColumnSize = '50px';
export const actionButton = {
root: {
@@ -142,10 +154,11 @@ export const actionButton = {
color: SharedColors.cyanBlue10,
paddingLeft: 0,
marginLeft: 5,
+ width: '120px',
},
};
-export const inputFieldStyles = mergeStyleSets({ root: { marginTop: 10, width: '75%' } }, customError);
+export const inputFieldStyles = mergeStyleSets({ root: { marginTop: 10 } }, customError);
export const teamsCallOutStyles = mergeStyleSets({
callout: {
@@ -159,5 +172,6 @@ export const teamsCallOutStyles = mergeStyleSets({
link: {
display: 'block',
marginTop: 20,
+ color: NeutralColors.white,
},
});
diff --git a/Composer/packages/client/src/pages/publish/BotStatusList.tsx b/Composer/packages/client/src/pages/publish/BotStatusList.tsx
index 84bc6196af..fa01643fee 100644
--- a/Composer/packages/client/src/pages/publish/BotStatusList.tsx
+++ b/Composer/packages/client/src/pages/publish/BotStatusList.tsx
@@ -219,7 +219,7 @@ export const BotStatusList: React.FC
= ({
name: formatMessage('Publish target'),
className: 'publishTarget',
fieldName: 'target',
- minWidth: 100,
+ minWidth: 150,
maxWidth: 200,
isRowHeader: true,
data: 'string',
diff --git a/Composer/packages/client/src/pages/publish/Publish.tsx b/Composer/packages/client/src/pages/publish/Publish.tsx
index ed17b037f6..79bad299e7 100644
--- a/Composer/packages/client/src/pages/publish/Publish.tsx
+++ b/Composer/packages/client/src/pages/publish/Publish.tsx
@@ -494,7 +494,7 @@ const Publish: React.FC