├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── icon.svg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── screenshots ├── demo.gif ├── demo2.gif ├── demo3.gif ├── demo4.gif ├── demo5.gif ├── demo6.gif ├── toolbar-demo.gif └── toolbar.png ├── src ├── features │ ├── complete-task │ │ └── index.ts │ ├── go-to-date │ │ ├── GotoDate.tsx │ │ └── index.tsx │ ├── parse │ │ ├── index.ts │ │ ├── manual.ts │ │ ├── semi-auto.ts │ │ └── types.ts │ └── toolbar │ │ ├── handle-append-page-embeds.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── toolbar.css ├── global.d.ts ├── index.tsx ├── output.css ├── settings │ └── index.ts ├── tailwind.css └── utils │ └── index.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hkgnp] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: Build Logseq Plugin 2 | 3 | on: 4 | push: 5 | branches: 6 | - "main" 7 | workflow_dispatch: 8 | 9 | env: 10 | PLUGIN_NAME: ${{ github.event.repository.name }} 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | 16 | steps: 17 | - uses: actions/checkout@v3 18 | 19 | - name: Use Node.js 20 | uses: actions/setup-node@v3 21 | with: 22 | node-version: "20.x" # You might need to adjust this value to your own version 23 | 24 | - uses: pnpm/action-setup@v4 25 | with: 26 | version: 9.1.1 27 | 28 | - name: Build 29 | id: build 30 | run: | 31 | pnpm i && pnpm run build 32 | mkdir ${{ env.PLUGIN_NAME }} 33 | cp README.md package.json icon.svg ${{ env.PLUGIN_NAME }} 34 | mv dist ${{ env.PLUGIN_NAME }} 35 | zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }} 36 | ls 37 | echo "tag_name=git tag --sort version:refname | tail -n 1" >> $GITHUB_OUTPUT 38 | 39 | - name: Release 40 | run: npx semantic-release 41 | env: 42 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 43 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | lerna-debug.log* 10 | .pnpm-debug.log* 11 | 12 | # Diagnostic reports (https://nodejs.org/api/report.html) 13 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 14 | 15 | # Runtime data 16 | pids 17 | *.pid 18 | *.seed 19 | *.pid.lock 20 | 21 | # Directory for instrumented libs generated by jscoverage/JSCover 22 | lib-cov 23 | 24 | # Coverage directory used by tools like istanbul 25 | coverage 26 | *.lcov 27 | 28 | # nyc test coverage 29 | .nyc_output 30 | 31 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 32 | .grunt 33 | 34 | # Bower dependency directory (https://bower.io/) 35 | bower_components 36 | 37 | # node-waf configuration 38 | .lock-wscript 39 | 40 | # Compiled binary addons (https://nodejs.org/api/addons.html) 41 | build/Release 42 | 43 | # Dependency directories 44 | node_modules/ 45 | jspm_packages/ 46 | 47 | # Snowpack dependency directory (https://snowpack.dev/) 48 | web_modules/ 49 | 50 | # TypeScript cache 51 | *.tsbuildinfo 52 | 53 | # Optional npm cache directory 54 | .npm 55 | 56 | # Optional eslint cache 57 | .eslintcache 58 | 59 | # Microbundle cache 60 | .rpt2_cache/ 61 | .rts2_cache_cjs/ 62 | .rts2_cache_es/ 63 | .rts2_cache_umd/ 64 | 65 | # Optional REPL history 66 | .node_repl_history 67 | 68 | # Output of 'npm pack' 69 | *.tgz 70 | 71 | # Yarn Integrity file 72 | .yarn-integrity 73 | 74 | # dotenv environment variables file 75 | .env 76 | .env.test 77 | .env.production 78 | 79 | # parcel-bundler cache (https://parceljs.org/) 80 | .cache 81 | .parcel-cache 82 | 83 | # Next.js build output 84 | .next 85 | out 86 | 87 | # Nuxt.js build / generate output 88 | .nuxt 89 | dist 90 | 91 | # Gatsby files 92 | .cache/ 93 | # Comment in the public line in if your project uses Gatsby and not Next.js 94 | # https://nextjs.org/blog/next-9-1#public-directory-support 95 | # public 96 | 97 | # vuepress build output 98 | .vuepress/dist 99 | 100 | # Serverless directories 101 | .serverless/ 102 | 103 | # FuseBox cache 104 | .fusebox/ 105 | 106 | # DynamoDB Local files 107 | .dynamodb/ 108 | 109 | # TernJS port file 110 | .tern-port 111 | 112 | # Stores VSCode versions used for testing VSCode extensions 113 | .vscode-test 114 | 115 | # yarn v2 116 | .yarn/cache 117 | .yarn/unplugged 118 | .yarn/build-state.yml 119 | .yarn/install-state.gz 120 | .pnp.* -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "all", 3 | "tabWidth": 2, 4 | "semi": false, 5 | "singleQuote": true 6 | } 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 hkgnp 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [:gift_heart: Sponsor this project on Github](https://github.com/sponsors/hkgnp) or [:coffee: Get me a coffee](https://www.buymeacoffee.com/hkgnp.dev) if you like this plugin! 2 | 3 | # Overview 4 | 5 | This super simple plugin uses NLP to parse your content for dates and times so that they can be easily tracked through your yournal pages. 6 | 7 | ## Toolbar 8 | 9 | ![](/screenshots/toolbar-demo.gif) 10 | 11 | *Navigate* 12 | 13 | Click on `Today`, or the left/right chevrons to navigate to today's journal page or the next or previous days'. 14 | 15 | *Weekly View* 16 | 17 | 1. Ensure the correct start day of week is selected in the plugin settings. 18 | 2. Click on `Week ` to navigate to the weekly view. 19 | 3. This will create: 20 | - A page in the format `YYYY/Week XX` 21 | - Page embeds for all the dates in that week 22 | 23 | ![](/screenshots/toolbar.png) 24 | 25 | 26 | ## Simple Parsing 27 | 28 | ![](/screenshots/demo.gif) 29 | 30 | ## Complex Parsing with Scheduled and Deadline options 31 | 32 | ![](/screenshots/demo2.gif) 33 | 34 | ## Auto Inline Parsing 35 | 36 | As per the video, use `%enable auto-parsing%` to turn on auto parsing (off by default) and `%disable auto-parsing%` to turn it off. 37 | 38 | Or, you can just use the hotkey combination `a p` to toggle auto-parsing on and off. 39 | 40 | ![](/screenshots/demo3.gif) 41 | 42 | ## Semi-auto Inline Parsing 43 | 44 | Like auto inline-parsing, but this time the parsing is triggered only if the date/time language is prefixed with an `@`, `%` or `^`. Without the prefix, the block will not auto-parse. The available prefixes are: 45 | 46 | - `@` is to simply parse the date 47 | - `%` converts it to a scheduled item 48 | - `^` converts it to a deadline item 49 | 50 | You can use the hotkey combination `s p` to toggle semi-auto-parsing on and off. See the video below for instructions: 51 | 52 | ![](/screenshots/demo6.gif) 53 | 54 | ## Using the Command Palette 55 | 56 | Use `Ctrl + Shift + p` for Windows or `Cmd + Shift + p` for Mac. Then type `@goto` and select the first option that comes up. You will be presented with a search box to enter the day or date you want to go to. 57 | 58 | ![](/screenshots/demo5.gif) 59 | 60 | ## Changing languages 61 | 62 | Currently, the following languages are supported: 63 | 64 | 4. German: `de` 65 | 3. French: `fr` 66 | 1. Japanese: `ja` 67 | 2. Dutch: `nl` 68 | 6. Portuguese: `pt` 69 | 5. Russion: `ru` 70 | 7. Chinese: `zh` 71 | 72 | Add the following line inside the plugin settings, and change the language accordingly: 73 | 74 | ``` 75 | { 76 | "lang": "ja" 77 | } 78 | ``` 79 | 80 | ![](/screenshots/demo4.gif) 81 | 82 | # Installation 83 | 84 | If the plugin is not available in the marketplace, you can load it manually by downloading the [latest release here](https://github.com/hkgnp/logseq-datenlp-plugin/releases) and manually loading it into Logseq. 85 | 86 | # Credits 87 | 88 | [SherlockJS](https://github.com/neilgupta/Sherlock) 89 | 90 | [Chrono](https://github.com/wanasit/chrono) 91 | 92 | Darwis once again for his out of the box thinking 93 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import eslint from '@eslint/js' 2 | import prettierConfig from 'eslint-config-prettier' 3 | import simpleImportSort from 'eslint-plugin-simple-import-sort' 4 | import tseslint from 'typescript-eslint' 5 | 6 | export default tseslint.config( 7 | eslint.configs.recommended, 8 | ...tseslint.configs.stylistic, 9 | ...tseslint.configs.recommended, 10 | prettierConfig, 11 | { 12 | ignores: ['**/dist/'], 13 | }, 14 | { 15 | plugins: { 16 | 'simple-import-sort': simpleImportSort, 17 | }, 18 | rules: { 19 | 'simple-import-sort/imports': 'error', 20 | 'simple-import-sort/exports': 'error', 21 | '@typescript-eslint/no-explicit-any': 'off', 22 | '@typescript-eslint/no-unused-vars': [ 23 | 'error', 24 | { varsIgnorePattern: '^_' }, 25 | ], 26 | }, 27 | }, 28 | ) 29 | -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "logseq-datenlp-plugin", 3 | "author": "benjypng", 4 | "description": "Auto-insert dates using NLP.", 5 | "license": "MIT", 6 | "logseq": { 7 | "id": "logseq-datenlp-plugin", 8 | "title": "logseq-datenlp-plugin", 9 | "icon": "./icon.svg", 10 | "main": "dist/index.html" 11 | }, 12 | "scripts": { 13 | "dev": "npx vite", 14 | "build": "pnpm run build:css && npx tsc && npx vite build", 15 | "preview": "npx vite preview", 16 | "build:css": "npx tailwindcss -i ./src/tailwind.css -o ./src/output.css", 17 | "lint": "npx eslint . --fix" 18 | }, 19 | "release": { 20 | "branches": [ 21 | "main" 22 | ], 23 | "plugins": [ 24 | [ 25 | "@semantic-release/github", 26 | { 27 | "assets": [ 28 | "logseq-datenlp-plugin.zip" 29 | ] 30 | } 31 | ] 32 | ] 33 | }, 34 | "dependencies": { 35 | "@logseq/libs": "^0.0.15", 36 | "chrono-node": "^2.7.6", 37 | "date-fns": "^3.6.0", 38 | "logseq-dateutils": "^2.1.2", 39 | "react": "^18.3.1", 40 | "react-dom": "^18.3.1" 41 | }, 42 | "devDependencies": { 43 | "@eslint/js": "^9.6.0", 44 | "@types/eslint": "^8.56.10", 45 | "@types/eslint-config-prettier": "^6.11.3", 46 | "@types/eslint__js": "^8.42.3", 47 | "@types/node": "^20.14.9", 48 | "@types/react": "^18.3.3", 49 | "@types/react-dom": "^18.3.0", 50 | "eslint": "^8.57.0", 51 | "eslint-config-prettier": "^9.1.0", 52 | "eslint-plugin-simple-import-sort": "^12.1.1", 53 | "prettier": "^3.3.2", 54 | "tailwindcss": "^3.4.4", 55 | "typescript": "^5.5.3", 56 | "typescript-eslint": "^7.15.0", 57 | "vite": "^4.5.3", 58 | "vite-plugin-logseq": "^1.1.2", 59 | "vite-tsconfig-paths": "^4.3.2" 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@logseq/libs': 12 | specifier: ^0.0.15 13 | version: 0.0.15 14 | chrono-node: 15 | specifier: ^2.7.6 16 | version: 2.7.6 17 | date-fns: 18 | specifier: ^3.6.0 19 | version: 3.6.0 20 | logseq-dateutils: 21 | specifier: ^2.1.2 22 | version: 2.1.2 23 | react: 24 | specifier: ^18.3.1 25 | version: 18.3.1 26 | react-dom: 27 | specifier: ^18.3.1 28 | version: 18.3.1(react@18.3.1) 29 | devDependencies: 30 | '@eslint/js': 31 | specifier: ^9.6.0 32 | version: 9.6.0 33 | '@types/eslint': 34 | specifier: ^8.56.10 35 | version: 8.56.10 36 | '@types/eslint-config-prettier': 37 | specifier: ^6.11.3 38 | version: 6.11.3 39 | '@types/eslint__js': 40 | specifier: ^8.42.3 41 | version: 8.42.3 42 | '@types/node': 43 | specifier: ^20.14.9 44 | version: 20.14.9 45 | '@types/react': 46 | specifier: ^18.3.3 47 | version: 18.3.3 48 | '@types/react-dom': 49 | specifier: ^18.3.0 50 | version: 18.3.0 51 | eslint: 52 | specifier: ^8.57.0 53 | version: 8.57.0 54 | eslint-config-prettier: 55 | specifier: ^9.1.0 56 | version: 9.1.0(eslint@8.57.0) 57 | eslint-plugin-simple-import-sort: 58 | specifier: ^12.1.1 59 | version: 12.1.1(eslint@8.57.0) 60 | prettier: 61 | specifier: ^3.3.2 62 | version: 3.3.2 63 | tailwindcss: 64 | specifier: ^3.4.4 65 | version: 3.4.4 66 | typescript: 67 | specifier: ^5.5.3 68 | version: 5.5.3 69 | typescript-eslint: 70 | specifier: ^7.15.0 71 | version: 7.15.0(eslint@8.57.0)(typescript@5.5.3) 72 | vite: 73 | specifier: ^4.5.3 74 | version: 4.5.3(@types/node@20.14.9) 75 | vite-plugin-logseq: 76 | specifier: ^1.1.2 77 | version: 1.1.2 78 | vite-tsconfig-paths: 79 | specifier: ^4.3.2 80 | version: 4.3.2(typescript@5.5.3)(vite@4.5.3(@types/node@20.14.9)) 81 | 82 | packages: 83 | 84 | '@alloc/quick-lru@5.2.0': 85 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 86 | engines: {node: '>=10'} 87 | 88 | '@babel/runtime@7.24.7': 89 | resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} 90 | engines: {node: '>=6.9.0'} 91 | 92 | '@esbuild/android-arm64@0.18.20': 93 | resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} 94 | engines: {node: '>=12'} 95 | cpu: [arm64] 96 | os: [android] 97 | 98 | '@esbuild/android-arm@0.18.20': 99 | resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} 100 | engines: {node: '>=12'} 101 | cpu: [arm] 102 | os: [android] 103 | 104 | '@esbuild/android-x64@0.18.20': 105 | resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} 106 | engines: {node: '>=12'} 107 | cpu: [x64] 108 | os: [android] 109 | 110 | '@esbuild/darwin-arm64@0.18.20': 111 | resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} 112 | engines: {node: '>=12'} 113 | cpu: [arm64] 114 | os: [darwin] 115 | 116 | '@esbuild/darwin-x64@0.18.20': 117 | resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} 118 | engines: {node: '>=12'} 119 | cpu: [x64] 120 | os: [darwin] 121 | 122 | '@esbuild/freebsd-arm64@0.18.20': 123 | resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} 124 | engines: {node: '>=12'} 125 | cpu: [arm64] 126 | os: [freebsd] 127 | 128 | '@esbuild/freebsd-x64@0.18.20': 129 | resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} 130 | engines: {node: '>=12'} 131 | cpu: [x64] 132 | os: [freebsd] 133 | 134 | '@esbuild/linux-arm64@0.18.20': 135 | resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} 136 | engines: {node: '>=12'} 137 | cpu: [arm64] 138 | os: [linux] 139 | 140 | '@esbuild/linux-arm@0.18.20': 141 | resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} 142 | engines: {node: '>=12'} 143 | cpu: [arm] 144 | os: [linux] 145 | 146 | '@esbuild/linux-ia32@0.18.20': 147 | resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} 148 | engines: {node: '>=12'} 149 | cpu: [ia32] 150 | os: [linux] 151 | 152 | '@esbuild/linux-loong64@0.18.20': 153 | resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} 154 | engines: {node: '>=12'} 155 | cpu: [loong64] 156 | os: [linux] 157 | 158 | '@esbuild/linux-mips64el@0.18.20': 159 | resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} 160 | engines: {node: '>=12'} 161 | cpu: [mips64el] 162 | os: [linux] 163 | 164 | '@esbuild/linux-ppc64@0.18.20': 165 | resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} 166 | engines: {node: '>=12'} 167 | cpu: [ppc64] 168 | os: [linux] 169 | 170 | '@esbuild/linux-riscv64@0.18.20': 171 | resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} 172 | engines: {node: '>=12'} 173 | cpu: [riscv64] 174 | os: [linux] 175 | 176 | '@esbuild/linux-s390x@0.18.20': 177 | resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} 178 | engines: {node: '>=12'} 179 | cpu: [s390x] 180 | os: [linux] 181 | 182 | '@esbuild/linux-x64@0.18.20': 183 | resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} 184 | engines: {node: '>=12'} 185 | cpu: [x64] 186 | os: [linux] 187 | 188 | '@esbuild/netbsd-x64@0.18.20': 189 | resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} 190 | engines: {node: '>=12'} 191 | cpu: [x64] 192 | os: [netbsd] 193 | 194 | '@esbuild/openbsd-x64@0.18.20': 195 | resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} 196 | engines: {node: '>=12'} 197 | cpu: [x64] 198 | os: [openbsd] 199 | 200 | '@esbuild/sunos-x64@0.18.20': 201 | resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} 202 | engines: {node: '>=12'} 203 | cpu: [x64] 204 | os: [sunos] 205 | 206 | '@esbuild/win32-arm64@0.18.20': 207 | resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} 208 | engines: {node: '>=12'} 209 | cpu: [arm64] 210 | os: [win32] 211 | 212 | '@esbuild/win32-ia32@0.18.20': 213 | resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} 214 | engines: {node: '>=12'} 215 | cpu: [ia32] 216 | os: [win32] 217 | 218 | '@esbuild/win32-x64@0.18.20': 219 | resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} 220 | engines: {node: '>=12'} 221 | cpu: [x64] 222 | os: [win32] 223 | 224 | '@eslint-community/eslint-utils@4.4.0': 225 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 226 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 227 | peerDependencies: 228 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 229 | 230 | '@eslint-community/regexpp@4.11.0': 231 | resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} 232 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 233 | 234 | '@eslint/eslintrc@2.1.4': 235 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 236 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 237 | 238 | '@eslint/js@8.57.0': 239 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 240 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 241 | 242 | '@eslint/js@9.6.0': 243 | resolution: {integrity: sha512-D9B0/3vNg44ZeWbYMpBoXqNP4j6eQD5vNwIlGAuFRRzK/WtT/jvDQW3Bi9kkf3PMDMlM7Yi+73VLUsn5bJcl8A==} 244 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 245 | 246 | '@humanwhocodes/config-array@0.11.14': 247 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 248 | engines: {node: '>=10.10.0'} 249 | deprecated: Use @eslint/config-array instead 250 | 251 | '@humanwhocodes/module-importer@1.0.1': 252 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 253 | engines: {node: '>=12.22'} 254 | 255 | '@humanwhocodes/object-schema@2.0.3': 256 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 257 | deprecated: Use @eslint/object-schema instead 258 | 259 | '@isaacs/cliui@8.0.2': 260 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 261 | engines: {node: '>=12'} 262 | 263 | '@jridgewell/gen-mapping@0.3.5': 264 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 265 | engines: {node: '>=6.0.0'} 266 | 267 | '@jridgewell/resolve-uri@3.1.2': 268 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 269 | engines: {node: '>=6.0.0'} 270 | 271 | '@jridgewell/set-array@1.2.1': 272 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 273 | engines: {node: '>=6.0.0'} 274 | 275 | '@jridgewell/sourcemap-codec@1.4.15': 276 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 277 | 278 | '@jridgewell/trace-mapping@0.3.25': 279 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 280 | 281 | '@logseq/libs@0.0.15': 282 | resolution: {integrity: sha512-Z4YrYGfu8Y3s9LTqVnPGkxlO+KZtP1YalH/A63zYgxP61cV5QtKlnHWNcjsKxsD5CkaSL4MlSN4mf7wNx/Fm0A==} 283 | 284 | '@nodelib/fs.scandir@2.1.5': 285 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 286 | engines: {node: '>= 8'} 287 | 288 | '@nodelib/fs.stat@2.0.5': 289 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 290 | engines: {node: '>= 8'} 291 | 292 | '@nodelib/fs.walk@1.2.8': 293 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 294 | engines: {node: '>= 8'} 295 | 296 | '@pkgjs/parseargs@0.11.0': 297 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 298 | engines: {node: '>=14'} 299 | 300 | '@types/eslint-config-prettier@6.11.3': 301 | resolution: {integrity: sha512-3wXCiM8croUnhg9LdtZUJQwNcQYGWxxdOWDjPe1ykCqJFPVpzAKfs/2dgSoCtAvdPeaponcWPI7mPcGGp9dkKQ==} 302 | 303 | '@types/eslint@8.56.10': 304 | resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} 305 | 306 | '@types/eslint__js@8.42.3': 307 | resolution: {integrity: sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==} 308 | 309 | '@types/estree@1.0.5': 310 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} 311 | 312 | '@types/json-schema@7.0.15': 313 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 314 | 315 | '@types/node@20.14.9': 316 | resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==} 317 | 318 | '@types/prop-types@15.7.12': 319 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 320 | 321 | '@types/react-dom@18.3.0': 322 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 323 | 324 | '@types/react@18.3.3': 325 | resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} 326 | 327 | '@typescript-eslint/eslint-plugin@7.15.0': 328 | resolution: {integrity: sha512-uiNHpyjZtFrLwLDpHnzaDlP3Tt6sGMqTCiqmxaN4n4RP0EfYZDODJyddiFDF44Hjwxr5xAcaYxVKm9QKQFJFLA==} 329 | engines: {node: ^18.18.0 || >=20.0.0} 330 | peerDependencies: 331 | '@typescript-eslint/parser': ^7.0.0 332 | eslint: ^8.56.0 333 | typescript: '*' 334 | peerDependenciesMeta: 335 | typescript: 336 | optional: true 337 | 338 | '@typescript-eslint/parser@7.15.0': 339 | resolution: {integrity: sha512-k9fYuQNnypLFcqORNClRykkGOMOj+pV6V91R4GO/l1FDGwpqmSwoOQrOHo3cGaH63e+D3ZiCAOsuS/D2c99j/A==} 340 | engines: {node: ^18.18.0 || >=20.0.0} 341 | peerDependencies: 342 | eslint: ^8.56.0 343 | typescript: '*' 344 | peerDependenciesMeta: 345 | typescript: 346 | optional: true 347 | 348 | '@typescript-eslint/scope-manager@7.15.0': 349 | resolution: {integrity: sha512-Q/1yrF/XbxOTvttNVPihxh1b9fxamjEoz2Os/Pe38OHwxC24CyCqXxGTOdpb4lt6HYtqw9HetA/Rf6gDGaMPlw==} 350 | engines: {node: ^18.18.0 || >=20.0.0} 351 | 352 | '@typescript-eslint/type-utils@7.15.0': 353 | resolution: {integrity: sha512-SkgriaeV6PDvpA6253PDVep0qCqgbO1IOBiycjnXsszNTVQe5flN5wR5jiczoEoDEnAqYFSFFc9al9BSGVltkg==} 354 | engines: {node: ^18.18.0 || >=20.0.0} 355 | peerDependencies: 356 | eslint: ^8.56.0 357 | typescript: '*' 358 | peerDependenciesMeta: 359 | typescript: 360 | optional: true 361 | 362 | '@typescript-eslint/types@7.15.0': 363 | resolution: {integrity: sha512-aV1+B1+ySXbQH0pLK0rx66I3IkiZNidYobyfn0WFsdGhSXw+P3YOqeTq5GED458SfB24tg+ux3S+9g118hjlTw==} 364 | engines: {node: ^18.18.0 || >=20.0.0} 365 | 366 | '@typescript-eslint/typescript-estree@7.15.0': 367 | resolution: {integrity: sha512-gjyB/rHAopL/XxfmYThQbXbzRMGhZzGw6KpcMbfe8Q3nNQKStpxnUKeXb0KiN/fFDR42Z43szs6rY7eHk0zdGQ==} 368 | engines: {node: ^18.18.0 || >=20.0.0} 369 | peerDependencies: 370 | typescript: '*' 371 | peerDependenciesMeta: 372 | typescript: 373 | optional: true 374 | 375 | '@typescript-eslint/utils@7.15.0': 376 | resolution: {integrity: sha512-hfDMDqaqOqsUVGiEPSMLR/AjTSCsmJwjpKkYQRo1FNbmW4tBwBspYDwO9eh7sKSTwMQgBw9/T4DHudPaqshRWA==} 377 | engines: {node: ^18.18.0 || >=20.0.0} 378 | peerDependencies: 379 | eslint: ^8.56.0 380 | 381 | '@typescript-eslint/visitor-keys@7.15.0': 382 | resolution: {integrity: sha512-Hqgy/ETgpt2L5xueA/zHHIl4fJI2O4XUE9l4+OIfbJIRSnTJb/QscncdqqZzofQegIJugRIF57OJea1khw2SDw==} 383 | engines: {node: ^18.18.0 || >=20.0.0} 384 | 385 | '@ungap/structured-clone@1.2.0': 386 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 387 | 388 | acorn-jsx@5.3.2: 389 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 390 | peerDependencies: 391 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 392 | 393 | acorn@8.12.1: 394 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} 395 | engines: {node: '>=0.4.0'} 396 | hasBin: true 397 | 398 | ajv@6.12.6: 399 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 400 | 401 | ansi-regex@5.0.1: 402 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 403 | engines: {node: '>=8'} 404 | 405 | ansi-regex@6.0.1: 406 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 407 | engines: {node: '>=12'} 408 | 409 | ansi-styles@4.3.0: 410 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 411 | engines: {node: '>=8'} 412 | 413 | ansi-styles@6.2.1: 414 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 415 | engines: {node: '>=12'} 416 | 417 | any-promise@1.3.0: 418 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 419 | 420 | anymatch@3.1.3: 421 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 422 | engines: {node: '>= 8'} 423 | 424 | arg@5.0.2: 425 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 426 | 427 | argparse@2.0.1: 428 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 429 | 430 | array-union@2.1.0: 431 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 432 | engines: {node: '>=8'} 433 | 434 | balanced-match@1.0.2: 435 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 436 | 437 | binary-extensions@2.3.0: 438 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 439 | engines: {node: '>=8'} 440 | 441 | brace-expansion@1.1.11: 442 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 443 | 444 | brace-expansion@2.0.1: 445 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 446 | 447 | braces@3.0.3: 448 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 449 | engines: {node: '>=8'} 450 | 451 | callsites@3.1.0: 452 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 453 | engines: {node: '>=6'} 454 | 455 | camelcase-css@2.0.1: 456 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 457 | engines: {node: '>= 6'} 458 | 459 | chalk@4.1.2: 460 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 461 | engines: {node: '>=10'} 462 | 463 | chokidar@3.6.0: 464 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 465 | engines: {node: '>= 8.10.0'} 466 | 467 | chrono-node@2.7.6: 468 | resolution: {integrity: sha512-yugKSRLHc6B6kXxm/DwNc94zhaddAjCSO9IOGH3w7NIWNM+gUoLl/2/XLndiw4I+XhU4H2LOhC5Ab2JjS6JWsA==} 469 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 470 | 471 | color-convert@2.0.1: 472 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 473 | engines: {node: '>=7.0.0'} 474 | 475 | color-name@1.1.4: 476 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 477 | 478 | commander@4.1.1: 479 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 480 | engines: {node: '>= 6'} 481 | 482 | concat-map@0.0.1: 483 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 484 | 485 | cross-spawn@7.0.3: 486 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 487 | engines: {node: '>= 8'} 488 | 489 | cssesc@3.0.0: 490 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 491 | engines: {node: '>=4'} 492 | hasBin: true 493 | 494 | csstype@3.1.0: 495 | resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} 496 | 497 | csstype@3.1.3: 498 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 499 | 500 | date-fns@2.30.0: 501 | resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} 502 | engines: {node: '>=0.11'} 503 | 504 | date-fns@3.6.0: 505 | resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==} 506 | 507 | dayjs@1.11.11: 508 | resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} 509 | 510 | debug@4.3.4: 511 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 512 | engines: {node: '>=6.0'} 513 | peerDependencies: 514 | supports-color: '*' 515 | peerDependenciesMeta: 516 | supports-color: 517 | optional: true 518 | 519 | debug@4.3.5: 520 | resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} 521 | engines: {node: '>=6.0'} 522 | peerDependencies: 523 | supports-color: '*' 524 | peerDependenciesMeta: 525 | supports-color: 526 | optional: true 527 | 528 | deep-is@0.1.4: 529 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 530 | 531 | didyoumean@1.2.2: 532 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 533 | 534 | dir-glob@3.0.1: 535 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 536 | engines: {node: '>=8'} 537 | 538 | dlv@1.1.3: 539 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 540 | 541 | doctrine@3.0.0: 542 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 543 | engines: {node: '>=6.0.0'} 544 | 545 | dompurify@2.3.8: 546 | resolution: {integrity: sha512-eVhaWoVibIzqdGYjwsBWodIQIaXFSB+cKDf4cfxLMsK0xiud6SE+/WCVx/Xw/UwQsa4cS3T2eITcdtmTg2UKcw==} 547 | 548 | dot-case@3.0.4: 549 | resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 550 | 551 | eastasianwidth@0.2.0: 552 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 553 | 554 | emoji-regex@8.0.0: 555 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 556 | 557 | emoji-regex@9.2.2: 558 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 559 | 560 | esbuild@0.18.20: 561 | resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} 562 | engines: {node: '>=12'} 563 | hasBin: true 564 | 565 | escape-string-regexp@4.0.0: 566 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 567 | engines: {node: '>=10'} 568 | 569 | eslint-config-prettier@9.1.0: 570 | resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} 571 | hasBin: true 572 | peerDependencies: 573 | eslint: '>=7.0.0' 574 | 575 | eslint-plugin-simple-import-sort@12.1.1: 576 | resolution: {integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==} 577 | peerDependencies: 578 | eslint: '>=5.0.0' 579 | 580 | eslint-scope@7.2.2: 581 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 582 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 583 | 584 | eslint-visitor-keys@3.4.3: 585 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 586 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 587 | 588 | eslint@8.57.0: 589 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 590 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 591 | hasBin: true 592 | 593 | espree@9.6.1: 594 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 595 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 596 | 597 | esquery@1.5.0: 598 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 599 | engines: {node: '>=0.10'} 600 | 601 | esrecurse@4.3.0: 602 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 603 | engines: {node: '>=4.0'} 604 | 605 | estraverse@5.3.0: 606 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 607 | engines: {node: '>=4.0'} 608 | 609 | esutils@2.0.3: 610 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 611 | engines: {node: '>=0.10.0'} 612 | 613 | eventemitter3@4.0.7: 614 | resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} 615 | 616 | fast-deep-equal@3.1.3: 617 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 618 | 619 | fast-glob@3.3.2: 620 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 621 | engines: {node: '>=8.6.0'} 622 | 623 | fast-json-stable-stringify@2.1.0: 624 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 625 | 626 | fast-levenshtein@2.0.6: 627 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 628 | 629 | fastq@1.17.1: 630 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 631 | 632 | file-entry-cache@6.0.1: 633 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 634 | engines: {node: ^10.12.0 || >=12.0.0} 635 | 636 | fill-range@7.1.1: 637 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 638 | engines: {node: '>=8'} 639 | 640 | find-up@5.0.0: 641 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 642 | engines: {node: '>=10'} 643 | 644 | flat-cache@3.2.0: 645 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 646 | engines: {node: ^10.12.0 || >=12.0.0} 647 | 648 | flatted@3.3.1: 649 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 650 | 651 | foreground-child@3.2.1: 652 | resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} 653 | engines: {node: '>=14'} 654 | 655 | fs.realpath@1.0.0: 656 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 657 | 658 | fsevents@2.3.3: 659 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 660 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 661 | os: [darwin] 662 | 663 | function-bind@1.1.2: 664 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 665 | 666 | glob-parent@5.1.2: 667 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 668 | engines: {node: '>= 6'} 669 | 670 | glob-parent@6.0.2: 671 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 672 | engines: {node: '>=10.13.0'} 673 | 674 | glob@10.4.2: 675 | resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} 676 | engines: {node: '>=16 || 14 >=14.18'} 677 | hasBin: true 678 | 679 | glob@7.2.3: 680 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 681 | deprecated: Glob versions prior to v9 are no longer supported 682 | 683 | globals@13.24.0: 684 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 685 | engines: {node: '>=8'} 686 | 687 | globby@11.1.0: 688 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 689 | engines: {node: '>=10'} 690 | 691 | globrex@0.1.2: 692 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 693 | 694 | graphemer@1.4.0: 695 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 696 | 697 | has-flag@4.0.0: 698 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 699 | engines: {node: '>=8'} 700 | 701 | hasown@2.0.2: 702 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 703 | engines: {node: '>= 0.4'} 704 | 705 | ignore@5.3.1: 706 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 707 | engines: {node: '>= 4'} 708 | 709 | import-fresh@3.3.0: 710 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 711 | engines: {node: '>=6'} 712 | 713 | imurmurhash@0.1.4: 714 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 715 | engines: {node: '>=0.8.19'} 716 | 717 | inflight@1.0.6: 718 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 719 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 720 | 721 | inherits@2.0.3: 722 | resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} 723 | 724 | inherits@2.0.4: 725 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 726 | 727 | is-binary-path@2.1.0: 728 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 729 | engines: {node: '>=8'} 730 | 731 | is-core-module@2.14.0: 732 | resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} 733 | engines: {node: '>= 0.4'} 734 | 735 | is-extglob@2.1.1: 736 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 737 | engines: {node: '>=0.10.0'} 738 | 739 | is-fullwidth-code-point@3.0.0: 740 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 741 | engines: {node: '>=8'} 742 | 743 | is-glob@4.0.3: 744 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 745 | engines: {node: '>=0.10.0'} 746 | 747 | is-number@7.0.0: 748 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 749 | engines: {node: '>=0.12.0'} 750 | 751 | is-path-inside@3.0.3: 752 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 753 | engines: {node: '>=8'} 754 | 755 | isexe@2.0.0: 756 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 757 | 758 | jackspeak@3.4.0: 759 | resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} 760 | engines: {node: '>=14'} 761 | 762 | jiti@1.21.6: 763 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} 764 | hasBin: true 765 | 766 | js-tokens@4.0.0: 767 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 768 | 769 | js-yaml@4.1.0: 770 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 771 | hasBin: true 772 | 773 | json-buffer@3.0.1: 774 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 775 | 776 | json-schema-traverse@0.4.1: 777 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 778 | 779 | json-stable-stringify-without-jsonify@1.0.1: 780 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 781 | 782 | keyv@4.5.4: 783 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 784 | 785 | levn@0.4.1: 786 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 787 | engines: {node: '>= 0.8.0'} 788 | 789 | lilconfig@2.1.0: 790 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 791 | engines: {node: '>=10'} 792 | 793 | lilconfig@3.1.2: 794 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} 795 | engines: {node: '>=14'} 796 | 797 | lines-and-columns@1.2.4: 798 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 799 | 800 | locate-path@6.0.0: 801 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 802 | engines: {node: '>=10'} 803 | 804 | lodash-es@4.17.21: 805 | resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} 806 | 807 | lodash.merge@4.6.2: 808 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 809 | 810 | logseq-dateutils@2.1.2: 811 | resolution: {integrity: sha512-N4WD6VynVC+rMQr4+BSLu/bvLhYnLc9/DBjNASIZroC0Rf7Ymwxm/G84unVxVi6iR7Y21T/4UhJEEtzfIIOQaw==} 812 | engines: {node: '>=12'} 813 | 814 | loose-envify@1.4.0: 815 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 816 | hasBin: true 817 | 818 | lower-case@2.0.2: 819 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 820 | 821 | lru-cache@10.3.0: 822 | resolution: {integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==} 823 | engines: {node: 14 || >=16.14} 824 | 825 | magic-string@0.26.7: 826 | resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} 827 | engines: {node: '>=12'} 828 | 829 | merge2@1.4.1: 830 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 831 | engines: {node: '>= 8'} 832 | 833 | micromatch@4.0.7: 834 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} 835 | engines: {node: '>=8.6'} 836 | 837 | minimatch@3.1.2: 838 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 839 | 840 | minimatch@9.0.5: 841 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 842 | engines: {node: '>=16 || 14 >=14.17'} 843 | 844 | minipass@7.1.2: 845 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 846 | engines: {node: '>=16 || 14 >=14.17'} 847 | 848 | ms@2.1.2: 849 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 850 | 851 | mz@2.7.0: 852 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 853 | 854 | nanoid@3.3.7: 855 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 856 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 857 | hasBin: true 858 | 859 | natural-compare@1.4.0: 860 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 861 | 862 | no-case@3.0.4: 863 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 864 | 865 | normalize-path@3.0.0: 866 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 867 | engines: {node: '>=0.10.0'} 868 | 869 | object-assign@4.1.1: 870 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 871 | engines: {node: '>=0.10.0'} 872 | 873 | object-hash@3.0.0: 874 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 875 | engines: {node: '>= 6'} 876 | 877 | once@1.4.0: 878 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 879 | 880 | optionator@0.9.4: 881 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 882 | engines: {node: '>= 0.8.0'} 883 | 884 | p-limit@3.1.0: 885 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 886 | engines: {node: '>=10'} 887 | 888 | p-locate@5.0.0: 889 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 890 | engines: {node: '>=10'} 891 | 892 | package-json-from-dist@1.0.0: 893 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} 894 | 895 | parent-module@1.0.1: 896 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 897 | engines: {node: '>=6'} 898 | 899 | path-exists@4.0.0: 900 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 901 | engines: {node: '>=8'} 902 | 903 | path-is-absolute@1.0.1: 904 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 905 | engines: {node: '>=0.10.0'} 906 | 907 | path-key@3.1.1: 908 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 909 | engines: {node: '>=8'} 910 | 911 | path-parse@1.0.7: 912 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 913 | 914 | path-scurry@1.11.1: 915 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 916 | engines: {node: '>=16 || 14 >=14.18'} 917 | 918 | path-type@4.0.0: 919 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 920 | engines: {node: '>=8'} 921 | 922 | path@0.12.7: 923 | resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} 924 | 925 | picocolors@1.0.1: 926 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} 927 | 928 | picomatch@2.3.1: 929 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 930 | engines: {node: '>=8.6'} 931 | 932 | pify@2.3.0: 933 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 934 | engines: {node: '>=0.10.0'} 935 | 936 | pirates@4.0.6: 937 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 938 | engines: {node: '>= 6'} 939 | 940 | postcss-import@15.1.0: 941 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 942 | engines: {node: '>=14.0.0'} 943 | peerDependencies: 944 | postcss: ^8.0.0 945 | 946 | postcss-js@4.0.1: 947 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 948 | engines: {node: ^12 || ^14 || >= 16} 949 | peerDependencies: 950 | postcss: ^8.4.21 951 | 952 | postcss-load-config@4.0.2: 953 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 954 | engines: {node: '>= 14'} 955 | peerDependencies: 956 | postcss: '>=8.0.9' 957 | ts-node: '>=9.0.0' 958 | peerDependenciesMeta: 959 | postcss: 960 | optional: true 961 | ts-node: 962 | optional: true 963 | 964 | postcss-nested@6.0.1: 965 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 966 | engines: {node: '>=12.0'} 967 | peerDependencies: 968 | postcss: ^8.2.14 969 | 970 | postcss-selector-parser@6.1.0: 971 | resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} 972 | engines: {node: '>=4'} 973 | 974 | postcss-value-parser@4.2.0: 975 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 976 | 977 | postcss@8.4.39: 978 | resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} 979 | engines: {node: ^10 || ^12 || >=14} 980 | 981 | prelude-ls@1.2.1: 982 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 983 | engines: {node: '>= 0.8.0'} 984 | 985 | prettier@3.3.2: 986 | resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} 987 | engines: {node: '>=14'} 988 | hasBin: true 989 | 990 | process@0.11.10: 991 | resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 992 | engines: {node: '>= 0.6.0'} 993 | 994 | punycode@2.3.1: 995 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 996 | engines: {node: '>=6'} 997 | 998 | queue-microtask@1.2.3: 999 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1000 | 1001 | react-dom@18.3.1: 1002 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 1003 | peerDependencies: 1004 | react: ^18.3.1 1005 | 1006 | react@18.3.1: 1007 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 1008 | engines: {node: '>=0.10.0'} 1009 | 1010 | read-cache@1.0.0: 1011 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1012 | 1013 | readdirp@3.6.0: 1014 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1015 | engines: {node: '>=8.10.0'} 1016 | 1017 | regenerator-runtime@0.14.1: 1018 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1019 | 1020 | resolve-from@4.0.0: 1021 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1022 | engines: {node: '>=4'} 1023 | 1024 | resolve@1.22.8: 1025 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1026 | hasBin: true 1027 | 1028 | reusify@1.0.4: 1029 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1030 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1031 | 1032 | rimraf@3.0.2: 1033 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1034 | deprecated: Rimraf versions prior to v4 are no longer supported 1035 | hasBin: true 1036 | 1037 | rollup@3.29.4: 1038 | resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} 1039 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 1040 | hasBin: true 1041 | 1042 | run-parallel@1.2.0: 1043 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1044 | 1045 | scheduler@0.23.2: 1046 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 1047 | 1048 | semver@7.6.2: 1049 | resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} 1050 | engines: {node: '>=10'} 1051 | hasBin: true 1052 | 1053 | shebang-command@2.0.0: 1054 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1055 | engines: {node: '>=8'} 1056 | 1057 | shebang-regex@3.0.0: 1058 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1059 | engines: {node: '>=8'} 1060 | 1061 | signal-exit@4.1.0: 1062 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1063 | engines: {node: '>=14'} 1064 | 1065 | slash@3.0.0: 1066 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1067 | engines: {node: '>=8'} 1068 | 1069 | snake-case@3.0.4: 1070 | resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} 1071 | 1072 | source-map-js@1.2.0: 1073 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 1074 | engines: {node: '>=0.10.0'} 1075 | 1076 | sourcemap-codec@1.4.8: 1077 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 1078 | deprecated: Please use @jridgewell/sourcemap-codec instead 1079 | 1080 | string-width@4.2.3: 1081 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1082 | engines: {node: '>=8'} 1083 | 1084 | string-width@5.1.2: 1085 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1086 | engines: {node: '>=12'} 1087 | 1088 | strip-ansi@6.0.1: 1089 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1090 | engines: {node: '>=8'} 1091 | 1092 | strip-ansi@7.1.0: 1093 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1094 | engines: {node: '>=12'} 1095 | 1096 | strip-json-comments@3.1.1: 1097 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1098 | engines: {node: '>=8'} 1099 | 1100 | sucrase@3.35.0: 1101 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1102 | engines: {node: '>=16 || 14 >=14.17'} 1103 | hasBin: true 1104 | 1105 | supports-color@7.2.0: 1106 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1107 | engines: {node: '>=8'} 1108 | 1109 | supports-preserve-symlinks-flag@1.0.0: 1110 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1111 | engines: {node: '>= 0.4'} 1112 | 1113 | tailwindcss@3.4.4: 1114 | resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==} 1115 | engines: {node: '>=14.0.0'} 1116 | hasBin: true 1117 | 1118 | text-table@0.2.0: 1119 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1120 | 1121 | thenify-all@1.6.0: 1122 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1123 | engines: {node: '>=0.8'} 1124 | 1125 | thenify@3.3.1: 1126 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1127 | 1128 | to-regex-range@5.0.1: 1129 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1130 | engines: {node: '>=8.0'} 1131 | 1132 | ts-api-utils@1.3.0: 1133 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1134 | engines: {node: '>=16'} 1135 | peerDependencies: 1136 | typescript: '>=4.2.0' 1137 | 1138 | ts-interface-checker@0.1.13: 1139 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1140 | 1141 | tsconfck@3.1.1: 1142 | resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==} 1143 | engines: {node: ^18 || >=20} 1144 | hasBin: true 1145 | peerDependencies: 1146 | typescript: ^5.0.0 1147 | peerDependenciesMeta: 1148 | typescript: 1149 | optional: true 1150 | 1151 | tslib@2.6.3: 1152 | resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} 1153 | 1154 | type-check@0.4.0: 1155 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1156 | engines: {node: '>= 0.8.0'} 1157 | 1158 | type-fest@0.20.2: 1159 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1160 | engines: {node: '>=10'} 1161 | 1162 | typescript-eslint@7.15.0: 1163 | resolution: {integrity: sha512-Ta40FhMXBCwHura4X4fncaCVkVcnJ9jnOq5+Lp4lN8F4DzHZtOwZdRvVBiNUGznUDHPwdGnrnwxmUOU2fFQqFA==} 1164 | engines: {node: ^18.18.0 || >=20.0.0} 1165 | peerDependencies: 1166 | eslint: ^8.56.0 1167 | typescript: '*' 1168 | peerDependenciesMeta: 1169 | typescript: 1170 | optional: true 1171 | 1172 | typescript@5.5.3: 1173 | resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} 1174 | engines: {node: '>=14.17'} 1175 | hasBin: true 1176 | 1177 | undici-types@5.26.5: 1178 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 1179 | 1180 | uri-js@4.4.1: 1181 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1182 | 1183 | util-deprecate@1.0.2: 1184 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1185 | 1186 | util@0.10.4: 1187 | resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} 1188 | 1189 | vite-plugin-logseq@1.1.2: 1190 | resolution: {integrity: sha512-l5YvoH3K25Zx9eqgoJFug7NfVqSPwq7/FcYYhN1TkdG8ZOiD+c+TAwdCS2dJbGgvx8GmSpbgwSZWgslB+wH53g==} 1191 | 1192 | vite-tsconfig-paths@4.3.2: 1193 | resolution: {integrity: sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==} 1194 | peerDependencies: 1195 | vite: '*' 1196 | peerDependenciesMeta: 1197 | vite: 1198 | optional: true 1199 | 1200 | vite@4.5.3: 1201 | resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==} 1202 | engines: {node: ^14.18.0 || >=16.0.0} 1203 | hasBin: true 1204 | peerDependencies: 1205 | '@types/node': '>= 14' 1206 | less: '*' 1207 | lightningcss: ^1.21.0 1208 | sass: '*' 1209 | stylus: '*' 1210 | sugarss: '*' 1211 | terser: ^5.4.0 1212 | peerDependenciesMeta: 1213 | '@types/node': 1214 | optional: true 1215 | less: 1216 | optional: true 1217 | lightningcss: 1218 | optional: true 1219 | sass: 1220 | optional: true 1221 | stylus: 1222 | optional: true 1223 | sugarss: 1224 | optional: true 1225 | terser: 1226 | optional: true 1227 | 1228 | which@2.0.2: 1229 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1230 | engines: {node: '>= 8'} 1231 | hasBin: true 1232 | 1233 | word-wrap@1.2.5: 1234 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1235 | engines: {node: '>=0.10.0'} 1236 | 1237 | wrap-ansi@7.0.0: 1238 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1239 | engines: {node: '>=10'} 1240 | 1241 | wrap-ansi@8.1.0: 1242 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1243 | engines: {node: '>=12'} 1244 | 1245 | wrappy@1.0.2: 1246 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1247 | 1248 | yaml@2.4.5: 1249 | resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} 1250 | engines: {node: '>= 14'} 1251 | hasBin: true 1252 | 1253 | yocto-queue@0.1.0: 1254 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1255 | engines: {node: '>=10'} 1256 | 1257 | snapshots: 1258 | 1259 | '@alloc/quick-lru@5.2.0': {} 1260 | 1261 | '@babel/runtime@7.24.7': 1262 | dependencies: 1263 | regenerator-runtime: 0.14.1 1264 | 1265 | '@esbuild/android-arm64@0.18.20': 1266 | optional: true 1267 | 1268 | '@esbuild/android-arm@0.18.20': 1269 | optional: true 1270 | 1271 | '@esbuild/android-x64@0.18.20': 1272 | optional: true 1273 | 1274 | '@esbuild/darwin-arm64@0.18.20': 1275 | optional: true 1276 | 1277 | '@esbuild/darwin-x64@0.18.20': 1278 | optional: true 1279 | 1280 | '@esbuild/freebsd-arm64@0.18.20': 1281 | optional: true 1282 | 1283 | '@esbuild/freebsd-x64@0.18.20': 1284 | optional: true 1285 | 1286 | '@esbuild/linux-arm64@0.18.20': 1287 | optional: true 1288 | 1289 | '@esbuild/linux-arm@0.18.20': 1290 | optional: true 1291 | 1292 | '@esbuild/linux-ia32@0.18.20': 1293 | optional: true 1294 | 1295 | '@esbuild/linux-loong64@0.18.20': 1296 | optional: true 1297 | 1298 | '@esbuild/linux-mips64el@0.18.20': 1299 | optional: true 1300 | 1301 | '@esbuild/linux-ppc64@0.18.20': 1302 | optional: true 1303 | 1304 | '@esbuild/linux-riscv64@0.18.20': 1305 | optional: true 1306 | 1307 | '@esbuild/linux-s390x@0.18.20': 1308 | optional: true 1309 | 1310 | '@esbuild/linux-x64@0.18.20': 1311 | optional: true 1312 | 1313 | '@esbuild/netbsd-x64@0.18.20': 1314 | optional: true 1315 | 1316 | '@esbuild/openbsd-x64@0.18.20': 1317 | optional: true 1318 | 1319 | '@esbuild/sunos-x64@0.18.20': 1320 | optional: true 1321 | 1322 | '@esbuild/win32-arm64@0.18.20': 1323 | optional: true 1324 | 1325 | '@esbuild/win32-ia32@0.18.20': 1326 | optional: true 1327 | 1328 | '@esbuild/win32-x64@0.18.20': 1329 | optional: true 1330 | 1331 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': 1332 | dependencies: 1333 | eslint: 8.57.0 1334 | eslint-visitor-keys: 3.4.3 1335 | 1336 | '@eslint-community/regexpp@4.11.0': {} 1337 | 1338 | '@eslint/eslintrc@2.1.4': 1339 | dependencies: 1340 | ajv: 6.12.6 1341 | debug: 4.3.5 1342 | espree: 9.6.1 1343 | globals: 13.24.0 1344 | ignore: 5.3.1 1345 | import-fresh: 3.3.0 1346 | js-yaml: 4.1.0 1347 | minimatch: 3.1.2 1348 | strip-json-comments: 3.1.1 1349 | transitivePeerDependencies: 1350 | - supports-color 1351 | 1352 | '@eslint/js@8.57.0': {} 1353 | 1354 | '@eslint/js@9.6.0': {} 1355 | 1356 | '@humanwhocodes/config-array@0.11.14': 1357 | dependencies: 1358 | '@humanwhocodes/object-schema': 2.0.3 1359 | debug: 4.3.5 1360 | minimatch: 3.1.2 1361 | transitivePeerDependencies: 1362 | - supports-color 1363 | 1364 | '@humanwhocodes/module-importer@1.0.1': {} 1365 | 1366 | '@humanwhocodes/object-schema@2.0.3': {} 1367 | 1368 | '@isaacs/cliui@8.0.2': 1369 | dependencies: 1370 | string-width: 5.1.2 1371 | string-width-cjs: string-width@4.2.3 1372 | strip-ansi: 7.1.0 1373 | strip-ansi-cjs: strip-ansi@6.0.1 1374 | wrap-ansi: 8.1.0 1375 | wrap-ansi-cjs: wrap-ansi@7.0.0 1376 | 1377 | '@jridgewell/gen-mapping@0.3.5': 1378 | dependencies: 1379 | '@jridgewell/set-array': 1.2.1 1380 | '@jridgewell/sourcemap-codec': 1.4.15 1381 | '@jridgewell/trace-mapping': 0.3.25 1382 | 1383 | '@jridgewell/resolve-uri@3.1.2': {} 1384 | 1385 | '@jridgewell/set-array@1.2.1': {} 1386 | 1387 | '@jridgewell/sourcemap-codec@1.4.15': {} 1388 | 1389 | '@jridgewell/trace-mapping@0.3.25': 1390 | dependencies: 1391 | '@jridgewell/resolve-uri': 3.1.2 1392 | '@jridgewell/sourcemap-codec': 1.4.15 1393 | 1394 | '@logseq/libs@0.0.15': 1395 | dependencies: 1396 | csstype: 3.1.0 1397 | debug: 4.3.4 1398 | dompurify: 2.3.8 1399 | eventemitter3: 4.0.7 1400 | fast-deep-equal: 3.1.3 1401 | lodash-es: 4.17.21 1402 | path: 0.12.7 1403 | snake-case: 3.0.4 1404 | transitivePeerDependencies: 1405 | - supports-color 1406 | 1407 | '@nodelib/fs.scandir@2.1.5': 1408 | dependencies: 1409 | '@nodelib/fs.stat': 2.0.5 1410 | run-parallel: 1.2.0 1411 | 1412 | '@nodelib/fs.stat@2.0.5': {} 1413 | 1414 | '@nodelib/fs.walk@1.2.8': 1415 | dependencies: 1416 | '@nodelib/fs.scandir': 2.1.5 1417 | fastq: 1.17.1 1418 | 1419 | '@pkgjs/parseargs@0.11.0': 1420 | optional: true 1421 | 1422 | '@types/eslint-config-prettier@6.11.3': {} 1423 | 1424 | '@types/eslint@8.56.10': 1425 | dependencies: 1426 | '@types/estree': 1.0.5 1427 | '@types/json-schema': 7.0.15 1428 | 1429 | '@types/eslint__js@8.42.3': 1430 | dependencies: 1431 | '@types/eslint': 8.56.10 1432 | 1433 | '@types/estree@1.0.5': {} 1434 | 1435 | '@types/json-schema@7.0.15': {} 1436 | 1437 | '@types/node@20.14.9': 1438 | dependencies: 1439 | undici-types: 5.26.5 1440 | 1441 | '@types/prop-types@15.7.12': {} 1442 | 1443 | '@types/react-dom@18.3.0': 1444 | dependencies: 1445 | '@types/react': 18.3.3 1446 | 1447 | '@types/react@18.3.3': 1448 | dependencies: 1449 | '@types/prop-types': 15.7.12 1450 | csstype: 3.1.3 1451 | 1452 | '@typescript-eslint/eslint-plugin@7.15.0(@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3)': 1453 | dependencies: 1454 | '@eslint-community/regexpp': 4.11.0 1455 | '@typescript-eslint/parser': 7.15.0(eslint@8.57.0)(typescript@5.5.3) 1456 | '@typescript-eslint/scope-manager': 7.15.0 1457 | '@typescript-eslint/type-utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) 1458 | '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) 1459 | '@typescript-eslint/visitor-keys': 7.15.0 1460 | eslint: 8.57.0 1461 | graphemer: 1.4.0 1462 | ignore: 5.3.1 1463 | natural-compare: 1.4.0 1464 | ts-api-utils: 1.3.0(typescript@5.5.3) 1465 | optionalDependencies: 1466 | typescript: 5.5.3 1467 | transitivePeerDependencies: 1468 | - supports-color 1469 | 1470 | '@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3)': 1471 | dependencies: 1472 | '@typescript-eslint/scope-manager': 7.15.0 1473 | '@typescript-eslint/types': 7.15.0 1474 | '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) 1475 | '@typescript-eslint/visitor-keys': 7.15.0 1476 | debug: 4.3.5 1477 | eslint: 8.57.0 1478 | optionalDependencies: 1479 | typescript: 5.5.3 1480 | transitivePeerDependencies: 1481 | - supports-color 1482 | 1483 | '@typescript-eslint/scope-manager@7.15.0': 1484 | dependencies: 1485 | '@typescript-eslint/types': 7.15.0 1486 | '@typescript-eslint/visitor-keys': 7.15.0 1487 | 1488 | '@typescript-eslint/type-utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)': 1489 | dependencies: 1490 | '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) 1491 | '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) 1492 | debug: 4.3.5 1493 | eslint: 8.57.0 1494 | ts-api-utils: 1.3.0(typescript@5.5.3) 1495 | optionalDependencies: 1496 | typescript: 5.5.3 1497 | transitivePeerDependencies: 1498 | - supports-color 1499 | 1500 | '@typescript-eslint/types@7.15.0': {} 1501 | 1502 | '@typescript-eslint/typescript-estree@7.15.0(typescript@5.5.3)': 1503 | dependencies: 1504 | '@typescript-eslint/types': 7.15.0 1505 | '@typescript-eslint/visitor-keys': 7.15.0 1506 | debug: 4.3.5 1507 | globby: 11.1.0 1508 | is-glob: 4.0.3 1509 | minimatch: 9.0.5 1510 | semver: 7.6.2 1511 | ts-api-utils: 1.3.0(typescript@5.5.3) 1512 | optionalDependencies: 1513 | typescript: 5.5.3 1514 | transitivePeerDependencies: 1515 | - supports-color 1516 | 1517 | '@typescript-eslint/utils@7.15.0(eslint@8.57.0)(typescript@5.5.3)': 1518 | dependencies: 1519 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 1520 | '@typescript-eslint/scope-manager': 7.15.0 1521 | '@typescript-eslint/types': 7.15.0 1522 | '@typescript-eslint/typescript-estree': 7.15.0(typescript@5.5.3) 1523 | eslint: 8.57.0 1524 | transitivePeerDependencies: 1525 | - supports-color 1526 | - typescript 1527 | 1528 | '@typescript-eslint/visitor-keys@7.15.0': 1529 | dependencies: 1530 | '@typescript-eslint/types': 7.15.0 1531 | eslint-visitor-keys: 3.4.3 1532 | 1533 | '@ungap/structured-clone@1.2.0': {} 1534 | 1535 | acorn-jsx@5.3.2(acorn@8.12.1): 1536 | dependencies: 1537 | acorn: 8.12.1 1538 | 1539 | acorn@8.12.1: {} 1540 | 1541 | ajv@6.12.6: 1542 | dependencies: 1543 | fast-deep-equal: 3.1.3 1544 | fast-json-stable-stringify: 2.1.0 1545 | json-schema-traverse: 0.4.1 1546 | uri-js: 4.4.1 1547 | 1548 | ansi-regex@5.0.1: {} 1549 | 1550 | ansi-regex@6.0.1: {} 1551 | 1552 | ansi-styles@4.3.0: 1553 | dependencies: 1554 | color-convert: 2.0.1 1555 | 1556 | ansi-styles@6.2.1: {} 1557 | 1558 | any-promise@1.3.0: {} 1559 | 1560 | anymatch@3.1.3: 1561 | dependencies: 1562 | normalize-path: 3.0.0 1563 | picomatch: 2.3.1 1564 | 1565 | arg@5.0.2: {} 1566 | 1567 | argparse@2.0.1: {} 1568 | 1569 | array-union@2.1.0: {} 1570 | 1571 | balanced-match@1.0.2: {} 1572 | 1573 | binary-extensions@2.3.0: {} 1574 | 1575 | brace-expansion@1.1.11: 1576 | dependencies: 1577 | balanced-match: 1.0.2 1578 | concat-map: 0.0.1 1579 | 1580 | brace-expansion@2.0.1: 1581 | dependencies: 1582 | balanced-match: 1.0.2 1583 | 1584 | braces@3.0.3: 1585 | dependencies: 1586 | fill-range: 7.1.1 1587 | 1588 | callsites@3.1.0: {} 1589 | 1590 | camelcase-css@2.0.1: {} 1591 | 1592 | chalk@4.1.2: 1593 | dependencies: 1594 | ansi-styles: 4.3.0 1595 | supports-color: 7.2.0 1596 | 1597 | chokidar@3.6.0: 1598 | dependencies: 1599 | anymatch: 3.1.3 1600 | braces: 3.0.3 1601 | glob-parent: 5.1.2 1602 | is-binary-path: 2.1.0 1603 | is-glob: 4.0.3 1604 | normalize-path: 3.0.0 1605 | readdirp: 3.6.0 1606 | optionalDependencies: 1607 | fsevents: 2.3.3 1608 | 1609 | chrono-node@2.7.6: 1610 | dependencies: 1611 | dayjs: 1.11.11 1612 | 1613 | color-convert@2.0.1: 1614 | dependencies: 1615 | color-name: 1.1.4 1616 | 1617 | color-name@1.1.4: {} 1618 | 1619 | commander@4.1.1: {} 1620 | 1621 | concat-map@0.0.1: {} 1622 | 1623 | cross-spawn@7.0.3: 1624 | dependencies: 1625 | path-key: 3.1.1 1626 | shebang-command: 2.0.0 1627 | which: 2.0.2 1628 | 1629 | cssesc@3.0.0: {} 1630 | 1631 | csstype@3.1.0: {} 1632 | 1633 | csstype@3.1.3: {} 1634 | 1635 | date-fns@2.30.0: 1636 | dependencies: 1637 | '@babel/runtime': 7.24.7 1638 | 1639 | date-fns@3.6.0: {} 1640 | 1641 | dayjs@1.11.11: {} 1642 | 1643 | debug@4.3.4: 1644 | dependencies: 1645 | ms: 2.1.2 1646 | 1647 | debug@4.3.5: 1648 | dependencies: 1649 | ms: 2.1.2 1650 | 1651 | deep-is@0.1.4: {} 1652 | 1653 | didyoumean@1.2.2: {} 1654 | 1655 | dir-glob@3.0.1: 1656 | dependencies: 1657 | path-type: 4.0.0 1658 | 1659 | dlv@1.1.3: {} 1660 | 1661 | doctrine@3.0.0: 1662 | dependencies: 1663 | esutils: 2.0.3 1664 | 1665 | dompurify@2.3.8: {} 1666 | 1667 | dot-case@3.0.4: 1668 | dependencies: 1669 | no-case: 3.0.4 1670 | tslib: 2.6.3 1671 | 1672 | eastasianwidth@0.2.0: {} 1673 | 1674 | emoji-regex@8.0.0: {} 1675 | 1676 | emoji-regex@9.2.2: {} 1677 | 1678 | esbuild@0.18.20: 1679 | optionalDependencies: 1680 | '@esbuild/android-arm': 0.18.20 1681 | '@esbuild/android-arm64': 0.18.20 1682 | '@esbuild/android-x64': 0.18.20 1683 | '@esbuild/darwin-arm64': 0.18.20 1684 | '@esbuild/darwin-x64': 0.18.20 1685 | '@esbuild/freebsd-arm64': 0.18.20 1686 | '@esbuild/freebsd-x64': 0.18.20 1687 | '@esbuild/linux-arm': 0.18.20 1688 | '@esbuild/linux-arm64': 0.18.20 1689 | '@esbuild/linux-ia32': 0.18.20 1690 | '@esbuild/linux-loong64': 0.18.20 1691 | '@esbuild/linux-mips64el': 0.18.20 1692 | '@esbuild/linux-ppc64': 0.18.20 1693 | '@esbuild/linux-riscv64': 0.18.20 1694 | '@esbuild/linux-s390x': 0.18.20 1695 | '@esbuild/linux-x64': 0.18.20 1696 | '@esbuild/netbsd-x64': 0.18.20 1697 | '@esbuild/openbsd-x64': 0.18.20 1698 | '@esbuild/sunos-x64': 0.18.20 1699 | '@esbuild/win32-arm64': 0.18.20 1700 | '@esbuild/win32-ia32': 0.18.20 1701 | '@esbuild/win32-x64': 0.18.20 1702 | 1703 | escape-string-regexp@4.0.0: {} 1704 | 1705 | eslint-config-prettier@9.1.0(eslint@8.57.0): 1706 | dependencies: 1707 | eslint: 8.57.0 1708 | 1709 | eslint-plugin-simple-import-sort@12.1.1(eslint@8.57.0): 1710 | dependencies: 1711 | eslint: 8.57.0 1712 | 1713 | eslint-scope@7.2.2: 1714 | dependencies: 1715 | esrecurse: 4.3.0 1716 | estraverse: 5.3.0 1717 | 1718 | eslint-visitor-keys@3.4.3: {} 1719 | 1720 | eslint@8.57.0: 1721 | dependencies: 1722 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 1723 | '@eslint-community/regexpp': 4.11.0 1724 | '@eslint/eslintrc': 2.1.4 1725 | '@eslint/js': 8.57.0 1726 | '@humanwhocodes/config-array': 0.11.14 1727 | '@humanwhocodes/module-importer': 1.0.1 1728 | '@nodelib/fs.walk': 1.2.8 1729 | '@ungap/structured-clone': 1.2.0 1730 | ajv: 6.12.6 1731 | chalk: 4.1.2 1732 | cross-spawn: 7.0.3 1733 | debug: 4.3.5 1734 | doctrine: 3.0.0 1735 | escape-string-regexp: 4.0.0 1736 | eslint-scope: 7.2.2 1737 | eslint-visitor-keys: 3.4.3 1738 | espree: 9.6.1 1739 | esquery: 1.5.0 1740 | esutils: 2.0.3 1741 | fast-deep-equal: 3.1.3 1742 | file-entry-cache: 6.0.1 1743 | find-up: 5.0.0 1744 | glob-parent: 6.0.2 1745 | globals: 13.24.0 1746 | graphemer: 1.4.0 1747 | ignore: 5.3.1 1748 | imurmurhash: 0.1.4 1749 | is-glob: 4.0.3 1750 | is-path-inside: 3.0.3 1751 | js-yaml: 4.1.0 1752 | json-stable-stringify-without-jsonify: 1.0.1 1753 | levn: 0.4.1 1754 | lodash.merge: 4.6.2 1755 | minimatch: 3.1.2 1756 | natural-compare: 1.4.0 1757 | optionator: 0.9.4 1758 | strip-ansi: 6.0.1 1759 | text-table: 0.2.0 1760 | transitivePeerDependencies: 1761 | - supports-color 1762 | 1763 | espree@9.6.1: 1764 | dependencies: 1765 | acorn: 8.12.1 1766 | acorn-jsx: 5.3.2(acorn@8.12.1) 1767 | eslint-visitor-keys: 3.4.3 1768 | 1769 | esquery@1.5.0: 1770 | dependencies: 1771 | estraverse: 5.3.0 1772 | 1773 | esrecurse@4.3.0: 1774 | dependencies: 1775 | estraverse: 5.3.0 1776 | 1777 | estraverse@5.3.0: {} 1778 | 1779 | esutils@2.0.3: {} 1780 | 1781 | eventemitter3@4.0.7: {} 1782 | 1783 | fast-deep-equal@3.1.3: {} 1784 | 1785 | fast-glob@3.3.2: 1786 | dependencies: 1787 | '@nodelib/fs.stat': 2.0.5 1788 | '@nodelib/fs.walk': 1.2.8 1789 | glob-parent: 5.1.2 1790 | merge2: 1.4.1 1791 | micromatch: 4.0.7 1792 | 1793 | fast-json-stable-stringify@2.1.0: {} 1794 | 1795 | fast-levenshtein@2.0.6: {} 1796 | 1797 | fastq@1.17.1: 1798 | dependencies: 1799 | reusify: 1.0.4 1800 | 1801 | file-entry-cache@6.0.1: 1802 | dependencies: 1803 | flat-cache: 3.2.0 1804 | 1805 | fill-range@7.1.1: 1806 | dependencies: 1807 | to-regex-range: 5.0.1 1808 | 1809 | find-up@5.0.0: 1810 | dependencies: 1811 | locate-path: 6.0.0 1812 | path-exists: 4.0.0 1813 | 1814 | flat-cache@3.2.0: 1815 | dependencies: 1816 | flatted: 3.3.1 1817 | keyv: 4.5.4 1818 | rimraf: 3.0.2 1819 | 1820 | flatted@3.3.1: {} 1821 | 1822 | foreground-child@3.2.1: 1823 | dependencies: 1824 | cross-spawn: 7.0.3 1825 | signal-exit: 4.1.0 1826 | 1827 | fs.realpath@1.0.0: {} 1828 | 1829 | fsevents@2.3.3: 1830 | optional: true 1831 | 1832 | function-bind@1.1.2: {} 1833 | 1834 | glob-parent@5.1.2: 1835 | dependencies: 1836 | is-glob: 4.0.3 1837 | 1838 | glob-parent@6.0.2: 1839 | dependencies: 1840 | is-glob: 4.0.3 1841 | 1842 | glob@10.4.2: 1843 | dependencies: 1844 | foreground-child: 3.2.1 1845 | jackspeak: 3.4.0 1846 | minimatch: 9.0.5 1847 | minipass: 7.1.2 1848 | package-json-from-dist: 1.0.0 1849 | path-scurry: 1.11.1 1850 | 1851 | glob@7.2.3: 1852 | dependencies: 1853 | fs.realpath: 1.0.0 1854 | inflight: 1.0.6 1855 | inherits: 2.0.4 1856 | minimatch: 3.1.2 1857 | once: 1.4.0 1858 | path-is-absolute: 1.0.1 1859 | 1860 | globals@13.24.0: 1861 | dependencies: 1862 | type-fest: 0.20.2 1863 | 1864 | globby@11.1.0: 1865 | dependencies: 1866 | array-union: 2.1.0 1867 | dir-glob: 3.0.1 1868 | fast-glob: 3.3.2 1869 | ignore: 5.3.1 1870 | merge2: 1.4.1 1871 | slash: 3.0.0 1872 | 1873 | globrex@0.1.2: {} 1874 | 1875 | graphemer@1.4.0: {} 1876 | 1877 | has-flag@4.0.0: {} 1878 | 1879 | hasown@2.0.2: 1880 | dependencies: 1881 | function-bind: 1.1.2 1882 | 1883 | ignore@5.3.1: {} 1884 | 1885 | import-fresh@3.3.0: 1886 | dependencies: 1887 | parent-module: 1.0.1 1888 | resolve-from: 4.0.0 1889 | 1890 | imurmurhash@0.1.4: {} 1891 | 1892 | inflight@1.0.6: 1893 | dependencies: 1894 | once: 1.4.0 1895 | wrappy: 1.0.2 1896 | 1897 | inherits@2.0.3: {} 1898 | 1899 | inherits@2.0.4: {} 1900 | 1901 | is-binary-path@2.1.0: 1902 | dependencies: 1903 | binary-extensions: 2.3.0 1904 | 1905 | is-core-module@2.14.0: 1906 | dependencies: 1907 | hasown: 2.0.2 1908 | 1909 | is-extglob@2.1.1: {} 1910 | 1911 | is-fullwidth-code-point@3.0.0: {} 1912 | 1913 | is-glob@4.0.3: 1914 | dependencies: 1915 | is-extglob: 2.1.1 1916 | 1917 | is-number@7.0.0: {} 1918 | 1919 | is-path-inside@3.0.3: {} 1920 | 1921 | isexe@2.0.0: {} 1922 | 1923 | jackspeak@3.4.0: 1924 | dependencies: 1925 | '@isaacs/cliui': 8.0.2 1926 | optionalDependencies: 1927 | '@pkgjs/parseargs': 0.11.0 1928 | 1929 | jiti@1.21.6: {} 1930 | 1931 | js-tokens@4.0.0: {} 1932 | 1933 | js-yaml@4.1.0: 1934 | dependencies: 1935 | argparse: 2.0.1 1936 | 1937 | json-buffer@3.0.1: {} 1938 | 1939 | json-schema-traverse@0.4.1: {} 1940 | 1941 | json-stable-stringify-without-jsonify@1.0.1: {} 1942 | 1943 | keyv@4.5.4: 1944 | dependencies: 1945 | json-buffer: 3.0.1 1946 | 1947 | levn@0.4.1: 1948 | dependencies: 1949 | prelude-ls: 1.2.1 1950 | type-check: 0.4.0 1951 | 1952 | lilconfig@2.1.0: {} 1953 | 1954 | lilconfig@3.1.2: {} 1955 | 1956 | lines-and-columns@1.2.4: {} 1957 | 1958 | locate-path@6.0.0: 1959 | dependencies: 1960 | p-locate: 5.0.0 1961 | 1962 | lodash-es@4.17.21: {} 1963 | 1964 | lodash.merge@4.6.2: {} 1965 | 1966 | logseq-dateutils@2.1.2: 1967 | dependencies: 1968 | date-fns: 2.30.0 1969 | 1970 | loose-envify@1.4.0: 1971 | dependencies: 1972 | js-tokens: 4.0.0 1973 | 1974 | lower-case@2.0.2: 1975 | dependencies: 1976 | tslib: 2.6.3 1977 | 1978 | lru-cache@10.3.0: {} 1979 | 1980 | magic-string@0.26.7: 1981 | dependencies: 1982 | sourcemap-codec: 1.4.8 1983 | 1984 | merge2@1.4.1: {} 1985 | 1986 | micromatch@4.0.7: 1987 | dependencies: 1988 | braces: 3.0.3 1989 | picomatch: 2.3.1 1990 | 1991 | minimatch@3.1.2: 1992 | dependencies: 1993 | brace-expansion: 1.1.11 1994 | 1995 | minimatch@9.0.5: 1996 | dependencies: 1997 | brace-expansion: 2.0.1 1998 | 1999 | minipass@7.1.2: {} 2000 | 2001 | ms@2.1.2: {} 2002 | 2003 | mz@2.7.0: 2004 | dependencies: 2005 | any-promise: 1.3.0 2006 | object-assign: 4.1.1 2007 | thenify-all: 1.6.0 2008 | 2009 | nanoid@3.3.7: {} 2010 | 2011 | natural-compare@1.4.0: {} 2012 | 2013 | no-case@3.0.4: 2014 | dependencies: 2015 | lower-case: 2.0.2 2016 | tslib: 2.6.3 2017 | 2018 | normalize-path@3.0.0: {} 2019 | 2020 | object-assign@4.1.1: {} 2021 | 2022 | object-hash@3.0.0: {} 2023 | 2024 | once@1.4.0: 2025 | dependencies: 2026 | wrappy: 1.0.2 2027 | 2028 | optionator@0.9.4: 2029 | dependencies: 2030 | deep-is: 0.1.4 2031 | fast-levenshtein: 2.0.6 2032 | levn: 0.4.1 2033 | prelude-ls: 1.2.1 2034 | type-check: 0.4.0 2035 | word-wrap: 1.2.5 2036 | 2037 | p-limit@3.1.0: 2038 | dependencies: 2039 | yocto-queue: 0.1.0 2040 | 2041 | p-locate@5.0.0: 2042 | dependencies: 2043 | p-limit: 3.1.0 2044 | 2045 | package-json-from-dist@1.0.0: {} 2046 | 2047 | parent-module@1.0.1: 2048 | dependencies: 2049 | callsites: 3.1.0 2050 | 2051 | path-exists@4.0.0: {} 2052 | 2053 | path-is-absolute@1.0.1: {} 2054 | 2055 | path-key@3.1.1: {} 2056 | 2057 | path-parse@1.0.7: {} 2058 | 2059 | path-scurry@1.11.1: 2060 | dependencies: 2061 | lru-cache: 10.3.0 2062 | minipass: 7.1.2 2063 | 2064 | path-type@4.0.0: {} 2065 | 2066 | path@0.12.7: 2067 | dependencies: 2068 | process: 0.11.10 2069 | util: 0.10.4 2070 | 2071 | picocolors@1.0.1: {} 2072 | 2073 | picomatch@2.3.1: {} 2074 | 2075 | pify@2.3.0: {} 2076 | 2077 | pirates@4.0.6: {} 2078 | 2079 | postcss-import@15.1.0(postcss@8.4.39): 2080 | dependencies: 2081 | postcss: 8.4.39 2082 | postcss-value-parser: 4.2.0 2083 | read-cache: 1.0.0 2084 | resolve: 1.22.8 2085 | 2086 | postcss-js@4.0.1(postcss@8.4.39): 2087 | dependencies: 2088 | camelcase-css: 2.0.1 2089 | postcss: 8.4.39 2090 | 2091 | postcss-load-config@4.0.2(postcss@8.4.39): 2092 | dependencies: 2093 | lilconfig: 3.1.2 2094 | yaml: 2.4.5 2095 | optionalDependencies: 2096 | postcss: 8.4.39 2097 | 2098 | postcss-nested@6.0.1(postcss@8.4.39): 2099 | dependencies: 2100 | postcss: 8.4.39 2101 | postcss-selector-parser: 6.1.0 2102 | 2103 | postcss-selector-parser@6.1.0: 2104 | dependencies: 2105 | cssesc: 3.0.0 2106 | util-deprecate: 1.0.2 2107 | 2108 | postcss-value-parser@4.2.0: {} 2109 | 2110 | postcss@8.4.39: 2111 | dependencies: 2112 | nanoid: 3.3.7 2113 | picocolors: 1.0.1 2114 | source-map-js: 1.2.0 2115 | 2116 | prelude-ls@1.2.1: {} 2117 | 2118 | prettier@3.3.2: {} 2119 | 2120 | process@0.11.10: {} 2121 | 2122 | punycode@2.3.1: {} 2123 | 2124 | queue-microtask@1.2.3: {} 2125 | 2126 | react-dom@18.3.1(react@18.3.1): 2127 | dependencies: 2128 | loose-envify: 1.4.0 2129 | react: 18.3.1 2130 | scheduler: 0.23.2 2131 | 2132 | react@18.3.1: 2133 | dependencies: 2134 | loose-envify: 1.4.0 2135 | 2136 | read-cache@1.0.0: 2137 | dependencies: 2138 | pify: 2.3.0 2139 | 2140 | readdirp@3.6.0: 2141 | dependencies: 2142 | picomatch: 2.3.1 2143 | 2144 | regenerator-runtime@0.14.1: {} 2145 | 2146 | resolve-from@4.0.0: {} 2147 | 2148 | resolve@1.22.8: 2149 | dependencies: 2150 | is-core-module: 2.14.0 2151 | path-parse: 1.0.7 2152 | supports-preserve-symlinks-flag: 1.0.0 2153 | 2154 | reusify@1.0.4: {} 2155 | 2156 | rimraf@3.0.2: 2157 | dependencies: 2158 | glob: 7.2.3 2159 | 2160 | rollup@3.29.4: 2161 | optionalDependencies: 2162 | fsevents: 2.3.3 2163 | 2164 | run-parallel@1.2.0: 2165 | dependencies: 2166 | queue-microtask: 1.2.3 2167 | 2168 | scheduler@0.23.2: 2169 | dependencies: 2170 | loose-envify: 1.4.0 2171 | 2172 | semver@7.6.2: {} 2173 | 2174 | shebang-command@2.0.0: 2175 | dependencies: 2176 | shebang-regex: 3.0.0 2177 | 2178 | shebang-regex@3.0.0: {} 2179 | 2180 | signal-exit@4.1.0: {} 2181 | 2182 | slash@3.0.0: {} 2183 | 2184 | snake-case@3.0.4: 2185 | dependencies: 2186 | dot-case: 3.0.4 2187 | tslib: 2.6.3 2188 | 2189 | source-map-js@1.2.0: {} 2190 | 2191 | sourcemap-codec@1.4.8: {} 2192 | 2193 | string-width@4.2.3: 2194 | dependencies: 2195 | emoji-regex: 8.0.0 2196 | is-fullwidth-code-point: 3.0.0 2197 | strip-ansi: 6.0.1 2198 | 2199 | string-width@5.1.2: 2200 | dependencies: 2201 | eastasianwidth: 0.2.0 2202 | emoji-regex: 9.2.2 2203 | strip-ansi: 7.1.0 2204 | 2205 | strip-ansi@6.0.1: 2206 | dependencies: 2207 | ansi-regex: 5.0.1 2208 | 2209 | strip-ansi@7.1.0: 2210 | dependencies: 2211 | ansi-regex: 6.0.1 2212 | 2213 | strip-json-comments@3.1.1: {} 2214 | 2215 | sucrase@3.35.0: 2216 | dependencies: 2217 | '@jridgewell/gen-mapping': 0.3.5 2218 | commander: 4.1.1 2219 | glob: 10.4.2 2220 | lines-and-columns: 1.2.4 2221 | mz: 2.7.0 2222 | pirates: 4.0.6 2223 | ts-interface-checker: 0.1.13 2224 | 2225 | supports-color@7.2.0: 2226 | dependencies: 2227 | has-flag: 4.0.0 2228 | 2229 | supports-preserve-symlinks-flag@1.0.0: {} 2230 | 2231 | tailwindcss@3.4.4: 2232 | dependencies: 2233 | '@alloc/quick-lru': 5.2.0 2234 | arg: 5.0.2 2235 | chokidar: 3.6.0 2236 | didyoumean: 1.2.2 2237 | dlv: 1.1.3 2238 | fast-glob: 3.3.2 2239 | glob-parent: 6.0.2 2240 | is-glob: 4.0.3 2241 | jiti: 1.21.6 2242 | lilconfig: 2.1.0 2243 | micromatch: 4.0.7 2244 | normalize-path: 3.0.0 2245 | object-hash: 3.0.0 2246 | picocolors: 1.0.1 2247 | postcss: 8.4.39 2248 | postcss-import: 15.1.0(postcss@8.4.39) 2249 | postcss-js: 4.0.1(postcss@8.4.39) 2250 | postcss-load-config: 4.0.2(postcss@8.4.39) 2251 | postcss-nested: 6.0.1(postcss@8.4.39) 2252 | postcss-selector-parser: 6.1.0 2253 | resolve: 1.22.8 2254 | sucrase: 3.35.0 2255 | transitivePeerDependencies: 2256 | - ts-node 2257 | 2258 | text-table@0.2.0: {} 2259 | 2260 | thenify-all@1.6.0: 2261 | dependencies: 2262 | thenify: 3.3.1 2263 | 2264 | thenify@3.3.1: 2265 | dependencies: 2266 | any-promise: 1.3.0 2267 | 2268 | to-regex-range@5.0.1: 2269 | dependencies: 2270 | is-number: 7.0.0 2271 | 2272 | ts-api-utils@1.3.0(typescript@5.5.3): 2273 | dependencies: 2274 | typescript: 5.5.3 2275 | 2276 | ts-interface-checker@0.1.13: {} 2277 | 2278 | tsconfck@3.1.1(typescript@5.5.3): 2279 | optionalDependencies: 2280 | typescript: 5.5.3 2281 | 2282 | tslib@2.6.3: {} 2283 | 2284 | type-check@0.4.0: 2285 | dependencies: 2286 | prelude-ls: 1.2.1 2287 | 2288 | type-fest@0.20.2: {} 2289 | 2290 | typescript-eslint@7.15.0(eslint@8.57.0)(typescript@5.5.3): 2291 | dependencies: 2292 | '@typescript-eslint/eslint-plugin': 7.15.0(@typescript-eslint/parser@7.15.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) 2293 | '@typescript-eslint/parser': 7.15.0(eslint@8.57.0)(typescript@5.5.3) 2294 | '@typescript-eslint/utils': 7.15.0(eslint@8.57.0)(typescript@5.5.3) 2295 | eslint: 8.57.0 2296 | optionalDependencies: 2297 | typescript: 5.5.3 2298 | transitivePeerDependencies: 2299 | - supports-color 2300 | 2301 | typescript@5.5.3: {} 2302 | 2303 | undici-types@5.26.5: {} 2304 | 2305 | uri-js@4.4.1: 2306 | dependencies: 2307 | punycode: 2.3.1 2308 | 2309 | util-deprecate@1.0.2: {} 2310 | 2311 | util@0.10.4: 2312 | dependencies: 2313 | inherits: 2.0.3 2314 | 2315 | vite-plugin-logseq@1.1.2: 2316 | dependencies: 2317 | magic-string: 0.26.7 2318 | 2319 | vite-tsconfig-paths@4.3.2(typescript@5.5.3)(vite@4.5.3(@types/node@20.14.9)): 2320 | dependencies: 2321 | debug: 4.3.5 2322 | globrex: 0.1.2 2323 | tsconfck: 3.1.1(typescript@5.5.3) 2324 | optionalDependencies: 2325 | vite: 4.5.3(@types/node@20.14.9) 2326 | transitivePeerDependencies: 2327 | - supports-color 2328 | - typescript 2329 | 2330 | vite@4.5.3(@types/node@20.14.9): 2331 | dependencies: 2332 | esbuild: 0.18.20 2333 | postcss: 8.4.39 2334 | rollup: 3.29.4 2335 | optionalDependencies: 2336 | '@types/node': 20.14.9 2337 | fsevents: 2.3.3 2338 | 2339 | which@2.0.2: 2340 | dependencies: 2341 | isexe: 2.0.0 2342 | 2343 | word-wrap@1.2.5: {} 2344 | 2345 | wrap-ansi@7.0.0: 2346 | dependencies: 2347 | ansi-styles: 4.3.0 2348 | string-width: 4.2.3 2349 | strip-ansi: 6.0.1 2350 | 2351 | wrap-ansi@8.1.0: 2352 | dependencies: 2353 | ansi-styles: 6.2.1 2354 | string-width: 5.1.2 2355 | strip-ansi: 7.1.0 2356 | 2357 | wrappy@1.0.2: {} 2358 | 2359 | yaml@2.4.5: {} 2360 | 2361 | yocto-queue@0.1.0: {} 2362 | -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/demo.gif -------------------------------------------------------------------------------- /screenshots/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/demo2.gif -------------------------------------------------------------------------------- /screenshots/demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/demo3.gif -------------------------------------------------------------------------------- /screenshots/demo4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/demo4.gif -------------------------------------------------------------------------------- /screenshots/demo5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/demo5.gif -------------------------------------------------------------------------------- /screenshots/demo6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/demo6.gif -------------------------------------------------------------------------------- /screenshots/toolbar-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/toolbar-demo.gif -------------------------------------------------------------------------------- /screenshots/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-datenlp-plugin/d73dfb2286a6bd4225989c6cb2f723f8deff5229/screenshots/toolbar.png -------------------------------------------------------------------------------- /src/features/complete-task/index.ts: -------------------------------------------------------------------------------- 1 | import { getDateForPage } from 'logseq-dateutils' 2 | 3 | import { getPreferredDateFormat } from '~/utils' 4 | 5 | export const completeTask = (): void => { 6 | logseq.App.registerCommandPalette( 7 | { 8 | key: 'logseq-datenlp-plugin-completetask', 9 | label: '@Complete task', 10 | keybinding: { 11 | binding: logseq.settings!.completeTaskShortcut, 12 | }, 13 | }, 14 | 15 | async () => { 16 | const currBlk = await logseq.Editor.getCurrentBlock() 17 | if (!currBlk) return 18 | 19 | const markerArr: string[] = ['TODO', 'NOW', 'WAITING', 'DOING', 'LATER'] 20 | // Handle if task is already done, undo it. If task is not done, then 21 | // mark it as done. 22 | let { content } = currBlk 23 | const date = getDateForPage(new Date(), await getPreferredDateFormat()) 24 | 25 | if (currBlk.marker === 'DONE') { 26 | content = content.replace(`[[${date}}]]`, '') 27 | content = content.replace('DONE', 'TODO') 28 | await logseq.Editor.updateBlock(currBlk.uuid, content) 29 | await logseq.Editor.exitEditingMode() 30 | } else { 31 | // Add date 32 | // Replace TODO 33 | // Remove Scheduled and Deadline 34 | content = `${content} ${date}` 35 | for (const m of markerArr) { 36 | // Replace TODO 37 | content = content.replace(m, 'DONE') 38 | } 39 | if ( 40 | content.includes('SCHEDULED: <') || 41 | content.includes('DEADLINE: <' + ' <') 42 | ) { 43 | content = content.substring(0, content.indexOf('SCHEDULED: <')) 44 | content = content.substring(0, content.indexOf('DEADLINE: <')) 45 | } 46 | await logseq.Editor.updateBlock(currBlk.uuid, content) 47 | await logseq.Editor.exitEditingMode() 48 | } 49 | }, 50 | ) 51 | } 52 | -------------------------------------------------------------------------------- /src/features/go-to-date/GotoDate.tsx: -------------------------------------------------------------------------------- 1 | import '../../output.css' 2 | 3 | import * as chrono from 'chrono-node' 4 | import { ParsedResult } from 'chrono-node' 5 | import { getDateForPage } from 'logseq-dateutils' 6 | import { ChangeEvent, KeyboardEvent, useState } from 'react' 7 | 8 | import { getPreferredDateFormat } from '~/utils' 9 | 10 | export const GotoDate = () => { 11 | const [searchVal, setSearchVal] = useState('') 12 | 13 | const reset = () => { 14 | setSearchVal('') 15 | logseq.hideMainUI({ restoreEditingCursor: true }) 16 | } 17 | 18 | const handleSubmit = async (e: KeyboardEvent) => { 19 | if (e.key !== 'Enter') return 20 | 21 | const chronoBlock: ParsedResult[] = chrono.parse(searchVal, new Date(), { 22 | forwardDate: true, 23 | }) 24 | 25 | if (!chronoBlock || chronoBlock.length === 0 || chronoBlock.length > 1) { 26 | await logseq.UI.showMsg( 27 | 'Unable to parse. Is there a typo or you tried to have two date references (e.g. today and tomorrow)?', 28 | 'error', 29 | ) 30 | reset() 31 | return 32 | } 33 | 34 | const startingDate = getDateForPage( 35 | chronoBlock[0]!.start.date(), 36 | await getPreferredDateFormat(), 37 | ) 38 | logseq.App.pushState('page', { 39 | name: startingDate.substring(2, startingDate.length - 2), 40 | }) 41 | reset() 42 | } 43 | 44 | return ( 45 |
46 | ) => 53 | setSearchVal(e.target.value) 54 | } 55 | value={searchVal} 56 | onKeyDown={(e: KeyboardEvent) => handleSubmit(e)} 57 | /> 58 |
59 | ) 60 | } 61 | -------------------------------------------------------------------------------- /src/features/go-to-date/index.tsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from 'react-dom/client' 2 | 3 | import { GotoDate } from './GotoDate' 4 | 5 | export const goToDate = (): void => { 6 | logseq.App.registerCommandPalette( 7 | { 8 | key: 'logseq-datenlp-plugin-gotodate', 9 | label: '@Goto date using NLP', 10 | keybinding: { binding: logseq.settings!.gotoShortcut }, 11 | }, 12 | () => { 13 | createRoot(document.getElementById('app')!).render() 14 | logseq.showMainUI({ autoFocus: true }) 15 | 16 | // Register keypress in popup 17 | document.addEventListener('keydown', (e: KeyboardEvent) => { 18 | if (e.key !== 'Escape') { 19 | const searchField: HTMLInputElement = 20 | document.querySelector('.search-field')! 21 | searchField.focus() 22 | } 23 | }) 24 | }, 25 | ) 26 | } 27 | -------------------------------------------------------------------------------- /src/features/parse/index.ts: -------------------------------------------------------------------------------- 1 | import { BlockEntity } from '@logseq/libs/dist/LSPlugin.user' 2 | import * as chrono from 'chrono-node' 3 | import { ParsedResult } from 'chrono-node/dist/cjs' 4 | 5 | import { manualParse } from '~/features/parse/manual' 6 | import { semiAutoParse } from '~/features/parse/semi-auto' 7 | 8 | export const checkIfUrl = (str: string): boolean => { 9 | switch (true) { 10 | case str.includes('http'): 11 | return true 12 | case str.includes('://'): 13 | return true 14 | case str.includes('www'): 15 | return true 16 | default: 17 | return false 18 | } 19 | } 20 | 21 | //@ts-expect-error Type of startObj doesn't match 22 | export const checkIfChronoObjHasTime = (startObj): string => { 23 | if (startObj.knownValues.hour) { 24 | return ` ${startObj.date().toTimeString().substring(0, 5)}` 25 | } else { 26 | return '' 27 | } 28 | } 29 | 30 | const handleMultipleParsedText = async ( 31 | chronoBlock: ParsedResult[], 32 | content: string, 33 | options?: { flag: string }, 34 | ): Promise => { 35 | let parsedStr = '' 36 | for (let i = 0; i < chronoBlock.length; i++) { 37 | const parsedText = chronoBlock[i]!.text 38 | const parsedStart = chronoBlock[i]!.start.date() 39 | const parsedEnd = chronoBlock[i]!.end?.date() 40 | if (i === 0) { 41 | if (!options?.flag) { 42 | const str = await semiAutoParse( 43 | content, 44 | chronoBlock, 45 | parsedText, 46 | parsedStart, 47 | parsedEnd, 48 | ) 49 | if (str !== '') parsedStr = str 50 | } else { 51 | const str = await manualParse( 52 | options.flag, 53 | content, 54 | chronoBlock, 55 | parsedText, 56 | parsedStart, 57 | ) 58 | if (str) parsedStr = str 59 | } 60 | } 61 | if (i > 0) { 62 | if (logseq.settings!.insertDateProperty) break 63 | if (!options?.flag) { 64 | parsedStr = await semiAutoParse( 65 | parsedStr, 66 | chronoBlock, 67 | parsedText, 68 | parsedStart, 69 | parsedEnd, 70 | ) 71 | } else { 72 | parsedStr = await manualParse( 73 | options.flag, 74 | parsedStr, 75 | chronoBlock, 76 | parsedText, 77 | parsedStart, 78 | ) 79 | } 80 | } 81 | } 82 | return parsedStr 83 | } 84 | 85 | export const inlineParsing = async ( 86 | currBlock: BlockEntity, 87 | options?: { flag: string }, 88 | ): Promise => { 89 | const { content } = currBlock 90 | const { lang } = logseq.settings! 91 | 92 | //@ts-expect-error chrono[lang] is controlled by options in logseq.settings 93 | const chronoBlock: ParsedResult[] = chrono[lang].parse(content, new Date()) 94 | if (!chronoBlock || !chronoBlock[0]) return '' 95 | 96 | if (chronoBlock.length === 1) { 97 | const parsedText = chronoBlock[0].text 98 | const parsedStart = chronoBlock[0].start.date() 99 | const parsedEnd = chronoBlock[0].end?.date() 100 | 101 | if (!options?.flag) { 102 | return semiAutoParse( 103 | content, 104 | chronoBlock, 105 | parsedText, 106 | parsedStart, 107 | parsedEnd, 108 | ) 109 | } else { 110 | return manualParse( 111 | options.flag, 112 | content, 113 | chronoBlock, 114 | parsedText, 115 | parsedStart, 116 | ) 117 | } 118 | } else { 119 | if (!options?.flag) { 120 | return handleMultipleParsedText(chronoBlock, content, options) 121 | } else { 122 | return handleMultipleParsedText(chronoBlock, content, options) 123 | } 124 | } 125 | } 126 | -------------------------------------------------------------------------------- /src/features/parse/manual.ts: -------------------------------------------------------------------------------- 1 | import { ParsedResult } from 'chrono-node/dist/cjs' 2 | import { 3 | getDateForPage, 4 | getDeadlineDateDay, 5 | getScheduledDateDay, 6 | } from 'logseq-dateutils' 7 | 8 | import { 9 | checkIfChronoObjHasTime, 10 | checkIfUrl, 11 | inlineParsing, 12 | } from '~/features/parse/index' 13 | import { getPreferredDateFormat } from '~/utils' 14 | 15 | export const manualParse = async ( 16 | flag: string, 17 | content: string, 18 | chronoBlock: ParsedResult[], 19 | parsedText: string, 20 | parsedStart: Date, 21 | ): Promise => { 22 | switch (flag) { 23 | case 'manual-date': { 24 | if (!logseq.settings!.insertDateProperty) { 25 | const checkTime = checkIfChronoObjHasTime(chronoBlock[0]!.start) 26 | content = content.replace( 27 | parsedText, 28 | `${getDateForPage( 29 | parsedStart, 30 | await getPreferredDateFormat(), 31 | )}${checkTime}`, 32 | ) 33 | return content 34 | } else { 35 | content = content.replace(parsedText, '') 36 | content = `${content} 37 | date:: ${getDateForPage(parsedStart, await getPreferredDateFormat())}` 38 | return content 39 | } 40 | } 41 | case 'manual-scheduled': { 42 | if (checkIfUrl(content)) return '' // Don't parse URLs 43 | const checkTime = checkIfChronoObjHasTime(chronoBlock[0]!.start) 44 | content = content.replace(parsedText, '') 45 | content = `${content} 46 | ${getScheduledDateDay(parsedStart)}${checkTime}` 47 | return content 48 | } 49 | case 'manual-deadline': { 50 | if (checkIfUrl(content)) return '' // Don't parse URLs 51 | const checkTime = checkIfChronoObjHasTime(chronoBlock[0]!.start) 52 | content = content.replace(parsedText, '') 53 | content = `${content} 54 | ${getDeadlineDateDay(parsedStart)}${checkTime}` 55 | return content 56 | } 57 | default: { 58 | throw new Error('Nothing to parse') 59 | } 60 | } 61 | } 62 | 63 | export const manualParsing = () => { 64 | logseq.Editor.registerSlashCommand( 65 | 'Parse dates', 66 | async (e: { uuid: string }) => { 67 | setTimeout(async () => { 68 | // setTimeout is needed because if getBlock is called before the block gets updated, it could be empty 69 | const blk = await logseq.Editor.getBlock(e.uuid) 70 | if (!blk) return 71 | const content = await inlineParsing(blk, { flag: 'manual-date' }) 72 | if (content) await logseq.Editor.updateBlock(e.uuid, content) 73 | }, 500) 74 | }, 75 | ) 76 | 77 | logseq.Editor.registerSlashCommand( 78 | 'Parse scheduled', 79 | async (e: { uuid: string }) => { 80 | setTimeout(async () => { 81 | const blk = await logseq.Editor.getBlock(e.uuid) 82 | if (!blk) return 83 | const content = await inlineParsing(blk, { flag: 'manual-scheduled' }) 84 | if (content) await logseq.Editor.updateBlock(e.uuid, content) 85 | }, 500) 86 | }, 87 | ) 88 | 89 | logseq.Editor.registerSlashCommand( 90 | 'Parse deadline', 91 | async (e: { uuid: string }) => { 92 | setTimeout(async () => { 93 | const blk = await logseq.Editor.getBlock(e.uuid) 94 | if (!blk) return 95 | const content = await inlineParsing(blk, { flag: 'manual-deadline' }) 96 | if (content) await logseq.Editor.updateBlock(e.uuid, content) 97 | }, 500) 98 | }, 99 | ) 100 | } 101 | -------------------------------------------------------------------------------- /src/features/parse/semi-auto.ts: -------------------------------------------------------------------------------- 1 | import { ParsedResult } from 'chrono-node' 2 | import { 3 | getDateForPage, 4 | getDeadlineDateDay, 5 | getScheduledDateDay, 6 | } from 'logseq-dateutils' 7 | 8 | import * as parse from '~/features/parse/index' 9 | import { getPreferredDateFormat } from '~/utils' 10 | 11 | export const semiAutoParse = async ( 12 | content: string, 13 | chronoBlock: ParsedResult[], 14 | parsedText: string, 15 | parsedStart: Date, 16 | parsedEnd: Date | undefined, 17 | ): Promise => { 18 | const { dateChar, scheduledChar, deadlineChar } = logseq.settings! 19 | if (!dateChar || !scheduledChar || !deadlineChar) throw new Error() 20 | 21 | if (content.startsWith('```') || content.endsWith('```')) return content 22 | 23 | switch (true) { 24 | case content.includes('@from'): { 25 | content = content.replace('@from', '').replace(parsedText, '') 26 | content = `${content} 27 | start-time:: ${parsedStart.toTimeString().substring(0, 5)} 28 | end-time:: ${parsedEnd?.toTimeString().substring(0, 5)}` 29 | return content 30 | } 31 | case content.includes(dateChar): { 32 | if (content.includes(`\`${dateChar}${parsedText}\``)) return content 33 | const checkTime = parse.checkIfChronoObjHasTime(chronoBlock[0]!.start) 34 | content = content.replace( 35 | `${dateChar}${parsedText}`, 36 | `${getDateForPage( 37 | parsedStart, 38 | await getPreferredDateFormat(), 39 | )}${checkTime}`, 40 | ) 41 | return content 42 | } 43 | case content.includes(scheduledChar) || content.includes(deadlineChar): { 44 | if ( 45 | content.includes(`\`${scheduledChar}${parsedText}\``) || 46 | content.includes(`\`${deadlineChar}${parsedText}\``) 47 | ) { 48 | return content 49 | } 50 | 51 | if (scheduledChar === 'NA' && deadlineChar === 'NA') { 52 | return content 53 | } 54 | 55 | const scheduledOrDeadline = content.includes(scheduledChar) 56 | ? 'SCHEDULED' 57 | : 'DEADLINE' 58 | content = content.replace(`${scheduledChar}${parsedText}`, '') 59 | content = content.replace(`${deadlineChar}${parsedText}`, '') 60 | 61 | if (logseq.settings?.removeTime) 62 | parsedStart = new Date(parsedStart.setHours(0, 0, 0, 0)) 63 | 64 | if (scheduledOrDeadline === 'SCHEDULED') { 65 | content = `${content} 66 | ${getScheduledDateDay(parsedStart)}` 67 | } else { 68 | content = `${content} 69 | ${getDeadlineDateDay(parsedStart)}` 70 | } 71 | return content 72 | } 73 | default: { 74 | return '' 75 | } 76 | } 77 | } 78 | 79 | const callback = async (mutationsList: MutationRecord[]): Promise => { 80 | for (const m of mutationsList) { 81 | if ( 82 | m.type === 'childList' && 83 | m.removedNodes.length > 0 && 84 | (m.removedNodes[0]! as HTMLElement).className === 85 | 'editor-inner block-editor' 86 | ) { 87 | const uuid = (m.target as HTMLElement) 88 | .closest('div[id^="ls-block"]') 89 | ?.getAttribute('blockid') as string 90 | const currBlock = await logseq.Editor.getBlock(uuid) 91 | if (!currBlock) return 92 | 93 | // Execute inline parsing 94 | const content = await parse.inlineParsing(currBlock) 95 | if (content) await logseq.Editor.updateBlock(uuid, content) 96 | } 97 | } 98 | } 99 | 100 | export const parseMutationObserver = (): void => { 101 | //@ts-expect-error Mutation does not exist on window 102 | const observer = new top!.MutationObserver(callback) 103 | observer.observe(top?.document.getElementById('app-container'), { 104 | attributes: false, 105 | childList: true, 106 | subtree: true, 107 | }) 108 | } 109 | -------------------------------------------------------------------------------- /src/features/parse/types.ts: -------------------------------------------------------------------------------- 1 | import { ParsedComponents } from "chrono-node"; 2 | 3 | export interface ChronoObj { 4 | parsedText: string | undefined; 5 | parsedStartObject: ParsedComponents | undefined; 6 | parsedEndObject: ParsedComponents | undefined; 7 | } 8 | -------------------------------------------------------------------------------- /src/features/toolbar/handle-append-page-embeds.ts: -------------------------------------------------------------------------------- 1 | import { helpers } from './helpers' 2 | 3 | export const handleAppendEmbeds = async ( 4 | pageName: string, 5 | year: number, 6 | week: number, 7 | ) => { 8 | const pbt = await logseq.Editor.getPageBlocksTree(pageName) 9 | if (pbt.length === 0 || pbt.length === 1) { 10 | const dateArr = await helpers.insertDaysInWeek(year, week) 11 | dateArr.forEach( 12 | async (date) => 13 | await logseq.Editor.appendBlockInPage( 14 | pageName, 15 | `{{embed [[${date}]]}}`, 16 | ), 17 | ) 18 | await logseq.UI.showMsg( 19 | 'Appended dates for the week as page embeds', 20 | 'success', 21 | ) 22 | } 23 | await logseq.Editor.exitEditingMode(false) 24 | } 25 | -------------------------------------------------------------------------------- /src/features/toolbar/helpers.ts: -------------------------------------------------------------------------------- 1 | import { PageEntity } from '@logseq/libs/dist/LSPlugin' 2 | import { 3 | addDays, 4 | Day, 5 | eachDayOfInterval, 6 | endOfWeek, 7 | parse, 8 | setWeek, 9 | startOfWeek, 10 | subDays, 11 | } from 'date-fns' 12 | import { getDateForPageWithoutBrackets } from 'logseq-dateutils' 13 | 14 | type StartDayOfWeek = 'Monday' | 'Saturday' | 'Sunday' 15 | 16 | const startOfWeekMap: Record = { 17 | Monday: 1, 18 | Sunday: 0, 19 | Saturday: 6, 20 | } 21 | 22 | const getJournalDay = async () => { 23 | const currPage = await logseq.Editor.getCurrentPage() 24 | if (!currPage || !currPage['journal?']) { 25 | return new Date() 26 | } 27 | 28 | const { journalDay } = currPage as PageEntity 29 | if (!journalDay) 30 | throw new Error( 31 | 'Something is wrong. This page is supposed to be a journal page.', 32 | ) 33 | 34 | const parsedJournalDay = parse(journalDay.toString(), 'yyyyMMdd', new Date()) 35 | return parsedJournalDay 36 | } 37 | 38 | export const helpers = { 39 | previousDayName: async () => { 40 | const parsedJournalDay = await getJournalDay() 41 | if (!parsedJournalDay) return 42 | 43 | const previousDay = subDays(parsedJournalDay, 1) 44 | const { preferredDateFormat } = await logseq.App.getUserConfigs() 45 | return getDateForPageWithoutBrackets(previousDay, preferredDateFormat) 46 | }, 47 | nextDayName: async () => { 48 | const parsedJournalDay = await getJournalDay() 49 | if (!parsedJournalDay) return 50 | 51 | const nextDay = addDays(parsedJournalDay, 1) 52 | const { preferredDateFormat } = await logseq.App.getUserConfigs() 53 | return getDateForPageWithoutBrackets(nextDay, preferredDateFormat) 54 | }, 55 | disDayName: async () => { 56 | const { preferredDateFormat } = await logseq.App.getUserConfigs() 57 | return getDateForPageWithoutBrackets(new Date(), preferredDateFormat) 58 | }, 59 | insertDaysInWeek: async (year: number, weekNumber: number) => { 60 | const dateInWeek = setWeek(new Date(year, 0, 1), weekNumber) 61 | const startDay = logseq.settings!.startOfWeek as StartDayOfWeek 62 | const weekStartsOn = startOfWeekMap[startDay] 63 | const startDate = startOfWeek(dateInWeek, { weekStartsOn }) 64 | const endDate = endOfWeek(dateInWeek, { weekStartsOn }) 65 | const dates = eachDayOfInterval({ start: startDate, end: endDate }) 66 | const { preferredDateFormat } = await logseq.App.getUserConfigs() 67 | 68 | return dates.map((date) => 69 | getDateForPageWithoutBrackets(date, preferredDateFormat), 70 | ) 71 | }, 72 | } 73 | -------------------------------------------------------------------------------- /src/features/toolbar/index.ts: -------------------------------------------------------------------------------- 1 | import { getWeek, getYear } from 'date-fns' 2 | 3 | import { handleAppendEmbeds } from './handle-append-page-embeds' 4 | import { helpers } from './helpers' 5 | import css from './toolbar.css?raw' 6 | 7 | export const handleToolbar = async () => { 8 | logseq.provideStyle(css) 9 | 10 | logseq.provideModel({ 11 | async previousDay() { 12 | logseq.App.pushState('page', { 13 | name: await helpers.previousDayName(), 14 | }) 15 | }, 16 | async nextDay() { 17 | logseq.App.pushState('page', { 18 | name: await helpers.nextDayName(), 19 | }) 20 | }, 21 | async disDay() { 22 | logseq.App.pushState('page', { 23 | name: await helpers.disDayName(), 24 | }) 25 | }, 26 | async showWeek() { 27 | const year = getYear(new Date()) 28 | const week = getWeek(new Date()) 29 | const pageName = `${year}/Week ${week}` 30 | await logseq.Editor.createPage( 31 | pageName, 32 | {}, 33 | { 34 | redirect: false, 35 | createFirstBlock: false, 36 | journal: false, 37 | }, 38 | ) 39 | 40 | // Create the page embeds 41 | await handleAppendEmbeds(pageName, year, week) 42 | 43 | // Go to page 44 | logseq.App.pushState('page', { 45 | name: pageName, 46 | }) 47 | }, 48 | }) 49 | 50 | logseq.App.registerUIItem('toolbar', { 51 | key: 'datenlp-day-forward', 52 | template: ``, 53 | }) 54 | logseq.App.registerUIItem('toolbar', { 55 | key: 'datenlp-day-dis', // have to use slang as logseq sorts the toolbar by name 56 | template: `Today`, 57 | }) 58 | logseq.App.registerUIItem('toolbar', { 59 | key: 'datenlp-day-back', 60 | template: ``, 61 | }) 62 | logseq.App.registerUIItem('toolbar', { 63 | key: 'datenlp-week-dis', 64 | template: `Week ${getWeek(new Date())}`, 65 | }) 66 | } 67 | -------------------------------------------------------------------------------- /src/features/toolbar/toolbar.css: -------------------------------------------------------------------------------- 1 | .datenlp-toolbar { 2 | font-size: 0.9rem; 3 | border-radius: 0 !important; 4 | } 5 | -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.css?raw' { 2 | const content: string 3 | export default content 4 | } 5 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import '@logseq/libs' 2 | 3 | import { completeTask } from '~/features/complete-task' 4 | import { goToDate } from '~/features/go-to-date' 5 | import { manualParsing } from '~/features/parse/manual' 6 | import { parseMutationObserver } from '~/features/parse/semi-auto' 7 | import { settings } from '~/settings' 8 | import { handlePopup } from '~/utils' 9 | 10 | import { handleToolbar } from './features/toolbar' 11 | 12 | const main = async () => { 13 | console.info('logseq-datenlp-plugin loaded') 14 | handlePopup() 15 | 16 | // CHeck if any of the special characters are clashing 17 | logseq.onSettingsChanged(() => { 18 | const { dateChar, scheduledChar, deadlineChar } = logseq.settings! 19 | const specialChars = [dateChar, scheduledChar, deadlineChar] 20 | const uniqueChars = new Set(specialChars) 21 | let hasClash = false 22 | if (uniqueChars.size == 1 && !uniqueChars.has('NA')) { 23 | hasClash = true 24 | } 25 | if (uniqueChars.size == 2 && !uniqueChars.has('NA')) { 26 | hasClash = true 27 | } 28 | if (hasClash) { 29 | logseq.UI.showMsg('Special characters clash', 'error') 30 | } 31 | }) 32 | 33 | // FEATURE: Go to date 34 | goToDate() 35 | 36 | // FEATURE: Complete date 37 | completeTask() 38 | 39 | // FEATURE: Toolbar 40 | handleToolbar() 41 | 42 | if (logseq.settings!.semiAuto) parseMutationObserver() // enable mutation observer 43 | manualParsing() 44 | } 45 | 46 | logseq.useSettingsSchema(settings).ready(main).catch(console.error) 47 | -------------------------------------------------------------------------------- /src/output.css: -------------------------------------------------------------------------------- 1 | /* 2 | ! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com 3 | */ 4 | 5 | /* 6 | 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) 7 | 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) 8 | */ 9 | 10 | *, 11 | ::before, 12 | ::after { 13 | box-sizing: border-box; 14 | /* 1 */ 15 | border-width: 0; 16 | /* 2 */ 17 | border-style: solid; 18 | /* 2 */ 19 | border-color: #e5e7eb; 20 | /* 2 */ 21 | } 22 | 23 | ::before, 24 | ::after { 25 | --tw-content: ''; 26 | } 27 | 28 | /* 29 | 1. Use a consistent sensible line-height in all browsers. 30 | 2. Prevent adjustments of font size after orientation changes in iOS. 31 | 3. Use a more readable tab size. 32 | 4. Use the user's configured `sans` font-family by default. 33 | 5. Use the user's configured `sans` font-feature-settings by default. 34 | 6. Use the user's configured `sans` font-variation-settings by default. 35 | 7. Disable tap highlights on iOS 36 | */ 37 | 38 | html, 39 | :host { 40 | line-height: 1.5; 41 | /* 1 */ 42 | -webkit-text-size-adjust: 100%; 43 | /* 2 */ 44 | -moz-tab-size: 4; 45 | /* 3 */ 46 | -o-tab-size: 4; 47 | tab-size: 4; 48 | /* 3 */ 49 | font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 50 | /* 4 */ 51 | font-feature-settings: normal; 52 | /* 5 */ 53 | font-variation-settings: normal; 54 | /* 6 */ 55 | -webkit-tap-highlight-color: transparent; 56 | /* 7 */ 57 | } 58 | 59 | /* 60 | 1. Remove the margin in all browsers. 61 | 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. 62 | */ 63 | 64 | body { 65 | margin: 0; 66 | /* 1 */ 67 | line-height: inherit; 68 | /* 2 */ 69 | } 70 | 71 | /* 72 | 1. Add the correct height in Firefox. 73 | 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) 74 | 3. Ensure horizontal rules are visible by default. 75 | */ 76 | 77 | hr { 78 | height: 0; 79 | /* 1 */ 80 | color: inherit; 81 | /* 2 */ 82 | border-top-width: 1px; 83 | /* 3 */ 84 | } 85 | 86 | /* 87 | Add the correct text decoration in Chrome, Edge, and Safari. 88 | */ 89 | 90 | abbr:where([title]) { 91 | -webkit-text-decoration: underline dotted; 92 | text-decoration: underline dotted; 93 | } 94 | 95 | /* 96 | Remove the default font size and weight for headings. 97 | */ 98 | 99 | h1, 100 | h2, 101 | h3, 102 | h4, 103 | h5, 104 | h6 { 105 | font-size: inherit; 106 | font-weight: inherit; 107 | } 108 | 109 | /* 110 | Reset links to optimize for opt-in styling instead of opt-out. 111 | */ 112 | 113 | a { 114 | color: inherit; 115 | text-decoration: inherit; 116 | } 117 | 118 | /* 119 | Add the correct font weight in Edge and Safari. 120 | */ 121 | 122 | b, 123 | strong { 124 | font-weight: bolder; 125 | } 126 | 127 | /* 128 | 1. Use the user's configured `mono` font-family by default. 129 | 2. Use the user's configured `mono` font-feature-settings by default. 130 | 3. Use the user's configured `mono` font-variation-settings by default. 131 | 4. Correct the odd `em` font sizing in all browsers. 132 | */ 133 | 134 | code, 135 | kbd, 136 | samp, 137 | pre { 138 | font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 139 | /* 1 */ 140 | font-feature-settings: normal; 141 | /* 2 */ 142 | font-variation-settings: normal; 143 | /* 3 */ 144 | font-size: 1em; 145 | /* 4 */ 146 | } 147 | 148 | /* 149 | Add the correct font size in all browsers. 150 | */ 151 | 152 | small { 153 | font-size: 80%; 154 | } 155 | 156 | /* 157 | Prevent `sub` and `sup` elements from affecting the line height in all browsers. 158 | */ 159 | 160 | sub, 161 | sup { 162 | font-size: 75%; 163 | line-height: 0; 164 | position: relative; 165 | vertical-align: baseline; 166 | } 167 | 168 | sub { 169 | bottom: -0.25em; 170 | } 171 | 172 | sup { 173 | top: -0.5em; 174 | } 175 | 176 | /* 177 | 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) 178 | 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) 179 | 3. Remove gaps between table borders by default. 180 | */ 181 | 182 | table { 183 | text-indent: 0; 184 | /* 1 */ 185 | border-color: inherit; 186 | /* 2 */ 187 | border-collapse: collapse; 188 | /* 3 */ 189 | } 190 | 191 | /* 192 | 1. Change the font styles in all browsers. 193 | 2. Remove the margin in Firefox and Safari. 194 | 3. Remove default padding in all browsers. 195 | */ 196 | 197 | button, 198 | input, 199 | optgroup, 200 | select, 201 | textarea { 202 | font-family: inherit; 203 | /* 1 */ 204 | font-feature-settings: inherit; 205 | /* 1 */ 206 | font-variation-settings: inherit; 207 | /* 1 */ 208 | font-size: 100%; 209 | /* 1 */ 210 | font-weight: inherit; 211 | /* 1 */ 212 | line-height: inherit; 213 | /* 1 */ 214 | letter-spacing: inherit; 215 | /* 1 */ 216 | color: inherit; 217 | /* 1 */ 218 | margin: 0; 219 | /* 2 */ 220 | padding: 0; 221 | /* 3 */ 222 | } 223 | 224 | /* 225 | Remove the inheritance of text transform in Edge and Firefox. 226 | */ 227 | 228 | button, 229 | select { 230 | text-transform: none; 231 | } 232 | 233 | /* 234 | 1. Correct the inability to style clickable types in iOS and Safari. 235 | 2. Remove default button styles. 236 | */ 237 | 238 | button, 239 | input:where([type='button']), 240 | input:where([type='reset']), 241 | input:where([type='submit']) { 242 | -webkit-appearance: button; 243 | /* 1 */ 244 | background-color: transparent; 245 | /* 2 */ 246 | background-image: none; 247 | /* 2 */ 248 | } 249 | 250 | /* 251 | Use the modern Firefox focus style for all focusable elements. 252 | */ 253 | 254 | :-moz-focusring { 255 | outline: auto; 256 | } 257 | 258 | /* 259 | Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) 260 | */ 261 | 262 | :-moz-ui-invalid { 263 | box-shadow: none; 264 | } 265 | 266 | /* 267 | Add the correct vertical alignment in Chrome and Firefox. 268 | */ 269 | 270 | progress { 271 | vertical-align: baseline; 272 | } 273 | 274 | /* 275 | Correct the cursor style of increment and decrement buttons in Safari. 276 | */ 277 | 278 | ::-webkit-inner-spin-button, 279 | ::-webkit-outer-spin-button { 280 | height: auto; 281 | } 282 | 283 | /* 284 | 1. Correct the odd appearance in Chrome and Safari. 285 | 2. Correct the outline style in Safari. 286 | */ 287 | 288 | [type='search'] { 289 | -webkit-appearance: textfield; 290 | /* 1 */ 291 | outline-offset: -2px; 292 | /* 2 */ 293 | } 294 | 295 | /* 296 | Remove the inner padding in Chrome and Safari on macOS. 297 | */ 298 | 299 | ::-webkit-search-decoration { 300 | -webkit-appearance: none; 301 | } 302 | 303 | /* 304 | 1. Correct the inability to style clickable types in iOS and Safari. 305 | 2. Change font properties to `inherit` in Safari. 306 | */ 307 | 308 | ::-webkit-file-upload-button { 309 | -webkit-appearance: button; 310 | /* 1 */ 311 | font: inherit; 312 | /* 2 */ 313 | } 314 | 315 | /* 316 | Add the correct display in Chrome and Safari. 317 | */ 318 | 319 | summary { 320 | display: list-item; 321 | } 322 | 323 | /* 324 | Removes the default spacing and border for appropriate elements. 325 | */ 326 | 327 | blockquote, 328 | dl, 329 | dd, 330 | h1, 331 | h2, 332 | h3, 333 | h4, 334 | h5, 335 | h6, 336 | hr, 337 | figure, 338 | p, 339 | pre { 340 | margin: 0; 341 | } 342 | 343 | fieldset { 344 | margin: 0; 345 | padding: 0; 346 | } 347 | 348 | legend { 349 | padding: 0; 350 | } 351 | 352 | ol, 353 | ul, 354 | menu { 355 | list-style: none; 356 | margin: 0; 357 | padding: 0; 358 | } 359 | 360 | /* 361 | Reset default styling for dialogs. 362 | */ 363 | 364 | dialog { 365 | padding: 0; 366 | } 367 | 368 | /* 369 | Prevent resizing textareas horizontally by default. 370 | */ 371 | 372 | textarea { 373 | resize: vertical; 374 | } 375 | 376 | /* 377 | 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) 378 | 2. Set the default placeholder color to the user's configured gray 400 color. 379 | */ 380 | 381 | input::-moz-placeholder, textarea::-moz-placeholder { 382 | opacity: 1; 383 | /* 1 */ 384 | color: #9ca3af; 385 | /* 2 */ 386 | } 387 | 388 | input::placeholder, 389 | textarea::placeholder { 390 | opacity: 1; 391 | /* 1 */ 392 | color: #9ca3af; 393 | /* 2 */ 394 | } 395 | 396 | /* 397 | Set the default cursor for buttons. 398 | */ 399 | 400 | button, 401 | [role="button"] { 402 | cursor: pointer; 403 | } 404 | 405 | /* 406 | Make sure disabled buttons don't get the pointer cursor. 407 | */ 408 | 409 | :disabled { 410 | cursor: default; 411 | } 412 | 413 | /* 414 | 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) 415 | 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) 416 | This can trigger a poorly considered lint error in some tools but is included by design. 417 | */ 418 | 419 | img, 420 | svg, 421 | video, 422 | canvas, 423 | audio, 424 | iframe, 425 | embed, 426 | object { 427 | display: block; 428 | /* 1 */ 429 | vertical-align: middle; 430 | /* 2 */ 431 | } 432 | 433 | /* 434 | Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) 435 | */ 436 | 437 | img, 438 | video { 439 | max-width: 100%; 440 | height: auto; 441 | } 442 | 443 | /* Make elements with the HTML hidden attribute stay hidden by default */ 444 | 445 | [hidden] { 446 | display: none; 447 | } 448 | 449 | *, ::before, ::after { 450 | --tw-border-spacing-x: 0; 451 | --tw-border-spacing-y: 0; 452 | --tw-translate-x: 0; 453 | --tw-translate-y: 0; 454 | --tw-rotate: 0; 455 | --tw-skew-x: 0; 456 | --tw-skew-y: 0; 457 | --tw-scale-x: 1; 458 | --tw-scale-y: 1; 459 | --tw-pan-x: ; 460 | --tw-pan-y: ; 461 | --tw-pinch-zoom: ; 462 | --tw-scroll-snap-strictness: proximity; 463 | --tw-gradient-from-position: ; 464 | --tw-gradient-via-position: ; 465 | --tw-gradient-to-position: ; 466 | --tw-ordinal: ; 467 | --tw-slashed-zero: ; 468 | --tw-numeric-figure: ; 469 | --tw-numeric-spacing: ; 470 | --tw-numeric-fraction: ; 471 | --tw-ring-inset: ; 472 | --tw-ring-offset-width: 0px; 473 | --tw-ring-offset-color: #fff; 474 | --tw-ring-color: rgb(59 130 246 / 0.5); 475 | --tw-ring-offset-shadow: 0 0 #0000; 476 | --tw-ring-shadow: 0 0 #0000; 477 | --tw-shadow: 0 0 #0000; 478 | --tw-shadow-colored: 0 0 #0000; 479 | --tw-blur: ; 480 | --tw-brightness: ; 481 | --tw-contrast: ; 482 | --tw-grayscale: ; 483 | --tw-hue-rotate: ; 484 | --tw-invert: ; 485 | --tw-saturate: ; 486 | --tw-sepia: ; 487 | --tw-drop-shadow: ; 488 | --tw-backdrop-blur: ; 489 | --tw-backdrop-brightness: ; 490 | --tw-backdrop-contrast: ; 491 | --tw-backdrop-grayscale: ; 492 | --tw-backdrop-hue-rotate: ; 493 | --tw-backdrop-invert: ; 494 | --tw-backdrop-opacity: ; 495 | --tw-backdrop-saturate: ; 496 | --tw-backdrop-sepia: ; 497 | --tw-contain-size: ; 498 | --tw-contain-layout: ; 499 | --tw-contain-paint: ; 500 | --tw-contain-style: ; 501 | } 502 | 503 | ::backdrop { 504 | --tw-border-spacing-x: 0; 505 | --tw-border-spacing-y: 0; 506 | --tw-translate-x: 0; 507 | --tw-translate-y: 0; 508 | --tw-rotate: 0; 509 | --tw-skew-x: 0; 510 | --tw-skew-y: 0; 511 | --tw-scale-x: 1; 512 | --tw-scale-y: 1; 513 | --tw-pan-x: ; 514 | --tw-pan-y: ; 515 | --tw-pinch-zoom: ; 516 | --tw-scroll-snap-strictness: proximity; 517 | --tw-gradient-from-position: ; 518 | --tw-gradient-via-position: ; 519 | --tw-gradient-to-position: ; 520 | --tw-ordinal: ; 521 | --tw-slashed-zero: ; 522 | --tw-numeric-figure: ; 523 | --tw-numeric-spacing: ; 524 | --tw-numeric-fraction: ; 525 | --tw-ring-inset: ; 526 | --tw-ring-offset-width: 0px; 527 | --tw-ring-offset-color: #fff; 528 | --tw-ring-color: rgb(59 130 246 / 0.5); 529 | --tw-ring-offset-shadow: 0 0 #0000; 530 | --tw-ring-shadow: 0 0 #0000; 531 | --tw-shadow: 0 0 #0000; 532 | --tw-shadow-colored: 0 0 #0000; 533 | --tw-blur: ; 534 | --tw-brightness: ; 535 | --tw-contrast: ; 536 | --tw-grayscale: ; 537 | --tw-hue-rotate: ; 538 | --tw-invert: ; 539 | --tw-saturate: ; 540 | --tw-sepia: ; 541 | --tw-drop-shadow: ; 542 | --tw-backdrop-blur: ; 543 | --tw-backdrop-brightness: ; 544 | --tw-backdrop-contrast: ; 545 | --tw-backdrop-grayscale: ; 546 | --tw-backdrop-hue-rotate: ; 547 | --tw-backdrop-invert: ; 548 | --tw-backdrop-opacity: ; 549 | --tw-backdrop-saturate: ; 550 | --tw-backdrop-sepia: ; 551 | --tw-contain-size: ; 552 | --tw-contain-layout: ; 553 | --tw-contain-paint: ; 554 | --tw-contain-style: ; 555 | } 556 | 557 | .m-auto { 558 | margin: auto; 559 | } 560 | 561 | .block { 562 | display: block; 563 | } 564 | 565 | .inline { 566 | display: inline; 567 | } 568 | 569 | .flex { 570 | display: flex; 571 | } 572 | 573 | .h-12 { 574 | height: 3rem; 575 | } 576 | 577 | .h-screen { 578 | height: 100vh; 579 | } 580 | 581 | .w-\[70\%\] { 582 | width: 70%; 583 | } 584 | 585 | .w-full { 586 | width: 100%; 587 | } 588 | 589 | .content-start { 590 | align-content: flex-start; 591 | } 592 | 593 | .justify-center { 594 | justify-content: center; 595 | } 596 | 597 | .rounded-lg { 598 | border-radius: 0.5rem; 599 | } 600 | 601 | .border-2 { 602 | border-width: 2px; 603 | } 604 | 605 | .border-black { 606 | --tw-border-opacity: 1; 607 | border-color: rgb(0 0 0 / var(--tw-border-opacity)); 608 | } 609 | 610 | .p-3 { 611 | padding: 0.75rem; 612 | } 613 | 614 | .px-2 { 615 | padding-left: 0.5rem; 616 | padding-right: 0.5rem; 617 | } 618 | 619 | .py-1 { 620 | padding-top: 0.25rem; 621 | padding-bottom: 0.25rem; 622 | } 623 | 624 | .text-gray-700 { 625 | --tw-text-opacity: 1; 626 | color: rgb(55 65 81 / var(--tw-text-opacity)); 627 | } 628 | 629 | .backdrop-blur-md { 630 | --tw-backdrop-blur: blur(12px); 631 | -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); 632 | backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); 633 | } 634 | -------------------------------------------------------------------------------- /src/settings/index.ts: -------------------------------------------------------------------------------- 1 | import { SettingSchemaDesc } from '@logseq/libs/dist/LSPlugin' 2 | 3 | export const settings: SettingSchemaDesc[] = [ 4 | { 5 | key: 'semiAuto', 6 | type: 'boolean', 7 | default: true, 8 | title: 'Semi-auto Parsing', 9 | description: 10 | 'Enables/disables semi-auto parsing. This is recommended over completely auto parsing. You can trigger the parsing by using the @ sign, e.g. @tomorrow. Please refer to the Readme for more semi-auto parsing functions.', 11 | }, 12 | { 13 | key: 'insertDateProperty', 14 | type: 'boolean', 15 | default: false, 16 | title: 'Insert Date Property', 17 | description: 18 | 'If set to true, when parsing dates, a date property wil be inserted instead of inline.', 19 | }, 20 | { 21 | key: 'lang', 22 | type: 'enum', 23 | default: 'en', 24 | enumChoices: ['en', 'ja', 'fr', 'nl', 'ru', 'de', 'pt', 'zh'], 25 | enumPicker: 'select', 26 | title: 'Set language', 27 | description: 28 | 'Set language of parser. Supports en, ja, fr, nl and ru. (de, pt, and zh are partially supported).', 29 | }, 30 | { 31 | key: 'removeTime', 32 | type: 'boolean', 33 | default: 'false', 34 | title: 'Remove Time', 35 | description: 'Remove time from scheduled and deadline parsing.', 36 | }, 37 | { 38 | key: 'gotoShortcut', 39 | type: 'string', 40 | default: 'mod+g', 41 | title: 'Set shortcut of Go to Date', 42 | description: 43 | '(Requires restarting Logseq) Modify the shortcut to trigger the pop-up for Go to Date.', 44 | }, 45 | { 46 | key: 'completeTaskShortcut', 47 | type: 'string', 48 | default: 'mod+shift+d', 49 | title: 'Set shortcut to Complete Task', 50 | description: 51 | '(Requires restarting Logseq) Modify the shortcut to mark a task complete.', 52 | }, 53 | { 54 | key: 'specialCharHeading', 55 | type: 'heading', 56 | default: '', 57 | title: 'Set Special Character', 58 | description: 59 | "Ensure the options below do not overlap. If you are not using the character, please choose 'NA'", 60 | }, 61 | { 62 | key: 'dateChar', 63 | type: 'enum', 64 | default: '@', 65 | enumChoices: ['@', '%', '^', 'NA'], 66 | enumPicker: 'select', 67 | title: 'Character for Date', 68 | description: 69 | 'Sets the character when doing parsing for date. Reload the plugin after changing this setting.', 70 | }, 71 | { 72 | key: 'scheduledChar', 73 | type: 'enum', 74 | default: 'NA', 75 | enumChoices: ['@', '%', '^', 'NA'], 76 | enumPicker: 'select', 77 | title: 'Character for Scheduled', 78 | description: 79 | 'Sets the character when doing parsing for scheduled. Reload the plugin after changing this setting.', 80 | }, 81 | { 82 | key: 'deadlineChar', 83 | type: 'enum', 84 | default: 'NA', 85 | enumChoices: ['@', '%', '^', 'NA'], 86 | enumPicker: 'select', 87 | title: 'Character for Deadline', 88 | description: 89 | 'Sets the character when doing parsing for deadline. Reload the plugin after changing this setting.', 90 | }, 91 | { 92 | key: 'startOfWeek', 93 | type: 'enum', 94 | default: 'Monday', 95 | enumChoices: ['Monday', 'Sunday', 'Saturday'], 96 | enumPicker: 'select', 97 | title: 'Start of Week', 98 | description: 'Indicate the start day of the week (for week review)', 99 | }, 100 | ] 101 | -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export const handlePopup = () => { 2 | //ESC 3 | document.addEventListener( 4 | 'keydown', 5 | (e: KeyboardEvent) => { 6 | if (e.key === 'Escape') { 7 | logseq.hideMainUI({ restoreEditingCursor: true }) 8 | } 9 | e.stopPropagation() 10 | }, 11 | false, 12 | ) 13 | // Click 14 | document.addEventListener('click', (e) => { 15 | if (!(e.target as HTMLElement).closest('.search-field')) { 16 | logseq.hideMainUI({ restoreEditingCursor: true }) 17 | } 18 | e.stopPropagation() 19 | }) 20 | } 21 | 22 | export const getPreferredDateFormat = async (): Promise => { 23 | return (await logseq.App.getUserConfigs()).preferredDateFormat 24 | } 25 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], 3 | theme: { 4 | extend: {}, 5 | }, 6 | plugins: [], 7 | } 8 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react-jsx", 4 | "target": "es2017", 5 | "lib": [ 6 | "dom", 7 | "dom.iterable", 8 | "esnext" 9 | ], 10 | "allowJs": true, 11 | "checkJs": true, 12 | "skipLibCheck": true, 13 | "strict": true, 14 | "forceConsistentCasingInFileNames": true, 15 | "noEmit": true, 16 | "esModuleInterop": true, 17 | "module": "esnext", 18 | "moduleResolution": "node", 19 | "resolveJsonModule": true, 20 | "isolatedModules": true, 21 | "incremental": true, 22 | "noUncheckedIndexedAccess": true, 23 | "baseUrl": "./", 24 | "paths": { 25 | "~/*": [ 26 | "src/*" 27 | ] 28 | } 29 | }, 30 | "include": [ 31 | "**/*.ts", 32 | "**/*.tsx", 33 | "**/*.cjs", 34 | "**/*.mjs", 35 | "global.d.ts" 36 | ], 37 | "exclude": [ 38 | "node_modules", 39 | "./dist/**/*", 40 | "./screenshots", 41 | "tailwind.config.js" 42 | ] 43 | } 44 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import logseqDevPlugin from 'vite-plugin-logseq' 3 | import tsconfigPaths from 'vite-tsconfig-paths' 4 | 5 | export default defineConfig({ 6 | plugins: [logseqDevPlugin(), tsconfigPaths()], 7 | }) 8 | --------------------------------------------------------------------------------