├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── combini │ ├── CombiniSetup.css │ ├── components │ │ ├── Accordion.module.css │ │ ├── Accordion.tsx │ │ ├── Avatar.module.css │ │ ├── Avatar.tsx │ │ ├── Badge.module.css │ │ ├── Badge.tsx │ │ ├── Breadcrumb.module.css │ │ ├── Breadcrumb.tsx │ │ ├── Button.module.css │ │ ├── Button.tsx │ │ ├── Calendar.module.css │ │ ├── Calendar.tsx │ │ ├── Card.module.css │ │ ├── Card.tsx │ │ ├── Carousel.module.css │ │ ├── Carousel.tsx │ │ ├── ChangeAcceptanceCard.module.css │ │ ├── ChangeAcceptanceCard.tsx │ │ ├── Chart.module.css │ │ ├── Chart.tsx │ │ ├── Checkbox.module.css │ │ ├── Checkbox.tsx │ │ ├── Collapsible.module.css │ │ ├── Collapsible.tsx │ │ ├── Command.module.css │ │ ├── Command.tsx │ │ ├── ContextMenu.module.css │ │ ├── ContextMenu.tsx │ │ ├── Dialog.module.css │ │ ├── Dialog.tsx │ │ ├── DropdownMenu.module.css │ │ ├── DropdownMenu.tsx │ │ ├── EditorButton.module.css │ │ ├── EditorButton.tsx │ │ ├── EditorToolbar.module.css │ │ ├── EditorToolbar.tsx │ │ ├── FileDropzone.module.css │ │ ├── FileDropzone.tsx │ │ ├── Flex.module.css │ │ ├── Flex.tsx │ │ ├── Footer.module.css │ │ ├── Footer.tsx │ │ ├── Form.module.css │ │ ├── Form.tsx │ │ ├── HoverCard.module.css │ │ ├── HoverCard.tsx │ │ ├── Input.module.css │ │ ├── Input.tsx │ │ ├── Label.module.css │ │ ├── Label.tsx │ │ ├── LoadingAIProgressBar.module.css │ │ ├── LoadingAIProgressBar.tsx │ │ ├── Main.module.css │ │ ├── Main.tsx │ │ ├── Pagination.module.css │ │ ├── Pagination.tsx │ │ ├── Popover.module.css │ │ ├── Popover.tsx │ │ ├── Progress.module.css │ │ ├── Progress.tsx │ │ ├── RadioGroup.module.css │ │ ├── RadioGroup.tsx │ │ ├── Resizable.module.css │ │ ├── Resizable.tsx │ │ ├── Select.module.css │ │ ├── Select.tsx │ │ ├── Separator.module.css │ │ ├── Separator.tsx │ │ ├── Sheet.module.css │ │ ├── Sheet.tsx │ │ ├── Sidebar.module.css │ │ ├── Sidebar.tsx │ │ ├── Skeleton.module.css │ │ ├── Skeleton.tsx │ │ ├── Slider.module.css │ │ ├── Slider.tsx │ │ ├── SonnerToaster.module.css │ │ ├── SonnerToaster.tsx │ │ ├── Spinner.module.css │ │ ├── Spinner.tsx │ │ ├── Switch.module.css │ │ ├── Switch.tsx │ │ ├── Table.module.css │ │ ├── Table.tsx │ │ ├── Tabs.module.css │ │ ├── Tabs.tsx │ │ ├── TextEditor.module.css │ │ ├── TextEditor.tsx │ │ ├── Textarea.module.css │ │ ├── Textarea.tsx │ │ ├── Toggle.module.css │ │ ├── Toggle.tsx │ │ ├── ToggleGroup.module.css │ │ ├── ToggleGroup.tsx │ │ ├── Tooltip.module.css │ │ ├── Tooltip.tsx │ │ ├── __PendingItem.module.css │ │ └── __PendingItem.tsx │ └── helpers │ │ ├── DocVisitor.spec.tsx │ │ ├── DocVisitor.tsx │ │ ├── ai.spec.tsx │ │ ├── ai.tsx │ │ ├── autoCompletePlugin.module.css │ │ ├── autoCompletePlugin.spec.tsx │ │ ├── autoCompletePlugin.tsx │ │ ├── proofReadPlugin.module.css │ │ ├── proofReadPlugin.spec.tsx │ │ ├── proofReadPlugin.tsx │ │ ├── schema.module.css │ │ ├── schema.spec.tsx │ │ ├── schema.tsx │ │ ├── smartExpansionPlugin.module.css │ │ ├── smartExpansionPlugin.spec.tsx │ │ ├── smartExpansionPlugin.tsx │ │ ├── useIsMobile.tsx │ │ ├── useMediaQuery.spec.tsx │ │ ├── useMediaQuery.tsx │ │ ├── viewAI.spec.tsx │ │ └── viewAI.tsx └── index.tsx ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/combini/CombiniSetup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/CombiniSetup.css -------------------------------------------------------------------------------- /src/combini/components/Accordion.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Accordion.module.css -------------------------------------------------------------------------------- /src/combini/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Accordion.tsx -------------------------------------------------------------------------------- /src/combini/components/Avatar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Avatar.module.css -------------------------------------------------------------------------------- /src/combini/components/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Avatar.tsx -------------------------------------------------------------------------------- /src/combini/components/Badge.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Badge.module.css -------------------------------------------------------------------------------- /src/combini/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Badge.tsx -------------------------------------------------------------------------------- /src/combini/components/Breadcrumb.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Breadcrumb.module.css -------------------------------------------------------------------------------- /src/combini/components/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/combini/components/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Button.module.css -------------------------------------------------------------------------------- /src/combini/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Button.tsx -------------------------------------------------------------------------------- /src/combini/components/Calendar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Calendar.module.css -------------------------------------------------------------------------------- /src/combini/components/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Calendar.tsx -------------------------------------------------------------------------------- /src/combini/components/Card.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Card.module.css -------------------------------------------------------------------------------- /src/combini/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Card.tsx -------------------------------------------------------------------------------- /src/combini/components/Carousel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Carousel.module.css -------------------------------------------------------------------------------- /src/combini/components/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Carousel.tsx -------------------------------------------------------------------------------- /src/combini/components/ChangeAcceptanceCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/ChangeAcceptanceCard.module.css -------------------------------------------------------------------------------- /src/combini/components/ChangeAcceptanceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/ChangeAcceptanceCard.tsx -------------------------------------------------------------------------------- /src/combini/components/Chart.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Chart.module.css -------------------------------------------------------------------------------- /src/combini/components/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Chart.tsx -------------------------------------------------------------------------------- /src/combini/components/Checkbox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Checkbox.module.css -------------------------------------------------------------------------------- /src/combini/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/combini/components/Collapsible.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Collapsible.module.css -------------------------------------------------------------------------------- /src/combini/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Collapsible.tsx -------------------------------------------------------------------------------- /src/combini/components/Command.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Command.module.css -------------------------------------------------------------------------------- /src/combini/components/Command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Command.tsx -------------------------------------------------------------------------------- /src/combini/components/ContextMenu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/ContextMenu.module.css -------------------------------------------------------------------------------- /src/combini/components/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/ContextMenu.tsx -------------------------------------------------------------------------------- /src/combini/components/Dialog.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Dialog.module.css -------------------------------------------------------------------------------- /src/combini/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Dialog.tsx -------------------------------------------------------------------------------- /src/combini/components/DropdownMenu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/DropdownMenu.module.css -------------------------------------------------------------------------------- /src/combini/components/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/DropdownMenu.tsx -------------------------------------------------------------------------------- /src/combini/components/EditorButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/EditorButton.module.css -------------------------------------------------------------------------------- /src/combini/components/EditorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/EditorButton.tsx -------------------------------------------------------------------------------- /src/combini/components/EditorToolbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/EditorToolbar.module.css -------------------------------------------------------------------------------- /src/combini/components/EditorToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/EditorToolbar.tsx -------------------------------------------------------------------------------- /src/combini/components/FileDropzone.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/FileDropzone.module.css -------------------------------------------------------------------------------- /src/combini/components/FileDropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/FileDropzone.tsx -------------------------------------------------------------------------------- /src/combini/components/Flex.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Flex.module.css -------------------------------------------------------------------------------- /src/combini/components/Flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Flex.tsx -------------------------------------------------------------------------------- /src/combini/components/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Footer.module.css -------------------------------------------------------------------------------- /src/combini/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Footer.tsx -------------------------------------------------------------------------------- /src/combini/components/Form.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Form.module.css -------------------------------------------------------------------------------- /src/combini/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Form.tsx -------------------------------------------------------------------------------- /src/combini/components/HoverCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/HoverCard.module.css -------------------------------------------------------------------------------- /src/combini/components/HoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/HoverCard.tsx -------------------------------------------------------------------------------- /src/combini/components/Input.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Input.module.css -------------------------------------------------------------------------------- /src/combini/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Input.tsx -------------------------------------------------------------------------------- /src/combini/components/Label.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Label.module.css -------------------------------------------------------------------------------- /src/combini/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Label.tsx -------------------------------------------------------------------------------- /src/combini/components/LoadingAIProgressBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/LoadingAIProgressBar.module.css -------------------------------------------------------------------------------- /src/combini/components/LoadingAIProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/LoadingAIProgressBar.tsx -------------------------------------------------------------------------------- /src/combini/components/Main.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Main.module.css -------------------------------------------------------------------------------- /src/combini/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Main.tsx -------------------------------------------------------------------------------- /src/combini/components/Pagination.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Pagination.module.css -------------------------------------------------------------------------------- /src/combini/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Pagination.tsx -------------------------------------------------------------------------------- /src/combini/components/Popover.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Popover.module.css -------------------------------------------------------------------------------- /src/combini/components/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Popover.tsx -------------------------------------------------------------------------------- /src/combini/components/Progress.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Progress.module.css -------------------------------------------------------------------------------- /src/combini/components/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Progress.tsx -------------------------------------------------------------------------------- /src/combini/components/RadioGroup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/RadioGroup.module.css -------------------------------------------------------------------------------- /src/combini/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/RadioGroup.tsx -------------------------------------------------------------------------------- /src/combini/components/Resizable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Resizable.module.css -------------------------------------------------------------------------------- /src/combini/components/Resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Resizable.tsx -------------------------------------------------------------------------------- /src/combini/components/Select.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Select.module.css -------------------------------------------------------------------------------- /src/combini/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Select.tsx -------------------------------------------------------------------------------- /src/combini/components/Separator.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Separator.module.css -------------------------------------------------------------------------------- /src/combini/components/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Separator.tsx -------------------------------------------------------------------------------- /src/combini/components/Sheet.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Sheet.module.css -------------------------------------------------------------------------------- /src/combini/components/Sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Sheet.tsx -------------------------------------------------------------------------------- /src/combini/components/Sidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Sidebar.module.css -------------------------------------------------------------------------------- /src/combini/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/combini/components/Skeleton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Skeleton.module.css -------------------------------------------------------------------------------- /src/combini/components/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Skeleton.tsx -------------------------------------------------------------------------------- /src/combini/components/Slider.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Slider.module.css -------------------------------------------------------------------------------- /src/combini/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Slider.tsx -------------------------------------------------------------------------------- /src/combini/components/SonnerToaster.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/SonnerToaster.module.css -------------------------------------------------------------------------------- /src/combini/components/SonnerToaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/SonnerToaster.tsx -------------------------------------------------------------------------------- /src/combini/components/Spinner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Spinner.module.css -------------------------------------------------------------------------------- /src/combini/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Spinner.tsx -------------------------------------------------------------------------------- /src/combini/components/Switch.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Switch.module.css -------------------------------------------------------------------------------- /src/combini/components/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Switch.tsx -------------------------------------------------------------------------------- /src/combini/components/Table.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Table.module.css -------------------------------------------------------------------------------- /src/combini/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Table.tsx -------------------------------------------------------------------------------- /src/combini/components/Tabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Tabs.module.css -------------------------------------------------------------------------------- /src/combini/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Tabs.tsx -------------------------------------------------------------------------------- /src/combini/components/TextEditor.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/TextEditor.module.css -------------------------------------------------------------------------------- /src/combini/components/TextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/TextEditor.tsx -------------------------------------------------------------------------------- /src/combini/components/Textarea.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Textarea.module.css -------------------------------------------------------------------------------- /src/combini/components/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Textarea.tsx -------------------------------------------------------------------------------- /src/combini/components/Toggle.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Toggle.module.css -------------------------------------------------------------------------------- /src/combini/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Toggle.tsx -------------------------------------------------------------------------------- /src/combini/components/ToggleGroup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/ToggleGroup.module.css -------------------------------------------------------------------------------- /src/combini/components/ToggleGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/ToggleGroup.tsx -------------------------------------------------------------------------------- /src/combini/components/Tooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Tooltip.module.css -------------------------------------------------------------------------------- /src/combini/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/combini/components/__PendingItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/__PendingItem.module.css -------------------------------------------------------------------------------- /src/combini/components/__PendingItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/components/__PendingItem.tsx -------------------------------------------------------------------------------- /src/combini/helpers/DocVisitor.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/DocVisitor.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/DocVisitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/DocVisitor.tsx -------------------------------------------------------------------------------- /src/combini/helpers/ai.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/ai.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/ai.tsx -------------------------------------------------------------------------------- /src/combini/helpers/autoCompletePlugin.module.css: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /src/combini/helpers/autoCompletePlugin.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/autoCompletePlugin.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/autoCompletePlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/autoCompletePlugin.tsx -------------------------------------------------------------------------------- /src/combini/helpers/proofReadPlugin.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/proofReadPlugin.module.css -------------------------------------------------------------------------------- /src/combini/helpers/proofReadPlugin.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/proofReadPlugin.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/proofReadPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/proofReadPlugin.tsx -------------------------------------------------------------------------------- /src/combini/helpers/schema.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/schema.module.css -------------------------------------------------------------------------------- /src/combini/helpers/schema.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/schema.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/schema.tsx -------------------------------------------------------------------------------- /src/combini/helpers/smartExpansionPlugin.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/smartExpansionPlugin.module.css -------------------------------------------------------------------------------- /src/combini/helpers/smartExpansionPlugin.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/smartExpansionPlugin.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/smartExpansionPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/smartExpansionPlugin.tsx -------------------------------------------------------------------------------- /src/combini/helpers/useIsMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/useIsMobile.tsx -------------------------------------------------------------------------------- /src/combini/helpers/useMediaQuery.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/useMediaQuery.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/useMediaQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/useMediaQuery.tsx -------------------------------------------------------------------------------- /src/combini/helpers/viewAI.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/viewAI.spec.tsx -------------------------------------------------------------------------------- /src/combini/helpers/viewAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/combini/helpers/viewAI.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyjhao/wrait/HEAD/vite.config.ts --------------------------------------------------------------------------------