@getblock/common 0.1.92 → 0.1.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.
@@ -62,5 +62,6 @@ declare const _default: {
62
62
  'ambassador-program-terms-of-service': string;
63
63
  };
64
64
  'all-rights-reserved': string;
65
+ 'soc2-banner': string;
65
66
  };
66
67
  export default _default;
@@ -62,5 +62,6 @@ declare const _default: {
62
62
  'ambassador-program-terms-of-service': string;
63
63
  };
64
64
  'all-rights-reserved': string;
65
+ 'soc2-banner': string;
65
66
  };
66
67
  export default _default;
@@ -0,0 +1,92 @@
1
+ /// <reference types="vite/client" />
2
+ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ locale: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ badgeImgSrc: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ linkHref: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ }>, {
16
+ props: import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
17
+ locale: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ badgeImgSrc: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ linkHref: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ }>> & Readonly<{}> & {}>;
30
+ text: import("vue").ComputedRef<{
31
+ title: string;
32
+ description: string;
33
+ link: string;
34
+ }>;
35
+ readonly GetBlockUIIcon: import("vue").DefineComponent<{
36
+ iconName: {
37
+ type: StringConstructor;
38
+ required: true;
39
+ };
40
+ colorType: {
41
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps>;
42
+ default: string;
43
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps) => boolean;
44
+ };
45
+ sizeType: {
46
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps>;
47
+ default: string;
48
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps) => boolean;
49
+ };
50
+ }, {
51
+ props: any;
52
+ imgSize: import("vue").ComputedRef<number>;
53
+ classObject: import("vue").ComputedRef<object>;
54
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
55
+ iconName: {
56
+ type: StringConstructor;
57
+ required: true;
58
+ };
59
+ colorType: {
60
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps>;
61
+ default: string;
62
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps) => boolean;
63
+ };
64
+ sizeType: {
65
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps>;
66
+ default: string;
67
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps) => boolean;
68
+ };
69
+ }>>, {
70
+ colorType: import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps;
71
+ sizeType: import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps;
72
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
73
+ readonly styles: CSSModuleClasses;
74
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
75
+ locale: {
76
+ type: StringConstructor;
77
+ default: string;
78
+ };
79
+ badgeImgSrc: {
80
+ type: StringConstructor;
81
+ default: string;
82
+ };
83
+ linkHref: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ }>> & Readonly<{}>, {
88
+ locale: string;
89
+ badgeImgSrc: string;
90
+ linkHref: string;
91
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
92
+ export default _sfc_main;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ description: string;
4
+ link: string;
5
+ };
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ description: string;
4
+ link: string;
5
+ };
6
+ export default _default;
@@ -4,6 +4,7 @@ export { default as GetBlockUIFooter } from './footer/Footer.vue';
4
4
  export { default as GetBlockUINavbar } from './navbar/Navbar.vue';
5
5
  export { default as GetBlockUIAnnouncement } from './announcement/Announcement.vue';
6
6
  export { default as GetBlockUIOptionalAnnouncement } from './optionalAnnouncement/OptionalAnnouncement.vue';
7
+ export { default as GetBlockUIHeaderBanner } from './headerBanner/HeaderBanner.vue';
7
8
  export { default as GetBlockUiContactForm } from '../components/contactForm/ContactForm.vue';
8
9
  export { default as GetBlockUiContactFormNew } from '../components/contactFormNew/ContactFormNew.vue';
9
10
  export { default as GetBlockUIBlackFridayAnnouncement } from '../components/blackFridayAnnouncement/BlackFridayAnnouncement.vue';
@@ -189,10 +189,6 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
189
189
  text: string;
190
190
  };
191
191
  };
192
- banner: {
193
- title: string;
194
- text: string;
195
- };
196
192
  };
197
193
  }>;
198
194
  accountLink: import("vue").ComputedRef<string>;