Justin Emery

Results 21 comments of Justin Emery
trafficstars

@cooperka Thanks that's helpful. Keen to stay aligned on the main package but may use the fork short term 👍

Made a few further tweaks: - In a bottom margin is set, the animation will now fade in/out, rather than slide up/down. - Removed the `marginLeft` and `marginRight` options as...

I integrated my fork into an app with the following edits to `package.json`: ``` "dependencies": { "react-native-snackbar": "https://github.com/Polarisation/react-native-snackbar.git#feature/margins" }, "scripts": { "build-snackbar": "cd ./node_modules/react-native-snackbar && yarn install && rm -rf...

I'm seeing the same or a very similar issue when opening the newly installed Netbeans 10 on MacOS 10.14.3, Netbeans 10. Just a different exit code: ``` com.apple.xpc.launchd[1] (org.netbeans.ide.baseide.10.6528[2722]): Service...

I'm seeing what looks like the same issue. I am creating snapshots on macOS, and running tests on Ubuntu using a GitHub action. The macOS snapshot contains `className="testing c0"` but...

I think it can be done by passing a replace function to JSON.stringify, so it would output something like this: ``` { "IndexedDBExportImport_Type": 'ArrayBuffer', "base64": "" // base64 encoded data...

It should be possible with JSON.parse() using a [reviver function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#Using_the_reviver_parameter) Along with the [replacer function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The_replacer_parameter) for JSON.stringify()

I've no plans to work on this but I'd accept a pull request implementing the feature

As earlier, I'm happy to accept a pull request but won't be working on this myself. For people who need this functionality now, there's a Dexie extension, [dexie-export-import](https://github.com/dfahlander/Dexie.js/tree/master/addons/dexie-export-import), that supports...

Not convinced about adding this as it stands, since the import & export functions operate on the whole DB not a single object store. If those also had an option...