global: update qclone to 1.2.0

This commit is contained in:
Abdullah Atta
2022-10-19 12:10:31 +05:00
parent 0c84bfdbca
commit e25d4a3039
12 changed files with 13 additions and 13 deletions

View File

@@ -12,7 +12,7 @@
"entities": "^3.0.1", "entities": "^3.0.1",
"html-to-text": "8.1.0", "html-to-text": "8.1.0",
"phone": "^3.1.14", "phone": "^3.1.14",
"qclone": "^1.1.0", "qclone": "^1.2.0",
"react-native-actions-sheet": "^0.7.2", "react-native-actions-sheet": "^0.7.2",
"react-native-check-version": "https://github.com/flexible-agency/react-native-check-version", "react-native-check-version": "https://github.com/flexible-agency/react-native-check-version",
"react-native-drax": "^0.10.2", "react-native-drax": "^0.10.2",

View File

@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
import { groupArray } from "@notesnook/core/utils/grouping"; import { groupArray } from "@notesnook/core/utils/grouping";
import { qclone } from "qclone"; import qclone from "qclone";
import React, { useEffect, useRef, useState } from "react"; import React, { useEffect, useRef, useState } from "react";
import { db } from "../../common/database"; import { db } from "../../common/database";
import { FloatingButton } from "../../components/container/floating-button"; import { FloatingButton } from "../../components/container/floating-button";

View File

@@ -37,7 +37,7 @@
"fflate": "^0.7.3", "fflate": "^0.7.3",
"html-to-text": "8.1.0", "html-to-text": "8.1.0",
"phone": "^3.1.14", "phone": "^3.1.14",
"qclone": "^1.1.0", "qclone": "^1.2.0",
"react-native-actions-sheet": "^0.7.2", "react-native-actions-sheet": "^0.7.2",
"react-native-check-version": "https://github.com/flexible-agency/react-native-check-version", "react-native-check-version": "https://github.com/flexible-agency/react-native-check-version",
"react-native-drax": "^0.10.2", "react-native-drax": "^0.10.2",
@@ -24227,7 +24227,7 @@
"fflate": "^0.7.3", "fflate": "^0.7.3",
"html-to-text": "8.1.0", "html-to-text": "8.1.0",
"phone": "^3.1.14", "phone": "^3.1.14",
"qclone": "^1.1.0", "qclone": "^1.2.0",
"react-native-actions-sheet": "^0.7.2", "react-native-actions-sheet": "^0.7.2",
"react-native-check-version": "https://github.com/flexible-agency/react-native-check-version", "react-native-check-version": "https://github.com/flexible-agency/react-native-check-version",
"react-native-drax": "^0.10.2", "react-native-drax": "^0.10.2",

View File

@@ -40,7 +40,7 @@
"phone": "^3.1.14", "phone": "^3.1.14",
"platform": "^1.3.6", "platform": "^1.3.6",
"print-js": "^1.6.0", "print-js": "^1.6.0",
"qclone": "^1.0.4", "qclone": "^1.2.0",
"react-dropzone": "^11.4.2", "react-dropzone": "^11.4.2",
"react-hot-toast": "^2.2.0", "react-hot-toast": "^2.2.0",
"react-loading-skeleton": "^3.1.0", "react-loading-skeleton": "^3.1.0",

View File

@@ -46,7 +46,7 @@
"phone": "^3.1.14", "phone": "^3.1.14",
"platform": "^1.3.6", "platform": "^1.3.6",
"print-js": "^1.6.0", "print-js": "^1.6.0",
"qclone": "^1.0.4", "qclone": "^1.2.0",
"react-dropzone": "^11.4.2", "react-dropzone": "^11.4.2",
"react-hot-toast": "^2.2.0", "react-hot-toast": "^2.2.0",
"react-loading-skeleton": "^3.1.0", "react-loading-skeleton": "^3.1.0",

View File

@@ -21,7 +21,7 @@ import React from "react";
import { Flex, Text } from "@theme-ui/components"; import { Flex, Text } from "@theme-ui/components";
import * as Icon from "../icons"; import * as Icon from "../icons";
import Dialog from "./dialog"; import Dialog from "./dialog";
import { qclone } from "qclone"; import qclone from "qclone";
import Field from "../field"; import Field from "../field";
import { showToast } from "../../utils/toast"; import { showToast } from "../../utils/toast";

View File

@@ -26,7 +26,7 @@ import {
import v52Backup from "./__fixtures__/backup.v5.2.json"; import v52Backup from "./__fixtures__/backup.v5.2.json";
import v52BackupCopy from "./__fixtures__/backup.v5.2.copy.json"; import v52BackupCopy from "./__fixtures__/backup.v5.2.copy.json";
import v56BackupCopy from "./__fixtures__/backup.v5.6.json"; import v56BackupCopy from "./__fixtures__/backup.v5.6.json";
import { qclone } from "qclone"; import qclone from "qclone";
beforeEach(() => { beforeEach(() => {
StorageInterface.clear(); StorageInterface.clear();

View File

@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
import set from "../../utils/set"; import set from "../../utils/set";
import { qclone } from "qclone"; import qclone from "qclone";
import { logger } from "../../logger"; import { logger } from "../../logger";
export class SyncQueue { export class SyncQueue {

View File

@@ -21,7 +21,7 @@ import Collection from "./collection";
import Notebook from "../models/notebook"; import Notebook from "../models/notebook";
import getId from "../utils/id"; import getId from "../utils/id";
import { CHECK_IDS, checkIsUserPremium } from "../common"; import { CHECK_IDS, checkIsUserPremium } from "../common";
import { qclone } from "qclone"; import qclone from "qclone";
export default class Notebooks extends Collection { export default class Notebooks extends Collection {
async merge(remoteNotebook) { async merge(remoteNotebook) {

View File

@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
import Topic from "../models/topic"; import Topic from "../models/topic";
import { qclone } from "qclone"; import qclone from "qclone";
import id from "../utils/id"; import id from "../utils/id";
export default class Topics { export default class Topics {

View File

@@ -20,7 +20,7 @@
"htmlparser2": "^8.0.1", "htmlparser2": "^8.0.1",
"linkedom": "^0.14.17", "linkedom": "^0.14.17",
"liqe": "^1.13.0", "liqe": "^1.13.0",
"qclone": "^1.1.0", "qclone": "^1.2.0",
"spark-md5": "^3.0.2" "spark-md5": "^3.0.2"
}, },
"devDependencies": { "devDependencies": {

View File

@@ -45,7 +45,7 @@
"htmlparser2": "^8.0.1", "htmlparser2": "^8.0.1",
"linkedom": "^0.14.17", "linkedom": "^0.14.17",
"liqe": "^1.13.0", "liqe": "^1.13.0",
"qclone": "^1.1.0", "qclone": "^1.2.0",
"spark-md5": "^3.0.2" "spark-md5": "^3.0.2"
}, },
"np": { "np": {