* Icon component deleted and changed the imports in refrence places * design system package version changed * import changes * Delete TextInput.tsx * Change imports * Change single named import * Update package * Update package * Delete ScrollIndicator.tsx * Change imports * Icon import completed * Event type added * Changed Button component imports * import change button * Button onclick type fix * Label with Tooltip import changes * Changed breadcrumbs import * EmojiPicker and Emoji Reaction import changes * AppIcon import change * import bug fix * Menu Item import chnages * Icon selector imports changed * Delete LabelWithTooltip.tsx * Change imports across the app * Update package version * Update version number for design-system * Delete Checkbox.tsx * Remove the exports * Add lock file for ds package update * Change imports * default import -> named * Update release version * Make arg type explicit * Updated design-system to latest release * Missing file mysteriously comes back and is updated accordingly * changes design-system package version * Add types to arguments in the onChange for text input * onBlur type fix * Search component in property pane * WDS button changes reverted * package version bumped * conflict fix * Remove Dropdown, change imports * Category import fix * fix: table icon size import * Bump version of design system package * Yarn lock Co-authored-by: Tanvi Bhakta <tanvibhakta@gmail.com>
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
import styled from "styled-components";
|
|
import { Button } from "design-system";
|
|
import RadioComponent from "components/ads/Radio";
|
|
import { getTypographyByKey } from "constants/DefaultTheme";
|
|
import Dialog from "components/ads/DialogComponent";
|
|
import { Classes } from "@blueprintjs/core";
|
|
|
|
const TriggerButton = styled(Button)`
|
|
${(props) => getTypographyByKey(props, "btnLarge")}
|
|
height: 100%;
|
|
`;
|
|
|
|
const StyledDialog = styled(Dialog)`
|
|
&& .${Classes.DIALOG_BODY} {
|
|
padding-top: 0px;
|
|
}
|
|
`;
|
|
|
|
const StyledRadioComponent = styled(RadioComponent)`
|
|
label {
|
|
font-size: 16px;
|
|
margin-bottom: 32px;
|
|
}
|
|
`;
|
|
|
|
const ForkButton = styled(Button)<{ disabled?: boolean }>`
|
|
height: 38px;
|
|
width: 203px;
|
|
pointer-events: ${(props) => (!!props.disabled ? "none" : "auto")};
|
|
`;
|
|
|
|
const WorkspaceList = styled.div`
|
|
overflow: auto;
|
|
max-height: 250px;
|
|
margin-bottom: 10px;
|
|
margin-top: 20px;
|
|
`;
|
|
|
|
const ButtonWrapper = styled.div`
|
|
display: flex;
|
|
margin-top: ${(props) => props.theme.spaces[11]}px;
|
|
gap: ${(props) => props.theme.spaces[4]}px;
|
|
justify-content: flex-end;
|
|
`;
|
|
|
|
const SpinnerWrapper = styled.div`
|
|
display: flex;
|
|
justify-content: center;
|
|
`;
|
|
|
|
export {
|
|
TriggerButton,
|
|
StyledDialog,
|
|
StyledRadioComponent,
|
|
ForkButton,
|
|
WorkspaceList,
|
|
ButtonWrapper,
|
|
SpinnerWrapper,
|
|
};
|