@bendyline/docblocks-react 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/THIRD_PARTY_NOTICES.txt +154 -55
- package/dist/{ExportDialog-VBWHFJ2R.js → ExportDialog-Q4VWI43H.js} +2 -2
- package/dist/{ExportToolbarControls-BUVJCSMV.js → ExportToolbarControls-QYLBRWM7.js} +7 -7
- package/dist/GitGrantNotice-I2VNKPLH.js +29 -0
- package/dist/{GitToolbarControl-VJVK2B4X.js → GitToolbarControl-O5AXBC6T.js} +5 -3
- package/dist/{GitUI-CAKFVKWY.js → GitUI-L5T3XHZG.js} +68 -14
- package/dist/calculation/index.d.ts +27 -0
- package/dist/calculation/index.js +16 -0
- package/dist/chunk-6E635KCJ.js +11 -0
- package/dist/chunk-DUKTAKB4.js +83 -0
- package/dist/{chunk-VRRL6VTD.js → chunk-Q6XNIKDG.js} +63 -0
- package/dist/{chunk-HFYPTTCH.js → chunk-V2ENBGUA.js} +0 -9
- package/dist/export/index.js +5 -5
- package/dist/index.d.ts +42 -7
- package/dist/index.js +881 -509
- package/dist/proofing/index.d.ts +112 -0
- package/dist/proofing/index.js +50 -0
- package/dist/settings/index.d.ts +37 -1
- package/dist/settings/index.js +11 -3
- package/package.json +20 -9
- package/src/styles/docblocks.css +364 -96
- package/dist/{chunk-SIIEGOHY.js → chunk-FMDLZ4ZG.js} +3 -3
package/README.md
CHANGED
|
@@ -36,6 +36,23 @@ import { defineConfig } from 'vite';
|
|
|
36
36
|
export default defineConfig({ worker: { format: 'es' } });
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
Formula grids can opt into the full IronCalc engine through the separately
|
|
40
|
+
built calculation entry point. Publish `@ironcalc/wasm/wasm_bg.wasm` at a
|
|
41
|
+
same-origin URL and keep the factory at module scope so the engine remains
|
|
42
|
+
lazy and reusable:
|
|
43
|
+
|
|
44
|
+
```tsx
|
|
45
|
+
import { createDocBlocksCalcEngineFactory } from '@bendyline/docblocks-react/calculation';
|
|
46
|
+
|
|
47
|
+
const calcEngineFactory = createDocBlocksCalcEngineFactory({
|
|
48
|
+
wasmSource: '/ironcalc/wasm_bg.wasm',
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
function App() {
|
|
52
|
+
return <DocBlocksShell calcEngineFactory={calcEngineFactory} />;
|
|
53
|
+
}
|
|
54
|
+
```
|
|
55
|
+
|
|
39
56
|
## Components
|
|
40
57
|
|
|
41
58
|
### DocBlocksShell
|
|
@@ -55,6 +72,7 @@ The canonical DocBlocks experience in one component — file explorer, workspace
|
|
|
55
72
|
|
|
56
73
|
- `theme` — `'light' | 'dark' | 'auto'` (auto follows `prefers-color-scheme`)
|
|
57
74
|
- `logoUrl` — brand mark for the app menu button
|
|
75
|
+
- `calcEngineFactory` — optional lazy calculation backend; use the calculation entry point above to enable IronCalc formulas
|
|
58
76
|
- `ffmpegWasm` — optional same-origin ffmpeg core URLs; supplying them enables the built-in Animated GIF flow on cross-origin-isolated hosts
|
|
59
77
|
- `showCodeCopyButton` — shows Copy controls on ordinary fenced code blocks (default: `true`; Mermaid fences remain diagrams)
|
|
60
78
|
- `onCopyCode` — optional clipboard adapter for native hosts; browser hosts fall back to `navigator.clipboard.writeText`
|
package/THIRD_PARTY_NOTICES.txt
CHANGED
|
@@ -6,7 +6,7 @@ Run `npm run generate:notices` from the repository root.
|
|
|
6
6
|
Resolved runtime and optional dependency closure declared by packages/react/package.json. Peer dependencies are supplied by the consuming application and are not included.
|
|
7
7
|
|
|
8
8
|
Inventory source: package-lock.json.
|
|
9
|
-
Components:
|
|
9
|
+
Components: 377.
|
|
10
10
|
|
|
11
11
|
This notice is included in the published npm tarball. Transitive packages installed by npm also retain their package-local license files.
|
|
12
12
|
|
|
@@ -15,12 +15,14 @@ This notice is included in the published npm tarball. Transitive packages instal
|
|
|
15
15
|
| Package | Version | License | Source |
|
|
16
16
|
| --- | --- | --- | --- |
|
|
17
17
|
| @antfu/install-pkg | 1.1.0 | MIT | https://github.com/antfu/install-pkg |
|
|
18
|
-
| @bendyline/squisq | 2.
|
|
19
|
-
| @bendyline/squisq-
|
|
20
|
-
| @bendyline/squisq-
|
|
21
|
-
| @bendyline/squisq-
|
|
22
|
-
| @bendyline/squisq-
|
|
23
|
-
| @bendyline/squisq-
|
|
18
|
+
| @bendyline/squisq | 2.11.1 | MIT | https://github.com/bendyline/squisq |
|
|
19
|
+
| @bendyline/squisq-calc | 2.11.0 | MIT | https://github.com/bendyline/squisq |
|
|
20
|
+
| @bendyline/squisq-editor-react | 2.11.1 | MIT | https://github.com/bendyline/squisq |
|
|
21
|
+
| @bendyline/squisq-formats | 2.6.1 | MIT | https://github.com/bendyline/squisq |
|
|
22
|
+
| @bendyline/squisq-grid-react | 2.11.2 | MIT | https://github.com/bendyline/squisq |
|
|
23
|
+
| @bendyline/squisq-react | 2.11.1 | MIT | https://github.com/bendyline/squisq |
|
|
24
|
+
| @bendyline/squisq-video | 2.3.4 | MIT | https://github.com/bendyline/squisq |
|
|
25
|
+
| @bendyline/squisq-video-react | 2.4.5 | MIT | https://github.com/bendyline/squisq |
|
|
24
26
|
| @braintree/sanitize-url | 7.1.2 | MIT | https://github.com/braintree/sanitize-url |
|
|
25
27
|
| @chevrotain/types | 11.1.2 | Apache-2.0 | https://github.com/Chevrotain/chevrotain |
|
|
26
28
|
| @ffmpeg/core | 0.12.9 | GPL-2.0-or-later | https://github.com/ffmpegwasm/ffmpeg.wasm |
|
|
@@ -42,12 +44,14 @@ This notice is included in the published npm tarball. Transitive packages instal
|
|
|
42
44
|
| @napi-rs/canvas-linux-x64-gnu | 0.1.100 | MIT | https://www.npmjs.com/package/@napi-rs/canvas-linux-x64-gnu |
|
|
43
45
|
| @napi-rs/canvas-linux-x64-musl | 0.1.100 | MIT | https://www.npmjs.com/package/@napi-rs/canvas-linux-x64-musl |
|
|
44
46
|
| @napi-rs/canvas-win32-arm64-msvc | 0.1.100 | MIT | https://www.npmjs.com/package/@napi-rs/canvas-win32-arm64-msvc |
|
|
45
|
-
| @napi-rs/canvas-win32-x64-msvc | 0.1.100 | MIT | https://
|
|
47
|
+
| @napi-rs/canvas-win32-x64-msvc | 0.1.100 | MIT | https://www.npmjs.com/package/@napi-rs/canvas-win32-x64-msvc |
|
|
46
48
|
| @pdf-lib/fontkit | 1.1.1 | MIT | https://github.com/Hopding/fontkit |
|
|
47
49
|
| @pdf-lib/standard-fonts | 1.0.0 | MIT | https://github.com/Hopding/standard-fonts |
|
|
48
50
|
| @pdf-lib/upng | 1.0.1 | MIT | https://github.com/Hopding/upng |
|
|
49
51
|
| @popperjs/core | 2.11.8 | MIT | github:popperjs/popper-core |
|
|
50
52
|
| @remirror/core-constants | 3.0.0 | MIT | https://github.com/remirror/remirror |
|
|
53
|
+
| @tanstack/react-virtual | 3.14.10 | MIT | https://github.com/TanStack/virtual |
|
|
54
|
+
| @tanstack/virtual-core | 3.17.8 | MIT | https://github.com/TanStack/virtual |
|
|
51
55
|
| @tiptap/core | 2.27.2 | MIT | https://github.com/ueberdosis/tiptap |
|
|
52
56
|
| @tiptap/extension-blockquote | 2.27.2 | MIT | https://github.com/ueberdosis/tiptap |
|
|
53
57
|
| @tiptap/extension-bold | 2.27.2 | MIT | https://github.com/ueberdosis/tiptap |
|
|
@@ -129,7 +133,7 @@ This notice is included in the published npm tarball. Transitive packages instal
|
|
|
129
133
|
| @types/unist | 3.0.3 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped |
|
|
130
134
|
| @types/use-sync-external-store | 0.0.6 | MIT | https://github.com/DefinitelyTyped/DefinitelyTyped |
|
|
131
135
|
| @upsetjs/venn.js | 2.0.0 | MIT | https://github.com/upsetjs/venn.js |
|
|
132
|
-
| @xmldom/xmldom | 0.9.
|
|
136
|
+
| @xmldom/xmldom | 0.9.12 | MIT | https://github.com/xmldom/xmldom |
|
|
133
137
|
| ansi-regex | 5.0.1 | MIT | https://github.com/chalk/ansi-regex |
|
|
134
138
|
| ansi-styles | 4.3.0 | MIT | https://github.com/chalk/ansi-styles |
|
|
135
139
|
| argparse | 2.0.1 | Python-2.0 | https://github.com/nodeca/argparse |
|
|
@@ -427,8 +431,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
427
431
|
SOFTWARE.
|
|
428
432
|
|
|
429
433
|
==============================================================================
|
|
430
|
-
Components: @bendyline/squisq-editor-react@2.
|
|
431
|
-
Source files: node_modules/@bendyline/squisq-editor-react/LICENSE, node_modules/@bendyline/squisq-formats/LICENSE, node_modules/@bendyline/squisq-react/LICENSE, node_modules/@bendyline/squisq-video-react/LICENSE, node_modules/@bendyline/squisq-video/LICENSE, node_modules/@bendyline/squisq/LICENSE
|
|
434
|
+
Components: @bendyline/squisq-calc@2.11.0, @bendyline/squisq-editor-react@2.11.1, @bendyline/squisq-formats@2.6.1, @bendyline/squisq-grid-react@2.11.2, @bendyline/squisq-react@2.11.1, @bendyline/squisq-video-react@2.4.5, @bendyline/squisq-video@2.3.4, @bendyline/squisq@2.11.1
|
|
435
|
+
Source files: node_modules/@bendyline/squisq-calc/LICENSE, node_modules/@bendyline/squisq-editor-react/LICENSE, node_modules/@bendyline/squisq-formats/LICENSE, node_modules/@bendyline/squisq-grid-react/LICENSE, node_modules/@bendyline/squisq-react/LICENSE, node_modules/@bendyline/squisq-video-react/LICENSE, node_modules/@bendyline/squisq-video/LICENSE, node_modules/@bendyline/squisq/LICENSE
|
|
432
436
|
==============================================================================
|
|
433
437
|
MIT License
|
|
434
438
|
|
|
@@ -452,6 +456,40 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
452
456
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
453
457
|
SOFTWARE.
|
|
454
458
|
|
|
459
|
+
==============================================================================
|
|
460
|
+
Components: @bendyline/squisq-calc@2.11.0
|
|
461
|
+
Source files: node_modules/@bendyline/squisq-calc/NOTICE.md
|
|
462
|
+
==============================================================================
|
|
463
|
+
# Third-Party Notices for @bendyline/squisq-calc
|
|
464
|
+
|
|
465
|
+
This notice applies to the `@bendyline/squisq-calc` npm package.
|
|
466
|
+
Squisq-authored code is licensed under the MIT license in `LICENSE`.
|
|
467
|
+
Third-party components remain under their respective license terms.
|
|
468
|
+
|
|
469
|
+
## Runtime and peer dependencies
|
|
470
|
+
|
|
471
|
+
| Package | Version | License | Repository |
|
|
472
|
+
| ----------------------- | ------- | -------------- | ------------------------------------ |
|
|
473
|
+
| @ironcalc/wasm _(peer)_ | ^0.8.4 | MIT/Apache-2.0 | https://github.com/ironcalc/IronCalc |
|
|
474
|
+
|
|
475
|
+
The IronCalc wasm backend is an optional peer dependency, reached only through
|
|
476
|
+
the `@bendyline/squisq-calc/ironcalc` subpath via dynamic import. It is not
|
|
477
|
+
bundled, and consumers who never construct an IronCalc engine do not install
|
|
478
|
+
it. Copyright and complete license texts for the listed dependencies are
|
|
479
|
+
included in their respective npm distributions and source repositories.
|
|
480
|
+
|
|
481
|
+
==============================================================================
|
|
482
|
+
Components: @bendyline/squisq-calc@2.11.0
|
|
483
|
+
Source files: node_modules/@bendyline/squisq-calc/THIRD_PARTY_LICENSES.txt
|
|
484
|
+
==============================================================================
|
|
485
|
+
THIRD-PARTY LICENSES FOR @bendyline/squisq-calc
|
|
486
|
+
|
|
487
|
+
Generated from the actual esbuild input graph. Package-local license, copying,
|
|
488
|
+
and notice files are reproduced verbatim. When an npm tarball omits its
|
|
489
|
+
repository license, the pinned upstream copy is vendored and identified below.
|
|
490
|
+
|
|
491
|
+
COMPONENTS
|
|
492
|
+
|
|
455
493
|
==============================================================================
|
|
456
494
|
Components: type-fest@4.41.0
|
|
457
495
|
Source files: node_modules/@bendyline/squisq-editor-react/node_modules/type-fest/license-cc0
|
|
@@ -593,7 +631,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
593
631
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
594
632
|
|
|
595
633
|
==============================================================================
|
|
596
|
-
Components: @bendyline/squisq-editor-react@2.
|
|
634
|
+
Components: @bendyline/squisq-editor-react@2.11.1
|
|
597
635
|
Source files: node_modules/@bendyline/squisq-editor-react/NOTICE.md
|
|
598
636
|
==============================================================================
|
|
599
637
|
# Third-Party Notices for @bendyline/squisq-editor-react
|
|
@@ -628,6 +666,7 @@ Third-party components remain under their respective license terms.
|
|
|
628
666
|
| @monaco-editor/react _(bundled)_ | 4.7.0 | MIT | https://github.com/suren-atoyan/monaco-react |
|
|
629
667
|
| @monaco-editor/loader _(bundled)_ | 1.7.0 | MIT | https://github.com/suren-atoyan/monaco-loader |
|
|
630
668
|
| state-local _(bundled)_ | 1.0.7 | MIT | https://github.com/suren-atoyan/state-local |
|
|
669
|
+
| harper.js _(peer)_ | ^2.7.0 | Apache-2.0 | https://github.com/automattic/harper |
|
|
631
670
|
| monaco-editor _(peer)_ | ~0.50.0 | MIT | https://github.com/microsoft/monaco-editor |
|
|
632
671
|
| react _(peer)_ | ^18.0.0 \|\| ^19.0.0 | MIT | https://github.com/facebook/react |
|
|
633
672
|
| react-dom _(peer)_ | ^18.0.0 \|\| ^19.0.0 | MIT | https://github.com/facebook/react |
|
|
@@ -640,7 +679,7 @@ Exact third-party license texts for the bundled adapter, loader, state helper,
|
|
|
640
679
|
and Font Awesome assets are shipped in THIRD_PARTY_LICENSES.txt.
|
|
641
680
|
|
|
642
681
|
==============================================================================
|
|
643
|
-
Components: @bendyline/squisq-editor-react@2.
|
|
682
|
+
Components: @bendyline/squisq-editor-react@2.11.1, @tiptap/core@2.27.2, @tiptap/extension-blockquote@2.27.2, @tiptap/extension-bold@2.27.2, @tiptap/extension-bubble-menu@2.27.2, @tiptap/extension-bullet-list@2.27.2, @tiptap/extension-code-block@2.27.2, @tiptap/extension-code@2.27.2, @tiptap/extension-document@2.27.2, @tiptap/extension-dropcursor@2.27.2, @tiptap/extension-floating-menu@2.27.2, @tiptap/extension-gapcursor@2.27.2, @tiptap/extension-hard-break@2.27.2, @tiptap/extension-heading@2.27.2, @tiptap/extension-history@2.27.2, @tiptap/extension-horizontal-rule@2.27.2, @tiptap/extension-image@2.27.2, @tiptap/extension-italic@2.27.2, @tiptap/extension-link@2.27.2, @tiptap/extension-list-item@2.27.2, @tiptap/extension-mention@2.27.2, @tiptap/extension-ordered-list@2.27.2, @tiptap/extension-paragraph@2.27.2, @tiptap/extension-placeholder@2.27.2, @tiptap/extension-strike@2.27.2, @tiptap/extension-table-cell@2.27.2, @tiptap/extension-table-header@2.27.2, @tiptap/extension-table-row@2.27.2, @tiptap/extension-table@2.27.2, @tiptap/extension-task-item@2.27.2, @tiptap/extension-task-list@2.27.2, @tiptap/extension-text-style@2.27.2, @tiptap/extension-text@2.27.2, @tiptap/pm@2.27.2, @tiptap/react@2.27.2, @tiptap/starter-kit@2.27.2, @tiptap/suggestion@2.27.2
|
|
644
683
|
Source files: node_modules/@bendyline/squisq-editor-react/THIRD_PARTY_LICENSES.txt
|
|
645
684
|
==============================================================================
|
|
646
685
|
THIRD-PARTY LICENSES FOR @bendyline/squisq-editor-react
|
|
@@ -900,7 +939,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
900
939
|
SOFTWARE.
|
|
901
940
|
|
|
902
941
|
==============================================================================
|
|
903
|
-
Components: @xmldom/xmldom@0.9.
|
|
942
|
+
Components: @xmldom/xmldom@0.9.12
|
|
904
943
|
Source files: node_modules/@bendyline/squisq-formats/node_modules/@xmldom/xmldom/LICENSE
|
|
905
944
|
==============================================================================
|
|
906
945
|
Copyright 2019 - present Christopher J. Brody and other contributors, as listed in: https://github.com/xmldom/xmldom/graphs/contributors
|
|
@@ -913,7 +952,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
913
952
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
914
953
|
|
|
915
954
|
==============================================================================
|
|
916
|
-
Components: @bendyline/squisq-formats@2.
|
|
955
|
+
Components: @bendyline/squisq-formats@2.6.1
|
|
917
956
|
Source files: node_modules/@bendyline/squisq-formats/NOTICE.md
|
|
918
957
|
==============================================================================
|
|
919
958
|
# Third-Party Notices for @bendyline/squisq-formats
|
|
@@ -922,23 +961,24 @@ This notice applies to the `@bendyline/squisq-formats` npm package.
|
|
|
922
961
|
Squisq-authored code is licensed under the MIT license in `LICENSE`.
|
|
923
962
|
Third-party components remain under their respective license terms.
|
|
924
963
|
|
|
925
|
-
## Runtime dependencies
|
|
964
|
+
## Runtime and peer dependencies
|
|
926
965
|
|
|
927
|
-
| Package
|
|
928
|
-
|
|
|
929
|
-
| @pdf-lib/fontkit
|
|
930
|
-
| @pdf-lib/upng
|
|
931
|
-
| @xmldom/xmldom
|
|
932
|
-
| jszip
|
|
933
|
-
| pdf-lib
|
|
934
|
-
| pdfjs-dist
|
|
966
|
+
| Package | Version | License | Repository |
|
|
967
|
+
| ------------------ | ------- | ----------------------- | ------------------------------------ |
|
|
968
|
+
| @pdf-lib/fontkit | 1.1.1 | MIT | https://github.com/Hopding/fontkit |
|
|
969
|
+
| @pdf-lib/upng | 1.0.1 | MIT | https://github.com/Hopding/upng |
|
|
970
|
+
| @xmldom/xmldom | 0.9.12 | MIT | https://github.com/xmldom/xmldom |
|
|
971
|
+
| jszip | 3.10.1 | MIT OR GPL-3.0-or-later | https://github.com/Stuk/jszip |
|
|
972
|
+
| pdf-lib | 1.17.1 | MIT | https://pdf-lib.js.org |
|
|
973
|
+
| pdfjs-dist | 4.10.38 | Apache-2.0 | https://mozilla.github.io/pdf.js |
|
|
974
|
+
| hyparquet _(peer)_ | ^1.29.1 | MIT | https://github.com/hyparam/hyparquet |
|
|
935
975
|
|
|
936
976
|
Squisq uses jszip under its MIT license option. Copyright and complete license
|
|
937
977
|
texts for these dependencies are included in their respective npm
|
|
938
978
|
distributions and source repositories.
|
|
939
979
|
|
|
940
980
|
==============================================================================
|
|
941
|
-
Components: @bendyline/squisq-formats@2.
|
|
981
|
+
Components: @bendyline/squisq-formats@2.6.1
|
|
942
982
|
Source files: node_modules/@bendyline/squisq-formats/THIRD_PARTY_LICENSES.txt
|
|
943
983
|
==============================================================================
|
|
944
984
|
THIRD-PARTY LICENSES FOR @bendyline/squisq-formats
|
|
@@ -1120,7 +1160,40 @@ Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
|
|
1120
1160
|
to represent the company, product, or service to which they refer.**
|
|
1121
1161
|
|
|
1122
1162
|
==============================================================================
|
|
1123
|
-
Components: @bendyline/squisq-react@2.
|
|
1163
|
+
Components: @bendyline/squisq-grid-react@2.11.2
|
|
1164
|
+
Source files: node_modules/@bendyline/squisq-grid-react/NOTICE.md
|
|
1165
|
+
==============================================================================
|
|
1166
|
+
# Third-Party Notices for @bendyline/squisq-grid-react
|
|
1167
|
+
|
|
1168
|
+
This notice applies to the `@bendyline/squisq-grid-react` npm package.
|
|
1169
|
+
Squisq-authored code is licensed under the MIT license in `LICENSE`.
|
|
1170
|
+
Third-party components remain under their respective license terms.
|
|
1171
|
+
|
|
1172
|
+
## Runtime and peer dependencies
|
|
1173
|
+
|
|
1174
|
+
| Package | Version | License | Repository |
|
|
1175
|
+
| ----------------------- | -------------------- | ------- | ----------------------------------- |
|
|
1176
|
+
| @tanstack/react-virtual | 3.14.10 | MIT | https://github.com/TanStack/virtual |
|
|
1177
|
+
| react _(peer)_ | ^18.0.0 \|\| ^19.0.0 | MIT | https://github.com/facebook/react |
|
|
1178
|
+
| react-dom _(peer)_ | ^18.0.0 \|\| ^19.0.0 | MIT | https://github.com/facebook/react |
|
|
1179
|
+
|
|
1180
|
+
Copyright and complete license texts for these dependencies are included in
|
|
1181
|
+
their respective npm distributions and source repositories.
|
|
1182
|
+
|
|
1183
|
+
==============================================================================
|
|
1184
|
+
Components: @bendyline/squisq-grid-react@2.11.2
|
|
1185
|
+
Source files: node_modules/@bendyline/squisq-grid-react/THIRD_PARTY_LICENSES.txt
|
|
1186
|
+
==============================================================================
|
|
1187
|
+
THIRD-PARTY LICENSES FOR @bendyline/squisq-grid-react
|
|
1188
|
+
|
|
1189
|
+
Generated from the actual esbuild input graph. Package-local license, copying,
|
|
1190
|
+
and notice files are reproduced verbatim. When an npm tarball omits its
|
|
1191
|
+
repository license, the pinned upstream copy is vendored and identified below.
|
|
1192
|
+
|
|
1193
|
+
COMPONENTS
|
|
1194
|
+
|
|
1195
|
+
==============================================================================
|
|
1196
|
+
Components: @bendyline/squisq-react@2.11.1
|
|
1124
1197
|
Source files: node_modules/@bendyline/squisq-react/NOTICE.md
|
|
1125
1198
|
==============================================================================
|
|
1126
1199
|
# Third-Party Notices for @bendyline/squisq-react
|
|
@@ -1145,7 +1218,7 @@ third-party license texts for the complete standalone bundle graph are shipped
|
|
|
1145
1218
|
in THIRD_PARTY_LICENSES.txt.
|
|
1146
1219
|
|
|
1147
1220
|
==============================================================================
|
|
1148
|
-
Components: @bendyline/squisq-react@2.
|
|
1221
|
+
Components: @bendyline/squisq-react@2.11.1
|
|
1149
1222
|
Source files: node_modules/@bendyline/squisq-react/THIRD_PARTY_LICENSES.txt
|
|
1150
1223
|
==============================================================================
|
|
1151
1224
|
THIRD-PARTY LICENSES FOR @bendyline/squisq-react
|
|
@@ -1210,7 +1283,7 @@ COMPONENTS
|
|
|
1210
1283
|
- decode-named-character-reference@1.3.0 (MIT); files: license
|
|
1211
1284
|
- delaunator@5.1.0 (ISC); files: LICENSE
|
|
1212
1285
|
- devlop@1.1.0 (MIT); files: license
|
|
1213
|
-
- dompurify@3.4.
|
|
1286
|
+
- dompurify@3.4.14 ((MPL-2.0 OR Apache-2.0)); files: LICENSE, LICENSE-MPL
|
|
1214
1287
|
- entities@6.0.1 (BSD-2-Clause); files: LICENSE
|
|
1215
1288
|
- es-toolkit@1.49.0 (MIT); files: LICENSE
|
|
1216
1289
|
- escape-string-regexp@5.0.0 (MIT); files: license
|
|
@@ -2550,7 +2623,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
2550
2623
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2551
2624
|
|
|
2552
2625
|
==============================================================================
|
|
2553
|
-
dompurify@3.4.
|
|
2626
|
+
dompurify@3.4.14 - LICENSE
|
|
2554
2627
|
==============================================================================
|
|
2555
2628
|
|
|
2556
2629
|
Apache License
|
|
@@ -2756,7 +2829,7 @@ dompurify@3.4.12 - LICENSE
|
|
|
2756
2829
|
limitations under the License.
|
|
2757
2830
|
|
|
2758
2831
|
==============================================================================
|
|
2759
|
-
dompurify@3.4.
|
|
2832
|
+
dompurify@3.4.14 - LICENSE-MPL
|
|
2760
2833
|
==============================================================================
|
|
2761
2834
|
Mozilla Public License Version 2.0
|
|
2762
2835
|
==================================
|
|
@@ -5618,7 +5691,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
5618
5691
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5619
5692
|
|
|
5620
5693
|
==============================================================================
|
|
5621
|
-
Components: @bendyline/squisq-video-react@2.4.
|
|
5694
|
+
Components: @bendyline/squisq-video-react@2.4.5, @ffmpeg/core@0.12.9
|
|
5622
5695
|
Source files: node_modules/@bendyline/squisq-video-react/COPYING.GPL-2.0.txt
|
|
5623
5696
|
==============================================================================
|
|
5624
5697
|
GNU GENERAL PUBLIC LICENSE
|
|
@@ -5961,7 +6034,7 @@ library. If this is what you want to do, use the GNU Lesser General
|
|
|
5961
6034
|
Public License instead of this License.
|
|
5962
6035
|
|
|
5963
6036
|
==============================================================================
|
|
5964
|
-
Components: @bendyline/squisq-video-react@2.4.
|
|
6037
|
+
Components: @bendyline/squisq-video-react@2.4.5, @ffmpeg/core@0.12.9
|
|
5965
6038
|
Source files: node_modules/@bendyline/squisq-video-react/NOTICE.md
|
|
5966
6039
|
==============================================================================
|
|
5967
6040
|
# Third-Party Notices for @bendyline/squisq-video-react
|
|
@@ -6006,7 +6079,7 @@ global WebCodecs declaration dependencies are not installed for consumers. Its
|
|
|
6006
6079
|
exact license text is shipped in THIRD_PARTY_LICENSES.txt.
|
|
6007
6080
|
|
|
6008
6081
|
==============================================================================
|
|
6009
|
-
Components: @bendyline/squisq-video-react@2.4.
|
|
6082
|
+
Components: @bendyline/squisq-video-react@2.4.5, @ffmpeg/core@0.12.9, @ffmpeg/ffmpeg@0.12.15, @ffmpeg/types@0.12.4, @ffmpeg/util@0.12.2
|
|
6010
6083
|
Source files: node_modules/@bendyline/squisq-video-react/THIRD_PARTY_LICENSES.txt
|
|
6011
6084
|
==============================================================================
|
|
6012
6085
|
THIRD-PARTY LICENSES FOR @bendyline/squisq-video-react
|
|
@@ -6070,7 +6143,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
6070
6143
|
SOFTWARE.
|
|
6071
6144
|
|
|
6072
6145
|
==============================================================================
|
|
6073
|
-
Components: @bendyline/squisq-video@2.3.
|
|
6146
|
+
Components: @bendyline/squisq-video@2.3.4
|
|
6074
6147
|
Source files: node_modules/@bendyline/squisq-video/NOTICE.md
|
|
6075
6148
|
==============================================================================
|
|
6076
6149
|
# Third-Party Notices for @bendyline/squisq-video
|
|
@@ -6095,7 +6168,7 @@ Copyright and complete license texts for the listed dependencies are included
|
|
|
6095
6168
|
in their respective npm distributions and source repositories.
|
|
6096
6169
|
|
|
6097
6170
|
==============================================================================
|
|
6098
|
-
Components: @bendyline/squisq-video@2.3.
|
|
6171
|
+
Components: @bendyline/squisq-video@2.3.4
|
|
6099
6172
|
Source files: node_modules/@bendyline/squisq-video/THIRD_PARTY_LICENSES.txt
|
|
6100
6173
|
==============================================================================
|
|
6101
6174
|
THIRD-PARTY LICENSES FOR @bendyline/squisq-video
|
|
@@ -6107,7 +6180,7 @@ repository license, the pinned upstream copy is vendored and identified below.
|
|
|
6107
6180
|
COMPONENTS
|
|
6108
6181
|
|
|
6109
6182
|
==============================================================================
|
|
6110
|
-
Components: @bendyline/squisq@2.
|
|
6183
|
+
Components: @bendyline/squisq@2.11.1
|
|
6111
6184
|
Source files: node_modules/@bendyline/squisq/NOTICE.md
|
|
6112
6185
|
==============================================================================
|
|
6113
6186
|
# Third-Party Notices for @bendyline/squisq
|
|
@@ -6138,7 +6211,7 @@ third-party license texts for bundled code and data are shipped in
|
|
|
6138
6211
|
THIRD_PARTY_LICENSES.txt.
|
|
6139
6212
|
|
|
6140
6213
|
==============================================================================
|
|
6141
|
-
Components: @bendyline/squisq@2.
|
|
6214
|
+
Components: @bendyline/squisq@2.11.1
|
|
6142
6215
|
Source files: node_modules/@bendyline/squisq/THIRD_PARTY_LICENSES.txt
|
|
6143
6216
|
==============================================================================
|
|
6144
6217
|
THIRD-PARTY LICENSES FOR @bendyline/squisq
|
|
@@ -6929,6 +7002,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
6929
7002
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6930
7003
|
SOFTWARE.
|
|
6931
7004
|
|
|
7005
|
+
==============================================================================
|
|
7006
|
+
Components: @tanstack/react-virtual@3.14.10, @tanstack/virtual-core@3.17.8
|
|
7007
|
+
Source files: node_modules/@tanstack/react-virtual/LICENSE, node_modules/@tanstack/virtual-core/LICENSE
|
|
7008
|
+
==============================================================================
|
|
7009
|
+
MIT License
|
|
7010
|
+
|
|
7011
|
+
Copyright (c) 2021-present Tanner Linsley
|
|
7012
|
+
|
|
7013
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7014
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7015
|
+
in the Software without restriction, including without limitation the rights
|
|
7016
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7017
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7018
|
+
furnished to do so, subject to the following conditions:
|
|
7019
|
+
|
|
7020
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7021
|
+
copies or substantial portions of the Software.
|
|
7022
|
+
|
|
7023
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7024
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7025
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7026
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7027
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7028
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7029
|
+
SOFTWARE.
|
|
7030
|
+
|
|
6932
7031
|
==============================================================================
|
|
6933
7032
|
Components: @types/d3-array@3.2.2, @types/d3-axis@3.0.6, @types/d3-brush@3.0.6, @types/d3-chord@3.0.6, @types/d3-color@3.1.3, @types/d3-contour@3.0.6, @types/d3-delaunay@6.0.4, @types/d3-dispatch@3.0.7, @types/d3-drag@3.0.7, @types/d3-dsv@3.0.7, @types/d3-ease@3.0.2, @types/d3-fetch@3.0.7, @types/d3-force@3.0.10, @types/d3-format@3.0.4, @types/d3-geo@3.1.1, @types/d3-hierarchy@3.1.7, @types/d3-interpolate@3.0.4, @types/d3-path@3.1.1, @types/d3-polygon@3.0.2, @types/d3-quadtree@3.0.6, @types/d3-random@3.0.4, @types/d3-scale-chromatic@3.1.0, @types/d3-scale@4.0.9, @types/d3-selection@3.0.11, @types/d3-shape@3.1.8, @types/d3-time-format@4.0.3, @types/d3-time@3.0.4, @types/d3-timer@3.0.2, @types/d3-transition@3.0.9, @types/d3-zoom@3.0.8, @types/d3@7.4.3, @types/debug@4.1.12, @types/geojson@7946.0.16, @types/hast@3.0.4, @types/katex@0.16.8, @types/linkify-it@5.0.0, @types/markdown-it@14.1.2, @types/mdast@4.0.4, @types/mdurl@2.0.0, @types/ms@2.1.0, @types/trusted-types@2.0.7, @types/unist@2.0.11, @types/unist@3.0.3, @types/use-sync-external-store@0.0.6
|
|
6934
7033
|
Source files: node_modules/@types/d3-array/LICENSE, node_modules/@types/d3-axis/LICENSE, node_modules/@types/d3-brush/LICENSE, node_modules/@types/d3-chord/LICENSE, node_modules/@types/d3-color/LICENSE, node_modules/@types/d3-contour/LICENSE, node_modules/@types/d3-delaunay/LICENSE, node_modules/@types/d3-dispatch/LICENSE, node_modules/@types/d3-drag/LICENSE, node_modules/@types/d3-dsv/LICENSE, node_modules/@types/d3-ease/LICENSE, node_modules/@types/d3-fetch/LICENSE, node_modules/@types/d3-force/LICENSE, node_modules/@types/d3-format/LICENSE, node_modules/@types/d3-geo/LICENSE, node_modules/@types/d3-hierarchy/LICENSE, node_modules/@types/d3-interpolate/LICENSE, node_modules/@types/d3-path/LICENSE, node_modules/@types/d3-polygon/LICENSE, node_modules/@types/d3-quadtree/LICENSE, node_modules/@types/d3-random/LICENSE, node_modules/@types/d3-scale-chromatic/LICENSE, node_modules/@types/d3-scale/LICENSE, node_modules/@types/d3-selection/LICENSE, node_modules/@types/d3-shape/LICENSE, node_modules/@types/d3-time-format/LICENSE, node_modules/@types/d3-time/LICENSE, node_modules/@types/d3-timer/LICENSE, node_modules/@types/d3-transition/LICENSE, node_modules/@types/d3-zoom/LICENSE, node_modules/@types/d3/LICENSE, node_modules/@types/debug/LICENSE, node_modules/@types/geojson/LICENSE, node_modules/@types/hast/LICENSE, node_modules/@types/katex/LICENSE, node_modules/@types/linkify-it/LICENSE, node_modules/@types/markdown-it/LICENSE, node_modules/@types/mdast/LICENSE, node_modules/@types/mdurl/LICENSE, node_modules/@types/ms/LICENSE, node_modules/@types/trusted-types/LICENSE, node_modules/@types/unist/LICENSE, node_modules/@types/use-sync-external-store/LICENSE, node_modules/parse-entities/node_modules/@types/unist/LICENSE
|
|
@@ -7324,13 +7423,13 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
7324
7423
|
Components: color-name@1.1.4
|
|
7325
7424
|
Source files: node_modules/color-name/LICENSE
|
|
7326
7425
|
==============================================================================
|
|
7327
|
-
The MIT License (MIT)
|
|
7328
|
-
Copyright (c) 2015 Dmitry Ivanov
|
|
7329
|
-
|
|
7330
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
7331
|
-
|
|
7332
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
7333
|
-
|
|
7426
|
+
The MIT License (MIT)
|
|
7427
|
+
Copyright (c) 2015 Dmitry Ivanov
|
|
7428
|
+
|
|
7429
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
7430
|
+
|
|
7431
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
7432
|
+
|
|
7334
7433
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
7335
7434
|
|
|
7336
7435
|
==============================================================================
|
|
@@ -12101,17 +12200,17 @@ SOFTWARE.
|
|
|
12101
12200
|
Components: tslib@1.14.1
|
|
12102
12201
|
Source files: node_modules/tslib/LICENSE.txt
|
|
12103
12202
|
==============================================================================
|
|
12104
|
-
Copyright (c) Microsoft Corporation.
|
|
12105
|
-
|
|
12106
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
12107
|
-
purpose with or without fee is hereby granted.
|
|
12108
|
-
|
|
12109
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
12110
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
12111
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12112
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12113
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
12114
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
12203
|
+
Copyright (c) Microsoft Corporation.
|
|
12204
|
+
|
|
12205
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
12206
|
+
purpose with or without fee is hereby granted.
|
|
12207
|
+
|
|
12208
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
12209
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
12210
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12211
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12212
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
12213
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
12115
12214
|
PERFORMANCE OF THIS SOFTWARE.
|
|
12116
12215
|
|
|
12117
12216
|
==============================================================================
|
|
@@ -5,21 +5,21 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
useMenuKeyboard
|
|
7
7
|
} from "./chunk-MRUK56JS.js";
|
|
8
|
-
import {
|
|
9
|
-
loadTransformStyleSummaries
|
|
10
|
-
} from "./chunk-YBEYTVU2.js";
|
|
11
|
-
import {
|
|
12
|
-
Dialog
|
|
13
|
-
} from "./chunk-LG6HAWCK.js";
|
|
14
8
|
import {
|
|
15
9
|
buildExportFilename
|
|
16
10
|
} from "./chunk-M5Y5WO7Z.js";
|
|
11
|
+
import {
|
|
12
|
+
loadTransformStyleSummaries
|
|
13
|
+
} from "./chunk-YBEYTVU2.js";
|
|
17
14
|
import {
|
|
18
15
|
DEFAULT_OPTIONS,
|
|
19
16
|
FORMAT_EXTENSIONS,
|
|
20
17
|
loadLastExportOptions,
|
|
21
18
|
saveExportOptions
|
|
22
19
|
} from "./chunk-EBWYGTN7.js";
|
|
20
|
+
import {
|
|
21
|
+
Dialog
|
|
22
|
+
} from "./chunk-LG6HAWCK.js";
|
|
23
23
|
|
|
24
24
|
// src/Export/ExportToolbarControls.tsx
|
|
25
25
|
import {
|
|
@@ -36,7 +36,7 @@ import { getThemeSummaries } from "@bendyline/squisq/schemas";
|
|
|
36
36
|
import { parseMarkdown } from "@bendyline/squisq/markdown";
|
|
37
37
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
38
38
|
var ExportDialog = lazy(
|
|
39
|
-
() => import("./ExportDialog-
|
|
39
|
+
() => import("./ExportDialog-Q4VWI43H.js").then((module) => ({ default: module.ExportDialog }))
|
|
40
40
|
);
|
|
41
41
|
var ShareDialog = lazy(
|
|
42
42
|
() => import("./ShareDialog-4OX3UPJ4.js").then((module) => ({ default: module.ShareDialog }))
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import {
|
|
2
|
+
useGitContext
|
|
3
|
+
} from "./chunk-6E635KCJ.js";
|
|
4
|
+
|
|
5
|
+
// src/Git/GitGrantNotice.tsx
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
function GitGrantNotice() {
|
|
8
|
+
const git = useGitContext();
|
|
9
|
+
if (!git || git.repo || !git.pendingGrant) return null;
|
|
10
|
+
const { repositoryRoot } = git.pendingGrant;
|
|
11
|
+
const detail = repositoryRoot ? `This folder is part of the repository ${repositoryRoot}.` : "This folder is part of a larger repository.";
|
|
12
|
+
return /* @__PURE__ */ jsxs("div", { className: "db-git-grant-notice", children: [
|
|
13
|
+
/* @__PURE__ */ jsx("span", { className: "db-git-grant-notice-text", children: "Git is off for this folder" }),
|
|
14
|
+
/* @__PURE__ */ jsx(
|
|
15
|
+
"button",
|
|
16
|
+
{
|
|
17
|
+
type: "button",
|
|
18
|
+
className: "db-git-grant-notice-action",
|
|
19
|
+
onClick: () => git.openDialog({ kind: "expanded-grant" }),
|
|
20
|
+
"aria-label": `Enable Git for this folder. ${detail}`,
|
|
21
|
+
title: detail,
|
|
22
|
+
children: "Enable"
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
] });
|
|
26
|
+
}
|
|
27
|
+
export {
|
|
28
|
+
GitGrantNotice
|
|
29
|
+
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import "./chunk-APC4KI4B.js";
|
|
2
2
|
import {
|
|
3
|
-
isFileDirty
|
|
4
|
-
|
|
5
|
-
} from "./chunk-HFYPTTCH.js";
|
|
3
|
+
isFileDirty
|
|
4
|
+
} from "./chunk-V2ENBGUA.js";
|
|
6
5
|
import {
|
|
7
6
|
useMenuKeyboard
|
|
8
7
|
} from "./chunk-MRUK56JS.js";
|
|
8
|
+
import {
|
|
9
|
+
useGitContext
|
|
10
|
+
} from "./chunk-6E635KCJ.js";
|
|
9
11
|
|
|
10
12
|
// src/Git/GitToolbarControl.tsx
|
|
11
13
|
import { useEffect, useRef, useState } from "react";
|