From 665fa834237da3a044e02c9268cc2089c70f29bb Mon Sep 17 00:00:00 2001 From: Kian Masri Date: Thu, 14 Dec 2023 13:17:55 -0700 Subject: [PATCH 1/3] Migrate to melange --- .gitignore | 4 + CHANGELOG.md | 4 +- Makefile | 55 + dune | 1 + dune-project | 38 + package.json | 42 +- reason-react-native.opam | 36 + src/apis/AccessibilityInfo.md | 6 +- src/apis/AccessibilityInfo.re | 24 +- src/apis/ActionSheetIOS.re | 8 +- src/apis/Alert.re | 18 +- src/apis/Animated.re | 98 +- src/apis/AnimationFrame.re | 4 +- src/apis/AppRegistry.re | 42 +- src/apis/AppState.re | 10 +- src/apis/Appearance.re | 4 +- src/apis/AsyncStorage.re | 22 +- src/apis/BackHandler.re | 8 +- src/apis/Clipboard.re | 4 +- src/apis/Color.re | 292 +- src/apis/DatePickerAndroid.re | 8 +- src/apis/DevSettings.re | 6 +- src/apis/Dimensions.re | 8 +- src/apis/DynamicColorIOS.re | 2 +- src/apis/Easing.re | 34 +- src/apis/Event.md | 20 +- src/apis/Event.re | 38 +- src/apis/EventSubscription.re | 2 +- src/apis/Global.re | 4 +- src/apis/ImagePickerIOS.re | 12 +- src/apis/InteractionManager.re | 8 +- src/apis/Keyboard.re | 8 +- src/apis/LayoutAnimation.re | 22 +- src/apis/Linking.re | 18 +- src/apis/LogBox.re | 4 +- src/apis/NativeEventEmitter.re | 12 +- src/apis/NativeModules.re | 8 +- src/apis/Packager.re | 2 +- src/apis/PanResponder.re | 30 +- src/apis/PermissionsAndroid.re | 118 +- src/apis/PermissionsAndroid.rei | 118 +- src/apis/PixelRatio.re | 8 +- src/apis/Platform.re | 8 +- src/apis/Platform.rei | 8 +- src/apis/PlatformColor.re | 2872 +++++----- src/apis/PushNotificationIOS.re | 66 +- src/apis/Settings.re | 8 +- src/apis/Share.re | 12 +- src/apis/SoundManager.re | 2 +- src/apis/Style.re | 260 +- src/apis/Style.rei | 260 +- src/apis/StyleSheet.re | 10 +- src/apis/ToastAndroid.re | 16 +- src/apis/UIManager.re | 14 +- src/apis/Vibration.re | 6 +- src/apis/YellowBox.re | 2 +- src/components/ActivityIndicator.re | 12 +- src/components/Button.re | 2 +- src/components/DatePickerIOS.re | 36 +- src/components/DrawerLayoutAndroid.re | 22 +- src/components/FlatList.re | 16 +- src/components/Image.re | 22 +- src/components/ImageBackground.re | 2 +- src/components/InputAccessoryView.re | 2 +- src/components/KeyboardAvoidingView.re | 12 +- src/components/MaskedViewIOS.re | 12 +- src/components/Modal.re | 2 +- src/components/Picker.re | 14 +- src/components/PickerIOS.re | 14 +- src/components/Pressable.re | 12 +- src/components/ProgressBarAndroid.re | 12 +- src/components/ProgressViewIOS.re | 12 +- src/components/RefreshControl.re | 12 +- src/components/SafeAreaView.re | 12 +- src/components/ScrollView.re | 18 +- src/components/SectionList.re | 22 +- src/components/SegmentedControlIOS.re | 12 +- src/components/Slider.re | 12 +- src/components/SnapshotViewIOS.re | 12 +- src/components/StatusBar.re | 26 +- src/components/Switch.re | 14 +- src/components/Text.re | 6 +- src/components/TextInput.re | 62 +- src/components/TouchableHighlight.re | 10 +- src/components/TouchableNativeFeedback.re | 18 +- src/components/TouchableOpacity.re | 10 +- src/components/TouchableWithoutFeedback.re | 10 +- src/components/View.re | 14 +- src/components/VirtualizedList.re | 20 +- src/components/VirtualizedSectionList.re | 20 +- src/dune | 9 + src/elements/DrawerLayoutAndroidMethods.re | 4 +- src/elements/NativeMethods.re | 14 +- src/elements/ScrollViewElement.re | 4 +- src/elements/ScrollViewMethods.re | 10 +- src/elements/TextInputMethods.re | 4 +- src/elements/TouchableOpacityMethods.re | 2 +- src/elements/ViewPagerAndroidMethods.re | 4 +- src/elements/VirtualizedListMethods.re | 14 +- src/elements/VirtualizedSectionListMethods.re | 4 +- src/private/SourceCode.re | 2 +- src/types/Accessibility.re | 14 +- src/types/Accessibility.rei | 14 +- src/types/ActivityIndicator_Size.re | 4 +- src/types/ActivityIndicator_Size.rei | 4 +- src/types/FontVariant.re | 10 +- src/types/FontVariant.rei | 10 +- src/types/Modal_Orientation.re | 10 +- src/types/Modal_Orientation.rei | 10 +- src/types/TV.re | 2 +- yarn.lock | 5049 +++++++++++++---- 111 files changed, 6763 insertions(+), 3703 deletions(-) create mode 100644 Makefile create mode 100644 dune create mode 100644 dune-project create mode 100644 reason-react-native.opam create mode 100644 src/dune diff --git a/.gitignore b/.gitignore index 28c4ad247..6c4a6fac0 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,7 @@ package-lock.json **/lib/bs **/lib/ocaml **/.merlin + +_opam +_build +.vscode \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5603a4361..69a496d64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -140,7 +140,7 @@ before reporting issue. - Upgraded reason-react to 0.8.0 ([#689](https://github.com/reason-react-native/reason-react-native/issues/689)) by [@jfrolich](https://github.com/jfrolich) See for more informations - Upgraded to bs-platform 7.3.0 ([#631](https://github.com/reason-react-native/reason-react-native/issues/631)) by [@idkjs](https://github.com/idkjs) ([#666](https://github.com/reason-react-native/reason-react-native/issues/666)) by [@Arnarkari93](https://github.com/Arnarkari93) ([#674](https://github.com/reason-react-native/reason-react-native/issues/674)) ([#693](https://github.com/reason-react-native/reason-react-native/issues/693)) ([#690](https://github.com/reason-react-native/reason-react-native/issues/690)) ([#694](https://github.com/reason-react-native/reason-react-native/issues/694)) by [@sgny](https://github.com/sgny) ([#695](https://github.com/reason-react-native/reason-react-native/issues/695)) by [@cknitt](https://github.com/cknitt) - We have converted `Js.t` objects to records where possible (we had to skipped objects that rely on `[@bs.meth]`). This means ou will have to change a lot of `##` notation to just a dot (`.`) to access properties. + We have converted `Js.t` objects to records where possible (we had to skipped objects that rely on `[@mel.meth]`). This means ou will have to change a lot of `##` notation to just a dot (`.`) to access properties. See for more informations - Removed some methods for FlatList, ScrollView, SectionList, VirtualizedList and VirtualizedSectionList ([#680](https://github.com/reason-react-native/reason-react-native/issues/680)) by [@sgny](https://github.com/sgny) These components are interrelated in the sense of being based on each other and inheriting props, however, applicable methods are not inherited quite so consistently. We removed unavailable methods from each component. @@ -222,7 +222,7 @@ Sorry, a mix of bugfixes & changes! This should be easy to handle for you. - Fix `AppState` (now return `unit`) [#568](https://github.com/reason-react-native/reason-react-native/pull/568) by [@cknitt](https://github.com/cknitt) - Fix `Animated.event` type so it can be used in `Animated.ScrollView` `onScroll` props (& similar) [#584](https://github.com/reason-react-native/reason-react-native/pull/584) by [@MoOx](https://github.com/MoOx) -- Fix missing `[@bs.meth]` in methods of `Event`, `BackHandler` & `NetInfo` [#621](https://github.com/reason-react-native/reason-react-native/pull/621) by [@cknitt](https://github.com/cknitt) +- Fix missing `[@mel.meth]` in methods of `Event`, `BackHandler` & `NetInfo` [#621](https://github.com/reason-react-native/reason-react-native/pull/621) by [@cknitt](https://github.com/cknitt) - Fix `ScrollView` `scrollToItem`, `scrollToIndex` and `scrollToOffset` [#569](https://github.com/reason-react-native/reason-react-native/pull/569) by [@benadamstyles](https://github.com/benadamstyles) - Fix `Webview` `contentInset` prop [#607](https://github.com/reason-react-native/reason-react-native/pull/607) by [@cem2ran](https://github.com/cem2ran) - Fix `WebView` event types & add missing fields [#608](https://github.com/reason-react-native/reason-react-native/pull/608) by [@cem2ran](https://github.com/cem2ran) diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..b76f8a187 --- /dev/null +++ b/Makefile @@ -0,0 +1,55 @@ +project_name = reason-react-native + +DUNE = opam exec -- dune + +.DEFAULT_GOAL := help + +.PHONY: help +help: ## Print this help message + @echo "List of available make commands"; + @echo ""; + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}'; + @echo ""; + +.PHONY: create-switch +create-switch: ## Create opam switch + opam switch create . -y --deps-only + opam install dune + +.PHONY: init +init: create-switch install ## Configure everything to develop this repository in local + +.PHONY: generate-opam +generate-opam: ## Generate the opam file + $(DUNE) build $(project_name).opam + +.PHONY: install +install: generate-opam ## Install development dependencies + yarn install + opam update + opam install -y . --deps-only --with-test + opam exec opam-check-npm-deps + +.PHONY: build +build: ## Build the project + $(DUNE) build + +.PHONY: watch +watch: ## Watch for the filesystem and rebuild on every change + $(DUNE) build --watch + +.PHONY: test +test: + yarn test + +.PHONY: clean +clean: ## Clean build artifacts and other generated files + $(DUNE) clean + +.PHONY: format +format: ## Format the codebase with ocamlformat + $(DUNE) build @fmt --auto-promote + +.PHONY: format-check +format-check: ## Checks if format is correct + $(DUNE) build @fmt diff --git a/dune b/dune new file mode 100644 index 000000000..8765da55d --- /dev/null +++ b/dune @@ -0,0 +1 @@ +(dirs :standard \ node_modules) diff --git a/dune-project b/dune-project new file mode 100644 index 000000000..ee8149b04 --- /dev/null +++ b/dune-project @@ -0,0 +1,38 @@ +(lang dune 3.12) + +(using melange 0.1) + +(source + (github riKiMasan/reason-react-native)) + +(license MIT) + +(maintainers "unmaintained") + +(authors "idk") + +(homepage https://github.com/riKiMasan/reason-react-native) + +(bug_reports https://github.com/riKiMasan/reason-react-native/issues) + +(name reason-react-native) + +(package + (name reason-react-native) + (synopsis "ReasonML Bindings for React Native") + (description "ReasonML Bindings for React Native") + (depends + dot-merlin-reader + (melange + (>= 2.0.0)) + (ocaml + (>= 5.1.0)) + (reason + (>= 3.10.0)) + ocaml-lsp-server ; change to (ocaml-lsp-server :with-dev-setup) when opam 2.2 releases + ocamlformat ; with-dev-setup + reason-react + opam-check-npm-deps ; with-dev-setup + )) + +(generate_opam_files) diff --git a/package.json b/package.json index 2fc07de8e..c1a0e8439 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,7 @@ "description": "ReScript bindings for React Native.", "version": "0.64.0", "peerDependencies": { - "bs-platform": "^8.2.0", - "react-native": "^0.64.0", - "reason-react": "^0.9.1" + "react-native": "^0.64.0" }, "repository": "https://github.com/reason-react-native/reason-react-native.git", "license": "MIT", @@ -13,7 +11,7 @@ "rescript", "reason", "reasonml", - "bucklescript", + "melange", "react-native" ], "files": [ @@ -24,40 +22,16 @@ "!src/**/*.bs.js" ], "scripts": { - "format:most": "prettier --write \"**/*.{md,json,js,css}\"", - "format:re": "find . -name \"*.re\" -or -name \"*.rei\" | grep -v \"node_modules\" | xargs bsrefmt --in-place", - "format": "yarn format:most && yarn format:re", - "re:start": "bsb -make-world -w", - "re:build": "bsb -make-world", - "re:clean-build": "bsb -clean-world -make-world", "start": "yarn re:start", "build": "yarn re:build", "test": "yarn re:clean-build", "release": "npmpub" }, "devDependencies": { - "bs-platform": "^8.3.0", - "husky": "^4.0.0", - "lint-staged": "^10.0.0", - "npm-run-all": "^3.0.0", - "npmpub": "^5.0.0", - "prettier": "^2.0.0", - "reason-react": "^0.9.1" - }, - "prettier": { - "trailingComma": "all" - }, - "lint-staged": { - "*.{md,json,js,css}": [ - "prettier --write" - ], - "*.{re,rei}": [ - "bsrefmt --in-place" - ] - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } + "react": "17.0.1", + "react-dom": "17.0.1", + "react-native": "0.64.0", + "@babel/core": "^7.1.6", + "@babel/preset-env": "^7.1.6" } -} +} \ No newline at end of file diff --git a/reason-react-native.opam b/reason-react-native.opam new file mode 100644 index 000000000..a4417189a --- /dev/null +++ b/reason-react-native.opam @@ -0,0 +1,36 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "ReasonML Bindings for React Native" +description: "ReasonML Bindings for React Native" +maintainer: ["unmaintained"] +authors: ["idk"] +license: "MIT" +homepage: "https://github.com/riKiMasan/reason-react-native" +bug-reports: "https://github.com/riKiMasan/reason-react-native/issues" +depends: [ + "dune" {>= "3.12"} + "dot-merlin-reader" + "melange" {>= "2.0.0"} + "ocaml" {>= "5.1.0"} + "reason" {>= "3.10.0"} + "ocaml-lsp-server" + "ocamlformat" + "reason-react" + "opam-check-npm-deps" + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/riKiMasan/reason-react-native.git" diff --git a/src/apis/AccessibilityInfo.md b/src/apis/AccessibilityInfo.md index a237c0979..6bd37a9ed 100644 --- a/src/apis/AccessibilityInfo.md +++ b/src/apis/AccessibilityInfo.md @@ -62,7 +62,7 @@ To query whether reduce motion is currently enabled. Promise resolves to `true` when reduce motion is enabled and `false` otherwise. ```reason -[@bs.scope "AccesibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccesibilityInfo"] [@mel.module "react-native"] external isReduceMotionEnabled: unit => Js.Promise.t(bool) = "isReduceMotionEnabled"; ``` @@ -74,7 +74,7 @@ To query whether reduce transparency is currently enabled. Promise resolves to `true` when reduce transparency is enabled and `false` otherwise. ```reason -[@bs.scope "AccesibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccesibilityInfo"] [@mel.module "react-native"] external isReduceTransparencyEnabled: unit => Js.Promise.t(bool) = "isReduceTransparencyEnabled"; ``` @@ -84,7 +84,7 @@ To query whether screen reader is currently enabled. Promise resolves to `true` when screen reader is enabled and `false` otherwise. ```reason -[@bs.scope "AccesibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccesibilityInfo"] [@mel.module "react-native"] external isScreenReaderEnabled: unit => Js.Promise.t(bool) = "isScreenReaderEnabled"; ``` diff --git a/src/apis/AccessibilityInfo.re b/src/apis/AccessibilityInfo.re index 9e8b2cfbd..02920bf51 100644 --- a/src/apis/AccessibilityInfo.re +++ b/src/apis/AccessibilityInfo.re @@ -3,40 +3,40 @@ type announcementResult = { success: bool, }; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external isBoldTextEnabled: unit => Js.Promise.t(bool) = "isBoldTextEnabled"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external isGrayscaleEnabled: unit => Js.Promise.t(bool) = "isGrayscaleEnabled"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external isInvertColorsEnabled: unit => Js.Promise.t(bool) = "isInvertColorsEnabled"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external isReduceMotionEnabled: unit => Js.Promise.t(bool) = "isReduceMotionEnabled"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external isReduceTransparencyEnabled: unit => Js.Promise.t(bool) = "isReduceTransparencyEnabled"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external isScreenReaderEnabled: unit => Js.Promise.t(bool) = "isScreenReaderEnabled"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external setAccessibilityFocus: NativeTypes.nodeHandle => unit = "setAccessibilityFocus"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external announceForAccessibility: string => unit = "announceForAccessibility"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external addEventListener: ( - [@bs.string] + [@mel.string] [ | `boldTextChanged(bool => unit) | `grayscaleChanged(bool => unit) @@ -50,10 +50,10 @@ external addEventListener: unit = "addEventListener"; -[@bs.scope "AccessibilityInfo"] [@bs.module "react-native"] +[@mel.scope "AccessibilityInfo"] [@mel.module "react-native"] external removeEventListener: ( - [@bs.string] + [@mel.string] [ | `boldTextChanged(bool => unit) | `grayscaleChanged(bool => unit) diff --git a/src/apis/ActionSheetIOS.re b/src/apis/ActionSheetIOS.re index bf6e4d956..39ac88231 100644 --- a/src/apis/ActionSheetIOS.re +++ b/src/apis/ActionSheetIOS.re @@ -1,5 +1,5 @@ type options; -[@bs.obj] +[@mel.obj] external options: ( ~options: array(string), @@ -13,12 +13,12 @@ external options: ) => options; -[@bs.module "react-native"] [@bs.scope "ActionSheetIOS"] +[@mel.module "react-native"] [@mel.scope "ActionSheetIOS"] external showActionSheetWithOptions: (options, int => unit) => unit = "showActionSheetWithOptions"; type shareOptions; -[@bs.obj] +[@mel.obj] external shareOptions: ( ~url: string=?, @@ -31,7 +31,7 @@ external shareOptions: type error = {stack: option(string)}; -[@bs.module "react-native"] [@bs.scope "ActionSheetIOS"] +[@mel.module "react-native"] [@mel.scope "ActionSheetIOS"] external showShareActionSheetWithOptions: (shareOptions, error => unit, (bool, string) => unit) => unit = "showShareActionSheetWithOptions"; diff --git a/src/apis/Alert.re b/src/apis/Alert.re index d7db14b6f..f7785c156 100644 --- a/src/apis/Alert.re +++ b/src/apis/Alert.re @@ -1,6 +1,6 @@ type options; -[@bs.obj] +[@mel.obj] external options: (~cancelable: bool=?, ~onDismiss: unit => unit=?, unit) => options; @@ -8,11 +8,11 @@ type button; type style = [ | `default | `cancel | `destructive]; -[@bs.obj] +[@mel.obj] external button: (~text: string=?, ~onPress: unit => unit=?, ~style: style=?, unit) => button; -[@bs.scope "Alert"] [@bs.module "react-native"] +[@mel.scope "Alert"] [@mel.module "react-native"] external alert: ( ~title: string, @@ -24,21 +24,21 @@ external alert: unit = "alert"; -[@bs.scope "Alert"] [@bs.module "react-native"] +[@mel.scope "Alert"] [@mel.module "react-native"] external prompt: ( ~title: string, ~message: string=?, - ~callbackOrButtons: [@bs.unwrap] [ + ~callbackOrButtons: [@mel.unwrap] [ | `callback(string => unit) | `buttons(array(button)) ] =?, - ~type_: [@bs.string] [ + ~type_: [@mel.string] [ | `default - | [@bs.as "plain-text"] `plainText - | [@bs.as "secure-text"] `secureText - | [@bs.as "login-password"] `loginPassword + | [@mel.as "plain-text"] `plainText + | [@mel.as "secure-text"] `secureText + | [@mel.as "login-password"] `loginPassword ] =?, ~defaultValue: string=?, diff --git a/src/apis/Animated.re b/src/apis/Animated.re index 28f98e826..3d76b11ef 100644 --- a/src/apis/Animated.re +++ b/src/apis/Animated.re @@ -2,11 +2,11 @@ module Animation = { type t; type endResult = {finished: bool}; type endCallback = endResult => unit; - [@bs.send] + [@mel.send] external start: (t, ~endCallback: endCallback=?, unit) => unit = "start"; - [@bs.send] external stop: t => unit = "stop"; - [@bs.send] external reset: t => unit = "reset"; + [@mel.send] external stop: t => unit = "stop"; + [@mel.send] external reset: t => unit = "reset"; }; module type Value = { @@ -25,7 +25,7 @@ module ValueAnimations = (Val: Value) => { module Decay = { type config; - [@bs.obj] + [@mel.obj] external config: ( ~velocity: Val.rawValue, @@ -38,7 +38,7 @@ module ValueAnimations = (Val: Value) => { ) => config; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external decay: (Val.t, config) => Animation.t = "decay"; }; @@ -49,7 +49,7 @@ module ValueAnimations = (Val: Value) => { type config; - [@bs.obj] + [@mel.obj] external config: ( ~toValue: toValue, @@ -73,7 +73,7 @@ module ValueAnimations = (Val: Value) => { ) => config; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external spring: (Val.t, config) => Animation.t = "spring"; }; @@ -85,7 +85,7 @@ module ValueAnimations = (Val: Value) => { type config; - [@bs.obj] + [@mel.obj] external config: ( ~toValue: toValue, @@ -100,7 +100,7 @@ module ValueAnimations = (Val: Value) => { ) => config; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external timing: (Val.t, config) => Animation.t = "timing"; }; }; @@ -114,7 +114,7 @@ module Interpolation = { type extrapolate = [ | `extend | `clamp | `identity]; type config; - [@bs.obj] + [@mel.obj] external config: ( ~inputRange: array(float), @@ -126,23 +126,23 @@ module Interpolation = { unit ) => config; - [@bs.send] external interpolate: (value('a), config) => t = "interpolate"; + [@mel.send] external interpolate: (value('a), config) => t = "interpolate"; }; module ValueOperations = { - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external add: (value('a), value('b)) => value(calculated) = "add"; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external divide: (value('a), value('b)) => value(calculated) = "divide"; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external multiply: (value('a), value('b)) => value(calculated) = "multiply"; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external modulo: (value('a), float) => value(calculated) = "modulo"; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external subtract: (value('a), value('b)) => value(calculated) = "subtract"; - [@bs.module "react-native"] [@bs.scope "Animated"] + [@mel.module "react-native"] [@mel.scope "Animated"] external diffClamp: (value('a), float, float) => value(calculated) = "diffClamp"; let interpolate = Interpolation.interpolate; @@ -154,20 +154,20 @@ module ValueMethods = (Val: Value) => { type addListenerCallback = Val.addListenerCallback; type callback = rawValue => unit; - [@bs.send] external setValue: (t, rawValue) => unit = "setValue"; - [@bs.send] external setOffset: (t, rawValue) => unit = "setOffset"; - [@bs.send] external flattenOffset: t => unit = "flattenOffset"; - [@bs.send] external extractOffset: t => unit = "extractOffset"; - [@bs.send] + [@mel.send] external setValue: (t, rawValue) => unit = "setValue"; + [@mel.send] external setOffset: (t, rawValue) => unit = "setOffset"; + [@mel.send] external flattenOffset: t => unit = "flattenOffset"; + [@mel.send] external extractOffset: t => unit = "extractOffset"; + [@mel.send] external addListener: (t, addListenerCallback) => string = "addListener"; - [@bs.send] external removeListener: (t, string) => unit = "removeListener"; - [@bs.send] external removeAllListeners: t => unit = "removeAllListeners"; + [@mel.send] external removeListener: (t, string) => unit = "removeListener"; + [@mel.send] external removeAllListeners: t => unit = "removeAllListeners"; - [@bs.send] + [@mel.send] external resetAnimation: (t, ~callback: callback=?, unit) => unit = "resetAnimation"; - [@bs.send] + [@mel.send] external stopAnimation: (t, ~callback: callback=?, unit) => unit = "stopAnimation"; @@ -181,7 +181,7 @@ module Value = { type addListenerCallback = {. "value": rawValue} => unit; }); - [@bs.new] [@bs.scope "Animated"] [@bs.module "react-native"] + [@mel.new] [@mel.scope "Animated"] [@mel.module "react-native"] external create: float => t = "Value"; include ValueOperations; @@ -202,62 +202,62 @@ module ValueXY = { type addListenerCallback = rawValue => unit; }); - [@deprecated "Please use xyValue instead"] [@bs.obj] + [@deprecated "Please use xyValue instead"] [@mel.obj] external jsValue: (~x: float, ~y: float) => rawValue; - [@bs.obj] external xyValue: (~x: float, ~y: float) => rawValue; + [@mel.obj] external xyValue: (~x: float, ~y: float) => rawValue; type layout = { left: Value.t, top: Value.t, }; - [@bs.new] [@bs.scope "Animated"] [@bs.module "react-native"] + [@mel.new] [@mel.scope "Animated"] [@mel.module "react-native"] external create: rawValue => t = "ValueXY"; - [@bs.send] external getLayout: t => layout = "getLayout"; - [@bs.send] + [@mel.send] external getLayout: t => layout = "getLayout"; + [@mel.send] external getTranslateTransform: t => array(Style.transform) = "getTranslateTransform"; }; -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external delay: float => Animation.t = "delay"; -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external sequence: array(Animation.t) => Animation.t = "sequence"; type parallelPayload = {stopTogether: bool}; -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external parallel: (array(Animation.t), parallelPayload) => Animation.t = "parallel"; -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external stagger: (float, array(Animation.t)) => Animation.t = "stagger"; type loopConfig; -[@bs.obj] external loopConfig: (~iterations: int) => loopConfig; +[@mel.obj] external loopConfig: (~iterations: int) => loopConfig; // multiple externals -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external loop: Animation.t => Animation.t = "loop"; // multiple externals -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external loopWithConfig: (Animation.t, loopConfig) => Animation.t = "loop"; type eventOptions('a); -[@bs.obj] +[@mel.obj] external eventOptions: (~listener: 'a=?, ~useNativeDriver: bool, unit) => eventOptions('a); // multiple externals -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external event1: (array('mapping), eventOptions('a)) => 'a = "event"; // multiple externals -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external event2: (('mapping1, 'mapping2), eventOptions('a)) => 'a = "event"; -[@bs.module "react-native"] [@bs.scope "Animated"] +[@mel.module "react-native"] [@mel.scope "Animated"] external createAnimatedComponent: React.component('props) => React.component('props) = "createAnimatedComponent"; @@ -297,35 +297,35 @@ module StyleProp = { module FlatList = { include FlatList; - let make = Obj.magic(createAnimatedComponent(FlatList.make)); + let make = FlatList.make; }; module Image = { include Image; - let make = createAnimatedComponent(make); + let make = make; }; module ScrollView = { include ScrollView; - let make = createAnimatedComponent(make); + let make = make; }; module SectionList = { include SectionList; - let make = Obj.magic(createAnimatedComponent(SectionList.make)); + let make = SectionList.make; }; module Text = { include Text; - let make = createAnimatedComponent(make); + let make = make; }; module View = { include View; - let make = createAnimatedComponent(make); + let make = make; }; diff --git a/src/apis/AnimationFrame.re b/src/apis/AnimationFrame.re index 5e2e8ee18..7100b0bcb 100644 --- a/src/apis/AnimationFrame.re +++ b/src/apis/AnimationFrame.re @@ -1,5 +1,5 @@ type requestID; -[@bs.val] + external request: (unit => unit) => requestID = "requestAnimationFrame"; -[@bs.val] external cancel: requestID => unit = "cancelAnimationFrame"; + external cancel: requestID => unit = "cancelAnimationFrame"; diff --git a/src/apis/AppRegistry.re b/src/apis/AppRegistry.re index a5184fe57..a10701f78 100644 --- a/src/apis/AppRegistry.re +++ b/src/apis/AppRegistry.re @@ -17,7 +17,7 @@ external asAppParameters: 'a => appParameters = "%identity"; type appConfig; -[@bs.obj] +[@mel.obj] external appConfig: ( ~appKey: string, @@ -31,7 +31,7 @@ external appConfig: type runnable('a) = { . "component": Js.Nullable.t(componentProvider('a)), - [@bs.meth] "run": appParameters => unit, + [@mel.meth] "run": appParameters => unit, }; type registry('a) = { @@ -39,68 +39,68 @@ type registry('a) = { runnables: Js.Dict.t(runnable('a)), }; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external getAppKeys: unit => array(appKey) = "getAppKeys"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external getRegistry: unit => registry('a) = "getRegistry"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external getRunnable: appKey => option(runnable('a)) = "getRunnable"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external getSectionKeys: unit => array(string) = "getSectionKeys"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external getSections: unit => Js.Dict.t(runnable('a)) = "getSections"; // multiple externals -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerComponent: (appKey, componentProvider('a)) => unit = "registerComponent"; // multiple externals -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerComponentWithSection: (appKey, componentProvider('a), section) => unit = "registerComponent"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerConfig: array(appConfig) => unit = "registerConfig"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerRunnable: (appKey, appParameters => unit) => string = "registerRunnable"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerSection: (appKey, componentProvider('a)) => unit = "registerSection"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external runApplication: (appKey, 'a) => unit = "runApplication"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external setWrapperComponentProvider: wrapperComponentProvider('a, 'b) => unit = "setWrapperComponentProvider"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external unmountApplicationComponentAtRootTag: string => unit = "unmountApplicationComponentAtRootTag"; // Android only -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external cancelHeadlessTask: (taskId, taskKey) => unit = "cancelHeadlessTask"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerCancellableHeadlessTask: (taskKey, taskProvider('data), taskCancelProvider) => unit = "registerCancellableHeadlessTask"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external registerHeadlessTask: (taskKey, taskProvider('data)) => unit = "registerHeadlessTask"; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external startHeadlessTask: (taskId, taskKey, 'data) => unit = "startHeadlessTask"; @@ -108,8 +108,8 @@ external startHeadlessTask: (taskId, taskKey, 'data) => unit = type app = { . "element": React.element, - [@bs.meth] "getStyleElement": unit => React.element, + [@mel.meth] "getStyleElement": unit => React.element, }; -[@bs.module "react-native"] [@bs.scope "AppRegistry"] +[@mel.module "react-native"] [@mel.scope "AppRegistry"] external getApplication: (string, {. "initialProps": 'a}) => app = "getApplication"; diff --git a/src/apis/AppState.re b/src/apis/AppState.re index e29af9b3a..cdaac6a67 100644 --- a/src/apis/AppState.re +++ b/src/apis/AppState.re @@ -1,12 +1,12 @@ type t = [ | `active | `background | `inactive | `unknown | `extension]; -[@bs.scope "AppState"] [@bs.module "react-native"] +[@mel.scope "AppState"] [@mel.module "react-native"] external currentState: t = "currentState"; -[@bs.scope "AppState"] [@bs.module "react-native"] +[@mel.scope "AppState"] [@mel.module "react-native"] external addEventListener: ( - [@bs.string] + [@mel.string] [ | `change(t => unit) | `focus(unit => unit) @@ -17,10 +17,10 @@ external addEventListener: unit = "addEventListener"; -[@bs.scope "AppState"] [@bs.module "react-native"] +[@mel.scope "AppState"] [@mel.module "react-native"] external removeEventListener: ( - [@bs.string] + [@mel.string] [ | `change(t => unit) | `focus(unit => unit) diff --git a/src/apis/Appearance.re b/src/apis/Appearance.re index 2d2a964b9..3957f3097 100644 --- a/src/apis/Appearance.re +++ b/src/apis/Appearance.re @@ -1,7 +1,7 @@ type t = [ | `dark | `light]; -[@bs.scope "Appearance"] [@bs.module "react-native"] +[@mel.scope "Appearance"] [@mel.module "react-native"] external getColorScheme: unit => Js.Null.t(t) = "getColorScheme"; -[@bs.module "react-native"] +[@mel.module "react-native"] external useColorScheme: unit => Js.Null.t(t) = "useColorScheme"; diff --git a/src/apis/AsyncStorage.re b/src/apis/AsyncStorage.re index 1138b1884..5e7ea95fb 100644 --- a/src/apis/AsyncStorage.re +++ b/src/apis/AsyncStorage.re @@ -1,39 +1,39 @@ type error; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external getItem: string => Js.Promise.t(Js.Null.t(string)) = "getItem"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external setItem: (string, string) => Js.Promise.t(unit) = "setItem"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external removeItem: string => Js.Promise.t(unit) = "removeItem"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external mergeItem: (string, string) => Js.Promise.t(unit) = "mergeItem"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external clear: unit => Js.Promise.t(unit) = "clear"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external getAllKeys: unit => Js.Promise.t(Js.Null.t(array(string))) = "getAllKeys"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external flushGetRequests: unit => unit = "flushGetRequests"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external multiGet: array(string) => Js.Promise.t(Js.Null.t(array(array(string)))) = "multiGet"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external multiSet: array((string, string)) => Js.Promise.t(unit) = "multiSet"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external multiRemove: array(string) => Js.Promise.t(unit) = "multiRemove"; -[@bs.scope "AsyncStorage"] [@bs.module "react-native"] +[@mel.scope "AsyncStorage"] [@mel.module "react-native"] external multiMerge: array(array(string)) => Js.Promise.t(unit) = "multiMerge"; diff --git a/src/apis/BackHandler.re b/src/apis/BackHandler.re index 21bc261ec..f426aa66d 100644 --- a/src/apis/BackHandler.re +++ b/src/apis/BackHandler.re @@ -1,14 +1,14 @@ -type remove = {. [@bs.meth] "remove": unit => unit}; +type remove = {. [@mel.meth] "remove": unit => unit}; -[@bs.scope "BackHandler"] [@bs.module "react-native"] +[@mel.scope "BackHandler"] [@mel.module "react-native"] external exitApp: unit => unit = "exitApp"; type eventType = [ | `backPress | `hardwareBackPress]; -[@bs.scope "BackHandler"] [@bs.module "react-native"] +[@mel.scope "BackHandler"] [@mel.module "react-native"] external addEventListener: (eventType, unit => bool) => remove = "addEventListener"; -[@bs.scope "BackHandler"] [@bs.module "react-native"] +[@mel.scope "BackHandler"] [@mel.module "react-native"] external removeEventListener: (eventType, unit => bool) => unit = "removeEventListener"; diff --git a/src/apis/Clipboard.re b/src/apis/Clipboard.re index 3dfe36766..6fd351f8e 100644 --- a/src/apis/Clipboard.re +++ b/src/apis/Clipboard.re @@ -1,5 +1,5 @@ -[@bs.module "react-native"] [@bs.scope "Clipboard"] +[@mel.module "react-native"] [@mel.scope "Clipboard"] external getString: unit => Js.Promise.t(string) = "getString"; -[@bs.module "react-native"] [@bs.scope "Clipboard"] +[@mel.module "react-native"] [@mel.scope "Clipboard"] external setString: string => unit = "setString"; diff --git a/src/apis/Color.re b/src/apis/Color.re index 1465cc73f..73f9a6fed 100644 --- a/src/apis/Color.re +++ b/src/apis/Color.re @@ -6,441 +6,441 @@ let rgba = (~r: int, ~g: int, ~b: int, ~a: float) => {j|rgba($r, $g, $b, $a)|j}; let hsl = (~h: float, ~s: float, ~l: float) => {j|hsl($h, $s%, $l%)|j}; let hsla = (~h: float, ~s: float, ~l: float, ~a: float) => {j|hsl($h, $s%, $l%, $a)|j}; -[@bs.inline] +[@mel.inline] let transparent = "transparent"; // Pre-defined colors -[@bs.inline] +[@mel.inline] let aliceblue = "aliceblue"; -[@bs.inline] +[@mel.inline] let antiquewhite = "antiquewhite"; -[@bs.inline] +[@mel.inline] let aqua = "aqua"; -[@bs.inline] +[@mel.inline] let aquamarine = "aquamarine"; -[@bs.inline] +[@mel.inline] let azure = "azure"; -[@bs.inline] +[@mel.inline] let beige = "beige"; -[@bs.inline] +[@mel.inline] let bisque = "bisque"; -[@bs.inline] +[@mel.inline] let black = "black"; -[@bs.inline] +[@mel.inline] let blanchedalmond = "blanchedalmond"; -[@bs.inline] +[@mel.inline] let blue = "blue"; -[@bs.inline] +[@mel.inline] let blueviolet = "blueviolet"; -[@bs.inline] +[@mel.inline] let brown = "brown"; -[@bs.inline] +[@mel.inline] let burlywood = "burlywood"; -[@bs.inline] +[@mel.inline] let cadetblue = "cadetblue"; -[@bs.inline] +[@mel.inline] let chartreuse = "chartreuse"; -[@bs.inline] +[@mel.inline] let chocolate = "chocolate"; -[@bs.inline] +[@mel.inline] let coral = "coral"; -[@bs.inline] +[@mel.inline] let cornflowerblue = "cornflowerblue"; -[@bs.inline] +[@mel.inline] let cornsilk = "cornsilk"; -[@bs.inline] +[@mel.inline] let crimson = "crimson"; -[@bs.inline] +[@mel.inline] let cyan = "cyan"; -[@bs.inline] +[@mel.inline] let darkblue = "darkblue"; -[@bs.inline] +[@mel.inline] let darkcyan = "darkcyan"; -[@bs.inline] +[@mel.inline] let darkgoldenrod = "darkgoldenrod"; -[@bs.inline] +[@mel.inline] let darkgray = "darkgray"; -[@bs.inline] +[@mel.inline] let darkgreen = "darkgreen"; -[@bs.inline] +[@mel.inline] let darkgrey = "darkgrey"; -[@bs.inline] +[@mel.inline] let darkkhaki = "darkkhaki"; -[@bs.inline] +[@mel.inline] let darkmagenta = "darkmagenta"; -[@bs.inline] +[@mel.inline] let darkolivegreen = "darkolivegreen"; -[@bs.inline] +[@mel.inline] let darkorange = "darkorange"; -[@bs.inline] +[@mel.inline] let darkorchid = "darkorchid"; -[@bs.inline] +[@mel.inline] let darkred = "darkred"; -[@bs.inline] +[@mel.inline] let darksalmon = "darksalmon"; -[@bs.inline] +[@mel.inline] let darkseagreen = "darkseagreen"; -[@bs.inline] +[@mel.inline] let darkslateblue = "darkslateblue"; -[@bs.inline] +[@mel.inline] let darkslategrey = "darkslategrey"; -[@bs.inline] +[@mel.inline] let darkturquoise = "darkturquoise"; -[@bs.inline] +[@mel.inline] let darkviolet = "darkviolet"; -[@bs.inline] +[@mel.inline] let deeppink = "deeppink"; -[@bs.inline] +[@mel.inline] let deepskyblue = "deepskyblue"; -[@bs.inline] +[@mel.inline] let dimgray = "dimgray"; -[@bs.inline] +[@mel.inline] let dimgrey = "dimgrey"; -[@bs.inline] +[@mel.inline] let dodgerblue = "dodgerblue"; -[@bs.inline] +[@mel.inline] let firebrick = "firebrick"; -[@bs.inline] +[@mel.inline] let floralwhite = "floralwhite"; -[@bs.inline] +[@mel.inline] let forestgreen = "forestgreen"; -[@bs.inline] +[@mel.inline] let fuchsia = "fuchsia"; -[@bs.inline] +[@mel.inline] let gainsboro = "gainsboro"; -[@bs.inline] +[@mel.inline] let ghostwhite = "ghostwhite"; -[@bs.inline] +[@mel.inline] let gold = "gold"; -[@bs.inline] +[@mel.inline] let goldenrod = "goldenrod"; -[@bs.inline] +[@mel.inline] let gray = "gray"; -[@bs.inline] +[@mel.inline] let green = "green"; -[@bs.inline] +[@mel.inline] let greenyellow = "greenyellow"; -[@bs.inline] +[@mel.inline] let grey = "grey"; -[@bs.inline] +[@mel.inline] let honeydew = "honeydew"; -[@bs.inline] +[@mel.inline] let hotpink = "hotpink"; -[@bs.inline] +[@mel.inline] let indianred = "indianred"; -[@bs.inline] +[@mel.inline] let indigo = "indigo"; -[@bs.inline] +[@mel.inline] let ivory = "ivory"; -[@bs.inline] +[@mel.inline] let khaki = "khaki"; -[@bs.inline] +[@mel.inline] let lavender = "lavender"; -[@bs.inline] +[@mel.inline] let lavenderblush = "lavenderblush"; -[@bs.inline] +[@mel.inline] let lawngreen = "lawngreen"; -[@bs.inline] +[@mel.inline] let lemonchiffon = "lemonchiffon"; -[@bs.inline] +[@mel.inline] let lightblue = "lightblue"; -[@bs.inline] +[@mel.inline] let lightcoral = "lightcoral"; -[@bs.inline] +[@mel.inline] let lightcyan = "lightcyan"; -[@bs.inline] +[@mel.inline] let lightgoldenrodyellow = "lightgoldenrodyellow"; -[@bs.inline] +[@mel.inline] let lightgray = "lightgray"; -[@bs.inline] +[@mel.inline] let lightgreen = "lightgreen"; -[@bs.inline] +[@mel.inline] let lightgrey = "lightgrey"; -[@bs.inline] +[@mel.inline] let lightpink = "lightpink"; -[@bs.inline] +[@mel.inline] let lightsalmon = "lightsalmon"; -[@bs.inline] +[@mel.inline] let lightseagreen = "lightseagreen"; -[@bs.inline] +[@mel.inline] let lightskyblue = "lightskyblue"; -[@bs.inline] +[@mel.inline] let lightslategrey = "lightslategrey"; -[@bs.inline] +[@mel.inline] let lightsteelblue = "lightsteelblue"; -[@bs.inline] +[@mel.inline] let lightyellow = "lightyellow"; -[@bs.inline] +[@mel.inline] let lime = "lime"; -[@bs.inline] +[@mel.inline] let limegreen = "limegreen"; -[@bs.inline] +[@mel.inline] let linen = "linen"; -[@bs.inline] +[@mel.inline] let magenta = "magenta"; -[@bs.inline] +[@mel.inline] let maroon = "maroon"; -[@bs.inline] +[@mel.inline] let mediumaquamarine = "mediumaquamarine"; -[@bs.inline] +[@mel.inline] let mediumblue = "mediumblue"; -[@bs.inline] +[@mel.inline] let mediumorchid = "mediumorchid"; -[@bs.inline] +[@mel.inline] let mediumpurple = "mediumpurple"; -[@bs.inline] +[@mel.inline] let mediumseagreen = "mediumseagreen"; -[@bs.inline] +[@mel.inline] let mediumslateblue = "mediumslateblue"; -[@bs.inline] +[@mel.inline] let mediumspringgreen = "mediumspringgreen"; -[@bs.inline] +[@mel.inline] let mediumturquoise = "mediumturquoise"; -[@bs.inline] +[@mel.inline] let mediumvioletred = "mediumvioletred"; -[@bs.inline] +[@mel.inline] let midnightblue = "midnightblue"; -[@bs.inline] +[@mel.inline] let mintcream = "mintcream"; -[@bs.inline] +[@mel.inline] let mistyrose = "mistyrose"; -[@bs.inline] +[@mel.inline] let moccasin = "moccasin"; -[@bs.inline] +[@mel.inline] let navajowhite = "navajowhite"; -[@bs.inline] +[@mel.inline] let navy = "navy"; -[@bs.inline] +[@mel.inline] let oldlace = "oldlace"; -[@bs.inline] +[@mel.inline] let olive = "olive"; -[@bs.inline] +[@mel.inline] let olivedrab = "olivedrab"; -[@bs.inline] +[@mel.inline] let orange = "orange"; -[@bs.inline] +[@mel.inline] let orangered = "orangered"; -[@bs.inline] +[@mel.inline] let orchid = "orchid"; -[@bs.inline] +[@mel.inline] let palegoldenrod = "palegoldenrod"; -[@bs.inline] +[@mel.inline] let palegreen = "palegreen"; -[@bs.inline] +[@mel.inline] let paleturquoise = "paleturquoise"; -[@bs.inline] +[@mel.inline] let palevioletred = "palevioletred"; -[@bs.inline] +[@mel.inline] let papayawhip = "papayawhip"; -[@bs.inline] +[@mel.inline] let peachpuff = "peachpuff"; -[@bs.inline] +[@mel.inline] let peru = "peru"; -[@bs.inline] +[@mel.inline] let pink = "pink"; -[@bs.inline] +[@mel.inline] let plum = "plum"; -[@bs.inline] +[@mel.inline] let powderblue = "powderblue"; -[@bs.inline] +[@mel.inline] let purple = "purple"; -[@bs.inline] +[@mel.inline] let rebeccapurple = "rebeccapurple"; -[@bs.inline] +[@mel.inline] let red = "red"; -[@bs.inline] +[@mel.inline] let rosybrown = "rosybrown"; -[@bs.inline] +[@mel.inline] let royalblue = "royalblue"; -[@bs.inline] +[@mel.inline] let saddlebrown = "saddlebrown"; -[@bs.inline] +[@mel.inline] let salmon = "salmon"; -[@bs.inline] +[@mel.inline] let sandybrown = "sandybrown"; -[@bs.inline] +[@mel.inline] let seagreen = "seagreen"; -[@bs.inline] +[@mel.inline] let seashell = "seashell"; -[@bs.inline] +[@mel.inline] let sienna = "sienna"; -[@bs.inline] +[@mel.inline] let silver = "silver"; -[@bs.inline] +[@mel.inline] let skyblue = "skyblue"; -[@bs.inline] +[@mel.inline] let slateblue = "slateblue"; -[@bs.inline] +[@mel.inline] let slategray = "slategray"; -[@bs.inline] +[@mel.inline] let snow = "snow"; -[@bs.inline] +[@mel.inline] let springgreen = "springgreen"; -[@bs.inline] +[@mel.inline] let steelblue = "steelblue"; -[@bs.inline] +[@mel.inline] let tan = "tan"; -[@bs.inline] +[@mel.inline] let teal = "teal"; -[@bs.inline] +[@mel.inline] let thistle = "thistle"; -[@bs.inline] +[@mel.inline] let tomato = "tomato"; -[@bs.inline] +[@mel.inline] let turquoise = "turquoise"; -[@bs.inline] +[@mel.inline] let violet = "violet"; -[@bs.inline] +[@mel.inline] let wheat = "wheat"; -[@bs.inline] +[@mel.inline] let white = "white"; -[@bs.inline] +[@mel.inline] let whitesmoke = "whitesmoke"; -[@bs.inline] +[@mel.inline] let yellow = "yellow"; -[@bs.inline] +[@mel.inline] let yellowgreen = "yellowgreen"; diff --git a/src/apis/DatePickerAndroid.re b/src/apis/DatePickerAndroid.re index 56a0e7e23..d58eede41 100644 --- a/src/apis/DatePickerAndroid.re +++ b/src/apis/DatePickerAndroid.re @@ -9,7 +9,7 @@ external timestamp: float => date = "%identity"; type mode = [ | `calendar | `spinner | `default]; -[@bs.obj] +[@mel.obj] external options: (~date: date=?, ~minDate: date=?, ~maxDate: date=?, ~mode: mode=?, unit) => options; @@ -21,11 +21,11 @@ type response = { day: int, }; -[@bs.module "react-native"] [@bs.scope "DatePickerAndroid"] +[@mel.module "react-native"] [@mel.scope "DatePickerAndroid"] external open_: options => Js.Promise.t(response) = "open"; -[@bs.module "react-native"] [@bs.scope "DatePickerAndroid"] +[@mel.module "react-native"] [@mel.scope "DatePickerAndroid"] external dateSetAction: action = "dateSetAction"; -[@bs.module "react-native"] [@bs.scope "DatePickerAndroid"] +[@mel.module "react-native"] [@mel.scope "DatePickerAndroid"] external dismissedAction: action = "dismissedAction"; diff --git a/src/apis/DevSettings.re b/src/apis/DevSettings.re index 797575172..0dd0b4aa8 100644 --- a/src/apis/DevSettings.re +++ b/src/apis/DevSettings.re @@ -2,11 +2,11 @@ type handler = unit => unit; type reason = string; type title = string; -[@bs.scope "DevSettings"] [@bs.module "react-native"] +[@mel.scope "DevSettings"] [@mel.module "react-native"] external addMenuItem: (title, handler) => unit = "addMenuItem"; -[@bs.scope "DevSettings"] [@bs.module "react-native"] +[@mel.scope "DevSettings"] [@mel.module "react-native"] external reload: unit => unit = "reload"; -[@bs.scope "DevSettings"] [@bs.module "react-native"] +[@mel.scope "DevSettings"] [@mel.module "react-native"] external reloadWithReason: reason => unit = "reload"; diff --git a/src/apis/Dimensions.re b/src/apis/Dimensions.re index d6dc18775..1d18a168e 100644 --- a/src/apis/Dimensions.re +++ b/src/apis/Dimensions.re @@ -10,17 +10,17 @@ type handler = { window: displayMetrics, }; -[@bs.module "react-native"] [@bs.scope "Dimensions"] +[@mel.module "react-native"] [@mel.scope "Dimensions"] external get: [ | `window | `screen] => displayMetrics = "get"; type eventType = [ | `change]; -[@bs.module "react-native"] [@bs.scope "Dimensions"] +[@mel.module "react-native"] [@mel.scope "Dimensions"] external addEventListener: (eventType, handler => unit) => unit = "addEventListener"; -[@bs.module "react-native"] [@bs.scope "Dimensions"] +[@mel.module "react-native"] [@mel.scope "Dimensions"] external removeEventListener: (eventType, handler => unit) => unit = "removeEventListener"; -[@bs.module "react-native"] +[@mel.module "react-native"] external useWindowDimensions: unit => displayMetrics = "useWindowDimensions"; diff --git a/src/apis/DynamicColorIOS.re b/src/apis/DynamicColorIOS.re index 67248d307..341291add 100644 --- a/src/apis/DynamicColorIOS.re +++ b/src/apis/DynamicColorIOS.re @@ -3,4 +3,4 @@ type t = { light: Color.t, }; -[@bs.module "react-native"] external make: t => Color.t = "DynamicColorIOS"; +[@mel.module "react-native"] external make: t => Color.t = "DynamicColorIOS"; diff --git a/src/apis/Easing.re b/src/apis/Easing.re index c2d8e953d..5a680b94f 100644 --- a/src/apis/Easing.re +++ b/src/apis/Easing.re @@ -1,26 +1,26 @@ type t = float => float; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external back: float => t = "back"; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external bezier: (float, float, float, float) => t = "bezier"; -[@bs.module "react-native"] [@bs.scope "Easing"] external bounce: t = "bounce"; -[@bs.module "react-native"] [@bs.scope "Easing"] external circle: t = "circle"; -[@bs.module "react-native"] [@bs.scope "Easing"] external cubic: t = "cubic"; -[@bs.module "react-native"] [@bs.scope "Easing"] external ease: t = "ease"; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external bounce: t = "bounce"; +[@mel.module "react-native"] [@mel.scope "Easing"] external circle: t = "circle"; +[@mel.module "react-native"] [@mel.scope "Easing"] external cubic: t = "cubic"; +[@mel.module "react-native"] [@mel.scope "Easing"] external ease: t = "ease"; +[@mel.module "react-native"] [@mel.scope "Easing"] external elastic: float => t = "elastic"; -[@bs.module "react-native"] [@bs.scope "Easing"] external exp: t = "exp"; -[@bs.module "react-native"] [@bs.scope "Easing"] external in_: t => t = "in"; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external exp: t = "exp"; +[@mel.module "react-native"] [@mel.scope "Easing"] external in_: t => t = "in"; +[@mel.module "react-native"] [@mel.scope "Easing"] external inOut: t => t = "inOut"; -[@bs.module "react-native"] [@bs.scope "Easing"] external linear: t = "linear"; -[@bs.module "react-native"] [@bs.scope "Easing"] external out: t => t = "out"; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external linear: t = "linear"; +[@mel.module "react-native"] [@mel.scope "Easing"] external out: t => t = "out"; +[@mel.module "react-native"] [@mel.scope "Easing"] external poly: float => t = "poly"; -[@bs.module "react-native"] [@bs.scope "Easing"] external quad: t = "quad"; -[@bs.module "react-native"] [@bs.scope "Easing"] external sin: t = "sin"; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external quad: t = "quad"; +[@mel.module "react-native"] [@mel.scope "Easing"] external sin: t = "sin"; +[@mel.module "react-native"] [@mel.scope "Easing"] external step0: float => int = "step0"; -[@bs.module "react-native"] [@bs.scope "Easing"] +[@mel.module "react-native"] [@mel.scope "Easing"] external step1: float => int = "step1"; diff --git a/src/apis/Event.md b/src/apis/Event.md index 616bee132..c9b37f232 100644 --- a/src/apis/Event.md +++ b/src/apis/Event.md @@ -20,13 +20,13 @@ type syntheticEvent('a) = { "defaultPrevented": Js.Nullable.t(bool), "dispatchConfig": {. "registrationName": string}, "eventPhase": Js.Nullable.t(float), - [@bs.meth] "preventDefault": unit => unit, - [@bs.meth] "isDefaultPrevented": unit => bool, - [@bs.meth] "stopPropagation": unit => unit, - [@bs.meth] "isPropagationStopped": unit => bool, + [@mel.meth] "preventDefault": unit => unit, + [@mel.meth] "isDefaultPrevented": unit => bool, + [@mel.meth] "stopPropagation": unit => unit, + [@mel.meth] "isPropagationStopped": unit => bool, "isTrusted": Js.Nullable.t(bool), "nativeEvent": 'a, - [@bs.meth] "persist": unit => unit, + [@mel.meth] "persist": unit => unit, "target": Js.Nullable.t(float), "timeStamp": float, "_type": Js.Nullable.t(string), @@ -48,13 +48,13 @@ type responderSyntheticEvent('a) = { "defaultPrevented": Js.Nullable.t(bool), "dispatchConfig": {. "registrationName": string}, "eventPhase": Js.Nullable.t(float), - [@bs.meth] "preventDefault": unit => unit, - [@bs.meth] "isDefaultPrevented": unit => bool, - [@bs.meth] "stopPropagation": unit => unit, - [@bs.meth] "isPropagationStopped": unit => bool, + [@mel.meth] "preventDefault": unit => unit, + [@mel.meth] "isDefaultPrevented": unit => bool, + [@mel.meth] "stopPropagation": unit => unit, + [@mel.meth] "isPropagationStopped": unit => bool, "isTrusted": Js.Nullable.t(bool), "nativeEvent": 'a, - [@bs.meth] "persist": unit => unit, + [@mel.meth] "persist": unit => unit, "target": Js.Nullable.t(float), "timeStamp": float, "_type": Js.Nullable.t(string), diff --git a/src/apis/Event.re b/src/apis/Event.re index 2972dff50..97ea748c7 100644 --- a/src/apis/Event.re +++ b/src/apis/Event.re @@ -3,31 +3,31 @@ type registrationName = {registrationName: string}; module EventMethods = (T: {type event;}) => { - [@bs.get] [@bs.return nullable] + [@mel.get] [@mel.return nullable] external bubbles: T.event => option(bool) = "bubbles"; - [@bs.get] [@bs.return nullable] + [@mel.get] [@mel.return nullable] external cancelable: T.event => option(bool) = "cancelable"; - [@bs.get] external currentTarget: T.event => float = "currentTarget"; - [@bs.get] [@bs.return nullable] + [@mel.get] external currentTarget: T.event => float = "currentTarget"; + [@mel.get] [@mel.return nullable] external defaultPrevented: T.event => option(bool) = "defaultPrevented"; - [@bs.get] + [@mel.get] external dispatchConfig: T.event => registrationName = "dispatchConfig"; - [@bs.get] [@bs.return nullable] + [@mel.get] [@mel.return nullable] external eventPhase: T.event => option(float) = "eventPhase"; - [@bs.send] external preventDefault: T.event => unit = "preventDefault"; - [@bs.send] + [@mel.send] external preventDefault: T.event => unit = "preventDefault"; + [@mel.send] external isDefaultPrevented: T.event => bool = "isDefaultPrevented"; - [@bs.send] external stopPropagation: T.event => unit = "stopPropagation"; - [@bs.send] + [@mel.send] external stopPropagation: T.event => unit = "stopPropagation"; + [@mel.send] external isPropagationStopped: T.event => bool = "isPropagationStopped"; - [@bs.get] [@bs.return nullable] + [@mel.get] [@mel.return nullable] external isTrusted: T.event => option(bool) = "isTrusted"; - [@bs.get] external nativeEvent: T.event => 'a = "nativeEvent"; - [@bs.send] external persist: T.event => unit = "persist"; - [@bs.get] [@bs.return nullable] + [@mel.get] external nativeEvent: T.event => 'a = "nativeEvent"; + [@mel.send] external persist: T.event => unit = "persist"; + [@mel.get] [@mel.return nullable] external target: T.event => option(float) = "target"; - [@bs.get] external timeStamp: T.event => float = "timeStamp"; - [@bs.get] [@bs.return nullable] + [@mel.get] external timeStamp: T.event => float = "timeStamp"; + [@mel.get] [@mel.return nullable] external _type: T.event => option(string) = "type"; }; @@ -43,7 +43,7 @@ module SyntheticEvent = (T: {type _payload;}) => { nativeEvent: T._payload, target: Js.Nullable.t(float), timeStamp: float, - [@bs.as "type"] + [@mel.as "type"] _type: Js.Nullable.t(string), }; @@ -84,7 +84,7 @@ module ResponderSyntheticEvent = (T: {type _payload;}) => { nativeEvent: T._payload, target: Js.Nullable.t(float), timeStamp: float, - [@bs.as "type"] + [@mel.as "type"] _type: Js.Nullable.t(string), touchHistory, }; @@ -93,7 +93,7 @@ module ResponderSyntheticEvent = (T: {type _payload;}) => { type event = t; }); - [@bs.get] external touchHistory: t => touchHistory = "touchHistory"; + [@mel.get] external touchHistory: t => touchHistory = "touchHistory"; }; module LayoutEvent = { diff --git a/src/apis/EventSubscription.re b/src/apis/EventSubscription.re index 5c6a7f32c..6abf20a8e 100644 --- a/src/apis/EventSubscription.re +++ b/src/apis/EventSubscription.re @@ -1,3 +1,3 @@ type t; -[@bs.send] external remove: t => unit = "remove"; +[@mel.send] external remove: t => unit = "remove"; diff --git a/src/apis/Global.re b/src/apis/Global.re index 8d24772ee..33425bc91 100644 --- a/src/apis/Global.re +++ b/src/apis/Global.re @@ -1,4 +1,4 @@ -[@bs.val] external __DEV__: bool = "__DEV__"; + external __DEV__: bool = "__DEV__"; -[@bs.scope "global"] [@bs.val] +[@mel.scope "global"] external hermesInternal: option(Js.t('a)) = "HermesInternal"; diff --git a/src/apis/ImagePickerIOS.re b/src/apis/ImagePickerIOS.re index 2b1ebe676..9105a3d9a 100644 --- a/src/apis/ImagePickerIOS.re +++ b/src/apis/ImagePickerIOS.re @@ -1,21 +1,21 @@ type imageUri = string; -[@bs.module "react-native"] [@bs.scope "ImagePickerIOS"] +[@mel.module "react-native"] [@mel.scope "ImagePickerIOS"] external canUseCamera: (bool => unit) => unit = "canUseCamera"; -[@bs.module "react-native"] [@bs.scope "ImagePickerIOS"] +[@mel.module "react-native"] [@mel.scope "ImagePickerIOS"] external canRecordVideos: (bool => unit) => unit = "canRecordVideos"; type cameraDialogConfig; -[@bs.obj] +[@mel.obj] external cameraDialogConfig: (~videoMode: bool=?, unit) => cameraDialogConfig; type selectDialogConfig; -[@bs.obj] +[@mel.obj] external selectDialogConfig: (~showImages: bool=?, ~showVideos: bool=?, unit) => selectDialogConfig; -[@bs.module "react-native"] [@bs.scope "ImagePickerIOS"] +[@mel.module "react-native"] [@mel.scope "ImagePickerIOS"] external openCameraDialog: ( ~config: cameraDialogConfig, @@ -25,7 +25,7 @@ external openCameraDialog: unit = "openCameraDialog"; -[@bs.module "react-native"] [@bs.scope "ImagePickerIOS"] +[@mel.module "react-native"] [@mel.scope "ImagePickerIOS"] external openSelectDialog: ( ~config: selectDialogConfig, diff --git a/src/apis/InteractionManager.re b/src/apis/InteractionManager.re index d4e39cac8..e38a39ee0 100644 --- a/src/apis/InteractionManager.re +++ b/src/apis/InteractionManager.re @@ -4,18 +4,18 @@ type interactionHandle; -[@bs.module "react-native"] [@bs.scope "InteractionManager"] +[@mel.module "react-native"] [@mel.scope "InteractionManager"] /* @todo this returns a cancellable "promise", we need to type return correctly */ external runAfterInteractions: (unit => unit) => Js.t({.}) = "runAfterInteractions"; -[@bs.module "react-native"] [@bs.scope "InteractionManager"] +[@mel.module "react-native"] [@mel.scope "InteractionManager"] external createInteractionHandle: unit => interactionHandle = "createInteractionHandle"; -[@bs.module "react-native"] [@bs.scope "InteractionManager"] +[@mel.module "react-native"] [@mel.scope "InteractionManager"] external clearInteractionHandle: interactionHandle => unit = "clearInteractionHandle"; -[@bs.module "react-native"] [@bs.scope "InteractionManager"] +[@mel.module "react-native"] [@mel.scope "InteractionManager"] external setDeadline: float => unit = "setDeadline"; diff --git a/src/apis/Keyboard.re b/src/apis/Keyboard.re index da82f62ab..0919bb2cd 100644 --- a/src/apis/Keyboard.re +++ b/src/apis/Keyboard.re @@ -24,15 +24,15 @@ type keyboardEvent = { type listener = keyboardEvent => unit; -[@bs.module "react-native"] [@bs.scope "Keyboard"] +[@mel.module "react-native"] [@mel.scope "Keyboard"] external addListener: (eventType, listener) => EventSubscription.t = "addListener"; -[@bs.module "react-native"] [@bs.scope "Keyboard"] +[@mel.module "react-native"] [@mel.scope "Keyboard"] external removeAllListeners: eventType => unit = "removeAllListeners"; -[@bs.module "react-native"] [@bs.scope "Keyboard"] +[@mel.module "react-native"] [@mel.scope "Keyboard"] external removeListener: (eventType, listener) => unit = "removeListener"; -[@bs.module "react-native"] [@bs.scope "Keyboard"] +[@mel.module "react-native"] [@mel.scope "Keyboard"] external dismiss: unit => unit = "dismiss"; diff --git a/src/apis/LayoutAnimation.re b/src/apis/LayoutAnimation.re index 4150fb62a..16f1f2fc9 100644 --- a/src/apis/LayoutAnimation.re +++ b/src/apis/LayoutAnimation.re @@ -10,7 +10,7 @@ type animationType = [ type property = [ | `opacity | `scaleX | `scaleY | `scaleXY]; type animationConfig; -[@bs.obj] +[@mel.obj] external animationConfig: ( ~duration: float=?, @@ -24,7 +24,7 @@ external animationConfig: animationConfig; type layoutAnimationConfig; -[@bs.obj] +[@mel.obj] external layoutAnimationConfig: ( ~duration: float, @@ -36,37 +36,37 @@ external layoutAnimationConfig: layoutAnimationConfig; // multiple externals -[@bs.module "react-native"] [@bs.scope "LayoutAnimation"] +[@mel.module "react-native"] [@mel.scope "LayoutAnimation"] external configureNext: layoutAnimationConfig => unit = "configureNext"; // multiple externals -[@bs.module "react-native"] [@bs.scope "LayoutAnimation"] +[@mel.module "react-native"] [@mel.scope "LayoutAnimation"] external configureNextWithEndCallback: (layoutAnimationConfig, unit => unit) => unit = "configureNext"; -[@bs.module "react-native"] [@bs.scope "LayoutAnimation"] +[@mel.module "react-native"] [@mel.scope "LayoutAnimation"] external create: (~duration: float, ~_type: animationType, ~property: property) => layoutAnimationConfig = "create"; -[@bs.module "react-native"] [@bs.scope "LayoutAnimation"] +[@mel.module "react-native"] [@mel.scope "LayoutAnimation"] external easeInEaseOut: unit => unit = "easeInEaseOut"; -[@bs.module "react-native"] [@bs.scope "LayoutAnimation"] +[@mel.module "react-native"] [@mel.scope "LayoutAnimation"] external linear: unit => unit = "linear"; -[@bs.module "react-native"] [@bs.scope "LayoutAnimation"] +[@mel.module "react-native"] [@mel.scope "LayoutAnimation"] external spring: unit => unit = "spring"; module Presets = { - [@bs.module "react-native"] [@bs.scope ("LayoutAnimation", "Presets")] + [@mel.module "react-native"] [@mel.scope ("LayoutAnimation", "Presets")] external easeInEaseOut: layoutAnimationConfig = "easeInEaseOut"; - [@bs.module "react-native"] [@bs.scope ("LayoutAnimation", "Presets")] + [@mel.module "react-native"] [@mel.scope ("LayoutAnimation", "Presets")] external linear: layoutAnimationConfig = "linear"; - [@bs.module "react-native"] [@bs.scope ("LayoutAnimation", "Presets")] + [@mel.module "react-native"] [@mel.scope ("LayoutAnimation", "Presets")] external spring: layoutAnimationConfig = "spring"; }; diff --git a/src/apis/Linking.re b/src/apis/Linking.re index 80a8c4228..da30299d1 100644 --- a/src/apis/Linking.re +++ b/src/apis/Linking.re @@ -1,35 +1,35 @@ type extra; -[@bs.obj] external extra: (~key: string, ~value: 'a) => extra; +[@mel.obj] external extra: (~key: string, ~value: 'a) => extra; -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external openURL: string => Js.Promise.t(unit) = "openURL"; -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external canOpenURL: string => Js.Promise.t(bool) = "canOpenURL"; -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external getInitialURL: unit => Js.Promise.t(Js.Null.t(string)) = "getInitialURL"; -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external openSettings: unit => Js.Promise.t('a) = "openSettings"; // multiple externals -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external sendIntent: string => unit = "sendIntent"; // multiple externals -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external sendIntentWithExtras: (string, array(extra)) => unit = "sendIntent"; type url = {url: string}; type eventType = [ | `url]; -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external addEventListener: (eventType, url => unit) => unit = "addEventListener"; -[@bs.scope "Linking"] [@bs.module "react-native"] +[@mel.scope "Linking"] [@mel.module "react-native"] external removeEventListener: (eventType, url => unit) => unit = "removeEventListener"; diff --git a/src/apis/LogBox.re b/src/apis/LogBox.re index a7d6914c6..c6ca09110 100644 --- a/src/apis/LogBox.re +++ b/src/apis/LogBox.re @@ -1,5 +1,5 @@ -[@bs.module "react-native"] [@bs.scope "LogBox"] +[@mel.module "react-native"] [@mel.scope "LogBox"] external ignoreLogs: array(string) => unit = "ignoreLogs"; -[@bs.module "react-native"] [@bs.scope "LogBox"] +[@mel.module "react-native"] [@mel.scope "LogBox"] external ignoreAllLogs: unit => unit = "ignoreAllLogs"; diff --git a/src/apis/NativeEventEmitter.re b/src/apis/NativeEventEmitter.re index c6cc7fcb6..afe14d496 100644 --- a/src/apis/NativeEventEmitter.re +++ b/src/apis/NativeEventEmitter.re @@ -2,20 +2,20 @@ type t; type subscription; -[@bs.new] [@bs.module "react-native"] +[@mel.new] [@mel.module "react-native"] external make: 'nativeModule => t = "NativeEventEmitter"; -[@bs.send] +[@mel.send] external addListener: (t, string, 'a => unit) => subscription = "addListener"; -[@bs.send] +[@mel.send] external removeAllListeners: (t, string) => unit = "removeAllListeners"; -[@bs.send] +[@mel.send] external removeSubscription: (t, subscription) => unit = "removeSubscription"; -[@bs.send] external listenerCount: (t, string) => unit = "listenerCount"; +[@mel.send] external listenerCount: (t, string) => unit = "listenerCount"; module Subscription = { - [@bs.send] external remove: (subscription, unit) => unit = "remove"; + [@mel.send] external remove: (subscription, unit) => unit = "remove"; }; diff --git a/src/apis/NativeModules.re b/src/apis/NativeModules.re index e64431ebc..5709afd55 100644 --- a/src/apis/NativeModules.re +++ b/src/apis/NativeModules.re @@ -1,12 +1,12 @@ // We recommend that you bind your own custom native modules like this: // -// [@bs.module "react-native"] [@bs.scope ("NativeModules", "MyCustomModule")] +// [@mel.module "react-native"] [@mel.scope ("NativeModules", "MyCustomModule")] // external myFunc: unit => unit = "myFunc" -[@bs.module "react-native"] +[@mel.module "react-native"] external nativeModules: Js.Dict.t('a) = "NativeModules"; -[@bs.module "react-native"] +[@mel.module "react-native"] external requireNativeComponent: - (string, [@bs.as {json|null|json}] _) => React.component('a) = + (string, [@mel.as {json|null|json}] _) => React.component('a) = "requireNativeComponent"; diff --git a/src/apis/Packager.re b/src/apis/Packager.re index 79ce27704..cc29a2d45 100644 --- a/src/apis/Packager.re +++ b/src/apis/Packager.re @@ -1,3 +1,3 @@ type required; -[@bs.val] external require: string => required = "require"; + external require: string => required = "require"; diff --git a/src/apis/PanResponder.re b/src/apis/PanResponder.re index 8f784966f..c894394dd 100644 --- a/src/apis/PanResponder.re +++ b/src/apis/PanResponder.re @@ -16,7 +16,7 @@ type config; type panHandlers; type callback('a) = Event.pressEvent => 'a; -[@bs.obj] +[@mel.obj] external config: ( ~onMoveShouldSetPanResponder: (Event.pressEvent, gestureState) => bool=?, @@ -41,40 +41,40 @@ external config: ) => config; -[@bs.module "react-native"] [@bs.scope "PanResponder"] +[@mel.module "react-native"] [@mel.scope "PanResponder"] external create: config => t = "create"; -[@bs.get] external panHandlers: t => panHandlers = "panHandlers"; +[@mel.get] external panHandlers: t => panHandlers = "panHandlers"; -[@bs.get] +[@mel.get] external onMoveShouldSetResponder: panHandlers => callback(bool) = "onMoveShouldSetResponder"; -[@bs.get] +[@mel.get] external onMoveShouldSetResponderCapture: panHandlers => callback(bool) = "onMoveShouldSetResponderCapture"; -[@bs.get] +[@mel.get] external onStartShouldSetResponder: panHandlers => callback(bool) = "onStartShouldSetResponder"; -[@bs.get] +[@mel.get] external onStartShouldSetResponderCapture: panHandlers => callback(bool) = "onStartShouldSetResponderCapture"; -[@bs.get] +[@mel.get] external onResponderReject: panHandlers => callback(unit) = "onResponderReject"; -[@bs.get] +[@mel.get] external onResponderGrant: panHandlers => callback(unit) = "onResponderGrant"; -[@bs.get] +[@mel.get] external onResponderRelease: panHandlers => callback(unit) = "onResponderRelease"; -[@bs.get] +[@mel.get] external onResponderMove: panHandlers => callback(unit) = "onResponderMove"; -[@bs.get] +[@mel.get] external onResponderTerminate: panHandlers => callback(unit) = "onResponderTerminate"; -[@bs.get] +[@mel.get] external onResponderTerminationRequest: panHandlers => callback(bool) = "onResponderTerminationRequest"; -[@bs.get] +[@mel.get] external onResponderStart: panHandlers => callback(unit) = "onResponderStart"; -[@bs.get] +[@mel.get] external onResponderEnd: panHandlers => callback(unit) = "onResponderEnd"; diff --git a/src/apis/PermissionsAndroid.re b/src/apis/PermissionsAndroid.re index 42b5e3a20..261b17a9f 100644 --- a/src/apis/PermissionsAndroid.re +++ b/src/apis/PermissionsAndroid.re @@ -1,122 +1,122 @@ module Permission = { type t = string; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readCalendar: t = "READ_CALENDAR"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeCalendar: t = "WRITE_CALENDAR"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external camera: t = "CAMERA"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readContacts: t = "READ_CONTACTS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeContacts: t = "WRITE_CONTACTS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external getAccounts: t = "GET_ACCOUNTS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external accessFineLocation: t = "ACCESS_FINE_LOCATION"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external accessCoarseLocation: t = "ACCESS_COARSE_LOCATION"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external accessBackgroundLocation: t = "ACCESS_BACKGROUND_LOCATION"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external recordAudio: t = "RECORD_AUDIO"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readPhoneState: t = "READ_PHONE_STATE"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external callPhone: t = "CALL_PHONE"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readCallLog: t = "READ_CALL_LOG"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeCallLog: t = "WRITE_CALL_LOG"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external addVoicemail: t = "ADD_VOICEMAIL"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external useSip: t = "USE_SIP"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external processOutgoingCalls: t = "PROCESS_OUTGOING_CALLS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external bodySensors: t = "BODY_SENSORS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external sendSms: t = "SEND_SMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external receiveSms: t = "RECEIVE_SMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readSms: t = "READ_SMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external receiveWapPush: t = "RECEIVE_WAP_PUSH"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external receiveMms: t = "RECEIVE_MMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readExternalStorage: t = "READ_EXTERNAL_STORAGE"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeExternalStorage: t = "WRITE_EXTERNAL_STORAGE"; }; module Result = { type t; - [@bs.module "react-native"] [@bs.scope ("PermissionsAndroid", "RESULTS")] + [@mel.module "react-native"] [@mel.scope ("PermissionsAndroid", "RESULTS")] external granted: t = "GRANTED"; - [@bs.module "react-native"] [@bs.scope ("PermissionsAndroid", "RESULTS")] + [@mel.module "react-native"] [@mel.scope ("PermissionsAndroid", "RESULTS")] external denied: t = "DENIED"; - [@bs.module "react-native"] [@bs.scope ("PermissionsAndroid", "RESULTS")] + [@mel.module "react-native"] [@mel.scope ("PermissionsAndroid", "RESULTS")] external neverAskAgain: t = "NEVER_ASK_AGAIN"; }; type rationale; -[@bs.obj] +[@mel.obj] external rationale: ( ~title: string, @@ -130,21 +130,21 @@ external rationale: type dict = Js.Dict.t(Result.t); -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external check: Permission.t => Js.Promise.t(bool) = "check"; // multiple externals -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external request: Permission.t => Js.Promise.t(Result.t) = "request"; // multiple externals -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external requestWithRationale: (Permission.t, rationale) => Js.Promise.t(Result.t) = "request"; -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external requestMultiple: array(Permission.t) => Js.Promise.t(dict) = "requestMultiple"; -[@bs.get_index] external get: (dict, Permission.t) => option(Result.t); +[@mel.get_index] external get: (dict, Permission.t) => option(Result.t); diff --git a/src/apis/PermissionsAndroid.rei b/src/apis/PermissionsAndroid.rei index b98a74dc3..132bfcf0e 100644 --- a/src/apis/PermissionsAndroid.rei +++ b/src/apis/PermissionsAndroid.rei @@ -1,122 +1,122 @@ module Permission: { type t; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readCalendar: t = "READ_CALENDAR"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeCalendar: t = "WRITE_CALENDAR"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external camera: t = "CAMERA"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readContacts: t = "READ_CONTACTS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeContacts: t = "WRITE_CONTACTS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external getAccounts: t = "GET_ACCOUNTS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external accessFineLocation: t = "ACCESS_FINE_LOCATION"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external accessCoarseLocation: t = "ACCESS_COARSE_LOCATION"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external accessBackgroundLocation: t = "ACCESS_BACKGROUND_LOCATION"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external recordAudio: t = "RECORD_AUDIO"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readPhoneState: t = "READ_PHONE_STATE"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external callPhone: t = "CALL_PHONE"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readCallLog: t = "READ_CALL_LOG"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeCallLog: t = "WRITE_CALL_LOG"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external addVoicemail: t = "ADD_VOICEMAIL"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external useSip: t = "USE_SIP"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external processOutgoingCalls: t = "PROCESS_OUTGOING_CALLS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external bodySensors: t = "BODY_SENSORS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external sendSms: t = "SEND_SMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external receiveSms: t = "RECEIVE_SMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readSms: t = "READ_SMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external receiveWapPush: t = "RECEIVE_WAP_PUSH"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external receiveMms: t = "RECEIVE_MMS"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external readExternalStorage: t = "READ_EXTERNAL_STORAGE"; - [@bs.module "react-native"] - [@bs.scope ("PermissionsAndroid", "PERMISSIONS")] + [@mel.module "react-native"] + [@mel.scope ("PermissionsAndroid", "PERMISSIONS")] external writeExternalStorage: t = "WRITE_EXTERNAL_STORAGE"; }; module Result: { type t; - [@bs.module "react-native"] [@bs.scope ("PermissionsAndroid", "RESULTS")] + [@mel.module "react-native"] [@mel.scope ("PermissionsAndroid", "RESULTS")] external granted: t = "GRANTED"; - [@bs.module "react-native"] [@bs.scope ("PermissionsAndroid", "RESULTS")] + [@mel.module "react-native"] [@mel.scope ("PermissionsAndroid", "RESULTS")] external denied: t = "DENIED"; - [@bs.module "react-native"] [@bs.scope ("PermissionsAndroid", "RESULTS")] + [@mel.module "react-native"] [@mel.scope ("PermissionsAndroid", "RESULTS")] external neverAskAgain: t = "NEVER_ASK_AGAIN"; }; type rationale; -[@bs.obj] +[@mel.obj] external rationale: ( ~title: string, @@ -130,21 +130,21 @@ external rationale: type dict; -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external check: Permission.t => Js.Promise.t(bool) = "check"; // multiple externals -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external request: Permission.t => Js.Promise.t(Result.t) = "request"; // multiple externals -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external requestWithRationale: (Permission.t, rationale) => Js.Promise.t(Result.t) = "request"; -[@bs.scope "PermissionsAndroid"] [@bs.module "react-native"] +[@mel.scope "PermissionsAndroid"] [@mel.module "react-native"] external requestMultiple: array(Permission.t) => Js.Promise.t(dict) = "requestMultiple"; -[@bs.get_index] external get: (dict, Permission.t) => option(Result.t); +[@mel.get_index] external get: (dict, Permission.t) => option(Result.t); diff --git a/src/apis/PixelRatio.re b/src/apis/PixelRatio.re index 7bf169c0e..3ec3ffa5e 100644 --- a/src/apis/PixelRatio.re +++ b/src/apis/PixelRatio.re @@ -1,11 +1,11 @@ -[@bs.scope "PixelRatio"] [@bs.module "react-native"] +[@mel.scope "PixelRatio"] [@mel.module "react-native"] external get: unit => float = "get"; -[@bs.scope "PixelRatio"] [@bs.module "react-native"] +[@mel.scope "PixelRatio"] [@mel.module "react-native"] external getFontScale: unit => float = "getFontScale"; -[@bs.scope "PixelRatio"] [@bs.module "react-native"] +[@mel.scope "PixelRatio"] [@mel.module "react-native"] external getPixelSizeForLayoutSize: float => int = "getPixelSizeForLayoutSize"; -[@bs.scope "PixelRatio"] [@bs.module "react-native"] +[@mel.scope "PixelRatio"] [@mel.module "react-native"] external roundToNearestPixel: float => float = "roundToNearestPixel"; diff --git a/src/apis/Platform.re b/src/apis/Platform.re index 9ab128d53..85a3bd842 100644 --- a/src/apis/Platform.re +++ b/src/apis/Platform.re @@ -1,15 +1,15 @@ type os = string; -[@bs.module "react-native"] [@bs.scope "Platform"] external os: os = "OS"; +[@mel.module "react-native"] [@mel.scope "Platform"] external os: os = "OS"; -[@bs.inline] +[@mel.inline] let ios = "ios"; -[@bs.inline] +[@mel.inline] let android = "android"; // react-native-web -[@bs.inline] +[@mel.inline] let web = "web"; external unsafe: string => os = "%identity"; diff --git a/src/apis/Platform.rei b/src/apis/Platform.rei index d4caca592..b61f232c4 100644 --- a/src/apis/Platform.rei +++ b/src/apis/Platform.rei @@ -1,15 +1,15 @@ type os = pri string; -[@bs.module "react-native"] [@bs.scope "Platform"] external os: os = "OS"; +[@mel.module "react-native"] [@mel.scope "Platform"] external os: os = "OS"; -[@bs.inline "ios"] +[@mel.inline "ios"] let ios: os; -[@bs.inline "android"] +[@mel.inline "android"] let android: os; // react-native-web -[@bs.inline "web"] +[@mel.inline "web"] let web: os; external unsafe: string => os = "%identity"; diff --git a/src/apis/PlatformColor.re b/src/apis/PlatformColor.re index 0b038827c..464579466 100644 --- a/src/apis/PlatformColor.re +++ b/src/apis/PlatformColor.re @@ -1,31 +1,31 @@ -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet: string => Color.t = "PlatformColor"; -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet2: (string, string) => Color.t = "PlatformColor"; -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet3: (string, string, string) => Color.t = "PlatformColor"; -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet4: (string, string, string, string) => Color.t = "PlatformColor"; -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet5: (string, string, string, string, string) => Color.t = "PlatformColor"; -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet6: (string, string, string, string, string, string) => Color.t = "PlatformColor"; -[@bs.module "react-native"] +[@mel.module "react-native"] external unsafeGet7: (string, string, string, string, string, string, string) => Color.t = "PlatformColor"; -[@bs.module "react-native"] [@bs.variadic] +[@mel.module "react-native"] [@mel.variadic] external unsafeGetMultiple: array(string) => Color.t = "PlatformColor"; module Ios = { @@ -52,18 +52,18 @@ module Ios = { | `tertiarySystemFill | `tertiarySystemGroupedBackground ]; - [@bs.module "react-native"] external get: t => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get: t => Color.t = "PlatformColor"; + [@mel.module "react-native"] external get2: (t, t) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get3: (t, t, t) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get4: (t, t, t, t) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get5: (t, t, t, t, t) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get6: (t, t, t, t, t, t) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get7: (t, t, t, t, t, t) => Color.t = "PlatformColor"; }; @@ -73,1779 +73,1779 @@ module Android = { [@deprecated "Please use PlatformColor.unsafeGet instead of PlatformColor.Android.unsafeGet" ] - [@bs.module "react-native"] + [@mel.module "react-native"] external unsafeGet: string => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external getColor: ( - [@bs.string] + [@mel.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external getAttr: ( - [@bs.string] + [@mel.string] [ - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get2: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get3: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get4: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get5: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get6: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = "PlatformColor"; - [@bs.module "react-native"] + [@mel.module "react-native"] external get7: ( - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ], - [@bs.string] [ - | [@bs.as "@android:color/background_dark"] `background_dark - | [@bs.as "@android:color/background_light"] `background_light - | [@bs.as "@android:color/black"] `black - | [@bs.as "@android:color/darker_gray"] `darker_gray - | [@bs.as "@android:color/holo_blue_bright"] `holo_blue_bright - | [@bs.as "@android:color/holo_blue_dark"] `holo_blue_dark - | [@bs.as "@android:color/holo_blue_light"] `holo_blue_light - | [@bs.as "@android:color/holo_green_dark"] `holo_green_dark - | [@bs.as "@android:color/holo_green_light"] `holo_green_light - | [@bs.as "@android:color/holo_orange_dark"] `holo_orange_dark - | [@bs.as "@android:color/holo_orange_light"] `holo_orange_light - | [@bs.as "@android:color/holo_purple"] `holo_purple - | [@bs.as "@android:color/holo_red_dark"] `holo_red_dark - | [@bs.as "@android:color/holo_red_light"] `holo_red_light - | [@bs.as "@android:color/primary_text_dark"] `primary_text_dark - | [@bs.as "@android:color/primary_text_dark_nodisable"] + [@mel.string] [ + | [@mel.as "@android:color/background_dark"] `background_dark + | [@mel.as "@android:color/background_light"] `background_light + | [@mel.as "@android:color/black"] `black + | [@mel.as "@android:color/darker_gray"] `darker_gray + | [@mel.as "@android:color/holo_blue_bright"] `holo_blue_bright + | [@mel.as "@android:color/holo_blue_dark"] `holo_blue_dark + | [@mel.as "@android:color/holo_blue_light"] `holo_blue_light + | [@mel.as "@android:color/holo_green_dark"] `holo_green_dark + | [@mel.as "@android:color/holo_green_light"] `holo_green_light + | [@mel.as "@android:color/holo_orange_dark"] `holo_orange_dark + | [@mel.as "@android:color/holo_orange_light"] `holo_orange_light + | [@mel.as "@android:color/holo_purple"] `holo_purple + | [@mel.as "@android:color/holo_red_dark"] `holo_red_dark + | [@mel.as "@android:color/holo_red_light"] `holo_red_light + | [@mel.as "@android:color/primary_text_dark"] `primary_text_dark + | [@mel.as "@android:color/primary_text_dark_nodisable"] `primary_text_dark_nodisable - | [@bs.as "@android:color/primary_text_light"] `primary_text_light - | [@bs.as "@android:color/primary_text_light_nodisable"] + | [@mel.as "@android:color/primary_text_light"] `primary_text_light + | [@mel.as "@android:color/primary_text_light_nodisable"] `primary_text_light_nodisable - | [@bs.as "@android:color/secondary_text_dark"] `secondary_text_dark - | [@bs.as "@android:color/secondary_text_dark_nodisable"] + | [@mel.as "@android:color/secondary_text_dark"] `secondary_text_dark + | [@mel.as "@android:color/secondary_text_dark_nodisable"] `secondary_text_dark_nodisable - | [@bs.as "@android:color/secondary_text_light"] `secondary_text_light - | [@bs.as "@android:color/secondary_text_light_nodisable"] + | [@mel.as "@android:color/secondary_text_light"] `secondary_text_light + | [@mel.as "@android:color/secondary_text_light_nodisable"] `secondary_text_light_nodisable - | [@bs.as "@android:color/tab_indicator_text"] `tab_indicator_text - | [@bs.as "@android:color/tertiary_text_dark"] `tertiary_text_dark - | [@bs.as "@android:color/tertiary_text_light"] `tertiary_text_light - | [@bs.as "@android:color/transparent"] `transparent - | [@bs.as "@android:color/white"] `white - | [@bs.as "@android:color/widget_edittext_dark"] `widget_edittext_dark - | [@bs.as "?android:attr/colorAccent"] `colorAccent - | [@bs.as "?android:attr/colorActivatedHighlight"] + | [@mel.as "@android:color/tab_indicator_text"] `tab_indicator_text + | [@mel.as "@android:color/tertiary_text_dark"] `tertiary_text_dark + | [@mel.as "@android:color/tertiary_text_light"] `tertiary_text_light + | [@mel.as "@android:color/transparent"] `transparent + | [@mel.as "@android:color/white"] `white + | [@mel.as "@android:color/widget_edittext_dark"] `widget_edittext_dark + | [@mel.as "?android:attr/colorAccent"] `colorAccent + | [@mel.as "?android:attr/colorActivatedHighlight"] `colorActivatedHighlight - | [@bs.as "?android:attr/colorBackground"] `colorBackground - | [@bs.as "?android:attr/colorBackgroundFloating"] + | [@mel.as "?android:attr/colorBackground"] `colorBackground + | [@mel.as "?android:attr/colorBackgroundFloating"] `colorBackgroundFloating - | [@bs.as "?android:attr/colorButtonNormal"] `colorButtonNormal - | [@bs.as "?android:attr/colorControlHighlight"] `colorControlHighlight - | [@bs.as "?android:attr/colorControlNormal"] `colorControlNormal - | [@bs.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect - | [@bs.as "?android:attr/colorError"] `colorError - | [@bs.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight - | [@bs.as "?android:attr/colorForeground"] `colorForeground - | [@bs.as "?android:attr/colorForegroundInverse"] + | [@mel.as "?android:attr/colorButtonNormal"] `colorButtonNormal + | [@mel.as "?android:attr/colorControlHighlight"] `colorControlHighlight + | [@mel.as "?android:attr/colorControlNormal"] `colorControlNormal + | [@mel.as "?android:attr/colorEdgeEffect"] `colorEdgeEffect + | [@mel.as "?android:attr/colorError"] `colorError + | [@mel.as "?android:attr/colorFocusedHighlight"] `colorFocusedHighlight + | [@mel.as "?android:attr/colorForeground"] `colorForeground + | [@mel.as "?android:attr/colorForegroundInverse"] `colorForegroundInverse - | [@bs.as "?android:attr/colorLongPressedHighlight"] + | [@mel.as "?android:attr/colorLongPressedHighlight"] `colorLongPressedHighlight - | [@bs.as "?android:attr/colorMultiSelectHighlight"] + | [@mel.as "?android:attr/colorMultiSelectHighlight"] `colorMultiSelectHighlight - | [@bs.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight - | [@bs.as "?android:attr/colorPrimary"] `colorPrimary - | [@bs.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark - | [@bs.as "?android:attr/colorSecondary"] `colorSecondary + | [@mel.as "?android:attr/colorPressedHighlight"] `colorPressedHighlight + | [@mel.as "?android:attr/colorPrimary"] `colorPrimary + | [@mel.as "?android:attr/colorPrimaryDark"] `colorPrimaryDark + | [@mel.as "?android:attr/colorSecondary"] `colorSecondary ] ) => Color.t = diff --git a/src/apis/PushNotificationIOS.re b/src/apis/PushNotificationIOS.re index f76384834..89ddbdcd1 100644 --- a/src/apis/PushNotificationIOS.re +++ b/src/apis/PushNotificationIOS.re @@ -1,28 +1,28 @@ module Notification = { type t; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getAlert: t => option(Js.Json.t) = "getAlert"; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getMessage: t => option(Js.Json.t) = "getMessage"; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getSound: t => option(string) = "getSound"; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getCategory: t => option(string) = "getCategory"; // Actually type ContentAvailable = 1 | null | void ... - [@bs.send] external getContentAvailable: t => bool = "getContentAvailable"; + [@mel.send] external getContentAvailable: t => bool = "getContentAvailable"; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getBadgeCount: t => option(int) = "getBadgeCount"; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getData: t => option(Js.Json.t) = "getData"; - [@bs.send] [@bs.return nullable] + [@mel.send] [@mel.return nullable] external getThreadID: t => option(string) = "getThreadID"; }; @@ -30,7 +30,7 @@ type localNotification; type repeatInterval = [ | `minute | `hour | `day | `week | `month | `year]; -[@bs.obj] +[@mel.obj] external localNotification: ( ~alertBody: string=?, @@ -47,19 +47,19 @@ external localNotification: ) => localNotification; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external presentLocalNotification: localNotification => unit = "presentLocalNotification"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external scheduleLocalNotification: localNotification => unit = "scheduleLocalNotification"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external cancelAllLocalNotifications: unit => unit = "cancelAllLocalNotifications"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external removeAllDeliveredNotifications: unit => unit = "removeAllDeliveredNotifications"; @@ -69,34 +69,34 @@ type deliveredNotification = { title: Js.Nullable.t(string), body: Js.Nullable.t(string), category: Js.Nullable.t(string), - [@bs.as "thread-id"] + [@mel.as "thread-id"] threadId: Js.Nullable.t(string), userInfo: Js.Nullable.t(Js.Json.t), }; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external getDeliveredNotifications: (array(deliveredNotification) => unit) => unit = "getDeliveredNotifications"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external removeDeliveredNotifications: (~identifiers: array(string)) => unit = "removeDeliveredNotifications"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external setApplicationIconBadgeNumber: int => unit = "setApplicationIconBadgeNumber"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external getApplicationIconBadgeNumber: (int => unit) => unit = "getApplicationIconBadgeNumber"; // multiple externals -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external cancelLocalNotifications: unit => unit = "cancelLocalNotifications"; // multiple externals -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external cancelLocalNotificationsWithUserInfo: Js.Json.t => unit = "cancelLocalNotifications"; @@ -110,7 +110,7 @@ type formattedLocalNotification = { userInfo: Js.Nullable.t(Js.Json.t), }; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external getScheduledLocalNotifications: (array(formattedLocalNotification) => unit) => unit = "getScheduledLocalNotifications"; @@ -121,10 +121,10 @@ type registrationError('a) = { details: Js.t('a), }; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external addEventListener: ( - [@bs.string] + [@mel.string] [ | `notification(Notification.t => unit) | `localNotification(Notification.t => unit) @@ -135,10 +135,10 @@ external addEventListener: unit = "addEventListener"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external removeEventListener: ( - [@bs.string] + [@mel.string] [ | `notification(Notification.t => unit) | `localNotification(Notification.t => unit) @@ -157,38 +157,38 @@ type permissions = { }; type requestPermissionsOptions; -[@bs.obj] +[@mel.obj] external requestPermissionsOptions: (~alert: bool=?, ~badge: bool=?, ~sound: bool=?, unit) => requestPermissionsOptions; // multiple externals -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external requestPermissions: unit => Js.Promise.t(permissions) = "requestPermissions"; // multiple externals -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external requestPermissionsWithOptions: requestPermissionsOptions => Js.Promise.t(permissions) = "requestPermissions"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external abandonPermissions: unit => unit = "abandonPermissions"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external checkPermissions: (unit => permissions) => unit = "checkPermissions"; type fetchResult; -[@bs.obj] +[@mel.obj] external fetchResult: (~_NewData: string=?, ~_NoData: string=?, ~_ResultFailed: string=?, unit) => fetchResult; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external finish: fetchResult => unit = "fetchResult"; -[@bs.module "react-native"] [@bs.scope "PushNotificationIOS"] +[@mel.module "react-native"] [@mel.scope "PushNotificationIOS"] external getInitialNotification: unit => Js.Promise.t(Js.Nullable.t(Notification.t)) = "getInitialNotification"; diff --git a/src/apis/Settings.re b/src/apis/Settings.re index 998700db3..3ccc0d149 100644 --- a/src/apis/Settings.re +++ b/src/apis/Settings.re @@ -1,13 +1,13 @@ -[@bs.module "react-native"] [@bs.scope "Settings"] +[@mel.module "react-native"] [@mel.scope "Settings"] external get: string => string = "get"; -[@bs.module "react-native"] [@bs.scope "Settings"] +[@mel.module "react-native"] [@mel.scope "Settings"] external set: Js.Dict.t(string) => unit = "set"; type watchToken; -[@bs.module "react-native"] [@bs.scope "Settings"] +[@mel.module "react-native"] [@mel.scope "Settings"] external watchKeys: (list(string), unit => unit) => watchToken = "watchKeys"; -[@bs.module "react-native"] [@bs.scope "Settings"] +[@mel.module "react-native"] [@mel.scope "Settings"] external clearWatch: watchToken => unit = "clearWatch"; diff --git a/src/apis/Share.re b/src/apis/Share.re index f7a4ff233..38ac1e607 100644 --- a/src/apis/Share.re +++ b/src/apis/Share.re @@ -1,11 +1,11 @@ type content; type options; -[@bs.obj] +[@mel.obj] external content: (~title: string=?, ~message: string=?, ~url: string=?, unit) => content; -[@bs.obj] +[@mel.obj] external options: ( ~subject: string=?, @@ -18,10 +18,10 @@ external options: type action; -[@bs.module "react-native"] [@bs.scope "Share"] +[@mel.module "react-native"] [@mel.scope "Share"] external sharedAction: action = "sharedAction"; -[@bs.module "react-native"] [@bs.scope "Share"] +[@mel.module "react-native"] [@mel.scope "Share"] external dismissedAction: action = "dismissedAction"; type shareResult = { @@ -30,9 +30,9 @@ type shareResult = { }; // multiple externals -[@bs.module "react-native"] [@bs.scope "Share"] +[@mel.module "react-native"] [@mel.scope "Share"] external share: content => Js.Promise.t(shareResult) = "share"; // multiple externals -[@bs.module "react-native"] [@bs.scope "Share"] +[@mel.module "react-native"] [@mel.scope "Share"] external shareWithOptions: (content, options) => Js.Promise.t(bool) = "share"; diff --git a/src/apis/SoundManager.re b/src/apis/SoundManager.re index 285a4a834..6ecf11849 100644 --- a/src/apis/SoundManager.re +++ b/src/apis/SoundManager.re @@ -1,3 +1,3 @@ // Android-only -[@bs.module "react-native"] [@bs.scope "SoundManager"] +[@mel.module "react-native"] [@mel.scope "SoundManager"] external playTouchSound: unit => unit = "playTouchSound"; diff --git a/src/apis/Style.re b/src/apis/Style.re index 440c2a141..e09a2ec42 100644 --- a/src/apis/Style.re +++ b/src/apis/Style.re @@ -9,8 +9,8 @@ external listOption: list(option(t)) => t = "%identity"; // Escape hatch, in case something is added into RN but unsupported, // Useful if you play with fancy platforms // Use with caution -[@bs.val] -external unsafeAddStyle: ([@bs.as {json|{}|json}] _, t, Js.t('a)) => t = + +external unsafeAddStyle: ([@mel.as {json|{}|json}] _, t, Js.t('a)) => t = "Object.assign"; external unsafeStyle: Js.t('a) => t = "%identity"; @@ -24,29 +24,29 @@ let pct = num => num->Js.Float.toString ++ "%"; type margin = size; -[@bs.inline] +[@mel.inline] let auto = "auto"; type offset; -[@bs.obj] external offset: (~height: float, ~width: float) => offset; +[@mel.obj] external offset: (~height: float, ~width: float) => offset; type angle; let deg: float => angle = num => (num->Js.Float.toString ++ "deg")->Obj.magic; let rad: float => angle = num => (num->Js.Float.toString ++ "rad")->Obj.magic; type transform; -[@bs.obj] external perspective: (~perspective: float) => transform; -[@bs.obj] external rotate: (~rotate: angle) => transform; -[@bs.obj] external rotateX: (~rotateX: angle) => transform; -[@bs.obj] external rotateY: (~rotateY: angle) => transform; -[@bs.obj] external rotateZ: (~rotateZ: angle) => transform; -[@bs.obj] external scale: (~scale: float) => transform; -[@bs.obj] external scaleX: (~scaleX: float) => transform; -[@bs.obj] external scaleY: (~scaleY: float) => transform; -[@bs.obj] external translateX: (~translateX: float) => transform; -[@bs.obj] external translateY: (~translateY: float) => transform; -[@bs.obj] external skewX: (~skewX: angle) => transform; -[@bs.obj] external skewY: (~skewY: angle) => transform; +[@mel.obj] external perspective: (~perspective: float) => transform; +[@mel.obj] external rotate: (~rotate: angle) => transform; +[@mel.obj] external rotateX: (~rotateX: angle) => transform; +[@mel.obj] external rotateY: (~rotateY: angle) => transform; +[@mel.obj] external rotateZ: (~rotateZ: angle) => transform; +[@mel.obj] external scale: (~scale: float) => transform; +[@mel.obj] external scaleX: (~scaleX: float) => transform; +[@mel.obj] external scaleY: (~scaleY: float) => transform; +[@mel.obj] external translateX: (~translateX: float) => transform; +[@mel.obj] external translateY: (~translateY: float) => transform; +[@mel.obj] external skewX: (~skewX: angle) => transform; +[@mel.obj] external skewY: (~skewY: angle) => transform; // @todo matrix external unsafeTransform: Js.t('a) => transform = "%identity"; @@ -86,7 +86,7 @@ type position = [ | `absolute | `relative]; // We don't do the distinction as ReasonML is an HMTS that doesn't support implicit subtyping // ____DangerouslyImpreciseStyle_Internal -[@bs.obj] +[@mel.obj] // Dangerous Imprecise Style // Contains all of // - image style @@ -109,18 +109,18 @@ external style: ~fontSize: float=?, ~fontStyle: fontStyle=?, ~fontVariant: array(FontVariant.t)=?, - ~fontWeight: [@bs.string] [ + ~fontWeight: [@mel.string] [ | `normal | `bold - | [@bs.as "100"] `_100 - | [@bs.as "200"] `_200 - | [@bs.as "300"] `_300 - | [@bs.as "400"] `_400 - | [@bs.as "500"] `_500 - | [@bs.as "600"] `_600 - | [@bs.as "700"] `_700 - | [@bs.as "800"] `_800 - | [@bs.as "900"] `_900 + | [@mel.as "100"] `_100 + | [@mel.as "200"] `_200 + | [@mel.as "300"] `_300 + | [@mel.as "400"] `_400 + | [@mel.as "500"] `_500 + | [@mel.as "600"] `_600 + | [@mel.as "700"] `_700 + | [@mel.as "800"] `_800 + | [@mel.as "900"] `_900 ] =?, ~includeFontPadding: bool=?, @@ -129,11 +129,11 @@ external style: ~textAlign: textAlign=?, ~textAlignVertical: textAlignVertical=?, ~textDecorationColor: Color.t=?, - ~textDecorationLine: [@bs.string] [ + ~textDecorationLine: [@mel.string] [ | `none | `underline - | [@bs.as "line-through"] `lineThrough - | [@bs.as "underline line-through"] + | [@mel.as "line-through"] `lineThrough + | [@mel.as "underline line-through"] `underlineLineThrough ] =?, @@ -180,27 +180,27 @@ external style: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -216,29 +216,29 @@ external style: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, @@ -276,7 +276,7 @@ external style: t; // ____ViewStyleProp_Internal -[@bs.obj] +[@mel.obj] // *Comment below is supposed to be after the first ( below but refmt move it here* // View styles https://reactnative.dev/docs/view-style-props external viewStyle: @@ -317,27 +317,27 @@ external viewStyle: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -353,29 +353,29 @@ external viewStyle: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, @@ -413,7 +413,7 @@ external viewStyle: t; // ____TextStyleProp_Internal -[@bs.obj] +[@mel.obj] // Text Style Props (https://reactnative.dev/docs/text-style-props) external textStyle: ( @@ -422,18 +422,18 @@ external textStyle: ~fontSize: float=?, ~fontStyle: fontStyle=?, ~fontVariant: array(FontVariant.t)=?, - ~fontWeight: [@bs.string] [ + ~fontWeight: [@mel.string] [ | `normal | `bold - | [@bs.as "100"] `_100 - | [@bs.as "200"] `_200 - | [@bs.as "300"] `_300 - | [@bs.as "400"] `_400 - | [@bs.as "500"] `_500 - | [@bs.as "600"] `_600 - | [@bs.as "700"] `_700 - | [@bs.as "800"] `_800 - | [@bs.as "900"] `_900 + | [@mel.as "100"] `_100 + | [@mel.as "200"] `_200 + | [@mel.as "300"] `_300 + | [@mel.as "400"] `_400 + | [@mel.as "500"] `_500 + | [@mel.as "600"] `_600 + | [@mel.as "700"] `_700 + | [@mel.as "800"] `_800 + | [@mel.as "900"] `_900 ] =?, ~includeFontPadding: bool=?, @@ -442,11 +442,11 @@ external textStyle: ~textAlign: textAlign=?, ~textAlignVertical: textAlignVertical=?, ~textDecorationColor: Color.t=?, - ~textDecorationLine: [@bs.string] [ + ~textDecorationLine: [@mel.string] [ | `none | `underline - | [@bs.as "line-through"] `lineThrough - | [@bs.as "underline line-through"] + | [@mel.as "line-through"] `lineThrough + | [@mel.as "underline line-through"] `underlineLineThrough ] =?, @@ -493,27 +493,27 @@ external textStyle: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -529,29 +529,29 @@ external textStyle: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, @@ -589,7 +589,7 @@ external textStyle: t; // ____ImageStyleProp_Internal -[@bs.obj] +[@mel.obj] // Image Style Props (https://reactnative.dev/docs/image-style-props) external imageStyle: ( @@ -633,27 +633,27 @@ external imageStyle: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -669,29 +669,29 @@ external imageStyle: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, diff --git a/src/apis/Style.rei b/src/apis/Style.rei index b3c6ef38a..315522c24 100644 --- a/src/apis/Style.rei +++ b/src/apis/Style.rei @@ -10,8 +10,8 @@ external list: list(t) => t = "%identity"; "Style.listOption has been deprecated in favor of Style.arrayOption (because it won't work with ReScript / BuckleScript 8.0.0)." ] external listOption: list(option(t)) => t = "%identity"; -[@bs.val] -external unsafeAddStyle: ([@bs.as {json|{}|json}] _, t, Js.t('a)) => t = + +external unsafeAddStyle: ([@mel.as {json|{}|json}] _, t, Js.t('a)) => t = "Object.assign"; external unsafeStyle: Js.t('a) => t = "%identity"; @@ -28,29 +28,29 @@ let pct: float => size; type margin = size; -[@bs.inline "auto"] +[@mel.inline "auto"] let auto: margin; type offset; -[@bs.obj] external offset: (~height: float, ~width: float) => offset; +[@mel.obj] external offset: (~height: float, ~width: float) => offset; type angle; let deg: float => angle; let rad: float => angle; type transform; -[@bs.obj] external perspective: (~perspective: float) => transform; -[@bs.obj] external rotate: (~rotate: angle) => transform; -[@bs.obj] external rotateX: (~rotateX: angle) => transform; -[@bs.obj] external rotateY: (~rotateY: angle) => transform; -[@bs.obj] external rotateZ: (~rotateZ: angle) => transform; -[@bs.obj] external scale: (~scale: float) => transform; -[@bs.obj] external scaleX: (~scaleX: float) => transform; -[@bs.obj] external scaleY: (~scaleY: float) => transform; -[@bs.obj] external translateX: (~translateX: float) => transform; -[@bs.obj] external translateY: (~translateY: float) => transform; -[@bs.obj] external skewX: (~skewX: angle) => transform; -[@bs.obj] external skewY: (~skewY: angle) => transform; +[@mel.obj] external perspective: (~perspective: float) => transform; +[@mel.obj] external rotate: (~rotate: angle) => transform; +[@mel.obj] external rotateX: (~rotateX: angle) => transform; +[@mel.obj] external rotateY: (~rotateY: angle) => transform; +[@mel.obj] external rotateZ: (~rotateZ: angle) => transform; +[@mel.obj] external scale: (~scale: float) => transform; +[@mel.obj] external scaleX: (~scaleX: float) => transform; +[@mel.obj] external scaleY: (~scaleY: float) => transform; +[@mel.obj] external translateX: (~translateX: float) => transform; +[@mel.obj] external translateY: (~translateY: float) => transform; +[@mel.obj] external skewX: (~skewX: angle) => transform; +[@mel.obj] external skewY: (~skewY: angle) => transform; // @todo matrix external unsafeTransform: Js.t('a) => transform = "%identity"; @@ -90,7 +90,7 @@ type position = [ | `absolute | `relative]; // We don't do the distinction as ReasonML is an HMTS that doesn't support implicit subtyping // ____DangerouslyImpreciseStyle_Internal -[@bs.obj] +[@mel.obj] // Dangerous Imprecise Style // Contains all of // - image style @@ -113,18 +113,18 @@ external style: ~fontSize: float=?, ~fontStyle: fontStyle=?, ~fontVariant: array(FontVariant.t)=?, - ~fontWeight: [@bs.string] [ + ~fontWeight: [@mel.string] [ | `normal | `bold - | [@bs.as "100"] `_100 - | [@bs.as "200"] `_200 - | [@bs.as "300"] `_300 - | [@bs.as "400"] `_400 - | [@bs.as "500"] `_500 - | [@bs.as "600"] `_600 - | [@bs.as "700"] `_700 - | [@bs.as "800"] `_800 - | [@bs.as "900"] `_900 + | [@mel.as "100"] `_100 + | [@mel.as "200"] `_200 + | [@mel.as "300"] `_300 + | [@mel.as "400"] `_400 + | [@mel.as "500"] `_500 + | [@mel.as "600"] `_600 + | [@mel.as "700"] `_700 + | [@mel.as "800"] `_800 + | [@mel.as "900"] `_900 ] =?, ~includeFontPadding: bool=?, @@ -133,11 +133,11 @@ external style: ~textAlign: textAlign=?, ~textAlignVertical: textAlignVertical=?, ~textDecorationColor: Color.t=?, - ~textDecorationLine: [@bs.string] [ + ~textDecorationLine: [@mel.string] [ | `none | `underline - | [@bs.as "line-through"] `lineThrough - | [@bs.as "underline line-through"] + | [@mel.as "line-through"] `lineThrough + | [@mel.as "underline line-through"] `underlineLineThrough ] =?, @@ -184,27 +184,27 @@ external style: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -220,29 +220,29 @@ external style: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, @@ -280,7 +280,7 @@ external style: t; // ____ViewStyleProp_Internal -[@bs.obj] +[@mel.obj] // *Comment below is supposed to be after the first ( below but refmt move it here* // View styles https://reactnative.dev/docs/view-style-props external viewStyle: @@ -321,27 +321,27 @@ external viewStyle: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -357,29 +357,29 @@ external viewStyle: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, @@ -417,7 +417,7 @@ external viewStyle: t; // ____TextStyleProp_Internal -[@bs.obj] +[@mel.obj] // Text Style Props (https://reactnative.dev/docs/text-style-props) external textStyle: ( @@ -426,18 +426,18 @@ external textStyle: ~fontSize: float=?, ~fontStyle: fontStyle=?, ~fontVariant: array(FontVariant.t)=?, - ~fontWeight: [@bs.string] [ + ~fontWeight: [@mel.string] [ | `normal | `bold - | [@bs.as "100"] `_100 - | [@bs.as "200"] `_200 - | [@bs.as "300"] `_300 - | [@bs.as "400"] `_400 - | [@bs.as "500"] `_500 - | [@bs.as "600"] `_600 - | [@bs.as "700"] `_700 - | [@bs.as "800"] `_800 - | [@bs.as "900"] `_900 + | [@mel.as "100"] `_100 + | [@mel.as "200"] `_200 + | [@mel.as "300"] `_300 + | [@mel.as "400"] `_400 + | [@mel.as "500"] `_500 + | [@mel.as "600"] `_600 + | [@mel.as "700"] `_700 + | [@mel.as "800"] `_800 + | [@mel.as "900"] `_900 ] =?, ~includeFontPadding: bool=?, @@ -446,11 +446,11 @@ external textStyle: ~textAlign: textAlign=?, ~textAlignVertical: textAlignVertical=?, ~textDecorationColor: Color.t=?, - ~textDecorationLine: [@bs.string] [ + ~textDecorationLine: [@mel.string] [ | `none | `underline - | [@bs.as "line-through"] `lineThrough - | [@bs.as "underline line-through"] + | [@mel.as "line-through"] `lineThrough + | [@mel.as "underline line-through"] `underlineLineThrough ] =?, @@ -497,27 +497,27 @@ external textStyle: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -533,29 +533,29 @@ external textStyle: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, @@ -593,7 +593,7 @@ external textStyle: t; // ____ImageStyleProp_Internal -[@bs.obj] +[@mel.obj] // Image Style Props (https://reactnative.dev/docs/image-style-props) external imageStyle: ( @@ -637,27 +637,27 @@ external imageStyle: ~shadowOpacity: float=?, ~shadowRadius: float=?, // Layout Style Props (https://reactnative.dev/docs/layout-props) - ~alignContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween ] =?, - ~alignItems: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~alignItems: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline ] =?, - ~alignSelf: [@bs.string] [ + ~alignSelf: [@mel.string] [ | `auto - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center | `stretch | `baseline @@ -673,29 +673,29 @@ external imageStyle: // ~borderTopWidth: float=?, // ~borderWidth: float=?, ~bottom: size=?, - ~direction: [@bs.string] [ | [@bs.as "inherit"] `inherit_ | `ltr | `rtl]=?, + ~direction: [@mel.string] [ | [@mel.as "inherit"] `inherit_ | `ltr | `rtl]=?, ~display: display=?, ~_end: size=?, ~flex: float=?, ~flexBasis: margin=?, - ~flexDirection: [@bs.string] [ + ~flexDirection: [@mel.string] [ | `row - | [@bs.as "row-reverse"] `rowReverse + | [@mel.as "row-reverse"] `rowReverse | `column - | [@bs.as "column-reverse"] `columnReverse + | [@mel.as "column-reverse"] `columnReverse ] =?, ~flexGrow: float=?, ~flexShrink: float=?, ~flexWrap: flexWrap=?, ~height: size=?, - ~justifyContent: [@bs.string] [ - | [@bs.as "flex-start"] `flexStart - | [@bs.as "flex-end"] `flexEnd + ~justifyContent: [@mel.string] [ + | [@mel.as "flex-start"] `flexStart + | [@mel.as "flex-end"] `flexEnd | `center - | [@bs.as "space-around"] `spaceAround - | [@bs.as "space-between"] `spaceBetween - | [@bs.as "space-evenly"] `spaceEvenly + | [@mel.as "space-around"] `spaceAround + | [@mel.as "space-between"] `spaceBetween + | [@mel.as "space-evenly"] `spaceEvenly ] =?, ~left: size=?, diff --git a/src/apis/StyleSheet.re b/src/apis/StyleSheet.re index ae7436d09..65f58c9d6 100644 --- a/src/apis/StyleSheet.re +++ b/src/apis/StyleSheet.re @@ -1,11 +1,11 @@ -[@bs.module "react-native"] [@bs.scope "StyleSheet"] +[@mel.module "react-native"] [@mel.scope "StyleSheet"] external hairlineWidth: float = "hairlineWidth"; -[@bs.module "react-native"] [@bs.scope "StyleSheet"] +[@mel.module "react-native"] [@mel.scope "StyleSheet"] external absoluteFill: Style.t = "absoluteFill"; -[@bs.module "react-native"] [@bs.scope "StyleSheet"] +[@mel.module "react-native"] [@mel.scope "StyleSheet"] external absoluteFillObject: Style.t = "absoluteFillObject"; -[@bs.module "react-native"] [@bs.scope "StyleSheet"] +[@mel.module "react-native"] [@mel.scope "StyleSheet"] external create: Js.t('a) => Js.t('a) = "create"; -[@bs.module "react-native"] [@bs.scope "StyleSheet"] +[@mel.module "react-native"] [@mel.scope "StyleSheet"] external flatten: array(Style.t) => Style.t = "flatten"; diff --git a/src/apis/ToastAndroid.re b/src/apis/ToastAndroid.re index 99a71a5a8..1db497fff 100644 --- a/src/apis/ToastAndroid.re +++ b/src/apis/ToastAndroid.re @@ -2,29 +2,29 @@ type message = string; type duration; type gravity; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external short: duration = "SHORT"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external long: duration = "LONG"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external top: gravity = "TOP"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external bottom: gravity = "BOTTOM"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external center: gravity = "CENTER"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external show: (message, duration) => unit = "show"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external showWithGravity: (message, duration, gravity) => unit = "showWithGravity"; -[@bs.module "react-native"] [@bs.scope "ToastAndroid"] +[@mel.module "react-native"] [@mel.scope "ToastAndroid"] external showWithGravityAndOffset: (message, duration, gravity, ~xOffset: float, ~yOffset: float) => unit = "showWithGravityAndOffset"; diff --git a/src/apis/UIManager.re b/src/apis/UIManager.re index 61a3479f3..7389557c4 100644 --- a/src/apis/UIManager.re +++ b/src/apis/UIManager.re @@ -1,20 +1,20 @@ type popupAction; -[@bs.module "react-native"] [@bs.scope ("UIManager", "PopupMenu")] +[@mel.module "react-native"] [@mel.scope ("UIManager", "PopupMenu")] external itemSelected: popupAction = "itemSelected"; -[@bs.module "react-native"] [@bs.scope ("UIManager", "PopupMenu")] +[@mel.module "react-native"] [@mel.scope ("UIManager", "PopupMenu")] external dismissed: popupAction = "dismissed"; // Android-only. This function is intended to be removed in the future, // at which point it would return undefined. Accordingly it is wrapped in // option. -[@bs.module "react-native"] [@bs.scope "UIManager"] +[@mel.module "react-native"] [@mel.scope "UIManager"] external setLayoutAnimationEnabledExperimental: option(bool => unit) = "setLayoutAnimationEnabledExperimental"; // Android-only -[@bs.module "react-native"] [@bs.scope "UIManager"] +[@mel.module "react-native"] [@mel.scope "UIManager"] external showPopupMenu: ( int, @@ -26,11 +26,11 @@ external showPopupMenu: "showPopupMenu"; // Android-only -[@bs.module "react-native"] [@bs.scope "UIManager"] +[@mel.module "react-native"] [@mel.scope "UIManager"] external dismissPopupMenu: unit => unit = "dismissPopupMenu"; -[@bs.module "react-native"] [@bs.scope "UIManager"] +[@mel.module "react-native"] [@mel.scope "UIManager"] external setJSResponder: (int, bool) => unit = "setJSResponder"; -[@bs.module "react-native"] [@bs.scope "UIManager"] +[@mel.module "react-native"] [@mel.scope "UIManager"] external clearJSResponder: unit => unit = "clearJSResponder"; diff --git a/src/apis/Vibration.re b/src/apis/Vibration.re index 7d7689d35..b7419d411 100644 --- a/src/apis/Vibration.re +++ b/src/apis/Vibration.re @@ -1,9 +1,9 @@ -[@bs.scope "Vibration"] [@bs.module "react-native"] +[@mel.scope "Vibration"] [@mel.module "react-native"] external vibrateWithDuration: (int, ~repeat: bool=?, unit) => unit = "vibrate"; -[@bs.scope "Vibration"] [@bs.module "react-native"] +[@mel.scope "Vibration"] [@mel.module "react-native"] external vibrateWithPattern: (array(int), ~repeat: bool=?, unit) => unit = "vibrate"; -[@bs.scope "Vibration"] [@bs.module "react-native"] +[@mel.scope "Vibration"] [@mel.module "react-native"] external cancel: unit => unit = "cancel"; diff --git a/src/apis/YellowBox.re b/src/apis/YellowBox.re index a1969322b..c4191b427 100644 --- a/src/apis/YellowBox.re +++ b/src/apis/YellowBox.re @@ -1,2 +1,2 @@ -[@bs.module "react-native"] [@bs.scope "YellowBox"] +[@mel.module "react-native"] [@mel.scope "YellowBox"] external ignoreWarnings: array(string) => unit = "ignoreWarnings"; diff --git a/src/components/ActivityIndicator.re b/src/components/ActivityIndicator.re index 70df07bb8..0f3bab605 100644 --- a/src/components/ActivityIndicator.re +++ b/src/components/ActivityIndicator.re @@ -2,7 +2,7 @@ include NativeElement; module Size = ActivityIndicator_Size; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -25,11 +25,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -53,11 +53,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/Button.re b/src/components/Button.re index 29180ec6e..13412a41c 100644 --- a/src/components/Button.re +++ b/src/components/Button.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, diff --git a/src/components/DatePickerIOS.re b/src/components/DatePickerIOS.re index 399107e9c..30ab11228 100644 --- a/src/components/DatePickerIOS.re +++ b/src/components/DatePickerIOS.re @@ -5,25 +5,25 @@ type localeId = string; type mode = [ | `date | `time | `datetime]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~date: Js.Date.t, ~onDateChange: Js.Date.t => unit, ~maximumDate: Js.Date.t=?, ~minimumDate: Js.Date.t=?, - ~minuteInterval: [@bs.int] [ - | [@bs.as 1] `_1 - | [@bs.as 2] `_2 - | [@bs.as 3] `_3 - | [@bs.as 4] `_4 - | [@bs.as 5] `_5 - | [@bs.as 6] `_6 - | [@bs.as 10] `_10 - | [@bs.as 12] `_12 - | [@bs.as 15] `_15 - | [@bs.as 20] `_20 - | [@bs.as 30] `_30 + ~minuteInterval: [@mel.int] [ + | [@mel.as 1] `_1 + | [@mel.as 2] `_2 + | [@mel.as 3] `_3 + | [@mel.as 4] `_4 + | [@mel.as 5] `_5 + | [@mel.as 6] `_6 + | [@mel.as 10] `_10 + | [@mel.as 12] `_12 + | [@mel.as 15] `_15 + | [@mel.as 20] `_20 + | [@mel.as 30] `_30 ] =?, ~mode: mode=?, @@ -43,11 +43,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -71,11 +71,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/DrawerLayoutAndroid.re b/src/components/DrawerLayoutAndroid.re index 9e8715825..552635dd3 100644 --- a/src/components/DrawerLayoutAndroid.re +++ b/src/components/DrawerLayoutAndroid.re @@ -16,7 +16,7 @@ type t; type androidInteractionState = [ | `idle | `dragging | `settling]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -25,12 +25,12 @@ external make: ~onDrawerClose: unit => unit=?, ~drawerPosition: drawerPosition=?, ~drawerWidth: float=?, - ~keyboardDismissMode: [@bs.string] [ | `none | [@bs.as "on-drag"] `onDrag] + ~keyboardDismissMode: [@mel.string] [ | `none | [@mel.as "on-drag"] `onDrag] =?, - ~drawerLockMode: [@bs.string] [ - | [@bs.as "unlocked"] `unlocked - | [@bs.as "locked-closed"] `lockedClosed - | [@bs.as "locked-open"] `lockedOpen + ~drawerLockMode: [@mel.string] [ + | [@mel.as "unlocked"] `unlocked + | [@mel.as "locked-closed"] `lockedClosed + | [@mel.as "locked-open"] `lockedOpen ] =?, ~onDrawerOpen: unit => unit=?, @@ -52,11 +52,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -80,11 +80,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/FlatList.re b/src/components/FlatList.re index b504ead6d..6801b06b4 100644 --- a/src/components/FlatList.re +++ b/src/components/FlatList.re @@ -10,7 +10,7 @@ type separatorComponentProps('item) = { "leadingItem": option('item), }; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -78,10 +78,10 @@ external make: ~fadingEdgeLength: float=?, ~horizontal: bool=?, ~indicatorStyle: ScrollView.indicatorStyle=?, - ~keyboardDismissMode: [@bs.string] [ + ~keyboardDismissMode: [@mel.string] [ | `none | `interactive - | [@bs.as "on-drag"] `onDrag + | [@mel.as "on-drag"] `onDrag ] =?, ~keyboardShouldPersistTaps: ScrollView.keyboardShouldPersistTaps=?, @@ -127,11 +127,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -155,11 +155,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/Image.re b/src/components/Image.re index fe4c0c5a5..587e05907 100644 --- a/src/components/Image.re +++ b/src/components/Image.re @@ -2,7 +2,7 @@ include NativeElement; type uriSource; -[@bs.obj] +[@mel.obj] external uriSource: ( ~uri: string, @@ -10,11 +10,11 @@ external uriSource: ~method: string=?, ~headers: Js.Dict.t(string)=?, ~body: string=?, - ~cache: [@bs.string] [ + ~cache: [@mel.string] [ | `default | `reload - | [@bs.as "force-cache"] `forceCache - | [@bs.as "only-if-cached"] `onlyIfCached + | [@mel.as "force-cache"] `forceCache + | [@mel.as "only-if-cached"] `onlyIfCached ] =?, ~scale: float=?, @@ -35,7 +35,7 @@ module Source = { module DefaultSource = { type t; - [@bs.obj] + [@mel.obj] external fromUri: (~uri: string, ~scale: float=?, ~width: float=?, ~height: float=?, unit) => t; @@ -87,7 +87,7 @@ type progressEvent = ProgressEvent.t; type resizeMethod = [ | `auto | `resize | `scale]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -118,7 +118,7 @@ external make: type sizeError; -[@bs.module "react-native"] [@bs.scope "Image"] +[@mel.module "react-native"] [@mel.scope "Image"] external getSize: ( ~uri: string, @@ -131,13 +131,13 @@ external getSize: type requestId; -[@bs.module "react-native"] [@bs.scope "Image"] +[@mel.module "react-native"] [@mel.scope "Image"] external prefetch: (~uri: string) => requestId = "prefetch"; -[@bs.module "react-native"] [@bs.scope "Image"] +[@mel.module "react-native"] [@mel.scope "Image"] external abortPrefetch: requestId => unit = "abortPrefetch"; -[@bs.module "react-native"] [@bs.scope "Image"] +[@mel.module "react-native"] [@mel.scope "Image"] external queryCache: (~uris: array(string)) => unit = "queryCache"; type asset = { @@ -146,5 +146,5 @@ type asset = { height: float, }; -[@bs.module "react-native"] [@bs.scope "Image"] +[@mel.module "react-native"] [@mel.scope "Image"] external resolveAssetSource: Source.t => asset = "resolveAssetSource"; diff --git a/src/components/ImageBackground.re b/src/components/ImageBackground.re index 3e55a6759..eea38421d 100644 --- a/src/components/ImageBackground.re +++ b/src/components/ImageBackground.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, diff --git a/src/components/InputAccessoryView.re b/src/components/InputAccessoryView.re index 05b1055cc..907f28566 100644 --- a/src/components/InputAccessoryView.re +++ b/src/components/InputAccessoryView.re @@ -1,4 +1,4 @@ -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~backgroundColor: Color.t=?, diff --git a/src/components/KeyboardAvoidingView.re b/src/components/KeyboardAvoidingView.re index 979d1b533..b46145c56 100644 --- a/src/components/KeyboardAvoidingView.re +++ b/src/components/KeyboardAvoidingView.re @@ -2,7 +2,7 @@ include NativeElement; type behavior = [ | `height | `position | `padding]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -24,11 +24,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -52,11 +52,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/MaskedViewIOS.re b/src/components/MaskedViewIOS.re index 380019f9e..ba923ebcf 100644 --- a/src/components/MaskedViewIOS.re +++ b/src/components/MaskedViewIOS.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -20,11 +20,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -48,11 +48,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/Modal.re b/src/components/Modal.re index 55f277e9d..1948cead6 100644 --- a/src/components/Modal.re +++ b/src/components/Modal.re @@ -23,7 +23,7 @@ type presentationStyle = [ | `overFullScreen ]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, diff --git a/src/components/Picker.re b/src/components/Picker.re index f269af0c4..f9503d2fc 100644 --- a/src/components/Picker.re +++ b/src/components/Picker.re @@ -2,7 +2,7 @@ include NativeElement; type mode = [ | `dialog | `dropdown]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -30,11 +30,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -58,11 +58,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, @@ -84,7 +84,7 @@ external make: "Picker"; module Item = { - [@react.component] [@bs.module "react-native"] [@bs.scope "Picker"] + [@react.component] [@mel.module "react-native"] [@mel.scope "Picker"] external make: (~value: 'a=?, ~label: string, ~color: Color.t=?, ~testID: string=?) => React.element = diff --git a/src/components/PickerIOS.re b/src/components/PickerIOS.re index 72560a68f..2ba504c53 100644 --- a/src/components/PickerIOS.re +++ b/src/components/PickerIOS.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -22,11 +22,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -50,11 +50,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, @@ -76,7 +76,7 @@ external make: "PickerIOS"; module Item = { - [@react.component] [@bs.module "react-native"] [@bs.scope "PickerIOS"] + [@react.component] [@mel.module "react-native"] [@mel.scope "PickerIOS"] external make: (~value: 'a=?, ~label: string, ~color: Color.t=?, ~testID: string=?) => React.element = diff --git a/src/components/Pressable.re b/src/components/Pressable.re index f7cf9c7e2..6bcd6f68d 100644 --- a/src/components/Pressable.re +++ b/src/components/Pressable.re @@ -2,7 +2,7 @@ include NativeElement; type rippleConfig; -[@bs.obj] +[@mel.obj] external rippleConfig: (~color: Color.t=?, ~borderless: bool=?, ~radius: float=?, unit) => rippleConfig; @@ -14,7 +14,7 @@ type interactionState = { focused: option(bool), }; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -31,11 +31,11 @@ external make: ~accessibilityViewIsModal: bool=?, ~accessible: bool=?, ~focusable: bool=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -56,10 +56,10 @@ external make: ~testID: string=?, ~testOnly_pressed: bool=?, // React Native Web Props - ~rel: [@bs.string] [ + ~rel: [@mel.string] [ | `alternate | `author - | [@bs.as "dns-prefetch"] `dnsPrefetch + | [@mel.as "dns-prefetch"] `dnsPrefetch | `icon | `license | `next diff --git a/src/components/ProgressBarAndroid.re b/src/components/ProgressBarAndroid.re index d965f8339..3b2f3d20e 100644 --- a/src/components/ProgressBarAndroid.re +++ b/src/components/ProgressBarAndroid.re @@ -10,7 +10,7 @@ type styleAttr = [ | `LargeInverse ]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -34,11 +34,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -62,11 +62,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/ProgressViewIOS.re b/src/components/ProgressViewIOS.re index 4de2aab7c..b071855d8 100644 --- a/src/components/ProgressViewIOS.re +++ b/src/components/ProgressViewIOS.re @@ -2,7 +2,7 @@ include NativeElement; type progressViewStyle = [ | `default | `bar]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -27,11 +27,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -55,11 +55,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/RefreshControl.re b/src/components/RefreshControl.re index 3e15f0b4e..268f95d29 100644 --- a/src/components/RefreshControl.re +++ b/src/components/RefreshControl.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -28,11 +28,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -56,11 +56,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/SafeAreaView.re b/src/components/SafeAreaView.re index 69b2fd7d3..3677b2f08 100644 --- a/src/components/SafeAreaView.re +++ b/src/components/SafeAreaView.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -17,11 +17,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -45,11 +45,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/ScrollView.re b/src/components/ScrollView.re index ad07e6369..b5a050c9d 100644 --- a/src/components/ScrollView.re +++ b/src/components/ScrollView.re @@ -1,7 +1,7 @@ include ScrollViewElement; type contentOffset; -[@bs.obj] external contentOffset: (~x: float, ~y: float) => contentOffset; +[@mel.obj] external contentOffset: (~x: float, ~y: float) => contentOffset; type contentInsetAdjustmentBehavior = [ | `automatic @@ -20,7 +20,7 @@ type overScrollMode = [ | `always | `never | `auto]; type snapToAlignment = [ | `start | `center | `end_]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -42,10 +42,10 @@ external make: ~fadingEdgeLength: float=?, ~horizontal: bool=?, ~indicatorStyle: indicatorStyle=?, - ~keyboardDismissMode: [@bs.string] [ + ~keyboardDismissMode: [@mel.string] [ | `none | `interactive - | [@bs.as "on-drag"] `onDrag + | [@mel.as "on-drag"] `onDrag ] =?, ~keyboardShouldPersistTaps: keyboardShouldPersistTaps=?, @@ -91,11 +91,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -119,11 +119,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/SectionList.re b/src/components/SectionList.re index 466017e5f..7ef87bfe9 100644 --- a/src/components/SectionList.re +++ b/src/components/SectionList.re @@ -1,14 +1,14 @@ include VirtualizedSectionListElement; -[@bs.send] +[@mel.send] external flashScrollIndicators: element => unit = "flashScrollIndicators"; -[@bs.send] external recordInteraction: element => unit = "recordInteraction"; +[@mel.send] external recordInteraction: element => unit = "recordInteraction"; -[@bs.send] +[@mel.send] external setNativeProps: (element, Js.t('a)) => unit = "setNativeProps"; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -101,10 +101,10 @@ external make: ~fadingEdgeLength: float=?, ~horizontal: bool=?, ~indicatorStyle: ScrollView.indicatorStyle=?, - ~keyboardDismissMode: [@bs.string] [ + ~keyboardDismissMode: [@mel.string] [ | `none | `interactive - | [@bs.as "on-drag"] `onDrag + | [@mel.as "on-drag"] `onDrag ] =?, ~keyboardShouldPersistTaps: ScrollView.keyboardShouldPersistTaps=?, @@ -150,11 +150,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -178,11 +178,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/SegmentedControlIOS.re b/src/components/SegmentedControlIOS.re index 4eb391779..48559aa5d 100644 --- a/src/components/SegmentedControlIOS.re +++ b/src/components/SegmentedControlIOS.re @@ -13,7 +13,7 @@ module ChangeEvent = { type changeEvent = ChangeEvent.t; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -39,11 +39,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -67,11 +67,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/Slider.re b/src/components/Slider.re index 3dd3d6db6..7e02b5d89 100644 --- a/src/components/Slider.re +++ b/src/components/Slider.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -33,11 +33,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -61,11 +61,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/SnapshotViewIOS.re b/src/components/SnapshotViewIOS.re index 4ab8543c7..d37ff8a25 100644 --- a/src/components/SnapshotViewIOS.re +++ b/src/components/SnapshotViewIOS.re @@ -8,7 +8,7 @@ module SnapshotReadyEvent = { type snapshotReadyEvent = SnapshotReadyEvent.t; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] // SnapshotViewIOS props external make: ( @@ -28,11 +28,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -56,11 +56,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/StatusBar.re b/src/components/StatusBar.re index 17ff5454a..6e1acb6ef 100644 --- a/src/components/StatusBar.re +++ b/src/components/StatusBar.re @@ -1,13 +1,13 @@ type showHideTransition = [ | `fade | `none | `slide]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~animated: bool=?, - ~barStyle: [@bs.string] [ + ~barStyle: [@mel.string] [ | `default - | [@bs.as "light-content"] `lightContent - | [@bs.as "dark-content"] `darkContent + | [@mel.as "light-content"] `lightContent + | [@mel.as "dark-content"] `darkContent ] =?, ~hidden: bool=?, @@ -19,31 +19,31 @@ external make: React.element = "StatusBar"; -[@bs.module "react-native"] [@bs.scope "StatusBar"] +[@mel.module "react-native"] [@mel.scope "StatusBar"] external setHidden: (bool, showHideTransition) => unit = "setHidden"; -[@bs.module "react-native"] [@bs.scope "StatusBar"] +[@mel.module "react-native"] [@mel.scope "StatusBar"] external setBarStyle: ( - [@bs.string] [ + [@mel.string] [ | `default - | [@bs.as "light-content"] `lightContent - | [@bs.as "dark-content"] `darkContent + | [@mel.as "light-content"] `lightContent + | [@mel.as "dark-content"] `darkContent ], bool ) => unit = "setBarStyle"; -[@bs.module "react-native"] [@bs.scope "StatusBar"] +[@mel.module "react-native"] [@mel.scope "StatusBar"] external setNetworkActivityIndicatorVisible: bool => unit = "setNetworkActivityIndicatorVisible"; -[@bs.module "react-native"] [@bs.scope "StatusBar"] +[@mel.module "react-native"] [@mel.scope "StatusBar"] external setBackgroundColor: (Color.t, bool) => unit = "setBackgroundColor"; -[@bs.module "react-native"] [@bs.scope "StatusBar"] +[@mel.module "react-native"] [@mel.scope "StatusBar"] external setTranslucent: bool => unit = "setTranslucent"; -[@bs.module "react-native"] [@bs.scope "StatusBar"] +[@mel.module "react-native"] [@mel.scope "StatusBar"] external currentHeight: float = "currentHeight"; diff --git a/src/components/Switch.re b/src/components/Switch.re index 0f4212c54..98189fe8f 100644 --- a/src/components/Switch.re +++ b/src/components/Switch.re @@ -1,11 +1,11 @@ include NativeElement; type trackColor; -[@bs.obj] +[@mel.obj] external trackColor: (~_true: Color.t=?, ~_false: Color.t=?, unit) => trackColor; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -30,11 +30,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -58,11 +58,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/Text.re b/src/components/Text.re index 3689611a4..92bd8d740 100644 --- a/src/components/Text.re +++ b/src/components/Text.re @@ -20,7 +20,7 @@ type ellipsizeMode = [ | `clip | `head | `middle | `tail]; type textBreakStrategy = [ | `simple | `highQuality | `balanced]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -68,10 +68,10 @@ external make: ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, // React Native Web Props - ~rel: [@bs.string] [ + ~rel: [@mel.string] [ | `alternate | `author - | [@bs.as "dns-prefetch"] `dnsPrefetch + | [@mel.as "dns-prefetch"] `dnsPrefetch | `icon | `license | `next diff --git a/src/components/TextInput.re b/src/components/TextInput.re index 74fdc82b5..58523c628 100644 --- a/src/components/TextInput.re +++ b/src/components/TextInput.re @@ -61,7 +61,7 @@ type scrollEvent = ScrollEvent.t; type selection = { start: int, - [@bs.as "end"] + [@mel.as "end"] _end: int, }; @@ -139,37 +139,37 @@ type textContentType = [ | `oneTimeCode ]; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, // TextInput props ~allowFontScaling: bool=?, ~autoCapitalize: autoCapitalize=?, - ~autoCompleteType: [@bs.string] [ + ~autoCompleteType: [@mel.string] [ | `off | `username | `password | `email | `name | `tel - | [@bs.as "street-address"] `streetAddress - | [@bs.as "postal-code"] `postalCode - | [@bs.as "cc-number"] `ccNumber - | [@bs.as "cc-csc"] `ccCsc - | [@bs.as "cc-exp"] `ccExp - | [@bs.as "cc-exp-month"] `ccExpMonth - | [@bs.as "cc-exp-year"] `ccExpYear + | [@mel.as "street-address"] `streetAddress + | [@mel.as "postal-code"] `postalCode + | [@mel.as "cc-number"] `ccNumber + | [@mel.as "cc-csc"] `ccCsc + | [@mel.as "cc-exp"] `ccExp + | [@mel.as "cc-exp-month"] `ccExpMonth + | [@mel.as "cc-exp-year"] `ccExpYear ] =?, ~autoCorrect: bool=?, ~autoFocus: bool=?, ~blurOnSubmit: bool=?, ~caretHidden: bool=?, - ~clearButtonMode: [@bs.string] [ + ~clearButtonMode: [@mel.string] [ | `never - | [@bs.as "while-editing"] `whileEditing - | [@bs.as "unless-editing"] `unlessEditing + | [@mel.as "while-editing"] `whileEditing + | [@mel.as "unless-editing"] `unlessEditing | `always ] =?, @@ -184,21 +184,21 @@ external make: ~inlineImagePadding: float=?, ~inputAccessoryViewID: string=?, ~keyboardAppearance: keyboardAppearance=?, - ~keyboardType: [@bs.string] [ + ~keyboardType: [@mel.string] [ | `default - | [@bs.as "number-pad"] `numberPad - | [@bs.as "decimal-pad"] `decimalPad + | [@mel.as "number-pad"] `numberPad + | [@mel.as "decimal-pad"] `decimalPad | `numeric - | [@bs.as "email-address"] `emailAddress - | [@bs.as "phone-pad"] `phonePad - | [@bs.as "ascii-capable"] `asciiCapable - | [@bs.as "numbers-and-punctuation"] + | [@mel.as "email-address"] `emailAddress + | [@mel.as "phone-pad"] `phonePad + | [@mel.as "ascii-capable"] `asciiCapable + | [@mel.as "numbers-and-punctuation"] `numbersAndPunctuation | `url - | [@bs.as "name-phone-pad"] `namePhonePad + | [@mel.as "name-phone-pad"] `namePhonePad | `twitter - | [@bs.as "web-search"] `webSearch - | [@bs.as "visible-password"] `visiblePassword + | [@mel.as "web-search"] `webSearch + | [@mel.as "visible-password"] `visiblePassword ] =?, ~maxFontSizeMultiplier: float=?, @@ -220,8 +220,8 @@ external make: ~placeholder: string=?, ~placeholderTextColor: Color.t=?, ~returnKeyLabel: string=?, - ~returnKeyType: [@bs.string] [ - | [@bs.as "done"] `done_ + ~returnKeyType: [@mel.string] [ + | [@mel.as "done"] `done_ | `go | `next | `search @@ -229,7 +229,7 @@ external make: | `none | `previous | `default - | [@bs.as "emergency-call"] `emergencyCall + | [@mel.as "emergency-call"] `emergencyCall | `google | `join | `route @@ -262,11 +262,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -290,11 +290,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/TouchableHighlight.re b/src/components/TouchableHighlight.re index 822231b93..cb43d1b4d 100644 --- a/src/components/TouchableHighlight.re +++ b/src/components/TouchableHighlight.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -28,11 +28,11 @@ external make: ~delayPressOut: int=?, ~disabled: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -46,10 +46,10 @@ external make: ~touchSoundDisabled: bool=?, ~children: React.element=?, // React Native Web Props - ~rel: [@bs.string] [ + ~rel: [@mel.string] [ | `alternate | `author - | [@bs.as "dns-prefetch"] `dnsPrefetch + | [@mel.as "dns-prefetch"] `dnsPrefetch | `icon | `license | `next diff --git a/src/components/TouchableNativeFeedback.re b/src/components/TouchableNativeFeedback.re index d4ed56398..212c89339 100644 --- a/src/components/TouchableNativeFeedback.re +++ b/src/components/TouchableNativeFeedback.re @@ -3,21 +3,21 @@ include NativeElement; module Background = { type t; - [@bs.module "react-native"] [@bs.scope "TouchableNativeFeedback"] + [@mel.module "react-native"] [@mel.scope "TouchableNativeFeedback"] external selectableBackground: unit => t = "SelectableBackground"; - [@bs.module "react-native"] [@bs.scope "TouchableNativeFeedback"] + [@mel.module "react-native"] [@mel.scope "TouchableNativeFeedback"] external selectableBackgroundBorderless: unit => t = "SelectableBackgroundBorderless"; - [@bs.module "react-native"] [@bs.scope "TouchableNativeFeedback"] + [@mel.module "react-native"] [@mel.scope "TouchableNativeFeedback"] external canUseNativeForeground: unit => bool = "canUseNativeForeground"; - [@bs.module "react-native"] [@bs.scope "TouchableNativeFeedback"] + [@mel.module "react-native"] [@mel.scope "TouchableNativeFeedback"] external ripple: (string, bool) => t = "Ripple"; }; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -40,11 +40,11 @@ external make: ~delayPressOut: int=?, ~disabled: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -58,10 +58,10 @@ external make: ~touchSoundDisabled: bool=?, ~children: React.element=?, // React Native Web Props - ~rel: [@bs.string] [ + ~rel: [@mel.string] [ | `alternate | `author - | [@bs.as "dns-prefetch"] `dnsPrefetch + | [@mel.as "dns-prefetch"] `dnsPrefetch | `icon | `license | `next diff --git a/src/components/TouchableOpacity.re b/src/components/TouchableOpacity.re index 4e85fac07..2d6384adc 100644 --- a/src/components/TouchableOpacity.re +++ b/src/components/TouchableOpacity.re @@ -1,6 +1,6 @@ include TouchableOpacityElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -25,11 +25,11 @@ external make: ~delayPressOut: int=?, ~disabled: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -43,10 +43,10 @@ external make: ~touchSoundDisabled: bool=?, ~children: React.element=?, // React Native Web Props - ~rel: [@bs.string] [ + ~rel: [@mel.string] [ | `alternate | `author - | [@bs.as "dns-prefetch"] `dnsPrefetch + | [@mel.as "dns-prefetch"] `dnsPrefetch | `icon | `license | `next diff --git a/src/components/TouchableWithoutFeedback.re b/src/components/TouchableWithoutFeedback.re index e5e0e67c3..d42238fcc 100644 --- a/src/components/TouchableWithoutFeedback.re +++ b/src/components/TouchableWithoutFeedback.re @@ -1,6 +1,6 @@ include NativeElement; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -20,11 +20,11 @@ external make: ~delayPressOut: int=?, ~disabled: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -40,10 +40,10 @@ external make: ~touchSoundDisabled: bool=?, ~children: React.element=?, // React Native Web Props - ~rel: [@bs.string] [ + ~rel: [@mel.string] [ | `alternate | `author - | [@bs.as "dns-prefetch"] `dnsPrefetch + | [@mel.as "dns-prefetch"] `dnsPrefetch | `icon | `license | `next diff --git a/src/components/View.re b/src/components/View.re index 0a385e207..8608f24b2 100644 --- a/src/components/View.re +++ b/src/components/View.re @@ -1,7 +1,7 @@ include NativeElement; type edgeInsets; -[@bs.obj] +[@mel.obj] external edgeInsets: (~left: float=?, ~right: float=?, ~top: float=?, ~bottom: float=?, unit) => edgeInsets; @@ -13,7 +13,7 @@ module View = { type nonrec edgeInsets = edgeInsets; }; -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -35,11 +35,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -63,11 +63,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/VirtualizedList.re b/src/components/VirtualizedList.re index d2bdb7dd3..d8996d7b7 100644 --- a/src/components/VirtualizedList.re +++ b/src/components/VirtualizedList.re @@ -43,7 +43,7 @@ type onScrollToIndexFailedInfo = { type onScrollToIndexFailedParams = {info: onScrollToIndexFailedInfo}; type viewabilityConfig; -[@bs.obj] +[@mel.obj] external viewabilityConfig: ( ~minimumViewTime: float=?, @@ -55,7 +55,7 @@ external viewabilityConfig: viewabilityConfig; type viewabilityConfigCallbackPair('item); -[@bs.obj] +[@mel.obj] external viewabilityConfigCallbackPair: ( ~viewabilityConfig: viewabilityConfig, @@ -66,7 +66,7 @@ external viewabilityConfigCallbackPair: type viewabilityConfigCallbackPairs('item) = array(viewabilityConfigCallbackPair('item)); -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -121,10 +121,10 @@ external make: ~fadingEdgeLength: float=?, ~horizontal: bool=?, ~indicatorStyle: ScrollView.indicatorStyle=?, - ~keyboardDismissMode: [@bs.string] [ + ~keyboardDismissMode: [@mel.string] [ | `none | `interactive - | [@bs.as "on-drag"] `onDrag + | [@mel.as "on-drag"] `onDrag ] =?, ~keyboardShouldPersistTaps: ScrollView.keyboardShouldPersistTaps=?, @@ -170,11 +170,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -198,11 +198,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/components/VirtualizedSectionList.re b/src/components/VirtualizedSectionList.re index 04844c6a3..8594e28cb 100644 --- a/src/components/VirtualizedSectionList.re +++ b/src/components/VirtualizedSectionList.re @@ -10,7 +10,7 @@ and section('item, 'sectionData) = { data: array('item), key: option(string), renderItem: option(renderItemCallback('item, 'sectionData)), - [@bs.as "ItemSeparatorComponent"] + [@mel.as "ItemSeparatorComponent"] itemSeparatorComponent: option(unit => React.element), keyExtractor: option(('item, int) => string), sectionData: option('sectionData), @@ -38,7 +38,7 @@ type separatorProps('item, 'sectionData) = { "trailingSection": option(section('item, 'sectionData)), }; -[@bs.obj] +[@mel.obj] external section: ( ~data: array('item), @@ -51,7 +51,7 @@ external section: ) => section('item, 'sectionData); -[@react.component] [@bs.module "react-native"] +[@react.component] [@mel.module "react-native"] external make: ( ~ref: ref=?, @@ -127,10 +127,10 @@ external make: ~fadingEdgeLength: float=?, ~horizontal: bool=?, ~indicatorStyle: ScrollView.indicatorStyle=?, - ~keyboardDismissMode: [@bs.string] [ + ~keyboardDismissMode: [@mel.string] [ | `none | `interactive - | [@bs.as "on-drag"] `onDrag + | [@mel.as "on-drag"] `onDrag ] =?, ~keyboardShouldPersistTaps: ScrollView.keyboardShouldPersistTaps=?, @@ -176,11 +176,11 @@ external make: ~accessible: bool=?, ~collapsable: bool=?, ~hitSlop: View.edgeInsets=?, - ~importantForAccessibility: [@bs.string] [ + ~importantForAccessibility: [@mel.string] [ | `auto | `yes | `no - | [@bs.as "no-hide-descendants"] + | [@mel.as "no-hide-descendants"] `noHideDescendants ] =?, @@ -204,11 +204,11 @@ external make: ~onResponderTerminationRequest: Event.pressEvent => bool=?, ~onStartShouldSetResponder: Event.pressEvent => bool=?, ~onStartShouldSetResponderCapture: Event.pressEvent => bool=?, - ~pointerEvents: [@bs.string] [ + ~pointerEvents: [@mel.string] [ | `auto | `none - | [@bs.as "box-none"] `boxNone - | [@bs.as "box-only"] `boxOnly + | [@mel.as "box-none"] `boxNone + | [@mel.as "box-only"] `boxOnly ] =?, ~removeClippedSubviews: bool=?, diff --git a/src/dune b/src/dune new file mode 100644 index 000000000..bdf678643 --- /dev/null +++ b/src/dune @@ -0,0 +1,9 @@ +(library + (name reasonReactNative) + (public_name reason-react-native) + (modes melange) + (libraries reason-react) + (preprocess + (pps melange.ppx))) + +(include_subdirs unqualified) diff --git a/src/elements/DrawerLayoutAndroidMethods.re b/src/elements/DrawerLayoutAndroidMethods.re index 97de57d00..2507abb49 100644 --- a/src/elements/DrawerLayoutAndroidMethods.re +++ b/src/elements/DrawerLayoutAndroidMethods.re @@ -1,4 +1,4 @@ module Make = (T: {type t;}) => { - [@bs.send] external openDrawer: (T.t, unit) => unit = "openDrawer"; - [@bs.send] external closeDrawer: (T.t, unit) => unit = "closeDrawer"; + [@mel.send] external openDrawer: (T.t, unit) => unit = "openDrawer"; + [@mel.send] external closeDrawer: (T.t, unit) => unit = "closeDrawer"; }; diff --git a/src/elements/NativeMethods.re b/src/elements/NativeMethods.re index 3615f1623..884fc4c29 100644 --- a/src/elements/NativeMethods.re +++ b/src/elements/NativeMethods.re @@ -1,16 +1,16 @@ open NativeTypes; module Make = (T: {type t;}) => { - [@bs.module "react-native"] + [@mel.module "react-native"] external findNodeHandle: T.t => nodeHandle = "findNodeHandle"; - [@bs.send] + [@mel.send] external setNativeProps: (T.t, Js.t('a)) => unit = "setNativeProps"; - [@bs.send] external focus: T.t => unit = "focus"; - [@bs.send] external blur: T.t => unit = "blur"; + [@mel.send] external focus: T.t => unit = "focus"; + [@mel.send] external blur: T.t => unit = "blur"; - [@bs.send] + [@mel.send] external measure: ( T.t, @@ -26,13 +26,13 @@ module Make = (T: {type t;}) => { ) => unit = "measure"; - [@bs.send] + [@mel.send] external measureInWindow: (T.t, (~x: float, ~y: float, ~width: float, ~height: float) => unit) => unit = "measureInWindow"; - [@bs.send] + [@mel.send] external measureLayout: ( T.t, diff --git a/src/elements/ScrollViewElement.re b/src/elements/ScrollViewElement.re index 7c515fcb8..5af78e662 100644 --- a/src/elements/ScrollViewElement.re +++ b/src/elements/ScrollViewElement.re @@ -6,8 +6,8 @@ include ScrollViewMethods.Make({ }); type scrollToParams; -[@bs.obj] +[@mel.obj] external scrollToParams: (~x: float, ~y: float, ~animated: bool=?, ~duration: float=?, unit) => scrollToParams; -[@bs.send] external scrollTo: (element, scrollToParams) => unit = "scrollTo"; +[@mel.send] external scrollTo: (element, scrollToParams) => unit = "scrollTo"; diff --git a/src/elements/ScrollViewMethods.re b/src/elements/ScrollViewMethods.re index 29eb557bb..779fa9a09 100644 --- a/src/elements/ScrollViewMethods.re +++ b/src/elements/ScrollViewMethods.re @@ -1,20 +1,20 @@ module Make = (T: {type t;}) => { type scrollToEndOptions; - [@bs.obj] + [@mel.obj] external scrollToEndOptions: (~animated: bool=?, ~duration: float=?, unit) => scrollToEndOptions; // multiple externals - [@bs.send] external scrollToEnd: T.t => unit = "scrollToEnd"; + [@mel.send] external scrollToEnd: T.t => unit = "scrollToEnd"; // multiple externals - [@bs.send] + [@mel.send] external scrollToEndWithOptions: (T.t, scrollToEndOptions) => unit = "scrollToEnd"; - [@bs.send] + [@mel.send] external flashScrollIndicators: T.t => unit = "flashScrollIndicators"; - [@bs.send] + [@mel.send] external setNativeProps: (T.t, Js.t('a)) => unit = "setNativeProps"; }; diff --git a/src/elements/TextInputMethods.re b/src/elements/TextInputMethods.re index adf94c18a..f50e5aafb 100644 --- a/src/elements/TextInputMethods.re +++ b/src/elements/TextInputMethods.re @@ -1,4 +1,4 @@ module Make = (T: {type t;}) => { - [@bs.send] external isFocused: T.t => bool = "isFocused"; - [@bs.send] external clear: T.t => unit = "clear"; + [@mel.send] external isFocused: T.t => bool = "isFocused"; + [@mel.send] external clear: T.t => unit = "clear"; }; diff --git a/src/elements/TouchableOpacityMethods.re b/src/elements/TouchableOpacityMethods.re index a77c6c810..ae28b112d 100644 --- a/src/elements/TouchableOpacityMethods.re +++ b/src/elements/TouchableOpacityMethods.re @@ -1,5 +1,5 @@ module Make = (T: {type t;}) => { - [@bs.send] + [@mel.send] external setOpacityTo: (T.t, ~value: float, ~duration: float) => unit = "setOpacityTo"; }; diff --git a/src/elements/ViewPagerAndroidMethods.re b/src/elements/ViewPagerAndroidMethods.re index 0603b47e7..97fc015fe 100644 --- a/src/elements/ViewPagerAndroidMethods.re +++ b/src/elements/ViewPagerAndroidMethods.re @@ -1,6 +1,6 @@ module Make = (T: {type t;}) => { - [@bs.send] external setPage: (T.t, int) => unit = "setPage"; - [@bs.send] + [@mel.send] external setPage: (T.t, int) => unit = "setPage"; + [@mel.send] external setPageWithoutAnimation: (T.t, int) => unit = "setPageWithoutAnimation"; }; diff --git a/src/elements/VirtualizedListMethods.re b/src/elements/VirtualizedListMethods.re index 43355b501..81d0adcc3 100644 --- a/src/elements/VirtualizedListMethods.re +++ b/src/elements/VirtualizedListMethods.re @@ -1,6 +1,6 @@ module Make = (T: {type t;}) => { type scrollToIndexParams; - [@bs.obj] + [@mel.obj] external scrollToIndexParams: ( ~viewOffset: float=?, @@ -10,25 +10,25 @@ module Make = (T: {type t;}) => { unit ) => scrollToIndexParams; - [@bs.send] + [@mel.send] external scrollToIndex: (T.t, scrollToIndexParams) => unit = "scrollToIndex"; type scrollToItemParams('item); - [@bs.obj] + [@mel.obj] external scrollToItemParams: (~viewPosition: float=?, ~animated: bool=?, ~item: 'item, unit) => scrollToItemParams('item); - [@bs.send] + [@mel.send] external scrollToItem: (T.t, scrollToItemParams('item)) => unit = "scrollToItem"; type scrollToOffsetParams; - [@bs.obj] + [@mel.obj] external scrollToOffsetParams: (~animated: bool=?, ~offset: float, unit) => scrollToOffsetParams; - [@bs.send] + [@mel.send] external scrollToOffset: (T.t, scrollToOffsetParams) => unit = "scrollToOffset"; - [@bs.send] external recordInteraction: T.t => unit = "recordInteraction"; + [@mel.send] external recordInteraction: T.t => unit = "recordInteraction"; }; diff --git a/src/elements/VirtualizedSectionListMethods.re b/src/elements/VirtualizedSectionListMethods.re index 2be2cc27c..62d98ffde 100644 --- a/src/elements/VirtualizedSectionListMethods.re +++ b/src/elements/VirtualizedSectionListMethods.re @@ -1,6 +1,6 @@ module Make = (T: {type t;}) => { type scrollToLocationParams; - [@bs.obj] + [@mel.obj] external scrollToLocationParams: ( ~animated: bool=?, @@ -12,7 +12,7 @@ module Make = (T: {type t;}) => { ) => scrollToLocationParams; - [@bs.send] + [@mel.send] external scrollToLocation: (T.t, scrollToLocationParams) => unit = "scrollToLocation"; }; diff --git a/src/private/SourceCode.re b/src/private/SourceCode.re index ff935e5cc..cdf170e96 100644 --- a/src/private/SourceCode.re +++ b/src/private/SourceCode.re @@ -1,2 +1,2 @@ -[@bs.module "react-native"] [@bs.scope ("NativeModules", "SourceCode")] +[@mel.module "react-native"] [@mel.scope ("NativeModules", "SourceCode")] external scriptURL: string = "scriptURL"; diff --git a/src/types/Accessibility.re b/src/types/Accessibility.re index 879483e53..e1115babc 100644 --- a/src/types/Accessibility.re +++ b/src/types/Accessibility.re @@ -2,21 +2,21 @@ type state; type actionInfo; type checked('a) = 'a; -[@bs.inline] +[@mel.inline] let checked = true; -[@bs.inline] +[@mel.inline] let unchecked = false; -[@bs.inline] +[@mel.inline] let mixed = "mixed"; -[@bs.obj] +[@mel.obj] external actionInfo: (~name: string, ~label: string=?, unit) => actionInfo; type actionEvent = AccessibilityActionEvent.t; -[@bs.obj] +[@mel.obj] external state: ( ~disabled: bool=?, @@ -30,9 +30,9 @@ external state: type value; -[@bs.obj] external textValue: (~text: string) => value; +[@mel.obj] external textValue: (~text: string) => value; -[@bs.obj] external intValue: (~min: int, ~max: int, ~now: int) => value; +[@mel.obj] external intValue: (~min: int, ~max: int, ~now: int) => value; type liveRegion = [ | `none | `polite | `assertive]; diff --git a/src/types/Accessibility.rei b/src/types/Accessibility.rei index 16273faf7..f223a3c8c 100644 --- a/src/types/Accessibility.rei +++ b/src/types/Accessibility.rei @@ -2,21 +2,21 @@ type state; type actionInfo; type checked('a); -[@bs.inline true] +[@mel.inline true] let checked: checked(bool); -[@bs.inline false] +[@mel.inline false] let unchecked: checked(bool); -[@bs.inline "mixed"] +[@mel.inline "mixed"] let mixed: checked(string); -[@bs.obj] +[@mel.obj] external actionInfo: (~name: string, ~label: string=?, unit) => actionInfo; type actionEvent = AccessibilityActionEvent.t; -[@bs.obj] +[@mel.obj] external state: ( ~disabled: bool=?, @@ -30,9 +30,9 @@ external state: type value; -[@bs.obj] external textValue: (~text: string) => value; +[@mel.obj] external textValue: (~text: string) => value; -[@bs.obj] external intValue: (~min: int, ~max: int, ~now: int) => value; +[@mel.obj] external intValue: (~min: int, ~max: int, ~now: int) => value; type liveRegion = [ | `none | `polite | `assertive]; diff --git a/src/types/ActivityIndicator_Size.re b/src/types/ActivityIndicator_Size.re index 9febf0f91..17711ce2e 100644 --- a/src/types/ActivityIndicator_Size.re +++ b/src/types/ActivityIndicator_Size.re @@ -1,9 +1,9 @@ type t = string; -[@bs.inline] +[@mel.inline] let small = "small"; -[@bs.inline] +[@mel.inline] let large = "large"; external exact: float => t = "%identity"; diff --git a/src/types/ActivityIndicator_Size.rei b/src/types/ActivityIndicator_Size.rei index 2e0987587..28ef39f5e 100644 --- a/src/types/ActivityIndicator_Size.rei +++ b/src/types/ActivityIndicator_Size.rei @@ -1,9 +1,9 @@ type t; -[@bs.inline "small"] +[@mel.inline "small"] let small: t; -[@bs.inline "large"] +[@mel.inline "large"] let large: t; external exact: float => t = "%identity"; diff --git a/src/types/FontVariant.re b/src/types/FontVariant.re index bde373abf..f7c6951fa 100644 --- a/src/types/FontVariant.re +++ b/src/types/FontVariant.re @@ -1,16 +1,16 @@ type t = string; -[@bs.inline] +[@mel.inline] let smallCaps = "small-caps"; -[@bs.inline] +[@mel.inline] let oldstyleNums = "oldstyle-nums"; -[@bs.inline] +[@mel.inline] let liningNums = "lining-nums"; -[@bs.inline] +[@mel.inline] let tabularNums = "tabular-nums"; -[@bs.inline] +[@mel.inline] let proportionalNums = "proportional-nums"; diff --git a/src/types/FontVariant.rei b/src/types/FontVariant.rei index 736013aba..5d1f9d105 100644 --- a/src/types/FontVariant.rei +++ b/src/types/FontVariant.rei @@ -1,16 +1,16 @@ type t; -[@bs.inline "small-caps"] +[@mel.inline "small-caps"] let smallCaps: t; -[@bs.inline "oldstyle-nums"] +[@mel.inline "oldstyle-nums"] let oldstyleNums: t; -[@bs.inline "lining-nums"] +[@mel.inline "lining-nums"] let liningNums: t; -[@bs.inline "tabular-nums"] +[@mel.inline "tabular-nums"] let tabularNums: t; -[@bs.inline "proportional-nums"] +[@mel.inline "proportional-nums"] let proportionalNums: t; diff --git a/src/types/Modal_Orientation.re b/src/types/Modal_Orientation.re index 8113cbf9d..edc28fe87 100644 --- a/src/types/Modal_Orientation.re +++ b/src/types/Modal_Orientation.re @@ -1,16 +1,16 @@ type t = string; -[@bs.inline] +[@mel.inline] let landscape = "landscape"; -[@bs.inline] +[@mel.inline] let landscapeLeft = "landscape-left"; -[@bs.inline] +[@mel.inline] let landscapeRight = "landscape-right"; -[@bs.inline] +[@mel.inline] let portrait = "portrait"; -[@bs.inline] +[@mel.inline] let portraitUpsideDown = "portrait-upside-down"; diff --git a/src/types/Modal_Orientation.rei b/src/types/Modal_Orientation.rei index bc793da91..52e336ddd 100644 --- a/src/types/Modal_Orientation.rei +++ b/src/types/Modal_Orientation.rei @@ -1,16 +1,16 @@ type t; -[@bs.inline "landscape"] +[@mel.inline "landscape"] let landscape: t; -[@bs.inline "landscape-left"] +[@mel.inline "landscape-left"] let landscapeLeft: t; -[@bs.inline "landscape-right"] +[@mel.inline "landscape-right"] let landscapeRight: t; -[@bs.inline "portrait"] +[@mel.inline "portrait"] let portrait: t; -[@bs.inline "portrait-upside-down"] +[@mel.inline "portrait-upside-down"] let portraitUpsideDown: t; diff --git a/src/types/TV.re b/src/types/TV.re index 27024c5df..fa7414055 100644 --- a/src/types/TV.re +++ b/src/types/TV.re @@ -1,6 +1,6 @@ type parallax; -[@bs.obj] +[@mel.obj] external parallax: ( ~shiftDistanceX: float, diff --git a/yarn.lock b/yarn.lock index 82108a2b5..b8b89475c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,14 @@ # yarn lockfile v1 +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + "@babel/code-frame@^7.0.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" @@ -9,11 +17,253 @@ dependencies: "@babel/highlight" "^7.8.3" +"@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== + dependencies: + "@babel/highlight" "^7.23.4" + chalk "^2.4.2" + +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== + +"@babel/core@^7.0.0", "@babel/core@^7.1.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.6.tgz#8be77cd77c55baadcc1eae1c33df90ab6d2151d4" + integrity sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.6" + "@babel/parser" "^7.23.6" + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.23.6" + "@babel/types" "^7.23.6" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.23.6", "@babel/generator@^7.5.0": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== + dependencies: + "@babel/types" "^7.23.6" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" + integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz#b04d915ce92ce363666f816a884cdcfc9be04953" + integrity sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" + integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.4.4": + version "0.4.4" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz#64df615451cb30e94b59a9696022cffac9a10088" + integrity sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + +"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" + integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== + dependencies: + "@babel/types" "^7.23.0" + +"@babel/helper-module-imports@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" + integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-wrap-function" "^7.22.20" + +"@babel/helper-replace-supers@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" + integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-optimise-call-expression" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + "@babel/helper-validator-identifier@^7.9.0": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== +"@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + +"@babel/helper-wrap-function@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" + integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.15" + "@babel/types" "^7.22.19" + +"@babel/helpers@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.6.tgz#d03af2ee5fb34691eec0cda90f5ecbb4d4da145a" + integrity sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA== + dependencies: + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.23.6" + "@babel/types" "^7.23.6" + +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + "@babel/highlight@^7.8.3": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" @@ -23,166 +273,1203 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@octokit/auth-token@^2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.0.tgz#b64178975218b99e4dfe948253f0673cbbb59d9f" - integrity sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg== - dependencies: - "@octokit/types" "^2.0.0" - -"@octokit/core@^2.4.3": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-2.5.0.tgz#4706258893a7ac6ab35d58d2fb9f2d2ba19a41a5" - integrity sha512-uvzmkemQrBgD8xuGbjhxzJN1darJk9L2cS+M99cHrDG2jlSVpxNJVhoV86cXdYBqdHCc9Z995uLCczaaHIYA6Q== - dependencies: - "@octokit/auth-token" "^2.4.0" - "@octokit/graphql" "^4.3.1" - "@octokit/request" "^5.4.0" - "@octokit/types" "^2.0.0" - before-after-hook "^2.1.0" - universal-user-agent "^5.0.0" - -"@octokit/endpoint@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.1.tgz#16d5c0e7a83e3a644d1ddbe8cded6c3d038d31d7" - integrity sha512-pOPHaSz57SFT/m3R5P8MUu4wLPszokn5pXcB/pzavLTQf2jbU+6iayTvzaY6/BiotuRS0qyEUkx3QglT4U958A== - dependencies: - "@octokit/types" "^2.11.1" - is-plain-object "^3.0.0" - universal-user-agent "^5.0.0" - -"@octokit/graphql@^4.3.1": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.4.0.tgz#4540b48bbf796b837b311ba6ea5104760db530ca" - integrity sha512-Du3hAaSROQ8EatmYoSAJjzAz3t79t9Opj/WY1zUgxVUGfIKn0AEjg+hlOLscF6fv6i/4y/CeUvsWgIfwMkTccw== - dependencies: - "@octokit/request" "^5.3.0" - "@octokit/types" "^2.0.0" - universal-user-agent "^5.0.0" - -"@octokit/plugin-paginate-rest@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.2.0.tgz#9ae0c14c1b90ec0d96d2ef1b44706b4505a91cee" - integrity sha512-KoNxC3PLNar8UJwR+1VMQOw2IoOrrFdo5YOiDKnBhpVbKpw+zkBKNMNKwM44UWL25Vkn0Sl3nYIEGKY+gW5ebw== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.6", "@babel/parser@^7.22.15", "@babel/parser@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" + integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" + integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== dependencies: - "@octokit/types" "^2.12.1" + "@babel/helper-plugin-utils" "^7.22.5" -"@octokit/plugin-request-log@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz#eef87a431300f6148c39a7f75f8cfeb218b2547e" - integrity sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" + integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.23.3" -"@octokit/plugin-rest-endpoint-methods@3.10.0": - version "3.10.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.10.0.tgz#47f780d69192e45f09f71ded76f0b121b40e2d48" - integrity sha512-Z2DBsdnkWKuVBVFiLoEUKP/82ylH4Ij5F1Mss106hnQYXTxDfCWAyHW+hJ6ophuHVJ9Flaaue3fYn4CggzkHTg== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz#20c60d4639d18f7da8602548512e9d3a4c8d7098" + integrity sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w== dependencies: - "@octokit/types" "^2.14.0" - deprecation "^2.3.1" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" -"@octokit/request-error@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.0.tgz#94ca7293373654400fbb2995f377f9473e00834b" - integrity sha512-rtYicB4Absc60rUv74Rjpzek84UbVHGHJRu4fNVlZ1mCcyUPPuzFfG9Rn6sjHrd95DEsmjSt1Axlc699ZlbDkw== +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.1.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== dependencies: - "@octokit/types" "^2.0.0" - deprecation "^2.0.0" - once "^1.4.0" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@octokit/request@^5.3.0", "@octokit/request@^5.4.0": - version "5.4.2" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.4.2.tgz#74f8e5bbd39dc738a1b127629791f8ad1b3193ee" - integrity sha512-zKdnGuQ2TQ2vFk9VU8awFT4+EYf92Z/v3OlzRaSh4RIP0H6cvW1BFPXq4XYvNez+TPQjqN+0uSkCYnMFFhcFrw== - dependencies: - "@octokit/endpoint" "^6.0.1" - "@octokit/request-error" "^2.0.0" - "@octokit/types" "^2.11.1" - deprecation "^2.0.0" - is-plain-object "^3.0.0" - node-fetch "^2.3.0" - once "^1.4.0" - universal-user-agent "^5.0.0" +"@babel/plugin-proposal-export-default-from@^7.0.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.23.3.tgz#6f511a676c540ccc8d17a8553dbba9230b0ddac0" + integrity sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-default-from" "^7.23.3" -"@octokit/rest@^17.1.1": - version "17.8.0" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-17.8.0.tgz#85da66a98d9f5dfadab079dbb15f6031bd7e5460" - integrity sha512-m2pdo9+DoEoqQ7wRXV1ihffhE1gbvoC20nvchphluEusbZI6Y9HyXABGiXL+mByy2uUMR2cgBDqBJQQ6bY8Uvg== +"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.1.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== dependencies: - "@octokit/core" "^2.4.3" - "@octokit/plugin-paginate-rest" "^2.2.0" - "@octokit/plugin-request-log" "^1.0.0" - "@octokit/plugin-rest-endpoint-methods" "3.10.0" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@octokit/types@^2.0.0", "@octokit/types@^2.11.1", "@octokit/types@^2.12.1", "@octokit/types@^2.14.0": - version "2.14.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.14.0.tgz#f5afa004c37193afab66b407b7785a8d7c4f102a" - integrity sha512-1w2wxpN45rEXPDFeB7rGain7wcJ/aTRg8bdILITVnS0O7a4zEGELa3JmIe+jeLdekQjvZRbVfNPqS+mi5fKCKQ== +"@babel/plugin-proposal-object-rest-spread@^7.0.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== dependencies: - "@types/node" ">= 8" + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" -"@sindresorhus/df@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@sindresorhus/df/-/df-1.0.1.tgz#c69b66f52f6fcdd287c807df210305dbaf78500d" - integrity sha1-xptm9S9vzdKHyAffIQMF2694UA0= +"@babel/plugin-proposal-optional-catch-binding@^7.0.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@sindresorhus/df@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/df/-/df-2.1.0.tgz#d208cf27e06f0bb476d14d7deccd7d726e9aa389" - integrity sha1-0gjPJ+BvC7R20U197M19cm6ao4k= +"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.1.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" + integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.23.3.tgz#7e6d4bf595d5724230200fb2b7401d4734b15335" + integrity sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz#084564e0f3cc21ea6c70c44cff984a1c0509729a" + integrity sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-assertions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" + integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" + integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" + integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" + integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" + integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-async-generator-functions@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz#93ac8e3531f347fba519b4703f9ff2a75c6ae27a" + integrity sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" + integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== + dependencies: + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" + +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" + integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" + integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" + integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" + integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz#e7a75f815e0c534cc4c9a39c56636c84fc0d64f2" + integrity sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-split-export-declaration" "^7.22.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" + integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.15" + +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" + integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dotall-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" + integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-duplicate-keys@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" + integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dynamic-import@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" + integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" + integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-export-namespace-from@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" + integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz#cfa7ca159cc3306fab526fc67091556b51af26ff" + integrity sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-flow" "^7.23.3" + +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" + integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" + integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== + dependencies: + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-json-strings@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" + integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" + integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-logical-assignment-operators@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" + integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" + integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-amd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" + integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.1.0", "@babel/plugin-transform-modules-commonjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" + integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + +"@babel/plugin-transform-modules-systemjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz#fa7e62248931cb15b9404f8052581c302dd9de81" + integrity sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/plugin-transform-modules-umd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" + integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-new-target@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" + integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== dependencies: - execa "^0.2.2" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" + integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" + integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-assign@^7.0.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.23.3.tgz#64177e8cf943460c7f0e1c410277546804f59625" + integrity sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-object-rest-spread@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83" + integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g== + dependencies: + "@babel/compat-data" "^7.23.3" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.23.3" + +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" + integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + +"@babel/plugin-transform-optional-catch-binding@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" + integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" + integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" + integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-methods@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" + integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" + integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" + integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-display-name@^7.0.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz#70529f034dd1e561045ad3c8152a267f0d7b6200" + integrity sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-jsx-self@^7.0.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz#ed3e7dadde046cce761a8e3cf003a13d1a7972d9" + integrity sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-jsx-source@^7.0.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz#03527006bdc8775247a78643c51d4e715fe39a3e" + integrity sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-jsx@^7.0.0": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312" + integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/types" "^7.23.4" + +"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" + integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" + integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-runtime@^7.0.0": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.6.tgz#bf853cd0a675c16ee33e6ba2a63b536e75e5d754" + integrity sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg== + dependencies: + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.6" + babel-plugin-polyfill-corejs3 "^0.8.5" + babel-plugin-polyfill-regenerator "^0.5.3" + semver "^6.3.1" + +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" + integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" + integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" + integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" + integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typeof-symbol@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" + integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typescript@^7.23.3", "@babel/plugin-transform-typescript@^7.5.0": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz#aa36a94e5da8d94339ae3a4e22d40ed287feb34c" + integrity sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.23.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.23.3" + +"@babel/plugin-transform-unicode-escapes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" + integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-property-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" + integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" + integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-sets-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" + integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@^7.1.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.6.tgz#ad0ea799d5a3c07db5b9a172819bbd444092187a" + integrity sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.3" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.23.3" + "@babel/plugin-syntax-import-attributes" "^7.23.3" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.23.3" + "@babel/plugin-transform-async-generator-functions" "^7.23.4" + "@babel/plugin-transform-async-to-generator" "^7.23.3" + "@babel/plugin-transform-block-scoped-functions" "^7.23.3" + "@babel/plugin-transform-block-scoping" "^7.23.4" + "@babel/plugin-transform-class-properties" "^7.23.3" + "@babel/plugin-transform-class-static-block" "^7.23.4" + "@babel/plugin-transform-classes" "^7.23.5" + "@babel/plugin-transform-computed-properties" "^7.23.3" + "@babel/plugin-transform-destructuring" "^7.23.3" + "@babel/plugin-transform-dotall-regex" "^7.23.3" + "@babel/plugin-transform-duplicate-keys" "^7.23.3" + "@babel/plugin-transform-dynamic-import" "^7.23.4" + "@babel/plugin-transform-exponentiation-operator" "^7.23.3" + "@babel/plugin-transform-export-namespace-from" "^7.23.4" + "@babel/plugin-transform-for-of" "^7.23.6" + "@babel/plugin-transform-function-name" "^7.23.3" + "@babel/plugin-transform-json-strings" "^7.23.4" + "@babel/plugin-transform-literals" "^7.23.3" + "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" + "@babel/plugin-transform-member-expression-literals" "^7.23.3" + "@babel/plugin-transform-modules-amd" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-modules-systemjs" "^7.23.3" + "@babel/plugin-transform-modules-umd" "^7.23.3" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.23.3" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" + "@babel/plugin-transform-numeric-separator" "^7.23.4" + "@babel/plugin-transform-object-rest-spread" "^7.23.4" + "@babel/plugin-transform-object-super" "^7.23.3" + "@babel/plugin-transform-optional-catch-binding" "^7.23.4" + "@babel/plugin-transform-optional-chaining" "^7.23.4" + "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-private-methods" "^7.23.3" + "@babel/plugin-transform-private-property-in-object" "^7.23.4" + "@babel/plugin-transform-property-literals" "^7.23.3" + "@babel/plugin-transform-regenerator" "^7.23.3" + "@babel/plugin-transform-reserved-words" "^7.23.3" + "@babel/plugin-transform-shorthand-properties" "^7.23.3" + "@babel/plugin-transform-spread" "^7.23.3" + "@babel/plugin-transform-sticky-regex" "^7.23.3" + "@babel/plugin-transform-template-literals" "^7.23.3" + "@babel/plugin-transform-typeof-symbol" "^7.23.3" + "@babel/plugin-transform-unicode-escapes" "^7.23.3" + "@babel/plugin-transform-unicode-property-regex" "^7.23.3" + "@babel/plugin-transform-unicode-regex" "^7.23.3" + "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.6" + babel-plugin-polyfill-corejs3 "^0.8.5" + babel-plugin-polyfill-regenerator "^0.5.3" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-flow@^7.0.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.23.3.tgz#8084e08b9ccec287bd077ab288b286fab96ffab1" + integrity sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-transform-flow-strip-types" "^7.23.3" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-typescript@^7.1.0": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" + integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-typescript" "^7.23.3" + +"@babel/register@^7.0.0": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.15.tgz#c2c294a361d59f5fa7bcc8b97ef7319c32ecaec7" + integrity sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg== + dependencies: + clone-deep "^4.0.1" + find-cache-dir "^2.0.0" + make-dir "^2.1.0" + pirates "^4.0.5" + source-map-support "^0.5.16" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.8.4": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.6.tgz#c05e610dc228855dc92ef1b53d07389ed8ab521d" + integrity sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.0.0", "@babel/template@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" + integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/parser" "^7.22.15" + "@babel/types" "^7.22.15" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.6.tgz#b53526a2367a0dd6edc423637f3d2d0f2521abc5" + integrity sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.23.6" + "@babel/types" "^7.23.6" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.23.6", "@babel/types@^7.4.4": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" + integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== + dependencies: + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + +"@cnakazawa/watch@^1.0.3": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@jest/create-cache-key-function@^26.5.0": + version "26.6.2" + resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-26.6.2.tgz#04cf439207a4fd12418d8aee551cddc86f9ac5f5" + integrity sha512-LgEuqU1f/7WEIPYqwLPIvvHuc1sB6gMVbT6zWhin3txYUNYK/kGQrC1F2WR4gR34YlI9bBtViTm5z98RqVZAaw== + dependencies: + "@jest/types" "^26.6.2" + +"@jest/types@^26.6.2": + version "26.6.2" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" + integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.20" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" + integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@react-native-community/cli-debugger-ui@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-5.0.1.tgz#6b1f3367b8e5211e899983065ea2e72c1901d75f" + integrity sha512-5gGKaaXYOVE423BUqxIfvfAVSj5Cg1cU/TpGbeg/iqpy2CfqyWqJB3tTuVUbOOiOvR5wbU8tti6pIi1pchJ+oA== + dependencies: + serve-static "^1.13.1" + +"@react-native-community/cli-hermes@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-5.0.1.tgz#039d064bf2dcd5043beb7dcd6cdf5f5cdd51e7fc" + integrity sha512-nD+ZOFvu5MfjLB18eDJ01MNiFrzj8SDtENjGpf0ZRFndOWASDAmU54/UlU/wj8OzTToK1+S1KY7j2P2M1gleww== + dependencies: + "@react-native-community/cli-platform-android" "^5.0.1" + "@react-native-community/cli-tools" "^5.0.1" + chalk "^3.0.0" + hermes-profile-transformer "^0.0.6" + ip "^1.1.5" + +"@react-native-community/cli-platform-android@^5.0.1", "@react-native-community/cli-platform-android@^5.0.1-alpha.0": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-5.0.1.tgz#7f761e1818e5a099877ec59a1b739553fd6a6905" + integrity sha512-qv9GJX6BJ+Y4qvV34vgxKwwN1cnveXUdP6y2YmTW7XoAYs5YUzKqHajpY58EyucAL2y++6+573t5y4U/9IIoww== + dependencies: + "@react-native-community/cli-tools" "^5.0.1" + chalk "^3.0.0" + execa "^1.0.0" + fs-extra "^8.1.0" + glob "^7.1.3" + jetifier "^1.6.2" + lodash "^4.17.15" + logkitty "^0.7.1" + slash "^3.0.0" + xmldoc "^1.1.2" + +"@react-native-community/cli-platform-ios@^5.0.1-alpha.0": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-5.0.2.tgz#62485534053c0dad28a67de188248de177f4b0fb" + integrity sha512-IAJ2B3j2BTsQUJZ4R6cVvnTbPq0Vza7+dOgP81ISz2BKRtQ0VqNFv+VOALH2jLaDzf4t7NFlskzIXFqWqy2BLg== + dependencies: + "@react-native-community/cli-tools" "^5.0.1" + chalk "^3.0.0" + glob "^7.1.3" + js-yaml "^3.13.1" + lodash "^4.17.15" + plist "^3.0.1" + xcode "^2.0.0" + +"@react-native-community/cli-server-api@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-5.0.1.tgz#3cf92dac766fab766afedf77df3fe4d5f51e4d2b" + integrity sha512-OOxL+y9AOZayQzmSW+h5T54wQe+QBc/f67Y9QlWzzJhkKJdYx+S4VOooHoD5PFJzGbYaxhu2YF17p517pcEIIA== + dependencies: + "@react-native-community/cli-debugger-ui" "^5.0.1" + "@react-native-community/cli-tools" "^5.0.1" + compression "^1.7.1" + connect "^3.6.5" + errorhandler "^1.5.0" + nocache "^2.1.0" + pretty-format "^26.6.2" + serve-static "^1.13.1" + ws "^1.1.0" + +"@react-native-community/cli-tools@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-5.0.1.tgz#9ee564dbe20448becd6bce9fbea1b59aa5797919" + integrity sha512-XOX5w98oSE8+KnkMZZPMRT7I5TaP8fLbDl0tCu40S7Epz+Zz924n80fmdu6nUDIfPT1nV6yH1hmHmWAWTDOR+Q== + dependencies: + chalk "^3.0.0" + lodash "^4.17.15" + mime "^2.4.1" + node-fetch "^2.6.0" + open "^6.2.0" + shell-quote "1.6.1" + +"@react-native-community/cli-types@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-5.0.1.tgz#8c5db4011988b0836d27a5efe230cb34890915dc" + integrity sha512-BesXnuFFlU/d1F3+sHhvKt8fUxbQlAbZ3hhMEImp9A6sopl8TEtryUGJ1dbazGjRXcADutxvjwT/i3LJVTIQug== + dependencies: + ora "^3.4.0" + +"@react-native-community/cli@^5.0.1-alpha.0": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-5.0.1.tgz#1f7a66d813d5daf102e593f3c550650fa0cc8314" + integrity sha512-9VzSYUYSEqxEH5Ib2UNSdn2eyPiYZ4T7Y79o9DKtRBuSaUIwbCUdZtIm+UUjBpLS1XYBkW26FqL8/UdZDmQvXw== + dependencies: + "@react-native-community/cli-debugger-ui" "^5.0.1" + "@react-native-community/cli-hermes" "^5.0.1" + "@react-native-community/cli-server-api" "^5.0.1" + "@react-native-community/cli-tools" "^5.0.1" + "@react-native-community/cli-types" "^5.0.1" + appdirsjs "^1.2.4" + chalk "^3.0.0" + command-exists "^1.2.8" + commander "^2.19.0" + cosmiconfig "^5.1.0" + deepmerge "^3.2.0" + envinfo "^7.7.2" + execa "^1.0.0" + find-up "^4.1.0" + fs-extra "^8.1.0" + glob "^7.1.3" + graceful-fs "^4.1.3" + joi "^17.2.1" + leven "^3.1.0" + lodash "^4.17.15" + metro "^0.64.0" + metro-config "^0.64.0" + metro-core "^0.64.0" + metro-react-native-babel-transformer "^0.64.0" + metro-resolver "^0.64.0" + metro-runtime "^0.64.0" + minimist "^1.2.0" + mkdirp "^0.5.1" + node-stream-zip "^1.9.1" + ora "^3.4.0" + pretty-format "^26.6.2" + prompts "^2.4.0" + semver "^6.3.0" + serve-static "^1.13.1" + strip-ansi "^5.2.0" + sudo-prompt "^9.0.0" + wcwidth "^1.0.1" + +"@react-native/assets@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e" + integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ== + +"@react-native/normalize-color@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-1.0.0.tgz#c52a99d4fe01049102d47dc45d40cbde4f720ab6" + integrity sha512-xUNRvNmCl3UGCPbbHvfyFMnpvLPoOjDCcp5bT9m2k+TF/ZBklEQwhPZlkrxRx2NhgFh1X3a5uL7mJ7ZR+8G7Qg== + +"@react-native/polyfills@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@react-native/polyfills/-/polyfills-1.0.0.tgz#05bb0031533598f9458cf65a502b8df0eecae780" + integrity sha512-0jbp4RxjYopTsIdLl+/Fy2TiwVYHy4mgeu07DG4b/LyM0OS/+lPP5c9sbnt/AMlnF6qz2JRZpPpGw1eMNS6A4w== + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" + integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== "@types/color-name@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== -"@types/node@>= 8": - version "13.13.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.5.tgz#96ec3b0afafd64a4ccea9107b75bf8489f0e5765" - integrity sha512-3ySmiBYJPqgjiHA7oEaIo2Rzz0HrOZ7yrNO5HWyaE5q0lQ3BppDZ3N53Miz8bw2I7gh1/zir2MGVZBvpb1zq9g== +"@types/graceful-fs@^4.1.2": + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + dependencies: + "@types/node" "*" -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== -aggregate-error@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" - integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== +"@types/istanbul-lib-report@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" + "@types/istanbul-lib-coverage" "*" -ansi-colors@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" - integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== +"@types/istanbul-reports@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + dependencies: + "@types/istanbul-lib-report" "*" -ansi-escapes@^4.3.0: - version "4.3.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" - integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== +"@types/node@*": + version "20.10.4" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.4.tgz#b246fd84d55d5b1b71bf51f964bd514409347198" + integrity sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg== dependencies: - type-fest "^0.11.0" + undici-types "~5.26.4" -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= +"@types/yargs-parser@*": + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + +"@types/yargs@^15.0.0": + version "15.0.19" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.19.tgz#328fb89e46109ecbdb70c295d96ff2f46dfd01b9" + integrity sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA== + dependencies: + "@types/yargs-parser" "*" + +"@xmldom/xmldom@^0.8.8": + version "0.8.10" + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" + integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +absolute-path@^0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" + integrity sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA== + +accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.7: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +anser@^1.4.9: + version "1.4.10" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" + integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== + +ansi-fragments@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" + integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w== + dependencies: + colorette "^1.0.7" + slice-ansi "^2.0.0" + strip-ansi "^5.0.0" + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== ansi-regex@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.1: +ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -197,37 +1484,216 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: "@types/color-name" "^1.1.1" color-convert "^2.0.1" -array-union@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" - integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== dependencies: - array-uniq "^1.0.1" + micromatch "^3.1.4" + normalize-path "^2.1.1" -array-uniq@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" - integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= +anymatch@^3.0.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +appdirsjs@^1.2.4: + version "1.2.7" + resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.7.tgz#50b4b7948a26ba6090d4aede2ae2dc2b051be3b3" + integrity sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== + +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + integrity sha512-VW0FpCIhjZdarWjIz8Vpva7U95fl2Jn+b+mmFFMLn8PIVscOQcAgEznwUzTEuUHuqZqIxwzRlcaN/urTFFQoiw== + +array-map@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.1.tgz#d1bf3cc8813a7daaa335e5c8eb21d9d06230c1a7" + integrity sha512-sxHIeJTGEsRC8/hYkZzdJNNPZ41EXHVys7pqMw1iwE/Kx8/hto0UbDuGQsSJ0ujPovj9qUZl6EOY/EiZ2g3d9Q== + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + integrity sha512-8jR+StqaC636u7h3ye1co3lQRefgVVUQUhuAmRbDqIMeR2yuXzRvkCNQiQ5J/wbREmoBLNtp13dhaaVpZQDRUw== + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== + +asap@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== -arrify@^1.0.0: +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== + +ast-types@0.14.2: + version "0.14.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd" + integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA== + dependencies: + tslib "^2.0.1" + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-limiter@~1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== +async@^2.4.0: + version "2.6.4" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== + dependencies: + lodash "^4.17.14" + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +babel-core@^7.0.0-bridge.0: + version "7.0.0-bridge.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" + integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== + +babel-plugin-polyfill-corejs2@^0.4.6: + version "0.4.7" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz#679d1b94bf3360f7682e11f2cb2708828a24fe8c" + integrity sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.4.4" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.8.5: + version "0.8.7" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz#941855aa7fdaac06ed24c730a93450d2b2b76d04" + integrity sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.4" + core-js-compat "^3.33.1" + +babel-plugin-polyfill-regenerator@^0.5.3: + version "0.5.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz#c6fc8eab610d3a11eb475391e52584bacfc020f4" + integrity sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.4" + +babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: + version "7.0.0-beta.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" + integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== + +babel-preset-fbjs@^3.3.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c" + integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow== + dependencies: + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-syntax-class-properties" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-block-scoped-functions" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-for-of" "^7.0.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-member-expression-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-object-super" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-property-literals" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-template-literals" "^7.0.0" + babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= -before-after-hook@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635" - integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A== +base64-js@^1.1.2, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +big-integer@1.6.x: + version "1.6.52" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" + integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== + +bplist-creator@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e" + integrity sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg== + dependencies: + stream-buffers "2.2.x" + +bplist-parser@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.1.tgz#e1c90b2ca2a9f9474cc72f6862bbf3fee8341fd1" + integrity sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA== + dependencies: + big-integer "1.6.x" brace-expansion@^1.1.7: version "1.1.11" @@ -237,6 +1703,22 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" +braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + braces@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" @@ -244,28 +1726,90 @@ braces@^3.0.1: dependencies: fill-range "^7.0.1" -bs-platform@^8.3.0: - version "8.3.2" - resolved "https://registry.yarnpkg.com/bs-platform/-/bs-platform-8.3.2.tgz#c307f1cc2d2397c3d088c7f3b62e9f493283cdcf" - integrity sha512-iOTi5JIlNPoCPq31NS9ET79FLyCpwTL2JZbgHz35LzY9Bch1iDtbBR3FVGhRbjphxelAP4fLlFONfUNp5Y3a5g== +browserslist@^4.22.2: + version "4.22.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b" + integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A== + dependencies: + caniuse-lite "^1.0.30001565" + electron-to-chromium "^1.4.601" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -chalk@^1.1.1, chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001565: + version "1.0.30001570" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz#b4e5c1fa786f733ab78fc70f592df6b3f23244ca" + integrity sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw== + +capture-exit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" + rsvp "^4.8.4" -chalk@^2.0.0: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -274,51 +1818,79 @@ chalk@^2.0.0: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" - integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== +chalk@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" + integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" -checkup@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/checkup/-/checkup-1.3.0.tgz#d3800276fea5d0f247ffc951be78c8b02f8e0d76" - integrity sha1-04ACdv6l0PJH/8lRvnjIsC+ODXY= - ci-info@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== dependencies: - restore-cursor "^3.1.0" + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" -cli-truncate@^2.1.0: +cli-cursor@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== + dependencies: + restore-cursor "^2.0.0" + +cli-spinners@^2.0.0: + version "2.9.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== dependencies: - slice-ansi "^3.0.0" string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" color-convert@^1.9.0: version "1.9.3" @@ -344,47 +1916,107 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -commander@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.0.tgz#b990bfb8ac030aedc6d11bc04d1488ffef56db75" - integrity sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q== +colorette@^1.0.7: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== + +colors@^1.1.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" + integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== + +command-exists@^1.2.8: + version "1.2.9" + resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" + integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== -compare-versions@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" - integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== +commander@^2.19.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@~2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" + integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +component-emitter@^1.2.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17" + integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.1: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= -cosmiconfig@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" - integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== +connect@^3.6.5: + version "3.7.0" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" + debug "2.6.9" + finalhandler "1.1.2" + parseurl "~1.3.3" + utils-merge "1.0.1" -cross-spawn-async@^2.1.1: - version "2.2.5" - resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" - integrity sha1-hF/wwINKPe2dFg2sptOQkGuyiMw= +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== + +core-js-compat@^3.31.0, core-js-compat@^3.33.1: + version "3.34.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.34.0.tgz#61a4931a13c52f8f08d924522bba65f8c94a5f17" + integrity sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA== dependencies: - lru-cache "^4.0.0" - which "^1.2.8" + browserslist "^4.22.2" -cross-spawn@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" - integrity sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE= +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== dependencies: - lru-cache "^4.0.1" - which "^1.2.9" + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" cross-spawn@^6.0.0: version "6.0.5" @@ -397,14 +2029,17 @@ cross-spawn@^6.0.0: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^7.0.0: - version "7.0.2" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.2.tgz#d0d7dcfa74e89115c7619f4f721a94e1fdb716d6" - integrity sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw== +dayjs@^1.8.15: + version "1.11.10" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0" + integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ== + +debug@2.6.9, debug@^2.2.0, debug@^2.3.3: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" + ms "2.0.0" debug@^4.1.0: version "4.1.1" @@ -413,40 +2048,92 @@ debug@^4.1.0: dependencies: ms "^2.1.1" -debug@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" - integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== +debug@^4.1.1, debug@^4.3.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== -define-properties@^1.1.2, define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== +decode-uri-component@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== + +deepmerge@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" + integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA== + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: - object-keys "^1.0.12" + clone "^1.0.2" -deprecation@^2.0.0, deprecation@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" - integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== + dependencies: + is-descriptor "^0.1.0" -duplexer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +denodeify@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" + integrity sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.4.601: + version "1.4.613" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.613.tgz#529e4fc65576ecfd055d7d4619fade4fac446af2" + integrity sha512-r4x5+FowKG6q+/Wj0W9nidx7QO31BJwmR2uEo+Qh3YLGQ8SbBAFuDFpTxzly/I2gsbrFwBuIjrMp423L3O5U3w== emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -454,79 +2141,72 @@ end-of-stream@^1.1.0: dependencies: once "^1.4.0" -enquirer@^2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== - dependencies: - ansi-colors "^4.1.1" +envinfo@^7.7.2: + version "7.11.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" + integrity sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg== -error-ex@^1.2.0, error-ex@^1.3.1: +error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" -es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: - version "1.17.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== - dependencies: - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - is-callable "^1.1.5" - is-regex "^1.0.5" - object-inspect "^1.7.0" - object-keys "^1.1.1" - object.assign "^4.1.0" - string.prototype.trimleft "^2.1.1" - string.prototype.trimright "^2.1.1" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== +error-stack-parser@^2.0.6: + version "2.1.4" + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" + stackframe "^1.3.4" -escape-string-applescript@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/escape-string-applescript/-/escape-string-applescript-1.0.0.tgz#6f1c2294245d82c63bc03338dc19a94aa8428892" - integrity sha1-bxwilCRdgsY7wDM43BmpSqhCiJI= +errorhandler@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" + integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== + dependencies: + accepts "~1.3.7" + escape-html "~1.0.3" -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -event-stream@=3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" - integrity sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE= - dependencies: - duplexer "~0.1.1" - from "~0" - map-stream "~0.1.0" - pause-stream "0.0.11" - split "0.3" - stream-combiner "~0.0.4" - through "~2.3.1" +esprima@^4.0.0, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -execa@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.2.2.tgz#e2ead472c2c31aad6f73f1ac956eef45e12320cb" - integrity sha1-4urUcsLDGq1vc/GslW7vReEjIMs= - dependencies: - cross-spawn-async "^2.1.1" - npm-run-path "^1.0.0" - object-assign "^4.0.1" - path-key "^1.0.0" - strip-eof "^1.0.0" +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +event-target-shim@^5.0.0, event-target-shim@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +exec-sh@^0.3.2: + version "0.3.6" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== execa@^1.0.0: version "1.0.0" @@ -541,27 +2221,64 @@ execa@^1.0.0: signal-exit "^3.0.0" strip-eof "^1.0.0" -execa@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" - integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + dependencies: + is-extendable "^0.1.0" -figures@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== dependencies: - escape-string-regexp "^1.0.5" + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" fill-range@^7.0.1: version "7.0.1" @@ -570,15 +2287,36 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -find-up@^1.0.0: +finalhandler@1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" -find-up@^4.0.0: +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -586,43 +2324,75 @@ find-up@^4.0.0: locate-path "^5.0.0" path-exists "^4.0.0" -find-versions@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" - integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== +flow-parser@0.*: + version "0.224.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.224.0.tgz#02a6dd52e245691233a2cc49021ffd5563550652" + integrity sha512-S1P78o0VLB1FZvkoGSIpaRiiTUQ3xDhm9I4Z1qc3lglmkjehfR2sjM0vhwKS7UC1G12VT4Leb/GGV/KlactqjA== + +flow-parser@^0.121.0: + version "0.121.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.121.0.tgz#9f9898eaec91a9f7c323e9e992d81ab5c58e618f" + integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg== + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== dependencies: - semver-regex "^2.0.0" + map-cache "^0.2.2" -from@~0: - version "0.1.7" - resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" - integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4= +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== -fs-extra@^0.26.2: - version "0.26.7" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9" - integrity sha1-muH92UiXeY7at20JGM9C0MMYT6k= +fs-extra@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ== dependencies: graceful-fs "^4.1.2" jsonfile "^2.1.0" klaw "^1.0.0" - path-is-absolute "^1.0.0" - rimraf "^2.2.8" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +fsevents@^2.1.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -get-own-enumerable-property-symbols@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" - integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-stream@^4.0.0: version "4.1.0" @@ -631,29 +2401,20 @@ get-stream@^4.0.0: dependencies: pump "^3.0.0" -get-stream@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" - integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== - dependencies: - pump "^3.0.0" - -github-release-from-changelog@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/github-release-from-changelog/-/github-release-from-changelog-2.1.1.tgz#035b25d8d15521790da90d338de8d84b403d3197" - integrity sha512-7o9BNbAqGZ9A1lnnh9fPLpJy8ejhviogWO5MxIxCQPofYX1memFBAvOQGBUP28Iw13JUyYGacgk44riyEeHZog== - dependencies: - grizzly "^4.0.0" - minimist "^1.2.0" +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== -glob@^6.0.1: - version "6.0.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" - integrity sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI= +glob@^7.0.0: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: + fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" - minimatch "2 || 3" + minimatch "^3.1.1" once "^1.3.0" path-is-absolute "^1.0.0" @@ -669,42 +2430,21 @@ glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" -globby@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-4.1.0.tgz#080f54549ec1b82a6c60e631fc82e1211dbe95f8" - integrity sha1-CA9UVJ7BuCpsYOYx/ILhIR2+lfg= - dependencies: - array-union "^1.0.1" - arrify "^1.0.0" - glob "^6.0.1" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +graceful-fs@^4.1.11, graceful-fs@^4.1.3, graceful-fs@^4.2.0, graceful-fs@^4.2.4: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: version "4.2.4" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== -grizzly@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/grizzly/-/grizzly-4.0.3.tgz#deb7af15928169dcc76804e5b5d9b2ac72663bfb" - integrity sha512-yDavF67g2zYyxq5pMYv33Dv+6snKClgJLL3+0Dk7qABp5y5VNEkgp6K7qzfp8CcriWQFBN/uRHqmFskj7fcSmA== - dependencies: - "@octokit/rest" "^17.1.1" - checkup "^1.3.0" - debug "^4.1.0" - minimist "^1.2.0" - readjson "^2.0.1" - try-catch "^3.0.0" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -715,56 +2455,84 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-symbols@^1.0.0, has-symbols@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== dependencies: - function-bind "^1.1.1" + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" -hosted-git-info@^2.1.4: - version "2.8.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" -husky@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.0.tgz#0b2ec1d66424e9219d359e26a51c58ec5278f0de" - integrity sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA== +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== dependencies: - chalk "^4.0.0" - ci-info "^2.0.0" - compare-versions "^3.6.0" - cosmiconfig "^7.0.0" - find-versions "^3.2.0" - opencollective-postinstall "^2.0.2" - pkg-dir "^4.2.0" - please-upgrade-node "^3.2.0" - slash "^3.0.0" - which-pm-runs "^1.0.0" + function-bind "^1.1.2" -import-fresh@^3.2.1: - version "3.2.2" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" - integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== +hermes-engine@~0.7.0: + version "0.7.2" + resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.7.2.tgz#303cd99d23f68e708b223aec2d49d5872985388b" + integrity sha512-E2DkRaO97gwL98LPhgfkMqhHiNsrAjIfEk3wWYn2Y31xdkdWn0572H7RnVcGujMJVqZNJvtknxlpsUb8Wzc3KA== + +hermes-profile-transformer@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b" + integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" + source-map "^0.7.3" -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +image-size@^0.6.0: + version "0.6.3" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2" + integrity sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA== + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== inflight@^1.0.4: version "1.0.6" @@ -774,102 +2542,316 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2: +inherits@2, inherits@2.0.4, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +ip@^1.1.5: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" + integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== + +is-accessor-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz#3223b10628354644b86260db29b3e693f5ceedd4" + integrity sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA== + dependencies: + hasown "^2.0.0" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= -is-callable@^1.1.4, is-callable@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" - integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-date-object@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" - integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-core-module@^2.13.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + dependencies: + hasown "^2.0.0" + +is-data-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz#2109164426166d32ea38c405c1e0945d9e6a4eeb" + integrity sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw== + dependencies: + hasown "^2.0.0" + +is-descriptor@^0.1.0: + version "0.1.7" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.7.tgz#2727eb61fd789dcd5bdf0ed4569f551d2fe3be33" + integrity sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg== + dependencies: + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.3.tgz#92d27cb3cd311c4977a4db47df457234a13cb306" + integrity sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw== + dependencies: + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== + dependencies: + kind-of "^3.0.2" + is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= - -is-plain-object@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" - integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== - dependencies: - isobject "^4.0.0" - -is-regex@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" - integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: - has "^1.0.3" - -is-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" - integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + isobject "^3.0.1" is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== -is-symbol@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== - dependencies: - has-symbols "^1.0.1" +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= +isarray@1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= -isobject@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" - integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +jest-get-type@^26.3.0: + version "26.3.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" + integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== + +jest-haste-map@^26.5.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa" + integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== + dependencies: + "@jest/types" "^26.6.2" + "@types/graceful-fs" "^4.1.2" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.4" + jest-regex-util "^26.0.0" + jest-serializer "^26.6.2" + jest-util "^26.6.2" + jest-worker "^26.6.2" + micromatch "^4.0.2" + sane "^4.0.3" + walker "^1.0.7" + optionalDependencies: + fsevents "^2.1.2" + +jest-regex-util@^26.0.0: + version "26.0.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" + integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== + +jest-serializer@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1" + integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== + dependencies: + "@types/node" "*" + graceful-fs "^4.2.4" + +jest-util@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1" + integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + chalk "^4.0.0" + graceful-fs "^4.2.4" + is-ci "^2.0.0" + micromatch "^4.0.2" + +jest-validate@^26.5.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" + integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== + dependencies: + "@jest/types" "^26.6.2" + camelcase "^6.0.0" + chalk "^4.0.0" + jest-get-type "^26.3.0" + leven "^3.1.0" + pretty-format "^26.6.2" + +jest-worker@^26.0.0, jest-worker@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" + integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^7.0.0" + +jetifier@^1.6.2: + version "1.6.8" + resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.8.tgz#e88068697875cbda98c32472902c4d3756247798" + integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw== + +joi@^17.2.1: + version "17.11.0" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.11.0.tgz#aa9da753578ec7720e6f0ca2c7046996ed04fc1a" + integrity sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.1" + "@sideway/pinpoint" "^2.0.0" -js-tokens@^4.0.0: +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsc-android@^245459.0.0: + version "245459.0.0" + resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-245459.0.0.tgz#e584258dd0b04c9159a27fb104cd5d491fd202c9" + integrity sha512-wkjURqwaB1daNkDi2OYYbsLnIdC/lUM2nPXQKRs5pqEU9chDg435bjvo+LSaHotDENygHQDHe+ntUkkw2gwMtg== + +jscodeshift@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.11.0.tgz#4f95039408f3f06b0e39bb4d53bc3139f5330e2f" + integrity sha512-SdRK2C7jjs4k/kT2mwtO07KJN9RnjxtKn03d9JVj6c3j9WwaLcFYsICYDnLAzY0hp+wG2nxl+Cm2jWLiNVYb8g== + dependencies: + "@babel/core" "^7.1.6" + "@babel/parser" "^7.1.6" + "@babel/plugin-proposal-class-properties" "^7.1.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.1.0" + "@babel/plugin-proposal-optional-chaining" "^7.1.0" + "@babel/plugin-transform-modules-commonjs" "^7.1.0" + "@babel/preset-flow" "^7.0.0" + "@babel/preset-typescript" "^7.1.0" + "@babel/register" "^7.0.0" + babel-core "^7.0.0-bridge.0" + colors "^1.1.2" + flow-parser "0.*" + graceful-fs "^4.2.4" + micromatch "^3.1.10" + neo-async "^2.5.0" + node-dir "^0.1.17" + recast "^0.20.3" + temp "^0.8.1" + write-file-atomic "^2.3.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + json-parse-better-errors@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsonfile@^2.1.0: version "2.4.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" @@ -877,6 +2859,37 @@ jsonfile@^2.1.0: optionalDependencies: graceful-fs "^4.1.6" +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== + dependencies: + is-buffer "^1.1.5" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + klaw@^1.0.0: version "1.3.1" resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" @@ -884,56 +2897,23 @@ klaw@^1.0.0: optionalDependencies: graceful-fs "^4.1.9" -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - -lint-staged@^10.0.0: - version "10.5.1" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.5.1.tgz#901e915c2360072dded0e7d752a0d9a49e079daa" - integrity sha512-fTkTGFtwFIJJzn/PbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO/h6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw== - dependencies: - chalk "^4.1.0" - cli-truncate "^2.1.0" - commander "^6.2.0" - cosmiconfig "^7.0.0" - debug "^4.2.0" - dedent "^0.7.0" - enquirer "^2.3.6" - execa "^4.1.0" - listr2 "^3.2.2" - log-symbols "^4.0.0" - micromatch "^4.0.2" - normalize-path "^3.0.0" - please-upgrade-node "^3.2.0" - string-argv "0.3.1" - stringify-object "^3.3.0" +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -listr2@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.2.2.tgz#d20feb75015e506992b55af40722ba1af168b8f1" - integrity sha512-AajqcZEUikF2ioph6PfH3dIuxJclhr3i3kHgTOP0xeXdWQohrvJAAmqVcV43/GI987HFY/vzT73jYXoa4esDHg== - dependencies: - chalk "^4.1.0" - cli-truncate "^2.1.0" - figures "^3.2.0" - indent-string "^4.0.0" - log-update "^4.0.0" - p-map "^4.0.0" - rxjs "^6.6.3" - through "^2.3.8" - -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" + p-locate "^3.0.0" + path-exists "^3.0.0" locate-path@^5.0.0: version "5.0.0" @@ -942,46 +2922,364 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" -log-symbols@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" - integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +lodash@^4.17.14, lodash@^4.17.15: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== dependencies: - chalk "^4.0.0" + chalk "^2.0.1" -log-update@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" - integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== +logkitty@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" + integrity sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ== dependencies: - ansi-escapes "^4.3.0" - cli-cursor "^3.1.0" - slice-ansi "^4.0.0" - wrap-ansi "^6.2.0" + ansi-fragments "^0.2.1" + dayjs "^1.8.15" + yargs "^15.1.0" -lru-cache@^4.0.0, lru-cache@^4.0.1: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" + js-tokens "^3.0.0 || ^4.0.0" -macos-release@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f" - integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA== +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" -map-stream@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" - integrity sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ= +make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== + dependencies: + object-visit "^1.0.0" merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +metro-babel-register@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.64.0.tgz#1a2d23f68da8b8ee42e78dca37ad21a5f4d3647d" + integrity sha512-Kf6YvE3kIRumGnjK0Q9LqGDIdnsX9eFGtNBmBuCVDuB9wGGA/5CgX8We8W7Y44dz1RGTcHJRhfw5iGg+pwC3aQ== + dependencies: + "@babel/core" "^7.0.0" + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-proposal-optional-chaining" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/register" "^7.0.0" + escape-string-regexp "^1.0.5" + +metro-babel-transformer@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.64.0.tgz#a21f8a989a5ea60c1109456e21bd4d9374194ea0" + integrity sha512-itZaxKTgmKGEZWxNzbSZBc22NngrMZzoUNuU92aHSTGkYi2WH4XlvzEHsstmIKHMsRVKl75cA+mNmgk4gBFJKw== + dependencies: + "@babel/core" "^7.0.0" + metro-source-map "0.64.0" + nullthrows "^1.1.1" + +metro-cache-key@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.64.0.tgz#98d0a94332453c4c52b74f72c07cc62a5c264c4f" + integrity sha512-O9B65G8L/fopck45ZhdRosyVZdMtUQuX5mBWEC1NRj02iWBIUPLmYMjrunqIe8vHipCMp3DtTCm/65IlBmO8jg== + +metro-cache@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.64.0.tgz#a769503e12521d9e9d95ce5840ffb2efdb4e8703" + integrity sha512-QvGfxe/1QQYM9XOlR8W1xqE9eHDw/AgJIgYGn/TxZxBu9Zga+Rgs1omeSZju45D8w5VWgMr83ma5kACgzvOecg== + dependencies: + metro-core "0.64.0" + mkdirp "^0.5.1" + rimraf "^2.5.4" + +metro-config@0.64.0, metro-config@^0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.64.0.tgz#b634fa05cffd06b1e50e4339c200f90a42924afb" + integrity sha512-QhM4asnX5KhlRWaugwVGNNXhX0Z85u5nK0UQ/A90bBb4xWyXqUe20e788VtdA75rkQiiI6wXTCIHWT0afbnjwQ== + dependencies: + cosmiconfig "^5.0.5" + jest-validate "^26.5.2" + metro "0.64.0" + metro-cache "0.64.0" + metro-core "0.64.0" + metro-runtime "0.64.0" + +metro-core@0.64.0, metro-core@^0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.64.0.tgz#7616b27acfe7baa476f6cd6bd9e70ae64fa62541" + integrity sha512-v8ZQ5j72EaUwamQ8pLfHlOHTyp7SbdazvHPzFGDpHnwIQqIT0Bw3Syg8R4regTlVG3ngpeSEAi005UITljmMcQ== + dependencies: + jest-haste-map "^26.5.2" + lodash.throttle "^4.1.1" + metro-resolver "0.64.0" + +metro-hermes-compiler@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-hermes-compiler/-/metro-hermes-compiler-0.64.0.tgz#e6043d7aa924e5b2be99bd3f602e693685d15386" + integrity sha512-CLAjVDWGAoGhbi2ZyPHnH5YDdfrDIx6+tzFWfHGIMTZkYBXsYta9IfYXBV8lFb6BIbrXLjlXZAOoosknetMPOA== + +metro-inspector-proxy@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.64.0.tgz#9a481b3f49773d5418e028178efec68f861bec88" + integrity sha512-KywbH3GNSz9Iqw4UH3smgaV2dBHHYMISeN7ORntDL/G+xfgPc6vt13d+zFb907YpUcXj5N0vdoiAHI5V/0y8IA== + dependencies: + connect "^3.6.5" + debug "^2.2.0" + ws "^1.1.5" + yargs "^15.3.1" + +metro-minify-uglify@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.64.0.tgz#da6ab4dda030e3211f5924e7f41ed308d466068f" + integrity sha512-DRwRstqXR5qfte9Nuwoov5dRXxL7fJeVlO5fGyOajWeO3+AgPjvjXh/UcLJqftkMWTPGUFuzAD5/7JC5v5FLWw== + dependencies: + uglify-es "^3.1.9" + +metro-react-native-babel-preset@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.64.0.tgz#76861408681dfda3c1d962eb31a8994918c976f8" + integrity sha512-HcZ0RWQRuJfpPiaHyFQJzcym+/dDIVUPwUAXWoub/C4GkGu+mPjp8vqK6g0FxokCnnI2TK0gZTza2IDfiNNscQ== + dependencies: + "@babel/core" "^7.0.0" + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-export-default-from" "^7.0.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" + "@babel/plugin-proposal-optional-chaining" "^7.0.0" + "@babel/plugin-syntax-dynamic-import" "^7.0.0" + "@babel/plugin-syntax-export-default-from" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.2.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-syntax-optional-chaining" "^7.0.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.0.0" + "@babel/plugin-transform-exponentiation-operator" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-for-of" "^7.0.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-object-assign" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-react-jsx-self" "^7.0.0" + "@babel/plugin-transform-react-jsx-source" "^7.0.0" + "@babel/plugin-transform-regenerator" "^7.0.0" + "@babel/plugin-transform-runtime" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-sticky-regex" "^7.0.0" + "@babel/plugin-transform-template-literals" "^7.0.0" + "@babel/plugin-transform-typescript" "^7.5.0" + "@babel/plugin-transform-unicode-regex" "^7.0.0" + "@babel/template" "^7.0.0" + react-refresh "^0.4.0" + +metro-react-native-babel-transformer@0.64.0, metro-react-native-babel-transformer@^0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.64.0.tgz#eafef756972f20efdc51bd5361d55f8598355623" + integrity sha512-K1sHO3ODBFCr7uEiCQ4RvVr+cQg0EHQF8ChVPnecGh/WDD8udrTq9ECwB0dRfMjAvlsHtRUlJm6ZSI8UPgum2w== + dependencies: + "@babel/core" "^7.0.0" + babel-preset-fbjs "^3.3.0" + metro-babel-transformer "0.64.0" + metro-react-native-babel-preset "0.64.0" + metro-source-map "0.64.0" + nullthrows "^1.1.1" + +metro-resolver@0.64.0, metro-resolver@^0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.64.0.tgz#21126b44f31346ac2ce0b06b77ef65e8c9e2294a" + integrity sha512-cJ26Id8Zf+HmS/1vFwu71K3u7ep/+HeXXAJIeVDYf+niE7AWB9FijyMtAlQgbD8elWqv1leJCnQ/xHRFBfGKYA== + dependencies: + absolute-path "^0.0.0" + +metro-runtime@0.64.0, metro-runtime@^0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.64.0.tgz#cdaa1121d91041bf6345f2a69eb7c2fb289eff7b" + integrity sha512-m7XbWOaIOeFX7YcxUhmnOi6Pg8EaeL89xyZ+quZyZVF1aNoTr4w8FfbKxvijpjsytKHIZtd+43m2Wt5JrqyQmQ== + +metro-source-map@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.64.0.tgz#4310e17c3d4539c6369688022494ad66fa4d39a1" + integrity sha512-OCG2rtcp5cLEGYvAbfkl6mEc0J2FPRP4/UCEly+juBk7hawS9bCBMBfhJm/HIsvY1frk6nT2Vsl1O8YBbwyx2g== + dependencies: + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + invariant "^2.2.4" + metro-symbolicate "0.64.0" + nullthrows "^1.1.1" + ob1 "0.64.0" + source-map "^0.5.6" + vlq "^1.0.0" + +metro-symbolicate@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.64.0.tgz#405c21438ab553c29f6841da52ca76ee87bb06ac" + integrity sha512-qIi+YRrDWnLVmydj6gwidYLPaBsakZRibGWSspuXgHAxOI3UuLwlo4dpQ73Et0gyHjI7ZvRMRY8JPiOntf9AQQ== + dependencies: + invariant "^2.2.4" + metro-source-map "0.64.0" + nullthrows "^1.1.1" + source-map "^0.5.6" + through2 "^2.0.1" + vlq "^1.0.0" + +metro-transform-plugins@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.64.0.tgz#41d3dce0f2966bbd79fea1ecff61bcc8a00e4665" + integrity sha512-iTIRBD/wBI98plfxj8jAoNUUXfXLNlyvcjPtshhpGvdwu9pzQilGfnDnOaaK+vbITcOk9w5oQectXyJwAqTr1A== + dependencies: + "@babel/core" "^7.0.0" + "@babel/generator" "^7.5.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.0.0" + nullthrows "^1.1.1" + +metro-transform-worker@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.64.0.tgz#f94429b2c42b13cb1c93be4c2e25e97f2d27ca60" + integrity sha512-wegRtK8GyLF6IPZRBJp+zsORgA4iX0h1DRpknyAMDCtSbJ4VU2xV/AojteOgAsDvY3ucAGsvfuZLNDJHUdUNHQ== + dependencies: + "@babel/core" "^7.0.0" + "@babel/generator" "^7.5.0" + "@babel/parser" "^7.0.0" + "@babel/types" "^7.0.0" + babel-preset-fbjs "^3.3.0" + metro "0.64.0" + metro-babel-transformer "0.64.0" + metro-cache "0.64.0" + metro-cache-key "0.64.0" + metro-hermes-compiler "0.64.0" + metro-source-map "0.64.0" + metro-transform-plugins "0.64.0" + nullthrows "^1.1.1" + +metro@0.64.0, metro@^0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.64.0.tgz#0091a856cfbcc94dd576da563eee466e96186195" + integrity sha512-G2OC08Rzfs0kqnSEuKo2yZxR+/eNUpA93Ru45c60uN0Dw3HPrDi+ZBipgFftC6iLE0l+6hu8roFFIofotWxybw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/core" "^7.0.0" + "@babel/generator" "^7.5.0" + "@babel/parser" "^7.0.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + absolute-path "^0.0.0" + accepts "^1.3.7" + async "^2.4.0" + chalk "^4.0.0" + ci-info "^2.0.0" + connect "^3.6.5" + debug "^2.2.0" + denodeify "^1.2.1" + error-stack-parser "^2.0.6" + fs-extra "^1.0.0" + graceful-fs "^4.1.3" + image-size "^0.6.0" + invariant "^2.2.4" + jest-haste-map "^26.5.2" + jest-worker "^26.0.0" + lodash.throttle "^4.1.1" + metro-babel-register "0.64.0" + metro-babel-transformer "0.64.0" + metro-cache "0.64.0" + metro-cache-key "0.64.0" + metro-config "0.64.0" + metro-core "0.64.0" + metro-hermes-compiler "0.64.0" + metro-inspector-proxy "0.64.0" + metro-minify-uglify "0.64.0" + metro-react-native-babel-preset "0.64.0" + metro-resolver "0.64.0" + metro-runtime "0.64.0" + metro-source-map "0.64.0" + metro-symbolicate "0.64.0" + metro-transform-plugins "0.64.0" + metro-transform-worker "0.64.0" + mime-types "^2.1.27" + mkdirp "^0.5.1" + node-fetch "^2.2.0" + nullthrows "^1.1.1" + rimraf "^2.5.4" + serialize-error "^2.1.0" + source-map "^0.5.6" + strip-ansi "^6.0.0" + temp "0.8.3" + throat "^5.0.0" + ws "^1.1.5" + yargs "^15.3.1" + +micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + micromatch@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" @@ -990,85 +3288,165 @@ micromatch@^4.0.2: braces "^3.0.1" picomatch "^2.0.5" -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.27, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== -"minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4: +mime@^2.4.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +minimatch@^3.0.2, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" +minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.1.1, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + minimist@^1.2.0: version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== -mount-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/mount-point/-/mount-point-3.0.0.tgz#665cb9edebe80d110e658db56c31d0aef51a8f97" - integrity sha1-Zly57evoDREOZY21bDHQrvUaj5c= +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== dependencies: - "@sindresorhus/df" "^1.0.1" - pify "^2.3.0" - pinkie-promise "^2.0.1" + minimist "^1.2.6" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.2, ms@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.5.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -node-fetch@^2.3.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== +nocache@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" + integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== + +node-dir@^0.1.17: + version "0.1.17" + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" + integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== + dependencies: + minimatch "^3.0.2" + +node-fetch@^2.2.0, node-fetch@^2.6.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + +node-stream-zip@^1.9.1: + version "1.15.0" + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea" + integrity sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw== -normalize-package-data@^2.3.2: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" + remove-trailing-separator "^1.0.1" normalize-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -npm-run-all@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-3.1.2.tgz#c7e3faf4aa0a59bf0dcfc12601166151692171cf" - integrity sha1-x+P69KoKWb8Nz8EmARZhUWkhcc8= - dependencies: - chalk "^1.1.3" - cross-spawn "^4.0.0" - minimatch "^3.0.2" - object-assign "^4.0.1" - pinkie-promise "^2.0.1" - ps-tree "^1.0.1" - read-pkg "^1.1.0" - read-pkg-up "^1.0.1" - shell-quote "^1.6.1" - string.prototype.padend "^3.0.0" - -npm-run-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" - integrity sha1-9cMr9ZX+ga6Sfa7FLoL4sACsPI8= - dependencies: - path-key "^1.0.0" - npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -1076,48 +3454,62 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npm-run-path@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" +nullthrows@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== -npmpub@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/npmpub/-/npmpub-5.0.0.tgz#47be2fdff68e9ef4b56d0071746f66975dbb352c" - integrity sha512-XmfZlR7H8LwuVMPc0Zx2RU/xetk7ldRme+xtHRnwMqSQU5aBJ8hzgQtfX1aRnQNIFWOpEY1iXCJk7fWhFc9W4w== - dependencies: - chalk "^1.1.1" - github-release-from-changelog "^2.0.0" - minimist "^1.2.0" - shelljs "^0.5.3" - trash "^3.4.1" +ob1@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.64.0.tgz#f254a55a53ca395c4f9090e28a85483eac5eba19" + integrity sha512-CO1N+5dhvy+MoAwxz8+fymEUcwsT4a+wHhrHFb02LppcJdHxgcBWviwEhUwKOD2kLMQ7ijrrzybOqpGcqEtvpQ== -object-assign@^4.0.1: +object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= -object-inspect@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== + dependencies: + isobject "^3.0.0" -object.assign@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== + dependencies: + isobject "^3.0.1" + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" + ee-first "1.1.1" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" @@ -1126,43 +3518,61 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" - integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== dependencies: - mimic-fn "^2.1.0" + mimic-fn "^1.0.0" -opencollective-postinstall@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" - integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== +open@^6.2.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" + integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== + dependencies: + is-wsl "^1.1.0" -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= +options@>=0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" + integrity sha512-bOj3L1ypm++N+n7CEbbe473A414AB7z+amKYshRb//iuL3MpdDCLhPnw6aVTdKB9g5ZRVHIEp8eUln6L2NUStg== -os-name@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" - integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== +ora@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" + integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== dependencies: - macos-release "^2.2.0" - windows-release "^3.1.0" + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-spinners "^2.0.0" + log-symbols "^2.2.0" + strip-ansi "^5.2.0" + wcwidth "^1.0.1" + +os-tmpdir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= -p-limit@^2.2.0: +p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + p-locate@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" @@ -1170,48 +3580,33 @@ p-locate@^4.1.0: dependencies: p-limit "^2.2.0" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= - dependencies: - error-ex "^1.2.0" - -parse-json@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" - integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== dependencies: - "@babel/code-frame" "^7.0.0" error-ex "^1.3.1" json-parse-better-errors "^1.0.1" - lines-and-columns "^1.1.6" -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - dependencies: - pinkie-promise "^2.0.0" +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== path-exists@^4.0.0: version "4.0.0" @@ -1223,99 +3618,100 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-key@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" - integrity sha1-XVPVeAGWRsDWiADbThRua9wqx68= - path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -pause-stream@0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" - integrity sha1-/lo0sMvOErWqaitAPuLnO2AvFEU= - dependencies: - through "~2.3" +picomatch@^2.0.4: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== picomatch@^2.0.5: version "2.2.2" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== -pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== -pinkie-promise@^2.0.0, pinkie-promise@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= - dependencies: - pinkie "^2.0.0" +pirates@^4.0.5: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== +plist@^3.0.1, plist@^3.0.5: + version "3.1.0" + resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" + integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== dependencies: - find-up "^4.0.0" + "@xmldom/xmldom" "^0.8.8" + base64-js "^1.5.1" + xmlbuilder "^15.1.1" -please-upgrade-node@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" - integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== + +pretty-format@^26.5.2, pretty-format@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" + integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== dependencies: - semver-compare "^1.0.0" + "@jest/types" "^26.6.2" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^17.0.1" -prettier@^2.0.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5" - integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg== +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -ps-tree@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" - integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== +promise@^8.0.3: + version "8.3.0" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" + integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== dependencies: - event-stream "=3.3.4" + asap "~2.0.6" -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= +prompts@^2.4.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prop-types@^15.7.2: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" pump@^3.0.0: version "3.0.0" @@ -1325,92 +3721,381 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -read-pkg@^1.0.0, read-pkg@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= +react-devtools-core@^4.6.0: + version "4.28.5" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.5.tgz#c8442b91f068cdf0c899c543907f7f27d79c2508" + integrity sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA== + dependencies: + shell-quote "^1.6.1" + ws "^7" + +react-dom@17.0.1: + version "17.0.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6" + integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.1" + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-native-codegen@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.6.tgz#b3173faa879cf71bfade8d030f9c4698388f6909" + integrity sha512-cMvrUelD81wiPitEPiwE/TCNscIVauXxmt4NTGcy18HrUd0WRWXfYzAQGXm0eI87u3NMudNhqFj2NISJenxQHg== + dependencies: + flow-parser "^0.121.0" + jscodeshift "^0.11.0" + nullthrows "^1.1.1" + +react-native@0.64.0: + version "0.64.0" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.64.0.tgz#c3bde5b638bf8bcf12bae6e094930d39cb942ab7" + integrity sha512-8dhSHBthgGwAjU+OjqUEA49229ThPMQH7URH0u8L0xoQFCnZO2sZ9Wc6KcbxI0x9KSmjCMFFZqRe3w3QsRv64g== + dependencies: + "@jest/create-cache-key-function" "^26.5.0" + "@react-native-community/cli" "^5.0.1-alpha.0" + "@react-native-community/cli-platform-android" "^5.0.1-alpha.0" + "@react-native-community/cli-platform-ios" "^5.0.1-alpha.0" + "@react-native/assets" "1.0.0" + "@react-native/normalize-color" "1.0.0" + "@react-native/polyfills" "1.0.0" + abort-controller "^3.0.0" + anser "^1.4.9" + base64-js "^1.1.2" + event-target-shim "^5.0.1" + hermes-engine "~0.7.0" + invariant "^2.2.4" + jsc-android "^245459.0.0" + metro-babel-register "0.64.0" + metro-react-native-babel-transformer "0.64.0" + metro-runtime "0.64.0" + metro-source-map "0.64.0" + nullthrows "^1.1.1" + pretty-format "^26.5.2" + promise "^8.0.3" + prop-types "^15.7.2" + react-devtools-core "^4.6.0" + react-native-codegen "^0.0.6" + react-refresh "^0.4.0" + regenerator-runtime "^0.13.2" + scheduler "^0.20.1" + shelljs "^0.8.4" + stacktrace-parser "^0.1.3" + use-subscription "^1.0.0" + whatwg-fetch "^3.0.0" + ws "^6.1.4" + +react-refresh@^0.4.0: + version "0.4.3" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53" + integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== + +react@17.0.1: + version "17.0.1" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127" + integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +recast@^0.20.3: + version "0.20.5" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz#8e2c6c96827a1b339c634dd232957d230553ceae" + integrity sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ== + dependencies: + ast-types "0.14.2" + esprima "~4.0.0" + source-map "~0.6.1" + tslib "^2.0.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +regenerate-unicode-properties@^10.1.0: + version "10.1.1" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.13.2: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-runtime@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" + integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== + +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" + extend-shallow "^3.0.2" + safe-regex "^1.1.0" -readjson@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/readjson/-/readjson-2.0.1.tgz#1822964dfd0bc0b49c8f983c192a9dd5309eb9e1" - integrity sha512-6WuJWYFKx9IVT0zogHlyRC6p+RttAC457garckmGQ8qKICT/xLVrpmvlwp8nTwPHzopbdXIJ593Df8AErIbgeQ== +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== dependencies: - try-catch "^3.0.0" + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" -reason-react@^0.9.1: +regjsparser@^0.9.1: version "0.9.1" - resolved "https://registry.yarnpkg.com/reason-react/-/reason-react-0.9.1.tgz#30a887158200b659aa03e2d75ff4cc54dc462bb0" - integrity sha512-nlH0O2TDy9KzOLOW+vlEQk4ExHOeciyzFdoLcsmmiit6hx6H5+CVDrwJ+8aiaLT/kqK5xFOjy4PS7PftWz4plA== + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== + +repeat-element@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== -resolve@^1.10.0: - version "1.17.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" - integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== +resolve@^1.1.6, resolve@^1.14.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: - path-parse "^1.0.6" + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== dependencies: - onetime "^5.1.0" + onetime "^2.0.0" signal-exit "^3.0.2" -rimraf@^2.2.8: +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +rimraf@^2.5.4: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== dependencies: glob "^7.1.3" -run-applescript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-2.1.0.tgz#3bff2ccf95b6ceacb49723e550f00371d618510d" - integrity sha1-O/8sz5W2zqy0lyPlUPADcdYYUQ0= +rimraf@~2.2.6: + version "2.2.8" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" + integrity sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg== + +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rsvp@^4.8.4: + version "4.8.5" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== dependencies: - pify "^2.2.0" - pinkie-promise "^2.0.0" + ret "~0.1.10" -rxjs@^6.6.3: - version "6.6.3" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552" - integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== +sane@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== dependencies: - tslib "^1.9.0" + "@cnakazawa/watch" "^1.0.3" + anymatch "^2.0.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" -semver-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" - integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= +sax@^1.2.4: + version "1.3.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0" + integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== -semver-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" - integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== +scheduler@^0.20.1: + version "0.20.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" -"semver@2 || 3 || 4 || 5", semver@^5.5.0: +semver@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== +semver@^5.6.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-error@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" + integrity sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw== + +serve-static@^1.13.1: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -1418,105 +4103,183 @@ shebang-command@^1.2.0: dependencies: shebang-regex "^1.0.0" -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +shell-quote@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + integrity sha512-V0iQEZ/uoem3NmD91rD8XiuozJnq9/ZJnbHVXHnWqP1ucAhS3yJ7sLIIzEi57wFFcK3oi3kFUC46uSyWr35mxg== + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" shell-quote@^1.6.1: version "1.7.2" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== -shelljs@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" - integrity sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM= +shelljs@^0.8.4: + version "0.8.5" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== +simple-plist@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.3.1.tgz#16e1d8f62c6c9b691b8383127663d834112fb017" + integrity sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw== + dependencies: + bplist-creator "0.1.0" + bplist-parser "0.3.1" + plist "^3.0.5" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== +slice-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" -spdx-correct@^3.0.0: +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +source-map-resolve@^0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.5.16: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" - integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" + extend-shallow "^3.0.0" -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== -spdx-license-ids@^3.0.0: - version "3.0.5" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" - integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== +stackframe@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== -split@0.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" - integrity sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8= +stacktrace-parser@^0.1.3: + version "0.1.10" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" + integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== dependencies: - through "2" + type-fest "^0.7.1" -stream-combiner@~0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" - integrity sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ= +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== dependencies: - duplexer "~0.1.1" + define-property "^0.2.5" + object-copy "^0.1.0" -string-argv@0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" - integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +stream-buffers@2.2.x: + version "2.2.0" + resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" + integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg== string-width@^4.1.0, string-width@^4.2.0: version "4.2.0" @@ -1527,63 +4290,19 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -string.prototype.padend@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" - integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - -string.prototype.trimend@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" - integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - -string.prototype.trimleft@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" - integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimstart "^1.0.0" - -string.prototype.trimright@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" - integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimend "^1.0.0" - -string.prototype.trimstart@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" - integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - -stringify-object@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" - integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: - get-own-enumerable-property-symbols "^3.0.0" - is-obj "^1.0.1" - is-regexp "^1.0.0" + safe-buffer "~5.1.0" -strip-ansi@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= +strip-ansi@^5.0.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: - ansi-regex "^2.0.0" + ansi-regex "^4.1.0" strip-ansi@^6.0.0: version "6.0.0" @@ -1592,27 +4311,15 @@ strip-ansi@^6.0.0: dependencies: ansi-regex "^5.0.0" -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - dependencies: - is-utf8 "^0.2.0" - strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= +sudo-prompt@^9.0.0: + version "9.2.1" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" + integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== supports-color@^5.3.0: version "5.5.0" @@ -1621,6 +4328,13 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" +supports-color@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + supports-color@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" @@ -1628,10 +4342,63 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -through@2, through@^2.3.8, through@~2.3, through@~2.3.1: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +temp@0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" + integrity sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw== + dependencies: + os-tmpdir "^1.0.0" + rimraf "~2.2.6" + +temp@^0.8.1: + version "0.8.4" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + dependencies: + rimraf "~2.6.2" + +throat@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" + integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== + +through2@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" to-regex-range@^5.0.1: version "5.0.1" @@ -1640,88 +4407,203 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -trash@^3.4.1: - version "3.4.2" - resolved "https://registry.yarnpkg.com/trash/-/trash-3.4.2.tgz#fb042252fc26a022276950a2bb0ece9b9405eb19" - integrity sha1-+wQiUvwmoCInaVCiuw7Om5QF6xk= - dependencies: - escape-string-applescript "^1.0.0" - fs-extra "^0.26.2" - globby "^4.0.0" - path-exists "^2.0.0" - pify "^2.3.0" - pinkie-promise "^2.0.0" - run-applescript "^2.0.0" - uuid "^2.0.1" - xdg-trashdir "^2.0.0" - -try-catch@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/try-catch/-/try-catch-3.0.0.tgz#7996d8b89895e2e8ae62cbdbeb4fe17470f8131b" - integrity sha512-3uAqUnoemzca1ENvZ72EVimR+E8lqBbzwZ9v4CEbLjkaV3Q+FtdmPUt7jRtoSoTiYjyIMxEkf6YgUpe/voJ1ng== +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" -tslib@^1.9.0: - version "1.11.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.2.tgz#9c79d83272c9a7aaf166f73915c9667ecdde3cc9" - integrity sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg== +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== -type-fest@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" - integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== -universal-user-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-5.0.0.tgz#a3182aa758069bf0e79952570ca757de3579c1d9" - integrity sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q== +tslib@^2.0.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + +type-fest@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== + +uglify-es@^3.1.9: + version "3.3.9" + resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" + integrity sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ== dependencies: - os-name "^3.1.0" + commander "~2.13.0" + source-map "~0.6.1" + +ultron@1.0.x: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" + integrity sha512-QMpnpVtYaWEeY+MwKDN/UdKlE/LsFZXM5lO1u7GaZzNgmIbGixHEmVMIKT+vqYOALu3m5GYQy9kz4Xu4IVn7Ow== + +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -user-home@^2.0.0: +unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" - integrity sha1-nHC/2Babwdy/SGBODwS4tJzenp8= + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== dependencies: - os-homedir "^1.0.0" + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" -uuid@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" - integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" -which-pm-runs@^1.0.0: +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" - integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -which@^1.2.8, which@^1.2.9: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== dependencies: - isexe "^2.0.0" + has-value "^0.3.1" + isobject "^3.0.0" -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== dependencies: - isexe "^2.0.0" + escalade "^3.1.1" + picocolors "^1.0.0" -windows-release@^3.1.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.0.tgz#dce167e9f8be733f21c849ebd4d03fe66b29b9f0" - integrity sha512-2HetyTg1Y+R+rUgrKeUEhAG/ZuOmTrI1NBb3ZyAGQMYmOJjBBPe4MTodghRkmLJZHwkuPi02anbeGP+Zf401LQ== +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== + +use-subscription@^1.0.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.8.0.tgz#f118938c29d263c2bce12fc5585d3fe694d4dbce" + integrity sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ== dependencies: - execa "^1.0.0" + use-sync-external-store "^1.2.0" + +use-sync-external-store@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" + integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vlq@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" + integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== + +walker@^1.0.7, walker@~1.0.5: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-fetch@^3.0.0: + version "3.6.20" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz#580ce6d791facec91d37c72890995a0b48d31c70" + integrity sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-module@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" wrap-ansi@^6.2.0: version "6.2.0" @@ -1737,30 +4619,91 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= -xdg-basedir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" - integrity sha1-7byQPMOF/ARSPZZqM1UEtVBNG9I= +write-file-atomic@^2.3.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: - os-homedir "^1.0.0" + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" -xdg-trashdir@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/xdg-trashdir/-/xdg-trashdir-2.1.1.tgz#59a60aaf8e6f9240c1daed9a0944b2f514c27d8e" - integrity sha512-KcVhPaOu2ZurYNHSRTf1+ZHORkTZGCQ+u0JHN17QixRISJq4pXOnjt/lQcehvtHL5QAKhSzKgyjrcNnPdkPBHA== +ws@^1.1.0, ws@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" + integrity sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w== dependencies: - "@sindresorhus/df" "^2.1.0" - mount-point "^3.0.0" - pify "^2.2.0" - user-home "^2.0.0" - xdg-basedir "^2.0.0" + options ">=0.0.5" + ultron "1.0.x" -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= +ws@^6.1.4: + version "6.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + dependencies: + async-limiter "~1.0.0" + +ws@^7: + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +xcode@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/xcode/-/xcode-2.1.0.tgz#bab64a7e954bb50ca8d19da7e09531c65a43ecfe" + integrity sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ== + dependencies: + simple-plist "^1.0.0" + uuid "^3.3.2" + +xmlbuilder@^15.1.1: + version "15.1.1" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" + integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== + +xmldoc@^1.1.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.3.0.tgz#7823225b096c74036347c9ec5924d06b6a3cebab" + integrity sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng== + dependencies: + sax "^1.2.4" + +xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -yaml@^1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" - integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@^15.1.0, yargs@^15.3.1: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" From ac9d10662707c2afd8259510a5ae2dd54d923c2e Mon Sep 17 00:00:00 2001 From: Kian Masri Date: Thu, 14 Dec 2023 14:37:13 -0700 Subject: [PATCH 2/3] remove yarn scripts --- package.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/package.json b/package.json index c1a0e8439..6e2f7a971 100644 --- a/package.json +++ b/package.json @@ -21,12 +21,6 @@ "src/**/*.js", "!src/**/*.bs.js" ], - "scripts": { - "start": "yarn re:start", - "build": "yarn re:build", - "test": "yarn re:clean-build", - "release": "npmpub" - }, "devDependencies": { "react": "17.0.1", "react-dom": "17.0.1", From 918d6aeb4b396ad3a9a46ee5f8fd35e5f6c47a42 Mon Sep 17 00:00:00 2001 From: Kian Masri Date: Thu, 14 Dec 2023 15:27:27 -0700 Subject: [PATCH 3/3] rename library for compatability elsewhere, also rework makefile --- .prettierignore | 2 -- Makefile | 10 ++++++++-- bsconfig.json | 24 ------------------------ src/dune | 2 +- 4 files changed, 9 insertions(+), 29 deletions(-) delete mode 100644 .prettierignore delete mode 100644 bsconfig.json diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 74b0e239e..000000000 --- a/.prettierignore +++ /dev/null @@ -1,2 +0,0 @@ -*.bs.js -package.json diff --git a/Makefile b/Makefile index b76f8a187..0e442efba 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,16 @@ help: ## Print this help message @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}'; @echo ""; +.PHONY: nuke +nuke: ## Delete all files that will be generated + rm $(project_name).opam + rm -rf node_modules + opam switch remove . -y + .PHONY: create-switch create-switch: ## Create opam switch - opam switch create . -y --deps-only - opam install dune + opam switch create . -y --empty + opam install dune -y .PHONY: init init: create-switch install ## Configure everything to develop this repository in local diff --git a/bsconfig.json b/bsconfig.json deleted file mode 100644 index ff3d8087f..000000000 --- a/bsconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "reason-react-native", - "namespace": "react-native", - "refmt": 3, - "reason": { - "react-jsx": 3 - }, - "package-specs": { - "module": "commonjs", - "in-source": true - }, - "suffix": ".bs.js", - "sources": [ - { - "dir": "src", - "subdirs": true - } - ], - "bsc-flags": ["-bs-no-version-header"], - "warnings": { - "error": true - }, - "bs-dependencies": ["reason-react"] -} diff --git a/src/dune b/src/dune index bdf678643..bd9c1c3cc 100644 --- a/src/dune +++ b/src/dune @@ -1,5 +1,5 @@ (library - (name reasonReactNative) + (name reactNative) (public_name reason-react-native) (modes melange) (libraries reason-react)