yswk-ui 0.0.2 → 0.0.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.
@@ -33,9 +33,9 @@ interface Props {
33
33
  businessSchema?: BusinessSchema;
34
34
  }
35
35
  declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
36
- pageChange: (...args: any[]) => void;
36
+ comEvent: (...args: any[]) => void;
37
37
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
38
- onPageChange?: ((...args: any[]) => any) | undefined;
38
+ onComEvent?: ((...args: any[]) => any) | undefined;
39
39
  }>, {
40
40
  styleSchema: StyleSchema;
41
41
  businessSchema: BusinessSchema;
@@ -62,9 +62,9 @@ interface Props {
62
62
  };
63
63
  }
64
64
  declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
65
- lockScroll: (...args: any[]) => void;
65
+ comEvent: (...args: any[]) => void;
66
66
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
67
- onLockScroll?: ((...args: any[]) => any) | undefined;
67
+ onComEvent?: ((...args: any[]) => any) | undefined;
68
68
  }>, {
69
69
  styleSchema: StyleSchema;
70
70
  RulePopup: {
@@ -1,8 +1,8 @@
1
1
  import { IProps } from './type';
2
2
  declare const _default: import('vue').DefineComponent<IProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
- pageChange: (...args: any[]) => void;
3
+ comEvent: (...args: any[]) => void;
4
4
  }, string, import('vue').PublicProps, Readonly<IProps> & Readonly<{
5
- onPageChange?: ((...args: any[]) => any) | undefined;
5
+ onComEvent?: ((...args: any[]) => any) | undefined;
6
6
  }>, {
7
7
  styleSchema: import('./type').StyleSchema;
8
8
  businessSchema: import('./type').BusinessSchema;
@@ -1,10 +1,8 @@
1
1
  import { IProps } from './type';
2
2
  declare const _default: import('vue').DefineComponent<IProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
- pageChange: (...args: any[]) => void;
4
- closeWindow: (...args: any[]) => void;
3
+ comEvent: (...args: any[]) => void;
5
4
  }, string, import('vue').PublicProps, Readonly<IProps> & Readonly<{
6
- onPageChange?: ((...args: any[]) => any) | undefined;
7
- onCloseWindow?: ((...args: any[]) => any) | undefined;
5
+ onComEvent?: ((...args: any[]) => any) | undefined;
8
6
  }>, {
9
7
  styleSchema: import('./type').StyleSchema;
10
8
  businessSchema: import('./type').BusinessSchema;
@@ -20,7 +20,9 @@ export interface StyleSchema {
20
20
  marginTop: number;
21
21
  };
22
22
  defaultTextStyle: {
23
- marginTop: number;
23
+ color: string;
24
+ fontSize: number;
25
+ fontWeight: number;
24
26
  };
25
27
  '1': {
26
28
  text: string;
@@ -59,3 +59,10 @@ export declare const LOCATION_INFO_KEY = "wkc-session-key-locationInfo";
59
59
  export declare const USER_INFO_KEY = "wkc-session-key-userInfo";
60
60
  export declare const RETAIL_INFO_KEY = "wkc-session-key-retailerInfo";
61
61
  export declare const ACT_REDIRECT_URL = "/service/activity/act/access/redirect?noAuth=1";
62
+ export declare const COMPONENT_EVENT: {
63
+ pageChange: string;
64
+ lockScroll: string;
65
+ closeWindow: string;
66
+ getLocation: string;
67
+ wxShare: string;
68
+ };