@hachej/boring-deck 0.1.63 → 0.1.65
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/dist/front/index.d.ts +3 -4
- package/package.json +11 -11
package/dist/front/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { BoringFrontSurfaceResolverRegistration, BoringFrontFactoryWithId } from '@hachej/boring-workspace/plugin';
|
|
2
2
|
import { D as DeckThemeOptions, a as DeckWidgetDefinition, b as DeckError, C as CreateDeckPluginOptions } from '../types-Dt_A9RNg.js';
|
|
3
|
-
import * as
|
|
3
|
+
import * as react from 'react';
|
|
4
4
|
import { PaneProps } from '@hachej/boring-workspace';
|
|
5
|
-
import 'react';
|
|
6
5
|
|
|
7
6
|
interface DeckPaneParams {
|
|
8
7
|
path?: string;
|
|
@@ -22,7 +21,7 @@ interface DeckPaneProps {
|
|
|
22
21
|
getPresentHref?: (path: string) => string;
|
|
23
22
|
createIfMissing?: string;
|
|
24
23
|
}
|
|
25
|
-
declare function DeckPane(props: DeckPaneProps):
|
|
24
|
+
declare function DeckPane(props: DeckPaneProps): react.JSX.Element;
|
|
26
25
|
|
|
27
26
|
interface StandaloneDeckRouteProps {
|
|
28
27
|
path?: string;
|
|
@@ -32,7 +31,7 @@ interface StandaloneDeckRouteProps {
|
|
|
32
31
|
onError?: (error: DeckError) => void;
|
|
33
32
|
getPresentHref?: (path: string) => string;
|
|
34
33
|
}
|
|
35
|
-
declare function StandaloneDeckRoute({ path, content, theme, widgets, onError, getPresentHref }: StandaloneDeckRouteProps):
|
|
34
|
+
declare function StandaloneDeckRoute({ path, content, theme, widgets, onError, getPresentHref }: StandaloneDeckRouteProps): react.JSX.Element;
|
|
36
35
|
|
|
37
36
|
declare function createDeckSurfaceResolver(pathPrefix: string): BoringFrontSurfaceResolverRegistration;
|
|
38
37
|
declare const deckSurfaceResolver: BoringFrontSurfaceResolverRegistration;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-deck",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.65",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Front-only markdown deck plugin scaffold for Boring workspace.",
|
|
@@ -45,29 +45,29 @@
|
|
|
45
45
|
},
|
|
46
46
|
"sideEffects": false,
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"lucide-react": "^1.
|
|
48
|
+
"lucide-react": "^1.21.0",
|
|
49
49
|
"react-markdown": "^10.1.0",
|
|
50
50
|
"remark-gfm": "^4.0.1",
|
|
51
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
51
|
+
"@hachej/boring-ui-kit": "0.1.65"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^18.0.0 || ^19.0.0",
|
|
55
55
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
56
|
-
"@hachej/boring-workspace": "0.1.
|
|
56
|
+
"@hachej/boring-workspace": "0.1.65"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@testing-library/jest-dom": "^6.9.1",
|
|
60
60
|
"@testing-library/react": "^16.3.2",
|
|
61
|
-
"@types/react": "^19.
|
|
61
|
+
"@types/react": "^19.2.17",
|
|
62
62
|
"@types/react-dom": "^19.0.0",
|
|
63
63
|
"@vitejs/plugin-react": "^4.0.0",
|
|
64
|
-
"jsdom": "^29.
|
|
65
|
-
"react": "^19.
|
|
66
|
-
"react-dom": "^19.
|
|
64
|
+
"jsdom": "^29.1.1",
|
|
65
|
+
"react": "^19.2.7",
|
|
66
|
+
"react-dom": "^19.2.7",
|
|
67
67
|
"tsup": "^8.0.0",
|
|
68
|
-
"typescript": "^
|
|
69
|
-
"vitest": "^
|
|
70
|
-
"@hachej/boring-workspace": "0.1.
|
|
68
|
+
"typescript": "^6.0.3",
|
|
69
|
+
"vitest": "^4.1.9",
|
|
70
|
+
"@hachej/boring-workspace": "0.1.65"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build": "tsup",
|