-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a customizable PopoverTimepicker (#2781)
* feat: daily plan compare estimated logic * fix: cspell error * fix: cspell error * feat: daily plan compare estimated logic * fix: cspell error * feat: customize time picker * fix: error * fix: error * fix: errors * fix: CSpell errors * fix: errors * fix: DeepScan errors --------- Co-authored-by: cedric karungu <[email protected]>
- Loading branch information
1 parent
4973610
commit f0282ec
Showing
6 changed files
with
328 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
{ | ||
"importSorter.generalConfiguration.sortOnBeforeSave": false, | ||
"importSorter.sortConfiguration.joinImportPaths": false, | ||
"cSpell.userWords": [], | ||
"cSpell.enabled": true, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"npm.packageManager": "yarn", | ||
"prettier.trailingComma": "none", | ||
"prettier.singleQuote": true, | ||
"editor.formatOnSave": true, | ||
"eslint.format.enable": true, | ||
"editor.tabSize": 4, | ||
"files.insertFinalNewline": true, | ||
"files.trimFinalNewlines": true, | ||
"files.trimTrailingWhitespace": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "explicit", | ||
"source.organizeImports": "never", | ||
"source.sortMembers": "never", | ||
"organizeImports": "never" | ||
}, | ||
"vsicons.presets.angular": true, | ||
"deepscan.enable": true, | ||
"cSpell.words": [], | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.DS_Store": true, | ||
"**/node_modules": false, | ||
"**/public/**/*.png": false, | ||
"**/public/**/*.jpg": false, | ||
"**/public/**/*.pdf": true | ||
}, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/.idea": true, | ||
"**/.idea/**/*.{xml,iml}": true, | ||
"**/.iml": true, | ||
"**/.yarn": true, | ||
"**/yarn.lock": true | ||
}, | ||
"docwriter.style": "Auto-detect" | ||
"importSorter.generalConfiguration.sortOnBeforeSave": false, | ||
"importSorter.sortConfiguration.joinImportPaths": false, | ||
"cSpell.userWords": [], | ||
"cSpell.enabled": true, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"npm.packageManager": "yarn", | ||
"prettier.trailingComma": "none", | ||
"prettier.singleQuote": true, | ||
"editor.formatOnSave": true, | ||
"eslint.format.enable": true, | ||
"editor.tabSize": 4, | ||
"files.insertFinalNewline": true, | ||
"files.trimFinalNewlines": true, | ||
"files.trimTrailingWhitespace": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "explicit", | ||
"source.organizeImports": "never", | ||
"source.sortMembers": "never", | ||
"organizeImports": "never" | ||
}, | ||
"vsicons.presets.angular": true, | ||
"deepscan.enable": true, | ||
"cSpell.words": ["Timepicker"], | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.DS_Store": true, | ||
"**/node_modules": false, | ||
"**/public/**/*.png": false, | ||
"**/public/**/*.jpg": false, | ||
"**/public/**/*.pdf": true | ||
}, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/.idea": true, | ||
"**/.idea/**/*.{xml,iml}": true, | ||
"**/.iml": true, | ||
"**/.yarn": true, | ||
"**/yarn.lock": true | ||
}, | ||
"docwriter.style": "Auto-detect" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import * as React from "react" | ||
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area" | ||
|
||
import { cn } from "lib/utils" | ||
|
||
const ScrollArea = React.forwardRef< | ||
React.ElementRef<typeof ScrollAreaPrimitive.Root>, | ||
React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> | ||
>(({ className, children, ...props }, ref) => ( | ||
<ScrollAreaPrimitive.Root | ||
ref={ref} | ||
className={cn("relative overflow-hidden", className)} | ||
{...props} | ||
> | ||
<ScrollAreaPrimitive.Viewport className="h-full w-full rounded-[inherit]"> | ||
{children} | ||
</ScrollAreaPrimitive.Viewport> | ||
<ScrollBar /> | ||
<ScrollAreaPrimitive.Corner /> | ||
</ScrollAreaPrimitive.Root> | ||
)) | ||
ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName | ||
|
||
const ScrollBar = React.forwardRef< | ||
React.ElementRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>, | ||
React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar> | ||
>(({ className, orientation = "vertical", ...props }, ref) => ( | ||
<ScrollAreaPrimitive.ScrollAreaScrollbar | ||
ref={ref} | ||
orientation={orientation} | ||
className={cn( | ||
"flex touch-none select-none transition-colors", | ||
orientation === "vertical" && | ||
"h-full w-2.5 border-l border-l-transparent p-[1px]", | ||
orientation === "horizontal" && | ||
"h-2.5 flex-col border-t border-t-transparent p-[1px]", | ||
className | ||
)} | ||
{...props} | ||
> | ||
<ScrollAreaPrimitive.ScrollAreaThumb className="relative flex-1 rounded-full bg-border" /> | ||
</ScrollAreaPrimitive.ScrollAreaScrollbar> | ||
)) | ||
ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName | ||
|
||
export { ScrollArea, ScrollBar } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.