@salesforce/templates 66.11.0 → 66.12.0
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/lib/generators/projectGenerator.js +4 -1
- package/lib/generators/projectGenerator.js.map +1 -1
- package/lib/templates/project/angularextapp/.forceignore +15 -0
- package/lib/templates/project/angularextapp/.husky/pre-commit +4 -0
- package/lib/templates/project/angularextapp/.prettierignore +11 -0
- package/lib/templates/project/angularextapp/.prettierrc +17 -0
- package/lib/templates/project/angularextapp/CHANGELOG.md +4086 -0
- package/lib/templates/project/angularextapp/README.md +77 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_d_/_s_/angularextapp1/angularextapp1.digitalExperience-meta.xml +11 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_d_/_s_/angularextapp1/sfdc_cms__site/angularextapp1/_meta.json +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_d_/_s_/angularextapp1/sfdc_cms__site/angularextapp1/content.json +10 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_dc_/angularextapp1.digitalExperienceConfig-meta.xml +8 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/.forceignore +15 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/.postcssrc.json +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/.prettierignore +8 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/.prettierrc +12 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/CHANGELOG.md +4 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/README.md +85 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/angular.json +101 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/angularextapp.uibundle-meta.xml +8 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/e2e/app.spec.ts +15 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/esbuild/api-version.mjs +17 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/eslint.config.js +60 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/middleware/html.mjs +3 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/middleware/proxy.mjs +12 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/package-lock.json +13600 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/package.json +56 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/playwright.config.ts +25 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/public/favicon.ico +0 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/scripts/rewrite-e2e-assets.mjs +30 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/account/account-search.service.ts +196 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/account/distinctAccountIndustries.ts +26 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/account/distinctAccountTypes.ts +26 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/account/getAccountDetail.ts +128 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/account/searchAccounts.ts +58 -0
- package/lib/templates/{uiBundles/angularbasic/src/app/api/graphql-client.service.spec.ts → project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/data-client.service.spec.ts} +36 -6
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/api/user-profile.service.ts +126 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/app.config.ts +22 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/app.html +1 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/app.routes.ts +77 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/app.spec.ts +18 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/app.ts +15 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/layout/app-layout/app-layout.html +53 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/layout/app-layout/app-layout.spec.ts +89 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/layout/app-layout/app-layout.ts +81 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/alert/alert.html +31 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/alert/alert.ts +53 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/button/button.html +18 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/button/button.scss +112 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/button/button.ts +57 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/card/card.scss +34 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/card/card.ts +110 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/collapsible/collapsible.html +10 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/collapsible/collapsible.ts +26 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-picker/date-picker.html +25 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-picker/date-picker.scss +36 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-picker/date-picker.ts +41 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-range-picker/date-range-picker.html +34 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-range-picker/date-range-picker.scss +33 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-range-picker/date-range-picker.ts +66 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/dialog/dialog.html +37 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/dialog/dialog.ts +55 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/field/field.html +21 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/field/field.ts +36 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/input/input.html +19 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/input/input.scss +35 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/input/input.ts +36 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/label/label.html +3 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/label/label.ts +17 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/paginator/paginator.html +10 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/paginator/paginator.ts +37 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/popover/popover.html +41 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/popover/popover.ts +40 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/select/select.html +24 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/select/select.scss +35 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/select/select.ts +72 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/separator/separator.html +1 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/separator/separator.scss +23 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/separator/separator.ts +56 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/skeleton/skeleton.html +1 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/skeleton/skeleton.scss +28 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/skeleton/skeleton.ts +24 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/components/ui/spinner/spinner.ts +35 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/auth/auth.guard.ts +50 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/auth/auth.service.ts +126 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/auth-form/auth-form.html +34 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/auth-form/auth-form.ts +94 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/auth-layout/auth-layout.html +2 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/auth-layout/auth-layout.ts +30 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/card-layout/card-layout.html +16 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/card-layout/card-layout.ts +40 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/config/authentication.config.ts +75 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/footer-link/footer-link.html +9 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/footer-link/footer-link.ts +26 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/menu/auth-menu/auth-menu.html +26 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/menu/auth-menu/auth-menu.ts +46 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/reactive-form-page.base.ts +50 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/session/session.html +55 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/session/session.ts +205 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/status-alert/status-alert.html +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/status-alert/status-alert.ts +52 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/submit-button/submit-button.html +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/submit-button/submit-button.scss +17 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/submit-button/submit-button.ts +35 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/utils/auth-helpers.ts +68 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/utils/auth-validators.ts +72 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/utils/helpers.ts +85 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/utils/session-time-servlet.ts +130 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/utils/session-timeout.config.ts +83 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/authentication/utils/session-timeout.service.ts +201 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/breadcrumb/breadcrumb.html +54 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/breadcrumb/breadcrumb.ts +40 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/active-filters.html +23 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/active-filters.ts +78 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-filter.html +18 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-filter.ts +137 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-range-filter.html +11 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-range-filter.ts +69 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/filter-field-wrapper.html +11 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/filter-field-wrapper.ts +36 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/multi-select-filter.html +10 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/multi-select-filter.ts +58 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/numeric-range-filter.html +22 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/numeric-range-filter.ts +146 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/search-filter.html +8 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/search-filter.ts +82 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/select-filter.html +12 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/select-filter.ts +65 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/text-filter.html +12 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/text-filter.ts +90 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/object-search-state.service.ts +232 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/pagination/pagination.html +8 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/pagination/pagination.ts +61 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/search-bar/search-bar.html +59 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/search-bar/search-bar.ts +108 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/sort-control/sort-control.html +50 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/sort-control/sort-control.ts +72 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/debounce.ts +31 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/field-utils.ts +54 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/filter-utils.ts +354 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/index.ts +12 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/sort-utils.ts +46 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/account-detail/account-detail-page.html +164 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/account-detail/account-detail-page.scss +7 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/account-detail/account-detail-page.ts +196 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/account-search/account-search-page.html +111 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/account-search/account-search-page.ts +217 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/change-password/change-password-page.html +68 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/change-password/change-password-page.ts +82 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/forgot-password/forgot-password-page.html +35 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/forgot-password/forgot-password-page.ts +87 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/home/home-page.html +18 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/home/home-page.ts +47 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/home/home.html +6 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/home/home.spec.ts +23 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/home/home.ts +13 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/login/login-page.html +47 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/login/login-page.ts +89 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/not-found/not-found.html +12 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/not-found/not-found.spec.ts +33 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/not-found/not-found.ts +15 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/profile/profile-page.html +116 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/profile/profile-page.ts +194 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/register/register-page.html +80 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/register/register-page.ts +93 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/reset-password/reset-password-page.html +60 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/pages/reset-password/reset-password-page.ts +96 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/app/utils/async-data.ts +99 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/index.html +14 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/main.ts +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/styles.scss +170 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/theme.scss +39 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/src/types/sf-globals.d.ts +9 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/tsconfig.app.json +11 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/tsconfig.json +33 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/tsconfig.spec.json +10 -0
- package/lib/templates/project/angularextapp/_p_/_m_/_w_/_a_/ui-bundle.json +7 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleAuthUtils.cls +68 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleAuthUtils.cls-meta.xml +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleChangePassword.cls +77 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleChangePassword.cls-meta.xml +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleForgotPassword.cls +71 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleForgotPassword.cls-meta.xml +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleLogin.cls +105 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleLogin.cls-meta.xml +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleRegistration.cls +162 -0
- package/lib/templates/project/angularextapp/_p_/_m_/classes/UIBundleRegistration.cls-meta.xml +5 -0
- package/lib/templates/project/angularextapp/_p_/_m_/networks/angularextapp.network-meta.xml +60 -0
- package/lib/templates/project/angularextapp/_p_/_m_/package.xml +24 -0
- package/lib/templates/project/angularextapp/_p_/_m_/permissionsets/angularextapp_Guest_User_Api_Access.permissionset-meta.xml +9 -0
- package/lib/templates/project/angularextapp/_p_/_m_/sites/angularextapp.site-meta.xml +31 -0
- package/lib/templates/project/angularextapp/config/project-scratch-def.json +13 -0
- package/lib/templates/project/angularextapp/eslint.config.js +7 -0
- package/lib/templates/project/angularextapp/jest.config.js +6 -0
- package/lib/templates/project/angularextapp/package.json +46 -0
- package/lib/templates/project/angularextapp/scripts/apex/hello.apex +10 -0
- package/lib/templates/project/angularextapp/scripts/gitignore-templates.json +4 -0
- package/lib/templates/project/angularextapp/scripts/graphql-search.sh +191 -0
- package/lib/templates/project/angularextapp/scripts/org-setup-config-schema.mjs +103 -0
- package/lib/templates/project/angularextapp/scripts/org-setup-dev.mjs +87 -0
- package/lib/templates/project/angularextapp/scripts/org-setup-utils.mjs +369 -0
- package/lib/templates/project/angularextapp/scripts/org-setup-xml.mjs +182 -0
- package/lib/templates/project/angularextapp/scripts/org-setup.config.json +9 -0
- package/lib/templates/project/angularextapp/scripts/org-setup.mjs +1702 -0
- package/lib/templates/project/angularextapp/scripts/sf-project-setup.mjs +103 -0
- package/lib/templates/project/angularextapp/scripts/soql/account.soql +6 -0
- package/lib/templates/project/angularextapp/scripts/validate-org-setup-config.mjs +38 -0
- package/lib/templates/project/angularextapp/sfdx-project.json +12 -0
- package/lib/templates/project/angularintapp/.forceignore +15 -0
- package/lib/templates/project/angularintapp/.husky/pre-commit +4 -0
- package/lib/templates/project/angularintapp/.prettierignore +11 -0
- package/lib/templates/project/angularintapp/.prettierrc +17 -0
- package/lib/templates/project/angularintapp/CHANGELOG.md +4086 -0
- package/lib/templates/project/angularintapp/README.md +77 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/.forceignore +15 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/.postcssrc.json +5 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/.prettierignore +8 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/.prettierrc +12 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/CHANGELOG.md +4 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/README.md +85 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/angular.json +101 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/angularintapp.uibundle-meta.xml +8 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/e2e/app.spec.ts +15 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/esbuild/api-version.mjs +17 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/eslint.config.js +60 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/middleware/html.mjs +3 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/middleware/proxy.mjs +12 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/package-lock.json +13619 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/package.json +57 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/playwright.config.ts +25 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/public/favicon.ico +0 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/scripts/rewrite-e2e-assets.mjs +30 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/account/account-search.service.ts +196 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/account/distinctAccountIndustries.ts +26 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/account/distinctAccountTypes.ts +26 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/account/getAccountDetail.ts +128 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/account/searchAccounts.ts +58 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/data-client.service.spec.ts +184 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/app.config.ts +22 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/app.html +1 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/app.routes.ts +31 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/app.spec.ts +18 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/app.ts +15 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/layout/app-layout/app-layout.html +52 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/layout/app-layout/app-layout.spec.ts +90 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/layout/app-layout/app-layout.ts +67 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/alert/alert.html +31 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/alert/alert.ts +53 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/button/button.html +18 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/button/button.scss +112 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/button/button.ts +57 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/card/card.scss +34 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/card/card.ts +110 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/collapsible/collapsible.html +10 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/collapsible/collapsible.ts +26 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-picker/date-picker.html +25 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-picker/date-picker.scss +36 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-picker/date-picker.ts +41 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-range-picker/date-range-picker.html +34 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-range-picker/date-range-picker.scss +33 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/date-range-picker/date-range-picker.ts +66 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/dialog/dialog.html +37 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/dialog/dialog.ts +55 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/field/field.html +21 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/field/field.ts +36 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/input/input.html +19 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/input/input.scss +35 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/input/input.ts +36 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/label/label.html +3 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/label/label.ts +17 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/paginator/paginator.html +10 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/paginator/paginator.ts +37 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/popover/popover.html +41 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/popover/popover.ts +40 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/select/select.html +24 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/select/select.scss +35 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/select/select.ts +72 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/separator/separator.html +1 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/separator/separator.scss +23 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/separator/separator.ts +56 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/skeleton/skeleton.html +1 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/skeleton/skeleton.scss +28 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/skeleton/skeleton.ts +24 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/components/ui/spinner/spinner.ts +35 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/agentforce/agentforce-embed.service.ts +177 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/agentforce/conversation.html +3 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/agentforce/conversation.ts +119 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/breadcrumb/breadcrumb.html +54 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/breadcrumb/breadcrumb.ts +40 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/active-filters.html +23 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/active-filters.ts +78 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-filter.html +18 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-filter.ts +137 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-range-filter.html +11 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/date-range-filter.ts +69 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/filter-field-wrapper.html +11 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/filter-field-wrapper.ts +36 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/multi-select-filter.html +10 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/multi-select-filter.ts +58 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/numeric-range-filter.html +22 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/numeric-range-filter.ts +146 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/search-filter.html +8 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/search-filter.ts +82 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/select-filter.html +12 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/select-filter.ts +65 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/text-filter.html +12 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/filters/text-filter.ts +90 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/object-search-state.service.ts +232 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/pagination/pagination.html +8 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/pagination/pagination.ts +61 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/search-bar/search-bar.html +59 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/search-bar/search-bar.ts +108 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/sort-control/sort-control.html +50 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/sort-control/sort-control.ts +72 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/debounce.ts +31 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/field-utils.ts +54 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/filter-utils.ts +354 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/index.ts +12 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/features/object-search/utils/sort-utils.ts +46 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/account-detail/account-detail-page.html +164 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/account-detail/account-detail-page.scss +7 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/account-detail/account-detail-page.ts +196 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/account-search/account-search-page.html +111 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/account-search/account-search-page.ts +217 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/home/home-page.html +18 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/home/home-page.ts +47 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/home/home.html +6 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/home/home.spec.ts +23 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/home/home.ts +13 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/not-found/not-found.html +12 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/not-found/not-found.spec.ts +33 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/pages/not-found/not-found.ts +15 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/types/conversation.ts +55 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/types/globals.d.ts +13 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/app/utils/async-data.ts +99 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/index.html +14 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/index.ts +15 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/main.ts +5 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/styles.scss +170 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/theme.scss +39 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/src/types/sf-globals.d.ts +9 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/tsconfig.app.json +11 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/tsconfig.json +33 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/tsconfig.spec.json +10 -0
- package/lib/templates/project/angularintapp/_p_/_m_/_w_/_a_/ui-bundle.json +7 -0
- package/lib/templates/project/angularintapp/_p_/_m_/applications/angularintapp.app-meta.xml +17 -0
- package/lib/templates/project/angularintapp/_p_/_m_/permissionsets/angularintapp_Access.permissionset-meta.xml +13 -0
- package/lib/templates/project/angularintapp/config/project-scratch-def.json +13 -0
- package/lib/templates/project/angularintapp/eslint.config.js +7 -0
- package/lib/templates/project/angularintapp/jest.config.js +6 -0
- package/lib/templates/project/angularintapp/package.json +46 -0
- package/lib/templates/project/angularintapp/scripts/apex/hello.apex +10 -0
- package/lib/templates/project/angularintapp/scripts/gitignore-templates.json +4 -0
- package/lib/templates/project/angularintapp/scripts/graphql-search.sh +191 -0
- package/lib/templates/project/angularintapp/scripts/org-setup-config-schema.mjs +103 -0
- package/lib/templates/project/angularintapp/scripts/org-setup-dev.mjs +87 -0
- package/lib/templates/project/angularintapp/scripts/org-setup-utils.mjs +369 -0
- package/lib/templates/project/angularintapp/scripts/org-setup-xml.mjs +182 -0
- package/lib/templates/project/angularintapp/scripts/org-setup.config.json +9 -0
- package/lib/templates/project/angularintapp/scripts/org-setup.mjs +1702 -0
- package/lib/templates/project/angularintapp/scripts/sf-project-setup.mjs +103 -0
- package/lib/templates/project/angularintapp/scripts/soql/account.soql +6 -0
- package/lib/templates/project/angularintapp/scripts/validate-org-setup-config.mjs +38 -0
- package/lib/templates/project/angularintapp/sfdx-project.json +12 -0
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +864 -807
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +857 -800
- package/lib/templates/uiBundles/angularbasic/angular.json +11 -7
- package/lib/templates/uiBundles/angularbasic/eslint.config.js +4 -0
- package/lib/templates/uiBundles/angularbasic/package-lock.json +351 -319
- package/lib/templates/uiBundles/angularbasic/package.json +4 -0
- package/lib/templates/uiBundles/angularbasic/src/app/api/data-client.service.spec.ts +184 -0
- package/lib/templates/uiBundles/angularbasic/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/uiBundles/angularbasic/src/app/app.config.ts +15 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.routes.ts +6 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.ts +7 -2
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.html +2 -1
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.ts +9 -3
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.html +31 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.ts +53 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.html +18 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.scss +112 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.ts +57 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.scss +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.ts +110 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.ts +26 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.html +25 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.scss +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.ts +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.html +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.scss +33 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.ts +66 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.html +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.ts +55 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.html +21 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.html +19 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.html +3 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.ts +17 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.ts +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.html +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.ts +40 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.html +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.ts +72 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.scss +23 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.ts +56 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.scss +28 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.ts +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/spinner/spinner.component.ts +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/utils/async-data.ts +99 -0
- package/lib/templates/uiBundles/angularbasic/src/index.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.scss +170 -0
- package/lib/templates/uiBundles/angularbasic/src/theme.scss +39 -0
- package/lib/templates/uiBundles/reactbasic/package-lock.json +857 -800
- package/lib/utils/types.d.ts +1 -1
- package/lib/utils/uiBundleTemplateUtils.js +10 -0
- package/lib/utils/uiBundleTemplateUtils.js.map +1 -1
- package/package.json +5 -3
- package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.ts +0 -48
- package/lib/templates/uiBundles/angularbasic/src/app/app.css +0 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.css +0 -12
- /package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.spec.ts +0 -0
|
@@ -8,10 +8,13 @@
|
|
|
8
8
|
"name": "base-angular-app",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
+
"@angular/animations": "^21.2.0",
|
|
12
|
+
"@angular/cdk": "^21.2.0",
|
|
11
13
|
"@angular/common": "^21.2.0",
|
|
12
14
|
"@angular/compiler": "^21.2.0",
|
|
13
15
|
"@angular/core": "^21.2.0",
|
|
14
16
|
"@angular/forms": "^21.2.0",
|
|
17
|
+
"@angular/material": "^21.2.0",
|
|
15
18
|
"@angular/platform-browser": "^21.2.0",
|
|
16
19
|
"@angular/router": "^21.2.0",
|
|
17
20
|
"@salesforce/angular-plugin-ui-bundle": "^11.4.4",
|
|
@@ -319,12 +322,12 @@
|
|
|
319
322
|
}
|
|
320
323
|
},
|
|
321
324
|
"node_modules/@angular-devkit/architect": {
|
|
322
|
-
"version": "0.2102.
|
|
323
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2102.
|
|
324
|
-
"integrity": "sha512-
|
|
325
|
+
"version": "0.2102.19",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2102.19.tgz",
|
|
327
|
+
"integrity": "sha512-cj4tzUMiloLTg5rNf17E8MsvIxCWYoBiBsaj7ns6dgXqT9XCeG+J0TA2t1M+N9uuqfeLd22U/rYoCkADmcircQ==",
|
|
325
328
|
"license": "MIT",
|
|
326
329
|
"dependencies": {
|
|
327
|
-
"@angular-devkit/core": "21.2.
|
|
330
|
+
"@angular-devkit/core": "21.2.19",
|
|
328
331
|
"rxjs": "7.8.2"
|
|
329
332
|
},
|
|
330
333
|
"bin": {
|
|
@@ -337,9 +340,9 @@
|
|
|
337
340
|
}
|
|
338
341
|
},
|
|
339
342
|
"node_modules/@angular-devkit/core": {
|
|
340
|
-
"version": "21.2.
|
|
341
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.2.
|
|
342
|
-
"integrity": "sha512-
|
|
343
|
+
"version": "21.2.19",
|
|
344
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.2.19.tgz",
|
|
345
|
+
"integrity": "sha512-dtpJMQBz5nhkcIogPmXP/aT2Ak8m/wLRPOSTI/g4vSJSuGiI53PgtWq4/wfQga6E6wdM2XWsblAE89d8w5heQQ==",
|
|
343
346
|
"license": "MIT",
|
|
344
347
|
"dependencies": {
|
|
345
348
|
"ajv": "8.18.0",
|
|
@@ -364,13 +367,13 @@
|
|
|
364
367
|
}
|
|
365
368
|
},
|
|
366
369
|
"node_modules/@angular-devkit/schematics": {
|
|
367
|
-
"version": "21.2.
|
|
368
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.2.
|
|
369
|
-
"integrity": "sha512-
|
|
370
|
+
"version": "21.2.19",
|
|
371
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.2.19.tgz",
|
|
372
|
+
"integrity": "sha512-AG3Fzh9wJCmKBfxUQOUWaEHMj5Gq2O+Msf1z52aDSxbVhs5/iSQcXGPv/DLdAXu7d4xmQhLouNe9Glaq2omDyw==",
|
|
370
373
|
"dev": true,
|
|
371
374
|
"license": "MIT",
|
|
372
375
|
"dependencies": {
|
|
373
|
-
"@angular-devkit/core": "21.2.
|
|
376
|
+
"@angular-devkit/core": "21.2.19",
|
|
374
377
|
"jsonc-parser": "3.3.1",
|
|
375
378
|
"magic-string": "0.30.21",
|
|
376
379
|
"ora": "9.3.0",
|
|
@@ -491,14 +494,30 @@
|
|
|
491
494
|
"typescript": "*"
|
|
492
495
|
}
|
|
493
496
|
},
|
|
494
|
-
"node_modules/@angular/
|
|
497
|
+
"node_modules/@angular/animations": {
|
|
495
498
|
"version": "21.2.18",
|
|
496
|
-
"resolved": "https://registry.npmjs.org/@angular/
|
|
497
|
-
"integrity": "sha512-
|
|
499
|
+
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-21.2.18.tgz",
|
|
500
|
+
"integrity": "sha512-zN++Qb4Oz4x/5LYHuW9FItm7aHsV4HBz518GT25QusMvGymh+4io2TWhPYB0C9jx+g5q8GeQLd3c8r42yLrRxw==",
|
|
501
|
+
"deprecated": "@angular/animations is deprecated. Use `animate.enter` and `animate.leave` instead. For more information see: https://v22.angular.dev/guide/animations.",
|
|
502
|
+
"license": "MIT",
|
|
503
|
+
"dependencies": {
|
|
504
|
+
"tslib": "^2.3.0"
|
|
505
|
+
},
|
|
506
|
+
"engines": {
|
|
507
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
508
|
+
},
|
|
509
|
+
"peerDependencies": {
|
|
510
|
+
"@angular/core": "21.2.18"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"node_modules/@angular/build": {
|
|
514
|
+
"version": "21.2.19",
|
|
515
|
+
"resolved": "https://registry.npmjs.org/@angular/build/-/build-21.2.19.tgz",
|
|
516
|
+
"integrity": "sha512-emy9mqrTXAwhZzcvx8MaHyz+cUR06PVGxnqy91+bpDxPP9S5x67sPoOkY9y/ETFFhRpB5ULlUxyq0eN/pi6QOg==",
|
|
498
517
|
"license": "MIT",
|
|
499
518
|
"dependencies": {
|
|
500
519
|
"@ampproject/remapping": "2.3.0",
|
|
501
|
-
"@angular-devkit/architect": "0.2102.
|
|
520
|
+
"@angular-devkit/architect": "0.2102.19",
|
|
502
521
|
"@babel/core": "7.29.7",
|
|
503
522
|
"@babel/helper-annotate-as-pure": "7.27.3",
|
|
504
523
|
"@babel/helper-split-export-declaration": "7.24.7",
|
|
@@ -541,7 +560,7 @@
|
|
|
541
560
|
"@angular/platform-browser": "^21.0.0",
|
|
542
561
|
"@angular/platform-server": "^21.0.0",
|
|
543
562
|
"@angular/service-worker": "^21.0.0",
|
|
544
|
-
"@angular/ssr": "^21.2.
|
|
563
|
+
"@angular/ssr": "^21.2.19",
|
|
545
564
|
"karma": "^6.4.0",
|
|
546
565
|
"less": "^4.2.0",
|
|
547
566
|
"ng-packagr": "^21.0.0",
|
|
@@ -590,20 +609,36 @@
|
|
|
590
609
|
}
|
|
591
610
|
}
|
|
592
611
|
},
|
|
612
|
+
"node_modules/@angular/cdk": {
|
|
613
|
+
"version": "21.2.14",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-21.2.14.tgz",
|
|
615
|
+
"integrity": "sha512-806REq/CLf37nEhmmd8Q+ILN8z/RVG2vk2n8YZ/4TdHpcBCi5ux4AxLbpMmduLwGPOzPagJ6ggRzE5fnX0rmcQ==",
|
|
616
|
+
"license": "MIT",
|
|
617
|
+
"dependencies": {
|
|
618
|
+
"parse5": "^8.0.0",
|
|
619
|
+
"tslib": "^2.3.0"
|
|
620
|
+
},
|
|
621
|
+
"peerDependencies": {
|
|
622
|
+
"@angular/common": "^21.0.0 || ^22.0.0",
|
|
623
|
+
"@angular/core": "^21.0.0 || ^22.0.0",
|
|
624
|
+
"@angular/platform-browser": "^21.0.0 || ^22.0.0",
|
|
625
|
+
"rxjs": "^6.5.3 || ^7.4.0"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
593
628
|
"node_modules/@angular/cli": {
|
|
594
|
-
"version": "21.2.
|
|
595
|
-
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.2.
|
|
596
|
-
"integrity": "sha512-
|
|
629
|
+
"version": "21.2.19",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.2.19.tgz",
|
|
631
|
+
"integrity": "sha512-i78NzvoNonAY17QgzSmqrYnXHmEfraLv4wZ/o/m3efxuz61ZJ+5X/PsCeAhbwBvQfRrPRQaJV2tK9vGjHa+U6w==",
|
|
597
632
|
"dev": true,
|
|
598
633
|
"license": "MIT",
|
|
599
634
|
"dependencies": {
|
|
600
|
-
"@angular-devkit/architect": "0.2102.
|
|
601
|
-
"@angular-devkit/core": "21.2.
|
|
602
|
-
"@angular-devkit/schematics": "21.2.
|
|
635
|
+
"@angular-devkit/architect": "0.2102.19",
|
|
636
|
+
"@angular-devkit/core": "21.2.19",
|
|
637
|
+
"@angular-devkit/schematics": "21.2.19",
|
|
603
638
|
"@inquirer/prompts": "7.10.1",
|
|
604
639
|
"@listr2/prompt-adapter-inquirer": "3.0.5",
|
|
605
640
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
606
|
-
"@schematics/angular": "21.2.
|
|
641
|
+
"@schematics/angular": "21.2.19",
|
|
607
642
|
"@yarnpkg/lockfile": "1.1.0",
|
|
608
643
|
"algoliasearch": "5.48.1",
|
|
609
644
|
"ini": "6.0.0",
|
|
@@ -729,6 +764,23 @@
|
|
|
729
764
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
730
765
|
}
|
|
731
766
|
},
|
|
767
|
+
"node_modules/@angular/material": {
|
|
768
|
+
"version": "21.2.14",
|
|
769
|
+
"resolved": "https://registry.npmjs.org/@angular/material/-/material-21.2.14.tgz",
|
|
770
|
+
"integrity": "sha512-fMQca8VRtei93JRRG9qQ+u08DCb0nga59Esoakq5yx3+A1NfdpFeUS1tBns56U04o8KAaIAwZK3NBqXz8ZKNqg==",
|
|
771
|
+
"license": "MIT",
|
|
772
|
+
"dependencies": {
|
|
773
|
+
"tslib": "^2.3.0"
|
|
774
|
+
},
|
|
775
|
+
"peerDependencies": {
|
|
776
|
+
"@angular/cdk": "21.2.14",
|
|
777
|
+
"@angular/common": "^21.0.0 || ^22.0.0",
|
|
778
|
+
"@angular/core": "^21.0.0 || ^22.0.0",
|
|
779
|
+
"@angular/forms": "^21.0.0 || ^22.0.0",
|
|
780
|
+
"@angular/platform-browser": "^21.0.0 || ^22.0.0",
|
|
781
|
+
"rxjs": "^6.5.3 || ^7.4.0"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
732
784
|
"node_modules/@angular/platform-browser": {
|
|
733
785
|
"version": "21.2.18",
|
|
734
786
|
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-21.2.18.tgz",
|
|
@@ -2096,9 +2148,9 @@
|
|
|
2096
2148
|
}
|
|
2097
2149
|
},
|
|
2098
2150
|
"node_modules/@eslint/eslintrc": {
|
|
2099
|
-
"version": "3.3.
|
|
2100
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.
|
|
2101
|
-
"integrity": "sha512-
|
|
2151
|
+
"version": "3.3.6",
|
|
2152
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz",
|
|
2153
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
2102
2154
|
"dev": true,
|
|
2103
2155
|
"license": "MIT",
|
|
2104
2156
|
"dependencies": {
|
|
@@ -2108,7 +2160,7 @@
|
|
|
2108
2160
|
"globals": "^14.0.0",
|
|
2109
2161
|
"ignore": "^5.2.0",
|
|
2110
2162
|
"import-fresh": "^3.2.1",
|
|
2111
|
-
"js-yaml": "^4.
|
|
2163
|
+
"js-yaml": "^4.3.0",
|
|
2112
2164
|
"minimatch": "^3.1.5",
|
|
2113
2165
|
"strip-json-comments": "^3.1.1"
|
|
2114
2166
|
},
|
|
@@ -2185,9 +2237,9 @@
|
|
|
2185
2237
|
}
|
|
2186
2238
|
},
|
|
2187
2239
|
"node_modules/@eslint/js": {
|
|
2188
|
-
"version": "9.39.
|
|
2189
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
2190
|
-
"integrity": "sha512-
|
|
2240
|
+
"version": "9.39.5",
|
|
2241
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz",
|
|
2242
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
2191
2243
|
"dev": true,
|
|
2192
2244
|
"license": "MIT",
|
|
2193
2245
|
"engines": {
|
|
@@ -3680,9 +3732,9 @@
|
|
|
3680
3732
|
}
|
|
3681
3733
|
},
|
|
3682
3734
|
"node_modules/@parcel/watcher": {
|
|
3683
|
-
"version": "2.
|
|
3684
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.
|
|
3685
|
-
"integrity": "sha512-
|
|
3735
|
+
"version": "2.6.0",
|
|
3736
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.6.0.tgz",
|
|
3737
|
+
"integrity": "sha512-7FNeNl8NCE7aINx7WXiKQrPYZWC/hvrTsmk6zmxbI7LTXE7hVek/n8AfVgpe2y82zl3w0HvCHN0bVKMBoJcC0w==",
|
|
3686
3738
|
"hasInstallScript": true,
|
|
3687
3739
|
"license": "MIT",
|
|
3688
3740
|
"optional": true,
|
|
@@ -3690,7 +3742,7 @@
|
|
|
3690
3742
|
"detect-libc": "^2.0.3",
|
|
3691
3743
|
"is-glob": "^4.0.3",
|
|
3692
3744
|
"node-addon-api": "^7.0.0",
|
|
3693
|
-
"picomatch": "^4.0.
|
|
3745
|
+
"picomatch": "^4.0.4"
|
|
3694
3746
|
},
|
|
3695
3747
|
"engines": {
|
|
3696
3748
|
"node": ">= 10.0.0"
|
|
@@ -3700,25 +3752,24 @@
|
|
|
3700
3752
|
"url": "https://opencollective.com/parcel"
|
|
3701
3753
|
},
|
|
3702
3754
|
"optionalDependencies": {
|
|
3703
|
-
"@parcel/watcher-android-arm64": "2.
|
|
3704
|
-
"@parcel/watcher-darwin-arm64": "2.
|
|
3705
|
-
"@parcel/watcher-darwin-x64": "2.
|
|
3706
|
-
"@parcel/watcher-freebsd-x64": "2.
|
|
3707
|
-
"@parcel/watcher-linux-arm-glibc": "2.
|
|
3708
|
-
"@parcel/watcher-linux-arm-musl": "2.
|
|
3709
|
-
"@parcel/watcher-linux-arm64-glibc": "2.
|
|
3710
|
-
"@parcel/watcher-linux-arm64-musl": "2.
|
|
3711
|
-
"@parcel/watcher-linux-x64-glibc": "2.
|
|
3712
|
-
"@parcel/watcher-linux-x64-musl": "2.
|
|
3713
|
-
"@parcel/watcher-win32-arm64": "2.
|
|
3714
|
-
"@parcel/watcher-win32-
|
|
3715
|
-
"@parcel/watcher-win32-x64": "2.5.6"
|
|
3755
|
+
"@parcel/watcher-android-arm64": "2.6.0",
|
|
3756
|
+
"@parcel/watcher-darwin-arm64": "2.6.0",
|
|
3757
|
+
"@parcel/watcher-darwin-x64": "2.6.0",
|
|
3758
|
+
"@parcel/watcher-freebsd-x64": "2.6.0",
|
|
3759
|
+
"@parcel/watcher-linux-arm-glibc": "2.6.0",
|
|
3760
|
+
"@parcel/watcher-linux-arm-musl": "2.6.0",
|
|
3761
|
+
"@parcel/watcher-linux-arm64-glibc": "2.6.0",
|
|
3762
|
+
"@parcel/watcher-linux-arm64-musl": "2.6.0",
|
|
3763
|
+
"@parcel/watcher-linux-x64-glibc": "2.6.0",
|
|
3764
|
+
"@parcel/watcher-linux-x64-musl": "2.6.0",
|
|
3765
|
+
"@parcel/watcher-win32-arm64": "2.6.0",
|
|
3766
|
+
"@parcel/watcher-win32-x64": "2.6.0"
|
|
3716
3767
|
}
|
|
3717
3768
|
},
|
|
3718
3769
|
"node_modules/@parcel/watcher-android-arm64": {
|
|
3719
|
-
"version": "2.
|
|
3720
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.
|
|
3721
|
-
"integrity": "sha512-
|
|
3770
|
+
"version": "2.6.0",
|
|
3771
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.6.0.tgz",
|
|
3772
|
+
"integrity": "sha512-trgpLSCKRC/huFjXX/Smh+0sWe4+YtKfktIToiMl59ghz7z+qkH6kMvNnUbLyRs9N11t8l4svSCs1+5B3rOAhA==",
|
|
3722
3773
|
"cpu": [
|
|
3723
3774
|
"arm64"
|
|
3724
3775
|
],
|
|
@@ -3736,9 +3787,9 @@
|
|
|
3736
3787
|
}
|
|
3737
3788
|
},
|
|
3738
3789
|
"node_modules/@parcel/watcher-darwin-arm64": {
|
|
3739
|
-
"version": "2.
|
|
3740
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.
|
|
3741
|
-
"integrity": "sha512-
|
|
3790
|
+
"version": "2.6.0",
|
|
3791
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.6.0.tgz",
|
|
3792
|
+
"integrity": "sha512-Y3QV0gl7Q1zbfueunkWIERICbEojQFCgpyG7YqOGNFLsckXyI1xu9mAIUpKY9QBYzBtSkN8dBPwd3yiAO9ovMw==",
|
|
3742
3793
|
"cpu": [
|
|
3743
3794
|
"arm64"
|
|
3744
3795
|
],
|
|
@@ -3756,9 +3807,9 @@
|
|
|
3756
3807
|
}
|
|
3757
3808
|
},
|
|
3758
3809
|
"node_modules/@parcel/watcher-darwin-x64": {
|
|
3759
|
-
"version": "2.
|
|
3760
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.
|
|
3761
|
-
"integrity": "sha512-
|
|
3810
|
+
"version": "2.6.0",
|
|
3811
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.6.0.tgz",
|
|
3812
|
+
"integrity": "sha512-Ohv6OpzhUfKYD7Beb8kDvG0jbIxORCYY1JRdZnaBtnjjkJxgD7ZVL0nw2sCYd0yTMKTvz3nnTnOF3cDifK+kvw==",
|
|
3762
3813
|
"cpu": [
|
|
3763
3814
|
"x64"
|
|
3764
3815
|
],
|
|
@@ -3776,9 +3827,9 @@
|
|
|
3776
3827
|
}
|
|
3777
3828
|
},
|
|
3778
3829
|
"node_modules/@parcel/watcher-freebsd-x64": {
|
|
3779
|
-
"version": "2.
|
|
3780
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.
|
|
3781
|
-
"integrity": "sha512-
|
|
3830
|
+
"version": "2.6.0",
|
|
3831
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.6.0.tgz",
|
|
3832
|
+
"integrity": "sha512-5HmXvDgs8VK+74jF9y9/2FE3/OnlcKmc56tjmSrEuZjpSZOGL+fvAu+HKJBdPs9uwoP2hE6TlSUpXZ/C5jUFmQ==",
|
|
3782
3833
|
"cpu": [
|
|
3783
3834
|
"x64"
|
|
3784
3835
|
],
|
|
@@ -3796,9 +3847,9 @@
|
|
|
3796
3847
|
}
|
|
3797
3848
|
},
|
|
3798
3849
|
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
|
3799
|
-
"version": "2.
|
|
3800
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.
|
|
3801
|
-
"integrity": "sha512-
|
|
3850
|
+
"version": "2.6.0",
|
|
3851
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.6.0.tgz",
|
|
3852
|
+
"integrity": "sha512-Ps/hui3A+vMbjdqlqAowK2ZL8+BO8dBjxeWXj6npTBs3jx4wWmbPpaLuqwrQrSqIVMCnpWo238bJ1U37GhQOYg==",
|
|
3802
3853
|
"cpu": [
|
|
3803
3854
|
"arm"
|
|
3804
3855
|
],
|
|
@@ -3819,9 +3870,9 @@
|
|
|
3819
3870
|
}
|
|
3820
3871
|
},
|
|
3821
3872
|
"node_modules/@parcel/watcher-linux-arm-musl": {
|
|
3822
|
-
"version": "2.
|
|
3823
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.
|
|
3824
|
-
"integrity": "sha512-
|
|
3873
|
+
"version": "2.6.0",
|
|
3874
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.6.0.tgz",
|
|
3875
|
+
"integrity": "sha512-9c6AUHgHoG+IY88MRIHupztQiQnrbqHYQjkM2btA+Bf/wQnQMuiD0Wfk1EVv3TlNT3x41uU71rn6E4xh/+zvkw==",
|
|
3825
3876
|
"cpu": [
|
|
3826
3877
|
"arm"
|
|
3827
3878
|
],
|
|
@@ -3842,9 +3893,9 @@
|
|
|
3842
3893
|
}
|
|
3843
3894
|
},
|
|
3844
3895
|
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
|
3845
|
-
"version": "2.
|
|
3846
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.
|
|
3847
|
-
"integrity": "sha512-
|
|
3896
|
+
"version": "2.6.0",
|
|
3897
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.6.0.tgz",
|
|
3898
|
+
"integrity": "sha512-yHRqS2owEXe6Hic9z6Mh1ECsCd+ODVOGvZDyciqRd21+v+o+DnXMOrw50DSpIG2sb8GPEaPPmfeCAWKPJdq46g==",
|
|
3848
3899
|
"cpu": [
|
|
3849
3900
|
"arm64"
|
|
3850
3901
|
],
|
|
@@ -3865,9 +3916,9 @@
|
|
|
3865
3916
|
}
|
|
3866
3917
|
},
|
|
3867
3918
|
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
|
3868
|
-
"version": "2.
|
|
3869
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.
|
|
3870
|
-
"integrity": "sha512-
|
|
3919
|
+
"version": "2.6.0",
|
|
3920
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.6.0.tgz",
|
|
3921
|
+
"integrity": "sha512-WhB2e/V7rqdHHWZusBSPuy5Ei8S6lSz6FE5TKKQz5h3a0O+C+mhY7vxU9b/stqvMb8beLnPY82ZrFTLKs+SrKA==",
|
|
3871
3922
|
"cpu": [
|
|
3872
3923
|
"arm64"
|
|
3873
3924
|
],
|
|
@@ -3888,9 +3939,9 @@
|
|
|
3888
3939
|
}
|
|
3889
3940
|
},
|
|
3890
3941
|
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
|
3891
|
-
"version": "2.
|
|
3892
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.
|
|
3893
|
-
"integrity": "sha512-
|
|
3942
|
+
"version": "2.6.0",
|
|
3943
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.6.0.tgz",
|
|
3944
|
+
"integrity": "sha512-ulGE6x6Oz6iAwg75T8YQSoguBWasniIbX+QWpaYPcCnDOpdWX3k+4xbEYPZVLxOuoJI+svJJPD3sEj8G7lrQ3A==",
|
|
3894
3945
|
"cpu": [
|
|
3895
3946
|
"x64"
|
|
3896
3947
|
],
|
|
@@ -3911,9 +3962,9 @@
|
|
|
3911
3962
|
}
|
|
3912
3963
|
},
|
|
3913
3964
|
"node_modules/@parcel/watcher-linux-x64-musl": {
|
|
3914
|
-
"version": "2.
|
|
3915
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.
|
|
3916
|
-
"integrity": "sha512-
|
|
3965
|
+
"version": "2.6.0",
|
|
3966
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.6.0.tgz",
|
|
3967
|
+
"integrity": "sha512-tkBYKt7YQrjIJWYDnto2YgO8MRkjlMTSNoRHzsXinBqbLdeOM3L32wPZJvIZxqaLMfSlS/4sUjH/6STVP/XDLw==",
|
|
3917
3968
|
"cpu": [
|
|
3918
3969
|
"x64"
|
|
3919
3970
|
],
|
|
@@ -3934,9 +3985,9 @@
|
|
|
3934
3985
|
}
|
|
3935
3986
|
},
|
|
3936
3987
|
"node_modules/@parcel/watcher-win32-arm64": {
|
|
3937
|
-
"version": "2.
|
|
3938
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.
|
|
3939
|
-
"integrity": "sha512-
|
|
3988
|
+
"version": "2.6.0",
|
|
3989
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.6.0.tgz",
|
|
3990
|
+
"integrity": "sha512-gIZAP23jaHjGWasY/TY6yL7NHFClf0Ga7FN+iINvk+KN94rhm94lYZhFsbYFNcA04/onvGD9kKmiJLJB2HbNwQ==",
|
|
3940
3991
|
"cpu": [
|
|
3941
3992
|
"arm64"
|
|
3942
3993
|
],
|
|
@@ -3953,30 +4004,10 @@
|
|
|
3953
4004
|
"url": "https://opencollective.com/parcel"
|
|
3954
4005
|
}
|
|
3955
4006
|
},
|
|
3956
|
-
"node_modules/@parcel/watcher-win32-ia32": {
|
|
3957
|
-
"version": "2.5.6",
|
|
3958
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
|
|
3959
|
-
"integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
|
|
3960
|
-
"cpu": [
|
|
3961
|
-
"ia32"
|
|
3962
|
-
],
|
|
3963
|
-
"license": "MIT",
|
|
3964
|
-
"optional": true,
|
|
3965
|
-
"os": [
|
|
3966
|
-
"win32"
|
|
3967
|
-
],
|
|
3968
|
-
"engines": {
|
|
3969
|
-
"node": ">= 10.0.0"
|
|
3970
|
-
},
|
|
3971
|
-
"funding": {
|
|
3972
|
-
"type": "opencollective",
|
|
3973
|
-
"url": "https://opencollective.com/parcel"
|
|
3974
|
-
}
|
|
3975
|
-
},
|
|
3976
4007
|
"node_modules/@parcel/watcher-win32-x64": {
|
|
3977
|
-
"version": "2.
|
|
3978
|
-
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.
|
|
3979
|
-
"integrity": "sha512-
|
|
4008
|
+
"version": "2.6.0",
|
|
4009
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.6.0.tgz",
|
|
4010
|
+
"integrity": "sha512-cA+/pXV2YkfxlIcXOQ5fSWqAzzPyD78/x5qbK/I0vUkrlYHA8TIz+MXjAbGouguKVSI4bOmkTSJ1/poVSsgt+A==",
|
|
3980
4011
|
"cpu": [
|
|
3981
4012
|
"x64"
|
|
3982
4013
|
],
|
|
@@ -4676,12 +4707,12 @@
|
|
|
4676
4707
|
]
|
|
4677
4708
|
},
|
|
4678
4709
|
"node_modules/@salesforce/angular-plugin-ui-bundle": {
|
|
4679
|
-
"version": "11.13
|
|
4680
|
-
"resolved": "https://registry.npmjs.org/@salesforce/angular-plugin-ui-bundle/-/angular-plugin-ui-bundle-11.13.
|
|
4681
|
-
"integrity": "sha512-
|
|
4710
|
+
"version": "11.31.13",
|
|
4711
|
+
"resolved": "https://registry.npmjs.org/@salesforce/angular-plugin-ui-bundle/-/angular-plugin-ui-bundle-11.31.13.tgz",
|
|
4712
|
+
"integrity": "sha512-82q2oa5UnB65XrMbmBhwsD1KChpHeOPqdAcvh1qhxwMdCr+7hNVG8179f0/ZJ2AKSwLHaCVpzHiYYBGuy3LZkg==",
|
|
4682
4713
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4683
4714
|
"dependencies": {
|
|
4684
|
-
"@salesforce/ui-bundle": "^11.13
|
|
4715
|
+
"@salesforce/ui-bundle": "^11.31.13",
|
|
4685
4716
|
"chokidar": "^4.0.0"
|
|
4686
4717
|
},
|
|
4687
4718
|
"bin": {
|
|
@@ -4723,9 +4754,9 @@
|
|
|
4723
4754
|
}
|
|
4724
4755
|
},
|
|
4725
4756
|
"node_modules/@salesforce/core": {
|
|
4726
|
-
"version": "8.32.
|
|
4727
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.
|
|
4728
|
-
"integrity": "sha512-
|
|
4757
|
+
"version": "8.32.4",
|
|
4758
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.4.tgz",
|
|
4759
|
+
"integrity": "sha512-0p/nQ24nfPGD0ERp/NHAccgo+66+rDx6c9M88wItDYAMu9+CHcW+FHOLNDAAUsYwinHHVsqVSL8Eyag7gvitqA==",
|
|
4729
4760
|
"license": "BSD-3-Clause",
|
|
4730
4761
|
"dependencies": {
|
|
4731
4762
|
"@jsforce/jsforce-node": "^3.10.17",
|
|
@@ -4765,9 +4796,9 @@
|
|
|
4765
4796
|
}
|
|
4766
4797
|
},
|
|
4767
4798
|
"node_modules/@salesforce/jsonrpc": {
|
|
4768
|
-
"version": "11.13
|
|
4769
|
-
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-11.13.
|
|
4770
|
-
"integrity": "sha512-
|
|
4799
|
+
"version": "11.31.13",
|
|
4800
|
+
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-11.31.13.tgz",
|
|
4801
|
+
"integrity": "sha512-QQids4fhDxOI1UgWEk707QhuKqiVofVKbfHD/eNQQDKZCkzgThCGXpN96E/t38XveL0dSJ7n1hhIfRvilMoyDQ==",
|
|
4771
4802
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
4772
4803
|
},
|
|
4773
4804
|
"node_modules/@salesforce/kit": {
|
|
@@ -4780,9 +4811,9 @@
|
|
|
4780
4811
|
}
|
|
4781
4812
|
},
|
|
4782
4813
|
"node_modules/@salesforce/platform-sdk": {
|
|
4783
|
-
"version": "11.13
|
|
4784
|
-
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-11.13.
|
|
4785
|
-
"integrity": "sha512-
|
|
4814
|
+
"version": "11.31.13",
|
|
4815
|
+
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-11.31.13.tgz",
|
|
4816
|
+
"integrity": "sha512-ukrCP8W4b8+Nki0sGFvTGJAg8YZg0uTp0Ov9QAMNMk3hD2+dgmDfWLgMRvMO61PocDxgFCzbD+vwCEmYFZDhOw==",
|
|
4786
4817
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4787
4818
|
"dependencies": {
|
|
4788
4819
|
"@conduit-client/command-http-cache-control": "3.19.6",
|
|
@@ -4794,8 +4825,8 @@
|
|
|
4794
4825
|
"@conduit-client/service-pubsub": "3.19.6",
|
|
4795
4826
|
"@conduit-client/service-retry": "3.19.6",
|
|
4796
4827
|
"@conduit-client/utils": "3.19.6",
|
|
4797
|
-
"@salesforce/jsonrpc": "^11.13
|
|
4798
|
-
"@salesforce/sf-embedding-bridge": "2.2.
|
|
4828
|
+
"@salesforce/jsonrpc": "^11.31.13",
|
|
4829
|
+
"@salesforce/sf-embedding-bridge": "2.2.5-rc.2"
|
|
4799
4830
|
},
|
|
4800
4831
|
"peerDependencies": {
|
|
4801
4832
|
"o11y": ">=260.0.0",
|
|
@@ -4803,9 +4834,9 @@
|
|
|
4803
4834
|
}
|
|
4804
4835
|
},
|
|
4805
4836
|
"node_modules/@salesforce/sf-embedding-bridge": {
|
|
4806
|
-
"version": "2.2.
|
|
4807
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-embedding-bridge/-/sf-embedding-bridge-2.2.
|
|
4808
|
-
"integrity": "sha512-
|
|
4837
|
+
"version": "2.2.5-rc.2",
|
|
4838
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-embedding-bridge/-/sf-embedding-bridge-2.2.5-rc.2.tgz",
|
|
4839
|
+
"integrity": "sha512-aK9YDDMrzwEEUk27orpTMMcDEvO9FeYRIPNQ0cYAfdi0AgxeYtgjlEHM6nbtGBvkSN3sZhWcVJq9VsyiXCHWkQ==",
|
|
4809
4840
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4810
4841
|
"dependencies": {
|
|
4811
4842
|
"@salesforce/jsonrpc": "^10.12.3"
|
|
@@ -4827,29 +4858,29 @@
|
|
|
4827
4858
|
}
|
|
4828
4859
|
},
|
|
4829
4860
|
"node_modules/@salesforce/ui-bundle": {
|
|
4830
|
-
"version": "11.13
|
|
4831
|
-
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-11.13.
|
|
4832
|
-
"integrity": "sha512-
|
|
4861
|
+
"version": "11.31.13",
|
|
4862
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-11.31.13.tgz",
|
|
4863
|
+
"integrity": "sha512-v9AkcwKPCOLB4eYig8PYKeOWe3nv6LjjO6HuvrmLlA/eGd8rWCMZmuLChAU5UqUKWD+6sUdJjJ9987zx78l2rQ==",
|
|
4833
4864
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4834
4865
|
"dependencies": {
|
|
4835
4866
|
"@salesforce/core": "^8.23.4",
|
|
4836
|
-
"@salesforce/platform-sdk": "^11.13
|
|
4867
|
+
"@salesforce/platform-sdk": "^11.31.13",
|
|
4837
4868
|
"micromatch": "^4.0.8",
|
|
4838
|
-
"path-to-regexp": "^8.
|
|
4869
|
+
"path-to-regexp": "^8.4.2"
|
|
4839
4870
|
},
|
|
4840
4871
|
"engines": {
|
|
4841
4872
|
"node": ">=20.0.0"
|
|
4842
4873
|
}
|
|
4843
4874
|
},
|
|
4844
4875
|
"node_modules/@schematics/angular": {
|
|
4845
|
-
"version": "21.2.
|
|
4846
|
-
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.2.
|
|
4847
|
-
"integrity": "sha512-
|
|
4876
|
+
"version": "21.2.19",
|
|
4877
|
+
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.2.19.tgz",
|
|
4878
|
+
"integrity": "sha512-eL+UU9eizoadhDB4YEctRmmo0A5iwrSmGzeuEa6akrq8nLGVWM8zO91HTJutkPqGQjelF+UOiOShsQSZAU9SIQ==",
|
|
4848
4879
|
"dev": true,
|
|
4849
4880
|
"license": "MIT",
|
|
4850
4881
|
"dependencies": {
|
|
4851
|
-
"@angular-devkit/core": "21.2.
|
|
4852
|
-
"@angular-devkit/schematics": "21.2.
|
|
4882
|
+
"@angular-devkit/core": "21.2.19",
|
|
4883
|
+
"@angular-devkit/schematics": "21.2.19",
|
|
4853
4884
|
"jsonc-parser": "3.3.1"
|
|
4854
4885
|
},
|
|
4855
4886
|
"engines": {
|
|
@@ -4957,49 +4988,49 @@
|
|
|
4957
4988
|
"license": "MIT"
|
|
4958
4989
|
},
|
|
4959
4990
|
"node_modules/@tailwindcss/node": {
|
|
4960
|
-
"version": "4.3.
|
|
4961
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.
|
|
4962
|
-
"integrity": "sha512
|
|
4991
|
+
"version": "4.3.3",
|
|
4992
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz",
|
|
4993
|
+
"integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==",
|
|
4963
4994
|
"dev": true,
|
|
4964
4995
|
"license": "MIT",
|
|
4965
4996
|
"dependencies": {
|
|
4966
4997
|
"@jridgewell/remapping": "^2.3.5",
|
|
4967
|
-
"enhanced-resolve": "5.
|
|
4998
|
+
"enhanced-resolve": "^5.24.1",
|
|
4968
4999
|
"jiti": "^2.7.0",
|
|
4969
5000
|
"lightningcss": "1.32.0",
|
|
4970
5001
|
"magic-string": "^0.30.21",
|
|
4971
5002
|
"source-map-js": "^1.2.1",
|
|
4972
|
-
"tailwindcss": "4.3.
|
|
5003
|
+
"tailwindcss": "4.3.3"
|
|
4973
5004
|
}
|
|
4974
5005
|
},
|
|
4975
5006
|
"node_modules/@tailwindcss/oxide": {
|
|
4976
|
-
"version": "4.3.
|
|
4977
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.
|
|
4978
|
-
"integrity": "sha512-
|
|
5007
|
+
"version": "4.3.3",
|
|
5008
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz",
|
|
5009
|
+
"integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==",
|
|
4979
5010
|
"dev": true,
|
|
4980
5011
|
"license": "MIT",
|
|
4981
5012
|
"engines": {
|
|
4982
5013
|
"node": ">= 20"
|
|
4983
5014
|
},
|
|
4984
5015
|
"optionalDependencies": {
|
|
4985
|
-
"@tailwindcss/oxide-android-arm64": "4.3.
|
|
4986
|
-
"@tailwindcss/oxide-darwin-arm64": "4.3.
|
|
4987
|
-
"@tailwindcss/oxide-darwin-x64": "4.3.
|
|
4988
|
-
"@tailwindcss/oxide-freebsd-x64": "4.3.
|
|
4989
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.
|
|
4990
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.
|
|
4991
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.3.
|
|
4992
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.3.
|
|
4993
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.3.
|
|
4994
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.3.
|
|
4995
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.
|
|
4996
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.3.
|
|
5016
|
+
"@tailwindcss/oxide-android-arm64": "4.3.3",
|
|
5017
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.3",
|
|
5018
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.3",
|
|
5019
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.3",
|
|
5020
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
|
|
5021
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
|
|
5022
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
|
|
5023
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
|
|
5024
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.3",
|
|
5025
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.3",
|
|
5026
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
|
|
5027
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
|
|
4997
5028
|
}
|
|
4998
5029
|
},
|
|
4999
5030
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
5000
|
-
"version": "4.3.
|
|
5001
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.
|
|
5002
|
-
"integrity": "sha512-
|
|
5031
|
+
"version": "4.3.3",
|
|
5032
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz",
|
|
5033
|
+
"integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==",
|
|
5003
5034
|
"cpu": [
|
|
5004
5035
|
"arm64"
|
|
5005
5036
|
],
|
|
@@ -5014,9 +5045,9 @@
|
|
|
5014
5045
|
}
|
|
5015
5046
|
},
|
|
5016
5047
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
5017
|
-
"version": "4.3.
|
|
5018
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.
|
|
5019
|
-
"integrity": "sha512-
|
|
5048
|
+
"version": "4.3.3",
|
|
5049
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz",
|
|
5050
|
+
"integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==",
|
|
5020
5051
|
"cpu": [
|
|
5021
5052
|
"arm64"
|
|
5022
5053
|
],
|
|
@@ -5031,9 +5062,9 @@
|
|
|
5031
5062
|
}
|
|
5032
5063
|
},
|
|
5033
5064
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
5034
|
-
"version": "4.3.
|
|
5035
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.
|
|
5036
|
-
"integrity": "sha512-
|
|
5065
|
+
"version": "4.3.3",
|
|
5066
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz",
|
|
5067
|
+
"integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==",
|
|
5037
5068
|
"cpu": [
|
|
5038
5069
|
"x64"
|
|
5039
5070
|
],
|
|
@@ -5048,9 +5079,9 @@
|
|
|
5048
5079
|
}
|
|
5049
5080
|
},
|
|
5050
5081
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
5051
|
-
"version": "4.3.
|
|
5052
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.
|
|
5053
|
-
"integrity": "sha512-
|
|
5082
|
+
"version": "4.3.3",
|
|
5083
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz",
|
|
5084
|
+
"integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==",
|
|
5054
5085
|
"cpu": [
|
|
5055
5086
|
"x64"
|
|
5056
5087
|
],
|
|
@@ -5065,9 +5096,9 @@
|
|
|
5065
5096
|
}
|
|
5066
5097
|
},
|
|
5067
5098
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
5068
|
-
"version": "4.3.
|
|
5069
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.
|
|
5070
|
-
"integrity": "sha512-
|
|
5099
|
+
"version": "4.3.3",
|
|
5100
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz",
|
|
5101
|
+
"integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==",
|
|
5071
5102
|
"cpu": [
|
|
5072
5103
|
"arm"
|
|
5073
5104
|
],
|
|
@@ -5082,9 +5113,9 @@
|
|
|
5082
5113
|
}
|
|
5083
5114
|
},
|
|
5084
5115
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
5085
|
-
"version": "4.3.
|
|
5086
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.
|
|
5087
|
-
"integrity": "sha512-
|
|
5116
|
+
"version": "4.3.3",
|
|
5117
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz",
|
|
5118
|
+
"integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==",
|
|
5088
5119
|
"cpu": [
|
|
5089
5120
|
"arm64"
|
|
5090
5121
|
],
|
|
@@ -5102,9 +5133,9 @@
|
|
|
5102
5133
|
}
|
|
5103
5134
|
},
|
|
5104
5135
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
5105
|
-
"version": "4.3.
|
|
5106
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.
|
|
5107
|
-
"integrity": "sha512-
|
|
5136
|
+
"version": "4.3.3",
|
|
5137
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz",
|
|
5138
|
+
"integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==",
|
|
5108
5139
|
"cpu": [
|
|
5109
5140
|
"arm64"
|
|
5110
5141
|
],
|
|
@@ -5122,9 +5153,9 @@
|
|
|
5122
5153
|
}
|
|
5123
5154
|
},
|
|
5124
5155
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
5125
|
-
"version": "4.3.
|
|
5126
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.
|
|
5127
|
-
"integrity": "sha512-
|
|
5156
|
+
"version": "4.3.3",
|
|
5157
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz",
|
|
5158
|
+
"integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==",
|
|
5128
5159
|
"cpu": [
|
|
5129
5160
|
"x64"
|
|
5130
5161
|
],
|
|
@@ -5142,9 +5173,9 @@
|
|
|
5142
5173
|
}
|
|
5143
5174
|
},
|
|
5144
5175
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
5145
|
-
"version": "4.3.
|
|
5146
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.
|
|
5147
|
-
"integrity": "sha512-
|
|
5176
|
+
"version": "4.3.3",
|
|
5177
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz",
|
|
5178
|
+
"integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==",
|
|
5148
5179
|
"cpu": [
|
|
5149
5180
|
"x64"
|
|
5150
5181
|
],
|
|
@@ -5162,9 +5193,9 @@
|
|
|
5162
5193
|
}
|
|
5163
5194
|
},
|
|
5164
5195
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
5165
|
-
"version": "4.3.
|
|
5166
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.
|
|
5167
|
-
"integrity": "sha512-
|
|
5196
|
+
"version": "4.3.3",
|
|
5197
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz",
|
|
5198
|
+
"integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==",
|
|
5168
5199
|
"bundleDependencies": [
|
|
5169
5200
|
"@napi-rs/wasm-runtime",
|
|
5170
5201
|
"@emnapi/core",
|
|
@@ -5258,9 +5289,9 @@
|
|
|
5258
5289
|
"optional": true
|
|
5259
5290
|
},
|
|
5260
5291
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
5261
|
-
"version": "4.3.
|
|
5262
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.
|
|
5263
|
-
"integrity": "sha512-
|
|
5292
|
+
"version": "4.3.3",
|
|
5293
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz",
|
|
5294
|
+
"integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==",
|
|
5264
5295
|
"cpu": [
|
|
5265
5296
|
"arm64"
|
|
5266
5297
|
],
|
|
@@ -5275,9 +5306,9 @@
|
|
|
5275
5306
|
}
|
|
5276
5307
|
},
|
|
5277
5308
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
5278
|
-
"version": "4.3.
|
|
5279
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.
|
|
5280
|
-
"integrity": "sha512-
|
|
5309
|
+
"version": "4.3.3",
|
|
5310
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz",
|
|
5311
|
+
"integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==",
|
|
5281
5312
|
"cpu": [
|
|
5282
5313
|
"x64"
|
|
5283
5314
|
],
|
|
@@ -5292,17 +5323,17 @@
|
|
|
5292
5323
|
}
|
|
5293
5324
|
},
|
|
5294
5325
|
"node_modules/@tailwindcss/postcss": {
|
|
5295
|
-
"version": "4.3.
|
|
5296
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.
|
|
5297
|
-
"integrity": "sha512-
|
|
5326
|
+
"version": "4.3.3",
|
|
5327
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.3.tgz",
|
|
5328
|
+
"integrity": "sha512-JTSZZGQi1AyKirbLN3azmjVzef92tcX7h+iSqPdaeStyFpGpDlKvvpxeOE8njhbUanbRwr3z8DyzhICWnMtQeg==",
|
|
5298
5329
|
"dev": true,
|
|
5299
5330
|
"license": "MIT",
|
|
5300
5331
|
"dependencies": {
|
|
5301
5332
|
"@alloc/quick-lru": "^5.2.0",
|
|
5302
|
-
"@tailwindcss/node": "4.3.
|
|
5303
|
-
"@tailwindcss/oxide": "4.3.
|
|
5304
|
-
"postcss": "^8.5.
|
|
5305
|
-
"tailwindcss": "4.3.
|
|
5333
|
+
"@tailwindcss/node": "4.3.3",
|
|
5334
|
+
"@tailwindcss/oxide": "4.3.3",
|
|
5335
|
+
"postcss": "^8.5.16",
|
|
5336
|
+
"tailwindcss": "4.3.3"
|
|
5306
5337
|
}
|
|
5307
5338
|
},
|
|
5308
5339
|
"node_modules/@tsconfig/node10": {
|
|
@@ -5409,17 +5440,17 @@
|
|
|
5409
5440
|
}
|
|
5410
5441
|
},
|
|
5411
5442
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
5412
|
-
"version": "8.
|
|
5413
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
5414
|
-
"integrity": "sha512-
|
|
5443
|
+
"version": "8.65.0",
|
|
5444
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.65.0.tgz",
|
|
5445
|
+
"integrity": "sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==",
|
|
5415
5446
|
"dev": true,
|
|
5416
5447
|
"license": "MIT",
|
|
5417
5448
|
"dependencies": {
|
|
5418
5449
|
"@eslint-community/regexpp": "^4.12.2",
|
|
5419
|
-
"@typescript-eslint/scope-manager": "8.
|
|
5420
|
-
"@typescript-eslint/type-utils": "8.
|
|
5421
|
-
"@typescript-eslint/utils": "8.
|
|
5422
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5450
|
+
"@typescript-eslint/scope-manager": "8.65.0",
|
|
5451
|
+
"@typescript-eslint/type-utils": "8.65.0",
|
|
5452
|
+
"@typescript-eslint/utils": "8.65.0",
|
|
5453
|
+
"@typescript-eslint/visitor-keys": "8.65.0",
|
|
5423
5454
|
"ignore": "^7.0.5",
|
|
5424
5455
|
"natural-compare": "^1.4.0",
|
|
5425
5456
|
"ts-api-utils": "^2.5.0"
|
|
@@ -5432,22 +5463,22 @@
|
|
|
5432
5463
|
"url": "https://opencollective.com/typescript-eslint"
|
|
5433
5464
|
},
|
|
5434
5465
|
"peerDependencies": {
|
|
5435
|
-
"@typescript-eslint/parser": "^8.
|
|
5466
|
+
"@typescript-eslint/parser": "^8.65.0",
|
|
5436
5467
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
5437
5468
|
"typescript": ">=4.8.4 <6.1.0"
|
|
5438
5469
|
}
|
|
5439
5470
|
},
|
|
5440
5471
|
"node_modules/@typescript-eslint/parser": {
|
|
5441
|
-
"version": "8.
|
|
5442
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
5443
|
-
"integrity": "sha512-
|
|
5472
|
+
"version": "8.65.0",
|
|
5473
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.65.0.tgz",
|
|
5474
|
+
"integrity": "sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==",
|
|
5444
5475
|
"dev": true,
|
|
5445
5476
|
"license": "MIT",
|
|
5446
5477
|
"dependencies": {
|
|
5447
|
-
"@typescript-eslint/scope-manager": "8.
|
|
5448
|
-
"@typescript-eslint/types": "8.
|
|
5449
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
5450
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5478
|
+
"@typescript-eslint/scope-manager": "8.65.0",
|
|
5479
|
+
"@typescript-eslint/types": "8.65.0",
|
|
5480
|
+
"@typescript-eslint/typescript-estree": "8.65.0",
|
|
5481
|
+
"@typescript-eslint/visitor-keys": "8.65.0",
|
|
5451
5482
|
"debug": "^4.4.3"
|
|
5452
5483
|
},
|
|
5453
5484
|
"engines": {
|
|
@@ -5463,14 +5494,14 @@
|
|
|
5463
5494
|
}
|
|
5464
5495
|
},
|
|
5465
5496
|
"node_modules/@typescript-eslint/project-service": {
|
|
5466
|
-
"version": "8.
|
|
5467
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.
|
|
5468
|
-
"integrity": "sha512-
|
|
5497
|
+
"version": "8.65.0",
|
|
5498
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.65.0.tgz",
|
|
5499
|
+
"integrity": "sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==",
|
|
5469
5500
|
"dev": true,
|
|
5470
5501
|
"license": "MIT",
|
|
5471
5502
|
"dependencies": {
|
|
5472
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
5473
|
-
"@typescript-eslint/types": "^8.
|
|
5503
|
+
"@typescript-eslint/tsconfig-utils": "^8.65.0",
|
|
5504
|
+
"@typescript-eslint/types": "^8.65.0",
|
|
5474
5505
|
"debug": "^4.4.3"
|
|
5475
5506
|
},
|
|
5476
5507
|
"engines": {
|
|
@@ -5485,14 +5516,14 @@
|
|
|
5485
5516
|
}
|
|
5486
5517
|
},
|
|
5487
5518
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
5488
|
-
"version": "8.
|
|
5489
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
5490
|
-
"integrity": "sha512-
|
|
5519
|
+
"version": "8.65.0",
|
|
5520
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.65.0.tgz",
|
|
5521
|
+
"integrity": "sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==",
|
|
5491
5522
|
"dev": true,
|
|
5492
5523
|
"license": "MIT",
|
|
5493
5524
|
"dependencies": {
|
|
5494
|
-
"@typescript-eslint/types": "8.
|
|
5495
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5525
|
+
"@typescript-eslint/types": "8.65.0",
|
|
5526
|
+
"@typescript-eslint/visitor-keys": "8.65.0"
|
|
5496
5527
|
},
|
|
5497
5528
|
"engines": {
|
|
5498
5529
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5503,9 +5534,9 @@
|
|
|
5503
5534
|
}
|
|
5504
5535
|
},
|
|
5505
5536
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
5506
|
-
"version": "8.
|
|
5507
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
5508
|
-
"integrity": "sha512-
|
|
5537
|
+
"version": "8.65.0",
|
|
5538
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.65.0.tgz",
|
|
5539
|
+
"integrity": "sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==",
|
|
5509
5540
|
"dev": true,
|
|
5510
5541
|
"license": "MIT",
|
|
5511
5542
|
"engines": {
|
|
@@ -5520,15 +5551,15 @@
|
|
|
5520
5551
|
}
|
|
5521
5552
|
},
|
|
5522
5553
|
"node_modules/@typescript-eslint/type-utils": {
|
|
5523
|
-
"version": "8.
|
|
5524
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
5525
|
-
"integrity": "sha512-
|
|
5554
|
+
"version": "8.65.0",
|
|
5555
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.65.0.tgz",
|
|
5556
|
+
"integrity": "sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==",
|
|
5526
5557
|
"dev": true,
|
|
5527
5558
|
"license": "MIT",
|
|
5528
5559
|
"dependencies": {
|
|
5529
|
-
"@typescript-eslint/types": "8.
|
|
5530
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
5531
|
-
"@typescript-eslint/utils": "8.
|
|
5560
|
+
"@typescript-eslint/types": "8.65.0",
|
|
5561
|
+
"@typescript-eslint/typescript-estree": "8.65.0",
|
|
5562
|
+
"@typescript-eslint/utils": "8.65.0",
|
|
5532
5563
|
"debug": "^4.4.3",
|
|
5533
5564
|
"ts-api-utils": "^2.5.0"
|
|
5534
5565
|
},
|
|
@@ -5545,9 +5576,9 @@
|
|
|
5545
5576
|
}
|
|
5546
5577
|
},
|
|
5547
5578
|
"node_modules/@typescript-eslint/types": {
|
|
5548
|
-
"version": "8.
|
|
5549
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
5550
|
-
"integrity": "sha512-
|
|
5579
|
+
"version": "8.65.0",
|
|
5580
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.65.0.tgz",
|
|
5581
|
+
"integrity": "sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==",
|
|
5551
5582
|
"dev": true,
|
|
5552
5583
|
"license": "MIT",
|
|
5553
5584
|
"engines": {
|
|
@@ -5559,16 +5590,16 @@
|
|
|
5559
5590
|
}
|
|
5560
5591
|
},
|
|
5561
5592
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
5562
|
-
"version": "8.
|
|
5563
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
5564
|
-
"integrity": "sha512-
|
|
5593
|
+
"version": "8.65.0",
|
|
5594
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.65.0.tgz",
|
|
5595
|
+
"integrity": "sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==",
|
|
5565
5596
|
"dev": true,
|
|
5566
5597
|
"license": "MIT",
|
|
5567
5598
|
"dependencies": {
|
|
5568
|
-
"@typescript-eslint/project-service": "8.
|
|
5569
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
5570
|
-
"@typescript-eslint/types": "8.
|
|
5571
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5599
|
+
"@typescript-eslint/project-service": "8.65.0",
|
|
5600
|
+
"@typescript-eslint/tsconfig-utils": "8.65.0",
|
|
5601
|
+
"@typescript-eslint/types": "8.65.0",
|
|
5602
|
+
"@typescript-eslint/visitor-keys": "8.65.0",
|
|
5572
5603
|
"debug": "^4.4.3",
|
|
5573
5604
|
"minimatch": "^10.2.2",
|
|
5574
5605
|
"semver": "^7.7.3",
|
|
@@ -5587,16 +5618,16 @@
|
|
|
5587
5618
|
}
|
|
5588
5619
|
},
|
|
5589
5620
|
"node_modules/@typescript-eslint/utils": {
|
|
5590
|
-
"version": "8.
|
|
5591
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
5592
|
-
"integrity": "sha512-
|
|
5621
|
+
"version": "8.65.0",
|
|
5622
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.65.0.tgz",
|
|
5623
|
+
"integrity": "sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==",
|
|
5593
5624
|
"dev": true,
|
|
5594
5625
|
"license": "MIT",
|
|
5595
5626
|
"dependencies": {
|
|
5596
5627
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
5597
|
-
"@typescript-eslint/scope-manager": "8.
|
|
5598
|
-
"@typescript-eslint/types": "8.
|
|
5599
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
5628
|
+
"@typescript-eslint/scope-manager": "8.65.0",
|
|
5629
|
+
"@typescript-eslint/types": "8.65.0",
|
|
5630
|
+
"@typescript-eslint/typescript-estree": "8.65.0"
|
|
5600
5631
|
},
|
|
5601
5632
|
"engines": {
|
|
5602
5633
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5611,13 +5642,13 @@
|
|
|
5611
5642
|
}
|
|
5612
5643
|
},
|
|
5613
5644
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
5614
|
-
"version": "8.
|
|
5615
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
5616
|
-
"integrity": "sha512-
|
|
5645
|
+
"version": "8.65.0",
|
|
5646
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.65.0.tgz",
|
|
5647
|
+
"integrity": "sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==",
|
|
5617
5648
|
"dev": true,
|
|
5618
5649
|
"license": "MIT",
|
|
5619
5650
|
"dependencies": {
|
|
5620
|
-
"@typescript-eslint/types": "8.
|
|
5651
|
+
"@typescript-eslint/types": "8.65.0",
|
|
5621
5652
|
"eslint-visitor-keys": "^5.0.0"
|
|
5622
5653
|
},
|
|
5623
5654
|
"engines": {
|
|
@@ -6166,9 +6197,9 @@
|
|
|
6166
6197
|
}
|
|
6167
6198
|
},
|
|
6168
6199
|
"node_modules/baseline-browser-mapping": {
|
|
6169
|
-
"version": "2.
|
|
6170
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.
|
|
6171
|
-
"integrity": "sha512-
|
|
6200
|
+
"version": "2.11.0",
|
|
6201
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.11.0.tgz",
|
|
6202
|
+
"integrity": "sha512-oCu2wfipvX3AePSgmOuKkIywOu+8n9psz7hXYmk56ghpu3+7KzNIBopaOs4c9BrtdnTtW30unG9GTfHo7EwERQ==",
|
|
6172
6203
|
"license": "Apache-2.0",
|
|
6173
6204
|
"bin": {
|
|
6174
6205
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -6370,9 +6401,9 @@
|
|
|
6370
6401
|
}
|
|
6371
6402
|
},
|
|
6372
6403
|
"node_modules/browserslist": {
|
|
6373
|
-
"version": "4.28.
|
|
6374
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
6375
|
-
"integrity": "sha512-
|
|
6404
|
+
"version": "4.28.6",
|
|
6405
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz",
|
|
6406
|
+
"integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==",
|
|
6376
6407
|
"funding": [
|
|
6377
6408
|
{
|
|
6378
6409
|
"type": "opencollective",
|
|
@@ -6390,9 +6421,9 @@
|
|
|
6390
6421
|
"license": "MIT",
|
|
6391
6422
|
"dependencies": {
|
|
6392
6423
|
"baseline-browser-mapping": "^2.10.42",
|
|
6393
|
-
"caniuse-lite": "^1.0.
|
|
6394
|
-
"electron-to-chromium": "^1.5.
|
|
6395
|
-
"node-releases": "^2.0.
|
|
6424
|
+
"caniuse-lite": "^1.0.30001803",
|
|
6425
|
+
"electron-to-chromium": "^1.5.389",
|
|
6426
|
+
"node-releases": "^2.0.51",
|
|
6396
6427
|
"update-browserslist-db": "^1.2.3"
|
|
6397
6428
|
},
|
|
6398
6429
|
"bin": {
|
|
@@ -6544,9 +6575,9 @@
|
|
|
6544
6575
|
}
|
|
6545
6576
|
},
|
|
6546
6577
|
"node_modules/caniuse-lite": {
|
|
6547
|
-
"version": "1.0.
|
|
6548
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
6549
|
-
"integrity": "sha512-
|
|
6578
|
+
"version": "1.0.30001806",
|
|
6579
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
|
|
6580
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
6550
6581
|
"funding": [
|
|
6551
6582
|
{
|
|
6552
6583
|
"type": "opencollective",
|
|
@@ -7323,9 +7354,9 @@
|
|
|
7323
7354
|
"license": "MIT"
|
|
7324
7355
|
},
|
|
7325
7356
|
"node_modules/electron-to-chromium": {
|
|
7326
|
-
"version": "1.5.
|
|
7327
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
7328
|
-
"integrity": "sha512-
|
|
7357
|
+
"version": "1.5.394",
|
|
7358
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.394.tgz",
|
|
7359
|
+
"integrity": "sha512-Wmt2Gm0o8JWBuGgmc4XZ0u9s1RaCRqhxP47phplmfg04+qypTUurpeJGP45A7Fhv7jdrrVH44PLlR9qXo37cVQ==",
|
|
7329
7360
|
"license": "ISC"
|
|
7330
7361
|
},
|
|
7331
7362
|
"node_modules/emoji-regex": {
|
|
@@ -7354,9 +7385,9 @@
|
|
|
7354
7385
|
}
|
|
7355
7386
|
},
|
|
7356
7387
|
"node_modules/enhanced-resolve": {
|
|
7357
|
-
"version": "5.
|
|
7358
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
|
7359
|
-
"integrity": "sha512-
|
|
7388
|
+
"version": "5.24.3",
|
|
7389
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.3.tgz",
|
|
7390
|
+
"integrity": "sha512-PwKooW9JUzh5chmYfHM3IQl5OkK2u2Nm011MgeZrss3JmFraUx/fqrf78kk8GUMYoibx/14MdwTl/1WKkG7TpQ==",
|
|
7360
7391
|
"dev": true,
|
|
7361
7392
|
"license": "MIT",
|
|
7362
7393
|
"dependencies": {
|
|
@@ -7420,9 +7451,9 @@
|
|
|
7420
7451
|
}
|
|
7421
7452
|
},
|
|
7422
7453
|
"node_modules/es-module-lexer": {
|
|
7423
|
-
"version": "2.3.
|
|
7424
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.
|
|
7425
|
-
"integrity": "sha512-
|
|
7454
|
+
"version": "2.3.1",
|
|
7455
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
|
|
7456
|
+
"integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
|
|
7426
7457
|
"license": "MIT"
|
|
7427
7458
|
},
|
|
7428
7459
|
"node_modules/es-object-atoms": {
|
|
@@ -7523,9 +7554,9 @@
|
|
|
7523
7554
|
}
|
|
7524
7555
|
},
|
|
7525
7556
|
"node_modules/eslint": {
|
|
7526
|
-
"version": "9.39.
|
|
7527
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
7528
|
-
"integrity": "sha512-
|
|
7557
|
+
"version": "9.39.5",
|
|
7558
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz",
|
|
7559
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7529
7560
|
"dev": true,
|
|
7530
7561
|
"license": "MIT",
|
|
7531
7562
|
"dependencies": {
|
|
@@ -7534,8 +7565,8 @@
|
|
|
7534
7565
|
"@eslint/config-array": "^0.21.2",
|
|
7535
7566
|
"@eslint/config-helpers": "^0.4.2",
|
|
7536
7567
|
"@eslint/core": "^0.17.0",
|
|
7537
|
-
"@eslint/eslintrc": "^3.3.
|
|
7538
|
-
"@eslint/js": "9.39.
|
|
7568
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
7569
|
+
"@eslint/js": "9.39.5",
|
|
7539
7570
|
"@eslint/plugin-kit": "^0.4.1",
|
|
7540
7571
|
"@humanfs/node": "^0.16.6",
|
|
7541
7572
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -7960,12 +7991,13 @@
|
|
|
7960
7991
|
}
|
|
7961
7992
|
},
|
|
7962
7993
|
"node_modules/express-rate-limit": {
|
|
7963
|
-
"version": "8.
|
|
7964
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
7965
|
-
"integrity": "sha512-
|
|
7994
|
+
"version": "8.6.0",
|
|
7995
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz",
|
|
7996
|
+
"integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==",
|
|
7966
7997
|
"dev": true,
|
|
7967
7998
|
"license": "MIT",
|
|
7968
7999
|
"dependencies": {
|
|
8000
|
+
"debug": "^4.4.3",
|
|
7969
8001
|
"ip-address": "^10.2.0"
|
|
7970
8002
|
},
|
|
7971
8003
|
"engines": {
|
|
@@ -8013,9 +8045,9 @@
|
|
|
8013
8045
|
"license": "MIT"
|
|
8014
8046
|
},
|
|
8015
8047
|
"node_modules/fast-uri": {
|
|
8016
|
-
"version": "3.1.
|
|
8017
|
-
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.
|
|
8018
|
-
"integrity": "sha512-
|
|
8048
|
+
"version": "3.1.4",
|
|
8049
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.4.tgz",
|
|
8050
|
+
"integrity": "sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==",
|
|
8019
8051
|
"funding": [
|
|
8020
8052
|
{
|
|
8021
8053
|
"type": "github",
|
|
@@ -8500,9 +8532,9 @@
|
|
|
8500
8532
|
"license": "MIT"
|
|
8501
8533
|
},
|
|
8502
8534
|
"node_modules/hono": {
|
|
8503
|
-
"version": "4.12.
|
|
8504
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
8505
|
-
"integrity": "sha512-
|
|
8535
|
+
"version": "4.12.31",
|
|
8536
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz",
|
|
8537
|
+
"integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==",
|
|
8506
8538
|
"dev": true,
|
|
8507
8539
|
"license": "MIT",
|
|
8508
8540
|
"engines": {
|
|
@@ -10221,9 +10253,9 @@
|
|
|
10221
10253
|
}
|
|
10222
10254
|
},
|
|
10223
10255
|
"node_modules/nanoid": {
|
|
10224
|
-
"version": "3.3.
|
|
10225
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
10226
|
-
"integrity": "sha512-
|
|
10256
|
+
"version": "3.3.16",
|
|
10257
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
10258
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
10227
10259
|
"funding": [
|
|
10228
10260
|
{
|
|
10229
10261
|
"type": "github",
|
|
@@ -10503,9 +10535,9 @@
|
|
|
10503
10535
|
}
|
|
10504
10536
|
},
|
|
10505
10537
|
"node_modules/o11y_schema": {
|
|
10506
|
-
"version": "264.
|
|
10507
|
-
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.
|
|
10508
|
-
"integrity": "sha512-
|
|
10538
|
+
"version": "264.97.0",
|
|
10539
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.97.0.tgz",
|
|
10540
|
+
"integrity": "sha512-UMDNXEJy3ABnSXMFRVp0dPiXKuldkfQvt1EMWh/M7wWObJH8hDYK2dmn8oAAqVowD/OdtSiXmHLmSuUFSWlsVw==",
|
|
10509
10541
|
"license": "BSD-3-Clause",
|
|
10510
10542
|
"peer": true
|
|
10511
10543
|
},
|
|
@@ -10540,9 +10572,9 @@
|
|
|
10540
10572
|
}
|
|
10541
10573
|
},
|
|
10542
10574
|
"node_modules/obug": {
|
|
10543
|
-
"version": "2.1.
|
|
10544
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.
|
|
10545
|
-
"integrity": "sha512-
|
|
10575
|
+
"version": "2.1.4",
|
|
10576
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.4.tgz",
|
|
10577
|
+
"integrity": "sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==",
|
|
10546
10578
|
"funding": [
|
|
10547
10579
|
"https://github.com/sponsors/sxzz",
|
|
10548
10580
|
"https://opencollective.com/debug"
|
|
@@ -10709,9 +10741,9 @@
|
|
|
10709
10741
|
}
|
|
10710
10742
|
},
|
|
10711
10743
|
"node_modules/p-map": {
|
|
10712
|
-
"version": "7.0.
|
|
10713
|
-
"resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.
|
|
10714
|
-
"integrity": "sha512-
|
|
10744
|
+
"version": "7.0.6",
|
|
10745
|
+
"resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.6.tgz",
|
|
10746
|
+
"integrity": "sha512-I4Prw6ivkd6p8PiYR1tXASOAOBzIJwu0TB7fqaX0c/8c3QAehNYmX57EijyGGGBt3c/BIowGwV03RVBtXvHEVg==",
|
|
10715
10747
|
"dev": true,
|
|
10716
10748
|
"license": "MIT",
|
|
10717
10749
|
"engines": {
|
|
@@ -11148,9 +11180,9 @@
|
|
|
11148
11180
|
}
|
|
11149
11181
|
},
|
|
11150
11182
|
"node_modules/postcss": {
|
|
11151
|
-
"version": "8.5.
|
|
11152
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
11153
|
-
"integrity": "sha512-
|
|
11183
|
+
"version": "8.5.21",
|
|
11184
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.21.tgz",
|
|
11185
|
+
"integrity": "sha512-v4sDNP3fdNiWMfabO7OwOQdOX8TiQSztKyT1Wj0w+j7LDallJThJRBBBmzVGyYj0crMh7jlV4zepPkiNu9UwDQ==",
|
|
11154
11186
|
"funding": [
|
|
11155
11187
|
{
|
|
11156
11188
|
"type": "opencollective",
|
|
@@ -11167,7 +11199,7 @@
|
|
|
11167
11199
|
],
|
|
11168
11200
|
"license": "MIT",
|
|
11169
11201
|
"dependencies": {
|
|
11170
|
-
"nanoid": "^3.3.
|
|
11202
|
+
"nanoid": "^3.3.16",
|
|
11171
11203
|
"picocolors": "^1.1.1",
|
|
11172
11204
|
"source-map-js": "^1.2.1"
|
|
11173
11205
|
},
|
|
@@ -12434,9 +12466,9 @@
|
|
|
12434
12466
|
"license": "MIT"
|
|
12435
12467
|
},
|
|
12436
12468
|
"node_modules/tailwindcss": {
|
|
12437
|
-
"version": "4.3.
|
|
12438
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.
|
|
12439
|
-
"integrity": "sha512-
|
|
12469
|
+
"version": "4.3.3",
|
|
12470
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
|
|
12471
|
+
"integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==",
|
|
12440
12472
|
"devOptional": true,
|
|
12441
12473
|
"license": "MIT"
|
|
12442
12474
|
},
|
|
@@ -12455,9 +12487,9 @@
|
|
|
12455
12487
|
}
|
|
12456
12488
|
},
|
|
12457
12489
|
"node_modules/tar": {
|
|
12458
|
-
"version": "7.5.
|
|
12459
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
12460
|
-
"integrity": "sha512-
|
|
12490
|
+
"version": "7.5.20",
|
|
12491
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.20.tgz",
|
|
12492
|
+
"integrity": "sha512-9FcyK4PA6+WbzlTM9WhQm6vB5W7cP7dUiPsv1g7YDwEQnQ1CGpK3MGlKk/ITVWMk05kHZuBhmVhiv8LZoy/PFQ==",
|
|
12461
12493
|
"dev": true,
|
|
12462
12494
|
"license": "BlueOak-1.0.0",
|
|
12463
12495
|
"dependencies": {
|
|
@@ -12547,21 +12579,21 @@
|
|
|
12547
12579
|
}
|
|
12548
12580
|
},
|
|
12549
12581
|
"node_modules/tldts": {
|
|
12550
|
-
"version": "7.4.
|
|
12551
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
12552
|
-
"integrity": "sha512-
|
|
12582
|
+
"version": "7.4.9",
|
|
12583
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.9.tgz",
|
|
12584
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
12553
12585
|
"license": "MIT",
|
|
12554
12586
|
"dependencies": {
|
|
12555
|
-
"tldts-core": "^7.4.
|
|
12587
|
+
"tldts-core": "^7.4.9"
|
|
12556
12588
|
},
|
|
12557
12589
|
"bin": {
|
|
12558
12590
|
"tldts": "bin/cli.js"
|
|
12559
12591
|
}
|
|
12560
12592
|
},
|
|
12561
12593
|
"node_modules/tldts-core": {
|
|
12562
|
-
"version": "7.4.
|
|
12563
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
12564
|
-
"integrity": "sha512-
|
|
12594
|
+
"version": "7.4.9",
|
|
12595
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.9.tgz",
|
|
12596
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
12565
12597
|
"license": "MIT"
|
|
12566
12598
|
},
|
|
12567
12599
|
"node_modules/to-regex-range": {
|
|
@@ -12818,16 +12850,16 @@
|
|
|
12818
12850
|
}
|
|
12819
12851
|
},
|
|
12820
12852
|
"node_modules/typescript-eslint": {
|
|
12821
|
-
"version": "8.
|
|
12822
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
12823
|
-
"integrity": "sha512
|
|
12853
|
+
"version": "8.65.0",
|
|
12854
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.65.0.tgz",
|
|
12855
|
+
"integrity": "sha512-/ggrHAwyjENDusvyxbuqxAC2dTnZg/Z8F+fgQtYIz+L6n/9HfSlEZcFGV/NsMNa6CkGk0xUjUAFwC0vHOflvIA==",
|
|
12824
12856
|
"dev": true,
|
|
12825
12857
|
"license": "MIT",
|
|
12826
12858
|
"dependencies": {
|
|
12827
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
12828
|
-
"@typescript-eslint/parser": "8.
|
|
12829
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
12830
|
-
"@typescript-eslint/utils": "8.
|
|
12859
|
+
"@typescript-eslint/eslint-plugin": "8.65.0",
|
|
12860
|
+
"@typescript-eslint/parser": "8.65.0",
|
|
12861
|
+
"@typescript-eslint/typescript-estree": "8.65.0",
|
|
12862
|
+
"@typescript-eslint/utils": "8.65.0"
|
|
12831
12863
|
},
|
|
12832
12864
|
"engines": {
|
|
12833
12865
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|