diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index ae890b8a3..a51dee981 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -4,11 +4,11 @@ on: push: branches: - main - - 'mx/release/**' + - 'mx/**' pull_request: branches: - main - - 'mx/release/**' + - 'mx/**' jobs: test: name: "Build (${{ matrix.os }})" @@ -23,7 +23,7 @@ jobs: uses: softprops/diffset@d60d53313c1b61c12ccb0fc76cbde5a14ae5d330 # v3 if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository with: - base: main + base: mx/11.12.x global_files: | !{packages/**/*,configs/e2e/*.json,scripts/**/*,data/**/*} env: @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 - - name: "Fetching main to compare" + - name: "Fetching base branch to compare" if: github.event_name == 'pull_request' && steps.files.outputs.global_files == '' run: git fetch --no-tags --prune --depth=1 origin +refs/heads/${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }} - name: "Defining node version" @@ -60,6 +60,6 @@ jobs: - name: "Building internal utilities" run: pnpm run build:internal-utils - name: "Running build for development" - run: pnpm -r --filter='!native-widgets' --filter=$(if [ "${{ steps.files.outputs.global_files }}" = "" ] && ${{ github.event_name == 'pull_request' }}; then echo '...[origin/main]'; else echo '**'; fi) run build + run: pnpm -r --filter='!native-widgets' --filter=$(if [ "${{ steps.files.outputs.global_files }}" = "" ] && ${{ github.event_name == 'pull_request' }}; then echo '...[origin/mx/11.12.x]'; else echo '**'; fi) run build env: NODE_OPTIONS: --max_old_space_size=8192 diff --git a/.github/workflows/NativePipeline.yml b/.github/workflows/NativePipeline.yml index 8db9e1101..ca85b0e0f 100644 --- a/.github/workflows/NativePipeline.yml +++ b/.github/workflows/NativePipeline.yml @@ -85,6 +85,7 @@ on: pull_request: branches: - main + - 'mx/**' # Surface capture mode in the run title (workflow_dispatch inputs aren't shown in the UI), # otherwise fall back to the provided run_name / default. inputs.update_baselines is the @@ -104,7 +105,7 @@ env: # Pin the test project (mendix/Native-Mobile-Resources) to a SHA for reproducibility instead # of tracking a moving `main`. Single source of truth — bump deliberately. The repo publishes # no tags, so a commit SHA is the only stable ref. Override per run via the dispatch input. - NATIVE_MOBILE_RESOURCES_REF: ${{ github.event.inputs.test_project_ref || 'f0e7c2278578022cc742f82a087e6c4fff2f7159' }} + NATIVE_MOBILE_RESOURCES_REF: ${{ github.event.inputs.test_project_ref || 'a915484ef2cfed403cfbdfa531638df3c46c9d00' }} permissions: packages: write jobs: @@ -750,7 +751,7 @@ jobs: # truncated — at 20 min several shards (accordion, background-image, bottom-sheet, # color-picker, safe-area-view) were cancelled mid-flow. If a shard still hits 30 the cause # is real app instability, not the cap. - timeout-minutes: 30 + timeout-minutes: 35 strategy: max-parallel: 4 matrix: diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index cd32f3bd5..61116a795 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -2,9 +2,9 @@ name: Run release on: push: - branches: [main] + branches: [main, 'mx/11.12.x'] pull_request: - branches: [main] + branches: [main, 'mx/11.12.x'] jobs: test: @@ -20,7 +20,7 @@ jobs: uses: softprops/diffset@d60d53313c1b61c12ccb0fc76cbde5a14ae5d330 # v3 if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository with: - base: main + base: mx/11.12.x global_files: | !{packages/**/*,configs/e2e/*.json,scripts/**/*,data/**/*} env: @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 - - name: "Fetching main to compare" + - name: "Fetching base branch to compare" if: github.event_name == 'pull_request' && steps.files.outputs.global_files == '' run: git fetch --no-tags --prune --depth=1 origin +refs/heads/${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }} - name: "Defining environment variables" @@ -65,6 +65,6 @@ jobs: - name: "Building internal utilities" run: pnpm run build:internal-utils - name: "Running release for production" - run: pnpm -r --filter=$(if [ "${{ steps.files.outputs.global_files }}" = "" ] && ${{ github.event_name == 'pull_request' }}; then echo '...[origin/main]'; else echo '**'; fi) run release + run: pnpm -r --filter=$(if [ "${{ steps.files.outputs.global_files }}" = "" ] && ${{ github.event_name == 'pull_request' }}; then echo '...[origin/mx/11.12.x]'; else echo '**'; fi) run release env: NODE_OPTIONS: --max_old_space_size=8192 diff --git a/.github/workflows/ShaCheck.yml b/.github/workflows/ShaCheck.yml index 4c5ebbbf0..70fff8b42 100644 --- a/.github/workflows/ShaCheck.yml +++ b/.github/workflows/ShaCheck.yml @@ -2,11 +2,11 @@ name: Ensure SHA pinned actions on: push: - branches: [main] + branches: [main, 'mx/11.12.x'] paths: - ".github/workflows/*.yml" pull_request: - branches: [main] + branches: [main, 'mx/11.12.x'] paths: - ".github/workflows/*.yml" diff --git a/.github/workflows/UnitTests.yml b/.github/workflows/UnitTests.yml index 8bea28ed1..ecd5b36e6 100644 --- a/.github/workflows/UnitTests.yml +++ b/.github/workflows/UnitTests.yml @@ -2,9 +2,9 @@ name: Run unit tests on: push: - branches: [main] + branches: [main, 'mx/11.12.x'] pull_request: - branches: [main] + branches: [main, 'mx/11.12.x'] jobs: test: @@ -17,7 +17,7 @@ jobs: uses: softprops/diffset@d60d53313c1b61c12ccb0fc76cbde5a14ae5d330 # v3 if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository with: - base: main + base: mx/11.12.x global_files: | !{packages/**/*,configs/e2e/*.json,scripts/**/*,data/**/*} env: @@ -26,12 +26,12 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 - - name: "Fetching main to compare" + - name: "Fetching base branch to compare" if: github.event_name == 'pull_request' && steps.files.outputs.global_files == '' run: git fetch --no-tags --prune --depth=1 origin +refs/heads/${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }} - name: "Defining environment variables" id: variables - run: echo "arg=$(if [ "${{ steps.files.outputs.global_files }}" = "" ] && ${{ github.event_name == 'pull_request' }}; then echo '...[origin/main]'; else echo '**'; fi)" >> ${{ runner.os == 'Windows' && '$env:GITHUB_OUTPUT' || '$GITHUB_OUTPUT' }} + run: echo "arg=$(if [ "${{ steps.files.outputs.global_files }}" = "" ] && ${{ github.event_name == 'pull_request' }}; then echo '...[origin/mx/11.12.x]'; else echo '**'; fi)" >> ${{ runner.os == 'Windows' && '$env:GITHUB_OUTPUT' || '$GITHUB_OUTPUT' }} - name: "Defining node version" uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: diff --git a/configs/e2e/mendix-versions.json b/configs/e2e/mendix-versions.json index 0a6c74b78..76a4c8cd2 100644 --- a/configs/e2e/mendix-versions.json +++ b/configs/e2e/mendix-versions.json @@ -1,3 +1,3 @@ { - "latest": "11.11.0" + "latest": "11.12.0" } diff --git a/configs/e2e/native_dependencies.json b/configs/e2e/native_dependencies.json index a024e3337..2b68899f3 100644 --- a/configs/e2e/native_dependencies.json +++ b/configs/e2e/native_dependencies.json @@ -17,5 +17,6 @@ "react-native-image-picker": "7.2.3", "react-native-permissions": "5.5.1", "react-native-webview": "13.16.1", - "@sbaiahmed1/react-native-biometrics": "0.15.0" + "@sbaiahmed1/react-native-biometrics": "0.15.0", + "react-native-sound": "0.13.0" } diff --git a/maestro/images/expected/ios/bg_image_clickable_container.png b/maestro/images/expected/ios/bg_image_clickable_container.png index 6cf24f946..8c1014832 100644 Binary files a/maestro/images/expected/ios/bg_image_clickable_container.png and b/maestro/images/expected/ios/bg_image_clickable_container.png differ diff --git a/maestro/images/expected/ios/bg_image_conditional_visibility.png b/maestro/images/expected/ios/bg_image_conditional_visibility.png index cf710adf3..9d612ac33 100644 Binary files a/maestro/images/expected/ios/bg_image_conditional_visibility.png and b/maestro/images/expected/ios/bg_image_conditional_visibility.png differ diff --git a/maestro/images/expected/ios/bg_image_dynamic_image.png b/maestro/images/expected/ios/bg_image_dynamic_image.png index acff22ce4..1c5d42146 100644 Binary files a/maestro/images/expected/ios/bg_image_dynamic_image.png and b/maestro/images/expected/ios/bg_image_dynamic_image.png differ diff --git a/maestro/images/expected/ios/bg_image_layout_grid.png b/maestro/images/expected/ios/bg_image_layout_grid.png index 0800dd4b2..ed69d889f 100644 Binary files a/maestro/images/expected/ios/bg_image_layout_grid.png and b/maestro/images/expected/ios/bg_image_layout_grid.png differ diff --git a/maestro/images/expected/ios/bg_image_nested.png b/maestro/images/expected/ios/bg_image_nested.png index 3579f4af2..531a7f9ef 100644 Binary files a/maestro/images/expected/ios/bg_image_nested.png and b/maestro/images/expected/ios/bg_image_nested.png differ diff --git a/maestro/images/expected/ios/bg_image_static_images.png b/maestro/images/expected/ios/bg_image_static_images.png index e3818c3fd..90941cbfb 100644 Binary files a/maestro/images/expected/ios/bg_image_static_images.png and b/maestro/images/expected/ios/bg_image_static_images.png differ diff --git a/maestro/images/expected/ios/bg_image_static_svg.png b/maestro/images/expected/ios/bg_image_static_svg.png index 86f756fee..6e1fde095 100644 Binary files a/maestro/images/expected/ios/bg_image_static_svg.png and b/maestro/images/expected/ios/bg_image_static_svg.png differ diff --git a/maestro/images/expected/ios/floating_action_button.png b/maestro/images/expected/ios/floating_action_button.png index afc0ac2be..d23cd4bf3 100644 Binary files a/maestro/images/expected/ios/floating_action_button.png and b/maestro/images/expected/ios/floating_action_button.png differ diff --git a/package.json b/package.json index e4f4a6417..51b09d52d 100644 --- a/package.json +++ b/package.json @@ -105,8 +105,7 @@ "@mendix/pluggable-widgets-tools@11.8.0": "patches/@mendix+pluggable-widgets-tools+11.8.0.patch", "react-native-gesture-handler@2.31.2": "patches/react-native-gesture-handler+2.31.2.patch", "react-native-slider@0.11.0": "patches/react-native-slider+0.11.0.patch", - "react-native-snap-carousel@3.9.1": "patches/react-native-snap-carousel+3.9.1.patch", - "react-native-track-player@4.1.2": "patches/react-native-track-player@4.1.2.patch" + "react-native-snap-carousel@3.9.1": "patches/react-native-snap-carousel+3.9.1.patch" } }, "packageManager": "pnpm@10.32.0+sha512.9b2634bb3fed5601c33633f2d92593f506270a3963b8c51d2b2d6a828da615ce4e9deebef9614ccebbc13ac8d3c0f9c9ccceb583c69c8578436fa477dbb20d70" diff --git a/packages/jsActions/mobile-resources-native/CHANGELOG.md b/packages/jsActions/mobile-resources-native/CHANGELOG.md index 5c77e7258..c09e65fc1 100644 --- a/packages/jsActions/mobile-resources-native/CHANGELOG.md +++ b/packages/jsActions/mobile-resources-native/CHANGELOG.md @@ -6,6 +6,31 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [12.2.2] Native Mobile Resources - 2026-7-21 +- Fixed an issue where the `TakePicture` and `TakePictureAdvanced` actions did not properly clean up temporary files. + +## [12.2.1] Native Mobile Resources - 2026-7-17 + +- We switched to a new sound library for the Play sound action to support react-native 0.84+. +- The Play sound action now plays audio files from online (network) documents on Android by downloading them to a version-based cache before playback. +- We have fixed the biometric authentication issue where it was not working on Android and crashing on iOS. +- Fixed an issue where the `TakePicture` and `TakePictureAdvanced` actions failed to capture photos on Android. + +## [3.1.2] Image + +### Fixed + +- We fixed an issue that caused images from entities to not render on Android in Online Synchronization mode + +## [12.2.0] Native Mobile Resources - 2026-7-3 + +## [5.3.1] BottomSheet + +### Fixed + +- Fixed flickering issue on Android when opening bottom sheet (both basic and custom render types). +- Improved backdrop animation with smooth fade-in/fade-out transitions. + ## [12.1.0] Native Mobile Resources - 2026-6-10 - Updated react-native from version 0.83.4 to 0.84.1. diff --git a/packages/jsActions/mobile-resources-native/SiemensMendixNativeMobileResources__12.1.0__READMEOSS_2026-06-09__10-55-24.html b/packages/jsActions/mobile-resources-native/SiemensMendixNativeMobileResources__12.2.2__READMEOSS_2026-07-21__04-05-36.html similarity index 99% rename from packages/jsActions/mobile-resources-native/SiemensMendixNativeMobileResources__12.1.0__READMEOSS_2026-06-09__10-55-24.html rename to packages/jsActions/mobile-resources-native/SiemensMendixNativeMobileResources__12.2.2__READMEOSS_2026-07-21__04-05-36.html index 952094a17..69c9c8f4f 100644 --- a/packages/jsActions/mobile-resources-native/SiemensMendixNativeMobileResources__12.1.0__READMEOSS_2026-06-09__10-55-24.html +++ b/packages/jsActions/mobile-resources-native/SiemensMendixNativeMobileResources__12.2.2__READMEOSS_2026-07-21__04-05-36.html @@ -141,7 +141,7 @@
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/get-type + (npm) - 30.0.1 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/globals + (npm) - 29.7.0 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/pattern + (npm) - 30.0.1 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/reporters + (npm) - 29.7.0 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/schemas + (npm) - 29.6.3 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/schemas + (npm) - 30.0.5 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/source-map + (npm) - 29.6.3 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/test-result + (npm) - 29.7.0 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - + @jest/test-sequencer (npm) - 29.7.0 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/transform + (npm) - 29.7.0 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/types (npm) + - 26.6.2 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Facebook, Inc. and its affiliates | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - @jest/types (npm) + - 27.5.1 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| Copyright (c) Meta Platforms, Inc. and affiliates | +Copyright (c) Facebook, Inc. and its affiliates |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/get-type - (npm) - 30.0.1 + Enclosed you will find the license conditions and + copyright notices applicable for - @jest/types (npm) + - 29.6.3
| Copyright (c) Meta Platforms, Inc. and affiliates | @@ -37062,16 +37888,16 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-
- |
| Copyright (c) Meta Platforms, Inc. and affiliates | @@ -37116,16 +37942,16 @@||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-
- |
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2024 Justin Ridgewell <justin@ridgewell.name> + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/reporters - (npm) - 29.7.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/gen-mapping (npm) - 0.3.8
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2022 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell + <justin@ridgewell.name> , license' MIT', repository' + https://github.com/jridgewell/gen-mapping + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/schemas - (npm) - 29.6.3 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/resolve-uri (npm) - 3.1.2
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2019 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell + <justin@ridgewell.name> , license' MIT', repository' + https://github.com/jridgewell/resolve-uri + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/schemas - (npm) - 30.0.5 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/set-array (npm) - 1.2.1
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2022 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell + <justin@ridgewell.name> , license' MIT', repository' + https://github.com/jridgewell/set-array + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/source-map - (npm) - 29.6.3 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/source-map (npm) - 0.3.10
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2024 Justin Ridgewell <justin@ridgewell.name> + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/test-result - (npm) - 29.7.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/source-map (npm) - 0.3.6
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2019 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell + <justin@ridgewell.name> , license' MIT', repository' + https://github.com/jridgewell/source-map + |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jest/test-sequencer (npm) - 29.7.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/sourcemap-codec (npm) - 1.5.0
| Copyright (c) Meta Platforms, Inc. and affiliates | +Copyright (c) 2015 Rich Harris |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/transform - (npm) - 29.7.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/sourcemap-codec (npm) - 1.5.4
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2024 Justin Ridgewell <justin@ridgewell.name> + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/types (npm) - - 26.6.2 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/trace-mapping (npm) - 0.3.25
| Copyright (c) Facebook, Inc. and its affiliates | ++ Copyright 2022 Justin Ridgewell <justin@ridgewell.name>; Justin Ridgewell + <justin@ridgewell.name> + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/types (npm) - - 27.5.1 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/trace-mapping (npm) - 0.3.29
| Copyright (c) Facebook, Inc. and its affiliates | ++ Copyright 2024 Justin Ridgewell <justin@ridgewell.name> + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/types (npm) - - 29.6.3 + Enclosed you will find the license conditions and + copyright notices applicable for - + @jridgewell/trace-mapping (npm) - 0.3.9
| Copyright (c) Meta Platforms, Inc. and affiliates | ++ Copyright 2022 Justin Ridgewell <justin@ridgewell.name>; Justin Ridgewell + <justin@ridgewell.name> + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @jest/types (npm) - - 30.0.5 + Enclosed you will find the license conditions and + copyright notices applicable for - + @nodelib/fs.scandir (npm) - 2.1.5
| Copyright (c) Meta Platforms, Inc. and affiliates | +Copyright (c) Denis Malinochkin |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/gen-mapping (npm) - 0.3.12 + Enclosed you will find the license conditions and + copyright notices applicable for - @nodelib/fs.stat + (npm) - 2.0.5
| - Copyright 2024 Justin Ridgewell <justin@ridgewell.name> - | +Copyright (c) Denis Malinochkin |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/gen-mapping (npm) - 0.3.8 + Enclosed you will find the license conditions and + copyright notices applicable for - @nodelib/fs.walk + (npm) - 1.2.8
| - Copyright 2022 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell - <justin@ridgewell.name> , license' MIT', repository' - https://github.com/jridgewell/gen-mapping - | +Copyright (c) Denis Malinochkin |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/resolve-uri (npm) - 3.1.2 + Enclosed you will find the license conditions and + copyright notices applicable for - + @notifee/react-native (npm) - 9.1.8
|
+ Apache License Version 2.0, January 2004 + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, + REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, and + distribution as defined by Sections 1 through 9 of this document. + "Licensor" shall mean the copyright owner or entity authorized by the + copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all other + entities that control, are controlled by, or are under common control with that + entity. For the purposes of this definition, "control" means (i) the power, direct + or indirect, to cause the direction or management of such entity, whether by + contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity exercising + permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation source, and + configuration files. + "Object" form shall mean any form resulting from mechanical transformation or + translation of a Source form, including but not limited to compiled object code, + generated documentation, and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or Object form, + made available under the License, as indicated by a copyright notice that is + included in or attached to the work (an example is provided in the Appendix + below). + "Derivative Works" shall mean any work, whether in Source or Object form, that + is based on (or derived from) the Work and for which the editorial revisions, + annotations, elaborations, or other modifications represent, as a whole, an original + work of authorship. For the purposes of this License, Derivative Works shall not + include works that remain separable from, or merely link (or bind by name) to the + interfaces of, the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including the original + version of the Work and any modifications or additions to that Work or Derivative + Works thereof, that is intentionally submitted to Licensor for inclusion in the Work + by the copyright owner or by an individual or Legal Entity authorized to submit on + behalf of the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent to the Licensor + or its representatives, including but not limited to communication on electronic + mailing lists, source code control systems, and issue tracking systems that are + managed by, or on behalf of, the Licensor for the purpose of discussing and + improving the Work, but excluding communication that is conspicuously marked or + otherwise designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf + of whom a Contribution has been received by Licensor and subsequently incorporated + within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of this + License, each Contributor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, + prepare Derivative Works of, publicly display, publicly perform, sublicense, and + distribute the Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of this + License, each Contributor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this + section) patent license to make, have made, use, offer to sell, sell, import, and + otherwise transfer the Work, where such license applies only to those patent claims + licensable by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) with the Work to + which such Contribution(s) was submitted. If You institute patent litigation against + any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the + Work or a Contribution incorporated within the Work constitutes direct or + contributory patent infringement, then any patent licenses granted to You under this + License for that Work shall terminate as of the date such litigation is filed. + 4. Redistribution. You may reproduce and distribute copies of the Work or + Derivative Works thereof in any medium, with or without modifications, and in Source + or Object form, provided that You meet the following conditions: + (a) You must give any other recipients of the Work or Derivative Works a copy + of this License; and + (b) You must cause any modified files to carry prominent notices stating that + You changed the files; and + (c) You must retain, in the Source form of any Derivative Works that You + distribute, all copyright, patent, trademark, and attribution notices from the + Source form of the Work, excluding those notices that do not pertain to any part of + the Derivative Works; and + (d) If the Work includes a "NOTICE" text file as part of its distribution, + then any Derivative Works that You distribute must include a readable copy of the + attribution notices contained within such NOTICE file, excluding those notices that + do not pertain to any part of the Derivative Works, in at least one of the following + places: within a NOTICE text file distributed as part of the Derivative Works; + within the Source form or documentation, if provided along with the Derivative + Works; or, within a display generated by the Derivative Works, if and wherever such + third-party notices normally appear. The contents of the NOTICE file are for + informational purposes only and do not modify the License. You may add Your own + attribution notices within Derivative Works that You distribute, alongside or as an + addendum to the NOTICE text from the Work, provided that such additional attribution + notices cannot be construed as modifying the License. You may add Your own + copyright statement to Your modifications and may provide additional or different + license terms and conditions for use, reproduction, or distribution of Your + modifications, or for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with the conditions + stated in this License. + 5. Submission of Contributions. Unless You explicitly state otherwise, any + Contribution intentionally submitted for inclusion in the Work by You to the + Licensor shall be under the terms and conditions of this License, without any + additional terms or conditions. Notwithstanding the above, nothing herein shall + supersede or modify the terms of any separate license agreement you may have + executed with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade names, + trademarks, service marks, or product names of the Licensor, except as required for + reasonable and customary use in describing the origin of the Work and reproducing + the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in + writing, Licensor provides the Work (and each Contributor provides its + Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, + either express or implied, including, without limitation, any warranties or + conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR + PURPOSE. You are solely responsible for determining the appropriateness of using or + redistributing the Work and assume any risks associated with Your exercise of + permissions under this License. + 8. Limitation of Liability. In no event and under no legal theory, whether in + tort (including negligence), contract, or otherwise, unless required by applicable + law (such as deliberate and grossly negligent acts) or agreed to in writing, shall + any Contributor be liable to You for damages, including any direct, indirect, + special, incidental, or consequential damages of any character arising as a result + of this License or out of the use or inability to use the Work (including but not + limited to damages for loss of goodwill, work stoppage, computer failure or + malfunction, or any and all other commercial damages or losses), even if such + Contributor has been advised of the possibility of such damages. + 9. Accepting Warranty or Additional Liability. While redistributing the Work + or Derivative Works thereof, You may choose to offer, and charge a fee for, + acceptance of support, warranty, indemnity, or other liability obligations and/or + rights consistent with this License. However, in accepting such obligations, You may + act only on Your own behalf and on Your sole responsibility, not on behalf of any + other Contributor, and only if You agree to indemnify, defend, and hold each + Contributor harmless for any liability incurred by, or claims asserted against, such + Contributor by reason of your accepting any such warranty or additional + liability. + END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to + your work. To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own + identifying information. (Don't include the brackets!) The text should be enclosed + in the appropriate comment syntax for the file format. We also recommend that a file + or class name and description of purpose be included on the same "printed page" as + the copyright notice for easier identification within third-party archives. Copyright + [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with the License. + You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless + required by applicable law or agreed to in writing, software distributed under the + License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the specific language governing + permissions and limitations under the License. + |
+ ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The MIT License
@@ -37920,13 +38915,13 @@ License conditions:- Copyrights:+Copyrights:
Copyrights: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-
- |
| - Copyright 2022 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell - <justin@ridgewell.name> , license' MIT', repository' - https://github.com/jridgewell/set-array - | +Copyright (c) James Long and contributors |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/source-map (npm) - 0.3.10 + Enclosed you will find the license conditions and + copyright notices applicable for - + @prettier/plugin-xml (npm) - 2.2.0
| - Copyright 2024 Justin Ridgewell <justin@ridgewell.name> - | +Copyright (c) 2019-present Kevin Newton |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/source-map (npm) - 0.3.6 + Enclosed you will find the license conditions and + copyright notices applicable for - + @ptomasroos/react-native-multi-slider (npm) - 1.0.0
| - Copyright 2019 Justin Ridgewell <jridgewell@google.com>; Justin Ridgewell - <justin@ridgewell.name> , license' MIT', repository' - https://github.com/jridgewell/source-map - | +Copyright (c) Tomas Roos 2016 |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/sourcemap-codec (npm) - 1.5.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/motion (npm) - 1.1.4
| Copyright (c) 2015 Rich Harris | +Copyright (c) 2019-present afc163 |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/sourcemap-codec (npm) - 1.5.4 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/motion (npm) - 1.2.0
| - Copyright 2024 Justin Ridgewell <justin@ridgewell.name> - | +Copyright (c) 2019-present afc163 |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/trace-mapping (npm) - 0.3.25 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/portal (npm) - 2.0.0
| - Copyright 2022 Justin Ridgewell <justin@ridgewell.name>; Justin Ridgewell - <justin@ridgewell.name> - | +Copyright (c) 2019-present react-component |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/trace-mapping (npm) - 0.3.29 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/portal (npm) - 2.2.0
| - Copyright 2024 Justin Ridgewell <justin@ridgewell.name> - | +Copyright (c) 2019-present react-component |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @jridgewell/trace-mapping (npm) - 0.3.9 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/resize-observer (npm) - 1.0.0
| - Copyright 2022 Justin Ridgewell <justin@ridgewell.name>; Justin Ridgewell - <justin@ridgewell.name> - | +Copyright (c) 2019-present afc163 |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @nodelib/fs.scandir (npm) - 2.1.5 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/resize-observer (npm) - 1.0.1
| Copyright (c) Denis Malinochkin | +Copyright (c) 2019-present afc163 |
- Enclosed you will find the license conditions and - copyright notices applicable for - @nodelib/fs.stat - (npm) - 2.0.5 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/slider (npm) - 1.0.1
| Copyright (c) Denis Malinochkin | ++ Copyright (c) 2015-present Alipay.com, https://www.alipay.com + |
- Enclosed you will find the license conditions and - copyright notices applicable for - @nodelib/fs.walk - (npm) - 1.2.8 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/tooltip (npm) - 1.3.3
| Copyright (c) Denis Malinochkin | ++ Copyright (c) 2015-present Alipay.com, https://www.alipay.com + |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @notifee/react-native (npm) - 9.1.8 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/trigger (npm) - 3.6.15
|
- Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, - REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, and - distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by the - copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all other - entities that control, are controlled by, or are under common control with that - entity. For the purposes of this definition, "control" means (i) the power, direct - or indirect, to cause the direction or management of such entity, whether by - contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity exercising - permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation source, and - configuration files. - "Object" form shall mean any form resulting from mechanical transformation or - translation of a Source form, including but not limited to compiled object code, - generated documentation, and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or Object form, - made available under the License, as indicated by a copyright notice that is - included in or attached to the work (an example is provided in the Appendix - below). - "Derivative Works" shall mean any work, whether in Source or Object form, that - is based on (or derived from) the Work and for which the editorial revisions, - annotations, elaborations, or other modifications represent, as a whole, an original - work of authorship. For the purposes of this License, Derivative Works shall not - include works that remain separable from, or merely link (or bind by name) to the - interfaces of, the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including the original - version of the Work and any modifications or additions to that Work or Derivative - Works thereof, that is intentionally submitted to Licensor for inclusion in the Work - by the copyright owner or by an individual or Legal Entity authorized to submit on - behalf of the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent to the Licensor - or its representatives, including but not limited to communication on electronic - mailing lists, source code control systems, and issue tracking systems that are - managed by, or on behalf of, the Licensor for the purpose of discussing and - improving the Work, but excluding communication that is conspicuously marked or - otherwise designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf - of whom a Contribution has been received by Licensor and subsequently incorporated - within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of this - License, each Contributor hereby grants to You a perpetual, worldwide, - non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, - prepare Derivative Works of, publicly display, publicly perform, sublicense, and - distribute the Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of this - License, each Contributor hereby grants to You a perpetual, worldwide, - non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this - section) patent license to make, have made, use, offer to sell, sell, import, and - otherwise transfer the Work, where such license applies only to those patent claims - licensable by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) with the Work to - which such Contribution(s) was submitted. If You institute patent litigation against - any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the - Work or a Contribution incorporated within the Work constitutes direct or - contributory patent infringement, then any patent licenses granted to You under this - License for that Work shall terminate as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the Work or - Derivative Works thereof in any medium, with or without modifications, and in Source - or Object form, provided that You meet the following conditions: - (a) You must give any other recipients of the Work or Derivative Works a copy - of this License; and - (b) You must cause any modified files to carry prominent notices stating that - You changed the files; and - (c) You must retain, in the Source form of any Derivative Works that You - distribute, all copyright, patent, trademark, and attribution notices from the - Source form of the Work, excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its distribution, - then any Derivative Works that You distribute must include a readable copy of the - attribution notices contained within such NOTICE file, excluding those notices that - do not pertain to any part of the Derivative Works, in at least one of the following - places: within a NOTICE text file distributed as part of the Derivative Works; - within the Source form or documentation, if provided along with the Derivative - Works; or, within a display generated by the Derivative Works, if and wherever such - third-party notices normally appear. The contents of the NOTICE file are for - informational purposes only and do not modify the License. You may add Your own - attribution notices within Derivative Works that You distribute, alongside or as an - addendum to the NOTICE text from the Work, provided that such additional attribution - notices cannot be construed as modifying the License. You may add Your own - copyright statement to Your modifications and may provide additional or different - license terms and conditions for use, reproduction, or distribution of Your - modifications, or for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with the conditions - stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, any - Contribution intentionally submitted for inclusion in the Work by You to the - Licensor shall be under the terms and conditions of this License, without any - additional terms or conditions. Notwithstanding the above, nothing herein shall - supersede or modify the terms of any separate license agreement you may have - executed with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade names, - trademarks, service marks, or product names of the Licensor, except as required for - reasonable and customary use in describing the origin of the Work and reproducing - the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in - writing, Licensor provides the Work (and each Contributor provides its - Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, - either express or implied, including, without limitation, any warranties or - conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR - PURPOSE. You are solely responsible for determining the appropriateness of using or - redistributing the Work and assume any risks associated with Your exercise of - permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, whether in - tort (including negligence), contract, or otherwise, unless required by applicable - law (such as deliberate and grossly negligent acts) or agreed to in writing, shall - any Contributor be liable to You for damages, including any direct, indirect, - special, incidental, or consequential damages of any character arising as a result - of this License or out of the use or inability to use the Work (including but not - limited to damages for loss of goodwill, work stoppage, computer failure or - malfunction, or any and all other commercial damages or losses), even if such - Contributor has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing the Work - or Derivative Works thereof, You may choose to offer, and charge a fee for, - acceptance of support, warranty, indemnity, or other liability obligations and/or - rights consistent with this License. However, in accepting such obligations, You may - act only on Your own behalf and on Your sole responsibility, not on behalf of any - other Contributor, and only if You agree to indemnify, defend, and hold each - Contributor harmless for any liability incurred by, or claims asserted against, such - Contributor by reason of your accepting any such warranty or additional - liability. - END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to - your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own - identifying information. (Don't include the brackets!) The text should be enclosed - in the appropriate comment syntax for the file format. We also recommend that a file - or class name and description of purpose be included on the same "printed page" as - the copyright notice for easier identification within third-party archives. Copyright - [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with the License. - You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless - required by applicable law or agreed to in writing, software distributed under the - License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the specific language governing - permissions and limitations under the License. - |
- |||||||||||||||||||||||||||||||||||||||||
The MIT License
@@ -38737,13 +39571,11 @@ License conditions:- Copyrights:+Copyrights:
Copyrights: | |||||||||||||||||||||||||||||||||||||||||
-
- |
| Copyright (c) James Long and contributors | ++ Copyright (c) 2015-present Alipay.com, https://www.alipay.com + |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @prettier/plugin-xml (npm) - 2.2.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/util (npm) - 1.3.0
| Copyright (c) 2019-present Kevin Newton | ++ Copyright (c) 2014-present yiminghe; Copyright (c) 2015-present Alipay.com, + https://www.alipay.com + |
- Enclosed you will find the license conditions and - copyright notices applicable for - - @ptomasroos/react-native-multi-slider (npm) - 1.0.0 + Enclosed you will find the license conditions and + copyright notices applicable for - + @rc-component/util (npm) - 1.7.0
| Copyright (c) Tomas Roos 2016 | ++ Copyright (c) 2014-present yiminghe; Copyright (c) 2015-present Alipay.com, + https://www.alipay.com + |
+ Enclosed you will find the license conditions and + copyright notices applicable for - brace-expansion + (npm) - 5.0.7 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| + Copyright Isaac Z. Schlueter <i@izs.me>; Copyright Julian Gruber + <julian@juliangruber.com> + | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - clsx (npm) - + 2.1.1 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| + (c) Luke Edwards (https://lukeed.com); Copyright (c) Luke Edwards + <luke.edwards05@gmail.com> (lukeed.com) + | +
+ Enclosed you will find the license conditions and + copyright notices applicable for - is-mobile (npm) - + 5.0.0 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| + Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + | +
Enclosed you will find the - license conditions applicable for - lru-cache (npm) - - 11.5.1 + license conditions applicable for - lru-cache (npm) - + 11.5.2
-
- |
|
- Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, - REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, and - distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by the - copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all other - entities that control, are controlled by, or are under common control with that - entity. For the purposes of this definition, "control" means (i) the power, direct - or indirect, to cause the direction or management of such entity, whether by - contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity exercising - permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation source, and - configuration files. - "Object" form shall mean any form resulting from mechanical transformation or - translation of a Source form, including but not limited to compiled object code, - generated documentation, and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or Object form, - made available under the License, as indicated by a copyright notice that is - included in or attached to the work (an example is provided in the Appendix - below). - "Derivative Works" shall mean any work, whether in Source or Object form, that - is based on (or derived from) the Work and for which the editorial revisions, - annotations, elaborations, or other modifications represent, as a whole, an original - work of authorship. For the purposes of this License, Derivative Works shall not - include works that remain separable from, or merely link (or bind by name) to the - interfaces of, the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including the original - version of the Work and any modifications or additions to that Work or Derivative - Works thereof, that is intentionally submitted to Licensor for inclusion in the Work - by the copyright owner or by an individual or Legal Entity authorized to submit on - behalf of the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent to the Licensor - or its representatives, including but not limited to communication on electronic - mailing lists, source code control systems, and issue tracking systems that are - managed by, or on behalf of, the Licensor for the purpose of discussing and - improving the Work, but excluding communication that is conspicuously marked or - otherwise designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity on behalf - of whom a Contribution has been received by Licensor and subsequently incorporated - within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of this - License, each Contributor hereby grants to You a perpetual, worldwide, - non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, - prepare Derivative Works of, publicly display, publicly perform, sublicense, and - distribute the Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of this - License, each Contributor hereby grants to You a perpetual, worldwide, - non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this - section) patent license to make, have made, use, offer to sell, sell, import, and - otherwise transfer the Work, where such license applies only to those patent claims - licensable by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) with the Work to - which such Contribution(s) was submitted. If You institute patent litigation against - any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the - Work or a Contribution incorporated within the Work constitutes direct or - contributory patent infringement, then any patent licenses granted to You under this - License for that Work shall terminate as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the Work or - Derivative Works thereof in any medium, with or without modifications, and in Source - or Object form, provided that You meet the following conditions: - (a) You must give any other recipients of the Work or Derivative Works a copy - of this License; and - (b) You must cause any modified files to carry prominent notices stating that - You changed the files; and - (c) You must retain, in the Source form of any Derivative Works that You - distribute, all copyright, patent, trademark, and attribution notices from the - Source form of the Work, excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its distribution, - then any Derivative Works that You distribute must include a readable copy of the - attribution notices contained within such NOTICE file, excluding those notices that - do not pertain to any part of the Derivative Works, in at least one of the following - places: within a NOTICE text file distributed as part of the Derivative Works; - within the Source form or documentation, if provided along with the Derivative - Works; or, within a display generated by the Derivative Works, if and wherever such - third-party notices normally appear. The contents of the NOTICE file are for - informational purposes only and do not modify the License. You may add Your own - attribution notices within Derivative Works that You distribute, alongside or as an - addendum to the NOTICE text from the Work, provided that such additional attribution - notices cannot be construed as modifying the License. You may add Your own - copyright statement to Your modifications and may provide additional or different - license terms and conditions for use, reproduction, or distribution of Your - modifications, or for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with the conditions - stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, any - Contribution intentionally submitted for inclusion in the Work by You to the - Licensor shall be under the terms and conditions of this License, without any - additional terms or conditions. Notwithstanding the above, nothing herein shall - supersede or modify the terms of any separate license agreement you may have - executed with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade names, - trademarks, service marks, or product names of the Licensor, except as required for - reasonable and customary use in describing the origin of the Work and reproducing - the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in - writing, Licensor provides the Work (and each Contributor provides its - Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, - either express or implied, including, without limitation, any warranties or - conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR - PURPOSE. You are solely responsible for determining the appropriateness of using or - redistributing the Work and assume any risks associated with Your exercise of - permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, whether in - tort (including negligence), contract, or otherwise, unless required by applicable - law (such as deliberate and grossly negligent acts) or agreed to in writing, shall - any Contributor be liable to You for damages, including any direct, indirect, - special, incidental, or consequential damages of any character arising as a result - of this License or out of the use or inability to use the Work (including but not - limited to damages for loss of goodwill, work stoppage, computer failure or - malfunction, or any and all other commercial damages or losses), even if such - Contributor has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing the Work - or Derivative Works thereof, You may choose to offer, and charge a fee for, - acceptance of support, warranty, indemnity, or other liability obligations and/or - rights consistent with this License. However, in accepting such obligations, You may - act only on Your own behalf and on Your sole responsibility, not on behalf of any - other Contributor, and only if You agree to indemnify, defend, and hold each - Contributor harmless for any liability incurred by, or claims asserted against, such - Contributor by reason of your accepting any such warranty or additional - liability. - END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to - your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own - identifying information. (Don't include the brackets!) The text should be enclosed - in the appropriate comment syntax for the file format. We also recommend that a file - or class name and description of purpose be included on the same "printed page" as - the copyright notice for easier identification within third-party archives. Copyright - [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with the License. - You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless - required by applicable law or agreed to in writing, software distributed under the - License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the specific language governing - permissions and limitations under the License. + The MIT License + + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| - Copyright (c) 2017 David Chavez; Copyright (c) 2018 David Chavez; Copyright (c) 2019 - David Chavez; Copyright (c) 2021 Double Symmmery; Copyright (c) 2023 Double Symmetry - | +Copyright (c) 2015 Zhen Wang; Copyright (c) 2017 |
+ Enclosed you will find the license conditions and + copyright notices applicable for - brace-expansion + (npm) - 5.0.7 +
+|
+ The MIT License
+ + Copyright (c) <year> <copyright holders> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in the + Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + |
+
| + Copyright Isaac Z. Schlueter <i@izs.me>; Copyright Julian Gruber + <julian@juliangruber.com> + | +
Enclosed you will find the - license conditions applicable for - lru-cache (npm) - - 11.5.1 + license conditions applicable for - lru-cache (npm) - + 11.5.2