react-native-seel-widget 0.1.13 → 0.1.14

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.
@@ -2,5 +2,9 @@
2
2
 
3
3
  export * from "./core/index.js";
4
4
  export * from "./dto/index.js";
5
- export * from "./ui/index.js";
5
+ import CoverageInfoFooter from "./ui/coverage-info-footer.js";
6
+ import SeelWFPInfoView from "./ui/seel-wfp-info-view.js";
7
+ import SeelWFPTitleView from "./ui/seel-wfp-title-view.js";
8
+ import SeelWFPWidget from "./ui/seel-wfp-widget.js";
9
+ export { CoverageInfoFooter, SeelWFPInfoView, SeelWFPTitleView, SeelWFPWidget };
6
10
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA,cAAc,iBAAQ;AACtB,cAAc,gBAAO;AACrB,cAAc,eAAM","ignoreList":[]}
1
+ {"version":3,"names":["CoverageInfoFooter","SeelWFPInfoView","SeelWFPTitleView","SeelWFPWidget"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA,cAAc,iBAAQ;AACtB,cAAc,gBAAO;AAErB,OAAOA,kBAAkB,MAElB,8BAA2B;AAClC,OAAOC,eAAe,MAGf,4BAAyB;AAChC,OAAOC,gBAAgB,MAEhB,6BAA0B;AACjC,OAAOC,aAAa,MAAiC,yBAAsB;AAE3E,SAASH,kBAAkB,EAAEC,eAAe,EAAEC,gBAAgB,EAAEC,aAAa","ignoreList":[]}
@@ -3,5 +3,6 @@
3
3
  export * from "./coverage-info-footer.js";
4
4
  export * from "./seel-wfp-info-view.js";
5
5
  export * from "./seel-wfp-title-view.js";
6
- export * from "./seel-wfp-widget.js";
6
+ import SeelWFPWidget from "./seel-wfp-widget.js";
7
+ export { SeelWFPWidget };
7
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../src","sources":["ui/index.ts"],"mappings":";;AAAA,cAAc,2BAAwB;AACtC,cAAc,yBAAsB;AACpC,cAAc,0BAAuB;AACrC,cAAc,sBAAmB","ignoreList":[]}
1
+ {"version":3,"names":["SeelWFPWidget"],"sourceRoot":"../../../src","sources":["ui/index.ts"],"mappings":";;AAAA,cAAc,2BAAwB;AACtC,cAAc,yBAAsB;AACpC,cAAc,0BAAuB;AACrC,OAAOA,aAAa,MAAiC,sBAAmB;AAExE,SAASA,aAAa","ignoreList":[]}
@@ -1,4 +1,9 @@
1
1
  export * from './core';
2
2
  export * from './dto';
3
- export * from './ui';
3
+ import CoverageInfoFooter, { type CoverageInfoFooterProps } from './ui/coverage-info-footer';
4
+ import SeelWFPInfoView, { type Domain, type SeelWFPInfoViewProps } from './ui/seel-wfp-info-view';
5
+ import SeelWFPTitleView, { type SeelWFPTitleViewProps } from './ui/seel-wfp-title-view';
6
+ import SeelWFPWidget, { type SeelWFPWidgetRef } from './ui/seel-wfp-widget';
7
+ export { CoverageInfoFooter, SeelWFPInfoView, SeelWFPTitleView, SeelWFPWidget };
8
+ export type { CoverageInfoFooterProps, Domain, SeelWFPInfoViewProps, SeelWFPTitleViewProps, SeelWFPWidgetRef, };
4
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,MAAM,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AAEtB,OAAO,kBAAkB,EAAE,EACzB,KAAK,uBAAuB,EAC7B,MAAM,2BAA2B,CAAC;AACnC,OAAO,eAAe,EAAE,EACtB,KAAK,MAAM,EACX,KAAK,oBAAoB,EAC1B,MAAM,yBAAyB,CAAC;AACjC,OAAO,gBAAgB,EAAE,EACvB,KAAK,qBAAqB,EAC3B,MAAM,0BAA0B,CAAC;AAClC,OAAO,aAAa,EAAE,EAAE,KAAK,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAE5E,OAAO,EAAE,kBAAkB,EAAE,eAAe,EAAE,gBAAgB,EAAE,aAAa,EAAE,CAAC;AAChF,YAAY,EACV,uBAAuB,EACvB,MAAM,EACN,oBAAoB,EACpB,qBAAqB,EACrB,gBAAgB,GACjB,CAAC"}
@@ -1,9 +1,8 @@
1
- interface CoverageInfoFooterProps {
1
+ export interface CoverageInfoFooterProps {
2
2
  termsUrl: string;
3
3
  privacyPolicyUrl: string;
4
4
  dictionary: any;
5
5
  onChangeOptedInValue: (value: boolean) => void;
6
6
  }
7
7
  export default function CoverageInfoFooter({ termsUrl, privacyPolicyUrl, dictionary, onChangeOptedInValue, }: CoverageInfoFooterProps): import("react/jsx-runtime").JSX.Element;
8
- export {};
9
8
  //# sourceMappingURL=coverage-info-footer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"coverage-info-footer.d.ts","sourceRoot":"","sources":["../../../../src/ui/coverage-info-footer.tsx"],"names":[],"mappings":"AAYA,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,GAAG,CAAC;IAChB,oBAAoB,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD;AAED,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,QAAa,EACb,gBAAqB,EACrB,UAAe,EACf,oBAAyC,GAC1C,EAAE,uBAAuB,2CAoEzB"}
1
+ {"version":3,"file":"coverage-info-footer.d.ts","sourceRoot":"","sources":["../../../../src/ui/coverage-info-footer.tsx"],"names":[],"mappings":"AAYA,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,GAAG,CAAC;IAChB,oBAAoB,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD;AAED,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,QAAa,EACb,gBAAqB,EACrB,UAAe,EACf,oBAAyC,GAC1C,EAAE,uBAAuB,2CAoEzB"}
@@ -1,5 +1,7 @@
1
1
  export * from './coverage-info-footer';
2
2
  export * from './seel-wfp-info-view';
3
3
  export * from './seel-wfp-title-view';
4
- export * from './seel-wfp-widget';
4
+ import SeelWFPWidget, { type SeelWFPWidgetRef } from './seel-wfp-widget';
5
+ export { SeelWFPWidget };
6
+ export type { SeelWFPWidgetRef };
5
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ui/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ui/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,OAAO,aAAa,EAAE,EAAE,KAAK,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAEzE,OAAO,EAAE,aAAa,EAAE,CAAC;AACzB,YAAY,EAAE,gBAAgB,EAAE,CAAC"}
@@ -1,5 +1,5 @@
1
1
  export type Domain = '' | 'US' | 'EU';
2
- interface SeelWFPInfoViewProps {
2
+ export interface SeelWFPInfoViewProps {
3
3
  domain: Domain;
4
4
  widgetTitle: string;
5
5
  termsUrl: string;
@@ -9,5 +9,4 @@ interface SeelWFPInfoViewProps {
9
9
  onChangeOptedInValue: (value: boolean) => void;
10
10
  }
11
11
  export default function SeelWFPInfoView({ domain, widgetTitle, termsUrl, privacyPolicyUrl, dictionary, onClickClose, onChangeOptedInValue, }: SeelWFPInfoViewProps): import("react/jsx-runtime").JSX.Element;
12
- export {};
13
12
  //# sourceMappingURL=seel-wfp-info-view.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"seel-wfp-info-view.d.ts","sourceRoot":"","sources":["../../../../src/ui/seel-wfp-info-view.tsx"],"names":[],"mappings":"AAeA,MAAM,MAAM,MAAM,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,CAAC;AAEtC,UAAU,oBAAoB;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,GAAG,CAAC;IAChB,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,oBAAoB,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,MAAW,EACX,WAAgB,EAChB,QAAa,EACb,gBAAqB,EACrB,UAAe,EACf,YAAuB,EACvB,oBAAyC,GAC1C,EAAE,oBAAoB,2CAyLtB"}
1
+ {"version":3,"file":"seel-wfp-info-view.d.ts","sourceRoot":"","sources":["../../../../src/ui/seel-wfp-info-view.tsx"],"names":[],"mappings":"AAeA,MAAM,MAAM,MAAM,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,CAAC;AAEtC,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,GAAG,CAAC;IAChB,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,oBAAoB,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,MAAW,EACX,WAAgB,EAChB,QAAa,EACb,gBAAqB,EACrB,UAAe,EACf,YAAuB,EACvB,oBAAyC,GAC1C,EAAE,oBAAoB,2CAyLtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-seel-widget",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "React Native Seel Widget",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
package/src/index.ts CHANGED
@@ -1,3 +1,23 @@
1
1
  export * from './core';
2
2
  export * from './dto';
3
- export * from './ui';
3
+
4
+ import CoverageInfoFooter, {
5
+ type CoverageInfoFooterProps,
6
+ } from './ui/coverage-info-footer';
7
+ import SeelWFPInfoView, {
8
+ type Domain,
9
+ type SeelWFPInfoViewProps,
10
+ } from './ui/seel-wfp-info-view';
11
+ import SeelWFPTitleView, {
12
+ type SeelWFPTitleViewProps,
13
+ } from './ui/seel-wfp-title-view';
14
+ import SeelWFPWidget, { type SeelWFPWidgetRef } from './ui/seel-wfp-widget';
15
+
16
+ export { CoverageInfoFooter, SeelWFPInfoView, SeelWFPTitleView, SeelWFPWidget };
17
+ export type {
18
+ CoverageInfoFooterProps,
19
+ Domain,
20
+ SeelWFPInfoViewProps,
21
+ SeelWFPTitleViewProps,
22
+ SeelWFPWidgetRef,
23
+ };
@@ -10,7 +10,7 @@ import {
10
10
  } from 'react-native';
11
11
  import KeyValue from '../constants/key_value';
12
12
 
13
- interface CoverageInfoFooterProps {
13
+ export interface CoverageInfoFooterProps {
14
14
  termsUrl: string;
15
15
  privacyPolicyUrl: string;
16
16
  dictionary: any;
package/src/ui/index.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  export * from './coverage-info-footer';
2
2
  export * from './seel-wfp-info-view';
3
3
  export * from './seel-wfp-title-view';
4
- export * from './seel-wfp-widget';
4
+ import SeelWFPWidget, { type SeelWFPWidgetRef } from './seel-wfp-widget';
5
+
6
+ export { SeelWFPWidget };
7
+ export type { SeelWFPWidgetRef };
@@ -15,7 +15,7 @@ import KeyValue from '../constants/key_value';
15
15
 
16
16
  export type Domain = '' | 'US' | 'EU';
17
17
 
18
- interface SeelWFPInfoViewProps {
18
+ export interface SeelWFPInfoViewProps {
19
19
  domain: Domain;
20
20
  widgetTitle: string;
21
21
  termsUrl: string;