sass-template-common 0.1.2 → 0.1.4
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 +3 -3
- package/dist/sass-template-common.css +1 -1
- package/dist/sass-template-common.d.ts +3 -0
- package/dist/sass-template-common.js +516 -517
- package/dist/sass-template-common.umd.cjs +34 -34
- package/package.json +58 -58
|
@@ -211,6 +211,7 @@ export declare interface CommentType extends ReplyType {
|
|
|
211
211
|
|
|
212
212
|
export declare class CommonServices {
|
|
213
213
|
protected props?: ICommonServices | undefined;
|
|
214
|
+
configVersion: string;
|
|
214
215
|
constructor(props?: ICommonServices | undefined);
|
|
215
216
|
generateTokenOffline: (browserId: string) => Promise<any>;
|
|
216
217
|
getMainMenu: (params: Params) => Promise<AxiosResponse< {
|
|
@@ -329,6 +330,7 @@ export declare type Config = {
|
|
|
329
330
|
showuppertitle?: boolean;
|
|
330
331
|
showads?: boolean;
|
|
331
332
|
articlepreview?: string;
|
|
333
|
+
configVersion?: string;
|
|
332
334
|
};
|
|
333
335
|
|
|
334
336
|
export declare type ConfigDynamic = {
|
|
@@ -1037,6 +1039,7 @@ export declare class MainComponentServices {
|
|
|
1037
1039
|
exclude: string;
|
|
1038
1040
|
config: any;
|
|
1039
1041
|
imgSizes: any;
|
|
1042
|
+
configVersion: string;
|
|
1040
1043
|
axiosApi: AxiosInstance | undefined;
|
|
1041
1044
|
constructor(config: Config, imgSizes: any, axiosApi: AxiosInstance);
|
|
1042
1045
|
getNewsListZone(params: Params): Promise<AxiosResponse<NewListResponse, any, {}> | undefined>;
|