RubyGems
npm
Organizations
Log in
Sign up
npm
jourycms-sdk
Versions diffs
1.1.12 → 1.1.17
jourycms-sdk 1.1.12 → 1.1.17
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (3)
hide
show
package/package.json
+1
-1
package/typings/v1/theme/layout.d.ts
+2
-1
package/typings/v1/theme/page.d.ts
+2
-1
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "jourycms-sdk",
3
-
"version": "1.1.
12
",
3
+
"version": "1.1.
17
",
4
4
"description": "Sdk for Joury CMS",
5
5
"main": "dist/index.js",
6
6
"files": [
package/typings/v1/theme/layout.d.ts
CHANGED
Viewed
@@ -8,7 +8,8 @@ declare module JouryCMS {
8
8
path?: string;
9
9
onClick?: ()=>void | PromiseLike<void>;
10
10
title: string;
11
-
icons
?: Levelup.CMS.V1.UI.IconType
11
+
icon
?: Levelup.CMS.V1.UI.IconType
;
12
+
ac?: ()=>boolean;
12
13
}[]
13
14
children: React.ReactNode;
14
15
}
package/typings/v1/theme/page.d.ts
CHANGED
Viewed
@@ -8,7 +8,8 @@ declare module JouryCMS {
8
8
path?: string;
9
9
onClick?: ()=>void | PromiseLike<void>;
10
10
title: string;
11
-
icons
?: Levelup.CMS.V1.UI.IconType
11
+
icon
?: Levelup.CMS.V1.UI.IconType
;
12
+
ac?: ()=>boolean;
12
13
}[]
13
14
}
14
15
}