@foxford/den 3.2.2 → 3.2.3
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/{chunk-MCN4GFEQ.js → chunk-E56BKBQZ.js} +2 -1
- package/{chunk-Z5BL4DJA.cjs → chunk-H5DKRHHQ.cjs} +2 -1
- package/{define-slot-DYNCLDJY.d.cts → define-slot-DouHW8RK.d.cts} +14 -1
- package/{define-slot-Cngzae6i.d.ts → define-slot-TkqbLySB.d.ts} +14 -1
- package/define.cjs +2 -2
- package/define.d.cts +1 -1
- package/define.d.ts +1 -1
- package/define.js +1 -1
- package/{descriptor-D8ocBnTb.d.ts → descriptor-tWPa9j-x.d.ts} +1 -1
- package/{descriptor-BfsBDME1.d.cts → descriptor-w8oxeIAe.d.cts} +1 -1
- package/index.cjs +2 -2
- package/index.d.cts +3 -3
- package/index.d.ts +3 -3
- package/index.js +1 -1
- package/island/index.d.cts +3 -3
- package/island/index.d.ts +3 -3
- package/package.json +17 -10
- package/serve/index.d.cts +2 -2
- package/serve/index.d.ts +2 -2
- package/{view-adapter-Bzcjotsn.d.ts → view-adapter-BV62bdhM.d.ts} +1 -1
- package/{view-adapter-Cia9blgH.d.cts → view-adapter-DF1me25J.d.cts} +1 -1
|
@@ -177,9 +177,10 @@ function defineRepository(token, options) {
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
// src/define-slot.ts
|
|
180
|
-
function defineSlot({ view, units = [], viewLayer } = {}) {
|
|
180
|
+
function defineSlot({ note, view, units = [], viewLayer } = {}) {
|
|
181
181
|
return {
|
|
182
182
|
__type: "slot",
|
|
183
|
+
note,
|
|
183
184
|
register(container, name) {
|
|
184
185
|
const slotLog = unitLogger(container, `slot:${name}`);
|
|
185
186
|
for (const unit of units) {
|
|
@@ -177,9 +177,10 @@ function defineRepository(token, options) {
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
// src/define-slot.ts
|
|
180
|
-
function defineSlot({ view, units = [], viewLayer } = {}) {
|
|
180
|
+
function defineSlot({ note, view, units = [], viewLayer } = {}) {
|
|
181
181
|
return {
|
|
182
182
|
__type: "slot",
|
|
183
|
+
note,
|
|
183
184
|
register(container, name) {
|
|
184
185
|
const slotLog = _chunkA6ZPAM6Zcjs.unitLogger.call(void 0, container, `slot:${name}`);
|
|
185
186
|
for (const unit of units) {
|
|
@@ -19,6 +19,8 @@ interface SlotDefinition {
|
|
|
19
19
|
readonly units: readonly Definition<unknown>[];
|
|
20
20
|
/** View-слой слота, если он переопределён (см. {@link DefineSlotOptions.viewLayer}). */
|
|
21
21
|
readonly viewLayer?: LayerDefinition;
|
|
22
|
+
/** Где место находится — как объявил хозяин (см. {@link DefineSlotOptions.note}). */
|
|
23
|
+
readonly note?: string;
|
|
22
24
|
/**
|
|
23
25
|
* Регистрирует единицы слота и кладёт сам слот в `SlotRegistry` контейнера.
|
|
24
26
|
* @param container - Контейнер (острова/страницы/запроса)
|
|
@@ -43,6 +45,17 @@ interface DefineSlotOptions {
|
|
|
43
45
|
* фреймворке, чем принимающий остров.
|
|
44
46
|
*/
|
|
45
47
|
viewLayer?: LayerDefinition;
|
|
48
|
+
/**
|
|
49
|
+
* Где это место находится — словами, для инструментов.
|
|
50
|
+
*
|
|
51
|
+
* Из ключа карты `slots` видно ИМЯ места, но не то, куда оно вставлено: `belowMenu` может
|
|
52
|
+
* оказаться и под меню, и внутри него, и за границей экрана. Занимающему место соседу это
|
|
53
|
+
* знание нужно раньше, чем он туда встанет, а взять его неоткуда — view слота непрозрачен
|
|
54
|
+
* для ядра, а разметка принадлежит хозяину.
|
|
55
|
+
*
|
|
56
|
+
* Заполняется вручную и на поведение не влияет: ядро эту строку только передаёт.
|
|
57
|
+
*/
|
|
58
|
+
note?: string;
|
|
46
59
|
}
|
|
47
60
|
/**
|
|
48
61
|
* Объявляет слот — самостоятельную `define*`-единицу расширения.
|
|
@@ -69,6 +82,6 @@ interface DefineSlotOptions {
|
|
|
69
82
|
* // любой пакет — экспортит слот-юнит, не зная, куда он смонтируется и как будет назван
|
|
70
83
|
* export const chatSlot = defineSlot({ view: ChatView, units: [chatRepository] })
|
|
71
84
|
*/
|
|
72
|
-
declare function defineSlot({ view, units, viewLayer }?: DefineSlotOptions): SlotDefinition;
|
|
85
|
+
declare function defineSlot({ note, view, units, viewLayer }?: DefineSlotOptions): SlotDefinition;
|
|
73
86
|
|
|
74
87
|
export { type DefineSlotOptions as D, type SlotDefinition as S, defineSlot as d };
|
|
@@ -19,6 +19,8 @@ interface SlotDefinition {
|
|
|
19
19
|
readonly units: readonly Definition<unknown>[];
|
|
20
20
|
/** View-слой слота, если он переопределён (см. {@link DefineSlotOptions.viewLayer}). */
|
|
21
21
|
readonly viewLayer?: LayerDefinition;
|
|
22
|
+
/** Где место находится — как объявил хозяин (см. {@link DefineSlotOptions.note}). */
|
|
23
|
+
readonly note?: string;
|
|
22
24
|
/**
|
|
23
25
|
* Регистрирует единицы слота и кладёт сам слот в `SlotRegistry` контейнера.
|
|
24
26
|
* @param container - Контейнер (острова/страницы/запроса)
|
|
@@ -43,6 +45,17 @@ interface DefineSlotOptions {
|
|
|
43
45
|
* фреймворке, чем принимающий остров.
|
|
44
46
|
*/
|
|
45
47
|
viewLayer?: LayerDefinition;
|
|
48
|
+
/**
|
|
49
|
+
* Где это место находится — словами, для инструментов.
|
|
50
|
+
*
|
|
51
|
+
* Из ключа карты `slots` видно ИМЯ места, но не то, куда оно вставлено: `belowMenu` может
|
|
52
|
+
* оказаться и под меню, и внутри него, и за границей экрана. Занимающему место соседу это
|
|
53
|
+
* знание нужно раньше, чем он туда встанет, а взять его неоткуда — view слота непрозрачен
|
|
54
|
+
* для ядра, а разметка принадлежит хозяину.
|
|
55
|
+
*
|
|
56
|
+
* Заполняется вручную и на поведение не влияет: ядро эту строку только передаёт.
|
|
57
|
+
*/
|
|
58
|
+
note?: string;
|
|
46
59
|
}
|
|
47
60
|
/**
|
|
48
61
|
* Объявляет слот — самостоятельную `define*`-единицу расширения.
|
|
@@ -69,6 +82,6 @@ interface DefineSlotOptions {
|
|
|
69
82
|
* // любой пакет — экспортит слот-юнит, не зная, куда он смонтируется и как будет назван
|
|
70
83
|
* export const chatSlot = defineSlot({ view: ChatView, units: [chatRepository] })
|
|
71
84
|
*/
|
|
72
|
-
declare function defineSlot({ view, units, viewLayer }?: DefineSlotOptions): SlotDefinition;
|
|
85
|
+
declare function defineSlot({ note, view, units, viewLayer }?: DefineSlotOptions): SlotDefinition;
|
|
73
86
|
|
|
74
87
|
export { type DefineSlotOptions as D, type SlotDefinition as S, defineSlot as d };
|
package/define.cjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkH5DKRHHQcjs = require('./chunk-H5DKRHHQ.cjs');
|
|
8
8
|
require('./chunk-C7BM4DGX.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -25,4 +25,4 @@ require('./chunk-T5QVCXVB.cjs');
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
exports.LoggerToken = _chunkA6ZPAM6Zcjs.LoggerToken; exports.SlotRegistry =
|
|
28
|
+
exports.LoggerToken = _chunkA6ZPAM6Zcjs.LoggerToken; exports.SlotRegistry = _chunkH5DKRHHQcjs.SlotRegistry; exports.SlotRegistryToken = _chunk6QV4L6R2cjs.SlotRegistryToken; exports.defineRepository = _chunkH5DKRHHQcjs.defineRepository; exports.defineService = _chunkH5DKRHHQcjs.defineService; exports.defineSlot = _chunkH5DKRHHQcjs.defineSlot; exports.defineViewModel = _chunkH5DKRHHQcjs.defineViewModel; exports.logger = _chunkA6ZPAM6Zcjs.logger; exports.scopeLogger = _chunkA6ZPAM6Zcjs.scopeLogger;
|
package/define.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { d as defineRepository, a as defineService, b as defineViewModel } from './define-repository-CwAXed2X.cjs';
|
|
2
|
-
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-
|
|
2
|
+
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-DouHW8RK.cjs';
|
|
3
3
|
export { D as DefineRepositoryOptions, a as DefineServiceOptions, b as DefineViewModelOptions, c as Definition, d as RepositoryDefinition, S as ServiceDefinition, e as SlotEntry, f as SlotRegistry, g as SlotRegistryToken, V as ViewModelDefinition } from './types-Dx5qGiwk.cjs';
|
|
4
4
|
import { Token, Container } from '@foxford/ioc';
|
|
5
5
|
import { HierarchicalLogger } from '@foxford/logger';
|
package/define.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { d as defineRepository, a as defineService, b as defineViewModel } from './define-repository-q_T4hqeP.js';
|
|
2
|
-
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-
|
|
2
|
+
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-TkqbLySB.js';
|
|
3
3
|
export { D as DefineRepositoryOptions, a as DefineServiceOptions, b as DefineViewModelOptions, c as Definition, d as RepositoryDefinition, S as ServiceDefinition, e as SlotEntry, f as SlotRegistry, g as SlotRegistryToken, V as ViewModelDefinition } from './types-Dx5qGiwk.js';
|
|
4
4
|
import { Token, Container } from '@foxford/ioc';
|
|
5
5
|
import { HierarchicalLogger } from '@foxford/logger';
|
package/define.js
CHANGED
package/index.cjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkH5DKRHHQcjs = require('./chunk-H5DKRHHQ.cjs');
|
|
8
8
|
require('./chunk-C7BM4DGX.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -719,4 +719,4 @@ function defineLayer(token, options) {
|
|
|
719
719
|
|
|
720
720
|
|
|
721
721
|
|
|
722
|
-
exports.ActivatableToken = _chunk6QV4L6R2cjs.ActivatableToken; exports.ContainerManagerImpl = ContainerManagerImpl; exports.ContainerManagerToken = _chunk6QV4L6R2cjs.ContainerManagerToken; exports.GuardRunnerImpl = GuardRunnerImpl; exports.GuardRunnerToken = _chunk6QV4L6R2cjs.GuardRunnerToken; exports.NavigationManagerImpl = NavigationManagerImpl; exports.NavigationManagerToken = _chunk6QV4L6R2cjs.NavigationManagerToken; exports.RequestContextToken = _chunk6QV4L6R2cjs.RequestContextToken; exports.SlotRegistry =
|
|
722
|
+
exports.ActivatableToken = _chunk6QV4L6R2cjs.ActivatableToken; exports.ContainerManagerImpl = ContainerManagerImpl; exports.ContainerManagerToken = _chunk6QV4L6R2cjs.ContainerManagerToken; exports.GuardRunnerImpl = GuardRunnerImpl; exports.GuardRunnerToken = _chunk6QV4L6R2cjs.GuardRunnerToken; exports.NavigationManagerImpl = NavigationManagerImpl; exports.NavigationManagerToken = _chunk6QV4L6R2cjs.NavigationManagerToken; exports.RequestContextToken = _chunk6QV4L6R2cjs.RequestContextToken; exports.SlotRegistry = _chunkH5DKRHHQcjs.SlotRegistry; exports.SlotRegistryToken = _chunk6QV4L6R2cjs.SlotRegistryToken; exports.StateCache = StateCache; exports.StateRegistry = StateRegistry; exports.StateRegistryToken = _chunk6QV4L6R2cjs.StateRegistryToken; exports.StateSerializerImpl = StateSerializerImpl; exports.StateSerializerToken = _chunk6QV4L6R2cjs.StateSerializerToken; exports.ViewLayerToken = _chunkXOJ2VWX4cjs.ViewLayerToken; exports.createCore = createCore; exports.defaultGlobalResolver = defaultGlobalResolver; exports.defineActionGuard = defineActionGuard; exports.defineExtension = defineExtension; exports.defineGuard = defineGuard; exports.defineLayer = defineLayer; exports.defineLayout = defineLayout; exports.defineRepository = _chunkH5DKRHHQcjs.defineRepository; exports.defineService = _chunkH5DKRHHQcjs.defineService; exports.defineSlot = _chunkH5DKRHHQcjs.defineSlot; exports.defineViewModel = _chunkH5DKRHHQcjs.defineViewModel;
|
package/index.d.cts
CHANGED
|
@@ -3,9 +3,9 @@ export { B as Activatable, F as ActivatableToken, H as ContainerManagerToken, D
|
|
|
3
3
|
import { Container, Token } from '@foxford/ioc';
|
|
4
4
|
import { DefinitionResolver } from './adapter.cjs';
|
|
5
5
|
export { d as defineRepository, a as defineService, b as defineViewModel } from './define-repository-CwAXed2X.cjs';
|
|
6
|
-
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-
|
|
7
|
-
export { V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken } from './view-adapter-
|
|
8
|
-
import './descriptor-
|
|
6
|
+
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-DouHW8RK.cjs';
|
|
7
|
+
export { V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken } from './view-adapter-DF1me25J.cjs';
|
|
8
|
+
import './descriptor-w8oxeIAe.cjs';
|
|
9
9
|
import './server-render-CocWXQKC.cjs';
|
|
10
10
|
|
|
11
11
|
/**
|
package/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ export { B as Activatable, F as ActivatableToken, H as ContainerManagerToken, D
|
|
|
3
3
|
import { Container, Token } from '@foxford/ioc';
|
|
4
4
|
import { DefinitionResolver } from './adapter.js';
|
|
5
5
|
export { d as defineRepository, a as defineService, b as defineViewModel } from './define-repository-q_T4hqeP.js';
|
|
6
|
-
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-
|
|
7
|
-
export { V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken } from './view-adapter-
|
|
8
|
-
import './descriptor-
|
|
6
|
+
export { D as DefineSlotOptions, S as SlotDefinition, d as defineSlot } from './define-slot-TkqbLySB.js';
|
|
7
|
+
export { V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken } from './view-adapter-BV62bdhM.js';
|
|
8
|
+
import './descriptor-tWPa9j-x.js';
|
|
9
9
|
import './server-render-CocWXQKC.js';
|
|
10
10
|
|
|
11
11
|
/**
|
package/index.js
CHANGED
package/island/index.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { A as AppAssets, I as IslandDescriptor } from '../descriptor-
|
|
1
|
+
import { A as AppAssets, I as IslandDescriptor } from '../descriptor-w8oxeIAe.cjs';
|
|
2
2
|
import { Container } from '@foxford/ioc';
|
|
3
3
|
import { R as RequestContext } from '../types-Dx5qGiwk.cjs';
|
|
4
4
|
export { A as AppRoute, R as RouteDeclaration, a as RouteMatch, m as matchRoute, n as normalizeRoutes, p as pathPattern } from '../routes-B0hDrkiF.cjs';
|
|
5
5
|
export { R as RenderTree, a as ServerRender, S as ServerRenderResult } from '../server-render-CocWXQKC.cjs';
|
|
6
|
-
export { R as RenderIslandOptions, V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken, r as resolveViewAdapter, v as viewAdapterOf } from '../view-adapter-
|
|
7
|
-
import '../define-slot-
|
|
6
|
+
export { R as RenderIslandOptions, V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken, r as resolveViewAdapter, v as viewAdapterOf } from '../view-adapter-DF1me25J.cjs';
|
|
7
|
+
import '../define-slot-DouHW8RK.cjs';
|
|
8
8
|
|
|
9
9
|
/** Вклад приложения в `<head>` документа. */
|
|
10
10
|
interface DocumentHead {
|
package/island/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { A as AppAssets, I as IslandDescriptor } from '../descriptor-
|
|
1
|
+
import { A as AppAssets, I as IslandDescriptor } from '../descriptor-tWPa9j-x.js';
|
|
2
2
|
import { Container } from '@foxford/ioc';
|
|
3
3
|
import { R as RequestContext } from '../types-Dx5qGiwk.js';
|
|
4
4
|
export { A as AppRoute, R as RouteDeclaration, a as RouteMatch, m as matchRoute, n as normalizeRoutes, p as pathPattern } from '../routes-0uXJ0fux.js';
|
|
5
5
|
export { R as RenderTree, a as ServerRender, S as ServerRenderResult } from '../server-render-CocWXQKC.js';
|
|
6
|
-
export { R as RenderIslandOptions, V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken, r as resolveViewAdapter, v as viewAdapterOf } from '../view-adapter-
|
|
7
|
-
import '../define-slot-
|
|
6
|
+
export { R as RenderIslandOptions, V as ViewAdapter, a as ViewLayerDefinition, b as ViewLayerToken, r as resolveViewAdapter, v as viewAdapterOf } from '../view-adapter-BV62bdhM.js';
|
|
7
|
+
import '../define-slot-TkqbLySB.js';
|
|
8
8
|
|
|
9
9
|
/** Вклад приложения в `<head>` документа. */
|
|
10
10
|
interface DocumentHead {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foxford/den",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "Den — декларативный метафреймворк Foxford (core runtime)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"foxford",
|
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
"ioc",
|
|
10
10
|
"lifecycle"
|
|
11
11
|
],
|
|
12
|
+
"homepage": "https://github.com/foxford/frontend-platform",
|
|
13
|
+
"bugs": "https://github.com/foxford/frontend-platform/issues",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/foxford/frontend-platform.git",
|
|
17
|
+
"directory": "packages/den"
|
|
18
|
+
},
|
|
12
19
|
"license": "MIT",
|
|
13
20
|
"author": "Foxford Co",
|
|
14
21
|
"maintainers": [
|
|
@@ -89,8 +96,9 @@
|
|
|
89
96
|
"chunk-A6ZPAM6Z.cjs",
|
|
90
97
|
"chunk-C7BM4DGX.cjs",
|
|
91
98
|
"chunk-E23E2VUC.js",
|
|
99
|
+
"chunk-E56BKBQZ.js",
|
|
100
|
+
"chunk-H5DKRHHQ.cjs",
|
|
92
101
|
"chunk-KQAB6C6Q.cjs",
|
|
93
|
-
"chunk-MCN4GFEQ.js",
|
|
94
102
|
"chunk-RG7ZV5BD.js",
|
|
95
103
|
"chunk-SOH2TL2N.js",
|
|
96
104
|
"chunk-T5QVCXVB.cjs",
|
|
@@ -99,18 +107,17 @@
|
|
|
99
107
|
"chunk-XDM6J4LJ.cjs",
|
|
100
108
|
"chunk-XOJ2VWX4.cjs",
|
|
101
109
|
"chunk-XU5HUIPK.js",
|
|
102
|
-
"chunk-Z5BL4DJA.cjs",
|
|
103
110
|
"define-repository-CwAXed2X.d.cts",
|
|
104
111
|
"define-repository-q_T4hqeP.d.ts",
|
|
105
|
-
"define-slot-
|
|
106
|
-
"define-slot-
|
|
112
|
+
"define-slot-DouHW8RK.d.cts",
|
|
113
|
+
"define-slot-TkqbLySB.d.ts",
|
|
107
114
|
"define.cjs",
|
|
108
115
|
"define.d.cts",
|
|
109
116
|
"define.d.ts",
|
|
110
117
|
"define.js",
|
|
111
118
|
"den.js",
|
|
112
|
-
"descriptor-
|
|
113
|
-
"descriptor-
|
|
119
|
+
"descriptor-tWPa9j-x.d.ts",
|
|
120
|
+
"descriptor-w8oxeIAe.d.cts",
|
|
114
121
|
"index.cjs",
|
|
115
122
|
"index.d.cts",
|
|
116
123
|
"index.d.ts",
|
|
@@ -124,9 +131,9 @@
|
|
|
124
131
|
"server-render-CocWXQKC.d.ts",
|
|
125
132
|
"types-Dx5qGiwk.d.cts",
|
|
126
133
|
"types-Dx5qGiwk.d.ts",
|
|
127
|
-
"view-adapter-
|
|
128
|
-
"view-adapter-
|
|
134
|
+
"view-adapter-BV62bdhM.d.ts",
|
|
135
|
+
"view-adapter-DF1me25J.d.cts"
|
|
129
136
|
],
|
|
130
|
-
"sha": "
|
|
137
|
+
"sha": "8ba3d93",
|
|
131
138
|
"scripts": {}
|
|
132
139
|
}
|
package/serve/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FastifyInstance, FastifyPluginAsync } from 'fastify';
|
|
2
|
-
import { I as IslandDescriptor } from '../descriptor-
|
|
2
|
+
import { I as IslandDescriptor } from '../descriptor-w8oxeIAe.cjs';
|
|
3
3
|
import { A as AppRoute } from '../routes-B0hDrkiF.cjs';
|
|
4
|
-
import '../define-slot-
|
|
4
|
+
import '../define-slot-DouHW8RK.cjs';
|
|
5
5
|
import '../types-Dx5qGiwk.cjs';
|
|
6
6
|
import '@foxford/ioc';
|
|
7
7
|
|
package/serve/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FastifyInstance, FastifyPluginAsync } from 'fastify';
|
|
2
|
-
import { I as IslandDescriptor } from '../descriptor-
|
|
2
|
+
import { I as IslandDescriptor } from '../descriptor-tWPa9j-x.js';
|
|
3
3
|
import { A as AppRoute } from '../routes-0uXJ0fux.js';
|
|
4
|
-
import '../define-slot-
|
|
4
|
+
import '../define-slot-TkqbLySB.js';
|
|
5
5
|
import '../types-Dx5qGiwk.js';
|
|
6
6
|
import '@foxford/ioc';
|
|
7
7
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as IslandDescriptor } from './descriptor-
|
|
1
|
+
import { I as IslandDescriptor } from './descriptor-tWPa9j-x.js';
|
|
2
2
|
import { S as ServerRenderResult } from './server-render-CocWXQKC.js';
|
|
3
3
|
import { L as LayerDefinition, h as LayerConfig } from './types-Dx5qGiwk.js';
|
|
4
4
|
import { Container, Token } from '@foxford/ioc';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as IslandDescriptor } from './descriptor-
|
|
1
|
+
import { I as IslandDescriptor } from './descriptor-w8oxeIAe.cjs';
|
|
2
2
|
import { S as ServerRenderResult } from './server-render-CocWXQKC.cjs';
|
|
3
3
|
import { L as LayerDefinition, h as LayerConfig } from './types-Dx5qGiwk.cjs';
|
|
4
4
|
import { Container, Token } from '@foxford/ioc';
|