@wavemaker/rn-codegen 11.14.1-rc.6311 → 11.14.2-1.6423
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/command.js +6 -0
- package/command.js.map +1 -1
- package/index.js +17 -4
- package/index.js.map +1 -1
- package/npm-shrinkwrap.json +1894 -270
- package/package-lock.json +1894 -270
- package/package.json +5 -3
- package/src/app.generator.js +143 -39
- package/src/app.generator.js.map +1 -1
- package/src/handlebar-helpers.js +8 -0
- package/src/handlebar-helpers.js.map +1 -1
- package/src/increment-builder.js +3 -0
- package/src/increment-builder.js.map +1 -1
- package/src/project.service.js +69 -2
- package/src/project.service.js.map +1 -1
- package/src/templates/app.template +22 -2
- package/src/templates/app.theme.template +47 -9
- package/src/templates/component/component.template +25 -5
- package/src/templates/component/design-token.style.template +8 -0
- package/src/templates/component/design-tokens-defaults.template +12 -0
- package/src/templates/component/style-def.template +3 -2
- package/src/templates/foundation-theme/.wmproject.properties +11 -0
- package/src/templates/foundation-theme/build/android/custom/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/build/android/custom/os/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/build/android/custom/os/variables.less +0 -0
- package/src/templates/foundation-theme/build/android/custom/variables.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/LICENSE.txt +202 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/font.config.js.hbs +14 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/fonts/font.config.json +53 -0
- package/src/templates/foundation-theme/build/android/wavemaker/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/carousel/carousel-content.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/carousel/carousel-template.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/carousel.less +126 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/customwidgetcontainer.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/login.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/network-toast.less +40 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/advanced/webview.less +23 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/anchor.less +266 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/audio.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/base.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/bottomsheet.less +48 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/button.less +284 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/buttongroup.less +45 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/custom.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/icon.less +37 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/label.less +300 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/lottie.less +23 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/message.less +497 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/modal.less +17 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/picture.less +33 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/progress-bar.less +164 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/progress-circle.less +145 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/search.less +119 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/skeleton.less +26 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/spinner.less +45 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic/video.less +23 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/basic.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/area-chart.less +113 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/bar-chart.less +57 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/bubble-chart.less +53 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/column-chart.less +53 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/donut-chart.less +49 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/line-chart.less +53 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/chart/pie-chart.less +45 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/accordion/accordionpane.less +14 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/accordion.less +174 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/layoutgrid/gridcolumn.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/layoutgrid/gridrow.less +32 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/layoutgrid.less +37 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/linearlayout/linearlayoutitem.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/linearlayout.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/panel/panel-content.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/panel/panel-footer.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/panel.less +230 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/tabs/tab-header.less +87 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/tabs/tabpane.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/tabs.less +35 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/tile.less +95 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/wizard/wizardstep.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container/wizard.less +238 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/container.less +46 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/core/components/error-fallback.less +82 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/card/card-content.less +20 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/card/card-footer.less +14 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/card.less +77 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/form/form-body.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/form/form-field.less +24 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/form/form-footer.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/form.less +71 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/list/list-action-template.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/list/list-template.less +21 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/data/list.less +143 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/device/barcodescanner.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/device/camera.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/dialogs/alertdialog.less +41 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/dialogs/confirmdialog.less +61 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/dialogs/dialog.less +84 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/dialogs/dialogactions.less +13 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/dialogs/dialogcontent.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/basedataset.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/baseinput.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/basenumber.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/calendar/views.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/calendar.less +207 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/checkbox.less +100 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/checkboxset.less +90 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/chips.less +150 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/composite.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/currency.less +101 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/epoch/date.less +83 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/epoch/datetime.less +92 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/epoch/time.less +83 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/epoch/wheelpickermodal/datetime-picker-modal.less +41 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/fileupload.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/number.less +71 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/radioset.less +93 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/rating.less +36 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/select.less +132 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/slider.less +129 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/switch.less +79 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/text.less +108 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/textarea.less +82 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/input/toggle.less +73 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/navigation/appnavbar.less +150 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/navigation/basenav.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/navigation/menu.less +64 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/navigation/navbar.less +26 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/navigation/navitem.less +83 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/navigation/popover.less +43 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page/content.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page/left-panel.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page/page-content.less +20 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page/partial-container.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page/partial.less +16 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page/tabbar.less +108 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/page.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/components/prefab.less +19 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/carousel/carousel-content.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/carousel/carousel-template.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/carousel.less +114 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/customwidgetcontainer.less +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/login.less +14 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/network-toast.less +15 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/advanced/webview.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/anchor.less +38 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/audio.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/base.less +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/bottomsheet.less +33 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/button.less +73 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/buttongroup.less +36 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/custom.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/icon.less +22 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/label.less +203 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/lottie.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/message.less +81 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/modal.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/picture.less +51 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/progress-bar.less +76 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/progress-circle.less +28 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/search.less +106 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/skeleton.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/spinner.less +41 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/basic/video.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/area-chart.less +81 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/bar-chart.less +39 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/bubble-chart.less +36 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/column-chart.less +36 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/donut-chart.less +33 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/line-chart.less +36 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/chart/pie-chart.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/accordion/accordionpane.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/accordion.less +118 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/layoutgrid/gridcolumn.less +8 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/layoutgrid/gridrow.less +7 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/layoutgrid.less +11 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/linearlayout/linearlayoutitem.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/linearlayout.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/panel/panel-content.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/panel/panel-footer.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/panel.less +176 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/tabs/tab-header.less +45 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/tabs/tabpane.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/tabs.less +10 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/tile.less +50 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/wizard/wizardstep.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container/wizard.less +95 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/container.less +62 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/card/card-content.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/card/card-footer.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/card.less +55 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/form/form-body.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/form/form-field.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/form/form-footer.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/form.less +243 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/list/list-action-template.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/list/list-template.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/data/list.less +46 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/device/barcodescanner.less +28 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/device/camera.less +20 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/dialogs/alertdialog.less +15 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/dialogs/confirmdialog.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/dialogs/dialog.less +75 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/dialogs/dialogactions.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/dialogs/dialogcontent.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/basedataset.less +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/baseinput.less +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/basenumber.less +0 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/calendar/views.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/calendar.less +103 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/checkbox.less +47 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/checkboxset.less +63 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/chips.less +109 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/composite.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/currency.less +74 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/epoch/date.less +44 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/epoch/datetime.less +38 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/epoch/time.less +38 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/epoch/wheelpickermodal/datetime-picker-modal.less +62 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/fileupload.less +25 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/number.less +40 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/radioset.less +76 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/rating.less +30 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/select.less +79 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/slider.less +43 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/switch.less +37 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/text.less +69 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/textarea.less +63 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/input/toggle.less +39 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/navigation/appnavbar.less +102 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/navigation/basenav.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/navigation/menu.less +56 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/navigation/navbar.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/navigation/navitem.less +27 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/navigation/popover.less +62 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page/content.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page/left-panel.less +8 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page/page-content.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page/partial-container.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page/partial.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page/tabbar.less +74 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/page.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/prefab.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/advanced/carousel.less +73 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/advanced/login.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/advanced/styles.less +2 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/anchor.less +16 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/button-group.less +45 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/button.less +21 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/icon.less +21 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/label.less +28 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/message.less +70 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/picture.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/progress-bar.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/progress-circle.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/search.less +31 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/spinner.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/basic/styles.less +11 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/accordion.less +26 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/container.less +18 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/grid.less +8 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/panel.less +46 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/styles.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/tabs.less +113 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/tile.less +7 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/container/wizard.less +33 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/data/card.less +25 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/data/form.less +22 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/data/list.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/data/styles.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/device/barcode.less +23 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/device/camera.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/device/styles.less +2 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/dialogs/alert-dialog.less +10 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/dialogs/base-dialog.less +31 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/dialogs/confirm-dialog.less +26 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/dialogs/styles.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/calendar.less +8 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/checkbox.less +78 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/checkboxset.less +67 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/chips.less +11 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/currency.less +16 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/date.less +7 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/epoch/datetime-picker-modal.less +49 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/form.less +170 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/number.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/radioset.less +110 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/rating.less +21 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/select.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/slider.less +49 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/styles.less +17 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/switch.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/text.less +6 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/textarea.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/input/toggle.less +98 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/layouts/appnavbar.less +71 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/layouts/content.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/layouts/page-content.less +11 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/layouts/page.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/layouts/styles.less +5 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/layouts/tabbar.less +36 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/navigation/menu.less +21 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/navigation/nav.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/navigation/popover.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/navigation/styles.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/studio/styles.less +17 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/tokens.dark.css +52 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/tokens.light.css +1535 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/accordion.variant.less +14 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/button-group.variant.less +7 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/button.variant.less +314 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/cards.variant.less +23 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/carousel.variant.less +4 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/checkbox.variant.less +16 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/checkboxset.variant.less +18 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/chips.variant.less +40 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/container.variant.less +21 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/form-controls.variant.less +14 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/icon.variant.less +48 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/label.variant.less +148 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/message.variant.less +29 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/panel.variant.less +47 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/picture.variant.less +37 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/progress-bar.variant.less +24 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/progress-circle.variant.less +24 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/radioset.variant.less +12 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/rating.variant.less +8 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/select.variant.less +3 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/switch.variant.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/tabbar.variant.less +10 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/tabs.variant.less +10 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/tile.variant.less +79 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/toggle.variant.less +9 -0
- package/src/templates/foundation-theme/build/android/wavemaker/design-tokens/variables/wizard.variant.less +26 -0
- package/src/templates/foundation-theme/build/android/wavemaker/styles.less +110 -0
- package/src/templates/foundation-theme/build/android/wavemaker/variables.js.less +365 -0
- package/src/templates/foundation-theme/build/android/wavemaker/variables.less +363 -0
- package/src/templates/foundation-theme/build/ios/custom/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/build/ios/custom/os/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/build/ios/custom/os/variables.less +0 -0
- package/src/templates/foundation-theme/build/ios/custom/variables.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/LICENSE.txt +202 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/font.config.js.hbs +14 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/fonts/font.config.json +53 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/carousel/carousel-content.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/carousel/carousel-template.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/carousel.less +126 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/customwidgetcontainer.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/login.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/network-toast.less +40 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/advanced/webview.less +23 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/anchor.less +266 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/audio.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/base.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/bottomsheet.less +48 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/button.less +284 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/buttongroup.less +45 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/custom.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/icon.less +37 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/label.less +300 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/lottie.less +23 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/message.less +497 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/modal.less +17 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/picture.less +33 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/progress-bar.less +164 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/progress-circle.less +145 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/search.less +119 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/skeleton.less +26 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/spinner.less +45 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic/video.less +23 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/basic.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/area-chart.less +113 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/bar-chart.less +57 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/bubble-chart.less +53 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/column-chart.less +53 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/donut-chart.less +49 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/line-chart.less +53 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/chart/pie-chart.less +45 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/accordion/accordionpane.less +14 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/accordion.less +174 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/layoutgrid/gridcolumn.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/layoutgrid/gridrow.less +32 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/layoutgrid.less +37 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/linearlayout/linearlayoutitem.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/linearlayout.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/panel/panel-content.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/panel/panel-footer.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/panel.less +230 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/tabs/tab-header.less +87 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/tabs/tabpane.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/tabs.less +35 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/tile.less +95 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/wizard/wizardstep.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container/wizard.less +238 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/container.less +46 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/core/components/error-fallback.less +82 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/card/card-content.less +20 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/card/card-footer.less +14 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/card.less +77 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/form/form-body.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/form/form-field.less +24 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/form/form-footer.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/form.less +71 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/list/list-action-template.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/list/list-template.less +21 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/data/list.less +143 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/device/barcodescanner.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/device/camera.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/dialogs/alertdialog.less +41 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/dialogs/confirmdialog.less +61 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/dialogs/dialog.less +84 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/dialogs/dialogactions.less +13 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/dialogs/dialogcontent.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/basedataset.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/baseinput.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/basenumber.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/calendar/views.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/calendar.less +207 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/checkbox.less +100 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/checkboxset.less +90 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/chips.less +150 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/composite.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/currency.less +101 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/epoch/date.less +83 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/epoch/datetime.less +92 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/epoch/time.less +83 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/epoch/wheelpickermodal/datetime-picker-modal.less +41 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/fileupload.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/number.less +71 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/radioset.less +93 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/rating.less +36 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/select.less +132 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/slider.less +129 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/switch.less +79 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/text.less +108 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/textarea.less +82 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/input/toggle.less +73 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/navigation/appnavbar.less +150 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/navigation/basenav.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/navigation/menu.less +64 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/navigation/navbar.less +26 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/navigation/navitem.less +83 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/navigation/popover.less +43 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page/content.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page/left-panel.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page/page-content.less +20 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page/partial-container.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page/partial.less +16 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page/tabbar.less +108 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/page.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/components/prefab.less +19 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/carousel/carousel-content.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/carousel/carousel-template.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/carousel.less +114 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/customwidgetcontainer.less +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/login.less +14 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/network-toast.less +15 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/advanced/webview.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/anchor.less +38 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/audio.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/base.less +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/bottomsheet.less +33 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/button.less +73 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/buttongroup.less +36 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/custom.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/icon.less +22 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/label.less +203 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/lottie.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/message.less +81 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/modal.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/picture.less +51 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/progress-bar.less +76 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/progress-circle.less +28 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/search.less +106 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/skeleton.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/spinner.less +41 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/basic/video.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/area-chart.less +81 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/bar-chart.less +39 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/bubble-chart.less +36 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/column-chart.less +36 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/donut-chart.less +33 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/line-chart.less +36 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/chart/pie-chart.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/accordion/accordionpane.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/accordion.less +118 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/layoutgrid/gridcolumn.less +8 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/layoutgrid/gridrow.less +7 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/layoutgrid.less +11 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/linearlayout/linearlayoutitem.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/linearlayout.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/panel/panel-content.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/panel/panel-footer.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/panel.less +176 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/tabs/tab-header.less +45 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/tabs/tabpane.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/tabs.less +10 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/tile.less +50 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/wizard/wizardstep.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container/wizard.less +95 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/container.less +62 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/card/card-content.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/card/card-footer.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/card.less +55 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/form/form-body.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/form/form-field.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/form/form-footer.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/form.less +243 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/list/list-action-template.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/list/list-template.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/data/list.less +46 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/device/barcodescanner.less +28 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/device/camera.less +20 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/dialogs/alertdialog.less +15 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/dialogs/confirmdialog.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/dialogs/dialog.less +75 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/dialogs/dialogactions.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/dialogs/dialogcontent.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/basedataset.less +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/baseinput.less +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/basenumber.less +0 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/calendar/views.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/calendar.less +103 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/checkbox.less +47 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/checkboxset.less +63 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/chips.less +109 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/composite.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/currency.less +74 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/epoch/date.less +44 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/epoch/datetime.less +38 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/epoch/time.less +38 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/epoch/wheelpickermodal/datetime-picker-modal.less +62 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/fileupload.less +25 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/number.less +40 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/radioset.less +76 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/rating.less +30 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/select.less +79 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/slider.less +43 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/switch.less +37 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/text.less +69 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/textarea.less +63 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/input/toggle.less +39 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/navigation/appnavbar.less +102 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/navigation/basenav.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/navigation/menu.less +56 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/navigation/navbar.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/navigation/navitem.less +27 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/navigation/popover.less +62 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page/content.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page/left-panel.less +8 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page/page-content.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page/partial-container.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page/partial.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page/tabbar.less +74 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/page.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/prefab.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/advanced/carousel.less +73 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/advanced/login.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/advanced/styles.less +2 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/anchor.less +16 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/button-group.less +45 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/button.less +21 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/icon.less +21 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/label.less +28 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/message.less +70 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/picture.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/progress-bar.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/progress-circle.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/search.less +31 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/spinner.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/basic/styles.less +11 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/accordion.less +26 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/container.less +18 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/grid.less +8 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/panel.less +46 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/styles.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/tabs.less +113 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/tile.less +7 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/container/wizard.less +33 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/data/card.less +25 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/data/form.less +22 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/data/list.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/data/styles.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/device/barcode.less +23 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/device/camera.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/device/styles.less +2 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/dialogs/alert-dialog.less +10 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/dialogs/base-dialog.less +31 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/dialogs/confirm-dialog.less +26 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/dialogs/styles.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/calendar.less +8 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/checkbox.less +78 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/checkboxset.less +67 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/chips.less +11 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/currency.less +16 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/date.less +7 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/epoch/datetime-picker-modal.less +49 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/form.less +170 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/number.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/radioset.less +110 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/rating.less +21 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/select.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/slider.less +49 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/styles.less +17 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/switch.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/text.less +6 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/textarea.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/input/toggle.less +98 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/layouts/appnavbar.less +71 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/layouts/content.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/layouts/page-content.less +11 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/layouts/page.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/layouts/styles.less +5 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/layouts/tabbar.less +36 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/navigation/menu.less +21 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/navigation/nav.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/navigation/popover.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/navigation/styles.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/studio/styles.less +17 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/tokens.dark.css +52 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/tokens.light.css +1535 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/accordion.variant.less +14 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/button-group.variant.less +7 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/button.variant.less +314 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/cards.variant.less +23 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/carousel.variant.less +4 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/checkbox.variant.less +16 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/checkboxset.variant.less +18 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/chips.variant.less +40 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/container.variant.less +21 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/form-controls.variant.less +14 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/icon.variant.less +48 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/label.variant.less +148 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/message.variant.less +29 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/panel.variant.less +47 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/picture.variant.less +37 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/progress-bar.variant.less +24 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/progress-circle.variant.less +24 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/radioset.variant.less +12 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/rating.variant.less +8 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/select.variant.less +3 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/switch.variant.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/tabbar.variant.less +10 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/tabs.variant.less +10 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/tile.variant.less +79 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/toggle.variant.less +9 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/design-tokens/variables/wizard.variant.less +26 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/styles.less +110 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/variables.js.less +365 -0
- package/src/templates/foundation-theme/build/ios/wavemaker/variables.less +363 -0
- package/src/templates/foundation-theme/dist/.wmproject.properties +11 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/LICENSE.txt +202 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/android/assets/fonts/font.config.js +53 -0
- package/src/templates/foundation-theme/dist/android/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/dist/android/style.css +1593 -0
- package/src/templates/foundation-theme/dist/android/style.js +4694 -0
- package/src/templates/foundation-theme/dist/android/tokens.js +1518 -0
- package/src/templates/foundation-theme/dist/android/variables.js +365 -0
- package/src/templates/foundation-theme/dist/index.html +132 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/LICENSE.txt +202 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/src/templates/foundation-theme/dist/ios/assets/fonts/font.config.js +53 -0
- package/src/templates/foundation-theme/dist/ios/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/dist/ios/style.css +1593 -0
- package/src/templates/foundation-theme/dist/ios/style.js +4694 -0
- package/src/templates/foundation-theme/dist/ios/tokens.js +1518 -0
- package/src/templates/foundation-theme/dist/ios/variables.js +365 -0
- package/src/templates/foundation-theme/dist/theme.png +0 -0
- package/src/templates/foundation-theme/src/android/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/src/android/variables.less +0 -0
- package/src/templates/foundation-theme/src/common/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/src/common/variables.less +5 -0
- package/src/templates/foundation-theme/src/ios/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/src/ios/variables.less +0 -0
- package/src/templates/foundation-theme/theme.png +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/LICENSE.txt +202 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/font.config.js.hbs +14 -0
- package/src/templates/foundation-theme/wavemaker/assets/fonts/font.config.json +53 -0
- package/src/templates/foundation-theme/wavemaker/assets/readme.txt +1 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/carousel/carousel-content.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/carousel/carousel-template.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/carousel.less +126 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/customwidgetcontainer.less +5 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/login.less +30 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/network-toast.less +40 -0
- package/src/templates/foundation-theme/wavemaker/components/advanced/webview.less +23 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/anchor.less +266 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/audio.less +30 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/base.less +5 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/bottomsheet.less +48 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/button.less +284 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/buttongroup.less +45 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/custom.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/icon.less +37 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/label.less +300 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/lottie.less +23 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/message.less +497 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/modal.less +17 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/picture.less +33 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/progress-bar.less +164 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/progress-circle.less +145 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/search.less +119 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/skeleton.less +26 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/spinner.less +45 -0
- package/src/templates/foundation-theme/wavemaker/components/basic/video.less +23 -0
- package/src/templates/foundation-theme/wavemaker/components/basic.less +30 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/area-chart.less +113 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/bar-chart.less +57 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/bubble-chart.less +53 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/column-chart.less +53 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/donut-chart.less +49 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/line-chart.less +53 -0
- package/src/templates/foundation-theme/wavemaker/components/chart/pie-chart.less +45 -0
- package/src/templates/foundation-theme/wavemaker/components/container/accordion/accordionpane.less +14 -0
- package/src/templates/foundation-theme/wavemaker/components/container/accordion.less +174 -0
- package/src/templates/foundation-theme/wavemaker/components/container/layoutgrid/gridcolumn.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/container/layoutgrid/gridrow.less +32 -0
- package/src/templates/foundation-theme/wavemaker/components/container/layoutgrid.less +37 -0
- package/src/templates/foundation-theme/wavemaker/components/container/linearlayout/linearlayoutitem.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/container/linearlayout.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/container/panel/panel-content.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/container/panel/panel-footer.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/container/panel.less +230 -0
- package/src/templates/foundation-theme/wavemaker/components/container/tabs/tab-header.less +87 -0
- package/src/templates/foundation-theme/wavemaker/components/container/tabs/tabpane.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/container/tabs.less +35 -0
- package/src/templates/foundation-theme/wavemaker/components/container/tile.less +95 -0
- package/src/templates/foundation-theme/wavemaker/components/container/wizard/wizardstep.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/container/wizard.less +238 -0
- package/src/templates/foundation-theme/wavemaker/components/container.less +46 -0
- package/src/templates/foundation-theme/wavemaker/components/core/components/error-fallback.less +82 -0
- package/src/templates/foundation-theme/wavemaker/components/data/card/card-content.less +20 -0
- package/src/templates/foundation-theme/wavemaker/components/data/card/card-footer.less +14 -0
- package/src/templates/foundation-theme/wavemaker/components/data/card.less +77 -0
- package/src/templates/foundation-theme/wavemaker/components/data/form/form-body.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/data/form/form-field.less +24 -0
- package/src/templates/foundation-theme/wavemaker/components/data/form/form-footer.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/data/form.less +71 -0
- package/src/templates/foundation-theme/wavemaker/components/data/list/list-action-template.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/data/list/list-template.less +21 -0
- package/src/templates/foundation-theme/wavemaker/components/data/list.less +143 -0
- package/src/templates/foundation-theme/wavemaker/components/device/barcodescanner.less +30 -0
- package/src/templates/foundation-theme/wavemaker/components/device/camera.less +30 -0
- package/src/templates/foundation-theme/wavemaker/components/dialogs/alertdialog.less +41 -0
- package/src/templates/foundation-theme/wavemaker/components/dialogs/confirmdialog.less +61 -0
- package/src/templates/foundation-theme/wavemaker/components/dialogs/dialog.less +84 -0
- package/src/templates/foundation-theme/wavemaker/components/dialogs/dialogactions.less +13 -0
- package/src/templates/foundation-theme/wavemaker/components/dialogs/dialogcontent.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/input/basedataset.less +5 -0
- package/src/templates/foundation-theme/wavemaker/components/input/baseinput.less +5 -0
- package/src/templates/foundation-theme/wavemaker/components/input/basenumber.less +5 -0
- package/src/templates/foundation-theme/wavemaker/components/input/calendar/views.less +9 -0
- package/src/templates/foundation-theme/wavemaker/components/input/calendar.less +207 -0
- package/src/templates/foundation-theme/wavemaker/components/input/checkbox.less +100 -0
- package/src/templates/foundation-theme/wavemaker/components/input/checkboxset.less +90 -0
- package/src/templates/foundation-theme/wavemaker/components/input/chips.less +150 -0
- package/src/templates/foundation-theme/wavemaker/components/input/composite.less +9 -0
- package/src/templates/foundation-theme/wavemaker/components/input/currency.less +101 -0
- package/src/templates/foundation-theme/wavemaker/components/input/epoch/date.less +83 -0
- package/src/templates/foundation-theme/wavemaker/components/input/epoch/datetime.less +92 -0
- package/src/templates/foundation-theme/wavemaker/components/input/epoch/time.less +83 -0
- package/src/templates/foundation-theme/wavemaker/components/input/epoch/wheelpickermodal/datetime-picker-modal.less +41 -0
- package/src/templates/foundation-theme/wavemaker/components/input/fileupload.less +30 -0
- package/src/templates/foundation-theme/wavemaker/components/input/number.less +71 -0
- package/src/templates/foundation-theme/wavemaker/components/input/radioset.less +93 -0
- package/src/templates/foundation-theme/wavemaker/components/input/rating.less +36 -0
- package/src/templates/foundation-theme/wavemaker/components/input/select.less +132 -0
- package/src/templates/foundation-theme/wavemaker/components/input/slider.less +129 -0
- package/src/templates/foundation-theme/wavemaker/components/input/switch.less +79 -0
- package/src/templates/foundation-theme/wavemaker/components/input/text.less +108 -0
- package/src/templates/foundation-theme/wavemaker/components/input/textarea.less +82 -0
- package/src/templates/foundation-theme/wavemaker/components/input/toggle.less +73 -0
- package/src/templates/foundation-theme/wavemaker/components/navigation/appnavbar.less +150 -0
- package/src/templates/foundation-theme/wavemaker/components/navigation/basenav.less +9 -0
- package/src/templates/foundation-theme/wavemaker/components/navigation/menu.less +64 -0
- package/src/templates/foundation-theme/wavemaker/components/navigation/navbar.less +26 -0
- package/src/templates/foundation-theme/wavemaker/components/navigation/navitem.less +83 -0
- package/src/templates/foundation-theme/wavemaker/components/navigation/popover.less +43 -0
- package/src/templates/foundation-theme/wavemaker/components/page/content.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/page/left-panel.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/page/page-content.less +20 -0
- package/src/templates/foundation-theme/wavemaker/components/page/partial-container.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/page/partial.less +16 -0
- package/src/templates/foundation-theme/wavemaker/components/page/tabbar.less +108 -0
- package/src/templates/foundation-theme/wavemaker/components/page.less +12 -0
- package/src/templates/foundation-theme/wavemaker/components/prefab.less +19 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/carousel/carousel-content.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/carousel/carousel-template.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/carousel.less +114 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/customwidgetcontainer.less +0 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/login.less +14 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/network-toast.less +15 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/advanced/webview.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/anchor.less +38 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/audio.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/base.less +0 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/bottomsheet.less +33 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/button.less +73 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/buttongroup.less +36 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/custom.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/icon.less +22 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/label.less +203 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/lottie.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/message.less +81 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/modal.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/picture.less +51 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/progress-bar.less +76 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/progress-circle.less +28 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/search.less +106 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/skeleton.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/spinner.less +41 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/basic/video.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/area-chart.less +81 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/bar-chart.less +39 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/bubble-chart.less +36 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/column-chart.less +36 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/donut-chart.less +33 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/line-chart.less +36 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/chart/pie-chart.less +30 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/accordion/accordionpane.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/accordion.less +118 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/layoutgrid/gridcolumn.less +8 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/layoutgrid/gridrow.less +7 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/layoutgrid.less +11 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/linearlayout/linearlayoutitem.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/linearlayout.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/panel/panel-content.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/panel/panel-footer.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/panel.less +176 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/tabs/tab-header.less +45 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/tabs/tabpane.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/tabs.less +10 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/tile.less +50 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/wizard/wizardstep.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container/wizard.less +95 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/container.less +62 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/card/card-content.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/card/card-footer.less +5 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/card.less +55 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/form/form-body.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/form/form-field.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/form/form-footer.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/form.less +243 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/list/list-action-template.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/list/list-template.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/data/list.less +46 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/device/barcodescanner.less +28 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/device/camera.less +20 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/dialogs/alertdialog.less +15 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/dialogs/confirmdialog.less +30 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/dialogs/dialog.less +75 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/dialogs/dialogactions.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/dialogs/dialogcontent.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/basedataset.less +0 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/baseinput.less +0 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/basenumber.less +0 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/calendar/views.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/calendar.less +103 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/checkbox.less +47 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/checkboxset.less +63 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/chips.less +109 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/composite.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/currency.less +74 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/epoch/date.less +44 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/epoch/datetime.less +38 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/epoch/time.less +38 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/epoch/wheelpickermodal/datetime-picker-modal.less +62 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/fileupload.less +25 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/number.less +40 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/radioset.less +76 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/rating.less +30 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/select.less +79 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/slider.less +43 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/switch.less +37 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/text.less +69 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/textarea.less +63 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/input/toggle.less +39 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/navigation/appnavbar.less +102 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/navigation/basenav.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/navigation/menu.less +56 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/navigation/navbar.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/navigation/navitem.less +27 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/navigation/popover.less +62 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page/content.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page/left-panel.less +8 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page/page-content.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page/partial-container.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page/partial.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page/tabbar.less +74 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/page.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/prefab.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/advanced/carousel.less +73 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/advanced/login.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/advanced/styles.less +2 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/anchor.less +16 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/button-group.less +45 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/button.less +21 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/icon.less +21 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/label.less +28 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/message.less +70 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/picture.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/progress-bar.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/progress-circle.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/search.less +31 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/spinner.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/basic/styles.less +11 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/accordion.less +26 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/container.less +18 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/grid.less +8 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/panel.less +46 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/styles.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/tabs.less +113 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/tile.less +7 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/container/wizard.less +33 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/data/card.less +25 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/data/form.less +22 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/data/list.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/data/styles.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/device/barcode.less +23 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/device/camera.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/device/styles.less +2 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/dialogs/alert-dialog.less +10 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/dialogs/base-dialog.less +31 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/dialogs/confirm-dialog.less +26 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/dialogs/styles.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/calendar.less +8 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/checkbox.less +78 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/checkboxset.less +67 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/chips.less +11 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/currency.less +16 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/date.less +7 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/epoch/datetime-picker-modal.less +49 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/form.less +170 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/number.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/radioset.less +110 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/rating.less +21 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/select.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/slider.less +49 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/styles.less +17 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/switch.less +12 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/text.less +6 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/textarea.less +5 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/input/toggle.less +98 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/layouts/appnavbar.less +71 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/layouts/content.less +5 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/layouts/page-content.less +11 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/layouts/page.less +5 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/layouts/styles.less +5 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/layouts/tabbar.less +36 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/navigation/menu.less +21 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/navigation/nav.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/navigation/popover.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/navigation/styles.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/studio/styles.less +17 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/tokens.dark.css +52 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/tokens.light.css +1535 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/accordion.variant.less +14 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/button-group.variant.less +7 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/button.variant.less +314 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/cards.variant.less +23 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/carousel.variant.less +4 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/checkbox.variant.less +16 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/checkboxset.variant.less +18 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/chips.variant.less +40 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/container.variant.less +21 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/form-controls.variant.less +14 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/icon.variant.less +48 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/label.variant.less +148 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/message.variant.less +29 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/panel.variant.less +47 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/picture.variant.less +37 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/progress-bar.variant.less +24 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/progress-circle.variant.less +24 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/radioset.variant.less +12 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/rating.variant.less +8 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/select.variant.less +3 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/switch.variant.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/tabbar.variant.less +10 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/tabs.variant.less +10 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/tile.variant.less +79 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/toggle.variant.less +9 -0
- package/src/templates/foundation-theme/wavemaker/design-tokens/variables/wizard.variant.less +26 -0
- package/src/templates/foundation-theme/wavemaker/styles.less +110 -0
- package/src/templates/foundation-theme/wavemaker/variables.js.less +365 -0
- package/src/templates/foundation-theme/wavemaker/variables.less +363 -0
- package/src/templates/package.web.json +3 -3
- package/src/templates/project/package.json +3 -3
- package/src/templates/project/wavepulse/rn2css.json +79 -11
- package/src/templates/token.overrides.template +5 -0
- package/src/theme/app-override-css.generator.js +299 -0
- package/src/theme/app-override-css.generator.js.map +1 -0
- package/src/theme/components/advanced/carousel.styledef.js +94 -9
- package/src/theme/components/advanced/carousel.styledef.js.map +1 -1
- package/src/theme/components/advanced/customwidgetcontainer.styledef.js +6 -0
- package/src/theme/components/advanced/customwidgetcontainer.styledef.js.map +1 -0
- package/src/theme/components/advanced/webview.styledef.js +6 -0
- package/src/theme/components/advanced/webview.styledef.js.map +1 -1
- package/src/theme/components/basic/anchor.styledef.js +174 -5
- package/src/theme/components/basic/anchor.styledef.js.map +1 -1
- package/src/theme/components/basic/base.styledef.js +23 -0
- package/src/theme/components/basic/base.styledef.js.map +1 -0
- package/src/theme/components/basic/bottomsheet.styledef.js +6 -6
- package/src/theme/components/basic/bottomsheet.styledef.js.map +1 -1
- package/src/theme/components/basic/button.styledef.js +10 -3
- package/src/theme/components/basic/button.styledef.js.map +1 -1
- package/src/theme/components/basic/buttongroup.styledef.js +51 -2
- package/src/theme/components/basic/buttongroup.styledef.js.map +1 -1
- package/src/theme/components/basic/icon.styledef.js +20 -3
- package/src/theme/components/basic/icon.styledef.js.map +1 -1
- package/src/theme/components/basic/label.styledef.js +92 -2
- package/src/theme/components/basic/label.styledef.js.map +1 -1
- package/src/theme/components/basic/message.styledef.js +66 -4
- package/src/theme/components/basic/message.styledef.js.map +1 -1
- package/src/theme/components/basic/picture.styledef.js +33 -2
- package/src/theme/components/basic/picture.styledef.js.map +1 -1
- package/src/theme/components/basic/progress-bar.styledef.js +50 -5
- package/src/theme/components/basic/progress-bar.styledef.js.map +1 -1
- package/src/theme/components/basic/progress-circle.styledef.js +45 -5
- package/src/theme/components/basic/progress-circle.styledef.js.map +1 -1
- package/src/theme/components/basic/search.styledef.js +80 -13
- package/src/theme/components/basic/search.styledef.js.map +1 -1
- package/src/theme/components/basic/spinner.styledef.js +18 -3
- package/src/theme/components/basic/spinner.styledef.js.map +1 -1
- package/src/theme/components/container/accordion.styledef.js +9 -4
- package/src/theme/components/container/accordion.styledef.js.map +1 -1
- package/src/theme/components/container/layoutgrid/gridcolumn.styledef.js +1 -1
- package/src/theme/components/container/layoutgrid/gridcolumn.styledef.js.map +1 -1
- package/src/theme/components/container/tabs/tabheader.styledef.js +4 -4
- package/src/theme/components/container/tabs/tabheader.styledef.js.map +1 -1
- package/src/theme/components/container/tabs/tabpane.styledef.js +3 -0
- package/src/theme/components/container/tabs/tabpane.styledef.js.map +1 -1
- package/src/theme/components/container/tabs.styledef.js +13 -1
- package/src/theme/components/container/tabs.styledef.js.map +1 -1
- package/src/theme/components/container/tile.styledef.js +43 -2
- package/src/theme/components/container/tile.styledef.js.map +1 -1
- package/src/theme/components/container/wizard.styledef.js +8 -17
- package/src/theme/components/container/wizard.styledef.js.map +1 -1
- package/src/theme/components/container.styledef.js +11 -2
- package/src/theme/components/container.styledef.js.map +1 -1
- package/src/theme/components/data/card/card-footer.styledef.js +5 -0
- package/src/theme/components/data/card/card-footer.styledef.js.map +1 -1
- package/src/theme/components/data/card.styledef.js +47 -0
- package/src/theme/components/data/card.styledef.js.map +1 -1
- package/src/theme/components/data/form/form-action.styledef.js +4 -1
- package/src/theme/components/data/form/form-action.styledef.js.map +1 -1
- package/src/theme/components/data/form.styledef.js +50 -1
- package/src/theme/components/data/form.styledef.js.map +1 -1
- package/src/theme/components/data/list.styledef.js +107 -8
- package/src/theme/components/data/list.styledef.js.map +1 -1
- package/src/theme/components/design-token.provider.js +223 -0
- package/src/theme/components/design-token.provider.js.map +1 -0
- package/src/theme/components/device/barcodescanner.styledef.js +21 -0
- package/src/theme/components/device/barcodescanner.styledef.js.map +1 -1
- package/src/theme/components/device/camera.styledef.js +21 -0
- package/src/theme/components/device/camera.styledef.js.map +1 -1
- package/src/theme/components/dialogs/alertdialog.styledef.js +6 -0
- package/src/theme/components/dialogs/alertdialog.styledef.js.map +1 -1
- package/src/theme/components/dialogs/confirmdialog.styledef.js +35 -3
- package/src/theme/components/dialogs/confirmdialog.styledef.js.map +1 -1
- package/src/theme/components/dialogs/dialog.styledef.js +70 -4
- package/src/theme/components/dialogs/dialog.styledef.js.map +1 -1
- package/src/theme/components/input/calendar.styledef.js +126 -6
- package/src/theme/components/input/calendar.styledef.js.map +1 -1
- package/src/theme/components/input/checkbox.styledef.js +80 -5
- package/src/theme/components/input/checkbox.styledef.js.map +1 -1
- package/src/theme/components/input/checkboxset.styledef.js +91 -6
- package/src/theme/components/input/checkboxset.styledef.js.map +1 -1
- package/src/theme/components/input/chips.styledef.js +58 -4
- package/src/theme/components/input/chips.styledef.js.map +1 -1
- package/src/theme/components/input/composite.styledef.js +4 -1
- package/src/theme/components/input/composite.styledef.js.map +1 -1
- package/src/theme/components/input/currency.styledef.js +70 -4
- package/src/theme/components/input/currency.styledef.js.map +1 -1
- package/src/theme/components/input/epoch/datetime.styledef.js +9 -2
- package/src/theme/components/input/epoch/datetime.styledef.js.map +1 -1
- package/src/theme/components/input/epoch/wheelpickermodal/datetime-picker-modal.styledef.js +64 -0
- package/src/theme/components/input/epoch/wheelpickermodal/datetime-picker-modal.styledef.js.map +1 -0
- package/src/theme/components/input/fileupload.styledef.js +5 -2
- package/src/theme/components/input/fileupload.styledef.js.map +1 -1
- package/src/theme/components/input/number.styledef.js +22 -0
- package/src/theme/components/input/number.styledef.js.map +1 -1
- package/src/theme/components/input/radioset.styledef.js +75 -6
- package/src/theme/components/input/radioset.styledef.js.map +1 -1
- package/src/theme/components/input/rating.styledef.js +24 -2
- package/src/theme/components/input/rating.styledef.js.map +1 -1
- package/src/theme/components/input/select.styledef.js +56 -8
- package/src/theme/components/input/select.styledef.js.map +1 -1
- package/src/theme/components/input/slider.styledef.js +49 -6
- package/src/theme/components/input/slider.styledef.js.map +1 -1
- package/src/theme/components/input/switch.styledef.js +48 -6
- package/src/theme/components/input/switch.styledef.js.map +1 -1
- package/src/theme/components/input/text.styledef.js +117 -2
- package/src/theme/components/input/text.styledef.js.map +1 -1
- package/src/theme/components/input/textarea.styledef.js +54 -2
- package/src/theme/components/input/textarea.styledef.js.map +1 -1
- package/src/theme/components/input/toggle.styledef.js +60 -6
- package/src/theme/components/input/toggle.styledef.js.map +1 -1
- package/src/theme/components/navigation/menu.styledef.js +42 -1
- package/src/theme/components/navigation/menu.styledef.js.map +1 -1
- package/src/theme/components/navigation/navitem.styledef.js +71 -2
- package/src/theme/components/navigation/navitem.styledef.js.map +1 -1
- package/src/theme/components/page/tabbar.styledef.js +44 -7
- package/src/theme/components/page/tabbar.styledef.js.map +1 -1
- package/src/theme/components/style-definition.provider.js +11 -3
- package/src/theme/components/style-definition.provider.js.map +1 -1
- package/src/theme/rn-stylesheet.transpiler.js +32 -7
- package/src/theme/rn-stylesheet.transpiler.js.map +1 -1
- package/src/theme/style-dictionary-wrapper.js +20 -0
- package/src/theme/theme.service.js +91 -7
- package/src/theme/theme.service.js.map +1 -1
- package/src/theme/token.transpiler.js +160 -0
- package/src/theme/token.transpiler.js.map +1 -0
- package/src/theme/variables.js +1 -0
- package/src/theme/variables.js.map +1 -1
- package/src/transpile/components/advanced/customwidget.transformer.js +37 -0
- package/src/transpile/components/advanced/customwidget.transformer.js.map +1 -0
- package/src/transpile/components/advanced/customwidgetcontainer.transformer.js +13 -0
- package/src/transpile/components/advanced/customwidgetcontainer.transformer.js.map +1 -0
- package/src/transpile/components/basic/buttongroup.transformer.js +2 -1
- package/src/transpile/components/basic/buttongroup.transformer.js.map +1 -1
- package/src/transpile/components/data/form/form-field.transformer.js +8 -2
- package/src/transpile/components/data/form/form-field.transformer.js.map +1 -1
- package/src/transpile/components/input/epoch/date.transformer.js +7 -0
- package/src/transpile/components/input/epoch/date.transformer.js.map +1 -1
- package/src/transpile/components/input/epoch/datetime.transformer.js +7 -0
- package/src/transpile/components/input/epoch/datetime.transformer.js.map +1 -1
- package/src/transpile/components/input/epoch/time.transformer.js +7 -0
- package/src/transpile/components/input/epoch/time.transformer.js.map +1 -1
- package/src/transpile/components/input/number.transformer.js +2 -1
- package/src/transpile/components/input/number.transformer.js.map +1 -1
- package/src/transpile/components/input/select.transformer.js +7 -0
- package/src/transpile/components/input/select.transformer.js.map +1 -1
- package/src/transpile/components/input/text.transformer.js +2 -1
- package/src/transpile/components/input/text.transformer.js.map +1 -1
- package/src/transpile/components/input/textarea.transformer.js +6 -0
- package/src/transpile/components/input/textarea.transformer.js.map +1 -1
- package/src/transpile/components/transform-register.js +4 -0
- package/src/transpile/components/transform-register.js.map +1 -1
- package/src/transpile/style.transformer.js +13 -2
- package/src/transpile/style.transformer.js.map +1 -1
- package/src/transpile/transpile.js +3 -0
- package/src/transpile/transpile.js.map +1 -1
- package/src/utils.js +17 -1
- package/src/utils.js.map +1 -1
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/rn-codegen",
|
|
3
|
-
"version": "11.14.1
|
|
3
|
+
"version": "11.14.2-1.6423",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/rn-codegen",
|
|
9
|
-
"version": "11.14.1
|
|
9
|
+
"version": "11.14.2-1.6423",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"@types/node": "18.11.10",
|
|
19
19
|
"@types/prettier": "2.7.1",
|
|
20
20
|
"@types/yargs": "17.0.15",
|
|
21
|
-
"@wavemaker/
|
|
21
|
+
"@wavemaker/custom-widgets-m3": "11.14.2-1.6423",
|
|
22
|
+
"@wavemaker/foundation-css": "11.14.2-1.6423",
|
|
22
23
|
"adm-zip": "0.5.9",
|
|
23
24
|
"axios": "1.8.3",
|
|
24
25
|
"clean-css": "5.1.5",
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
"prettier": "2.3.0",
|
|
36
37
|
"puppeteer": "5.4.0",
|
|
37
38
|
"rimraf": "3.0.2",
|
|
39
|
+
"style-dictionary": "4.1.0",
|
|
38
40
|
"yargs": "16.2.0"
|
|
39
41
|
},
|
|
40
42
|
"bin": {
|
|
@@ -72,11 +74,11 @@
|
|
|
72
74
|
}
|
|
73
75
|
},
|
|
74
76
|
"node_modules/@babel/code-frame": {
|
|
75
|
-
"version": "7.
|
|
76
|
-
"integrity": "sha512-
|
|
77
|
+
"version": "7.29.0",
|
|
78
|
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
|
|
77
79
|
"license": "MIT",
|
|
78
80
|
"dependencies": {
|
|
79
|
-
"@babel/helper-validator-identifier": "^7.
|
|
81
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
80
82
|
"js-tokens": "^4.0.0",
|
|
81
83
|
"picocolors": "^1.1.1"
|
|
82
84
|
},
|
|
@@ -85,8 +87,8 @@
|
|
|
85
87
|
}
|
|
86
88
|
},
|
|
87
89
|
"node_modules/@babel/compat-data": {
|
|
88
|
-
"version": "7.
|
|
89
|
-
"integrity": "sha512-
|
|
90
|
+
"version": "7.29.0",
|
|
91
|
+
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
|
|
90
92
|
"dev": true,
|
|
91
93
|
"license": "MIT",
|
|
92
94
|
"engines": {
|
|
@@ -94,20 +96,20 @@
|
|
|
94
96
|
}
|
|
95
97
|
},
|
|
96
98
|
"node_modules/@babel/core": {
|
|
97
|
-
"version": "7.
|
|
98
|
-
"integrity": "sha512-
|
|
99
|
+
"version": "7.29.0",
|
|
100
|
+
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
|
|
99
101
|
"dev": true,
|
|
100
102
|
"license": "MIT",
|
|
101
103
|
"dependencies": {
|
|
102
|
-
"@babel/code-frame": "^7.
|
|
103
|
-
"@babel/generator": "^7.
|
|
104
|
-
"@babel/helper-compilation-targets": "^7.
|
|
105
|
-
"@babel/helper-module-transforms": "^7.28.
|
|
106
|
-
"@babel/helpers": "^7.28.
|
|
107
|
-
"@babel/parser": "^7.
|
|
108
|
-
"@babel/template": "^7.
|
|
109
|
-
"@babel/traverse": "^7.
|
|
110
|
-
"@babel/types": "^7.
|
|
104
|
+
"@babel/code-frame": "^7.29.0",
|
|
105
|
+
"@babel/generator": "^7.29.0",
|
|
106
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
107
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
108
|
+
"@babel/helpers": "^7.28.6",
|
|
109
|
+
"@babel/parser": "^7.29.0",
|
|
110
|
+
"@babel/template": "^7.28.6",
|
|
111
|
+
"@babel/traverse": "^7.29.0",
|
|
112
|
+
"@babel/types": "^7.29.0",
|
|
111
113
|
"@jridgewell/remapping": "^2.3.5",
|
|
112
114
|
"convert-source-map": "^2.0.0",
|
|
113
115
|
"debug": "^4.1.0",
|
|
@@ -124,13 +126,13 @@
|
|
|
124
126
|
}
|
|
125
127
|
},
|
|
126
128
|
"node_modules/@babel/core/node_modules/@babel/generator": {
|
|
127
|
-
"version": "7.
|
|
128
|
-
"integrity": "sha512-
|
|
129
|
+
"version": "7.29.1",
|
|
130
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
129
131
|
"dev": true,
|
|
130
132
|
"license": "MIT",
|
|
131
133
|
"dependencies": {
|
|
132
|
-
"@babel/parser": "^7.
|
|
133
|
-
"@babel/types": "^7.
|
|
134
|
+
"@babel/parser": "^7.29.0",
|
|
135
|
+
"@babel/types": "^7.29.0",
|
|
134
136
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
135
137
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
136
138
|
"jsesc": "^3.0.2"
|
|
@@ -140,12 +142,12 @@
|
|
|
140
142
|
}
|
|
141
143
|
},
|
|
142
144
|
"node_modules/@babel/core/node_modules/@babel/parser": {
|
|
143
|
-
"version": "7.
|
|
144
|
-
"integrity": "sha512-
|
|
145
|
+
"version": "7.29.0",
|
|
146
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
145
147
|
"dev": true,
|
|
146
148
|
"license": "MIT",
|
|
147
149
|
"dependencies": {
|
|
148
|
-
"@babel/types": "^7.
|
|
150
|
+
"@babel/types": "^7.29.0"
|
|
149
151
|
},
|
|
150
152
|
"bin": {
|
|
151
153
|
"parser": "bin/babel-parser.js"
|
|
@@ -155,17 +157,17 @@
|
|
|
155
157
|
}
|
|
156
158
|
},
|
|
157
159
|
"node_modules/@babel/core/node_modules/@babel/traverse": {
|
|
158
|
-
"version": "7.
|
|
159
|
-
"integrity": "sha512-
|
|
160
|
+
"version": "7.29.0",
|
|
161
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
160
162
|
"dev": true,
|
|
161
163
|
"license": "MIT",
|
|
162
164
|
"dependencies": {
|
|
163
|
-
"@babel/code-frame": "^7.
|
|
164
|
-
"@babel/generator": "^7.
|
|
165
|
+
"@babel/code-frame": "^7.29.0",
|
|
166
|
+
"@babel/generator": "^7.29.0",
|
|
165
167
|
"@babel/helper-globals": "^7.28.0",
|
|
166
|
-
"@babel/parser": "^7.
|
|
167
|
-
"@babel/template": "^7.
|
|
168
|
-
"@babel/types": "^7.
|
|
168
|
+
"@babel/parser": "^7.29.0",
|
|
169
|
+
"@babel/template": "^7.28.6",
|
|
170
|
+
"@babel/types": "^7.29.0",
|
|
169
171
|
"debug": "^4.3.1"
|
|
170
172
|
},
|
|
171
173
|
"engines": {
|
|
@@ -204,12 +206,12 @@
|
|
|
204
206
|
}
|
|
205
207
|
},
|
|
206
208
|
"node_modules/@babel/helper-compilation-targets": {
|
|
207
|
-
"version": "7.
|
|
208
|
-
"integrity": "sha512-
|
|
209
|
+
"version": "7.28.6",
|
|
210
|
+
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
|
|
209
211
|
"dev": true,
|
|
210
212
|
"license": "MIT",
|
|
211
213
|
"dependencies": {
|
|
212
|
-
"@babel/compat-data": "^7.
|
|
214
|
+
"@babel/compat-data": "^7.28.6",
|
|
213
215
|
"@babel/helper-validator-option": "^7.27.1",
|
|
214
216
|
"browserslist": "^4.24.0",
|
|
215
217
|
"lru-cache": "^5.1.1",
|
|
@@ -272,26 +274,26 @@
|
|
|
272
274
|
}
|
|
273
275
|
},
|
|
274
276
|
"node_modules/@babel/helper-module-imports": {
|
|
275
|
-
"version": "7.
|
|
276
|
-
"integrity": "sha512-
|
|
277
|
+
"version": "7.28.6",
|
|
278
|
+
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
|
|
277
279
|
"dev": true,
|
|
278
280
|
"license": "MIT",
|
|
279
281
|
"dependencies": {
|
|
280
|
-
"@babel/traverse": "^7.
|
|
281
|
-
"@babel/types": "^7.
|
|
282
|
+
"@babel/traverse": "^7.28.6",
|
|
283
|
+
"@babel/types": "^7.28.6"
|
|
282
284
|
},
|
|
283
285
|
"engines": {
|
|
284
286
|
"node": ">=6.9.0"
|
|
285
287
|
}
|
|
286
288
|
},
|
|
287
289
|
"node_modules/@babel/helper-module-imports/node_modules/@babel/generator": {
|
|
288
|
-
"version": "7.
|
|
289
|
-
"integrity": "sha512-
|
|
290
|
+
"version": "7.29.1",
|
|
291
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
290
292
|
"dev": true,
|
|
291
293
|
"license": "MIT",
|
|
292
294
|
"dependencies": {
|
|
293
|
-
"@babel/parser": "^7.
|
|
294
|
-
"@babel/types": "^7.
|
|
295
|
+
"@babel/parser": "^7.29.0",
|
|
296
|
+
"@babel/types": "^7.29.0",
|
|
295
297
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
296
298
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
297
299
|
"jsesc": "^3.0.2"
|
|
@@ -301,12 +303,12 @@
|
|
|
301
303
|
}
|
|
302
304
|
},
|
|
303
305
|
"node_modules/@babel/helper-module-imports/node_modules/@babel/parser": {
|
|
304
|
-
"version": "7.
|
|
305
|
-
"integrity": "sha512-
|
|
306
|
+
"version": "7.29.0",
|
|
307
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
306
308
|
"dev": true,
|
|
307
309
|
"license": "MIT",
|
|
308
310
|
"dependencies": {
|
|
309
|
-
"@babel/types": "^7.
|
|
311
|
+
"@babel/types": "^7.29.0"
|
|
310
312
|
},
|
|
311
313
|
"bin": {
|
|
312
314
|
"parser": "bin/babel-parser.js"
|
|
@@ -316,17 +318,17 @@
|
|
|
316
318
|
}
|
|
317
319
|
},
|
|
318
320
|
"node_modules/@babel/helper-module-imports/node_modules/@babel/traverse": {
|
|
319
|
-
"version": "7.
|
|
320
|
-
"integrity": "sha512-
|
|
321
|
+
"version": "7.29.0",
|
|
322
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
321
323
|
"dev": true,
|
|
322
324
|
"license": "MIT",
|
|
323
325
|
"dependencies": {
|
|
324
|
-
"@babel/code-frame": "^7.
|
|
325
|
-
"@babel/generator": "^7.
|
|
326
|
+
"@babel/code-frame": "^7.29.0",
|
|
327
|
+
"@babel/generator": "^7.29.0",
|
|
326
328
|
"@babel/helper-globals": "^7.28.0",
|
|
327
|
-
"@babel/parser": "^7.
|
|
328
|
-
"@babel/template": "^7.
|
|
329
|
-
"@babel/types": "^7.
|
|
329
|
+
"@babel/parser": "^7.29.0",
|
|
330
|
+
"@babel/template": "^7.28.6",
|
|
331
|
+
"@babel/types": "^7.29.0",
|
|
330
332
|
"debug": "^4.3.1"
|
|
331
333
|
},
|
|
332
334
|
"engines": {
|
|
@@ -346,14 +348,14 @@
|
|
|
346
348
|
}
|
|
347
349
|
},
|
|
348
350
|
"node_modules/@babel/helper-module-transforms": {
|
|
349
|
-
"version": "7.28.
|
|
350
|
-
"integrity": "sha512-
|
|
351
|
+
"version": "7.28.6",
|
|
352
|
+
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
|
|
351
353
|
"dev": true,
|
|
352
354
|
"license": "MIT",
|
|
353
355
|
"dependencies": {
|
|
354
|
-
"@babel/helper-module-imports": "^7.
|
|
355
|
-
"@babel/helper-validator-identifier": "^7.
|
|
356
|
-
"@babel/traverse": "^7.28.
|
|
356
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
357
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
358
|
+
"@babel/traverse": "^7.28.6"
|
|
357
359
|
},
|
|
358
360
|
"engines": {
|
|
359
361
|
"node": ">=6.9.0"
|
|
@@ -363,13 +365,13 @@
|
|
|
363
365
|
}
|
|
364
366
|
},
|
|
365
367
|
"node_modules/@babel/helper-module-transforms/node_modules/@babel/generator": {
|
|
366
|
-
"version": "7.
|
|
367
|
-
"integrity": "sha512-
|
|
368
|
+
"version": "7.29.1",
|
|
369
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
368
370
|
"dev": true,
|
|
369
371
|
"license": "MIT",
|
|
370
372
|
"dependencies": {
|
|
371
|
-
"@babel/parser": "^7.
|
|
372
|
-
"@babel/types": "^7.
|
|
373
|
+
"@babel/parser": "^7.29.0",
|
|
374
|
+
"@babel/types": "^7.29.0",
|
|
373
375
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
374
376
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
375
377
|
"jsesc": "^3.0.2"
|
|
@@ -379,12 +381,12 @@
|
|
|
379
381
|
}
|
|
380
382
|
},
|
|
381
383
|
"node_modules/@babel/helper-module-transforms/node_modules/@babel/parser": {
|
|
382
|
-
"version": "7.
|
|
383
|
-
"integrity": "sha512-
|
|
384
|
+
"version": "7.29.0",
|
|
385
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
384
386
|
"dev": true,
|
|
385
387
|
"license": "MIT",
|
|
386
388
|
"dependencies": {
|
|
387
|
-
"@babel/types": "^7.
|
|
389
|
+
"@babel/types": "^7.29.0"
|
|
388
390
|
},
|
|
389
391
|
"bin": {
|
|
390
392
|
"parser": "bin/babel-parser.js"
|
|
@@ -394,17 +396,17 @@
|
|
|
394
396
|
}
|
|
395
397
|
},
|
|
396
398
|
"node_modules/@babel/helper-module-transforms/node_modules/@babel/traverse": {
|
|
397
|
-
"version": "7.
|
|
398
|
-
"integrity": "sha512-
|
|
399
|
+
"version": "7.29.0",
|
|
400
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
399
401
|
"dev": true,
|
|
400
402
|
"license": "MIT",
|
|
401
403
|
"dependencies": {
|
|
402
|
-
"@babel/code-frame": "^7.
|
|
403
|
-
"@babel/generator": "^7.
|
|
404
|
+
"@babel/code-frame": "^7.29.0",
|
|
405
|
+
"@babel/generator": "^7.29.0",
|
|
404
406
|
"@babel/helper-globals": "^7.28.0",
|
|
405
|
-
"@babel/parser": "^7.
|
|
406
|
-
"@babel/template": "^7.
|
|
407
|
-
"@babel/types": "^7.
|
|
407
|
+
"@babel/parser": "^7.29.0",
|
|
408
|
+
"@babel/template": "^7.28.6",
|
|
409
|
+
"@babel/types": "^7.29.0",
|
|
408
410
|
"debug": "^4.3.1"
|
|
409
411
|
},
|
|
410
412
|
"engines": {
|
|
@@ -424,8 +426,8 @@
|
|
|
424
426
|
}
|
|
425
427
|
},
|
|
426
428
|
"node_modules/@babel/helper-plugin-utils": {
|
|
427
|
-
"version": "7.
|
|
428
|
-
"integrity": "sha512-
|
|
429
|
+
"version": "7.28.6",
|
|
430
|
+
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
|
|
429
431
|
"dev": true,
|
|
430
432
|
"license": "MIT",
|
|
431
433
|
"engines": {
|
|
@@ -469,13 +471,13 @@
|
|
|
469
471
|
}
|
|
470
472
|
},
|
|
471
473
|
"node_modules/@babel/helpers": {
|
|
472
|
-
"version": "7.28.
|
|
473
|
-
"integrity": "sha512-
|
|
474
|
+
"version": "7.28.6",
|
|
475
|
+
"integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
|
|
474
476
|
"dev": true,
|
|
475
477
|
"license": "MIT",
|
|
476
478
|
"dependencies": {
|
|
477
|
-
"@babel/template": "^7.
|
|
478
|
-
"@babel/types": "^7.28.
|
|
479
|
+
"@babel/template": "^7.28.6",
|
|
480
|
+
"@babel/types": "^7.28.6"
|
|
479
481
|
},
|
|
480
482
|
"engines": {
|
|
481
483
|
"node": ">=6.9.0"
|
|
@@ -544,12 +546,12 @@
|
|
|
544
546
|
}
|
|
545
547
|
},
|
|
546
548
|
"node_modules/@babel/plugin-syntax-import-attributes": {
|
|
547
|
-
"version": "7.
|
|
548
|
-
"integrity": "sha512-
|
|
549
|
+
"version": "7.28.6",
|
|
550
|
+
"integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==",
|
|
549
551
|
"dev": true,
|
|
550
552
|
"license": "MIT",
|
|
551
553
|
"dependencies": {
|
|
552
|
-
"@babel/helper-plugin-utils": "^7.
|
|
554
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
553
555
|
},
|
|
554
556
|
"engines": {
|
|
555
557
|
"node": ">=6.9.0"
|
|
@@ -583,12 +585,12 @@
|
|
|
583
585
|
}
|
|
584
586
|
},
|
|
585
587
|
"node_modules/@babel/plugin-syntax-jsx": {
|
|
586
|
-
"version": "7.
|
|
587
|
-
"integrity": "sha512-
|
|
588
|
+
"version": "7.28.6",
|
|
589
|
+
"integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
|
|
588
590
|
"dev": true,
|
|
589
591
|
"license": "MIT",
|
|
590
592
|
"dependencies": {
|
|
591
|
-
"@babel/helper-plugin-utils": "^7.
|
|
593
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
592
594
|
},
|
|
593
595
|
"engines": {
|
|
594
596
|
"node": ">=6.9.0"
|
|
@@ -700,12 +702,12 @@
|
|
|
700
702
|
}
|
|
701
703
|
},
|
|
702
704
|
"node_modules/@babel/plugin-syntax-typescript": {
|
|
703
|
-
"version": "7.
|
|
704
|
-
"integrity": "sha512
|
|
705
|
+
"version": "7.28.6",
|
|
706
|
+
"integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
|
|
705
707
|
"dev": true,
|
|
706
708
|
"license": "MIT",
|
|
707
709
|
"dependencies": {
|
|
708
|
-
"@babel/helper-plugin-utils": "^7.
|
|
710
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
709
711
|
},
|
|
710
712
|
"engines": {
|
|
711
713
|
"node": ">=6.9.0"
|
|
@@ -715,24 +717,24 @@
|
|
|
715
717
|
}
|
|
716
718
|
},
|
|
717
719
|
"node_modules/@babel/template": {
|
|
718
|
-
"version": "7.
|
|
719
|
-
"integrity": "sha512-
|
|
720
|
+
"version": "7.28.6",
|
|
721
|
+
"integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
|
|
720
722
|
"license": "MIT",
|
|
721
723
|
"dependencies": {
|
|
722
|
-
"@babel/code-frame": "^7.
|
|
723
|
-
"@babel/parser": "^7.
|
|
724
|
-
"@babel/types": "^7.
|
|
724
|
+
"@babel/code-frame": "^7.28.6",
|
|
725
|
+
"@babel/parser": "^7.28.6",
|
|
726
|
+
"@babel/types": "^7.28.6"
|
|
725
727
|
},
|
|
726
728
|
"engines": {
|
|
727
729
|
"node": ">=6.9.0"
|
|
728
730
|
}
|
|
729
731
|
},
|
|
730
732
|
"node_modules/@babel/template/node_modules/@babel/parser": {
|
|
731
|
-
"version": "7.
|
|
732
|
-
"integrity": "sha512-
|
|
733
|
+
"version": "7.29.0",
|
|
734
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
733
735
|
"license": "MIT",
|
|
734
736
|
"dependencies": {
|
|
735
|
-
"@babel/types": "^7.
|
|
737
|
+
"@babel/types": "^7.29.0"
|
|
736
738
|
},
|
|
737
739
|
"bin": {
|
|
738
740
|
"parser": "bin/babel-parser.js"
|
|
@@ -762,12 +764,12 @@
|
|
|
762
764
|
}
|
|
763
765
|
},
|
|
764
766
|
"node_modules/@babel/traverse/node_modules/@babel/generator": {
|
|
765
|
-
"version": "7.
|
|
766
|
-
"integrity": "sha512-
|
|
767
|
+
"version": "7.29.1",
|
|
768
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
767
769
|
"license": "MIT",
|
|
768
770
|
"dependencies": {
|
|
769
|
-
"@babel/parser": "^7.
|
|
770
|
-
"@babel/types": "^7.
|
|
771
|
+
"@babel/parser": "^7.29.0",
|
|
772
|
+
"@babel/types": "^7.29.0",
|
|
771
773
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
772
774
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
773
775
|
"jsesc": "^3.0.2"
|
|
@@ -777,11 +779,11 @@
|
|
|
777
779
|
}
|
|
778
780
|
},
|
|
779
781
|
"node_modules/@babel/traverse/node_modules/@babel/parser": {
|
|
780
|
-
"version": "7.
|
|
781
|
-
"integrity": "sha512-
|
|
782
|
+
"version": "7.29.0",
|
|
783
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
782
784
|
"license": "MIT",
|
|
783
785
|
"dependencies": {
|
|
784
|
-
"@babel/types": "^7.
|
|
786
|
+
"@babel/types": "^7.29.0"
|
|
785
787
|
},
|
|
786
788
|
"bin": {
|
|
787
789
|
"parser": "bin/babel-parser.js"
|
|
@@ -802,8 +804,8 @@
|
|
|
802
804
|
}
|
|
803
805
|
},
|
|
804
806
|
"node_modules/@babel/types": {
|
|
805
|
-
"version": "7.
|
|
806
|
-
"integrity": "sha512-
|
|
807
|
+
"version": "7.29.0",
|
|
808
|
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
807
809
|
"license": "MIT",
|
|
808
810
|
"dependencies": {
|
|
809
811
|
"@babel/helper-string-parser": "^7.27.1",
|
|
@@ -819,25 +821,198 @@
|
|
|
819
821
|
"dev": true,
|
|
820
822
|
"license": "MIT"
|
|
821
823
|
},
|
|
822
|
-
"node_modules/@
|
|
823
|
-
"version": "4.
|
|
824
|
-
"integrity": "sha512-
|
|
825
|
-
"
|
|
824
|
+
"node_modules/@bundled-es-modules/deepmerge": {
|
|
825
|
+
"version": "4.3.1",
|
|
826
|
+
"integrity": "sha512-Rk453EklPUPC3NRWc3VUNI/SSUjdBaFoaQvFRmNBNtMHVtOFD5AntiWg5kEE1hqcPqedYFDzxE3ZcMYPcA195w==",
|
|
827
|
+
"license": "ISC",
|
|
828
|
+
"dependencies": {
|
|
829
|
+
"deepmerge": "^4.3.1"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
"node_modules/@bundled-es-modules/glob": {
|
|
833
|
+
"version": "10.4.2",
|
|
834
|
+
"integrity": "sha512-740y5ofkzydsFao5EXJrGilcIL6EFEw/cmPf2uhTw9J6G1YOhiIFjNFCHdpgEiiH5VlU3G0SARSjlFlimRRSMA==",
|
|
835
|
+
"hasInstallScript": true,
|
|
836
|
+
"license": "ISC",
|
|
837
|
+
"dependencies": {
|
|
838
|
+
"buffer": "^6.0.3",
|
|
839
|
+
"events": "^3.3.0",
|
|
840
|
+
"glob": "^10.4.2",
|
|
841
|
+
"patch-package": "^8.0.0",
|
|
842
|
+
"path": "^0.12.7",
|
|
843
|
+
"stream": "^0.0.3",
|
|
844
|
+
"string_decoder": "^1.3.0",
|
|
845
|
+
"url": "^0.11.3"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"node_modules/@bundled-es-modules/glob/node_modules/balanced-match": {
|
|
849
|
+
"version": "1.0.2",
|
|
850
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
851
|
+
"license": "MIT"
|
|
852
|
+
},
|
|
853
|
+
"node_modules/@bundled-es-modules/glob/node_modules/brace-expansion": {
|
|
854
|
+
"version": "2.0.2",
|
|
855
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
826
856
|
"license": "MIT",
|
|
857
|
+
"dependencies": {
|
|
858
|
+
"balanced-match": "^1.0.0"
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
"node_modules/@bundled-es-modules/glob/node_modules/glob": {
|
|
862
|
+
"version": "10.5.0",
|
|
863
|
+
"integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
|
|
864
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
865
|
+
"license": "ISC",
|
|
866
|
+
"dependencies": {
|
|
867
|
+
"foreground-child": "^3.1.0",
|
|
868
|
+
"jackspeak": "^3.1.2",
|
|
869
|
+
"minimatch": "^9.0.4",
|
|
870
|
+
"minipass": "^7.1.2",
|
|
871
|
+
"package-json-from-dist": "^1.0.0",
|
|
872
|
+
"path-scurry": "^1.11.1"
|
|
873
|
+
},
|
|
874
|
+
"bin": {
|
|
875
|
+
"glob": "dist/esm/bin.mjs"
|
|
876
|
+
},
|
|
877
|
+
"funding": {
|
|
878
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"node_modules/@bundled-es-modules/glob/node_modules/lru-cache": {
|
|
882
|
+
"version": "10.4.3",
|
|
883
|
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
|
884
|
+
"license": "ISC"
|
|
885
|
+
},
|
|
886
|
+
"node_modules/@bundled-es-modules/glob/node_modules/minimatch": {
|
|
887
|
+
"version": "9.0.9",
|
|
888
|
+
"integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
|
|
889
|
+
"license": "ISC",
|
|
890
|
+
"dependencies": {
|
|
891
|
+
"brace-expansion": "^2.0.2"
|
|
892
|
+
},
|
|
827
893
|
"engines": {
|
|
828
|
-
"node": "
|
|
894
|
+
"node": ">=16 || 14 >=14.17"
|
|
895
|
+
},
|
|
896
|
+
"funding": {
|
|
897
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
829
898
|
}
|
|
830
899
|
},
|
|
831
|
-
"node_modules/@
|
|
832
|
-
"version": "
|
|
833
|
-
"integrity": "sha512-
|
|
834
|
-
"
|
|
900
|
+
"node_modules/@bundled-es-modules/glob/node_modules/path-scurry": {
|
|
901
|
+
"version": "1.11.1",
|
|
902
|
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
|
903
|
+
"license": "BlueOak-1.0.0",
|
|
904
|
+
"dependencies": {
|
|
905
|
+
"lru-cache": "^10.2.0",
|
|
906
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
907
|
+
},
|
|
908
|
+
"engines": {
|
|
909
|
+
"node": ">=16 || 14 >=14.18"
|
|
910
|
+
},
|
|
911
|
+
"funding": {
|
|
912
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
"node_modules/@bundled-es-modules/memfs": {
|
|
916
|
+
"version": "4.17.0",
|
|
917
|
+
"integrity": "sha512-ykdrkEmQr9BV804yd37ikXfNnvxrwYfY9Z2/EtMHFEFadEjsQXJ1zL9bVZrKNLDtm91UdUOEHso6Aweg93K6xQ==",
|
|
918
|
+
"license": "Apache-2.0",
|
|
919
|
+
"dependencies": {
|
|
920
|
+
"assert": "^2.1.0",
|
|
921
|
+
"buffer": "^6.0.3",
|
|
922
|
+
"events": "^3.3.0",
|
|
923
|
+
"memfs": "^4.17.0",
|
|
924
|
+
"path": "^0.12.7",
|
|
925
|
+
"stream": "^0.0.3",
|
|
926
|
+
"util": "^0.12.5"
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
"node_modules/@isaacs/cliui": {
|
|
930
|
+
"version": "8.0.2",
|
|
931
|
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
932
|
+
"license": "ISC",
|
|
933
|
+
"dependencies": {
|
|
934
|
+
"string-width": "^5.1.2",
|
|
935
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
936
|
+
"strip-ansi": "^7.0.1",
|
|
937
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
938
|
+
"wrap-ansi": "^8.1.0",
|
|
939
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
940
|
+
},
|
|
941
|
+
"engines": {
|
|
942
|
+
"node": ">=12"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
|
|
946
|
+
"version": "6.2.2",
|
|
947
|
+
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
948
|
+
"license": "MIT",
|
|
949
|
+
"engines": {
|
|
950
|
+
"node": ">=12"
|
|
951
|
+
},
|
|
952
|
+
"funding": {
|
|
953
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
|
|
957
|
+
"version": "6.2.3",
|
|
958
|
+
"integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
|
|
959
|
+
"license": "MIT",
|
|
960
|
+
"engines": {
|
|
961
|
+
"node": ">=12"
|
|
962
|
+
},
|
|
963
|
+
"funding": {
|
|
964
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
965
|
+
}
|
|
966
|
+
},
|
|
967
|
+
"node_modules/@isaacs/cliui/node_modules/emoji-regex": {
|
|
968
|
+
"version": "9.2.2",
|
|
969
|
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
|
970
|
+
"license": "MIT"
|
|
971
|
+
},
|
|
972
|
+
"node_modules/@isaacs/cliui/node_modules/string-width": {
|
|
973
|
+
"version": "5.1.2",
|
|
974
|
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
835
975
|
"license": "MIT",
|
|
836
976
|
"dependencies": {
|
|
837
|
-
"
|
|
977
|
+
"eastasianwidth": "^0.2.0",
|
|
978
|
+
"emoji-regex": "^9.2.2",
|
|
979
|
+
"strip-ansi": "^7.0.1"
|
|
838
980
|
},
|
|
839
981
|
"engines": {
|
|
840
|
-
"node": "
|
|
982
|
+
"node": ">=12"
|
|
983
|
+
},
|
|
984
|
+
"funding": {
|
|
985
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
|
|
989
|
+
"version": "7.2.0",
|
|
990
|
+
"integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
|
|
991
|
+
"license": "MIT",
|
|
992
|
+
"dependencies": {
|
|
993
|
+
"ansi-regex": "^6.2.2"
|
|
994
|
+
},
|
|
995
|
+
"engines": {
|
|
996
|
+
"node": ">=12"
|
|
997
|
+
},
|
|
998
|
+
"funding": {
|
|
999
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
|
|
1003
|
+
"version": "8.1.0",
|
|
1004
|
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
1005
|
+
"license": "MIT",
|
|
1006
|
+
"dependencies": {
|
|
1007
|
+
"ansi-styles": "^6.1.0",
|
|
1008
|
+
"string-width": "^5.0.1",
|
|
1009
|
+
"strip-ansi": "^7.0.1"
|
|
1010
|
+
},
|
|
1011
|
+
"engines": {
|
|
1012
|
+
"node": ">=12"
|
|
1013
|
+
},
|
|
1014
|
+
"funding": {
|
|
1015
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
841
1016
|
}
|
|
842
1017
|
},
|
|
843
1018
|
"node_modules/@istanbuljs/load-nyc-config": {
|
|
@@ -1044,10 +1219,26 @@
|
|
|
1044
1219
|
}
|
|
1045
1220
|
}
|
|
1046
1221
|
},
|
|
1222
|
+
"node_modules/@jest/reporters/node_modules/balanced-match": {
|
|
1223
|
+
"version": "1.0.2",
|
|
1224
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
1225
|
+
"dev": true,
|
|
1226
|
+
"license": "MIT"
|
|
1227
|
+
},
|
|
1228
|
+
"node_modules/@jest/reporters/node_modules/brace-expansion": {
|
|
1229
|
+
"version": "1.1.12",
|
|
1230
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
1231
|
+
"dev": true,
|
|
1232
|
+
"license": "MIT",
|
|
1233
|
+
"dependencies": {
|
|
1234
|
+
"balanced-match": "^1.0.0",
|
|
1235
|
+
"concat-map": "0.0.1"
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1047
1238
|
"node_modules/@jest/reporters/node_modules/glob": {
|
|
1048
1239
|
"version": "7.2.3",
|
|
1049
1240
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
1050
|
-
"deprecated": "
|
|
1241
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
1051
1242
|
"dev": true,
|
|
1052
1243
|
"license": "ISC",
|
|
1053
1244
|
"dependencies": {
|
|
@@ -1066,8 +1257,8 @@
|
|
|
1066
1257
|
}
|
|
1067
1258
|
},
|
|
1068
1259
|
"node_modules/@jest/reporters/node_modules/minimatch": {
|
|
1069
|
-
"version": "3.1.
|
|
1070
|
-
"integrity": "sha512-
|
|
1260
|
+
"version": "3.1.5",
|
|
1261
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
1071
1262
|
"dev": true,
|
|
1072
1263
|
"license": "ISC",
|
|
1073
1264
|
"dependencies": {
|
|
@@ -1217,86 +1408,483 @@
|
|
|
1217
1408
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
1218
1409
|
}
|
|
1219
1410
|
},
|
|
1220
|
-
"node_modules/@
|
|
1221
|
-
"version": "
|
|
1222
|
-
"integrity": "sha512
|
|
1223
|
-
"
|
|
1224
|
-
"
|
|
1411
|
+
"node_modules/@jsonjoy.com/base64": {
|
|
1412
|
+
"version": "1.1.2",
|
|
1413
|
+
"integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==",
|
|
1414
|
+
"license": "Apache-2.0",
|
|
1415
|
+
"engines": {
|
|
1416
|
+
"node": ">=10.0"
|
|
1417
|
+
},
|
|
1418
|
+
"funding": {
|
|
1419
|
+
"type": "github",
|
|
1420
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1421
|
+
},
|
|
1422
|
+
"peerDependencies": {
|
|
1423
|
+
"tslib": "2"
|
|
1424
|
+
}
|
|
1225
1425
|
},
|
|
1226
|
-
"node_modules/@
|
|
1227
|
-
"version": "
|
|
1228
|
-
"integrity": "sha512-
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
|
|
1232
|
-
|
|
1426
|
+
"node_modules/@jsonjoy.com/buffers": {
|
|
1427
|
+
"version": "17.67.0",
|
|
1428
|
+
"integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==",
|
|
1429
|
+
"license": "Apache-2.0",
|
|
1430
|
+
"engines": {
|
|
1431
|
+
"node": ">=10.0"
|
|
1432
|
+
},
|
|
1433
|
+
"funding": {
|
|
1434
|
+
"type": "github",
|
|
1435
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1436
|
+
},
|
|
1437
|
+
"peerDependencies": {
|
|
1438
|
+
"tslib": "2"
|
|
1233
1439
|
}
|
|
1234
1440
|
},
|
|
1235
|
-
"node_modules/@
|
|
1236
|
-
"version": "
|
|
1237
|
-
"integrity": "sha512-
|
|
1238
|
-
"
|
|
1239
|
-
"
|
|
1240
|
-
|
|
1241
|
-
|
|
1441
|
+
"node_modules/@jsonjoy.com/codegen": {
|
|
1442
|
+
"version": "1.0.0",
|
|
1443
|
+
"integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==",
|
|
1444
|
+
"license": "Apache-2.0",
|
|
1445
|
+
"engines": {
|
|
1446
|
+
"node": ">=10.0"
|
|
1447
|
+
},
|
|
1448
|
+
"funding": {
|
|
1449
|
+
"type": "github",
|
|
1450
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1451
|
+
},
|
|
1452
|
+
"peerDependencies": {
|
|
1453
|
+
"tslib": "2"
|
|
1242
1454
|
}
|
|
1243
1455
|
},
|
|
1244
|
-
"node_modules/@
|
|
1245
|
-
"version": "
|
|
1246
|
-
"integrity": "sha512-
|
|
1247
|
-
"
|
|
1248
|
-
"license": "MIT",
|
|
1456
|
+
"node_modules/@jsonjoy.com/fs-core": {
|
|
1457
|
+
"version": "4.56.10",
|
|
1458
|
+
"integrity": "sha512-PyAEA/3cnHhsGcdY+AmIU+ZPqTuZkDhCXQ2wkXypdLitSpd6d5Ivxhnq4wa2ETRWFVJGabYynBWxIijOswSmOw==",
|
|
1459
|
+
"license": "Apache-2.0",
|
|
1249
1460
|
"dependencies": {
|
|
1250
|
-
"@
|
|
1461
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.10",
|
|
1462
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10",
|
|
1463
|
+
"thingies": "^2.5.0"
|
|
1464
|
+
},
|
|
1465
|
+
"engines": {
|
|
1466
|
+
"node": ">=10.0"
|
|
1467
|
+
},
|
|
1468
|
+
"funding": {
|
|
1469
|
+
"type": "github",
|
|
1470
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1471
|
+
},
|
|
1472
|
+
"peerDependencies": {
|
|
1473
|
+
"tslib": "2"
|
|
1251
1474
|
}
|
|
1252
1475
|
},
|
|
1253
|
-
"node_modules/@
|
|
1254
|
-
"version": "
|
|
1255
|
-
"integrity": "sha512
|
|
1256
|
-
"
|
|
1257
|
-
"license": "MIT",
|
|
1476
|
+
"node_modules/@jsonjoy.com/fs-fsa": {
|
|
1477
|
+
"version": "4.56.10",
|
|
1478
|
+
"integrity": "sha512-/FVK63ysNzTPOnCCcPoPHt77TOmachdMS422txM4KhxddLdbW1fIbFMYH0AM0ow/YchCyS5gqEjKLNyv71j/5Q==",
|
|
1479
|
+
"license": "Apache-2.0",
|
|
1258
1480
|
"dependencies": {
|
|
1259
|
-
"@
|
|
1260
|
-
"@
|
|
1261
|
-
"@
|
|
1262
|
-
"
|
|
1263
|
-
|
|
1481
|
+
"@jsonjoy.com/fs-core": "4.56.10",
|
|
1482
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.10",
|
|
1483
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10",
|
|
1484
|
+
"thingies": "^2.5.0"
|
|
1485
|
+
},
|
|
1486
|
+
"engines": {
|
|
1487
|
+
"node": ">=10.0"
|
|
1488
|
+
},
|
|
1489
|
+
"funding": {
|
|
1490
|
+
"type": "github",
|
|
1491
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1492
|
+
},
|
|
1493
|
+
"peerDependencies": {
|
|
1494
|
+
"tslib": "2"
|
|
1264
1495
|
}
|
|
1265
1496
|
},
|
|
1266
|
-
"node_modules/@
|
|
1267
|
-
"version": "
|
|
1268
|
-
"integrity": "sha512-
|
|
1269
|
-
"
|
|
1270
|
-
"license": "MIT",
|
|
1497
|
+
"node_modules/@jsonjoy.com/fs-node": {
|
|
1498
|
+
"version": "4.56.10",
|
|
1499
|
+
"integrity": "sha512-7R4Gv3tkUdW3dXfXiOkqxkElxKNVdd8BDOWC0/dbERd0pXpPY+s2s1Mino+aTvkGrFPiY+mmVxA7zhskm4Ue4Q==",
|
|
1500
|
+
"license": "Apache-2.0",
|
|
1271
1501
|
"dependencies": {
|
|
1272
|
-
"@
|
|
1502
|
+
"@jsonjoy.com/fs-core": "4.56.10",
|
|
1503
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.10",
|
|
1504
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10",
|
|
1505
|
+
"@jsonjoy.com/fs-print": "4.56.10",
|
|
1506
|
+
"@jsonjoy.com/fs-snapshot": "4.56.10",
|
|
1507
|
+
"glob-to-regex.js": "^1.0.0",
|
|
1508
|
+
"thingies": "^2.5.0"
|
|
1273
1509
|
},
|
|
1274
|
-
"
|
|
1275
|
-
"
|
|
1510
|
+
"engines": {
|
|
1511
|
+
"node": ">=10.0"
|
|
1512
|
+
},
|
|
1513
|
+
"funding": {
|
|
1514
|
+
"type": "github",
|
|
1515
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1276
1516
|
},
|
|
1517
|
+
"peerDependencies": {
|
|
1518
|
+
"tslib": "2"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"node_modules/@jsonjoy.com/fs-node-builtins": {
|
|
1522
|
+
"version": "4.56.10",
|
|
1523
|
+
"integrity": "sha512-uUnKz8R0YJyKq5jXpZtkGV9U0pJDt8hmYcLRrPjROheIfjMXsz82kXMgAA/qNg0wrZ1Kv+hrg7azqEZx6XZCVw==",
|
|
1524
|
+
"license": "Apache-2.0",
|
|
1277
1525
|
"engines": {
|
|
1278
|
-
"node": ">=
|
|
1526
|
+
"node": ">=10.0"
|
|
1527
|
+
},
|
|
1528
|
+
"funding": {
|
|
1529
|
+
"type": "github",
|
|
1530
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1531
|
+
},
|
|
1532
|
+
"peerDependencies": {
|
|
1533
|
+
"tslib": "2"
|
|
1279
1534
|
}
|
|
1280
1535
|
},
|
|
1281
|
-
"node_modules/@
|
|
1282
|
-
"version": "
|
|
1283
|
-
"integrity": "sha512-
|
|
1284
|
-
"
|
|
1285
|
-
"license": "MIT",
|
|
1536
|
+
"node_modules/@jsonjoy.com/fs-node-to-fsa": {
|
|
1537
|
+
"version": "4.56.10",
|
|
1538
|
+
"integrity": "sha512-oH+O6Y4lhn9NyG6aEoFwIBNKZeYy66toP5LJcDOMBgL99BKQMUf/zWJspdRhMdn/3hbzQsZ8EHHsuekbFLGUWw==",
|
|
1539
|
+
"license": "Apache-2.0",
|
|
1286
1540
|
"dependencies": {
|
|
1287
|
-
"@
|
|
1541
|
+
"@jsonjoy.com/fs-fsa": "4.56.10",
|
|
1542
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.10",
|
|
1543
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10"
|
|
1544
|
+
},
|
|
1545
|
+
"engines": {
|
|
1546
|
+
"node": ">=10.0"
|
|
1547
|
+
},
|
|
1548
|
+
"funding": {
|
|
1549
|
+
"type": "github",
|
|
1550
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1551
|
+
},
|
|
1552
|
+
"peerDependencies": {
|
|
1553
|
+
"tslib": "2"
|
|
1288
1554
|
}
|
|
1289
1555
|
},
|
|
1290
|
-
"node_modules/@
|
|
1291
|
-
"version": "
|
|
1292
|
-
"integrity": "sha512-
|
|
1293
|
-
"
|
|
1294
|
-
"dev": true,
|
|
1556
|
+
"node_modules/@jsonjoy.com/fs-node-utils": {
|
|
1557
|
+
"version": "4.56.10",
|
|
1558
|
+
"integrity": "sha512-8EuPBgVI2aDPwFdaNQeNpHsyqPi3rr+85tMNG/lHvQLiVjzoZsvxA//Xd8aB567LUhy4QS03ptT+unkD/DIsNg==",
|
|
1559
|
+
"license": "Apache-2.0",
|
|
1295
1560
|
"dependencies": {
|
|
1296
|
-
"@
|
|
1561
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.10"
|
|
1562
|
+
},
|
|
1563
|
+
"engines": {
|
|
1564
|
+
"node": ">=10.0"
|
|
1565
|
+
},
|
|
1566
|
+
"funding": {
|
|
1567
|
+
"type": "github",
|
|
1568
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1569
|
+
},
|
|
1570
|
+
"peerDependencies": {
|
|
1571
|
+
"tslib": "2"
|
|
1297
1572
|
}
|
|
1298
1573
|
},
|
|
1299
|
-
"node_modules/@
|
|
1574
|
+
"node_modules/@jsonjoy.com/fs-print": {
|
|
1575
|
+
"version": "4.56.10",
|
|
1576
|
+
"integrity": "sha512-JW4fp5mAYepzFsSGrQ48ep8FXxpg4niFWHdF78wDrFGof7F3tKDJln72QFDEn/27M1yHd4v7sKHHVPh78aWcEw==",
|
|
1577
|
+
"license": "Apache-2.0",
|
|
1578
|
+
"dependencies": {
|
|
1579
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10",
|
|
1580
|
+
"tree-dump": "^1.1.0"
|
|
1581
|
+
},
|
|
1582
|
+
"engines": {
|
|
1583
|
+
"node": ">=10.0"
|
|
1584
|
+
},
|
|
1585
|
+
"funding": {
|
|
1586
|
+
"type": "github",
|
|
1587
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1588
|
+
},
|
|
1589
|
+
"peerDependencies": {
|
|
1590
|
+
"tslib": "2"
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
"node_modules/@jsonjoy.com/fs-snapshot": {
|
|
1594
|
+
"version": "4.56.10",
|
|
1595
|
+
"integrity": "sha512-DkR6l5fj7+qj0+fVKm/OOXMGfDFCGXLfyHkORH3DF8hxkpDgIHbhf/DwncBMs2igu/ST7OEkexn1gIqoU6Y+9g==",
|
|
1596
|
+
"license": "Apache-2.0",
|
|
1597
|
+
"dependencies": {
|
|
1598
|
+
"@jsonjoy.com/buffers": "^17.65.0",
|
|
1599
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10",
|
|
1600
|
+
"@jsonjoy.com/json-pack": "^17.65.0",
|
|
1601
|
+
"@jsonjoy.com/util": "^17.65.0"
|
|
1602
|
+
},
|
|
1603
|
+
"engines": {
|
|
1604
|
+
"node": ">=10.0"
|
|
1605
|
+
},
|
|
1606
|
+
"funding": {
|
|
1607
|
+
"type": "github",
|
|
1608
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1609
|
+
},
|
|
1610
|
+
"peerDependencies": {
|
|
1611
|
+
"tslib": "2"
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": {
|
|
1615
|
+
"version": "17.67.0",
|
|
1616
|
+
"integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==",
|
|
1617
|
+
"license": "Apache-2.0",
|
|
1618
|
+
"engines": {
|
|
1619
|
+
"node": ">=10.0"
|
|
1620
|
+
},
|
|
1621
|
+
"funding": {
|
|
1622
|
+
"type": "github",
|
|
1623
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1624
|
+
},
|
|
1625
|
+
"peerDependencies": {
|
|
1626
|
+
"tslib": "2"
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1629
|
+
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": {
|
|
1630
|
+
"version": "17.67.0",
|
|
1631
|
+
"integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==",
|
|
1632
|
+
"license": "Apache-2.0",
|
|
1633
|
+
"engines": {
|
|
1634
|
+
"node": ">=10.0"
|
|
1635
|
+
},
|
|
1636
|
+
"funding": {
|
|
1637
|
+
"type": "github",
|
|
1638
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1639
|
+
},
|
|
1640
|
+
"peerDependencies": {
|
|
1641
|
+
"tslib": "2"
|
|
1642
|
+
}
|
|
1643
|
+
},
|
|
1644
|
+
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": {
|
|
1645
|
+
"version": "17.67.0",
|
|
1646
|
+
"integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==",
|
|
1647
|
+
"license": "Apache-2.0",
|
|
1648
|
+
"dependencies": {
|
|
1649
|
+
"@jsonjoy.com/base64": "17.67.0",
|
|
1650
|
+
"@jsonjoy.com/buffers": "17.67.0",
|
|
1651
|
+
"@jsonjoy.com/codegen": "17.67.0",
|
|
1652
|
+
"@jsonjoy.com/json-pointer": "17.67.0",
|
|
1653
|
+
"@jsonjoy.com/util": "17.67.0",
|
|
1654
|
+
"hyperdyperid": "^1.2.0",
|
|
1655
|
+
"thingies": "^2.5.0",
|
|
1656
|
+
"tree-dump": "^1.1.0"
|
|
1657
|
+
},
|
|
1658
|
+
"engines": {
|
|
1659
|
+
"node": ">=10.0"
|
|
1660
|
+
},
|
|
1661
|
+
"funding": {
|
|
1662
|
+
"type": "github",
|
|
1663
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1664
|
+
},
|
|
1665
|
+
"peerDependencies": {
|
|
1666
|
+
"tslib": "2"
|
|
1667
|
+
}
|
|
1668
|
+
},
|
|
1669
|
+
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": {
|
|
1670
|
+
"version": "17.67.0",
|
|
1671
|
+
"integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==",
|
|
1672
|
+
"license": "Apache-2.0",
|
|
1673
|
+
"dependencies": {
|
|
1674
|
+
"@jsonjoy.com/util": "17.67.0"
|
|
1675
|
+
},
|
|
1676
|
+
"engines": {
|
|
1677
|
+
"node": ">=10.0"
|
|
1678
|
+
},
|
|
1679
|
+
"funding": {
|
|
1680
|
+
"type": "github",
|
|
1681
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1682
|
+
},
|
|
1683
|
+
"peerDependencies": {
|
|
1684
|
+
"tslib": "2"
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1687
|
+
"node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": {
|
|
1688
|
+
"version": "17.67.0",
|
|
1689
|
+
"integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==",
|
|
1690
|
+
"license": "Apache-2.0",
|
|
1691
|
+
"dependencies": {
|
|
1692
|
+
"@jsonjoy.com/buffers": "17.67.0",
|
|
1693
|
+
"@jsonjoy.com/codegen": "17.67.0"
|
|
1694
|
+
},
|
|
1695
|
+
"engines": {
|
|
1696
|
+
"node": ">=10.0"
|
|
1697
|
+
},
|
|
1698
|
+
"funding": {
|
|
1699
|
+
"type": "github",
|
|
1700
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1701
|
+
},
|
|
1702
|
+
"peerDependencies": {
|
|
1703
|
+
"tslib": "2"
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
"node_modules/@jsonjoy.com/json-pack": {
|
|
1707
|
+
"version": "1.21.0",
|
|
1708
|
+
"integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==",
|
|
1709
|
+
"license": "Apache-2.0",
|
|
1710
|
+
"dependencies": {
|
|
1711
|
+
"@jsonjoy.com/base64": "^1.1.2",
|
|
1712
|
+
"@jsonjoy.com/buffers": "^1.2.0",
|
|
1713
|
+
"@jsonjoy.com/codegen": "^1.0.0",
|
|
1714
|
+
"@jsonjoy.com/json-pointer": "^1.0.2",
|
|
1715
|
+
"@jsonjoy.com/util": "^1.9.0",
|
|
1716
|
+
"hyperdyperid": "^1.2.0",
|
|
1717
|
+
"thingies": "^2.5.0",
|
|
1718
|
+
"tree-dump": "^1.1.0"
|
|
1719
|
+
},
|
|
1720
|
+
"engines": {
|
|
1721
|
+
"node": ">=10.0"
|
|
1722
|
+
},
|
|
1723
|
+
"funding": {
|
|
1724
|
+
"type": "github",
|
|
1725
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1726
|
+
},
|
|
1727
|
+
"peerDependencies": {
|
|
1728
|
+
"tslib": "2"
|
|
1729
|
+
}
|
|
1730
|
+
},
|
|
1731
|
+
"node_modules/@jsonjoy.com/json-pack/node_modules/@jsonjoy.com/buffers": {
|
|
1732
|
+
"version": "1.2.1",
|
|
1733
|
+
"integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==",
|
|
1734
|
+
"license": "Apache-2.0",
|
|
1735
|
+
"engines": {
|
|
1736
|
+
"node": ">=10.0"
|
|
1737
|
+
},
|
|
1738
|
+
"funding": {
|
|
1739
|
+
"type": "github",
|
|
1740
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1741
|
+
},
|
|
1742
|
+
"peerDependencies": {
|
|
1743
|
+
"tslib": "2"
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
"node_modules/@jsonjoy.com/json-pointer": {
|
|
1747
|
+
"version": "1.0.2",
|
|
1748
|
+
"integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==",
|
|
1749
|
+
"license": "Apache-2.0",
|
|
1750
|
+
"dependencies": {
|
|
1751
|
+
"@jsonjoy.com/codegen": "^1.0.0",
|
|
1752
|
+
"@jsonjoy.com/util": "^1.9.0"
|
|
1753
|
+
},
|
|
1754
|
+
"engines": {
|
|
1755
|
+
"node": ">=10.0"
|
|
1756
|
+
},
|
|
1757
|
+
"funding": {
|
|
1758
|
+
"type": "github",
|
|
1759
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1760
|
+
},
|
|
1761
|
+
"peerDependencies": {
|
|
1762
|
+
"tslib": "2"
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
"node_modules/@jsonjoy.com/util": {
|
|
1766
|
+
"version": "1.9.0",
|
|
1767
|
+
"integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==",
|
|
1768
|
+
"license": "Apache-2.0",
|
|
1769
|
+
"dependencies": {
|
|
1770
|
+
"@jsonjoy.com/buffers": "^1.0.0",
|
|
1771
|
+
"@jsonjoy.com/codegen": "^1.0.0"
|
|
1772
|
+
},
|
|
1773
|
+
"engines": {
|
|
1774
|
+
"node": ">=10.0"
|
|
1775
|
+
},
|
|
1776
|
+
"funding": {
|
|
1777
|
+
"type": "github",
|
|
1778
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1779
|
+
},
|
|
1780
|
+
"peerDependencies": {
|
|
1781
|
+
"tslib": "2"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
"node_modules/@jsonjoy.com/util/node_modules/@jsonjoy.com/buffers": {
|
|
1785
|
+
"version": "1.2.1",
|
|
1786
|
+
"integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==",
|
|
1787
|
+
"license": "Apache-2.0",
|
|
1788
|
+
"engines": {
|
|
1789
|
+
"node": ">=10.0"
|
|
1790
|
+
},
|
|
1791
|
+
"funding": {
|
|
1792
|
+
"type": "github",
|
|
1793
|
+
"url": "https://github.com/sponsors/streamich"
|
|
1794
|
+
},
|
|
1795
|
+
"peerDependencies": {
|
|
1796
|
+
"tslib": "2"
|
|
1797
|
+
}
|
|
1798
|
+
},
|
|
1799
|
+
"node_modules/@pkgjs/parseargs": {
|
|
1800
|
+
"version": "0.11.0",
|
|
1801
|
+
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
1802
|
+
"license": "MIT",
|
|
1803
|
+
"optional": true,
|
|
1804
|
+
"engines": {
|
|
1805
|
+
"node": ">=14"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"node_modules/@sinclair/typebox": {
|
|
1809
|
+
"version": "0.27.10",
|
|
1810
|
+
"integrity": "sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==",
|
|
1811
|
+
"dev": true,
|
|
1812
|
+
"license": "MIT"
|
|
1813
|
+
},
|
|
1814
|
+
"node_modules/@sinonjs/commons": {
|
|
1815
|
+
"version": "3.0.1",
|
|
1816
|
+
"integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
|
|
1817
|
+
"dev": true,
|
|
1818
|
+
"license": "BSD-3-Clause",
|
|
1819
|
+
"dependencies": {
|
|
1820
|
+
"type-detect": "4.0.8"
|
|
1821
|
+
}
|
|
1822
|
+
},
|
|
1823
|
+
"node_modules/@sinonjs/fake-timers": {
|
|
1824
|
+
"version": "10.3.0",
|
|
1825
|
+
"integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
|
|
1826
|
+
"dev": true,
|
|
1827
|
+
"license": "BSD-3-Clause",
|
|
1828
|
+
"dependencies": {
|
|
1829
|
+
"@sinonjs/commons": "^3.0.0"
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
"node_modules/@types/adm-zip": {
|
|
1833
|
+
"version": "0.5.0",
|
|
1834
|
+
"integrity": "sha512-FCJBJq9ODsQZUNURo5ILAQueuA8WJhRvuihS3ke2iI25mJlfV2LK8jG2Qj2z2AWg8U0FtWWqBHVRetceLskSaw==",
|
|
1835
|
+
"dev": true,
|
|
1836
|
+
"license": "MIT",
|
|
1837
|
+
"dependencies": {
|
|
1838
|
+
"@types/node": "*"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
"node_modules/@types/babel__core": {
|
|
1842
|
+
"version": "7.20.5",
|
|
1843
|
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
|
1844
|
+
"dev": true,
|
|
1845
|
+
"license": "MIT",
|
|
1846
|
+
"dependencies": {
|
|
1847
|
+
"@babel/parser": "^7.20.7",
|
|
1848
|
+
"@babel/types": "^7.20.7",
|
|
1849
|
+
"@types/babel__generator": "*",
|
|
1850
|
+
"@types/babel__template": "*",
|
|
1851
|
+
"@types/babel__traverse": "*"
|
|
1852
|
+
}
|
|
1853
|
+
},
|
|
1854
|
+
"node_modules/@types/babel__core/node_modules/@babel/parser": {
|
|
1855
|
+
"version": "7.29.0",
|
|
1856
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
1857
|
+
"dev": true,
|
|
1858
|
+
"license": "MIT",
|
|
1859
|
+
"dependencies": {
|
|
1860
|
+
"@babel/types": "^7.29.0"
|
|
1861
|
+
},
|
|
1862
|
+
"bin": {
|
|
1863
|
+
"parser": "bin/babel-parser.js"
|
|
1864
|
+
},
|
|
1865
|
+
"engines": {
|
|
1866
|
+
"node": ">=6.0.0"
|
|
1867
|
+
}
|
|
1868
|
+
},
|
|
1869
|
+
"node_modules/@types/babel__generator": {
|
|
1870
|
+
"version": "7.6.4",
|
|
1871
|
+
"integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
|
|
1872
|
+
"dev": true,
|
|
1873
|
+
"license": "MIT",
|
|
1874
|
+
"dependencies": {
|
|
1875
|
+
"@babel/types": "^7.0.0"
|
|
1876
|
+
}
|
|
1877
|
+
},
|
|
1878
|
+
"node_modules/@types/babel__parser": {
|
|
1879
|
+
"version": "7.1.1",
|
|
1880
|
+
"integrity": "sha512-baSzIb0QQOUQSglfR9gwXVSbHH91YvY00C9Zjq6E7sPdnp8oyPyUsonIj3SF4wUl0s96vR/kyWeVv30gmM/xZw==",
|
|
1881
|
+
"deprecated": "Deprecated",
|
|
1882
|
+
"dev": true,
|
|
1883
|
+
"dependencies": {
|
|
1884
|
+
"@babel/parser": "*"
|
|
1885
|
+
}
|
|
1886
|
+
},
|
|
1887
|
+
"node_modules/@types/babel__template": {
|
|
1300
1888
|
"version": "7.4.4",
|
|
1301
1889
|
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
|
1302
1890
|
"dev": true,
|
|
@@ -1500,14 +2088,34 @@
|
|
|
1500
2088
|
"@types/node": "*"
|
|
1501
2089
|
}
|
|
1502
2090
|
},
|
|
2091
|
+
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
2092
|
+
"version": "11.14.2-1.6423",
|
|
2093
|
+
"integrity": "sha512-/cKix+/GvcPwaNqkNHjBJ47XoUFALbbLnFgZgJxfma2Btg96jScwZ2Qb0O1UL05g1m0gLz+7j7Imagho+caYFw==",
|
|
2094
|
+
"license": "ISC"
|
|
2095
|
+
},
|
|
1503
2096
|
"node_modules/@wavemaker/foundation-css": {
|
|
1504
|
-
"version": "11.14.1
|
|
1505
|
-
"integrity": "sha512-
|
|
2097
|
+
"version": "11.14.2-1.6423",
|
|
2098
|
+
"integrity": "sha512-X130sxidfBv2LSumNuCXJWMg8h9l0Qnfs73C/3MOT0iqGmxMcNTwO7jPGqvr8su02Elte66sBSwXkYf7yI6snA==",
|
|
1506
2099
|
"license": "ISC",
|
|
1507
2100
|
"dependencies": {
|
|
1508
2101
|
"chroma-js": "^3.1.2"
|
|
1509
2102
|
}
|
|
1510
2103
|
},
|
|
2104
|
+
"node_modules/@yarnpkg/lockfile": {
|
|
2105
|
+
"version": "1.1.0",
|
|
2106
|
+
"integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==",
|
|
2107
|
+
"license": "BSD-2-Clause"
|
|
2108
|
+
},
|
|
2109
|
+
"node_modules/@zip.js/zip.js": {
|
|
2110
|
+
"version": "2.8.22",
|
|
2111
|
+
"integrity": "sha512-0KlzbVR6r8irIX2o3zvUlosBDef62VDl47oUfa1U/qgEs67h4/eGBrX/6HWa1RQbt+J6sAeVmtyFKbTHNdF8qQ==",
|
|
2112
|
+
"license": "BSD-3-Clause",
|
|
2113
|
+
"engines": {
|
|
2114
|
+
"bun": ">=0.7.0",
|
|
2115
|
+
"deno": ">=1.0.0",
|
|
2116
|
+
"node": ">=18.0.0"
|
|
2117
|
+
}
|
|
2118
|
+
},
|
|
1511
2119
|
"node_modules/adm-zip": {
|
|
1512
2120
|
"version": "0.5.9",
|
|
1513
2121
|
"integrity": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==",
|
|
@@ -1583,6 +2191,18 @@
|
|
|
1583
2191
|
"sprintf-js": "~1.0.2"
|
|
1584
2192
|
}
|
|
1585
2193
|
},
|
|
2194
|
+
"node_modules/assert": {
|
|
2195
|
+
"version": "2.1.0",
|
|
2196
|
+
"integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==",
|
|
2197
|
+
"license": "MIT",
|
|
2198
|
+
"dependencies": {
|
|
2199
|
+
"call-bind": "^1.0.2",
|
|
2200
|
+
"is-nan": "^1.3.2",
|
|
2201
|
+
"object-is": "^1.1.5",
|
|
2202
|
+
"object.assign": "^4.1.4",
|
|
2203
|
+
"util": "^0.12.5"
|
|
2204
|
+
}
|
|
2205
|
+
},
|
|
1586
2206
|
"node_modules/asynckit": {
|
|
1587
2207
|
"version": "0.4.0",
|
|
1588
2208
|
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
@@ -1607,6 +2227,20 @@
|
|
|
1607
2227
|
"node": ">= 4.5.0"
|
|
1608
2228
|
}
|
|
1609
2229
|
},
|
|
2230
|
+
"node_modules/available-typed-arrays": {
|
|
2231
|
+
"version": "1.0.7",
|
|
2232
|
+
"integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
|
|
2233
|
+
"license": "MIT",
|
|
2234
|
+
"dependencies": {
|
|
2235
|
+
"possible-typed-array-names": "^1.0.0"
|
|
2236
|
+
},
|
|
2237
|
+
"engines": {
|
|
2238
|
+
"node": ">= 0.4"
|
|
2239
|
+
},
|
|
2240
|
+
"funding": {
|
|
2241
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2242
|
+
}
|
|
2243
|
+
},
|
|
1610
2244
|
"node_modules/axios": {
|
|
1611
2245
|
"version": "1.8.3",
|
|
1612
2246
|
"integrity": "sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==",
|
|
@@ -1655,12 +2289,12 @@
|
|
|
1655
2289
|
}
|
|
1656
2290
|
},
|
|
1657
2291
|
"node_modules/babel-plugin-istanbul/node_modules/@babel/parser": {
|
|
1658
|
-
"version": "7.
|
|
1659
|
-
"integrity": "sha512-
|
|
2292
|
+
"version": "7.29.0",
|
|
2293
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
1660
2294
|
"dev": true,
|
|
1661
2295
|
"license": "MIT",
|
|
1662
2296
|
"dependencies": {
|
|
1663
|
-
"@babel/types": "^7.
|
|
2297
|
+
"@babel/types": "^7.29.0"
|
|
1664
2298
|
},
|
|
1665
2299
|
"bin": {
|
|
1666
2300
|
"parser": "bin/babel-parser.js"
|
|
@@ -1752,9 +2386,13 @@
|
|
|
1752
2386
|
}
|
|
1753
2387
|
},
|
|
1754
2388
|
"node_modules/balanced-match": {
|
|
1755
|
-
"version": "
|
|
1756
|
-
"integrity": "sha512-
|
|
1757
|
-
"
|
|
2389
|
+
"version": "4.0.4",
|
|
2390
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
2391
|
+
"dev": true,
|
|
2392
|
+
"license": "MIT",
|
|
2393
|
+
"engines": {
|
|
2394
|
+
"node": "18 || 20 || >=22"
|
|
2395
|
+
}
|
|
1758
2396
|
},
|
|
1759
2397
|
"node_modules/base64-js": {
|
|
1760
2398
|
"version": "1.5.1",
|
|
@@ -1776,12 +2414,15 @@
|
|
|
1776
2414
|
"license": "MIT"
|
|
1777
2415
|
},
|
|
1778
2416
|
"node_modules/baseline-browser-mapping": {
|
|
1779
|
-
"version": "2.
|
|
1780
|
-
"integrity": "sha512-
|
|
2417
|
+
"version": "2.10.0",
|
|
2418
|
+
"integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
|
|
1781
2419
|
"dev": true,
|
|
1782
2420
|
"license": "Apache-2.0",
|
|
1783
2421
|
"bin": {
|
|
1784
|
-
"baseline-browser-mapping": "dist/cli.
|
|
2422
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
2423
|
+
},
|
|
2424
|
+
"engines": {
|
|
2425
|
+
"node": ">=6.0.0"
|
|
1785
2426
|
}
|
|
1786
2427
|
},
|
|
1787
2428
|
"node_modules/bl": {
|
|
@@ -1794,24 +2435,49 @@
|
|
|
1794
2435
|
"readable-stream": "^3.4.0"
|
|
1795
2436
|
}
|
|
1796
2437
|
},
|
|
2438
|
+
"node_modules/bl/node_modules/buffer": {
|
|
2439
|
+
"version": "5.7.1",
|
|
2440
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
2441
|
+
"funding": [
|
|
2442
|
+
{
|
|
2443
|
+
"type": "github",
|
|
2444
|
+
"url": "https://github.com/sponsors/feross"
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"type": "patreon",
|
|
2448
|
+
"url": "https://www.patreon.com/feross"
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"type": "consulting",
|
|
2452
|
+
"url": "https://feross.org/support"
|
|
2453
|
+
}
|
|
2454
|
+
],
|
|
2455
|
+
"license": "MIT",
|
|
2456
|
+
"dependencies": {
|
|
2457
|
+
"base64-js": "^1.3.1",
|
|
2458
|
+
"ieee754": "^1.1.13"
|
|
2459
|
+
}
|
|
2460
|
+
},
|
|
1797
2461
|
"node_modules/boolbase": {
|
|
1798
2462
|
"version": "1.0.0",
|
|
1799
2463
|
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
|
|
1800
2464
|
"license": "ISC"
|
|
1801
2465
|
},
|
|
1802
2466
|
"node_modules/brace-expansion": {
|
|
1803
|
-
"version": "
|
|
1804
|
-
"integrity": "sha512-
|
|
2467
|
+
"version": "5.0.4",
|
|
2468
|
+
"integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
|
|
2469
|
+
"dev": true,
|
|
1805
2470
|
"license": "MIT",
|
|
1806
2471
|
"dependencies": {
|
|
1807
|
-
"balanced-match": "^
|
|
1808
|
-
|
|
2472
|
+
"balanced-match": "^4.0.2"
|
|
2473
|
+
},
|
|
2474
|
+
"engines": {
|
|
2475
|
+
"node": "18 || 20 || >=22"
|
|
1809
2476
|
}
|
|
1810
2477
|
},
|
|
1811
2478
|
"node_modules/braces": {
|
|
1812
2479
|
"version": "3.0.3",
|
|
1813
2480
|
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
1814
|
-
"dev": true,
|
|
1815
2481
|
"license": "MIT",
|
|
1816
2482
|
"dependencies": {
|
|
1817
2483
|
"fill-range": "^7.1.1"
|
|
@@ -1821,8 +2487,8 @@
|
|
|
1821
2487
|
}
|
|
1822
2488
|
},
|
|
1823
2489
|
"node_modules/browserslist": {
|
|
1824
|
-
"version": "4.28.
|
|
1825
|
-
"integrity": "sha512-
|
|
2490
|
+
"version": "4.28.1",
|
|
2491
|
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
|
1826
2492
|
"dev": true,
|
|
1827
2493
|
"funding": [
|
|
1828
2494
|
{
|
|
@@ -1840,11 +2506,11 @@
|
|
|
1840
2506
|
],
|
|
1841
2507
|
"license": "MIT",
|
|
1842
2508
|
"dependencies": {
|
|
1843
|
-
"baseline-browser-mapping": "^2.
|
|
1844
|
-
"caniuse-lite": "^1.0.
|
|
1845
|
-
"electron-to-chromium": "^1.5.
|
|
2509
|
+
"baseline-browser-mapping": "^2.9.0",
|
|
2510
|
+
"caniuse-lite": "^1.0.30001759",
|
|
2511
|
+
"electron-to-chromium": "^1.5.263",
|
|
1846
2512
|
"node-releases": "^2.0.27",
|
|
1847
|
-
"update-browserslist-db": "^1.
|
|
2513
|
+
"update-browserslist-db": "^1.2.0"
|
|
1848
2514
|
},
|
|
1849
2515
|
"bin": {
|
|
1850
2516
|
"browserslist": "cli.js"
|
|
@@ -1875,8 +2541,8 @@
|
|
|
1875
2541
|
}
|
|
1876
2542
|
},
|
|
1877
2543
|
"node_modules/buffer": {
|
|
1878
|
-
"version": "
|
|
1879
|
-
"integrity": "sha512-
|
|
2544
|
+
"version": "6.0.3",
|
|
2545
|
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
|
1880
2546
|
"funding": [
|
|
1881
2547
|
{
|
|
1882
2548
|
"type": "github",
|
|
@@ -1894,7 +2560,7 @@
|
|
|
1894
2560
|
"license": "MIT",
|
|
1895
2561
|
"dependencies": {
|
|
1896
2562
|
"base64-js": "^1.3.1",
|
|
1897
|
-
"ieee754": "^1.1
|
|
2563
|
+
"ieee754": "^1.2.1"
|
|
1898
2564
|
}
|
|
1899
2565
|
},
|
|
1900
2566
|
"node_modules/buffer-crc32": {
|
|
@@ -1911,6 +2577,23 @@
|
|
|
1911
2577
|
"dev": true,
|
|
1912
2578
|
"license": "MIT"
|
|
1913
2579
|
},
|
|
2580
|
+
"node_modules/call-bind": {
|
|
2581
|
+
"version": "1.0.8",
|
|
2582
|
+
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
|
|
2583
|
+
"license": "MIT",
|
|
2584
|
+
"dependencies": {
|
|
2585
|
+
"call-bind-apply-helpers": "^1.0.0",
|
|
2586
|
+
"es-define-property": "^1.0.0",
|
|
2587
|
+
"get-intrinsic": "^1.2.4",
|
|
2588
|
+
"set-function-length": "^1.2.2"
|
|
2589
|
+
},
|
|
2590
|
+
"engines": {
|
|
2591
|
+
"node": ">= 0.4"
|
|
2592
|
+
},
|
|
2593
|
+
"funding": {
|
|
2594
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2595
|
+
}
|
|
2596
|
+
},
|
|
1914
2597
|
"node_modules/call-bind-apply-helpers": {
|
|
1915
2598
|
"version": "1.0.2",
|
|
1916
2599
|
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
@@ -1923,6 +2606,21 @@
|
|
|
1923
2606
|
"node": ">= 0.4"
|
|
1924
2607
|
}
|
|
1925
2608
|
},
|
|
2609
|
+
"node_modules/call-bound": {
|
|
2610
|
+
"version": "1.0.4",
|
|
2611
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
2612
|
+
"license": "MIT",
|
|
2613
|
+
"dependencies": {
|
|
2614
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
2615
|
+
"get-intrinsic": "^1.3.0"
|
|
2616
|
+
},
|
|
2617
|
+
"engines": {
|
|
2618
|
+
"node": ">= 0.4"
|
|
2619
|
+
},
|
|
2620
|
+
"funding": {
|
|
2621
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2622
|
+
}
|
|
2623
|
+
},
|
|
1926
2624
|
"node_modules/callsites": {
|
|
1927
2625
|
"version": "3.1.0",
|
|
1928
2626
|
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
|
|
@@ -1950,8 +2648,8 @@
|
|
|
1950
2648
|
}
|
|
1951
2649
|
},
|
|
1952
2650
|
"node_modules/caniuse-lite": {
|
|
1953
|
-
"version": "1.0.
|
|
1954
|
-
"integrity": "sha512-
|
|
2651
|
+
"version": "1.0.30001776",
|
|
2652
|
+
"integrity": "sha512-sg01JDPzZ9jGshqKSckOQthXnYwOEP50jeVFhaSFbZcOy05TiuuaffDOfcwtCisJ9kNQuLBFibYywv2Bgm9osw==",
|
|
1955
2653
|
"dev": true,
|
|
1956
2654
|
"funding": [
|
|
1957
2655
|
{
|
|
@@ -1972,7 +2670,6 @@
|
|
|
1972
2670
|
"node_modules/chalk": {
|
|
1973
2671
|
"version": "4.1.2",
|
|
1974
2672
|
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
1975
|
-
"dev": true,
|
|
1976
2673
|
"license": "MIT",
|
|
1977
2674
|
"dependencies": {
|
|
1978
2675
|
"ansi-styles": "^4.1.0",
|
|
@@ -1985,6 +2682,11 @@
|
|
|
1985
2682
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
1986
2683
|
}
|
|
1987
2684
|
},
|
|
2685
|
+
"node_modules/change-case": {
|
|
2686
|
+
"version": "5.4.4",
|
|
2687
|
+
"integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
|
|
2688
|
+
"license": "MIT"
|
|
2689
|
+
},
|
|
1988
2690
|
"node_modules/char-regex": {
|
|
1989
2691
|
"version": "1.0.2",
|
|
1990
2692
|
"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
|
|
@@ -2000,14 +2702,13 @@
|
|
|
2000
2702
|
"license": "ISC"
|
|
2001
2703
|
},
|
|
2002
2704
|
"node_modules/chroma-js": {
|
|
2003
|
-
"version": "3.
|
|
2004
|
-
"integrity": "sha512-
|
|
2705
|
+
"version": "3.2.0",
|
|
2706
|
+
"integrity": "sha512-os/OippSlX1RlWWr+QDPcGUZs0uoqr32urfxESG9U93lhUfbnlyckte84Q8P1UQY/qth983AS1JONKmLS4T0nw==",
|
|
2005
2707
|
"license": "(BSD-3-Clause AND Apache-2.0)"
|
|
2006
2708
|
},
|
|
2007
2709
|
"node_modules/ci-info": {
|
|
2008
2710
|
"version": "3.9.0",
|
|
2009
2711
|
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
|
|
2010
|
-
"dev": true,
|
|
2011
2712
|
"funding": [
|
|
2012
2713
|
{
|
|
2013
2714
|
"type": "github",
|
|
@@ -2118,6 +2819,25 @@
|
|
|
2118
2819
|
"node": ">= 0.8"
|
|
2119
2820
|
}
|
|
2120
2821
|
},
|
|
2822
|
+
"node_modules/commander": {
|
|
2823
|
+
"version": "8.3.0",
|
|
2824
|
+
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
|
|
2825
|
+
"license": "MIT",
|
|
2826
|
+
"engines": {
|
|
2827
|
+
"node": ">= 12"
|
|
2828
|
+
}
|
|
2829
|
+
},
|
|
2830
|
+
"node_modules/component-emitter": {
|
|
2831
|
+
"version": "2.0.0",
|
|
2832
|
+
"integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==",
|
|
2833
|
+
"license": "MIT",
|
|
2834
|
+
"engines": {
|
|
2835
|
+
"node": ">=18"
|
|
2836
|
+
},
|
|
2837
|
+
"funding": {
|
|
2838
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2121
2841
|
"node_modules/concat-map": {
|
|
2122
2842
|
"version": "0.0.1",
|
|
2123
2843
|
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
@@ -2290,8 +3010,8 @@
|
|
|
2290
3010
|
}
|
|
2291
3011
|
},
|
|
2292
3012
|
"node_modules/dedent": {
|
|
2293
|
-
"version": "1.7.
|
|
2294
|
-
"integrity": "sha512-
|
|
3013
|
+
"version": "1.7.2",
|
|
3014
|
+
"integrity": "sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==",
|
|
2295
3015
|
"dev": true,
|
|
2296
3016
|
"license": "MIT",
|
|
2297
3017
|
"peerDependencies": {
|
|
@@ -2306,12 +3026,43 @@
|
|
|
2306
3026
|
"node_modules/deepmerge": {
|
|
2307
3027
|
"version": "4.3.1",
|
|
2308
3028
|
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
2309
|
-
"dev": true,
|
|
2310
3029
|
"license": "MIT",
|
|
2311
3030
|
"engines": {
|
|
2312
3031
|
"node": ">=0.10.0"
|
|
2313
3032
|
}
|
|
2314
3033
|
},
|
|
3034
|
+
"node_modules/define-data-property": {
|
|
3035
|
+
"version": "1.1.4",
|
|
3036
|
+
"integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
|
|
3037
|
+
"license": "MIT",
|
|
3038
|
+
"dependencies": {
|
|
3039
|
+
"es-define-property": "^1.0.0",
|
|
3040
|
+
"es-errors": "^1.3.0",
|
|
3041
|
+
"gopd": "^1.0.1"
|
|
3042
|
+
},
|
|
3043
|
+
"engines": {
|
|
3044
|
+
"node": ">= 0.4"
|
|
3045
|
+
},
|
|
3046
|
+
"funding": {
|
|
3047
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
3050
|
+
"node_modules/define-properties": {
|
|
3051
|
+
"version": "1.2.1",
|
|
3052
|
+
"integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
|
|
3053
|
+
"license": "MIT",
|
|
3054
|
+
"dependencies": {
|
|
3055
|
+
"define-data-property": "^1.0.1",
|
|
3056
|
+
"has-property-descriptors": "^1.0.0",
|
|
3057
|
+
"object-keys": "^1.1.1"
|
|
3058
|
+
},
|
|
3059
|
+
"engines": {
|
|
3060
|
+
"node": ">= 0.4"
|
|
3061
|
+
},
|
|
3062
|
+
"funding": {
|
|
3063
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3064
|
+
}
|
|
3065
|
+
},
|
|
2315
3066
|
"node_modules/delayed-stream": {
|
|
2316
3067
|
"version": "1.0.0",
|
|
2317
3068
|
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
@@ -2407,9 +3158,14 @@
|
|
|
2407
3158
|
"node": ">= 0.4"
|
|
2408
3159
|
}
|
|
2409
3160
|
},
|
|
3161
|
+
"node_modules/eastasianwidth": {
|
|
3162
|
+
"version": "0.2.0",
|
|
3163
|
+
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
|
|
3164
|
+
"license": "MIT"
|
|
3165
|
+
},
|
|
2410
3166
|
"node_modules/electron-to-chromium": {
|
|
2411
|
-
"version": "1.5.
|
|
2412
|
-
"integrity": "sha512-
|
|
3167
|
+
"version": "1.5.307",
|
|
3168
|
+
"integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
|
|
2413
3169
|
"dev": true,
|
|
2414
3170
|
"license": "ISC"
|
|
2415
3171
|
},
|
|
@@ -2538,6 +3294,14 @@
|
|
|
2538
3294
|
"node": ">=4"
|
|
2539
3295
|
}
|
|
2540
3296
|
},
|
|
3297
|
+
"node_modules/events": {
|
|
3298
|
+
"version": "3.3.0",
|
|
3299
|
+
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
|
|
3300
|
+
"license": "MIT",
|
|
3301
|
+
"engines": {
|
|
3302
|
+
"node": ">=0.8.x"
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
2541
3305
|
"node_modules/execa": {
|
|
2542
3306
|
"version": "5.0.0",
|
|
2543
3307
|
"integrity": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==",
|
|
@@ -2643,7 +3407,6 @@
|
|
|
2643
3407
|
"node_modules/fill-range": {
|
|
2644
3408
|
"version": "7.1.1",
|
|
2645
3409
|
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
2646
|
-
"dev": true,
|
|
2647
3410
|
"license": "MIT",
|
|
2648
3411
|
"dependencies": {
|
|
2649
3412
|
"to-regex-range": "^5.0.1"
|
|
@@ -2664,6 +3427,14 @@
|
|
|
2664
3427
|
"node": ">=8"
|
|
2665
3428
|
}
|
|
2666
3429
|
},
|
|
3430
|
+
"node_modules/find-yarn-workspace-root": {
|
|
3431
|
+
"version": "2.0.0",
|
|
3432
|
+
"integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==",
|
|
3433
|
+
"license": "Apache-2.0",
|
|
3434
|
+
"dependencies": {
|
|
3435
|
+
"micromatch": "^4.0.2"
|
|
3436
|
+
}
|
|
3437
|
+
},
|
|
2667
3438
|
"node_modules/follow-redirects": {
|
|
2668
3439
|
"version": "1.15.11",
|
|
2669
3440
|
"integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
|
|
@@ -2683,6 +3454,46 @@
|
|
|
2683
3454
|
}
|
|
2684
3455
|
}
|
|
2685
3456
|
},
|
|
3457
|
+
"node_modules/for-each": {
|
|
3458
|
+
"version": "0.3.5",
|
|
3459
|
+
"integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
|
|
3460
|
+
"license": "MIT",
|
|
3461
|
+
"dependencies": {
|
|
3462
|
+
"is-callable": "^1.2.7"
|
|
3463
|
+
},
|
|
3464
|
+
"engines": {
|
|
3465
|
+
"node": ">= 0.4"
|
|
3466
|
+
},
|
|
3467
|
+
"funding": {
|
|
3468
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3469
|
+
}
|
|
3470
|
+
},
|
|
3471
|
+
"node_modules/foreground-child": {
|
|
3472
|
+
"version": "3.3.1",
|
|
3473
|
+
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
3474
|
+
"license": "ISC",
|
|
3475
|
+
"dependencies": {
|
|
3476
|
+
"cross-spawn": "^7.0.6",
|
|
3477
|
+
"signal-exit": "^4.0.1"
|
|
3478
|
+
},
|
|
3479
|
+
"engines": {
|
|
3480
|
+
"node": ">=14"
|
|
3481
|
+
},
|
|
3482
|
+
"funding": {
|
|
3483
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3484
|
+
}
|
|
3485
|
+
},
|
|
3486
|
+
"node_modules/foreground-child/node_modules/signal-exit": {
|
|
3487
|
+
"version": "4.1.0",
|
|
3488
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
3489
|
+
"license": "ISC",
|
|
3490
|
+
"engines": {
|
|
3491
|
+
"node": ">=14"
|
|
3492
|
+
},
|
|
3493
|
+
"funding": {
|
|
3494
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3495
|
+
}
|
|
3496
|
+
},
|
|
2686
3497
|
"node_modules/form-data": {
|
|
2687
3498
|
"version": "4.0.5",
|
|
2688
3499
|
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
|
@@ -2744,6 +3555,14 @@
|
|
|
2744
3555
|
"url": "https://github.com/sponsors/ljharb"
|
|
2745
3556
|
}
|
|
2746
3557
|
},
|
|
3558
|
+
"node_modules/generator-function": {
|
|
3559
|
+
"version": "2.0.1",
|
|
3560
|
+
"integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==",
|
|
3561
|
+
"license": "MIT",
|
|
3562
|
+
"engines": {
|
|
3563
|
+
"node": ">= 0.4"
|
|
3564
|
+
}
|
|
3565
|
+
},
|
|
2747
3566
|
"node_modules/gensync": {
|
|
2748
3567
|
"version": "1.0.0-beta.2",
|
|
2749
3568
|
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
|
@@ -2817,22 +3636,37 @@
|
|
|
2817
3636
|
}
|
|
2818
3637
|
},
|
|
2819
3638
|
"node_modules/glob": {
|
|
2820
|
-
"version": "13.0.
|
|
2821
|
-
"integrity": "sha512-
|
|
3639
|
+
"version": "13.0.6",
|
|
3640
|
+
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
2822
3641
|
"dev": true,
|
|
2823
3642
|
"license": "BlueOak-1.0.0",
|
|
2824
3643
|
"dependencies": {
|
|
2825
|
-
"minimatch": "^10.
|
|
2826
|
-
"minipass": "^7.1.
|
|
2827
|
-
"path-scurry": "^2.0.
|
|
3644
|
+
"minimatch": "^10.2.2",
|
|
3645
|
+
"minipass": "^7.1.3",
|
|
3646
|
+
"path-scurry": "^2.0.2"
|
|
2828
3647
|
},
|
|
2829
3648
|
"engines": {
|
|
2830
|
-
"node": "20 || >=22"
|
|
3649
|
+
"node": "18 || 20 || >=22"
|
|
2831
3650
|
},
|
|
2832
3651
|
"funding": {
|
|
2833
3652
|
"url": "https://github.com/sponsors/isaacs"
|
|
2834
3653
|
}
|
|
2835
3654
|
},
|
|
3655
|
+
"node_modules/glob-to-regex.js": {
|
|
3656
|
+
"version": "1.2.0",
|
|
3657
|
+
"integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==",
|
|
3658
|
+
"license": "Apache-2.0",
|
|
3659
|
+
"engines": {
|
|
3660
|
+
"node": ">=10.0"
|
|
3661
|
+
},
|
|
3662
|
+
"funding": {
|
|
3663
|
+
"type": "github",
|
|
3664
|
+
"url": "https://github.com/sponsors/streamich"
|
|
3665
|
+
},
|
|
3666
|
+
"peerDependencies": {
|
|
3667
|
+
"tslib": "2"
|
|
3668
|
+
}
|
|
3669
|
+
},
|
|
2836
3670
|
"node_modules/globals": {
|
|
2837
3671
|
"version": "11.12.0",
|
|
2838
3672
|
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
|
@@ -2888,12 +3722,22 @@
|
|
|
2888
3722
|
"node_modules/has-flag": {
|
|
2889
3723
|
"version": "4.0.0",
|
|
2890
3724
|
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
2891
|
-
"dev": true,
|
|
2892
3725
|
"license": "MIT",
|
|
2893
3726
|
"engines": {
|
|
2894
3727
|
"node": ">=8"
|
|
2895
3728
|
}
|
|
2896
3729
|
},
|
|
3730
|
+
"node_modules/has-property-descriptors": {
|
|
3731
|
+
"version": "1.0.2",
|
|
3732
|
+
"integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
|
|
3733
|
+
"license": "MIT",
|
|
3734
|
+
"dependencies": {
|
|
3735
|
+
"es-define-property": "^1.0.0"
|
|
3736
|
+
},
|
|
3737
|
+
"funding": {
|
|
3738
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3739
|
+
}
|
|
3740
|
+
},
|
|
2897
3741
|
"node_modules/has-symbols": {
|
|
2898
3742
|
"version": "1.1.0",
|
|
2899
3743
|
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
@@ -2969,6 +3813,14 @@
|
|
|
2969
3813
|
"node": ">=10.17.0"
|
|
2970
3814
|
}
|
|
2971
3815
|
},
|
|
3816
|
+
"node_modules/hyperdyperid": {
|
|
3817
|
+
"version": "1.2.0",
|
|
3818
|
+
"integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==",
|
|
3819
|
+
"license": "MIT",
|
|
3820
|
+
"engines": {
|
|
3821
|
+
"node": ">=10.18"
|
|
3822
|
+
}
|
|
3823
|
+
},
|
|
2972
3824
|
"node_modules/iconv-lite": {
|
|
2973
3825
|
"version": "0.4.24",
|
|
2974
3826
|
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
@@ -3055,12 +3907,38 @@
|
|
|
3055
3907
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
3056
3908
|
"license": "ISC"
|
|
3057
3909
|
},
|
|
3910
|
+
"node_modules/is-arguments": {
|
|
3911
|
+
"version": "1.2.0",
|
|
3912
|
+
"integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==",
|
|
3913
|
+
"license": "MIT",
|
|
3914
|
+
"dependencies": {
|
|
3915
|
+
"call-bound": "^1.0.2",
|
|
3916
|
+
"has-tostringtag": "^1.0.2"
|
|
3917
|
+
},
|
|
3918
|
+
"engines": {
|
|
3919
|
+
"node": ">= 0.4"
|
|
3920
|
+
},
|
|
3921
|
+
"funding": {
|
|
3922
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3923
|
+
}
|
|
3924
|
+
},
|
|
3058
3925
|
"node_modules/is-arrayish": {
|
|
3059
3926
|
"version": "0.2.1",
|
|
3060
3927
|
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
|
|
3061
3928
|
"dev": true,
|
|
3062
3929
|
"license": "MIT"
|
|
3063
3930
|
},
|
|
3931
|
+
"node_modules/is-callable": {
|
|
3932
|
+
"version": "1.2.7",
|
|
3933
|
+
"integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
|
|
3934
|
+
"license": "MIT",
|
|
3935
|
+
"engines": {
|
|
3936
|
+
"node": ">= 0.4"
|
|
3937
|
+
},
|
|
3938
|
+
"funding": {
|
|
3939
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3940
|
+
}
|
|
3941
|
+
},
|
|
3064
3942
|
"node_modules/is-core-module": {
|
|
3065
3943
|
"version": "2.16.1",
|
|
3066
3944
|
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
@@ -3076,6 +3954,20 @@
|
|
|
3076
3954
|
"url": "https://github.com/sponsors/ljharb"
|
|
3077
3955
|
}
|
|
3078
3956
|
},
|
|
3957
|
+
"node_modules/is-docker": {
|
|
3958
|
+
"version": "2.2.1",
|
|
3959
|
+
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
|
|
3960
|
+
"license": "MIT",
|
|
3961
|
+
"bin": {
|
|
3962
|
+
"is-docker": "cli.js"
|
|
3963
|
+
},
|
|
3964
|
+
"engines": {
|
|
3965
|
+
"node": ">=8"
|
|
3966
|
+
},
|
|
3967
|
+
"funding": {
|
|
3968
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3079
3971
|
"node_modules/is-fullwidth-code-point": {
|
|
3080
3972
|
"version": "3.0.0",
|
|
3081
3973
|
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
@@ -3093,15 +3985,75 @@
|
|
|
3093
3985
|
"node": ">=6"
|
|
3094
3986
|
}
|
|
3095
3987
|
},
|
|
3988
|
+
"node_modules/is-generator-function": {
|
|
3989
|
+
"version": "1.1.2",
|
|
3990
|
+
"integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==",
|
|
3991
|
+
"license": "MIT",
|
|
3992
|
+
"dependencies": {
|
|
3993
|
+
"call-bound": "^1.0.4",
|
|
3994
|
+
"generator-function": "^2.0.0",
|
|
3995
|
+
"get-proto": "^1.0.1",
|
|
3996
|
+
"has-tostringtag": "^1.0.2",
|
|
3997
|
+
"safe-regex-test": "^1.1.0"
|
|
3998
|
+
},
|
|
3999
|
+
"engines": {
|
|
4000
|
+
"node": ">= 0.4"
|
|
4001
|
+
},
|
|
4002
|
+
"funding": {
|
|
4003
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4004
|
+
}
|
|
4005
|
+
},
|
|
4006
|
+
"node_modules/is-nan": {
|
|
4007
|
+
"version": "1.3.2",
|
|
4008
|
+
"integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==",
|
|
4009
|
+
"license": "MIT",
|
|
4010
|
+
"dependencies": {
|
|
4011
|
+
"call-bind": "^1.0.0",
|
|
4012
|
+
"define-properties": "^1.1.3"
|
|
4013
|
+
},
|
|
4014
|
+
"engines": {
|
|
4015
|
+
"node": ">= 0.4"
|
|
4016
|
+
},
|
|
4017
|
+
"funding": {
|
|
4018
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4019
|
+
}
|
|
4020
|
+
},
|
|
3096
4021
|
"node_modules/is-number": {
|
|
3097
4022
|
"version": "7.0.0",
|
|
3098
4023
|
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
3099
|
-
"dev": true,
|
|
3100
4024
|
"license": "MIT",
|
|
3101
4025
|
"engines": {
|
|
3102
4026
|
"node": ">=0.12.0"
|
|
3103
4027
|
}
|
|
3104
4028
|
},
|
|
4029
|
+
"node_modules/is-plain-obj": {
|
|
4030
|
+
"version": "4.1.0",
|
|
4031
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
|
|
4032
|
+
"license": "MIT",
|
|
4033
|
+
"engines": {
|
|
4034
|
+
"node": ">=12"
|
|
4035
|
+
},
|
|
4036
|
+
"funding": {
|
|
4037
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
4038
|
+
}
|
|
4039
|
+
},
|
|
4040
|
+
"node_modules/is-regex": {
|
|
4041
|
+
"version": "1.2.1",
|
|
4042
|
+
"integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
|
|
4043
|
+
"license": "MIT",
|
|
4044
|
+
"dependencies": {
|
|
4045
|
+
"call-bound": "^1.0.2",
|
|
4046
|
+
"gopd": "^1.2.0",
|
|
4047
|
+
"has-tostringtag": "^1.0.2",
|
|
4048
|
+
"hasown": "^2.0.2"
|
|
4049
|
+
},
|
|
4050
|
+
"engines": {
|
|
4051
|
+
"node": ">= 0.4"
|
|
4052
|
+
},
|
|
4053
|
+
"funding": {
|
|
4054
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4055
|
+
}
|
|
4056
|
+
},
|
|
3105
4057
|
"node_modules/is-stream": {
|
|
3106
4058
|
"version": "2.0.1",
|
|
3107
4059
|
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
|
|
@@ -3113,11 +4065,41 @@
|
|
|
3113
4065
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
3114
4066
|
}
|
|
3115
4067
|
},
|
|
4068
|
+
"node_modules/is-typed-array": {
|
|
4069
|
+
"version": "1.1.15",
|
|
4070
|
+
"integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
|
|
4071
|
+
"license": "MIT",
|
|
4072
|
+
"dependencies": {
|
|
4073
|
+
"which-typed-array": "^1.1.16"
|
|
4074
|
+
},
|
|
4075
|
+
"engines": {
|
|
4076
|
+
"node": ">= 0.4"
|
|
4077
|
+
},
|
|
4078
|
+
"funding": {
|
|
4079
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4080
|
+
}
|
|
4081
|
+
},
|
|
3116
4082
|
"node_modules/is-what": {
|
|
3117
4083
|
"version": "3.14.1",
|
|
3118
4084
|
"integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==",
|
|
3119
4085
|
"license": "MIT"
|
|
3120
4086
|
},
|
|
4087
|
+
"node_modules/is-wsl": {
|
|
4088
|
+
"version": "2.2.0",
|
|
4089
|
+
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
|
|
4090
|
+
"license": "MIT",
|
|
4091
|
+
"dependencies": {
|
|
4092
|
+
"is-docker": "^2.0.0"
|
|
4093
|
+
},
|
|
4094
|
+
"engines": {
|
|
4095
|
+
"node": ">=8"
|
|
4096
|
+
}
|
|
4097
|
+
},
|
|
4098
|
+
"node_modules/isarray": {
|
|
4099
|
+
"version": "2.0.5",
|
|
4100
|
+
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
|
|
4101
|
+
"license": "MIT"
|
|
4102
|
+
},
|
|
3121
4103
|
"node_modules/isexe": {
|
|
3122
4104
|
"version": "2.0.0",
|
|
3123
4105
|
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
@@ -3149,12 +4131,12 @@
|
|
|
3149
4131
|
}
|
|
3150
4132
|
},
|
|
3151
4133
|
"node_modules/istanbul-lib-instrument/node_modules/@babel/parser": {
|
|
3152
|
-
"version": "7.
|
|
3153
|
-
"integrity": "sha512-
|
|
4134
|
+
"version": "7.29.0",
|
|
4135
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
3154
4136
|
"dev": true,
|
|
3155
4137
|
"license": "MIT",
|
|
3156
4138
|
"dependencies": {
|
|
3157
|
-
"@babel/types": "^7.
|
|
4139
|
+
"@babel/types": "^7.29.0"
|
|
3158
4140
|
},
|
|
3159
4141
|
"bin": {
|
|
3160
4142
|
"parser": "bin/babel-parser.js"
|
|
@@ -3164,8 +4146,8 @@
|
|
|
3164
4146
|
}
|
|
3165
4147
|
},
|
|
3166
4148
|
"node_modules/istanbul-lib-instrument/node_modules/semver": {
|
|
3167
|
-
"version": "7.7.
|
|
3168
|
-
"integrity": "sha512-
|
|
4149
|
+
"version": "7.7.4",
|
|
4150
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
3169
4151
|
"dev": true,
|
|
3170
4152
|
"license": "ISC",
|
|
3171
4153
|
"bin": {
|
|
@@ -3225,6 +4207,20 @@
|
|
|
3225
4207
|
"node": ">=8"
|
|
3226
4208
|
}
|
|
3227
4209
|
},
|
|
4210
|
+
"node_modules/jackspeak": {
|
|
4211
|
+
"version": "3.4.3",
|
|
4212
|
+
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
|
|
4213
|
+
"license": "BlueOak-1.0.0",
|
|
4214
|
+
"dependencies": {
|
|
4215
|
+
"@isaacs/cliui": "^8.0.2"
|
|
4216
|
+
},
|
|
4217
|
+
"funding": {
|
|
4218
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4219
|
+
},
|
|
4220
|
+
"optionalDependencies": {
|
|
4221
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
4222
|
+
}
|
|
4223
|
+
},
|
|
3228
4224
|
"node_modules/jest": {
|
|
3229
4225
|
"version": "29.3.1",
|
|
3230
4226
|
"integrity": "sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==",
|
|
@@ -3406,10 +4402,26 @@
|
|
|
3406
4402
|
}
|
|
3407
4403
|
}
|
|
3408
4404
|
},
|
|
4405
|
+
"node_modules/jest-config/node_modules/balanced-match": {
|
|
4406
|
+
"version": "1.0.2",
|
|
4407
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
4408
|
+
"dev": true,
|
|
4409
|
+
"license": "MIT"
|
|
4410
|
+
},
|
|
4411
|
+
"node_modules/jest-config/node_modules/brace-expansion": {
|
|
4412
|
+
"version": "1.1.12",
|
|
4413
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
4414
|
+
"dev": true,
|
|
4415
|
+
"license": "MIT",
|
|
4416
|
+
"dependencies": {
|
|
4417
|
+
"balanced-match": "^1.0.0",
|
|
4418
|
+
"concat-map": "0.0.1"
|
|
4419
|
+
}
|
|
4420
|
+
},
|
|
3409
4421
|
"node_modules/jest-config/node_modules/glob": {
|
|
3410
4422
|
"version": "7.2.3",
|
|
3411
4423
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
3412
|
-
"deprecated": "
|
|
4424
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
3413
4425
|
"dev": true,
|
|
3414
4426
|
"license": "ISC",
|
|
3415
4427
|
"dependencies": {
|
|
@@ -3428,8 +4440,8 @@
|
|
|
3428
4440
|
}
|
|
3429
4441
|
},
|
|
3430
4442
|
"node_modules/jest-config/node_modules/minimatch": {
|
|
3431
|
-
"version": "3.1.
|
|
3432
|
-
"integrity": "sha512-
|
|
4443
|
+
"version": "3.1.5",
|
|
4444
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
3433
4445
|
"dev": true,
|
|
3434
4446
|
"license": "ISC",
|
|
3435
4447
|
"dependencies": {
|
|
@@ -3719,10 +4731,26 @@
|
|
|
3719
4731
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
3720
4732
|
}
|
|
3721
4733
|
},
|
|
4734
|
+
"node_modules/jest-runtime/node_modules/balanced-match": {
|
|
4735
|
+
"version": "1.0.2",
|
|
4736
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
4737
|
+
"dev": true,
|
|
4738
|
+
"license": "MIT"
|
|
4739
|
+
},
|
|
4740
|
+
"node_modules/jest-runtime/node_modules/brace-expansion": {
|
|
4741
|
+
"version": "1.1.12",
|
|
4742
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
4743
|
+
"dev": true,
|
|
4744
|
+
"license": "MIT",
|
|
4745
|
+
"dependencies": {
|
|
4746
|
+
"balanced-match": "^1.0.0",
|
|
4747
|
+
"concat-map": "0.0.1"
|
|
4748
|
+
}
|
|
4749
|
+
},
|
|
3722
4750
|
"node_modules/jest-runtime/node_modules/glob": {
|
|
3723
4751
|
"version": "7.2.3",
|
|
3724
4752
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
3725
|
-
"deprecated": "
|
|
4753
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
3726
4754
|
"dev": true,
|
|
3727
4755
|
"license": "ISC",
|
|
3728
4756
|
"dependencies": {
|
|
@@ -3741,8 +4769,8 @@
|
|
|
3741
4769
|
}
|
|
3742
4770
|
},
|
|
3743
4771
|
"node_modules/jest-runtime/node_modules/minimatch": {
|
|
3744
|
-
"version": "3.1.
|
|
3745
|
-
"integrity": "sha512-
|
|
4772
|
+
"version": "3.1.5",
|
|
4773
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
3746
4774
|
"dev": true,
|
|
3747
4775
|
"license": "ISC",
|
|
3748
4776
|
"dependencies": {
|
|
@@ -3784,8 +4812,8 @@
|
|
|
3784
4812
|
}
|
|
3785
4813
|
},
|
|
3786
4814
|
"node_modules/jest-snapshot/node_modules/semver": {
|
|
3787
|
-
"version": "7.7.
|
|
3788
|
-
"integrity": "sha512-
|
|
4815
|
+
"version": "7.7.4",
|
|
4816
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
3789
4817
|
"dev": true,
|
|
3790
4818
|
"license": "ISC",
|
|
3791
4819
|
"bin": {
|
|
@@ -3925,10 +4953,27 @@
|
|
|
3925
4953
|
"dev": true,
|
|
3926
4954
|
"license": "MIT"
|
|
3927
4955
|
},
|
|
4956
|
+
"node_modules/json-stable-stringify": {
|
|
4957
|
+
"version": "1.3.0",
|
|
4958
|
+
"integrity": "sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==",
|
|
4959
|
+
"license": "MIT",
|
|
4960
|
+
"dependencies": {
|
|
4961
|
+
"call-bind": "^1.0.8",
|
|
4962
|
+
"call-bound": "^1.0.4",
|
|
4963
|
+
"isarray": "^2.0.5",
|
|
4964
|
+
"jsonify": "^0.0.1",
|
|
4965
|
+
"object-keys": "^1.1.1"
|
|
4966
|
+
},
|
|
4967
|
+
"engines": {
|
|
4968
|
+
"node": ">= 0.4"
|
|
4969
|
+
},
|
|
4970
|
+
"funding": {
|
|
4971
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4972
|
+
}
|
|
4973
|
+
},
|
|
3928
4974
|
"node_modules/json5": {
|
|
3929
4975
|
"version": "2.2.3",
|
|
3930
4976
|
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
3931
|
-
"dev": true,
|
|
3932
4977
|
"license": "MIT",
|
|
3933
4978
|
"bin": {
|
|
3934
4979
|
"json5": "lib/cli.js"
|
|
@@ -3948,6 +4993,22 @@
|
|
|
3948
4993
|
"graceful-fs": "^4.1.6"
|
|
3949
4994
|
}
|
|
3950
4995
|
},
|
|
4996
|
+
"node_modules/jsonify": {
|
|
4997
|
+
"version": "0.0.1",
|
|
4998
|
+
"integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==",
|
|
4999
|
+
"license": "Public Domain",
|
|
5000
|
+
"funding": {
|
|
5001
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
5002
|
+
}
|
|
5003
|
+
},
|
|
5004
|
+
"node_modules/klaw-sync": {
|
|
5005
|
+
"version": "6.0.0",
|
|
5006
|
+
"integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==",
|
|
5007
|
+
"license": "MIT",
|
|
5008
|
+
"dependencies": {
|
|
5009
|
+
"graceful-fs": "^4.1.11"
|
|
5010
|
+
}
|
|
5011
|
+
},
|
|
3951
5012
|
"node_modules/kleur": {
|
|
3952
5013
|
"version": "3.0.3",
|
|
3953
5014
|
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
|
|
@@ -4080,8 +5141,8 @@
|
|
|
4080
5141
|
}
|
|
4081
5142
|
},
|
|
4082
5143
|
"node_modules/make-dir/node_modules/semver": {
|
|
4083
|
-
"version": "7.7.
|
|
4084
|
-
"integrity": "sha512-
|
|
5144
|
+
"version": "7.7.4",
|
|
5145
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
4085
5146
|
"dev": true,
|
|
4086
5147
|
"license": "ISC",
|
|
4087
5148
|
"bin": {
|
|
@@ -4119,6 +5180,34 @@
|
|
|
4119
5180
|
"integrity": "sha512-kwqO0I0jtWr25KcfLm9pia8vLZ8qoAKhWZuZMbneJq3jjBD3gl5nZs8l8Tu3ZBlBAHVQtDur9rdDGyvtfVraHQ==",
|
|
4120
5181
|
"license": "CC0-1.0"
|
|
4121
5182
|
},
|
|
5183
|
+
"node_modules/memfs": {
|
|
5184
|
+
"version": "4.56.10",
|
|
5185
|
+
"integrity": "sha512-eLvzyrwqLHnLYalJP7YZ3wBe79MXktMdfQbvMrVD80K+NhrIukCVBvgP30zTJYEEDh9hZ/ep9z0KOdD7FSHo7w==",
|
|
5186
|
+
"license": "Apache-2.0",
|
|
5187
|
+
"dependencies": {
|
|
5188
|
+
"@jsonjoy.com/fs-core": "4.56.10",
|
|
5189
|
+
"@jsonjoy.com/fs-fsa": "4.56.10",
|
|
5190
|
+
"@jsonjoy.com/fs-node": "4.56.10",
|
|
5191
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.10",
|
|
5192
|
+
"@jsonjoy.com/fs-node-to-fsa": "4.56.10",
|
|
5193
|
+
"@jsonjoy.com/fs-node-utils": "4.56.10",
|
|
5194
|
+
"@jsonjoy.com/fs-print": "4.56.10",
|
|
5195
|
+
"@jsonjoy.com/fs-snapshot": "4.56.10",
|
|
5196
|
+
"@jsonjoy.com/json-pack": "^1.11.0",
|
|
5197
|
+
"@jsonjoy.com/util": "^1.9.0",
|
|
5198
|
+
"glob-to-regex.js": "^1.0.1",
|
|
5199
|
+
"thingies": "^2.5.0",
|
|
5200
|
+
"tree-dump": "^1.0.3",
|
|
5201
|
+
"tslib": "^2.0.0"
|
|
5202
|
+
},
|
|
5203
|
+
"funding": {
|
|
5204
|
+
"type": "github",
|
|
5205
|
+
"url": "https://github.com/sponsors/streamich"
|
|
5206
|
+
},
|
|
5207
|
+
"peerDependencies": {
|
|
5208
|
+
"tslib": "2"
|
|
5209
|
+
}
|
|
5210
|
+
},
|
|
4122
5211
|
"node_modules/merge-stream": {
|
|
4123
5212
|
"version": "2.0.0",
|
|
4124
5213
|
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
|
@@ -4127,7 +5216,6 @@
|
|
|
4127
5216
|
"node_modules/micromatch": {
|
|
4128
5217
|
"version": "4.0.8",
|
|
4129
5218
|
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
4130
|
-
"dev": true,
|
|
4131
5219
|
"license": "MIT",
|
|
4132
5220
|
"dependencies": {
|
|
4133
5221
|
"braces": "^3.0.3",
|
|
@@ -4177,15 +5265,15 @@
|
|
|
4177
5265
|
}
|
|
4178
5266
|
},
|
|
4179
5267
|
"node_modules/minimatch": {
|
|
4180
|
-
"version": "10.
|
|
4181
|
-
"integrity": "sha512-
|
|
5268
|
+
"version": "10.2.4",
|
|
5269
|
+
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
|
4182
5270
|
"dev": true,
|
|
4183
5271
|
"license": "BlueOak-1.0.0",
|
|
4184
5272
|
"dependencies": {
|
|
4185
|
-
"
|
|
5273
|
+
"brace-expansion": "^5.0.2"
|
|
4186
5274
|
},
|
|
4187
5275
|
"engines": {
|
|
4188
|
-
"node": "20 || >=22"
|
|
5276
|
+
"node": "18 || 20 || >=22"
|
|
4189
5277
|
},
|
|
4190
5278
|
"funding": {
|
|
4191
5279
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -4200,10 +5288,9 @@
|
|
|
4200
5288
|
}
|
|
4201
5289
|
},
|
|
4202
5290
|
"node_modules/minipass": {
|
|
4203
|
-
"version": "7.1.
|
|
4204
|
-
"integrity": "sha512-
|
|
4205
|
-
"
|
|
4206
|
-
"license": "ISC",
|
|
5291
|
+
"version": "7.1.3",
|
|
5292
|
+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
|
|
5293
|
+
"license": "BlueOak-1.0.0",
|
|
4207
5294
|
"engines": {
|
|
4208
5295
|
"node": ">=16 || 14 >=14.17"
|
|
4209
5296
|
}
|
|
@@ -4290,8 +5377,8 @@
|
|
|
4290
5377
|
"license": "MIT"
|
|
4291
5378
|
},
|
|
4292
5379
|
"node_modules/node-releases": {
|
|
4293
|
-
"version": "2.0.
|
|
4294
|
-
"integrity": "sha512-
|
|
5380
|
+
"version": "2.0.36",
|
|
5381
|
+
"integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
|
|
4295
5382
|
"dev": true,
|
|
4296
5383
|
"license": "MIT"
|
|
4297
5384
|
},
|
|
@@ -4326,6 +5413,59 @@
|
|
|
4326
5413
|
"url": "https://github.com/fb55/nth-check?sponsor=1"
|
|
4327
5414
|
}
|
|
4328
5415
|
},
|
|
5416
|
+
"node_modules/object-inspect": {
|
|
5417
|
+
"version": "1.13.4",
|
|
5418
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
5419
|
+
"license": "MIT",
|
|
5420
|
+
"engines": {
|
|
5421
|
+
"node": ">= 0.4"
|
|
5422
|
+
},
|
|
5423
|
+
"funding": {
|
|
5424
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
5425
|
+
}
|
|
5426
|
+
},
|
|
5427
|
+
"node_modules/object-is": {
|
|
5428
|
+
"version": "1.1.6",
|
|
5429
|
+
"integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==",
|
|
5430
|
+
"license": "MIT",
|
|
5431
|
+
"dependencies": {
|
|
5432
|
+
"call-bind": "^1.0.7",
|
|
5433
|
+
"define-properties": "^1.2.1"
|
|
5434
|
+
},
|
|
5435
|
+
"engines": {
|
|
5436
|
+
"node": ">= 0.4"
|
|
5437
|
+
},
|
|
5438
|
+
"funding": {
|
|
5439
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
5440
|
+
}
|
|
5441
|
+
},
|
|
5442
|
+
"node_modules/object-keys": {
|
|
5443
|
+
"version": "1.1.1",
|
|
5444
|
+
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
|
|
5445
|
+
"license": "MIT",
|
|
5446
|
+
"engines": {
|
|
5447
|
+
"node": ">= 0.4"
|
|
5448
|
+
}
|
|
5449
|
+
},
|
|
5450
|
+
"node_modules/object.assign": {
|
|
5451
|
+
"version": "4.1.7",
|
|
5452
|
+
"integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
|
|
5453
|
+
"license": "MIT",
|
|
5454
|
+
"dependencies": {
|
|
5455
|
+
"call-bind": "^1.0.8",
|
|
5456
|
+
"call-bound": "^1.0.3",
|
|
5457
|
+
"define-properties": "^1.2.1",
|
|
5458
|
+
"es-object-atoms": "^1.0.0",
|
|
5459
|
+
"has-symbols": "^1.1.0",
|
|
5460
|
+
"object-keys": "^1.1.1"
|
|
5461
|
+
},
|
|
5462
|
+
"engines": {
|
|
5463
|
+
"node": ">= 0.4"
|
|
5464
|
+
},
|
|
5465
|
+
"funding": {
|
|
5466
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
5467
|
+
}
|
|
5468
|
+
},
|
|
4329
5469
|
"node_modules/once": {
|
|
4330
5470
|
"version": "1.4.0",
|
|
4331
5471
|
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
@@ -4348,6 +5488,21 @@
|
|
|
4348
5488
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4349
5489
|
}
|
|
4350
5490
|
},
|
|
5491
|
+
"node_modules/open": {
|
|
5492
|
+
"version": "7.4.2",
|
|
5493
|
+
"integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==",
|
|
5494
|
+
"license": "MIT",
|
|
5495
|
+
"dependencies": {
|
|
5496
|
+
"is-docker": "^2.0.0",
|
|
5497
|
+
"is-wsl": "^2.1.1"
|
|
5498
|
+
},
|
|
5499
|
+
"engines": {
|
|
5500
|
+
"node": ">=8"
|
|
5501
|
+
},
|
|
5502
|
+
"funding": {
|
|
5503
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
5504
|
+
}
|
|
5505
|
+
},
|
|
4351
5506
|
"node_modules/p-limit": {
|
|
4352
5507
|
"version": "3.1.0",
|
|
4353
5508
|
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
|
|
@@ -4396,6 +5551,11 @@
|
|
|
4396
5551
|
"node": ">=6"
|
|
4397
5552
|
}
|
|
4398
5553
|
},
|
|
5554
|
+
"node_modules/package-json-from-dist": {
|
|
5555
|
+
"version": "1.0.1",
|
|
5556
|
+
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
5557
|
+
"license": "BlueOak-1.0.0"
|
|
5558
|
+
},
|
|
4399
5559
|
"node_modules/parse-json": {
|
|
4400
5560
|
"version": "5.2.0",
|
|
4401
5561
|
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
|
|
@@ -4422,6 +5582,75 @@
|
|
|
4422
5582
|
"node": ">= 0.10"
|
|
4423
5583
|
}
|
|
4424
5584
|
},
|
|
5585
|
+
"node_modules/patch-package": {
|
|
5586
|
+
"version": "8.0.1",
|
|
5587
|
+
"integrity": "sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw==",
|
|
5588
|
+
"license": "MIT",
|
|
5589
|
+
"dependencies": {
|
|
5590
|
+
"@yarnpkg/lockfile": "^1.1.0",
|
|
5591
|
+
"chalk": "^4.1.2",
|
|
5592
|
+
"ci-info": "^3.7.0",
|
|
5593
|
+
"cross-spawn": "^7.0.3",
|
|
5594
|
+
"find-yarn-workspace-root": "^2.0.0",
|
|
5595
|
+
"fs-extra": "^10.0.0",
|
|
5596
|
+
"json-stable-stringify": "^1.0.2",
|
|
5597
|
+
"klaw-sync": "^6.0.0",
|
|
5598
|
+
"minimist": "^1.2.6",
|
|
5599
|
+
"open": "^7.4.2",
|
|
5600
|
+
"semver": "^7.5.3",
|
|
5601
|
+
"slash": "^2.0.0",
|
|
5602
|
+
"tmp": "^0.2.4",
|
|
5603
|
+
"yaml": "^2.2.2"
|
|
5604
|
+
},
|
|
5605
|
+
"bin": {
|
|
5606
|
+
"patch-package": "index.js"
|
|
5607
|
+
},
|
|
5608
|
+
"engines": {
|
|
5609
|
+
"node": ">=14",
|
|
5610
|
+
"npm": ">5"
|
|
5611
|
+
}
|
|
5612
|
+
},
|
|
5613
|
+
"node_modules/patch-package/node_modules/fs-extra": {
|
|
5614
|
+
"version": "10.1.0",
|
|
5615
|
+
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
|
|
5616
|
+
"license": "MIT",
|
|
5617
|
+
"dependencies": {
|
|
5618
|
+
"graceful-fs": "^4.2.0",
|
|
5619
|
+
"jsonfile": "^6.0.1",
|
|
5620
|
+
"universalify": "^2.0.0"
|
|
5621
|
+
},
|
|
5622
|
+
"engines": {
|
|
5623
|
+
"node": ">=12"
|
|
5624
|
+
}
|
|
5625
|
+
},
|
|
5626
|
+
"node_modules/patch-package/node_modules/semver": {
|
|
5627
|
+
"version": "7.7.4",
|
|
5628
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
5629
|
+
"license": "ISC",
|
|
5630
|
+
"bin": {
|
|
5631
|
+
"semver": "bin/semver.js"
|
|
5632
|
+
},
|
|
5633
|
+
"engines": {
|
|
5634
|
+
"node": ">=10"
|
|
5635
|
+
}
|
|
5636
|
+
},
|
|
5637
|
+
"node_modules/patch-package/node_modules/slash": {
|
|
5638
|
+
"version": "2.0.0",
|
|
5639
|
+
"integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
|
|
5640
|
+
"license": "MIT",
|
|
5641
|
+
"engines": {
|
|
5642
|
+
"node": ">=6"
|
|
5643
|
+
}
|
|
5644
|
+
},
|
|
5645
|
+
"node_modules/path": {
|
|
5646
|
+
"version": "0.12.7",
|
|
5647
|
+
"integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
|
|
5648
|
+
"license": "MIT",
|
|
5649
|
+
"dependencies": {
|
|
5650
|
+
"process": "^0.11.1",
|
|
5651
|
+
"util": "^0.10.3"
|
|
5652
|
+
}
|
|
5653
|
+
},
|
|
4425
5654
|
"node_modules/path-exists": {
|
|
4426
5655
|
"version": "4.0.0",
|
|
4427
5656
|
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
|
@@ -4453,8 +5682,8 @@
|
|
|
4453
5682
|
"license": "MIT"
|
|
4454
5683
|
},
|
|
4455
5684
|
"node_modules/path-scurry": {
|
|
4456
|
-
"version": "2.0.
|
|
4457
|
-
"integrity": "sha512-
|
|
5685
|
+
"version": "2.0.2",
|
|
5686
|
+
"integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
|
|
4458
5687
|
"dev": true,
|
|
4459
5688
|
"license": "BlueOak-1.0.0",
|
|
4460
5689
|
"dependencies": {
|
|
@@ -4462,21 +5691,39 @@
|
|
|
4462
5691
|
"minipass": "^7.1.2"
|
|
4463
5692
|
},
|
|
4464
5693
|
"engines": {
|
|
4465
|
-
"node": "20 || >=22"
|
|
5694
|
+
"node": "18 || 20 || >=22"
|
|
4466
5695
|
},
|
|
4467
5696
|
"funding": {
|
|
4468
5697
|
"url": "https://github.com/sponsors/isaacs"
|
|
4469
5698
|
}
|
|
4470
5699
|
},
|
|
4471
5700
|
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
4472
|
-
"version": "11.2.
|
|
4473
|
-
"integrity": "sha512-
|
|
5701
|
+
"version": "11.2.6",
|
|
5702
|
+
"integrity": "sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==",
|
|
4474
5703
|
"dev": true,
|
|
4475
|
-
"license": "
|
|
5704
|
+
"license": "BlueOak-1.0.0",
|
|
4476
5705
|
"engines": {
|
|
4477
5706
|
"node": "20 || >=22"
|
|
4478
5707
|
}
|
|
4479
5708
|
},
|
|
5709
|
+
"node_modules/path-unified": {
|
|
5710
|
+
"version": "0.1.0",
|
|
5711
|
+
"integrity": "sha512-/Oaz9ZJforrkmFrwkR/AcvjVsCAwGSJHO0X6O6ISj8YeFbATjIEBXLDcZfnK3MO4uvCBrJTdVIxdOc79PMqSdg==",
|
|
5712
|
+
"license": "MIT"
|
|
5713
|
+
},
|
|
5714
|
+
"node_modules/path/node_modules/inherits": {
|
|
5715
|
+
"version": "2.0.3",
|
|
5716
|
+
"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==",
|
|
5717
|
+
"license": "ISC"
|
|
5718
|
+
},
|
|
5719
|
+
"node_modules/path/node_modules/util": {
|
|
5720
|
+
"version": "0.10.4",
|
|
5721
|
+
"integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
|
|
5722
|
+
"license": "MIT",
|
|
5723
|
+
"dependencies": {
|
|
5724
|
+
"inherits": "2.0.3"
|
|
5725
|
+
}
|
|
5726
|
+
},
|
|
4480
5727
|
"node_modules/pend": {
|
|
4481
5728
|
"version": "1.2.0",
|
|
4482
5729
|
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
|
|
@@ -4490,7 +5737,6 @@
|
|
|
4490
5737
|
"node_modules/picomatch": {
|
|
4491
5738
|
"version": "2.3.1",
|
|
4492
5739
|
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
4493
|
-
"dev": true,
|
|
4494
5740
|
"license": "MIT",
|
|
4495
5741
|
"engines": {
|
|
4496
5742
|
"node": ">=8.6"
|
|
@@ -4528,6 +5774,14 @@
|
|
|
4528
5774
|
"node": ">=8"
|
|
4529
5775
|
}
|
|
4530
5776
|
},
|
|
5777
|
+
"node_modules/possible-typed-array-names": {
|
|
5778
|
+
"version": "1.1.0",
|
|
5779
|
+
"integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
|
|
5780
|
+
"license": "MIT",
|
|
5781
|
+
"engines": {
|
|
5782
|
+
"node": ">= 0.4"
|
|
5783
|
+
}
|
|
5784
|
+
},
|
|
4531
5785
|
"node_modules/postcss-value-parser": {
|
|
4532
5786
|
"version": "3.3.1",
|
|
4533
5787
|
"integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
|
|
@@ -4570,6 +5824,14 @@
|
|
|
4570
5824
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
4571
5825
|
}
|
|
4572
5826
|
},
|
|
5827
|
+
"node_modules/process": {
|
|
5828
|
+
"version": "0.11.10",
|
|
5829
|
+
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
|
5830
|
+
"license": "MIT",
|
|
5831
|
+
"engines": {
|
|
5832
|
+
"node": ">= 0.6.0"
|
|
5833
|
+
}
|
|
5834
|
+
},
|
|
4573
5835
|
"node_modules/progress": {
|
|
4574
5836
|
"version": "2.0.3",
|
|
4575
5837
|
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
|
|
@@ -4603,14 +5865,19 @@
|
|
|
4603
5865
|
"optional": true
|
|
4604
5866
|
},
|
|
4605
5867
|
"node_modules/pump": {
|
|
4606
|
-
"version": "3.0.
|
|
4607
|
-
"integrity": "sha512-
|
|
5868
|
+
"version": "3.0.4",
|
|
5869
|
+
"integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
|
|
4608
5870
|
"license": "MIT",
|
|
4609
5871
|
"dependencies": {
|
|
4610
5872
|
"end-of-stream": "^1.1.0",
|
|
4611
5873
|
"once": "^1.3.1"
|
|
4612
5874
|
}
|
|
4613
5875
|
},
|
|
5876
|
+
"node_modules/punycode": {
|
|
5877
|
+
"version": "1.4.1",
|
|
5878
|
+
"integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
|
|
5879
|
+
"license": "MIT"
|
|
5880
|
+
},
|
|
4614
5881
|
"node_modules/puppeteer": {
|
|
4615
5882
|
"version": "5.4.0",
|
|
4616
5883
|
"integrity": "sha512-LgTqVW2ClEP4XGAT64FLQ0QWVhdNSRwJp9HfMFVfoJlZHGQu3HUbuBhR1hBow3DXZH1K3b/WfHxt1n8hr2uayw==",
|
|
@@ -4651,6 +5918,20 @@
|
|
|
4651
5918
|
],
|
|
4652
5919
|
"license": "MIT"
|
|
4653
5920
|
},
|
|
5921
|
+
"node_modules/qs": {
|
|
5922
|
+
"version": "6.15.0",
|
|
5923
|
+
"integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
|
|
5924
|
+
"license": "BSD-3-Clause",
|
|
5925
|
+
"dependencies": {
|
|
5926
|
+
"side-channel": "^1.1.0"
|
|
5927
|
+
},
|
|
5928
|
+
"engines": {
|
|
5929
|
+
"node": ">=0.6"
|
|
5930
|
+
},
|
|
5931
|
+
"funding": {
|
|
5932
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
5933
|
+
}
|
|
5934
|
+
},
|
|
4654
5935
|
"node_modules/react-is": {
|
|
4655
5936
|
"version": "18.3.1",
|
|
4656
5937
|
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
@@ -4749,10 +6030,24 @@
|
|
|
4749
6030
|
"url": "https://github.com/sponsors/isaacs"
|
|
4750
6031
|
}
|
|
4751
6032
|
},
|
|
6033
|
+
"node_modules/rimraf/node_modules/balanced-match": {
|
|
6034
|
+
"version": "1.0.2",
|
|
6035
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
6036
|
+
"license": "MIT"
|
|
6037
|
+
},
|
|
6038
|
+
"node_modules/rimraf/node_modules/brace-expansion": {
|
|
6039
|
+
"version": "1.1.12",
|
|
6040
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
6041
|
+
"license": "MIT",
|
|
6042
|
+
"dependencies": {
|
|
6043
|
+
"balanced-match": "^1.0.0",
|
|
6044
|
+
"concat-map": "0.0.1"
|
|
6045
|
+
}
|
|
6046
|
+
},
|
|
4752
6047
|
"node_modules/rimraf/node_modules/glob": {
|
|
4753
6048
|
"version": "7.2.3",
|
|
4754
6049
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
4755
|
-
"deprecated": "
|
|
6050
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
4756
6051
|
"license": "ISC",
|
|
4757
6052
|
"dependencies": {
|
|
4758
6053
|
"fs.realpath": "^1.0.0",
|
|
@@ -4770,8 +6065,8 @@
|
|
|
4770
6065
|
}
|
|
4771
6066
|
},
|
|
4772
6067
|
"node_modules/rimraf/node_modules/minimatch": {
|
|
4773
|
-
"version": "3.1.
|
|
4774
|
-
"integrity": "sha512-
|
|
6068
|
+
"version": "3.1.5",
|
|
6069
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
4775
6070
|
"license": "ISC",
|
|
4776
6071
|
"dependencies": {
|
|
4777
6072
|
"brace-expansion": "^1.1.7"
|
|
@@ -4799,6 +6094,22 @@
|
|
|
4799
6094
|
],
|
|
4800
6095
|
"license": "MIT"
|
|
4801
6096
|
},
|
|
6097
|
+
"node_modules/safe-regex-test": {
|
|
6098
|
+
"version": "1.1.0",
|
|
6099
|
+
"integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
|
|
6100
|
+
"license": "MIT",
|
|
6101
|
+
"dependencies": {
|
|
6102
|
+
"call-bound": "^1.0.2",
|
|
6103
|
+
"es-errors": "^1.3.0",
|
|
6104
|
+
"is-regex": "^1.2.1"
|
|
6105
|
+
},
|
|
6106
|
+
"engines": {
|
|
6107
|
+
"node": ">= 0.4"
|
|
6108
|
+
},
|
|
6109
|
+
"funding": {
|
|
6110
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
6111
|
+
}
|
|
6112
|
+
},
|
|
4802
6113
|
"node_modules/safer-buffer": {
|
|
4803
6114
|
"version": "2.1.2",
|
|
4804
6115
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
@@ -4806,10 +6117,13 @@
|
|
|
4806
6117
|
"optional": true
|
|
4807
6118
|
},
|
|
4808
6119
|
"node_modules/sax": {
|
|
4809
|
-
"version": "1.
|
|
4810
|
-
"integrity": "sha512-
|
|
6120
|
+
"version": "1.5.0",
|
|
6121
|
+
"integrity": "sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==",
|
|
4811
6122
|
"license": "BlueOak-1.0.0",
|
|
4812
|
-
"optional": true
|
|
6123
|
+
"optional": true,
|
|
6124
|
+
"engines": {
|
|
6125
|
+
"node": ">=11.0.0"
|
|
6126
|
+
}
|
|
4813
6127
|
},
|
|
4814
6128
|
"node_modules/semver": {
|
|
4815
6129
|
"version": "7.5.0",
|
|
@@ -4844,6 +6158,22 @@
|
|
|
4844
6158
|
"dev": true,
|
|
4845
6159
|
"license": "ISC"
|
|
4846
6160
|
},
|
|
6161
|
+
"node_modules/set-function-length": {
|
|
6162
|
+
"version": "1.2.2",
|
|
6163
|
+
"integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
|
|
6164
|
+
"license": "MIT",
|
|
6165
|
+
"dependencies": {
|
|
6166
|
+
"define-data-property": "^1.1.4",
|
|
6167
|
+
"es-errors": "^1.3.0",
|
|
6168
|
+
"function-bind": "^1.1.2",
|
|
6169
|
+
"get-intrinsic": "^1.2.4",
|
|
6170
|
+
"gopd": "^1.0.1",
|
|
6171
|
+
"has-property-descriptors": "^1.0.2"
|
|
6172
|
+
},
|
|
6173
|
+
"engines": {
|
|
6174
|
+
"node": ">= 0.4"
|
|
6175
|
+
}
|
|
6176
|
+
},
|
|
4847
6177
|
"node_modules/shebang-command": {
|
|
4848
6178
|
"version": "2.0.0",
|
|
4849
6179
|
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
@@ -4863,6 +6193,74 @@
|
|
|
4863
6193
|
"node": ">=8"
|
|
4864
6194
|
}
|
|
4865
6195
|
},
|
|
6196
|
+
"node_modules/side-channel": {
|
|
6197
|
+
"version": "1.1.0",
|
|
6198
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
6199
|
+
"license": "MIT",
|
|
6200
|
+
"dependencies": {
|
|
6201
|
+
"es-errors": "^1.3.0",
|
|
6202
|
+
"object-inspect": "^1.13.3",
|
|
6203
|
+
"side-channel-list": "^1.0.0",
|
|
6204
|
+
"side-channel-map": "^1.0.1",
|
|
6205
|
+
"side-channel-weakmap": "^1.0.2"
|
|
6206
|
+
},
|
|
6207
|
+
"engines": {
|
|
6208
|
+
"node": ">= 0.4"
|
|
6209
|
+
},
|
|
6210
|
+
"funding": {
|
|
6211
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
6212
|
+
}
|
|
6213
|
+
},
|
|
6214
|
+
"node_modules/side-channel-list": {
|
|
6215
|
+
"version": "1.0.0",
|
|
6216
|
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
6217
|
+
"license": "MIT",
|
|
6218
|
+
"dependencies": {
|
|
6219
|
+
"es-errors": "^1.3.0",
|
|
6220
|
+
"object-inspect": "^1.13.3"
|
|
6221
|
+
},
|
|
6222
|
+
"engines": {
|
|
6223
|
+
"node": ">= 0.4"
|
|
6224
|
+
},
|
|
6225
|
+
"funding": {
|
|
6226
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
6227
|
+
}
|
|
6228
|
+
},
|
|
6229
|
+
"node_modules/side-channel-map": {
|
|
6230
|
+
"version": "1.0.1",
|
|
6231
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
6232
|
+
"license": "MIT",
|
|
6233
|
+
"dependencies": {
|
|
6234
|
+
"call-bound": "^1.0.2",
|
|
6235
|
+
"es-errors": "^1.3.0",
|
|
6236
|
+
"get-intrinsic": "^1.2.5",
|
|
6237
|
+
"object-inspect": "^1.13.3"
|
|
6238
|
+
},
|
|
6239
|
+
"engines": {
|
|
6240
|
+
"node": ">= 0.4"
|
|
6241
|
+
},
|
|
6242
|
+
"funding": {
|
|
6243
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
6244
|
+
}
|
|
6245
|
+
},
|
|
6246
|
+
"node_modules/side-channel-weakmap": {
|
|
6247
|
+
"version": "1.0.2",
|
|
6248
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
6249
|
+
"license": "MIT",
|
|
6250
|
+
"dependencies": {
|
|
6251
|
+
"call-bound": "^1.0.2",
|
|
6252
|
+
"es-errors": "^1.3.0",
|
|
6253
|
+
"get-intrinsic": "^1.2.5",
|
|
6254
|
+
"object-inspect": "^1.13.3",
|
|
6255
|
+
"side-channel-map": "^1.0.1"
|
|
6256
|
+
},
|
|
6257
|
+
"engines": {
|
|
6258
|
+
"node": ">= 0.4"
|
|
6259
|
+
},
|
|
6260
|
+
"funding": {
|
|
6261
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
6262
|
+
}
|
|
6263
|
+
},
|
|
4866
6264
|
"node_modules/signal-exit": {
|
|
4867
6265
|
"version": "3.0.7",
|
|
4868
6266
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
@@ -4968,6 +6366,14 @@
|
|
|
4968
6366
|
"node": ">=10"
|
|
4969
6367
|
}
|
|
4970
6368
|
},
|
|
6369
|
+
"node_modules/stream": {
|
|
6370
|
+
"version": "0.0.3",
|
|
6371
|
+
"integrity": "sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==",
|
|
6372
|
+
"license": "MIT",
|
|
6373
|
+
"dependencies": {
|
|
6374
|
+
"component-emitter": "^2.0.0"
|
|
6375
|
+
}
|
|
6376
|
+
},
|
|
4971
6377
|
"node_modules/string_decoder": {
|
|
4972
6378
|
"version": "1.3.0",
|
|
4973
6379
|
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
@@ -5002,6 +6408,20 @@
|
|
|
5002
6408
|
"node": ">=8"
|
|
5003
6409
|
}
|
|
5004
6410
|
},
|
|
6411
|
+
"node_modules/string-width-cjs": {
|
|
6412
|
+
"name": "string-width",
|
|
6413
|
+
"version": "4.2.3",
|
|
6414
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
6415
|
+
"license": "MIT",
|
|
6416
|
+
"dependencies": {
|
|
6417
|
+
"emoji-regex": "^8.0.0",
|
|
6418
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
6419
|
+
"strip-ansi": "^6.0.1"
|
|
6420
|
+
},
|
|
6421
|
+
"engines": {
|
|
6422
|
+
"node": ">=8"
|
|
6423
|
+
}
|
|
6424
|
+
},
|
|
5005
6425
|
"node_modules/strip-ansi": {
|
|
5006
6426
|
"version": "6.0.1",
|
|
5007
6427
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
@@ -5013,6 +6433,18 @@
|
|
|
5013
6433
|
"node": ">=8"
|
|
5014
6434
|
}
|
|
5015
6435
|
},
|
|
6436
|
+
"node_modules/strip-ansi-cjs": {
|
|
6437
|
+
"name": "strip-ansi",
|
|
6438
|
+
"version": "6.0.1",
|
|
6439
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
6440
|
+
"license": "MIT",
|
|
6441
|
+
"dependencies": {
|
|
6442
|
+
"ansi-regex": "^5.0.1"
|
|
6443
|
+
},
|
|
6444
|
+
"engines": {
|
|
6445
|
+
"node": ">=8"
|
|
6446
|
+
}
|
|
6447
|
+
},
|
|
5016
6448
|
"node_modules/strip-bom": {
|
|
5017
6449
|
"version": "4.0.0",
|
|
5018
6450
|
"integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
|
|
@@ -5042,10 +6474,46 @@
|
|
|
5042
6474
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5043
6475
|
}
|
|
5044
6476
|
},
|
|
6477
|
+
"node_modules/style-dictionary": {
|
|
6478
|
+
"version": "4.1.0",
|
|
6479
|
+
"integrity": "sha512-DfY64t/XsL0bycnabIcIna/H1GyjK4sKLui2t0q6flr2uM+VpRNoSNCPOpi5YSouhKEFjoiC6ediyrMzraTz8A==",
|
|
6480
|
+
"hasInstallScript": true,
|
|
6481
|
+
"license": "Apache-2.0",
|
|
6482
|
+
"dependencies": {
|
|
6483
|
+
"@bundled-es-modules/deepmerge": "^4.3.1",
|
|
6484
|
+
"@bundled-es-modules/glob": "^10.4.2",
|
|
6485
|
+
"@bundled-es-modules/memfs": "^4.9.4",
|
|
6486
|
+
"@zip.js/zip.js": "^2.7.44",
|
|
6487
|
+
"chalk": "^5.3.0",
|
|
6488
|
+
"change-case": "^5.3.0",
|
|
6489
|
+
"commander": "^8.3.0",
|
|
6490
|
+
"is-plain-obj": "^4.1.0",
|
|
6491
|
+
"json5": "^2.2.2",
|
|
6492
|
+
"patch-package": "^8.0.0",
|
|
6493
|
+
"path-unified": "^0.1.0",
|
|
6494
|
+
"tinycolor2": "^1.6.0"
|
|
6495
|
+
},
|
|
6496
|
+
"bin": {
|
|
6497
|
+
"style-dictionary": "bin/style-dictionary.js"
|
|
6498
|
+
},
|
|
6499
|
+
"engines": {
|
|
6500
|
+
"node": ">=18.0.0"
|
|
6501
|
+
}
|
|
6502
|
+
},
|
|
6503
|
+
"node_modules/style-dictionary/node_modules/chalk": {
|
|
6504
|
+
"version": "5.6.2",
|
|
6505
|
+
"integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
|
|
6506
|
+
"license": "MIT",
|
|
6507
|
+
"engines": {
|
|
6508
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
6509
|
+
},
|
|
6510
|
+
"funding": {
|
|
6511
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
6512
|
+
}
|
|
6513
|
+
},
|
|
5045
6514
|
"node_modules/supports-color": {
|
|
5046
6515
|
"version": "7.2.0",
|
|
5047
6516
|
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5048
|
-
"dev": true,
|
|
5049
6517
|
"license": "MIT",
|
|
5050
6518
|
"dependencies": {
|
|
5051
6519
|
"has-flag": "^4.0.0"
|
|
@@ -5106,10 +6574,26 @@
|
|
|
5106
6574
|
"node": ">=8"
|
|
5107
6575
|
}
|
|
5108
6576
|
},
|
|
6577
|
+
"node_modules/test-exclude/node_modules/balanced-match": {
|
|
6578
|
+
"version": "1.0.2",
|
|
6579
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
6580
|
+
"dev": true,
|
|
6581
|
+
"license": "MIT"
|
|
6582
|
+
},
|
|
6583
|
+
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
6584
|
+
"version": "1.1.12",
|
|
6585
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
6586
|
+
"dev": true,
|
|
6587
|
+
"license": "MIT",
|
|
6588
|
+
"dependencies": {
|
|
6589
|
+
"balanced-match": "^1.0.0",
|
|
6590
|
+
"concat-map": "0.0.1"
|
|
6591
|
+
}
|
|
6592
|
+
},
|
|
5109
6593
|
"node_modules/test-exclude/node_modules/glob": {
|
|
5110
6594
|
"version": "7.2.3",
|
|
5111
6595
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
5112
|
-
"deprecated": "
|
|
6596
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
5113
6597
|
"dev": true,
|
|
5114
6598
|
"license": "ISC",
|
|
5115
6599
|
"dependencies": {
|
|
@@ -5128,8 +6612,8 @@
|
|
|
5128
6612
|
}
|
|
5129
6613
|
},
|
|
5130
6614
|
"node_modules/test-exclude/node_modules/minimatch": {
|
|
5131
|
-
"version": "3.1.
|
|
5132
|
-
"integrity": "sha512-
|
|
6615
|
+
"version": "3.1.5",
|
|
6616
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
5133
6617
|
"dev": true,
|
|
5134
6618
|
"license": "ISC",
|
|
5135
6619
|
"dependencies": {
|
|
@@ -5139,11 +6623,39 @@
|
|
|
5139
6623
|
"node": "*"
|
|
5140
6624
|
}
|
|
5141
6625
|
},
|
|
6626
|
+
"node_modules/thingies": {
|
|
6627
|
+
"version": "2.5.0",
|
|
6628
|
+
"integrity": "sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==",
|
|
6629
|
+
"license": "MIT",
|
|
6630
|
+
"engines": {
|
|
6631
|
+
"node": ">=10.18"
|
|
6632
|
+
},
|
|
6633
|
+
"funding": {
|
|
6634
|
+
"type": "github",
|
|
6635
|
+
"url": "https://github.com/sponsors/streamich"
|
|
6636
|
+
},
|
|
6637
|
+
"peerDependencies": {
|
|
6638
|
+
"tslib": "^2"
|
|
6639
|
+
}
|
|
6640
|
+
},
|
|
5142
6641
|
"node_modules/through": {
|
|
5143
6642
|
"version": "2.3.8",
|
|
5144
6643
|
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
|
|
5145
6644
|
"license": "MIT"
|
|
5146
6645
|
},
|
|
6646
|
+
"node_modules/tinycolor2": {
|
|
6647
|
+
"version": "1.6.0",
|
|
6648
|
+
"integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==",
|
|
6649
|
+
"license": "MIT"
|
|
6650
|
+
},
|
|
6651
|
+
"node_modules/tmp": {
|
|
6652
|
+
"version": "0.2.5",
|
|
6653
|
+
"integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==",
|
|
6654
|
+
"license": "MIT",
|
|
6655
|
+
"engines": {
|
|
6656
|
+
"node": ">=14.14"
|
|
6657
|
+
}
|
|
6658
|
+
},
|
|
5147
6659
|
"node_modules/tmpl": {
|
|
5148
6660
|
"version": "1.0.5",
|
|
5149
6661
|
"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
|
|
@@ -5153,7 +6665,6 @@
|
|
|
5153
6665
|
"node_modules/to-regex-range": {
|
|
5154
6666
|
"version": "5.0.1",
|
|
5155
6667
|
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
5156
|
-
"dev": true,
|
|
5157
6668
|
"license": "MIT",
|
|
5158
6669
|
"dependencies": {
|
|
5159
6670
|
"is-number": "^7.0.0"
|
|
@@ -5167,6 +6678,21 @@
|
|
|
5167
6678
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
|
5168
6679
|
"license": "MIT"
|
|
5169
6680
|
},
|
|
6681
|
+
"node_modules/tree-dump": {
|
|
6682
|
+
"version": "1.1.0",
|
|
6683
|
+
"integrity": "sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==",
|
|
6684
|
+
"license": "Apache-2.0",
|
|
6685
|
+
"engines": {
|
|
6686
|
+
"node": ">=10.0"
|
|
6687
|
+
},
|
|
6688
|
+
"funding": {
|
|
6689
|
+
"type": "github",
|
|
6690
|
+
"url": "https://github.com/sponsors/streamich"
|
|
6691
|
+
},
|
|
6692
|
+
"peerDependencies": {
|
|
6693
|
+
"tslib": "2"
|
|
6694
|
+
}
|
|
6695
|
+
},
|
|
5170
6696
|
"node_modules/ts-jest": {
|
|
5171
6697
|
"version": "29.0.3",
|
|
5172
6698
|
"integrity": "sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==",
|
|
@@ -5270,6 +6796,29 @@
|
|
|
5270
6796
|
"through": "^2.3.8"
|
|
5271
6797
|
}
|
|
5272
6798
|
},
|
|
6799
|
+
"node_modules/unbzip2-stream/node_modules/buffer": {
|
|
6800
|
+
"version": "5.7.1",
|
|
6801
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
6802
|
+
"funding": [
|
|
6803
|
+
{
|
|
6804
|
+
"type": "github",
|
|
6805
|
+
"url": "https://github.com/sponsors/feross"
|
|
6806
|
+
},
|
|
6807
|
+
{
|
|
6808
|
+
"type": "patreon",
|
|
6809
|
+
"url": "https://www.patreon.com/feross"
|
|
6810
|
+
},
|
|
6811
|
+
{
|
|
6812
|
+
"type": "consulting",
|
|
6813
|
+
"url": "https://feross.org/support"
|
|
6814
|
+
}
|
|
6815
|
+
],
|
|
6816
|
+
"license": "MIT",
|
|
6817
|
+
"dependencies": {
|
|
6818
|
+
"base64-js": "^1.3.1",
|
|
6819
|
+
"ieee754": "^1.1.13"
|
|
6820
|
+
}
|
|
6821
|
+
},
|
|
5273
6822
|
"node_modules/universalify": {
|
|
5274
6823
|
"version": "2.0.1",
|
|
5275
6824
|
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
@@ -5279,8 +6828,8 @@
|
|
|
5279
6828
|
}
|
|
5280
6829
|
},
|
|
5281
6830
|
"node_modules/update-browserslist-db": {
|
|
5282
|
-
"version": "1.
|
|
5283
|
-
"integrity": "sha512-
|
|
6831
|
+
"version": "1.2.3",
|
|
6832
|
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
|
5284
6833
|
"dev": true,
|
|
5285
6834
|
"funding": [
|
|
5286
6835
|
{
|
|
@@ -5314,6 +6863,30 @@
|
|
|
5314
6863
|
"deprecated": "Please see https://github.com/lydell/urix#deprecated",
|
|
5315
6864
|
"license": "MIT"
|
|
5316
6865
|
},
|
|
6866
|
+
"node_modules/url": {
|
|
6867
|
+
"version": "0.11.4",
|
|
6868
|
+
"integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
|
|
6869
|
+
"license": "MIT",
|
|
6870
|
+
"dependencies": {
|
|
6871
|
+
"punycode": "^1.4.1",
|
|
6872
|
+
"qs": "^6.12.3"
|
|
6873
|
+
},
|
|
6874
|
+
"engines": {
|
|
6875
|
+
"node": ">= 0.4"
|
|
6876
|
+
}
|
|
6877
|
+
},
|
|
6878
|
+
"node_modules/util": {
|
|
6879
|
+
"version": "0.12.5",
|
|
6880
|
+
"integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
|
|
6881
|
+
"license": "MIT",
|
|
6882
|
+
"dependencies": {
|
|
6883
|
+
"inherits": "^2.0.3",
|
|
6884
|
+
"is-arguments": "^1.0.4",
|
|
6885
|
+
"is-generator-function": "^1.0.7",
|
|
6886
|
+
"is-typed-array": "^1.1.3",
|
|
6887
|
+
"which-typed-array": "^1.1.2"
|
|
6888
|
+
}
|
|
6889
|
+
},
|
|
5317
6890
|
"node_modules/util-deprecate": {
|
|
5318
6891
|
"version": "1.0.2",
|
|
5319
6892
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
@@ -5370,6 +6943,26 @@
|
|
|
5370
6943
|
"node": ">= 8"
|
|
5371
6944
|
}
|
|
5372
6945
|
},
|
|
6946
|
+
"node_modules/which-typed-array": {
|
|
6947
|
+
"version": "1.1.20",
|
|
6948
|
+
"integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
|
|
6949
|
+
"license": "MIT",
|
|
6950
|
+
"dependencies": {
|
|
6951
|
+
"available-typed-arrays": "^1.0.7",
|
|
6952
|
+
"call-bind": "^1.0.8",
|
|
6953
|
+
"call-bound": "^1.0.4",
|
|
6954
|
+
"for-each": "^0.3.5",
|
|
6955
|
+
"get-proto": "^1.0.1",
|
|
6956
|
+
"gopd": "^1.2.0",
|
|
6957
|
+
"has-tostringtag": "^1.0.2"
|
|
6958
|
+
},
|
|
6959
|
+
"engines": {
|
|
6960
|
+
"node": ">= 0.4"
|
|
6961
|
+
},
|
|
6962
|
+
"funding": {
|
|
6963
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
6964
|
+
}
|
|
6965
|
+
},
|
|
5373
6966
|
"node_modules/wordwrap": {
|
|
5374
6967
|
"version": "1.0.0",
|
|
5375
6968
|
"integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
|
|
@@ -5391,6 +6984,23 @@
|
|
|
5391
6984
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
5392
6985
|
}
|
|
5393
6986
|
},
|
|
6987
|
+
"node_modules/wrap-ansi-cjs": {
|
|
6988
|
+
"name": "wrap-ansi",
|
|
6989
|
+
"version": "7.0.0",
|
|
6990
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
6991
|
+
"license": "MIT",
|
|
6992
|
+
"dependencies": {
|
|
6993
|
+
"ansi-styles": "^4.0.0",
|
|
6994
|
+
"string-width": "^4.1.0",
|
|
6995
|
+
"strip-ansi": "^6.0.0"
|
|
6996
|
+
},
|
|
6997
|
+
"engines": {
|
|
6998
|
+
"node": ">=10"
|
|
6999
|
+
},
|
|
7000
|
+
"funding": {
|
|
7001
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
7002
|
+
}
|
|
7003
|
+
},
|
|
5394
7004
|
"node_modules/wrappy": {
|
|
5395
7005
|
"version": "1.0.2",
|
|
5396
7006
|
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
@@ -5443,6 +7053,20 @@
|
|
|
5443
7053
|
"dev": true,
|
|
5444
7054
|
"license": "ISC"
|
|
5445
7055
|
},
|
|
7056
|
+
"node_modules/yaml": {
|
|
7057
|
+
"version": "2.8.2",
|
|
7058
|
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
7059
|
+
"license": "ISC",
|
|
7060
|
+
"bin": {
|
|
7061
|
+
"yaml": "bin.mjs"
|
|
7062
|
+
},
|
|
7063
|
+
"engines": {
|
|
7064
|
+
"node": ">= 14.6"
|
|
7065
|
+
},
|
|
7066
|
+
"funding": {
|
|
7067
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
7068
|
+
}
|
|
7069
|
+
},
|
|
5446
7070
|
"node_modules/yargs": {
|
|
5447
7071
|
"version": "16.2.0",
|
|
5448
7072
|
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
|