├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── ADD_TEMPLATE.yaml │ ├── REPORT_BUG.yaml │ └── feature_request.md └── workflows │ ├── documentation.yml │ └── releases.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── backend ├── app │ ├── __init__.py │ ├── application │ │ ├── __init__.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── action_service.py │ │ │ ├── step_service.py │ │ │ └── template_service.py │ ├── domain │ │ ├── __init__.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── community_action.py │ │ │ ├── community_step_settings.py │ │ │ └── template_filter.py │ ├── infrastructure │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ └── mongodb.py │ │ └── repositories │ │ │ ├── __init__.py │ │ │ ├── action_repository.py │ │ │ ├── step_repository.py │ │ │ └── template_repository.py │ ├── interfaces │ │ ├── __init__.py │ │ └── api │ │ │ ├── __init__.py │ │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── action_controller.py │ │ │ ├── step_controller.py │ │ │ └── template_controller.py │ │ │ └── routers │ │ │ ├── __init__.py │ │ │ ├── action_router.py │ │ │ ├── step_router.py │ │ │ └── template_router.py │ └── main.py ├── dockerfile └── requirements.txt ├── commitlint.config.ts ├── containers └── mongo │ └── dockerfile ├── docker-compose.yml ├── docs ├── actions │ ├── Backlink.md │ ├── Calendar.md │ ├── Checkbox.md │ ├── CssClasses.md │ ├── DynamicSelector.md │ ├── Number.md │ ├── Prompt.md │ ├── Script.md │ ├── Selector.md │ ├── Tags.md │ └── TaskManagement.md ├── api │ └── ZettelFlowAPI.md ├── extra_javascript │ └── navigationInstant.js ├── flows │ ├── para_system │ │ ├── flow.json │ │ └── image.png │ └── zettelkasten_inbox │ │ ├── Design Template.md │ │ ├── Idea Template.md │ │ ├── Meeting Template.md │ │ ├── flow.json │ │ ├── image.png │ │ └── templates │ │ ├── Design Template.md │ │ ├── Idea Template.md │ │ └── Meeting Template.md ├── how-to-contribute │ ├── Wiki.md │ └── community-examples.md ├── index.md ├── main_template.json ├── requirements.txt ├── resources │ ├── actions │ │ ├── backlink │ │ │ ├── Backlink-component.gif │ │ │ └── Backlink-tutorial.gif │ │ ├── calendar │ │ │ ├── Calendar-component.gif │ │ │ └── Calendar-step.gif │ │ ├── dynamic-selector │ │ │ └── example-settings.png │ │ ├── prompt │ │ │ ├── Prompt-action-view.gif │ │ │ └── Prompt-tutorial.gif │ │ ├── selector │ │ │ ├── Select-component.gif │ │ │ └── Select-step.gif │ │ └── tags │ │ │ └── Tags-component.gif │ ├── canvas-sample.png │ ├── community │ │ └── communityPreview.png │ ├── obsidian.png │ ├── readme-intro.gif │ └── readme │ │ ├── Canvas-Sample.png │ │ ├── Configure-principal-canvas.png │ │ ├── demogif.gif │ │ ├── first root step.png │ │ ├── install-plugin.png │ │ └── root step options.png ├── steps │ ├── community │ │ ├── add_book.json │ │ ├── add_callout.json │ │ ├── add_contact.json │ │ └── add_task.json │ └── markdown │ │ └── Daily Note Template.md └── vault-hooks │ ├── OnCreate.md │ └── property-hooks │ ├── configuration.md │ ├── examples.md │ └── overview.md ├── esbuild.config.mjs ├── manifest-beta.json ├── manifest.json ├── mkdocs.yml ├── package.json ├── src ├── actions │ ├── backlink │ │ ├── BackLinkAction.tsx │ │ ├── BackLinkComponent.tsx │ │ ├── BackLinkSettings.ts │ │ ├── BackLinkSettingsReader.ts │ │ └── typing.ts │ ├── calendar │ │ ├── CalendarAction.tsx │ │ ├── CalendarComponent.tsx │ │ ├── CalendarSettings.ts │ │ └── CalendarSettingsReader.ts │ ├── checkbox │ │ ├── CheckboxAction.tsx │ │ ├── CheckboxComponent.tsx │ │ ├── CheckboxSettings.ts │ │ └── CheckboxSettingsReader.ts │ ├── cssClasses │ │ ├── CssClassesAction.tsx │ │ ├── CssClassesComponent.tsx │ │ ├── CssClassesSettings.tsx │ │ └── CssClassesSettingsReader.ts │ ├── dynamicSelector │ │ ├── DynamicSelectorAction.tsx │ │ ├── DynamicSelectorComponent.tsx │ │ ├── DynamicSelectorSettings.tsx │ │ ├── DynamicSelectorSettingsReader.ts │ │ ├── components │ │ │ └── MultipleSelectorComponent.tsx │ │ └── typing.ts │ ├── index.ts │ ├── number │ │ ├── NumberAction.tsx │ │ ├── NumberComponent.tsx │ │ ├── NumberSettings.ts │ │ └── NumberSettingsReader.ts │ ├── prompt │ │ ├── PromptAction.tsx │ │ ├── PromptComponent.tsx │ │ ├── PromptSettings.ts │ │ └── PromptSettingsReader.ts │ ├── script │ │ ├── ScriptAction.tsx │ │ ├── ScriptSettings.tsx │ │ ├── ScriptSettingsReader.ts │ │ └── extensions │ │ │ └── autoconfiguration │ │ │ ├── ScriptStepAutocomplete.ts │ │ │ └── config │ │ │ ├── ContentFns.ts │ │ │ └── NoteFns.ts │ ├── selector │ │ ├── SelectorAction.tsx │ │ ├── SelectorSettings.tsx │ │ ├── SelectorSettingsReader.ts │ │ └── components │ │ │ ├── MultipleSelectorComponent.tsx │ │ │ ├── SelectorComponent.tsx │ │ │ └── selectordnd │ │ │ ├── OptionItem.tsx │ │ │ ├── SelectorDnD.tsx │ │ │ ├── contexts │ │ │ └── OptionsContext.tsx │ │ │ ├── model │ │ │ ├── DnDSelectorStateModel.ts │ │ │ └── OptionItemModel.ts │ │ │ └── utils │ │ │ └── Identifiers.ts │ ├── tags │ │ ├── TagsAction.tsx │ │ ├── TagsComponent.tsx │ │ ├── TagsSettings.tsx │ │ └── TagsSettingsReader.ts │ └── taskManagement │ │ ├── TaskManagementAction.tsx │ │ ├── TaskManagementSettings.tsx │ │ ├── TaskManagementSettingsReader.ts │ │ └── typing.ts ├── application │ ├── community │ │ ├── CommunityActionModal.tsx │ │ ├── CommunityFlowModal.tsx │ │ ├── CommunityMarkdownModal.ts │ │ ├── CommunityStepModal.tsx │ │ ├── CommunityTemplatesModal.tsx │ │ ├── ManageInstalledTemplatesModal.tsx │ │ ├── UsedInstalledStepsModal.tsx │ │ ├── components │ │ │ ├── CommunityTemplatesGallery.tsx │ │ │ ├── InstalledTemplatesManagement.tsx │ │ │ ├── StaticTemplatesGallery.tsx │ │ │ └── StepTemplatesSelector.tsx │ │ ├── index.ts │ │ ├── services │ │ │ └── CommunityHttpClientService.ts │ │ └── typing.ts │ ├── components │ │ ├── header │ │ │ ├── Header.tsx │ │ │ ├── index.ts │ │ │ └── typing.ts │ │ ├── navbar │ │ │ ├── NavBar.tsx │ │ │ └── index.ts │ │ ├── noteBuilder │ │ │ ├── ActionSelector.tsx │ │ │ ├── ElementSelector.tsx │ │ │ ├── RootSelector.tsx │ │ │ ├── SelectorMenu.tsx │ │ │ ├── WelcomeTutorial.tsx │ │ │ ├── callbacks │ │ │ │ ├── CallbackNote.ts │ │ │ │ └── CallbackUtils.tsx │ │ │ ├── index.ts │ │ │ ├── state │ │ │ │ ├── NoteBuilderState.tsx │ │ │ │ └── actions │ │ │ │ │ ├── goPreviousAction.tsx │ │ │ │ │ ├── infoState.ts │ │ │ │ │ └── setSelectionElementAction.ts │ │ │ └── typing.ts │ │ ├── section │ │ │ ├── Section.tsx │ │ │ ├── index.ts │ │ │ └── typing.ts │ │ └── select │ │ │ ├── Select.tsx │ │ │ ├── index.ts │ │ │ ├── mappers │ │ │ └── SelectMapper.ts │ │ │ └── typing.ts │ └── notes │ │ ├── NoteBuilder.ts │ │ ├── index.ts │ │ ├── model │ │ ├── ContentDTO.ts │ │ └── NoteDTO.ts │ │ └── typing.ts ├── architecture │ ├── api │ │ ├── CustomZettelAction.tsx │ │ ├── index.ts │ │ ├── lib │ │ │ ├── FnConstructor.ts │ │ │ ├── LibModule.ts │ │ │ ├── scripts │ │ │ │ └── service │ │ │ │ │ └── ZfScripts.ts │ │ │ ├── typing.ts │ │ │ └── vault │ │ │ │ ├── service │ │ │ │ └── ZfVault.ts │ │ │ │ └── typing.ts │ │ ├── store │ │ │ └── ActionsStore.ts │ │ └── typing.ts │ ├── components │ │ ├── core │ │ │ ├── badge │ │ │ │ ├── Badge.tsx │ │ │ │ └── typing.ts │ │ │ ├── calendar │ │ │ │ ├── Calendar.tsx │ │ │ │ └── typing.ts │ │ │ ├── checkbox │ │ │ │ ├── Checkbox.tsx │ │ │ │ └── typing.ts │ │ │ ├── codeView │ │ │ │ ├── CodeView.ts │ │ │ │ ├── editor │ │ │ │ │ ├── Dispatcher.ts │ │ │ │ │ └── extensions │ │ │ │ │ │ └── autoconfiguration │ │ │ │ │ │ ├── Autocompletion.ts │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── AppFns.ts │ │ │ │ │ │ ├── ContentFns.ts │ │ │ │ │ │ ├── CoreObjs.ts │ │ │ │ │ │ └── ZettelFlowFns.ts │ │ │ │ │ │ └── typing.ts │ │ │ │ └── typing.ts │ │ │ ├── dropdown │ │ │ │ ├── Dropdown.tsx │ │ │ │ └── typing.ts │ │ │ ├── index.ts │ │ │ ├── input │ │ │ │ ├── Input.tsx │ │ │ │ ├── TextArea.tsx │ │ │ │ └── typing.ts │ │ │ ├── progressbar │ │ │ │ ├── ProgressBar.tsx │ │ │ │ └── typing.ts │ │ │ ├── search │ │ │ │ ├── Search.tsx │ │ │ │ └── typing.ts │ │ │ └── selectableSearch │ │ │ │ ├── SelectableSearch.tsx │ │ │ │ └── typing.ts │ │ ├── icon │ │ │ ├── Icon.tsx │ │ │ ├── index.ts │ │ │ └── model │ │ │ │ └── IconModel.ts │ │ └── settings │ │ │ ├── confirmModal.ts │ │ │ ├── index.ts │ │ │ ├── navbar.ts │ │ │ └── optionsModal.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useOnClickAway.tsx │ │ └── useScrollToSelected.tsx │ ├── index.ts │ ├── lang │ │ ├── index.ts │ │ └── locale │ │ │ ├── en.ts │ │ │ └── es.ts │ ├── monitoring │ │ ├── CustomExceptions.ts │ │ └── Logger.ts │ ├── patterns │ │ ├── chain │ │ │ ├── AbstractFactoryChain.ts │ │ │ └── AbstractHandler.ts │ │ └── index.ts │ ├── plugin │ │ ├── Lifecycle.ts │ │ ├── ObsidianAPI.ts │ │ ├── canvas │ │ │ ├── Canvas.ts │ │ │ ├── Flows.ts │ │ │ ├── extensions │ │ │ │ ├── AddManagedStepExtension.ts │ │ │ │ ├── CanvasExtension.ts │ │ │ │ ├── CanvasPatcher.ts │ │ │ │ ├── EditCanvasExtension.ts │ │ │ │ └── utils │ │ │ │ │ ├── CanvasHelper.ts │ │ │ │ │ └── PatchHelper.ts │ │ │ ├── formatter.ts │ │ │ ├── index.ts │ │ │ ├── shared │ │ │ │ ├── Color.ts │ │ │ │ └── Geometry.ts │ │ │ └── typing.ts │ │ ├── index.ts │ │ ├── model │ │ │ ├── CanvasModel.ts │ │ │ └── FrontmatterModel.ts │ │ └── services │ │ │ ├── EditService.ts │ │ │ ├── FileService.ts │ │ │ ├── FrontmatterService.ts │ │ │ ├── Keyboard.ts │ │ │ ├── Markdown.ts │ │ │ ├── ObsidianConfig.ts │ │ │ ├── ObsidianNativeTypesManager.ts │ │ │ ├── VaultStateManager.ts │ │ │ ├── YamlService.ts │ │ │ └── typing.ts │ ├── settings │ │ ├── index.ts │ │ └── suggesters │ │ │ ├── AbstractSuggester.ts │ │ │ ├── FileSuggest.ts │ │ │ ├── FolderSuggest.ts │ │ │ ├── HeadingSuggest.ts │ │ │ └── PropertySuggest.ts │ ├── share │ │ ├── Generator.ts │ │ └── index.ts │ ├── styles │ │ └── helper.ts │ └── typing │ │ ├── index.ts │ │ ├── model │ │ ├── canvas.d.ts │ │ └── obsidian.d.ts │ │ └── services │ │ └── TypeService.ts ├── config │ ├── index.ts │ ├── modals │ │ ├── ZettelFlowSettingsTab.ts │ │ └── handlers │ │ │ ├── DeveloperSectionSettings.ts │ │ │ ├── GeneralSectionSettings.ts │ │ │ ├── HooksSectionSettings.ts │ │ │ ├── developer │ │ │ ├── CommunitySettingsHandler.ts │ │ │ ├── LoggerLevelHandler.ts │ │ │ └── LoggerToggleHandler.ts │ │ │ ├── general │ │ │ ├── CommunityTemplatesBrowserHandler.ts │ │ │ ├── EditorCanvasFileSelectorHandler.ts │ │ │ ├── FoldersFlowSelectorHandler.ts │ │ │ ├── MarkdownTemplatesFolderHandler.ts │ │ │ ├── RibbonCanvasFileSelectorHandler.ts │ │ │ ├── ScriptsFolderSelectorHandler.ts │ │ │ ├── UniquePrefixPatternHandler.ts │ │ │ └── UniquePrefixToggleHandler.ts │ │ │ └── hooks │ │ │ ├── FoldersFlowSelectorHandler.ts │ │ │ ├── PropertyHooksHandler.tsx │ │ │ ├── components │ │ │ ├── CodeEditor.tsx │ │ │ ├── PropertyHookAccordion.tsx │ │ │ └── PropertyHooksManager.tsx │ │ │ └── extensions │ │ │ └── autoconfiguration │ │ │ ├── HookAutocomplete.ts │ │ │ └── config │ │ │ ├── RequestHookCompletions.ts │ │ │ └── ResponseHookCompletions.ts │ ├── types │ │ ├── ObsidianTypesModal.ts │ │ └── TypeIcon.ts │ └── typing.ts ├── hooks │ ├── CanvasNodeMenu.ts │ ├── EditorMenu.ts │ ├── FileMenu.ts │ ├── VaultHooks.ts │ ├── index.ts │ ├── typing.ts │ └── utils │ │ ├── CompareUtils.ts │ │ ├── FileUtils.ts │ │ └── PathUtils.ts ├── main.ts ├── starters │ ├── index.ts │ ├── services │ │ ├── VariableTextProcessors.ts │ │ └── ZComponentsManager.ts │ ├── utils │ │ └── StartersTools.ts │ └── zcomponents │ │ ├── PluginApi.ts │ │ ├── RibbonIcon.ts │ │ └── SettingsTab.ts ├── styles │ ├── components │ │ ├── accordion.scss │ │ ├── actionAddMenu.scss │ │ ├── backlink.scss │ │ ├── codeEditor.scss │ │ ├── community.scss │ │ ├── dynamicSelector.scss │ │ ├── hooksConfig.scss │ │ ├── input.scss │ │ ├── modal.scss │ │ ├── navbar.scss │ │ ├── progressBar.scss │ │ ├── search.scss │ │ ├── selectableSearch.scss │ │ └── selector.scss │ ├── libraries │ │ └── dragAndDrop.scss │ ├── main.scss │ └── utils │ │ ├── animations.scss │ │ ├── mixins.scss │ │ └── variables.scss └── zettelkasten │ ├── index.ts │ ├── mappers │ ├── ActionBuilderMapper.ts │ └── StepBuilderMapper.ts │ ├── modals │ ├── AbstractStepModal.ts │ ├── InstalledActionEditorModal.ts │ ├── InstalledStepEditorModal.ts │ ├── SelectorMenuModal.ts │ ├── StepBuilderModal.ts │ └── handlers │ │ ├── ActionManagementHandler.tsx │ │ ├── ChildrenHeaderHandler.ts │ │ ├── CommunityInfoHandler.ts │ │ ├── OptionalToggleHandler.ts │ │ ├── RootToggleHandler.ts │ │ ├── StepSectionLabelHandler.ts │ │ ├── StepTitleHandler.ts │ │ ├── TargetFolderSuggesterHandler.ts │ │ └── components │ │ ├── actionsManagment │ │ ├── ActionAccordion.tsx │ │ ├── ActionAddMenu.tsx │ │ ├── ActionsManagement.tsx │ │ └── typing.ts │ │ └── shared │ │ └── Identifiers.ts │ ├── services │ └── ZettelkastenTypeService.ts │ └── typing.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ADD_TEMPLATE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.github/ISSUE_TEMPLATE/ADD_TEMPLATE.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/REPORT_BUG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.github/ISSUE_TEMPLATE/REPORT_BUG.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.github/workflows/releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npm run commitlint ${1} 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run lint 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/README.md -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/application/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/application/services/action_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/application/services/action_service.py -------------------------------------------------------------------------------- /backend/app/application/services/step_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/application/services/step_service.py -------------------------------------------------------------------------------- /backend/app/application/services/template_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/application/services/template_service.py -------------------------------------------------------------------------------- /backend/app/domain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/domain/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/domain/models/community_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/domain/models/community_action.py -------------------------------------------------------------------------------- /backend/app/domain/models/community_step_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/domain/models/community_step_settings.py -------------------------------------------------------------------------------- /backend/app/domain/models/template_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/domain/models/template_filter.py -------------------------------------------------------------------------------- /backend/app/infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/infrastructure/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/infrastructure/db/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/infrastructure/db/mongodb.py -------------------------------------------------------------------------------- /backend/app/infrastructure/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/infrastructure/repositories/action_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/infrastructure/repositories/action_repository.py -------------------------------------------------------------------------------- /backend/app/infrastructure/repositories/step_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/infrastructure/repositories/step_repository.py -------------------------------------------------------------------------------- /backend/app/infrastructure/repositories/template_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/infrastructure/repositories/template_repository.py -------------------------------------------------------------------------------- /backend/app/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/interfaces/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/interfaces/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/interfaces/api/controllers/action_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/interfaces/api/controllers/action_controller.py -------------------------------------------------------------------------------- /backend/app/interfaces/api/controllers/step_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/interfaces/api/controllers/step_controller.py -------------------------------------------------------------------------------- /backend/app/interfaces/api/controllers/template_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/interfaces/api/controllers/template_controller.py -------------------------------------------------------------------------------- /backend/app/interfaces/api/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/interfaces/api/routers/action_router.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/interfaces/api/routers/step_router.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/interfaces/api/routers/template_router.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/app/main.py -------------------------------------------------------------------------------- /backend/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/dockerfile -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- 1 | export default { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /containers/mongo/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/containers/mongo/dockerfile -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/actions/Backlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Backlink.md -------------------------------------------------------------------------------- /docs/actions/Calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Calendar.md -------------------------------------------------------------------------------- /docs/actions/Checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Checkbox.md -------------------------------------------------------------------------------- /docs/actions/CssClasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/CssClasses.md -------------------------------------------------------------------------------- /docs/actions/DynamicSelector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/DynamicSelector.md -------------------------------------------------------------------------------- /docs/actions/Number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Number.md -------------------------------------------------------------------------------- /docs/actions/Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Prompt.md -------------------------------------------------------------------------------- /docs/actions/Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Script.md -------------------------------------------------------------------------------- /docs/actions/Selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Selector.md -------------------------------------------------------------------------------- /docs/actions/Tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/Tags.md -------------------------------------------------------------------------------- /docs/actions/TaskManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/actions/TaskManagement.md -------------------------------------------------------------------------------- /docs/api/ZettelFlowAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/api/ZettelFlowAPI.md -------------------------------------------------------------------------------- /docs/extra_javascript/navigationInstant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/extra_javascript/navigationInstant.js -------------------------------------------------------------------------------- /docs/flows/para_system/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/para_system/flow.json -------------------------------------------------------------------------------- /docs/flows/para_system/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/para_system/image.png -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/Design Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/Design Template.md -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/Idea Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/Idea Template.md -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/Meeting Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/Meeting Template.md -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/flow.json -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/image.png -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/templates/Design Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/templates/Design Template.md -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/templates/Idea Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/templates/Idea Template.md -------------------------------------------------------------------------------- /docs/flows/zettelkasten_inbox/templates/Meeting Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/flows/zettelkasten_inbox/templates/Meeting Template.md -------------------------------------------------------------------------------- /docs/how-to-contribute/Wiki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/how-to-contribute/Wiki.md -------------------------------------------------------------------------------- /docs/how-to-contribute/community-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/how-to-contribute/community-examples.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/main_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/main_template.json -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/resources/actions/backlink/Backlink-component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/backlink/Backlink-component.gif -------------------------------------------------------------------------------- /docs/resources/actions/backlink/Backlink-tutorial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/backlink/Backlink-tutorial.gif -------------------------------------------------------------------------------- /docs/resources/actions/calendar/Calendar-component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/calendar/Calendar-component.gif -------------------------------------------------------------------------------- /docs/resources/actions/calendar/Calendar-step.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/calendar/Calendar-step.gif -------------------------------------------------------------------------------- /docs/resources/actions/dynamic-selector/example-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/dynamic-selector/example-settings.png -------------------------------------------------------------------------------- /docs/resources/actions/prompt/Prompt-action-view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/prompt/Prompt-action-view.gif -------------------------------------------------------------------------------- /docs/resources/actions/prompt/Prompt-tutorial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/prompt/Prompt-tutorial.gif -------------------------------------------------------------------------------- /docs/resources/actions/selector/Select-component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/selector/Select-component.gif -------------------------------------------------------------------------------- /docs/resources/actions/selector/Select-step.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/selector/Select-step.gif -------------------------------------------------------------------------------- /docs/resources/actions/tags/Tags-component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/actions/tags/Tags-component.gif -------------------------------------------------------------------------------- /docs/resources/canvas-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/canvas-sample.png -------------------------------------------------------------------------------- /docs/resources/community/communityPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/community/communityPreview.png -------------------------------------------------------------------------------- /docs/resources/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/obsidian.png -------------------------------------------------------------------------------- /docs/resources/readme-intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme-intro.gif -------------------------------------------------------------------------------- /docs/resources/readme/Canvas-Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme/Canvas-Sample.png -------------------------------------------------------------------------------- /docs/resources/readme/Configure-principal-canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme/Configure-principal-canvas.png -------------------------------------------------------------------------------- /docs/resources/readme/demogif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme/demogif.gif -------------------------------------------------------------------------------- /docs/resources/readme/first root step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme/first root step.png -------------------------------------------------------------------------------- /docs/resources/readme/install-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme/install-plugin.png -------------------------------------------------------------------------------- /docs/resources/readme/root step options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/resources/readme/root step options.png -------------------------------------------------------------------------------- /docs/steps/community/add_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/steps/community/add_book.json -------------------------------------------------------------------------------- /docs/steps/community/add_callout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/steps/community/add_callout.json -------------------------------------------------------------------------------- /docs/steps/community/add_contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/steps/community/add_contact.json -------------------------------------------------------------------------------- /docs/steps/community/add_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/steps/community/add_task.json -------------------------------------------------------------------------------- /docs/steps/markdown/Daily Note Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/steps/markdown/Daily Note Template.md -------------------------------------------------------------------------------- /docs/vault-hooks/OnCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/vault-hooks/OnCreate.md -------------------------------------------------------------------------------- /docs/vault-hooks/property-hooks/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/vault-hooks/property-hooks/configuration.md -------------------------------------------------------------------------------- /docs/vault-hooks/property-hooks/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/vault-hooks/property-hooks/examples.md -------------------------------------------------------------------------------- /docs/vault-hooks/property-hooks/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/docs/vault-hooks/property-hooks/overview.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/manifest-beta.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/manifest.json -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/backlink/BackLinkAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/backlink/BackLinkAction.tsx -------------------------------------------------------------------------------- /src/actions/backlink/BackLinkComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/backlink/BackLinkComponent.tsx -------------------------------------------------------------------------------- /src/actions/backlink/BackLinkSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/backlink/BackLinkSettings.ts -------------------------------------------------------------------------------- /src/actions/backlink/BackLinkSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/backlink/BackLinkSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/backlink/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/backlink/typing.ts -------------------------------------------------------------------------------- /src/actions/calendar/CalendarAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/calendar/CalendarAction.tsx -------------------------------------------------------------------------------- /src/actions/calendar/CalendarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/calendar/CalendarComponent.tsx -------------------------------------------------------------------------------- /src/actions/calendar/CalendarSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/calendar/CalendarSettings.ts -------------------------------------------------------------------------------- /src/actions/calendar/CalendarSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/calendar/CalendarSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/checkbox/CheckboxAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/checkbox/CheckboxAction.tsx -------------------------------------------------------------------------------- /src/actions/checkbox/CheckboxComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/checkbox/CheckboxComponent.tsx -------------------------------------------------------------------------------- /src/actions/checkbox/CheckboxSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/checkbox/CheckboxSettings.ts -------------------------------------------------------------------------------- /src/actions/checkbox/CheckboxSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/checkbox/CheckboxSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/cssClasses/CssClassesAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/cssClasses/CssClassesAction.tsx -------------------------------------------------------------------------------- /src/actions/cssClasses/CssClassesComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/cssClasses/CssClassesComponent.tsx -------------------------------------------------------------------------------- /src/actions/cssClasses/CssClassesSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/cssClasses/CssClassesSettings.tsx -------------------------------------------------------------------------------- /src/actions/cssClasses/CssClassesSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/cssClasses/CssClassesSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/dynamicSelector/DynamicSelectorAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/dynamicSelector/DynamicSelectorAction.tsx -------------------------------------------------------------------------------- /src/actions/dynamicSelector/DynamicSelectorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/dynamicSelector/DynamicSelectorComponent.tsx -------------------------------------------------------------------------------- /src/actions/dynamicSelector/DynamicSelectorSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/dynamicSelector/DynamicSelectorSettings.tsx -------------------------------------------------------------------------------- /src/actions/dynamicSelector/DynamicSelectorSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/dynamicSelector/DynamicSelectorSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/dynamicSelector/components/MultipleSelectorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/dynamicSelector/components/MultipleSelectorComponent.tsx -------------------------------------------------------------------------------- /src/actions/dynamicSelector/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/dynamicSelector/typing.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/actions/number/NumberAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/number/NumberAction.tsx -------------------------------------------------------------------------------- /src/actions/number/NumberComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/number/NumberComponent.tsx -------------------------------------------------------------------------------- /src/actions/number/NumberSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/number/NumberSettings.ts -------------------------------------------------------------------------------- /src/actions/number/NumberSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/number/NumberSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/prompt/PromptAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/prompt/PromptAction.tsx -------------------------------------------------------------------------------- /src/actions/prompt/PromptComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/prompt/PromptComponent.tsx -------------------------------------------------------------------------------- /src/actions/prompt/PromptSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/prompt/PromptSettings.ts -------------------------------------------------------------------------------- /src/actions/prompt/PromptSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/prompt/PromptSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/script/ScriptAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/script/ScriptAction.tsx -------------------------------------------------------------------------------- /src/actions/script/ScriptSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/script/ScriptSettings.tsx -------------------------------------------------------------------------------- /src/actions/script/ScriptSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/script/ScriptSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/script/extensions/autoconfiguration/ScriptStepAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/script/extensions/autoconfiguration/ScriptStepAutocomplete.ts -------------------------------------------------------------------------------- /src/actions/script/extensions/autoconfiguration/config/ContentFns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/script/extensions/autoconfiguration/config/ContentFns.ts -------------------------------------------------------------------------------- /src/actions/script/extensions/autoconfiguration/config/NoteFns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/script/extensions/autoconfiguration/config/NoteFns.ts -------------------------------------------------------------------------------- /src/actions/selector/SelectorAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/SelectorAction.tsx -------------------------------------------------------------------------------- /src/actions/selector/SelectorSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/SelectorSettings.tsx -------------------------------------------------------------------------------- /src/actions/selector/SelectorSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/SelectorSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/selector/components/MultipleSelectorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/components/MultipleSelectorComponent.tsx -------------------------------------------------------------------------------- /src/actions/selector/components/SelectorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/components/SelectorComponent.tsx -------------------------------------------------------------------------------- /src/actions/selector/components/selectordnd/OptionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/components/selectordnd/OptionItem.tsx -------------------------------------------------------------------------------- /src/actions/selector/components/selectordnd/SelectorDnD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/components/selectordnd/SelectorDnD.tsx -------------------------------------------------------------------------------- /src/actions/selector/components/selectordnd/contexts/OptionsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/components/selectordnd/contexts/OptionsContext.tsx -------------------------------------------------------------------------------- /src/actions/selector/components/selectordnd/model/DnDSelectorStateModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/selector/components/selectordnd/model/DnDSelectorStateModel.ts -------------------------------------------------------------------------------- /src/actions/selector/components/selectordnd/model/OptionItemModel.ts: -------------------------------------------------------------------------------- 1 | export type OptionItemProps = { 2 | index: number, 3 | } -------------------------------------------------------------------------------- /src/actions/selector/components/selectordnd/utils/Identifiers.ts: -------------------------------------------------------------------------------- 1 | export const SELECTOR_DND_ID = "SelectorDnD"; -------------------------------------------------------------------------------- /src/actions/tags/TagsAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/tags/TagsAction.tsx -------------------------------------------------------------------------------- /src/actions/tags/TagsComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/tags/TagsComponent.tsx -------------------------------------------------------------------------------- /src/actions/tags/TagsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/tags/TagsSettings.tsx -------------------------------------------------------------------------------- /src/actions/tags/TagsSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/tags/TagsSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/taskManagement/TaskManagementAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/taskManagement/TaskManagementAction.tsx -------------------------------------------------------------------------------- /src/actions/taskManagement/TaskManagementSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/taskManagement/TaskManagementSettings.tsx -------------------------------------------------------------------------------- /src/actions/taskManagement/TaskManagementSettingsReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/taskManagement/TaskManagementSettingsReader.ts -------------------------------------------------------------------------------- /src/actions/taskManagement/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/actions/taskManagement/typing.ts -------------------------------------------------------------------------------- /src/application/community/CommunityActionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/CommunityActionModal.tsx -------------------------------------------------------------------------------- /src/application/community/CommunityFlowModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/CommunityFlowModal.tsx -------------------------------------------------------------------------------- /src/application/community/CommunityMarkdownModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/CommunityMarkdownModal.ts -------------------------------------------------------------------------------- /src/application/community/CommunityStepModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/CommunityStepModal.tsx -------------------------------------------------------------------------------- /src/application/community/CommunityTemplatesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/CommunityTemplatesModal.tsx -------------------------------------------------------------------------------- /src/application/community/ManageInstalledTemplatesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/ManageInstalledTemplatesModal.tsx -------------------------------------------------------------------------------- /src/application/community/UsedInstalledStepsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/UsedInstalledStepsModal.tsx -------------------------------------------------------------------------------- /src/application/community/components/CommunityTemplatesGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/components/CommunityTemplatesGallery.tsx -------------------------------------------------------------------------------- /src/application/community/components/InstalledTemplatesManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/components/InstalledTemplatesManagement.tsx -------------------------------------------------------------------------------- /src/application/community/components/StaticTemplatesGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/components/StaticTemplatesGallery.tsx -------------------------------------------------------------------------------- /src/application/community/components/StepTemplatesSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/components/StepTemplatesSelector.tsx -------------------------------------------------------------------------------- /src/application/community/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/index.ts -------------------------------------------------------------------------------- /src/application/community/services/CommunityHttpClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/services/CommunityHttpClientService.ts -------------------------------------------------------------------------------- /src/application/community/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/community/typing.ts -------------------------------------------------------------------------------- /src/application/components/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/header/Header.tsx -------------------------------------------------------------------------------- /src/application/components/header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/header/index.ts -------------------------------------------------------------------------------- /src/application/components/header/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/header/typing.ts -------------------------------------------------------------------------------- /src/application/components/navbar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/navbar/NavBar.tsx -------------------------------------------------------------------------------- /src/application/components/navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/navbar/index.ts -------------------------------------------------------------------------------- /src/application/components/noteBuilder/ActionSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/ActionSelector.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/ElementSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/ElementSelector.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/RootSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/RootSelector.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/SelectorMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/SelectorMenu.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/WelcomeTutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/WelcomeTutorial.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/callbacks/CallbackNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/callbacks/CallbackNote.ts -------------------------------------------------------------------------------- /src/application/components/noteBuilder/callbacks/CallbackUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/callbacks/CallbackUtils.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/index.ts -------------------------------------------------------------------------------- /src/application/components/noteBuilder/state/NoteBuilderState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/state/NoteBuilderState.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/state/actions/goPreviousAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/state/actions/goPreviousAction.tsx -------------------------------------------------------------------------------- /src/application/components/noteBuilder/state/actions/infoState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/state/actions/infoState.ts -------------------------------------------------------------------------------- /src/application/components/noteBuilder/state/actions/setSelectionElementAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/state/actions/setSelectionElementAction.ts -------------------------------------------------------------------------------- /src/application/components/noteBuilder/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/noteBuilder/typing.ts -------------------------------------------------------------------------------- /src/application/components/section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/section/Section.tsx -------------------------------------------------------------------------------- /src/application/components/section/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/section/index.ts -------------------------------------------------------------------------------- /src/application/components/section/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/section/typing.ts -------------------------------------------------------------------------------- /src/application/components/select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/select/Select.tsx -------------------------------------------------------------------------------- /src/application/components/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/select/index.ts -------------------------------------------------------------------------------- /src/application/components/select/mappers/SelectMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/select/mappers/SelectMapper.ts -------------------------------------------------------------------------------- /src/application/components/select/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/components/select/typing.ts -------------------------------------------------------------------------------- /src/application/notes/NoteBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/notes/NoteBuilder.ts -------------------------------------------------------------------------------- /src/application/notes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/notes/index.ts -------------------------------------------------------------------------------- /src/application/notes/model/ContentDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/notes/model/ContentDTO.ts -------------------------------------------------------------------------------- /src/application/notes/model/NoteDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/notes/model/NoteDTO.ts -------------------------------------------------------------------------------- /src/application/notes/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/application/notes/typing.ts -------------------------------------------------------------------------------- /src/architecture/api/CustomZettelAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/CustomZettelAction.tsx -------------------------------------------------------------------------------- /src/architecture/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/index.ts -------------------------------------------------------------------------------- /src/architecture/api/lib/FnConstructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/lib/FnConstructor.ts -------------------------------------------------------------------------------- /src/architecture/api/lib/LibModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/lib/LibModule.ts -------------------------------------------------------------------------------- /src/architecture/api/lib/scripts/service/ZfScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/lib/scripts/service/ZfScripts.ts -------------------------------------------------------------------------------- /src/architecture/api/lib/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/lib/typing.ts -------------------------------------------------------------------------------- /src/architecture/api/lib/vault/service/ZfVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/lib/vault/service/ZfVault.ts -------------------------------------------------------------------------------- /src/architecture/api/lib/vault/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/lib/vault/typing.ts -------------------------------------------------------------------------------- /src/architecture/api/store/ActionsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/store/ActionsStore.ts -------------------------------------------------------------------------------- /src/architecture/api/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/api/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/badge/Badge.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/badge/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/badge/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/calendar/Calendar.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/calendar/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/calendar/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/checkbox/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/checkbox/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/CodeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/CodeView.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/Dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/editor/Dispatcher.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/extensions/autoconfiguration/Autocompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/editor/extensions/autoconfiguration/Autocompletion.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/AppFns.ts: -------------------------------------------------------------------------------- 1 | export const appCompletions = []; -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/ContentFns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/ContentFns.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/CoreObjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/CoreObjs.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/ZettelFlowFns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/editor/extensions/autoconfiguration/config/ZettelFlowFns.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/editor/extensions/autoconfiguration/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/editor/extensions/autoconfiguration/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/codeView/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/codeView/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/dropdown/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/dropdown/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/index.ts -------------------------------------------------------------------------------- /src/architecture/components/core/input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/input/Input.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/input/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/input/TextArea.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/input/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/input/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/progressbar/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/progressbar/ProgressBar.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/progressbar/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/progressbar/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/search/Search.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/search/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/search/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/core/selectableSearch/SelectableSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/selectableSearch/SelectableSearch.tsx -------------------------------------------------------------------------------- /src/architecture/components/core/selectableSearch/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/core/selectableSearch/typing.ts -------------------------------------------------------------------------------- /src/architecture/components/icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/icon/Icon.tsx -------------------------------------------------------------------------------- /src/architecture/components/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/icon/index.ts -------------------------------------------------------------------------------- /src/architecture/components/icon/model/IconModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/icon/model/IconModel.ts -------------------------------------------------------------------------------- /src/architecture/components/settings/confirmModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/settings/confirmModal.ts -------------------------------------------------------------------------------- /src/architecture/components/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/settings/index.ts -------------------------------------------------------------------------------- /src/architecture/components/settings/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/settings/navbar.ts -------------------------------------------------------------------------------- /src/architecture/components/settings/optionsModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/components/settings/optionsModal.ts -------------------------------------------------------------------------------- /src/architecture/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/hooks/index.ts -------------------------------------------------------------------------------- /src/architecture/hooks/useOnClickAway.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/hooks/useOnClickAway.tsx -------------------------------------------------------------------------------- /src/architecture/hooks/useScrollToSelected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/hooks/useScrollToSelected.tsx -------------------------------------------------------------------------------- /src/architecture/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/index.ts -------------------------------------------------------------------------------- /src/architecture/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/lang/index.ts -------------------------------------------------------------------------------- /src/architecture/lang/locale/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/lang/locale/en.ts -------------------------------------------------------------------------------- /src/architecture/lang/locale/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/lang/locale/es.ts -------------------------------------------------------------------------------- /src/architecture/monitoring/CustomExceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/monitoring/CustomExceptions.ts -------------------------------------------------------------------------------- /src/architecture/monitoring/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/monitoring/Logger.ts -------------------------------------------------------------------------------- /src/architecture/patterns/chain/AbstractFactoryChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/patterns/chain/AbstractFactoryChain.ts -------------------------------------------------------------------------------- /src/architecture/patterns/chain/AbstractHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/patterns/chain/AbstractHandler.ts -------------------------------------------------------------------------------- /src/architecture/patterns/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/patterns/index.ts -------------------------------------------------------------------------------- /src/architecture/plugin/Lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/Lifecycle.ts -------------------------------------------------------------------------------- /src/architecture/plugin/ObsidianAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/ObsidianAPI.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/Canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/Canvas.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/Flows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/Flows.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/extensions/AddManagedStepExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/extensions/AddManagedStepExtension.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/extensions/CanvasExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/extensions/CanvasExtension.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/extensions/CanvasPatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/extensions/CanvasPatcher.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/extensions/EditCanvasExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/extensions/EditCanvasExtension.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/extensions/utils/CanvasHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/extensions/utils/CanvasHelper.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/extensions/utils/PatchHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/extensions/utils/PatchHelper.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/formatter.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/index.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/shared/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/shared/Color.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/shared/Geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/shared/Geometry.ts -------------------------------------------------------------------------------- /src/architecture/plugin/canvas/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/canvas/typing.ts -------------------------------------------------------------------------------- /src/architecture/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/index.ts -------------------------------------------------------------------------------- /src/architecture/plugin/model/CanvasModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/model/CanvasModel.ts -------------------------------------------------------------------------------- /src/architecture/plugin/model/FrontmatterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/model/FrontmatterModel.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/EditService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/EditService.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/FileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/FileService.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/FrontmatterService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/FrontmatterService.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/Keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/Keyboard.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/Markdown.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/ObsidianConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/ObsidianConfig.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/ObsidianNativeTypesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/ObsidianNativeTypesManager.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/VaultStateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/VaultStateManager.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/YamlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/YamlService.ts -------------------------------------------------------------------------------- /src/architecture/plugin/services/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/plugin/services/typing.ts -------------------------------------------------------------------------------- /src/architecture/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/settings/index.ts -------------------------------------------------------------------------------- /src/architecture/settings/suggesters/AbstractSuggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/settings/suggesters/AbstractSuggester.ts -------------------------------------------------------------------------------- /src/architecture/settings/suggesters/FileSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/settings/suggesters/FileSuggest.ts -------------------------------------------------------------------------------- /src/architecture/settings/suggesters/FolderSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/settings/suggesters/FolderSuggest.ts -------------------------------------------------------------------------------- /src/architecture/settings/suggesters/HeadingSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/settings/suggesters/HeadingSuggest.ts -------------------------------------------------------------------------------- /src/architecture/settings/suggesters/PropertySuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/settings/suggesters/PropertySuggest.ts -------------------------------------------------------------------------------- /src/architecture/share/Generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/share/Generator.ts -------------------------------------------------------------------------------- /src/architecture/share/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/share/index.ts -------------------------------------------------------------------------------- /src/architecture/styles/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/styles/helper.ts -------------------------------------------------------------------------------- /src/architecture/typing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/typing/index.ts -------------------------------------------------------------------------------- /src/architecture/typing/model/canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/typing/model/canvas.d.ts -------------------------------------------------------------------------------- /src/architecture/typing/model/obsidian.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/typing/model/obsidian.d.ts -------------------------------------------------------------------------------- /src/architecture/typing/services/TypeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/architecture/typing/services/TypeService.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/config/modals/ZettelFlowSettingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/ZettelFlowSettingsTab.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/DeveloperSectionSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/DeveloperSectionSettings.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/GeneralSectionSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/GeneralSectionSettings.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/HooksSectionSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/HooksSectionSettings.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/developer/CommunitySettingsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/developer/CommunitySettingsHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/developer/LoggerLevelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/developer/LoggerLevelHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/developer/LoggerToggleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/developer/LoggerToggleHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/CommunityTemplatesBrowserHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/CommunityTemplatesBrowserHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/EditorCanvasFileSelectorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/EditorCanvasFileSelectorHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/FoldersFlowSelectorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/FoldersFlowSelectorHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/MarkdownTemplatesFolderHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/MarkdownTemplatesFolderHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/RibbonCanvasFileSelectorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/RibbonCanvasFileSelectorHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/ScriptsFolderSelectorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/ScriptsFolderSelectorHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/UniquePrefixPatternHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/UniquePrefixPatternHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/general/UniquePrefixToggleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/general/UniquePrefixToggleHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/FoldersFlowSelectorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/FoldersFlowSelectorHandler.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/PropertyHooksHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/PropertyHooksHandler.tsx -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/components/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/components/CodeEditor.tsx -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/components/PropertyHookAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/components/PropertyHookAccordion.tsx -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/components/PropertyHooksManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/components/PropertyHooksManager.tsx -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/extensions/autoconfiguration/HookAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/extensions/autoconfiguration/HookAutocomplete.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/extensions/autoconfiguration/config/RequestHookCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/extensions/autoconfiguration/config/RequestHookCompletions.ts -------------------------------------------------------------------------------- /src/config/modals/handlers/hooks/extensions/autoconfiguration/config/ResponseHookCompletions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/modals/handlers/hooks/extensions/autoconfiguration/config/ResponseHookCompletions.ts -------------------------------------------------------------------------------- /src/config/types/ObsidianTypesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/types/ObsidianTypesModal.ts -------------------------------------------------------------------------------- /src/config/types/TypeIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/types/TypeIcon.ts -------------------------------------------------------------------------------- /src/config/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/config/typing.ts -------------------------------------------------------------------------------- /src/hooks/CanvasNodeMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/CanvasNodeMenu.ts -------------------------------------------------------------------------------- /src/hooks/EditorMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/EditorMenu.ts -------------------------------------------------------------------------------- /src/hooks/FileMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/FileMenu.ts -------------------------------------------------------------------------------- /src/hooks/VaultHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/VaultHooks.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/typing.ts -------------------------------------------------------------------------------- /src/hooks/utils/CompareUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/utils/CompareUtils.ts -------------------------------------------------------------------------------- /src/hooks/utils/FileUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/utils/FileUtils.ts -------------------------------------------------------------------------------- /src/hooks/utils/PathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/hooks/utils/PathUtils.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/starters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/index.ts -------------------------------------------------------------------------------- /src/starters/services/VariableTextProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/services/VariableTextProcessors.ts -------------------------------------------------------------------------------- /src/starters/services/ZComponentsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/services/ZComponentsManager.ts -------------------------------------------------------------------------------- /src/starters/utils/StartersTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/utils/StartersTools.ts -------------------------------------------------------------------------------- /src/starters/zcomponents/PluginApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/zcomponents/PluginApi.ts -------------------------------------------------------------------------------- /src/starters/zcomponents/RibbonIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/zcomponents/RibbonIcon.ts -------------------------------------------------------------------------------- /src/starters/zcomponents/SettingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/starters/zcomponents/SettingsTab.ts -------------------------------------------------------------------------------- /src/styles/components/accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/accordion.scss -------------------------------------------------------------------------------- /src/styles/components/actionAddMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/actionAddMenu.scss -------------------------------------------------------------------------------- /src/styles/components/backlink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/backlink.scss -------------------------------------------------------------------------------- /src/styles/components/codeEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/codeEditor.scss -------------------------------------------------------------------------------- /src/styles/components/community.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/community.scss -------------------------------------------------------------------------------- /src/styles/components/dynamicSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/dynamicSelector.scss -------------------------------------------------------------------------------- /src/styles/components/hooksConfig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/hooksConfig.scss -------------------------------------------------------------------------------- /src/styles/components/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/input.scss -------------------------------------------------------------------------------- /src/styles/components/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/modal.scss -------------------------------------------------------------------------------- /src/styles/components/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/navbar.scss -------------------------------------------------------------------------------- /src/styles/components/progressBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/progressBar.scss -------------------------------------------------------------------------------- /src/styles/components/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/search.scss -------------------------------------------------------------------------------- /src/styles/components/selectableSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/selectableSearch.scss -------------------------------------------------------------------------------- /src/styles/components/selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/components/selector.scss -------------------------------------------------------------------------------- /src/styles/libraries/dragAndDrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/libraries/dragAndDrop.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/utils/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/styles/utils/animations.scss -------------------------------------------------------------------------------- /src/styles/utils/mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/utils/variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/zettelkasten/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/index.ts -------------------------------------------------------------------------------- /src/zettelkasten/mappers/ActionBuilderMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/mappers/ActionBuilderMapper.ts -------------------------------------------------------------------------------- /src/zettelkasten/mappers/StepBuilderMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/mappers/StepBuilderMapper.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/AbstractStepModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/AbstractStepModal.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/InstalledActionEditorModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/InstalledActionEditorModal.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/InstalledStepEditorModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/InstalledStepEditorModal.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/SelectorMenuModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/SelectorMenuModal.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/StepBuilderModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/StepBuilderModal.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/ActionManagementHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/ActionManagementHandler.tsx -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/ChildrenHeaderHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/ChildrenHeaderHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/CommunityInfoHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/CommunityInfoHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/OptionalToggleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/OptionalToggleHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/RootToggleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/RootToggleHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/StepSectionLabelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/StepSectionLabelHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/StepTitleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/StepTitleHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/TargetFolderSuggesterHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/TargetFolderSuggesterHandler.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/components/actionsManagment/ActionAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/components/actionsManagment/ActionAccordion.tsx -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/components/actionsManagment/ActionAddMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/components/actionsManagment/ActionAddMenu.tsx -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/components/actionsManagment/ActionsManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/components/actionsManagment/ActionsManagement.tsx -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/components/actionsManagment/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/components/actionsManagment/typing.ts -------------------------------------------------------------------------------- /src/zettelkasten/modals/handlers/components/shared/Identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/modals/handlers/components/shared/Identifiers.ts -------------------------------------------------------------------------------- /src/zettelkasten/services/ZettelkastenTypeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/services/ZettelkastenTypeService.ts -------------------------------------------------------------------------------- /src/zettelkasten/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/src/zettelkasten/typing.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelGB/Obsidian-ZettelFlow/HEAD/tsconfig.json --------------------------------------------------------------------------------