@dosgato/templating 0.0.92 → 0.0.94
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/links.d.ts +2 -0
- package/dist/provider.d.ts +1 -1
- package/package.json +1 -1
package/dist/links.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface AssetLink {
|
|
|
7
7
|
type: 'asset';
|
|
8
8
|
source: string;
|
|
9
9
|
id: string;
|
|
10
|
+
siteId?: string;
|
|
10
11
|
path?: string;
|
|
11
12
|
checksum?: string;
|
|
12
13
|
}
|
|
@@ -19,6 +20,7 @@ export interface AssetFolderLink {
|
|
|
19
20
|
type: 'assetfolder';
|
|
20
21
|
source: string;
|
|
21
22
|
id: string;
|
|
23
|
+
siteId?: string;
|
|
22
24
|
path: string;
|
|
23
25
|
}
|
|
24
26
|
/**
|
package/dist/provider.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export interface CSSBlock {
|
|
|
31
31
|
* Component.cssBlocks() method. Use the `extraClass` option when generating bars to help you
|
|
32
32
|
* target something specific.
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
targetsEditBars?: boolean;
|
|
35
35
|
/**
|
|
36
36
|
* A version string following SEMVER. If multiple blocks are provided with the same name,
|
|
37
37
|
* the one with the highest version number will be chosen. If blocks of different major
|