Compare commits

...

21 Commits

Author SHA1 Message Date
MokireddySampath
8cf7301076 Update TreeComponent.test.tsx.snap 2023-04-18 17:00:15 +05:30
MokireddySampath
699651cc22 Update TreeComponent.test.tsx.snap 2023-04-18 16:56:49 +05:30
MokireddySampath
b45d5cc0b3 Update TreeComponent.tsx 2023-04-18 16:42:18 +05:30
MokireddySampath
852b2327eb Update ThroughputInput.test.tsx.snap 2023-04-18 16:41:44 +05:30
MokireddySampath
1a376f6845 Update ThroughputInput.tsx 2023-04-18 16:39:02 +05:30
MokireddySampath
86e1562c0b Update ThroughputInput.tsx 2023-04-18 16:37:37 +05:30
MokireddySampath
8ea5de96d6 Update TableEntity.tsx 2023-04-18 16:33:43 +05:30
MokireddySampath
89b5eebfa6 Update TableEntity.tsx 2023-04-18 16:33:05 +05:30
MokireddySampath
90acb46d7a Update TableEntity.tsx 2023-04-18 16:32:29 +05:30
MokireddySampath
bc8e07249e Update EntityValue.tsx 2023-04-18 16:32:11 +05:30
Sampath
98180f60bb Revert "role has been changed to combobox and test updated"
This reverts commit ec109b3145.
2023-04-17 12:03:18 +05:30
Sampath
ec109b3145 role has been changed to combobox and test updated 2023-04-16 23:20:11 +05:30
Sampath
cfc578f308 autofocus removed for input to resolve 2276949 2023-04-16 21:45:37 +05:30
Sampath
4ec6108f41 Commit to my local branch 2023-04-04 11:11:10 +05:30
Sampath
d63f1251dd Merge branch 'master' of https://github.com/MokireddySampath/cosmos-explorer 2023-04-04 11:10:39 +05:30
Sampath
40755e297d Merge branch 'master' of https://github.com/MokireddySampath/cosmos-explorer 2023-03-13 12:10:26 +05:30
Sampath
b84d5b572c sev2 accessibilitydefects in data explorer 2023-03-10 23:22:42 +05:30
Sampath
c711b59f7d alt text for decorative images 2023-02-25 23:25:12 +05:30
Sampath
e945963cf9 Revert "alt text attribute for images"
This reverts commit 5a660551c6.
2023-02-25 23:11:20 +05:30
Sampath
5a660551c6 alt text attribute for images 2023-02-25 22:53:52 +05:30
Sampath
b2d59f3b3f autoscale and manual radiobuutton fixes 2023-02-06 23:48:50 +05:30
2 changed files with 8 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ import {
Stack,
TeachingBubble,
Text,
TooltipHost,
TooltipHost
} from "@fluentui/react";
import * as Constants from "Common/Constants";
import { createCollection } from "Common/dataAccess/createCollection";
@@ -100,6 +100,7 @@ export interface AddCollectionPanelState {
isExecuting: boolean;
isThroughputCapExceeded: boolean;
teachingBubbleStep: number;
isParentTooltipVisible:boolean;
}
export class AddCollectionPanel extends React.Component<AddCollectionPanelProps, AddCollectionPanelState> {
@@ -108,6 +109,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
private collectionThroughput: number;
private isCollectionAutoscale: boolean;
private isCostAcknowledged: boolean;
constructor(props: AddCollectionPanelProps) {
super(props);
@@ -134,13 +136,16 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
isExecuting: false,
isThroughputCapExceeded: false,
teachingBubbleStep: 0,
isParentTooltipVisible: false,
};
}
componentDidMount(): void {
if (this.state.teachingBubbleStep === 0 && this.props.isQuickstart) {
this.setState({ teachingBubbleStep: 1 });
}
}
render(): JSX.Element {
@@ -408,6 +413,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
className="panelInfoIcon"
tabIndex={0}
ariaLabel={`Unique identifier for the ${getCollectionName().toLocaleLowerCase()} and used for id-based routing through REST and all SDKs.`}
/>
</TooltipHost>
</Stack>

View File

@@ -9,7 +9,7 @@ import {
Stack,
TeachingBubble,
TeachingBubbleContent,
Text,
Text
} from "@fluentui/react";
import { sendMessage } from "Common/MessageHandler";
import { MessageTypes } from "Contracts/ExplorerContracts";