@devstgo/stgo-salta-components-react 0.1.5 → 0.1.7

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 CHANGED
@@ -71,3 +71,10 @@ export default defineConfig([
71
71
  },
72
72
  ])
73
73
  ```
74
+
75
+
76
+ ## Publicar en npm
77
+
78
+ npm run build
79
+ npm login
80
+ npm publish --access public
package/dist/config.d.ts CHANGED
@@ -6,6 +6,7 @@ export interface Config {
6
6
  cinematicsOnChangeLocation?: boolean;
7
7
  baseUrl?: string;
8
8
  videosBaseUrl?: string;
9
+ iframesEnabled?: boolean;
9
10
  backgroundIframeUrl?: string;
10
11
  showcasesUrl?: string[];
11
12
  showcasesWait?: number;
@@ -17,6 +18,9 @@ export interface Config {
17
18
  dataEs?: unknown;
18
19
  dataEn?: unknown;
19
20
  };
21
+ pagination?: {
22
+ simulation?: number;
23
+ };
20
24
  }
21
25
  export declare const initLibConfig: (cfg: Config) => void;
22
26
  export declare const getConfig: () => Config;