New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

framework7-react

Package Overview
Dependencies
Maintainers
2
Versions
313
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

framework7-react - npm Package Compare versions

Comparing version 8.0.0-beta.6 to 8.0.0-beta.7

3

components/photo-browser.d.ts

@@ -12,2 +12,3 @@

photos ?: Array<any>;
thumbs ?: Array<any>;
exposition ?: boolean;

@@ -23,2 +24,3 @@ expositionHideCaptions ?: boolean;

pageBackLinkText ?: string;
popupCloseLinkIcon ?: boolean;
popupCloseLinkText ?: string;

@@ -41,2 +43,3 @@ navbarOfText ?: string;

renderStandalone ?: Function;
renderThumb?: Function;
onPhotoBrowserOpen ?: (...args: any[]) => void;

@@ -43,0 +46,0 @@ onPhotoBrowserClose ?: (...args: any[]) => void;

@@ -15,2 +15,3 @@ import { forwardRef, useRef, useImperativeHandle } from 'react';

photos,
thumbs,
exposition = true,

@@ -26,2 +27,3 @@ expositionHideCaptions = false,

pageBackLinkText,
popupCloseLinkIcon,
popupCloseLinkText,

@@ -43,3 +45,4 @@ navbarOfText,

renderPopup,
renderStandalone
renderStandalone,
renderThumb
} = props;

@@ -77,2 +80,10 @@ const open = index => {

});
watchProp(thumbs, newValue => {
const pb = f7PhotoBrowser.current;
if (!pb) return;
pb.params.thumbs = newValue;
if (pb.opened && pb.thumbsSwiper) {
pb.thumbsSwiper.update();
}
});
const onMount = () => {

@@ -87,2 +98,3 @@ if (!init) return;

photos,
thumbs,
exposition,

@@ -99,2 +111,3 @@ expositionHideCaptions,

popupCloseLinkText,
popupCloseLinkIcon,
navbarOfText,

@@ -115,3 +128,4 @@ navbarShowCount,

renderPopup,
renderStandalone
renderStandalone,
renderThumb
};

@@ -118,0 +132,0 @@ }

4

framework7-react.js
/**
* Framework7 React 8.0.0-beta.6
* Framework7 React 8.0.0-beta.7
* Build full featured iOS & Android apps using Framework7 & React

@@ -10,3 +10,3 @@ * https://framework7.io/react/

*
* Released on: March 24, 2023
* Released on: March 27, 2023
*/

@@ -13,0 +13,0 @@ import Framework7React from './shared/plugin.js';

{
"name": "framework7-react",
"version": "8.0.0-beta.6",
"version": "8.0.0-beta.7",
"description": "Build full featured iOS & Android apps using Framework7 & React",

@@ -50,3 +50,3 @@ "type": "module",

},
"releaseDate": "March 24, 2023"
"releaseDate": "March 27, 2023"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc