diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index db6ca8e1ff..f916789293 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -1,13 +1,13 @@ -name: Merge branch dev with rel-9.3 +name: Merge branch dev with rel-10.0 on: push: branches: - - rel-9.3 + - rel-10.0 permissions: contents: read jobs: - merge-dev-with-rel-9-3: + merge-dev-with-rel-10-0: permissions: contents: write # for peter-evans/create-pull-request to create branch pull-requests: write # for peter-evans/create-pull-request to create a PR @@ -18,14 +18,14 @@ jobs: ref: dev - name: Reset promotion branch run: | - git fetch origin rel-9.3:rel-9.3 - git reset --hard rel-9.3 + git fetch origin rel-10.0:rel-10.0 + git reset --hard rel-10.0 - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: - branch: auto-merge/rel-9-3/${{github.run_number}} - title: Merge branch dev with rel-9.3 - body: This PR generated automatically to merge dev with rel-9.3. Please review the changed files before merging to prevent any errors that may occur. + branch: auto-merge/rel-10-0/${{github.run_number}} + title: Merge branch dev with rel-10.0 + body: This PR generated automatically to merge dev with rel-10.0. Please review the changed files before merging to prevent any errors that may occur. reviewers: maliming draft: true token: ${{ github.token }} @@ -34,5 +34,5 @@ jobs: GH_TOKEN: ${{ secrets.BOT_SECRET }} run: | gh pr ready - gh pr review auto-merge/rel-9-3/${{github.run_number}} --approve - gh pr merge auto-merge/rel-9-3/${{github.run_number}} --merge --auto --delete-branch + gh pr review auto-merge/rel-10-0/${{github.run_number}} --approve + gh pr merge auto-merge/rel-10-0/${{github.run_number}} --merge --auto --delete-branch diff --git a/common.props b/common.props index bf99a29ca2..82d1e8abbf 100644 --- a/common.props +++ b/common.props @@ -1,8 +1,8 @@ latest - 10.0.0-preview - 5.0.0-preview + 10.1.0-preview + 5.1.0-preview $(NoWarn);CS1591;CS0436 https://abp.io/assets/abp_nupkg.png https://abp.io/ @@ -18,6 +18,11 @@ + + + + + all diff --git a/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md new file mode 100644 index 0000000000..2d39bac91a --- /dev/null +++ b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md @@ -0,0 +1,302 @@ +# Where and How to Store Your BLOB Objects in .NET? + +When building modern web applications, managing [BLOBs (Binary Large Objects)](https://cloud.google.com/discover/what-is-binary-large-object-storage) such as images, videos, documents, or any other file types is a common requirement. Whether you're developing a CMS, an e-commerce platform, or almost any other kind of application, you'll eventually ask yourself: **"Where should I store these files?"** + +In this article, we'll explore different approaches to storing BLOBs in .NET applications and demonstrate how the ABP Framework simplifies this process with its flexible [BLOB Storing infrastructure](https://abp.io/docs/latest/framework/infrastructure/blob-storing). + +ABP Provides [multiple storage providers](https://abp.io/docs/latest/framework/infrastructure/blob-storing#blob-storage-providers) such as Azure, AWS, Google, Minio, Bunny etc. But for the simplicity of this article, we will only focus on the **Database Provider**, showing you how to store BLOBs in database tables step-by-step. + +## Understanding BLOB Storage Options + +Before diving into implementation details, let's understand the common approaches for storing BLOBs in .NET applications. Mainly, there are three main approaches: + +1. Database Storage +2. File System Storage +3. Cloud Storage + +### 1. Database Storage + +The first approach is to store BLOBs directly in the database alongside your relational data (_you can also store them separately_). This approach uses columns with types like `VARBINARY(MAX)` in SQL Server or `BYTEA` in PostgreSQL. + +**Pros:** +- ✅ Transactional consistency between files and related data +- ✅ Simplified backup and restore operations (everything in one place) +- ✅ No additional file system permissions or management needed + +**Cons:** +- ❌ Database size can grow significantly with large files +- ❌ Potential performance impact on database operations +- ❌ May require additional database tuning and optimization +- ❌ Increased backup size and duration + +### 2. File System Storage + +The second obvious approach is to store BLOBs as physical files in the server's file system. This approach is simple and easy to implement. Also, it's possible to use these two approaches together and keep the metadata and file references in the database. + +**Pros:** +- ✅ Better performance for large files +- ✅ Reduced database size and improved database performance +- ✅ Easier to leverage CDNs and file servers +- ✅ Simple to implement file system-level operations (compression, deduplication) + +**Cons:** +- ❌ Requires separate backup strategy for files +- ❌ Need to manage file system permissions +- ❌ Potential synchronization issues in distributed environments +- ❌ More complex cleanup operations for orphaned files + +### 3. Cloud Storage (Azure, AWS S3, etc.) + +The third approach can be using cloud storage services for scalability and global distribution. This approach is powerful and scalable. But it's also more complex to implement and manage. + +**Best for:** +- Large-scale applications +- Multi-region deployments +- Content delivery requirements + +## ABP Framework's BLOB Storage Infrastructure + +The ABP Framework provides an abstraction layer over different storage providers, allowing you to switch between them with minimal code changes. This is achieved through the **IBlobContainer** (and `IBlobContainer`) service and various provider implementations. + +> ABP provides several built-in providers, which you can see the full list [here](https://abp.io/docs/latest/framework/infrastructure/blob-storing#blob-storage-providers). + +Let's see how to use the Database provider in your application step by step. + +### Demo: Storing BLOBs in Database in an ABP-Based Application + +In this demo, we'll walk through a practical example of storing BLOBs in a database using ABP's BLOB Storing infrastructure. We'll focus on the backend implementation using the `IBlobContainer` service and examine the database structure that ABP creates automatically. The UI framework choice doesn't matter for this demonstration, as we're concentrating on the core BLOB storage functionality. + +If you don't have an ABP application yet, create one using the ABP CLI: + +```bash +abp new BlobStoringDemo +``` + +This command generates a new ABP layered application named `BlobStoringDemo` with **MVC** as the default UI and **SQL Server** as the default database provider. + +#### Understanding the Database Provider Setup + +When you create a layered ABP application, it automatically includes the BLOB Storing infrastructure with the Database Provider pre-configured. You can verify this by examining the module dependencies in your `*Domain`, `*DomainShared`, and `*EntityFrameworkCore` modules: + +```csharp +[DependsOn( + //... + typeof(BlobStoringDatabaseDomainModule) // <-- This is the Database Provider + )] +public class BlobStoringDemoDomainModule : AbpModule +{ + //... +} +``` + +Since the Database Provider is already included through module dependencies, no additional configuration is required to start using it. The provider is ready to use out of the box. + +However, if you're working with multiple BLOB storage providers or want to explicitly configure the Database Provider, you can add the following configuration to your `*EntityFrameworkCore` module's `ConfigureServices` method: + +```csharp +Configure(options => +{ + options.Containers.ConfigureDefault(container => + { + container.UseDatabase(); + }); +}); +``` + +> **Note:** This explicit configuration is optional when using only one BLOB provider (Database Provider in this case), but becomes necessary when managing multiple providers or custom container configurations. + +#### Running Database Migrations + +Now, let's apply the database migrations to create the necessary BLOB storage tables. Run the `DbMigrator` project: + +```bash +cd src/BlobStoringDemo.DbMigrator +dotnet run +``` + +Once the migration completes successfully, open your database management tool and you'll see two new tables: + +![](blob-tables.png) + +**Understanding the BLOB Storage Tables:** + +- **`AbpBlobContainers`**: Stores metadata about BLOB containers, including container names, tenant information, and any custom properties. + +- **`AbpBlobs`**: Stores the actual BLOB content (the binary data) along with references to their parent containers. Each BLOB is associated with a container through a foreign key relationship. + +When you save a BLOB, ABP automatically handles the database operations: the binary content goes into `AbpBlobs`, while the container configuration and metadata are managed in `AbpBlobContainers`. + +#### Creating a File Management Service + +Let's implement a practical application service that demonstrates common BLOB operations. Create a new application service class: + +```csharp +using System.Threading.Tasks; +using Volo.Abp.Application.Services; +using Volo.Abp.BlobStoring; + +namespace BlobStoringDemo +{ + public class FileAppService : ApplicationService, IFileAppService + { + private readonly IBlobContainer _blobContainer; + + public FileAppService(IBlobContainer blobContainer) + { + _blobContainer = blobContainer; + } + + public async Task SaveFileAsync(string fileName, byte[] fileContent) + { + // Save the file + await _blobContainer.SaveAsync(fileName, fileContent); + } + + public async Task GetFileAsync(string fileName) + { + // Get the file + return await _blobContainer.GetAllBytesAsync(fileName); + } + + public async Task FileExistsAsync(string fileName) + { + // Check if file exists + return await _blobContainer.ExistsAsync(fileName); + } + + public async Task DeleteFileAsync(string fileName) + { + // Delete the file + await _blobContainer.DeleteAsync(fileName); + } + } +} +``` + +Here, we are doing the followings: + +- Injecting the `IBlobContainer` service. +- Saving the BLOB data to the database with the `SaveAsync` method. (_it allows you to use byte arrays or streams_) +- Retrieving the BLOB data from the database with the `GetAllBytesAsync` method. +- Checking if the BLOB exists with the `ExistsAsync` method. +- Deleting the BLOB data from the database with the `DeleteAsync` method. + +With this service in place, you can now manage BLOBs throughout your application without worrying about the underlying storage implementation. Simply inject `IFileAppService` wherever you need file operations, and ABP handles all the provider-specific details behind the scenes. + +> Also, it's good to highlight that, the beauty of this approach is **provider independence**: you can start with database storage and later switch to Azure Blob Storage, AWS S3, or any other provider without modifying a single line of your application code. We'll explore this powerful feature in the next section. + +### Switching Between Providers + +One of the biggest advantages of using ABP's BLOB Storage system is the ability to switch providers without changing your application code. + +For example, you might start with the [File System provider](https://abp.io/docs/latest/framework/infrastructure/blob-storing/file-system) during development and switch to [Azure Blob Storage](https://abp.io/docs/latest/framework/infrastructure/blob-storing/azure) for production: + +**Development:** +```csharp +Configure(options => +{ + options.Containers.ConfigureDefault(container => + { + container.UseFileSystem(fileSystem => + { + fileSystem.BasePath = Path.Combine( + hostingEnvironment.ContentRootPath, + "Documents" + ); + }); + }); +}); +``` + +**Production:** +```csharp +Configure(options => +{ + options.Containers.ConfigureDefault(container => + { + container.UseAzure(azure => + { + azure.ConnectionString = "your azure connection string"; + azure.ContainerName = "your azure container name"; + azure.CreateContainerIfNotExists = true; + }); + }); +}); +``` + +**Your application code remains unchanged!** You just need to install the appropriate package and update the configuration. You can even use pragmas (for example: `#if !DEBUG`) to switch the provider at runtime (or use similar techniques). + +### Using Named BLOB Containers + +ABP allows you to define multiple BLOB containers with different configurations. This is useful when you need to store different types of files using different providers. Here are the steps to implement it: + +#### Step 1: Define a BLOB Container + +```csharp +[BlobContainerName("profile-pictures")] +public class ProfilePictureContainer +{ +} + +[BlobContainerName("documents")] +public class DocumentContainer +{ +} +``` + +#### Step 2: Configure Different Providers for Each Container + +```csharp +Configure(options => +{ + // Profile pictures stored in database + options.Containers.Configure(container => + { + container.UseDatabase(); + }); + + // Documents stored in file system + options.Containers.Configure(container => + { + container.UseFileSystem(fileSystem => + { + fileSystem.BasePath = Path.Combine( + hostingEnvironment.ContentRootPath, + "Documents" + ); + }); + }); +}); +``` + +#### Step 3: Use the Named Containers + +Once you have defined the BLOB Containers, you can use the `IBlobContainer` service to access the BLOB containers: + +```csharp +public class ProfileService : ApplicationService +{ + private readonly IBlobContainer _profilePictureContainer; + + public ProfileService(IBlobContainer profilePictureContainer) + { + _profilePictureContainer = profilePictureContainer; + } + + public async Task UpdateProfilePictureAsync(Guid userId, byte[] picture) + { + var blobName = $"{userId}.jpg"; + await _profilePictureContainer.SaveAsync(blobName, picture); + } +} +``` + +With this approach, your documents and profile pictures are stored in different containers and different providers. This is useful when you need to store different types of files using different providers and need scalability and performance. + +## Conclusion + +Managing BLOBs effectively is crucial for modern applications, and choosing the right storage approach depends on your specific needs. + +ABP's BLOB Storing infrastructure provides a powerful abstraction that lets you start with one provider and switch to another as your requirements evolve, all without changing your application code. + +Whether you're storing files in a database, file system, or cloud storage, ABP's BLOB Storing system provides a flexible and powerful way to manage your files. \ No newline at end of file diff --git a/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/blob-tables.png b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/blob-tables.png new file mode 100644 index 0000000000..01ec3cfa08 Binary files /dev/null and b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/blob-tables.png differ diff --git a/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/cover-image.png b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/cover-image.png new file mode 100644 index 0000000000..b79b298b25 Binary files /dev/null and b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/cover-image.png differ diff --git a/docs/en/docs-nav.json b/docs/en/docs-nav.json index c55f6845a8..30d4ea0dba 100644 --- a/docs/en/docs-nav.json +++ b/docs/en/docs-nav.json @@ -2443,6 +2443,10 @@ "text": "Docs", "path": "modules/docs.md" }, + { + "text": "Elsa (Pro)", + "path": "modules/elsa-pro.md" + }, { "text": "Feature Management", "path": "modules/feature-management.md" @@ -2655,6 +2659,10 @@ { "text": "Easy CRM", "path": "samples/easy-crm.md" + }, + { + "text": "ElsaWorkflows", + "path": "samples/elsa-workflows-demo.md" } ] }, diff --git a/docs/en/docs-params.json b/docs/en/docs-params.json index 4aa720e441..a5665a1215 100644 --- a/docs/en/docs-params.json +++ b/docs/en/docs-params.json @@ -27,6 +27,15 @@ "No": "Not Tiered", "Yes": "Tiered" } + }, + { + "name": "Architecture", + "displayName": "Architecture", + "values": { + "Monolith": "Monolith", + "Tiered": "Tiered", + "Microservice": "Microservice" + } } ] } \ No newline at end of file diff --git a/docs/en/framework/ui/react-native/index.md b/docs/en/framework/ui/react-native/index.md index 0f39752a82..f83b66b7b6 100644 --- a/docs/en/framework/ui/react-native/index.md +++ b/docs/en/framework/ui/react-native/index.md @@ -167,9 +167,9 @@ A React Native application running on an Android emulator or a physical phone ** }, "MobileGateway": { "RootUrl": "http://192.168.1.36:44347/" - }, + } //... - }, + } //... } } @@ -249,7 +249,8 @@ A React Native application running on an Android emulator or a physical phone ** } } ``` -{{ end }} + + {{ end }} Run the backend application as described in the [getting started document](../../../get-started). @@ -257,7 +258,7 @@ Run the backend application as described in the [getting started document](../.. ## How to disable the Https-only settings of OpenIddict -Open the {{ if Architecture == "Monolith" }}`MyProjectNameHttpApiHostModule`{{ if Architecture == "Tiered" }}`MyProjectNameAuthServerModule`{{ end }} project and copy-paste the below code-block to the `PreConfigureServices` method: +Open the {{ if Architecture == "Monolith" }}`MyProjectNameHttpApiHostModule`{{ else if Architecture == "Tiered" }}`MyProjectNameAuthServerModule`{{ end }} project and copy-paste the below code-block to the `PreConfigureServices` method: ```csharp #if DEBUG diff --git a/docs/en/images/elsa-create-order.png b/docs/en/images/elsa-create-order.png new file mode 100644 index 0000000000..0ea5a46c51 Binary files /dev/null and b/docs/en/images/elsa-create-order.png differ diff --git a/docs/en/images/elsa-main-page.png b/docs/en/images/elsa-main-page.png new file mode 100644 index 0000000000..0d73e981fe Binary files /dev/null and b/docs/en/images/elsa-main-page.png differ diff --git a/docs/en/images/elsa-module-structure.png b/docs/en/images/elsa-module-structure.png new file mode 100644 index 0000000000..9e993f6eb1 Binary files /dev/null and b/docs/en/images/elsa-module-structure.png differ diff --git a/docs/en/images/elsa-part-permissions.png b/docs/en/images/elsa-part-permissions.png new file mode 100644 index 0000000000..5560e164b0 Binary files /dev/null and b/docs/en/images/elsa-part-permissions.png differ diff --git a/docs/en/images/elsa-password-login.png b/docs/en/images/elsa-password-login.png new file mode 100644 index 0000000000..27b059ac55 Binary files /dev/null and b/docs/en/images/elsa-password-login.png differ diff --git a/docs/en/images/elsa-permissions.png b/docs/en/images/elsa-permissions.png new file mode 100644 index 0000000000..5ee8ea5e8a Binary files /dev/null and b/docs/en/images/elsa-permissions.png differ diff --git a/docs/en/images/elsa-workflow-instances.png b/docs/en/images/elsa-workflow-instances.png new file mode 100644 index 0000000000..88a5697194 Binary files /dev/null and b/docs/en/images/elsa-workflow-instances.png differ diff --git a/docs/en/modules/docs.md b/docs/en/modules/docs.md index b9c3209e3f..414766645d 100644 --- a/docs/en/modules/docs.md +++ b/docs/en/modules/docs.md @@ -502,7 +502,8 @@ Now you can use **Scriban** syntax to create sections in your document. For example: -````text +{%{ +```txt {{ if UI == "NG" }} * `-u` argument specifies the UI framework, `angular` in this case. @@ -521,7 +522,8 @@ For example: {{ end }} -```` +``` +}%} You can also use variables in a text, adding **_Value** postfix to its key: diff --git a/docs/en/modules/elsa-pro.md b/docs/en/modules/elsa-pro.md new file mode 100644 index 0000000000..a3181b20b8 --- /dev/null +++ b/docs/en/modules/elsa-pro.md @@ -0,0 +1,134 @@ +# Elsa Module (Pro) + +> You must have an ABP Team or a higher license to use this module. + +This module integrates [Elsa Workflows](https://docs.elsaworkflows.io/) into ABP Framework applications and is designed to make it easy for developers to use Elsa's capabilities within their ABP-based projects. For creating, managing, and customizing workflows themselves, please refer to [the official Elsa documentation](https://docs.elsaworkflows.io/). + +## How to install + +The Elsa module is not installed in [the startup templates](../solution-templates/layered-web-application) by default and must be installed manually. There are two ways of installing a module into your application and each one of these approaches is explained in the next sections. + +### Using ABP CLI + +ABP CLI allows adding a module to a solution using the ```add-module``` command. You can check its [documentation](../cli#add-module) for more information. So, the Elsa module can be added using the following command: + +```bash +abp add-module Volo.Elsa +``` + +### Manual Installation + +If you modified your solution structure, adding the module using ABP CLI might not work for you. In such cases, you can add the Elsa module into your solution manually. + +In order to do that, add packages listed below to the matching project in your solution. For example, `Volo.Abp.Elsa.Application` package to your **{ProjectName}.Application.csproj** as shown below: + +```xml + +``` + +After adding the package references, open the module class of the project (e.g.: `{ProjectName}ApplicationModule`) and add the code below to the `DependsOn` attribute: + +```csharp +[DependsOn( + //... + typeof(AbpElsaApplicationModule) +)] +``` + +> If you are using Blazor Web App, you need to add the `Volo.Elsa.Admin.Blazor.WebAssembly` package to the **{ProjectName}.Blazor.Client.csproj** project and add the `Volo.Elsa.Admin.Blazor.Server` package to the **{ProjectName}.Blazor.csproj** project. + +## The Elsa Module + +The Elsa Workflows has its own database provider, and also has a Tenant/Role/User system. They are under active development, so the ABP Elsa module is not yet fully integrated. Below is the current status of each module in the ABP's Elsa Module: + +- `AbpElsaAspNetCoreModule(Volo.Elsa.Abp.AspNetCore)` module is used to integrate Elsa authentication. +- `AbpElsaIdentityModule(Volo.Elsa.Abp.Identity)` module is used to integrate ABP Identity authentication. +- `AbpElsaApplicationModule(Volo.Elsa.Abp.Application)` and `AbpElsaApplicationContractsModule(Volo.Elsa.Abp.Application.Contracts)` modules are used to define the Elsa permissions. + +The rest of the projects/modules are basically empty and will be implemented in the future based on the Elsa features: + +- `AbpElsaDomainModule(Volo.Elsa.Abp.Domain)` +- `AbpElsaEntityFrameworkCoreModule(Volo.Elsa.Abp.EntityFrameworkCore)` +- `AbpElsaHttpApiModule(Volo.Elsa.Abp.HttpApi)` +- `AbpElsaHttpApiClientModule(Volo.Elsa.Abp.HttpApi.Client)` +- `AbpElsaBlazorModule(Volo.Elsa.Abp.Blazor)` +- `AbpElsaBlazorServerModule(Volo.Elsa.Abp.Blazor.Server)` +- `AbpElsaBlazorWebAssemblyModule(Volo.Elsa.Abp.Blazor.WebAssembly)` +- `AbpElsaWebModule(Volo.Elsa.Abp.Web)` + +### Elsa Module Permissions + +The Elsa Workflow API endpoints check permissions. Also, it has a `*` wildcard permission to allow all permissions. + +The ABP Elsa module defines all permissions that are used in the Elsa workflow. You can use ABP Permission Management module to manage the permissions. + +`AbpElsaAspNetCoreModule(Volo.Elsa.Abp.AspNetCore)` module will check and add these permissions to the current user's claims: + +![Elsa Permissions](../images/elsa-permissions.png) + +You can also grant parts of the permissions to a role or user. It will add the `permissions` claims to the current user's `Cookies` or `Token`. Elsa Server will read the claims and allow or deny access: + +![Elsa Part Permissions](../images/elsa-part-permissions.png) + +### Elsa Studio + +Elsa Studio is an **independent** web application that allows you to design, manage, and execute workflows. It is built using **Blazor Server/WebAssembly**. + +Elsa Studio requires authentication and there are two ways to authenticate Elsa Studio: + +* Password Flow Authentication +* Code Flow Authentication + +#### Elsa Studio - Password Flow Authentication + +The `AbpElsaIdentityModule(Volo.Elsa.Abp.Identity)` module is used to integrate with [ABP Identity module](./identity-pro.md) to check Elsa Studio *username* and *password* against ABP Identity. + +You need to replace `UseIdentity` with `UseAbpIdentity` when configuring Elsa in your Elsa server project as follows: + +```csharp +context.Services + .AddElsa(elsa => elsa + .UseAbpIdentity(identity => + { + identity.TokenOptions = options => options.SigningKey = "large-signing-key-for-signing-JWT-tokens"; + }); + ); +``` + +After that, you can add the below code to use `Identity` as the login method in your Elsa Studio client project: + +```csharp +builder.Services.AddLoginModule().UseElsaIdentity(); +``` + +Then, you can log in to the Elsa Studio application with the default credentials (`admin` as the username, and `1q2w3E*` as the password): + +![elsa-login](../images/elsa-password-login.png) + +Once, you logged in to the application, you can start defining workflows, manage them and see their execution instances and more: + +![elsa-main](../images/elsa-main-page.png) + +#### Elsa Studio - Code Flow Authentication + +ABP applications use [OpenIddict](./openiddict-pro.md) for authentication. So, you can use the [Authorization Code Flow](https://oauth.net/2/grant-types/authorization-code/) to authenticate Elsa Studio. + +To do that, you can add the code block below to your Elsa Studio client project: + +```csharp +builder.Services.AddLoginModule().UseOpenIdConnect(connectConfiguration => +{ + var authority = configuration["AuthServer:Authority"]!.TrimEnd('/'); // Your Server URL + connectConfiguration.AuthEndpoint = $"{authority}/connect/authorize"; + connectConfiguration.TokenEndpoint = $"{authority}/connect/token"; + connectConfiguration.EndSessionEndpoint = $"{authority}/connect/endsession"; + connectConfiguration.ClientId = configuration["AuthServer:ClientId"]!; + connectConfiguration.Scopes = ["openid", "profile", "email", "phone", "roles", "offline_access", "ElsaDemoAppServer"]; +}); +``` + +After that, Elsa Studio will redirect to your ABP application's login page, then redirect back to Elsa Studio after the successful login. + +### Elsa Workflows - Sample Workflow Demo + +ABP provides a complete demo application that shows how to use the Elsa module in your ABP application. You can download the demo application and see the integration points, if you stuck at any point. Please see the [Elsa Workflows - Sample Workflow Demo](../samples/elsa-workflows.md) page for more information. diff --git a/docs/en/samples/elsa-workflows-demo.md b/docs/en/samples/elsa-workflows-demo.md new file mode 100644 index 0000000000..5043857bcc --- /dev/null +++ b/docs/en/samples/elsa-workflows-demo.md @@ -0,0 +1,73 @@ +# Elsa Workflows - Sample Workflow Demo + +The `ElsaDemoApp` is a sample application that demonstrates how to use the [Elsa](https://github.com/elsa-workflows/elsa-core) module in an ABP application. The demo application consists of four projects: + +- `ElsaDemoApp.Server` is an ABP application with Identity and Elsa modules. It is used as the authentication server and Elsa workflow server. +- `ElsaDemoApp.Studio.WASM` is a Blazor WebAssembly application with Elsa Studio. It is used as the Elsa Studio client application. +- `ElsaDemoApp.Ordering` and `ElsaDemoApp.Payment` are two microservices that can be used to test the Elsa workflows in distributed systems. + +![Elsa Module Structure](../images/elsa-module-structure.png) + +> **This sample workflow demonstrates how to integrate ABP with Elsa Workflows.** For more detailed information about Elsa itself, please refer to the official [Elsa documentation](https://docs.elsaworkflows.io/) and related guides. + +## Download + +> **Note:** The `ElsaDemoApp` sample application is only for the **ABP customers**. Therefore, you need to have a commercial license to be able to download the source code. + +* You can download the complete source-code from [https://abp.io/api/download/samples/elsaworkflow](https://abp.io/Account/Login?returnUrl=/api/download/samples/elsaworkflow) + +## Running the Demo Application + +The `ElsaDemoApp.Server` has a pre-defined Elsa workflow that creates an order and processes the payment using Elsa workflows, and uses ABP distributed event bus to coordinate the workflow. + +Here is the complete workflow in code: + +```cs +public class OrderWorkflow : WorkflowBase +{ + public const string Name = "OrderWorkflow"; + + protected override void Build(IWorkflowBuilder builder) + { + builder.WithDefinitionId(Name); + builder.Root = new Sequence + { + Activities = + { + // Will publish NewOrderEto event to the Ordering microservice, Ordering microservice will create the order and publish OrderPlaced event + new CreateOrderActivity(), + + // Wait for the OrderPlaced event, This event is triggered by the Ordering microservice, and Elsa will make workflow continue to the next activity + new OrderPlacedEvent(), + + // This activity will publish RequestPaymentEto event to the Payment microservice, Payment microservice will process the payment and publish PaymentCompleted event + new RequestPaymentActivity(), + + // Wait for the PaymentCompleted event, This event is triggered by the Payment microservice, and Elsa will make workflow continue to the next activity + new PaymentCompletedEvent(), + + // This activity will send an email to the customer indicating that the payment is completed + new PaymentCompletedActivity() + } + }; + } +} +``` + +> The demo application uses SQL Server LocalDB as the database provider, Redis as the caching server and RabbitMQ for the message broker. Please make sure you have them installed and running on your machine and then follow the instructions below to run the application. + +You can apply the following steps to run the demo application: + +1. Run `ElsaDemoApp.Server` project to migrate the database(`dotnet run --migrate-database`) and start the server. +2. Run `ElsaDemoApp.Studio.WASM` project to start the Elsa Studio client application. +3. Run `ElsaDemoApp.Ordering` project to start the Ordering microservice. +4. Run `ElsaDemoApp.Payment` project to start the Payment microservice. + +After running all the applications, you can log in to the `ElsaDemoApp.Server` application (with the default credentials) and navigate to the `https://localhost:5001/Ordering` page to create an order: + +![Create Order](../images/elsa-create-order.png) + +After that, you can navigate to the `ElsaDemoApp.Studio.WASM` application and see the workflow instance created, running, and completed: + +![Workflow Instances](../images/elsa-workflow-instances.png) + diff --git a/docs/en/studio/release-notes.md b/docs/en/studio/release-notes.md index d36500ec3b..3ea73d9111 100644 --- a/docs/en/studio/release-notes.md +++ b/docs/en/studio/release-notes.md @@ -2,6 +2,41 @@ This document contains **brief release notes** for each ABP Studio release. Release notes only include **major features** and **visible enhancements**. Therefore, they don't include all the development done in the related version. +## 1.3.2 (2025-09-25) + +* Enhanced AI Assistant with bug fixes and improvements. +* Implemented new public website layout for public website projects. +* Added container priority setting in Solution Runner. +* Fixed relative image path problems in markdown files and added SVG support. +* Enhanced Angular templates with application builder support. +* Fixed Aspire profile database creation issues in microservice template. + +## 1.3.1 (2025-09-22) + +* Added Blazor WebApp application information to ReadMe in application template. + +## 1.3.0 (2025-09-22) + +* Upgraded template dependencies for ABP Framework and LeptonX. (targeting ABP `9.3.4`) +* **Added .NET Aspire Integration** to ABP Studio and Microservice Startup Template. +* **Introduced AI Support Assistant** for enhanced development experience. +* Added new package option: **C# Console Application (With ABP)**. +* Enhanced Solution Runner with double-click browse functionality. +* Made Blazor WebApp option available for module templates. +* Updated React Native templates to use latest Expo/React Native standards. +* Removed LeptonX Theme Management by default from templates. +* Added Scriban template build-time validation. +* Enhanced MVC UI layer with localization and loading indicators. + +## 1.2.2 (2025-08-27) + +* Upgraded template dependencies for ABP Framework and LeptonX. (targeting ABP `9.3.2`) +* Fixed LeptonX Lite logo problems. +* Redesigned LeptonX footer component. +* Enhanced language selection with sorting by display name. +* Improved template configuration with default language handling. +* Optimized search depth for restore need detection. + ## 1.2.1 (2025-08-14) * Upgraded template dependencies for ABP Framework and LeptonX. (targeting ABP `9.3.1`) diff --git a/docs/en/studio/version-mapping.md b/docs/en/studio/version-mapping.md index eaf6dc2313..fbbf68c769 100644 --- a/docs/en/studio/version-mapping.md +++ b/docs/en/studio/version-mapping.md @@ -4,6 +4,8 @@ This document provides a general overview of the relationship between various ve | **ABP Studio Version** | **ABP Version of Startup Template** | |------------------------|---------------------------| +| 1.3.0 - 1.3.2 | 9.3.4 | +| 1.2.2 | 9.3.2 | | 1.2.1 | 9.3.1 | | 1.1.2 | 9.2.3 | | 1.1.0 - 1.1.1 | 9.2.2 | diff --git a/framework/src/Volo.Abp.AI/Volo/Abp/AI/AbpAIOptions.cs b/framework/src/Volo.Abp.AI.Abstractions/Volo/Abp/AI/AbpAIOptions.cs similarity index 100% rename from framework/src/Volo.Abp.AI/Volo/Abp/AI/AbpAIOptions.cs rename to framework/src/Volo.Abp.AI.Abstractions/Volo/Abp/AI/AbpAIOptions.cs diff --git a/framework/src/Volo.Abp.Mapperly/Volo/Abp/Mapperly/MapperlyAutoObjectMappingProvider.cs b/framework/src/Volo.Abp.Mapperly/Volo/Abp/Mapperly/MapperlyAutoObjectMappingProvider.cs index 3876ee09a1..4fd72ded4b 100644 --- a/framework/src/Volo.Abp.Mapperly/Volo/Abp/Mapperly/MapperlyAutoObjectMappingProvider.cs +++ b/framework/src/Volo.Abp.Mapperly/Volo/Abp/Mapperly/MapperlyAutoObjectMappingProvider.cs @@ -227,10 +227,15 @@ public class MapperlyAutoObjectMappingProvider : IAutoObjectMappingProvider return extraProperties; } - foreach (var property in hasExtraProperties.ExtraProperties) + + if(hasExtraProperties.ExtraProperties is not null) { - extraProperties.Add(property.Key, property.Value); + foreach (var property in hasExtraProperties.ExtraProperties) + { + extraProperties.Add(property.Key, property.Value); + } } + return extraProperties; } diff --git a/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/DictionaryBasedFileProvider.cs b/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/DictionaryBasedFileProvider.cs index 63c2b0bc03..cb0786393b 100644 --- a/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/DictionaryBasedFileProvider.cs +++ b/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/DictionaryBasedFileProvider.cs @@ -16,7 +16,7 @@ public abstract class DictionaryBasedFileProvider : IFileProvider return new NotFoundFileInfo(subpath!); } - var file = Files.GetOrDefault(NormalizePath(subpath)) ?? Files.GetOrDefault(subpath); + var file = Files.GetOrDefault(NormalizePath(subpath)); if (file == null) { diff --git a/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/Embedded/AbpEmbeddedFileProvider.cs b/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/Embedded/AbpEmbeddedFileProvider.cs index 05c5e867e7..9ea816e0eb 100644 --- a/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/Embedded/AbpEmbeddedFileProvider.cs +++ b/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/Embedded/AbpEmbeddedFileProvider.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; -using System.Text.RegularExpressions; using JetBrains.Annotations; using Microsoft.Extensions.FileProviders; @@ -108,21 +107,6 @@ public class AbpEmbeddedFileProvider : DictionaryBasedFileProvider { resourceName = resourceName.Substring(BaseNamespace!.Length + 1); } - else - { - // Fix NET 10 RC 1 Microsoft.Extensions.FileProviders.Embedded issue temporarily - //https://github.com/dotnet/aspnetcore/issues/63719 - string[] webContentFolders = ["wwwroot", "Pages", "Views", "Themes", "Components"]; - foreach (var contentFolder in webContentFolders.Where(contentFolder => resourceName.Contains($".{contentFolder}."))) - { - var index = resourceName.IndexOf(contentFolder, StringComparison.CurrentCultureIgnoreCase); - if (index > 0) - { - resourceName = resourceName.Substring(index); - } - break; - } - } var pathParts = resourceName.Split('.'); if (pathParts.Length <= 2) @@ -130,35 +114,10 @@ public class AbpEmbeddedFileProvider : DictionaryBasedFileProvider return resourceName; } - if (pathParts.Length >= 4 && (pathParts[pathParts.Length - 2] == "min" || pathParts[pathParts.Length - 2] == "rtl")) - { - // Fix NET 10 RC 1 Microsoft.Extensions.FileProviders.Embedded issue temporarily - //https://github.com/dotnet/aspnetcore/issues/63719 - pathParts = pathParts[pathParts.Length - 3] == "bundle" - ? pathParts.Take(pathParts.Length - 4).Concat([pathParts.Skip(pathParts.Length - 4).JoinAsString(".")]).ToArray() - : pathParts.Take(pathParts.Length - 3).Concat([pathParts.Skip(pathParts.Length - 3).JoinAsString(".")]).ToArray(); - - if (pathParts.Length <= 2) - { - return resourceName; - } + var folder = pathParts.Take(pathParts.Length - 2).JoinAsString("/"); + var fileName = pathParts[pathParts.Length - 2] + "." + pathParts[pathParts.Length - 1]; - var folder = pathParts.Take(pathParts.Length - 1).JoinAsString("/").Replace("_", "-"); - var fileName = pathParts[pathParts.Length - 1].Replace("_", "-"); - return folder + "/" + fileName; - } - else - { - if (pathParts.Length <= 2) - { - return resourceName; - } - - var folder = pathParts.Take(pathParts.Length - 2).JoinAsString("/"); - var fileName = pathParts[pathParts.Length - 2] + "." + pathParts[pathParts.Length - 1]; - - return folder + "/" + fileName; - } + return folder + "/" + fileName; } private static string CalculateFileName(string filePath) diff --git a/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json b/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json new file mode 100644 index 0000000000..37a07a803c --- /dev/null +++ b/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json @@ -0,0 +1,39 @@ +{ + "packages":[ + { + "name": "@abp/ng.account", + "appRoutingModuleConfiguration":{ + "routes":[ + "{ path: 'account', loadChildren: () => import('@abp/ng.account').then(c => c.createRoutes()),}" + ] + }, + "appModuleConfiguration":{ + "imports":[ + { + "names":[ + "provideAccountConfig" + ], + "namespace": "@abp/ng.account/config" + } + ], + "providerNames":[ + "provideAccountConfig()" + ] + }, + "tsJsonPathRecordConfigurations":[ + { + "name": "@abp/ng.account", + "paths": [ + "angular/projects/account/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.account/config", + "paths": [ + "angular/projects/account/config/src/public-api.ts" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj b/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj index 1b5f111bf9..271a2428af 100644 --- a/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj +++ b/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj @@ -25,6 +25,8 @@ true content\ + + diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json index fb3839fa8e..50ec5ba8c7 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json @@ -3,8 +3,8 @@ "name": "asp.net", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~9.3.4", - "@abp/prismjs": "~9.3.4", - "@abp/highlight.js": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared": "~9.3.5", + "@abp/prismjs": "~9.3.5", + "@abp/highlight.js": "~9.3.5" } } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock index a450bfdaee..343e4112aa 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock @@ -2,203 +2,203 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== - dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/clipboard@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.4.tgz#5d87616bec7ecba999cf8b92d166e3b276dcf76b" - integrity sha512-Zy7bglv4vF3LvdXL0De/8Dy/VaQTHA0k2FNN6YjrZX3Brj2PqlQ+1vGcHmoZheI6Wz1DYME+jOVpa5gQziBFJA== +"@abp/clipboard@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.5.tgz#e6d197590f4e7f7b5e55eb000dffd4b4631c0466" + integrity sha512-eWxl9Q9/wvnhutOrZkek/yuZ1I1qpSmI90Dcyq4vraLEiASVRs0Yz3FeN7EIIANE7cNgoMe1WKz7YicoBjV1MQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" clipboard "^2.0.11" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/highlight.js@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-9.3.4.tgz#62a98df3441d6586da0c51e60409cb928115dbb8" - integrity sha512-CapJClX9aT1qjNMdCXS//2YFL1fV2jv8jpqmxdIK2D5aqNv2m8+qArCSlkdfUGnkptGrzJhPizgn39bqYpXDyA== +"@abp/highlight.js@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-9.3.5.tgz#9662f960967d8a5ce0f180a40389bfb0120c9462" + integrity sha512-wDz2wWzeQUgk8iSl3GpEdPddx10DQaLtl/6YWNNkdvCrE18MRMhRBapfdk/iwAA6DwUPzGJPdfS363socSWpxg== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@highlightjs/cdn-assets" "~11.10.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/prismjs@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.4.tgz#5790cad00edfccbcaf1547f12d9c040b2ade735d" - integrity sha512-KVdolBH4G8h0FhXyL2noc8JodadbM8EowjCwkbTaqiTeY4qjTTXfQf+kBwVg6x/C3uMmO2hjbFMHeXA+f3rVfw== +"@abp/prismjs@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.5.tgz#4b9ed7c6fb6bdb0a5868eda6998cf8982b87aafa" + integrity sha512-XJ/Dd6bYasxLlc6KWMde/FVcrg44sGx41XrZNq13pxcd3pp6P3uGswMbLfI3D1jhri28/F7QBjHR2Z+5YMxdRw== dependencies: - "@abp/clipboard" "~9.3.4" - "@abp/core" "~9.3.4" + "@abp/clipboard" "~9.3.5" + "@abp/core" "~9.3.5" prismjs "^1.29.0" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json index 924306e0d2..8e395318dd 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json @@ -3,8 +3,8 @@ "name": "asp.net", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4", - "@abp/prismjs": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5", + "@abp/prismjs": "~9.3.5" }, "devDependencies": {} } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock index 3a4562e065..1f693e274c 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock @@ -2,202 +2,202 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" - -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== - dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" + +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/clipboard@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.4.tgz#5d87616bec7ecba999cf8b92d166e3b276dcf76b" - integrity sha512-Zy7bglv4vF3LvdXL0De/8Dy/VaQTHA0k2FNN6YjrZX3Brj2PqlQ+1vGcHmoZheI6Wz1DYME+jOVpa5gQziBFJA== +"@abp/clipboard@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.5.tgz#e6d197590f4e7f7b5e55eb000dffd4b4631c0466" + integrity sha512-eWxl9Q9/wvnhutOrZkek/yuZ1I1qpSmI90Dcyq4vraLEiASVRs0Yz3FeN7EIIANE7cNgoMe1WKz7YicoBjV1MQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" clipboard "^2.0.11" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/prismjs@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.4.tgz#5790cad00edfccbcaf1547f12d9c040b2ade735d" - integrity sha512-KVdolBH4G8h0FhXyL2noc8JodadbM8EowjCwkbTaqiTeY4qjTTXfQf+kBwVg6x/C3uMmO2hjbFMHeXA+f3rVfw== +"@abp/prismjs@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.5.tgz#4b9ed7c6fb6bdb0a5868eda6998cf8982b87aafa" + integrity sha512-XJ/Dd6bYasxLlc6KWMde/FVcrg44sGx41XrZNq13pxcd3pp6P3uGswMbLfI3D1jhri28/F7QBjHR2Z+5YMxdRw== dependencies: - "@abp/clipboard" "~9.3.4" - "@abp/core" "~9.3.4" + "@abp/clipboard" "~9.3.5" + "@abp/core" "~9.3.5" prismjs "^1.29.0" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/blogging/app/Volo.BloggingTestApp/package.json b/modules/blogging/app/Volo.BloggingTestApp/package.json index a2dab96ec5..061adae557 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/package.json +++ b/modules/blogging/app/Volo.BloggingTestApp/package.json @@ -3,7 +3,7 @@ "name": "volo.blogtestapp", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4", - "@abp/blogging": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5", + "@abp/blogging": "~9.3.5" } } diff --git a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock index f2574b72bc..fbf0be509d 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock +++ b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock @@ -2,228 +2,228 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" - -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== - dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" + +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/blogging@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-9.3.4.tgz#0c6854a20f26458cfa07180375ea64f198975bc8" - integrity sha512-PW9GQhLFXT0jXUuYGgrYJoPEeKbjcdE2HEGLmxNCM/TwSlfMushkcKbTp4dU77Z9QoDWPJlWMgd+SZmRFyosuw== +"@abp/blogging@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-9.3.5.tgz#9d8f009e3887d95e1e8e7ede297a2fdec70bbf44" + integrity sha512-dbPiAjvg4+AdyW8WG/43O3SE5bn9nVH2icVoAIhF7dNMsM5EjNSjrgZJyT942WIHBdorMMqqF5wBfoBTC1OTgQ== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" - "@abp/owl.carousel" "~9.3.4" - "@abp/prismjs" "~9.3.4" - "@abp/tui-editor" "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" + "@abp/owl.carousel" "~9.3.5" + "@abp/prismjs" "~9.3.5" + "@abp/tui-editor" "~9.3.5" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/clipboard@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.4.tgz#5d87616bec7ecba999cf8b92d166e3b276dcf76b" - integrity sha512-Zy7bglv4vF3LvdXL0De/8Dy/VaQTHA0k2FNN6YjrZX3Brj2PqlQ+1vGcHmoZheI6Wz1DYME+jOVpa5gQziBFJA== +"@abp/clipboard@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.5.tgz#e6d197590f4e7f7b5e55eb000dffd4b4631c0466" + integrity sha512-eWxl9Q9/wvnhutOrZkek/yuZ1I1qpSmI90Dcyq4vraLEiASVRs0Yz3FeN7EIIANE7cNgoMe1WKz7YicoBjV1MQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" clipboard "^2.0.11" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/owl.carousel@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-9.3.4.tgz#b63ee94c585aeda369fc39b495b963508ab9368d" - integrity sha512-kvhrd0HY1f1+zYks8H10e/eNcMSJ83zGLw64r9jBUsdFInetuhaAirZVlx+q5scLI8jDzyMoA/vACeTcNlQPqA== +"@abp/owl.carousel@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-9.3.5.tgz#e7619881606fdb685b0baf5ab7dc62357422af20" + integrity sha512-NhCuFozq1+z4FaK/lulJo3qz0CLFN0EjHbxdIqbHMUtCwATTqCpe0EGhfBA+xaHNN4hSzCaAdVcVp11ivIeuvQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" owl.carousel "^2.3.4" -"@abp/prismjs@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.4.tgz#5790cad00edfccbcaf1547f12d9c040b2ade735d" - integrity sha512-KVdolBH4G8h0FhXyL2noc8JodadbM8EowjCwkbTaqiTeY4qjTTXfQf+kBwVg6x/C3uMmO2hjbFMHeXA+f3rVfw== +"@abp/prismjs@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.5.tgz#4b9ed7c6fb6bdb0a5868eda6998cf8982b87aafa" + integrity sha512-XJ/Dd6bYasxLlc6KWMde/FVcrg44sGx41XrZNq13pxcd3pp6P3uGswMbLfI3D1jhri28/F7QBjHR2Z+5YMxdRw== dependencies: - "@abp/clipboard" "~9.3.4" - "@abp/core" "~9.3.4" + "@abp/clipboard" "~9.3.5" + "@abp/core" "~9.3.5" prismjs "^1.29.0" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/tui-editor@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-9.3.4.tgz#e6a241223aac4a39dd1c48043611f304202e7992" - integrity sha512-Xw8TpOXkLztlXLS3Ky3s5d0W6zIob2G2oFe+iWay5OrTVPSNUHfPmtsrp+Rbd3PjaeZG7OyCkBFBI71IJQdiOg== +"@abp/tui-editor@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-9.3.5.tgz#b3686219334ed609a7e1d956582e6c8282057aff" + integrity sha512-nBzhCHaXfzisJ6FFu+Pl/ES2nN4yq8lXyt6Ee3/KGlM+nJ5rYvV+NoerckfMnlrFDVzenQKT1FVplUmqv18UKQ== dependencies: - "@abp/jquery" "~9.3.4" - "@abp/prismjs" "~9.3.4" + "@abp/jquery" "~9.3.5" + "@abp/prismjs" "~9.3.5" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json index b357605d6d..515e71f70e 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json @@ -3,6 +3,6 @@ "name": "client-simulation-web", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock index 1f1a15b8cb..b599d084c6 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock @@ -2,185 +2,185 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/cms-kit/angular/package.json b/modules/cms-kit/angular/package.json index b42f800981..4bc59031c5 100644 --- a/modules/cms-kit/angular/package.json +++ b/modules/cms-kit/angular/package.json @@ -15,11 +15,11 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~9.3.4", - "@abp/ng.identity": "~9.3.4", - "@abp/ng.setting-management": "~9.3.4", - "@abp/ng.tenant-management": "~9.3.4", - "@abp/ng.theme.basic": "~9.3.4", + "@abp/ng.account": "~9.3.5", + "@abp/ng.identity": "~9.3.5", + "@abp/ng.setting-management": "~9.3.5", + "@abp/ng.tenant-management": "~9.3.5", + "@abp/ng.theme.basic": "~9.3.5", "@angular/animations": "~10.0.0", "@angular/common": "~10.0.0", "@angular/compiler": "~10.0.0", diff --git a/modules/cms-kit/angular/projects/cms-kit/package.json b/modules/cms-kit/angular/projects/cms-kit/package.json index 005b7efed7..d43c05193e 100644 --- a/modules/cms-kit/angular/projects/cms-kit/package.json +++ b/modules/cms-kit/angular/projects/cms-kit/package.json @@ -4,8 +4,8 @@ "peerDependencies": { "@angular/common": "^9.1.11", "@angular/core": "^9.1.11", - "@abp/ng.core": ">=9.3.4", - "@abp/ng.theme.shared": ">=9.3.4" + "@abp/ng.core": ">=9.3.5", + "@abp/ng.theme.shared": ">=9.3.5" }, "dependencies": { "tslib": "^2.0.0" diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json index 8f9b815bd7..95511cd3da 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json @@ -3,6 +3,6 @@ "name": "my-app-identityserver", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock index 1f1a15b8cb..b599d084c6 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock @@ -2,185 +2,185 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json b/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json index e33522d6e1..71e19a38de 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock index 1f1a15b8cb..b599d084c6 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock @@ -2,185 +2,185 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json index 6038909028..2476ee02d3 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4", - "@abp/cms-kit": "9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5", + "@abp/cms-kit": "9.3.5" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock index 0084bfc9e9..2ca450ef35 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock @@ -2,293 +2,293 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" - -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== - dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" + +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/clipboard@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.4.tgz#5d87616bec7ecba999cf8b92d166e3b276dcf76b" - integrity sha512-Zy7bglv4vF3LvdXL0De/8Dy/VaQTHA0k2FNN6YjrZX3Brj2PqlQ+1vGcHmoZheI6Wz1DYME+jOVpa5gQziBFJA== +"@abp/clipboard@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.5.tgz#e6d197590f4e7f7b5e55eb000dffd4b4631c0466" + integrity sha512-eWxl9Q9/wvnhutOrZkek/yuZ1I1qpSmI90Dcyq4vraLEiASVRs0Yz3FeN7EIIANE7cNgoMe1WKz7YicoBjV1MQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" clipboard "^2.0.11" -"@abp/cms-kit.admin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-9.3.4.tgz#eac26845acc7fa0eba9975effc33c5a8b2ccac02" - integrity sha512-gEIV1vnpQd1PxHUpwwOuJ2YnzPHr03EtmZRQU36dxx09M+JcXDqGwfamtsxJxvi1h9RAWejj6Va/t0NlYCmL5g== +"@abp/cms-kit.admin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-9.3.5.tgz#b8ee1b6e8e9b96eb0f371e37fabf89b4e07832da" + integrity sha512-7YWw168hrYRenPx2bCJcPQio6bF1EN6KyCdabGhNdRiBjjDPwoZzcRMdwDHlSJOYhLec0xFxEqFVe0VoNkqVEg== dependencies: - "@abp/codemirror" "~9.3.4" - "@abp/jstree" "~9.3.4" - "@abp/markdown-it" "~9.3.4" - "@abp/slugify" "~9.3.4" - "@abp/tui-editor" "~9.3.4" - "@abp/uppy" "~9.3.4" + "@abp/codemirror" "~9.3.5" + "@abp/jstree" "~9.3.5" + "@abp/markdown-it" "~9.3.5" + "@abp/slugify" "~9.3.5" + "@abp/tui-editor" "~9.3.5" + "@abp/uppy" "~9.3.5" -"@abp/cms-kit.public@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-9.3.4.tgz#becd73e870d8aea36bb473e6bfd296b330179225" - integrity sha512-LT2U4bTCiTurtbs3TByhlAc14z34puapGph03QPu7973cp8g8ls+Yrp/bT05aDDrGE3fnBVW5Axd/cy1/5BPWQ== +"@abp/cms-kit.public@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-9.3.5.tgz#84c5a77f908a7ea9d7d759adad49929ff5206cb9" + integrity sha512-9EzdFxmAlvLJ36XFrN2YNKJZVf6tRHIgStWvyJh8Zn+/IYqHU22YnzUIC79rtFoN6ODpzQjwPuLQTLjhwtJKaw== dependencies: - "@abp/highlight.js" "~9.3.4" - "@abp/star-rating-svg" "~9.3.4" + "@abp/highlight.js" "~9.3.5" + "@abp/star-rating-svg" "~9.3.5" -"@abp/cms-kit@9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-9.3.4.tgz#d8974758d7f7566176fabc23149500944a1322ce" - integrity sha512-nhAbIkUbH4+lp6IBEGynY8hTavyCDs2XT4ig46OnLD2NJFSvb9bVejUHjhxP+2BYxcgmkLWI4BsTs8j94SbYUA== +"@abp/cms-kit@9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-9.3.5.tgz#4e4523addfce1009dd25ca12d5ca6301aef3f003" + integrity sha512-gJhpSvwt+pPYdiK7PR61vOHDhuxaxuHrNUW4UOzdkZHg15bgfMYViXk1U41m9p/Bc6L5DAaUiOD2Qy/KBe9oUw== dependencies: - "@abp/cms-kit.admin" "~9.3.4" - "@abp/cms-kit.public" "~9.3.4" + "@abp/cms-kit.admin" "~9.3.5" + "@abp/cms-kit.public" "~9.3.5" -"@abp/codemirror@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-9.3.4.tgz#4018a723a804eef48db146f4b3ac76acf9a53bef" - integrity sha512-YQOMyGmbPpBLzWZyUve45ZCanJClHp9sVkZQjzJzUY62exakhwtImVr5akRbScfzGMJZKCIP3cUhDUE7gB+TJA== +"@abp/codemirror@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-9.3.5.tgz#70a3ca678b95a85dfd791ce5ab85d4fa4bb9f83b" + integrity sha512-6R3bDQaJj2rLL80E7MY+imCBDUeDheFf0AlcH6TgR1A7OPSEGQi83eVrKIdw5tNJ8HT0XfIATqKXQQ0k3TIZQA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" codemirror "^5.65.1" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/highlight.js@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-9.3.4.tgz#62a98df3441d6586da0c51e60409cb928115dbb8" - integrity sha512-CapJClX9aT1qjNMdCXS//2YFL1fV2jv8jpqmxdIK2D5aqNv2m8+qArCSlkdfUGnkptGrzJhPizgn39bqYpXDyA== +"@abp/highlight.js@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-9.3.5.tgz#9662f960967d8a5ce0f180a40389bfb0120c9462" + integrity sha512-wDz2wWzeQUgk8iSl3GpEdPddx10DQaLtl/6YWNNkdvCrE18MRMhRBapfdk/iwAA6DwUPzGJPdfS363socSWpxg== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@highlightjs/cdn-assets" "~11.10.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/jstree@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-9.3.4.tgz#552b38e89626d9c25c4bb21f47c5c4411fc2337f" - integrity sha512-Q/RcrsfpVv6JJU8g+C4z2jYBeK+UD4Fu0yCKWi1UBCTt7bvm6pvXKqTqCdoZQdSnCd2/2RACuYlmvBTU1LLLRQ== +"@abp/jstree@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-9.3.5.tgz#86ec2ea34b4566738b11551f1cf559cd0193d8be" + integrity sha512-CRrVRNJz2z2by6icgaZZYHft6lT80jxsQMAEfxqdzgjofstJWbGQKRgH2T47qtd6GH7We30hFuniGWLjQNcBEg== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jstree "^3.3.17" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/markdown-it@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-9.3.4.tgz#a6f62798c83854e8ae843e64e17441cb1a20788d" - integrity sha512-SDL7lijWSD1lRYmXQt8dIatI2TXuf1jwmDMfQpDLgliwk3W0ij28IPZ9aRwJvirJqAWSD/KE1xNI2+nfwVvpYQ== +"@abp/markdown-it@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-9.3.5.tgz#2be4069c0a75b1915e7d20d16dabfed1a115eeb5" + integrity sha512-UUcLzsW7u64Q4+cPeHveBzLOGBOd+2OfmMCtzlWI7DyyRTPqK2nHLYCW5YRNy5fhN3btcSdpkX7wXSM57MDdvw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" markdown-it "^14.1.0" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/prismjs@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.4.tgz#5790cad00edfccbcaf1547f12d9c040b2ade735d" - integrity sha512-KVdolBH4G8h0FhXyL2noc8JodadbM8EowjCwkbTaqiTeY4qjTTXfQf+kBwVg6x/C3uMmO2hjbFMHeXA+f3rVfw== +"@abp/prismjs@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.5.tgz#4b9ed7c6fb6bdb0a5868eda6998cf8982b87aafa" + integrity sha512-XJ/Dd6bYasxLlc6KWMde/FVcrg44sGx41XrZNq13pxcd3pp6P3uGswMbLfI3D1jhri28/F7QBjHR2Z+5YMxdRw== dependencies: - "@abp/clipboard" "~9.3.4" - "@abp/core" "~9.3.4" + "@abp/clipboard" "~9.3.5" + "@abp/core" "~9.3.5" prismjs "^1.29.0" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/slugify@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-9.3.4.tgz#980bf3526d95d4fba2cb32ac2ccee93694d05d19" - integrity sha512-up/moi4xuJq1bPIQpwC6YqTKOtPMWWvmx4WnEHCME/I18PH/NOa9T8A0SmhWtdDDvQvUBaiJeuyK4so+PD79yg== +"@abp/slugify@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-9.3.5.tgz#cb5c1ddbfa0e107467ee41c2666c20f1b1edf87d" + integrity sha512-XKgrpgzqFyDBbwUst9nx2XPLWhBgk+dGG/gC73aHyAOdvNgeg3Wtp3h4/dkD6i3Bk2CgDD0A/+O6BuoZ2LB1Vw== dependencies: slugify "^1.6.6" -"@abp/star-rating-svg@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-9.3.4.tgz#baba7f2bdb9d32d840868887f01573b73c1b30c8" - integrity sha512-SgaUAEYeIdSvKiXM3Q8ub2mws50ZU4Wa1Ez3RZY1UkHkMiAEThbkL2dWhMvxCvQoeuXK8cLbUv2PWFMrLaE3lA== +"@abp/star-rating-svg@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-9.3.5.tgz#ac00dc9575fd4ede525483ad388c7c140b1be979" + integrity sha512-BGV1WR0I3tcDXG4xCF/ffRAy/PTvfU/FHH8s3UyQkX6UDil69mjKjDrJxNPQZSTGaf5g7ekwry1HAsDx/bR7UA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" star-rating-svg "^3.5.0" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/tui-editor@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-9.3.4.tgz#e6a241223aac4a39dd1c48043611f304202e7992" - integrity sha512-Xw8TpOXkLztlXLS3Ky3s5d0W6zIob2G2oFe+iWay5OrTVPSNUHfPmtsrp+Rbd3PjaeZG7OyCkBFBI71IJQdiOg== +"@abp/tui-editor@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-9.3.5.tgz#b3686219334ed609a7e1d956582e6c8282057aff" + integrity sha512-nBzhCHaXfzisJ6FFu+Pl/ES2nN4yq8lXyt6Ee3/KGlM+nJ5rYvV+NoerckfMnlrFDVzenQKT1FVplUmqv18UKQ== dependencies: - "@abp/jquery" "~9.3.4" - "@abp/prismjs" "~9.3.4" + "@abp/jquery" "~9.3.5" + "@abp/prismjs" "~9.3.5" -"@abp/uppy@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-9.3.4.tgz#5f605595c8be58a41610acff2aab4a0e7bb07f53" - integrity sha512-81TY9ccRd9JrDIK/MqoOHejfKJDAx8DMSQ5iI6fTeXwZyyuOi68lrabvcQNltc2ZJQqeTUpYMjGPJi54EaP+GA== +"@abp/uppy@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-9.3.5.tgz#3392b08fe1f1dd84bd85216686ecca1af71ed795" + integrity sha512-SktBB72MQKQoy4G31glvhqlwFoLJQquVbHTsEgGw4U2dla+I0lGPhKDfs+3XY6PuoK1j0udlB6VjOGpGhTTJhg== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" uppy "^4.4.1" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/docs/app/VoloDocs.Web/package.json b/modules/docs/app/VoloDocs.Web/package.json index 4e3338b6e6..cbec5c8cc1 100644 --- a/modules/docs/app/VoloDocs.Web/package.json +++ b/modules/docs/app/VoloDocs.Web/package.json @@ -3,7 +3,7 @@ "name": "volo.docstestapp", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4", - "@abp/docs": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5", + "@abp/docs": "~9.3.5" } } diff --git a/modules/docs/app/VoloDocs.Web/yarn.lock b/modules/docs/app/VoloDocs.Web/yarn.lock index 6643dcfa08..4b9ee4f669 100644 --- a/modules/docs/app/VoloDocs.Web/yarn.lock +++ b/modules/docs/app/VoloDocs.Web/yarn.lock @@ -2,229 +2,229 @@ # yarn lockfile v1 -"@abp/anchor-js@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-9.3.4.tgz#bf02015001e6b14d00d220b983125e5417d5a911" - integrity sha512-Jx3GCMQwhAn+d2sz72m0dMlItoJ/RlRa4Lmqgqrf5d3mJOvaAydk+MqSIVeP0HLExk+ZwB9c/9n2QChm52dZuw== +"@abp/anchor-js@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-9.3.5.tgz#990301ec0caea21e3fd731612d42ccbba5be0f6b" + integrity sha512-dCvz1dz+D8wrliy6dLyn4B+zIW6WydF064oSAiktUeT0PQ/ebSvPe424mKUfJARDIRs1Bk186c0G4vWcUEWVHg== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" anchor-js "^5.0.0" -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" - -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== - dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" + +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/clipboard@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.4.tgz#5d87616bec7ecba999cf8b92d166e3b276dcf76b" - integrity sha512-Zy7bglv4vF3LvdXL0De/8Dy/VaQTHA0k2FNN6YjrZX3Brj2PqlQ+1vGcHmoZheI6Wz1DYME+jOVpa5gQziBFJA== +"@abp/clipboard@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-9.3.5.tgz#e6d197590f4e7f7b5e55eb000dffd4b4631c0466" + integrity sha512-eWxl9Q9/wvnhutOrZkek/yuZ1I1qpSmI90Dcyq4vraLEiASVRs0Yz3FeN7EIIANE7cNgoMe1WKz7YicoBjV1MQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" clipboard "^2.0.11" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/docs@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-9.3.4.tgz#c60e151dc44c89b2ceaeba64b3112d5ec4a18f2e" - integrity sha512-Uupv/GDIFgTgo3O4CUNp06l0j6u1LrqKXQ1KD9hfbB/YAfU6xeAMqKm+5yTTBus0uvI1RqBThFp1TNAw+b1MjQ== +"@abp/docs@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-9.3.5.tgz#d699e2f2e9e0ceced0fe1d720f0ab7f0fc4a14f4" + integrity sha512-zU701DkGyJl0pa1uvOI+gKhieZVkIBaCRgi3MfGSbifpPNJvn8/fpWPIRnWg0CHQcFdBYyW2EHjB11S+LFHs8w== dependencies: - "@abp/anchor-js" "~9.3.4" - "@abp/clipboard" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/popper.js" "~9.3.4" - "@abp/prismjs" "~9.3.4" + "@abp/anchor-js" "~9.3.5" + "@abp/clipboard" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/popper.js" "~9.3.5" + "@abp/prismjs" "~9.3.5" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/popper.js@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-9.3.4.tgz#02730d16b660432a3ffaeff559fb992b452c5c5d" - integrity sha512-fm+hwydFU71d3en6zarfxVOxMaXVsQc8qWGpA/im0Gd2vnP+Uz6RoqRFGuUoWTLb3juX4ov+O3DrNPXRykKd+g== +"@abp/popper.js@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-9.3.5.tgz#c7b005ef7c1bf61118fc05669d2df49b3c9472f6" + integrity sha512-0I5/LEP4VY0zikV/DDdA34jQvCnGwIwoi6pVYuOa6v4MhVjg/YaKhNF1oxAgBpGw6p295zJQdfVlHm/HghXrPA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@popperjs/core" "^2.11.8" -"@abp/prismjs@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.4.tgz#5790cad00edfccbcaf1547f12d9c040b2ade735d" - integrity sha512-KVdolBH4G8h0FhXyL2noc8JodadbM8EowjCwkbTaqiTeY4qjTTXfQf+kBwVg6x/C3uMmO2hjbFMHeXA+f3rVfw== +"@abp/prismjs@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-9.3.5.tgz#4b9ed7c6fb6bdb0a5868eda6998cf8982b87aafa" + integrity sha512-XJ/Dd6bYasxLlc6KWMde/FVcrg44sGx41XrZNq13pxcd3pp6P3uGswMbLfI3D1jhri28/F7QBjHR2Z+5YMxdRw== dependencies: - "@abp/clipboard" "~9.3.4" - "@abp/core" "~9.3.4" + "@abp/clipboard" "~9.3.5" + "@abp/core" "~9.3.5" prismjs "^1.29.0" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/TocHeading.cs b/modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/TocHeading.cs index 790b556e9d..02022e4bde 100644 --- a/modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/TocHeading.cs +++ b/modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/TocHeading.cs @@ -2,6 +2,31 @@ namespace Volo.Docs.TableOfContents; -public record TocHeading(int Level, string Text, string Id); +public class TocHeading +{ + public int Level { get; set; } -public record TocItem(TocHeading Heading, List Children); + public string Text { get; set; } + + public string Id { get; set; } + + public TocHeading(int level, string text, string id) + { + Level = level; + Text = text; + Id = id; + } +} + +public class TocItem +{ + public TocHeading Heading { get; set; } + + public List Children { get; set; } + + public TocItem(TocHeading heading, List children) + { + Heading = heading; + Children = children; + } +} \ No newline at end of file diff --git a/modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json b/modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json new file mode 100644 index 0000000000..93b13bec02 --- /dev/null +++ b/modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json @@ -0,0 +1,45 @@ +{ + "packages":[ + { + "name": "@abp/ng.identity", + "appRoutingModuleConfiguration":{ + "routes":[ + "{ path: 'identity', loadChildren: () => import('@abp/ng.identity').then(c => c.createRoutes()),}" + ] + }, + "appModuleConfiguration":{ + "imports":[ + { + "names":[ + "provideIdentityConfig" + ], + "namespace": "@abp/ng.identity/config" + } + ], + "providerNames":[ + "provideIdentityConfig()" + ] + }, + "tsJsonPathRecordConfigurations":[ + { + "name": "@abp/ng.identity", + "paths": [ + "angular/projects/@abp/ng.identity/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.identity/config", + "paths": [ + "angular/projects/identity/config/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.identity/proxy", + "paths": [ + "angular/projects/identity/proxy/src/public-api.ts" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj b/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj index 8894878058..54cfe395ab 100644 --- a/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj @@ -25,6 +25,8 @@ true content\ + + diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/package.json b/modules/openiddict/app/OpenIddict.Demo.Server/package.json index e33522d6e1..71e19a38de 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/package.json +++ b/modules/openiddict/app/OpenIddict.Demo.Server/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/modules/openiddict/app/angular/package.json b/modules/openiddict/app/angular/package.json index 86a6c3fc80..bd4f6a2085 100644 --- a/modules/openiddict/app/angular/package.json +++ b/modules/openiddict/app/angular/package.json @@ -12,15 +12,15 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~9.3.4", - "@abp/ng.components": "~9.3.4", - "@abp/ng.core": "~9.3.4", - "@abp/ng.oauth": "~9.3.4", - "@abp/ng.identity": "~9.3.4", - "@abp/ng.setting-management": "~9.3.4", - "@abp/ng.tenant-management": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", - "@abp/ng.theme.lepton-x": "~4.3.4", + "@abp/ng.account": "~9.3.5", + "@abp/ng.components": "~9.3.5", + "@abp/ng.core": "~9.3.5", + "@abp/ng.oauth": "~9.3.5", + "@abp/ng.identity": "~9.3.5", + "@abp/ng.setting-management": "~9.3.5", + "@abp/ng.tenant-management": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", + "@abp/ng.theme.lepton-x": "~4.3.5", "@angular/animations": "^15.0.1", "@angular/common": "^15.0.1", "@angular/compiler": "^15.0.1", @@ -36,7 +36,7 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@abp/ng.schematics": "~9.3.4", + "@abp/ng.schematics": "~9.3.5", "@angular-devkit/build-angular": "^15.0.1", "@angular-eslint/builder": "~15.1.0", "@angular-eslint/eslint-plugin": "~15.1.0", diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json new file mode 100644 index 0000000000..f321608544 --- /dev/null +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json @@ -0,0 +1,21 @@ +{ + "packages":[ + { + "name": "@abp/ng.permission-management", + "tsJsonPathRecordConfigurations":[ + { + "name": "@abp/ng.permission-management", + "paths": [ + "angular/projects/permission-management/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.permission-management/proxy", + "paths": [ + "angular/projects/permission-management/proxy/src/public-api.ts" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj index 498fdd585a..582693b74f 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj @@ -25,6 +25,8 @@ true content\ + + diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json index 3a159711ab..a8893da800 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json @@ -3,6 +3,6 @@ "name": "demo-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock index 1f1a15b8cb..b599d084c6 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock @@ -2,185 +2,185 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.4.tgz#66b2969062aa15ca7d448d36cccccfdec6054165" - integrity sha512-rmgYDDImW+bJnbWE1rEAjce/CA7xlmHQrcr5AoHCWvMnOi5Z5YUZleOcND+Wb7pxEJ8ptWOn9pIg6MIcFl1Nnw== +"@abp/aspnetcore.mvc.ui.theme.basic@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-9.3.5.tgz#36b06ffc9ea7cd15d692b81b13f399fc90ee3a78" + integrity sha512-DIXiMeciEsyo1oLrevRW7vYVE/bp2+NSXw/E6L9+Th1NTvggzNBS+KK/vXJk8PKJCOTI0xsuW71r2EO3td4bPg== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared" "~9.3.5" -"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.4.tgz#af1bffb4f8743ad0def202ca8c8b7058c8dfcf3b" - integrity sha512-aUx7iDUqswlC8SvMa46OxM9McAhOj5AJHh9FWP29QF7+ZTMZLJ5Et6L9MkI+xxAkb4kmMWDnCKVnwnA/S13W1Q== +"@abp/aspnetcore.mvc.ui.theme.shared@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-9.3.5.tgz#dd72c09b56153ff14e4cb97d49ea55cdc4d7115d" + integrity sha512-A/HcSeZXyIYFm5SwoBlrd7pGtVlh5/CUM25yYv7C/521/zdTjUw4aQzrZjjeE2iOyvhqgBbuh11UlwUYMH4hUA== dependencies: - "@abp/aspnetcore.mvc.ui" "~9.3.4" - "@abp/bootstrap" "~9.3.4" - "@abp/bootstrap-datepicker" "~9.3.4" - "@abp/bootstrap-daterangepicker" "~9.3.4" - "@abp/datatables.net-bs5" "~9.3.4" - "@abp/font-awesome" "~9.3.4" - "@abp/jquery-form" "~9.3.4" - "@abp/jquery-validation-unobtrusive" "~9.3.4" - "@abp/lodash" "~9.3.4" - "@abp/luxon" "~9.3.4" - "@abp/malihu-custom-scrollbar-plugin" "~9.3.4" - "@abp/moment" "~9.3.4" - "@abp/select2" "~9.3.4" - "@abp/sweetalert2" "~9.3.4" - "@abp/timeago" "~9.3.4" - -"@abp/aspnetcore.mvc.ui@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.4.tgz#2248eca8c5ca69cf174f81c2b6770cfabe325a68" - integrity sha512-62A6QW903LmvWd6CGQHkNitYah0cMp5fraow1kQWLPeEp37WTMGl5XI13lkLYPlhAfBJV1reDAa89j24TzKSJA== + "@abp/aspnetcore.mvc.ui" "~9.3.5" + "@abp/bootstrap" "~9.3.5" + "@abp/bootstrap-datepicker" "~9.3.5" + "@abp/bootstrap-daterangepicker" "~9.3.5" + "@abp/datatables.net-bs5" "~9.3.5" + "@abp/font-awesome" "~9.3.5" + "@abp/jquery-form" "~9.3.5" + "@abp/jquery-validation-unobtrusive" "~9.3.5" + "@abp/lodash" "~9.3.5" + "@abp/luxon" "~9.3.5" + "@abp/malihu-custom-scrollbar-plugin" "~9.3.5" + "@abp/moment" "~9.3.5" + "@abp/select2" "~9.3.5" + "@abp/sweetalert2" "~9.3.5" + "@abp/timeago" "~9.3.5" + +"@abp/aspnetcore.mvc.ui@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-9.3.5.tgz#73e58ca29fcfbcf310bea680f8ead7bff93eec91" + integrity sha512-uHLr9B0Uvi0YBhBjFPKnRnH3OU7tGddblnorDnM9bqycwevXu0fspR0nR/66DAe67IvdvctVfk0yVzY8MUJAFw== dependencies: ansi-colors "^4.1.3" -"@abp/bootstrap-datepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.4.tgz#767f60005d3c9b72f14f1437af7ef14dd014f46a" - integrity sha512-zyCwMjkdV7x58VhOWw/ght4uNCLCe/ADsAuFCmYWeHRH9DuQuXPZPiBZMAtPLSxjHAO+/HfKAwoQt+Xelu4bSQ== +"@abp/bootstrap-datepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-9.3.5.tgz#fddbb233e138701202b71bc191fedbda7ba39fcd" + integrity sha512-xIDEPfg8hvHjx9UwJPcKZB3B6Pp964fdxmb7w9D2zps+0lnV/i5KI5tZPNN7lX8L97z1ClZtPY2nBSZ88z60/w== dependencies: bootstrap-datepicker "^1.10.0" -"@abp/bootstrap-daterangepicker@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.4.tgz#e00cab9d6abd2f8f865d6c3471b7e0f79a1e7cfa" - integrity sha512-su9DHyFuD0PvuUlK277l5u18Nls3QTOsiRNF0rNmR3NESi16ldqB5ctSQoYNEscny/BpWwlW0Otj6e4ojwCQDw== +"@abp/bootstrap-daterangepicker@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-9.3.5.tgz#2f4466f03a0b9f40fb305e0ed3e6487f1c2bb5ad" + integrity sha512-bZEmn5fUpuKsFh9/96rMwL+041CHrmRGyOL6f/2877d0G9MrATV0upc8qmMOPc21npIy+ugB8+OYMbz1ZFSjpw== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.4.tgz#928fb3a665d6aee72dd54e878793bb05000c64e4" - integrity sha512-yr7MhFyOAKxsw7zhmXI1iqaq6hZkI3k/MB1r+buVGVcfx0fIqKQUnkodLNLC5dHOAlglOKGk84KZver3dql4/w== +"@abp/bootstrap@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-9.3.5.tgz#5e89f6222edac9b506dd53745cfb84c2710b2ddf" + integrity sha512-d7XSzqlVqSoRnj/5Y3PrqGjqwGLkreqxI50GuInLJI21WMkas7U2ZYgpgcG+tSaXXseBCFK5IjIOsAfb5/8fFQ== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" bootstrap "^5.3.3" -"@abp/core@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.4.tgz#dde73cf21c929400e14a296c34633cf8b327162f" - integrity sha512-MKBFM3rXljxsQKP/G8I97v4pn9MLSmPQuxBFo/qNHxSH83mJJh84465hrV4jCJMlsT4pUwJORRLlD/4X73bfqA== +"@abp/core@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-9.3.5.tgz#6fa71209977b3f84f3afb263c991bc2abc2d10f7" + integrity sha512-oZreHthqaauKABCE5wTUAiczVbyrRTjYA3FSnsgvQF3nFiiK7yeBuam9oHp5TrJAaSeAfGEl6t9Y/rkEtQBGhw== dependencies: - "@abp/utils" "~9.3.4" + "@abp/utils" "~9.3.5" -"@abp/datatables.net-bs5@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.4.tgz#5d23f9ee492c7534320d61085cf638b66ef4790e" - integrity sha512-eTmgF43cXZpXkWWa+zsEfIJA6aQkdvMYVw8OckV58jGnk9bH6q4be8y6vKWLDfJqhMlmRry7+EPxKu00+BbkVQ== +"@abp/datatables.net-bs5@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-9.3.5.tgz#4246c0f3a76749fcfae53902626a81f4c28b1f23" + integrity sha512-qXXniOr8inQpe7J0u2xPfKfxPR3aBLLwiyAgiqnowyZzNCnLxNhxAQaRbvRQhaLKiS9D7LS76c6v4ftaaJtDww== dependencies: - "@abp/datatables.net" "~9.3.4" + "@abp/datatables.net" "~9.3.5" datatables.net-bs5 "^2.1.8" -"@abp/datatables.net@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.4.tgz#dffae35877215b7e4d9e32d6ad05d02eba4dc792" - integrity sha512-0G1xUKS0gMgY1ZPJSlEtwULnvTI72aMrAXYk47JMt23kJpoTyQWUGokjhHkh9TJzWhbN25qgbs8vGco5FpRXMA== +"@abp/datatables.net@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-9.3.5.tgz#e8288069dee086eae426d67ef3a63ecef6d4342f" + integrity sha512-dTAEY0xkGF6PLGUBeu9cgDqRvrip1pNU6kp8KtwBbKzeK848N4s299aZNt8EvQK2bsGm0JWt/qjz/P09uRNUUQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" datatables.net "^2.1.8" -"@abp/font-awesome@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.4.tgz#f718b1546df3efd718b8569a4b21b70a7331f3cd" - integrity sha512-mYRnidh8vRXAmtTImbTrZMvSiKF4y8kipRz0x4uUC31cse6oCMSCBNSXtNQTYWGnnvHfizifpXupf+ykMY4zhw== +"@abp/font-awesome@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-9.3.5.tgz#f11084601ac556f43d0d0affcd6911911ccd26c4" + integrity sha512-uQdPnPSKjh0s6Jt6CH5XoaxnE47s6dbiAieSLMNZxxyMzHPA+xLRfoFTgPpFUt71pKvjGMR8ajaCd+on2iVhdw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" "@fortawesome/fontawesome-free" "^6.6.0" -"@abp/jquery-form@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.4.tgz#074212cda79e962baa1a396eeb2012e04dba997d" - integrity sha512-UcuaPM+w3AkmB4W4UrMZiLDuyeLJj7jDyJQr3ILYxCbrwdePdWcY0FAHrHgSa80XW7elPGx29nZo7XD99V+iqw== +"@abp/jquery-form@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-9.3.5.tgz#9e6b4d9fbc73c49254fe4c2d2dc1a28ed540c8ad" + integrity sha512-EEaTH2tDwK96VW/CHOIVwjKvaAGRA95hNIe9BAE4tgZEPqsXdPi7lJpG7OAcAirIqeKvEeigJiOaDo69t3pqkQ== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.4.tgz#02f7b12c07caab390ad2db3727a360331007a79f" - integrity sha512-LvGde663YJca+H69yVjpz60z3Y22Pshj3Ys23nAnwN1O2C1U9F3kg8ZvbP6MakF3fnJooB0I+V+ay5hLbckeKg== +"@abp/jquery-validation-unobtrusive@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-9.3.5.tgz#7dcaf225bbfc4db7b2540adef518f5fcf173226c" + integrity sha512-LZROgSxJfBzBzsoY9N1DjYpHtT3OXOaYcZL6FNxmhVfhBVycAkVK3qv8nSWKEnfUlVcvDiKfQHa6ye9o10xwGw== dependencies: - "@abp/jquery-validation" "~9.3.4" + "@abp/jquery-validation" "~9.3.5" jquery-validation-unobtrusive "^4.0.0" -"@abp/jquery-validation@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.4.tgz#f8ae286eddabce917212bbe3d37ea5ae3d7062ad" - integrity sha512-6CYadT28dK3OdCIf2Y8Z/z2jgzWGBCok83XFtLibtNfddJjdX7r+nP/UyMvbnrV7w0wp/g+mWq+6tPHiHUN9Kg== +"@abp/jquery-validation@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-9.3.5.tgz#3ef7fc930aef0768baaf14558f12539964a8f185" + integrity sha512-n+ZV3IH/lOZU8U673AQT38UnN0D+b8eOAPXWUjU069/6y5icxXT2fwQhq5CF6nCTZehlvNKvlkU2RV2xpGldkA== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" jquery-validation "^1.21.0" -"@abp/jquery@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.4.tgz#6b375cbf5d1beeaaa27f263b2985f15f6fc45e53" - integrity sha512-5kjOXFl9acymDSJsOFcO+Nh3CTsSNuZabsVcInAK5znXUacoeijnHH+6mDTZNiADMsYU3nRiUOT2AJeV312r3w== +"@abp/jquery@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-9.3.5.tgz#23ec07889e0b43467920bf00b453e2d6706271cd" + integrity sha512-MxEzXHQWam6Ue1D3SN05+bYkt+WkP1XcVy/L10hl/jMJhPzFl4Aa806nLo0peO/vkJISLaVgdRImOSB4sB+5qw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" jquery "~3.7.1" -"@abp/lodash@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.4.tgz#b52c698633ba20a08b99e89462fe2400c672b4f0" - integrity sha512-ED0o37bUAWvYCUQqNFLUxh1PpuYsXsZm7Y6X+KpeAlVdvdsDlZmvn+BoyrZLIV+7TCnKuIq6/UgeGp3aWzZ7vA== +"@abp/lodash@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-9.3.5.tgz#15baef672b667106ef3c84bfc9d6e6f274abec66" + integrity sha512-k9UqlVkjI2ANhR2HtqgRHAg33xWuYC8yug6zwVlenFEcr4XKFdI43O1xJOxvopmJ8SGHDTWo3le0xaLB9WTd0Q== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" lodash "^4.17.21" -"@abp/luxon@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.4.tgz#6b7e1bff024c7ca80ef3dee9cffe244d1449c4fa" - integrity sha512-3rcqJICchA2y8givfClTFZPB+mG/HqLkfhc+/JmDCVA87bQ/HAkxWVxfW70MsyDQNUPVWTVFGsfN81YJdvyBYw== +"@abp/luxon@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-9.3.5.tgz#2704e01283343c839b04701a6492f196cccb2128" + integrity sha512-hyx0O058+uQYMZD/S7zb4qiO9I1kBWNGRwfdAjoPylqmr6fSoGni6HOITUJtis9ZB7hjHsY78/PGsfZnOpQRZw== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" luxon "^3.5.0" -"@abp/malihu-custom-scrollbar-plugin@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.4.tgz#6ea3abe9cafab290bd8036a66666af6c25289619" - integrity sha512-CSR0IRRJmHYhHeRNT90VjE27n84AneKnzpE1Jbszq2gQCUCJ8TfvkEthXGQFDhBpiS3uB/qWr+PjzssPDQHbqw== +"@abp/malihu-custom-scrollbar-plugin@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-9.3.5.tgz#06d06434965199e5a7fee8184b5a2a53181c0a3e" + integrity sha512-a/TAWunnswiLcCn0h4qEtanVht5A4AsY7Glk6AcfWXfUPHMzpxu8nuEf/YRrMmO+4dcX7xfOYAtap517ESR+zA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.4.tgz#c8f9bf7218336ff8fcaa58c6be0e85ecc6f126af" - integrity sha512-9EHdOQytFMqIr8a6Wb2+nhKQfbqTxc09wz3dkcEO5PjQp0wq+JPYdTztVYkyN+OZoPBsKKTjYtn92U/rsM1hTw== +"@abp/moment@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-9.3.5.tgz#cd5589448b46c0e74f375e8e2d321854f5380d07" + integrity sha512-Eg7pOGVpxgIBSKeP+dd8r+kdCQuFasfHEVpPU7aJaO1TRpIHjZqMeuUAUDWcqFS07tc+QcS2Iw16y1fxShIp2A== dependencies: moment "^2.30.1" -"@abp/select2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.4.tgz#4a97834e72c40b77f2e97fc030f59a8e3c6b0ec8" - integrity sha512-S9ANdhW0QECI+rrx3vHVggkmtBBf/G67GpSQM20efaYUMs25REvs2LFRSq9PnhHPGn1p4xOE30LfjH07+ePvAQ== +"@abp/select2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-9.3.5.tgz#1ceb98c8791a0d608cd33141e665347de3c0aaf1" + integrity sha512-kv2vskVP6z0ip+JRtqmRpDHQUshY7W/xgVjriXaI7lrf9fvguWa9mxOlUBGYzEOmUe6YOev4D+WINLrMpA4JbA== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" select2 "^4.0.13" -"@abp/sweetalert2@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.4.tgz#c96cef8b7e6607f34a05cd998d70dd871fe9eef9" - integrity sha512-pU7eyG8dn5QJVi6X6Ij6JR/KzOpSx+a4j/dWr4aSWXCXv9xazgbwGsk831D2hIHNvrDlCNBTgKPc9FL6LEMxYQ== +"@abp/sweetalert2@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-9.3.5.tgz#dd325274f94f02b45775f97410c43dd0ee781bbc" + integrity sha512-Cxsv1vwAvzjqtTlhkAW4uIzQTpDH+GjYgR8ADZST4tklllhh+noPmCH96bVPf0FHnCX2a8/bPMdG5cykTaOiug== dependencies: - "@abp/core" "~9.3.4" + "@abp/core" "~9.3.5" sweetalert2 "^11.14.1" -"@abp/timeago@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.4.tgz#dc8e006ae4f3547b304fa8546c5b92c9bc59451e" - integrity sha512-CIhWeUI1Hfq4KP+DSJacbpOGQJc/BLJvp3wIimQVxnc/UeuEae7HAxi+d0+1/JaIdtVZUblfjyKWt85jtcLHNQ== +"@abp/timeago@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-9.3.5.tgz#65436cc7afb572dfbec5c3599746d7c2a87658fd" + integrity sha512-QBoXJB1tBThrqydgswTL8ZJu0HGhnmyBb0wISzdGY5fGKDC4ZYNiEA1j8CEWpACjsxFnfhrtT9GlvA3kHfQdYw== dependencies: - "@abp/jquery" "~9.3.4" + "@abp/jquery" "~9.3.5" timeago "^1.6.7" -"@abp/utils@~9.3.4": - version "9.3.4" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.4.tgz#72d0c8b109415d584c887fd8c904644cdf767fd4" - integrity sha512-94EyyKIovai/Mzfa6DhanwC2Y+Jz2uX+w/9nkAfitvN2NJY1+Ixqd6cnvuDdIHAGMTxs6Bo5XV0cT33VGrGMAA== +"@abp/utils@~9.3.5": + version "9.3.5" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-9.3.5.tgz#f63233e37196c3158d9ae2ebe7644168645bca84" + integrity sha512-8t/qFalw6/iGWos0r9NcqtoRyBOjpaPP09lHX3LDnpLd8C1Ax/xmNNsrYr+cDOy6cDr++JkZJQZSz+tKwv9okA== dependencies: just-compare "^2.3.0" diff --git a/modules/virtual-file-explorer/app/package.json b/modules/virtual-file-explorer/app/package.json index df1fdd630d..4def383bc3 100644 --- a/modules/virtual-file-explorer/app/package.json +++ b/modules/virtual-file-explorer/app/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4", - "@abp/virtual-file-explorer": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5", + "@abp/virtual-file-explorer": "~9.3.5" } } diff --git a/npm/lerna.json b/npm/lerna.json index bca421040c..97d7b9983d 100644 --- a/npm/lerna.json +++ b/npm/lerna.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "packages": [ "packs/*" ], diff --git a/npm/ng-packs/package.json b/npm/ng-packs/package.json index fa8ba9e0f3..4c2d09af76 100644 --- a/npm/ng-packs/package.json +++ b/npm/ng-packs/package.json @@ -46,8 +46,8 @@ }, "private": true, "devDependencies": { - "@abp/ng.theme.lepton-x": "~4.3.4", - "@abp/utils": "~9.3.4", + "@abp/ng.theme.lepton-x": "~4.3.5", + "@abp/utils": "~9.3.5", "@angular-devkit/build-angular": "~20.0.0", "@angular-devkit/core": "~20.0.0", "@angular-devkit/schematics": "~20.0.0", diff --git a/npm/ng-packs/packages/account-core/package.json b/npm/ng-packs/packages/account-core/package.json index 44b425aa2a..3e5964d2a5 100644 --- a/npm/ng-packs/packages/account-core/package.json +++ b/npm/ng-packs/packages/account-core/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.account.core", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.core": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/account/package.json b/npm/ng-packs/packages/account/package.json index 566e279a74..6efdeee94c 100644 --- a/npm/ng-packs/packages/account/package.json +++ b/npm/ng-packs/packages/account/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.account", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.account.core": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.account.core": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/components/package.json b/npm/ng-packs/packages/components/package.json index c885a47314..49b3098d83 100644 --- a/npm/ng-packs/packages/components/package.json +++ b/npm/ng-packs/packages/components/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.components", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "peerDependencies": { - "@abp/ng.core": ">=9.3.4", - "@abp/ng.theme.shared": ">=9.3.4" + "@abp/ng.core": ">=9.3.5", + "@abp/ng.theme.shared": ">=9.3.5" }, "dependencies": { "chart.js": "^3.5.1", diff --git a/npm/ng-packs/packages/core/package.json b/npm/ng-packs/packages/core/package.json index bf5c8431ec..e2ff6cbfc4 100644 --- a/npm/ng-packs/packages/core/package.json +++ b/npm/ng-packs/packages/core/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.core", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/utils": "~9.3.4", + "@abp/utils": "~9.3.5", "just-clone": "^6.0.0", "just-compare": "^2.0.0", "ts-toolbelt": "^9.0.0", diff --git a/npm/ng-packs/packages/feature-management/package.json b/npm/ng-packs/packages/feature-management/package.json index 3c66dd82d2..a273ec558f 100644 --- a/npm/ng-packs/packages/feature-management/package.json +++ b/npm/ng-packs/packages/feature-management/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.feature-management", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/generators/package.json b/npm/ng-packs/packages/generators/package.json index 0ecbf32b5d..9fcc036974 100644 --- a/npm/ng-packs/packages/generators/package.json +++ b/npm/ng-packs/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@abp/nx.generators", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "generators": "./generators.json", "type": "commonjs", diff --git a/npm/ng-packs/packages/identity/package.json b/npm/ng-packs/packages/identity/package.json index 2f197680e0..07a861b9d0 100644 --- a/npm/ng-packs/packages/identity/package.json +++ b/npm/ng-packs/packages/identity/package.json @@ -1,15 +1,15 @@ { "name": "@abp/ng.identity", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.components": "~9.3.4", - "@abp/ng.permission-management": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.components": "~9.3.5", + "@abp/ng.permission-management": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/oauth/package.json b/npm/ng-packs/packages/oauth/package.json index 6baf0eda26..9b7f545e6e 100644 --- a/npm/ng-packs/packages/oauth/package.json +++ b/npm/ng-packs/packages/oauth/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.oauth", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~9.3.4", - "@abp/utils": "~9.3.4", + "@abp/ng.core": "~9.3.5", + "@abp/utils": "~9.3.5", "angular-oauth2-oidc": "^20.0.0", "just-clone": "^6.0.0", "just-compare": "^2.0.0", diff --git a/npm/ng-packs/packages/permission-management/package.json b/npm/ng-packs/packages/permission-management/package.json index 7a0693588e..4fbe1c3f06 100644 --- a/npm/ng-packs/packages/permission-management/package.json +++ b/npm/ng-packs/packages/permission-management/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.permission-management", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/schematics/package.json b/npm/ng-packs/packages/schematics/package.json index d8f66cb363..8fd812da9c 100644 --- a/npm/ng-packs/packages/schematics/package.json +++ b/npm/ng-packs/packages/schematics/package.json @@ -1,6 +1,6 @@ { "name": "@abp/ng.schematics", - "version": "9.3.4", + "version": "9.3.5", "author": "", "schematics": "./collection.json", "dependencies": { diff --git a/npm/ng-packs/packages/setting-management/package.json b/npm/ng-packs/packages/setting-management/package.json index 2f84177df7..2ba30ac9cd 100644 --- a/npm/ng-packs/packages/setting-management/package.json +++ b/npm/ng-packs/packages/setting-management/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.setting-management", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.components": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.components": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/tenant-management/package.json b/npm/ng-packs/packages/tenant-management/package.json index fd4f80af0d..900905fa5c 100644 --- a/npm/ng-packs/packages/tenant-management/package.json +++ b/npm/ng-packs/packages/tenant-management/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.tenant-management", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.feature-management": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.feature-management": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/theme-basic/package.json b/npm/ng-packs/packages/theme-basic/package.json index 2e11fb6c60..96bc79cb07 100644 --- a/npm/ng-packs/packages/theme-basic/package.json +++ b/npm/ng-packs/packages/theme-basic/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.theme.basic", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.account.core": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.account.core": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/theme-shared/package.json b/npm/ng-packs/packages/theme-shared/package.json index abcb269b13..96324081b3 100644 --- a/npm/ng-packs/packages/theme-shared/package.json +++ b/npm/ng-packs/packages/theme-shared/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.theme.shared", - "version": "9.3.4", + "version": "9.3.5", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~9.3.4", + "@abp/ng.core": "~9.3.5", "@fortawesome/fontawesome-free": "^6.0.0", "@ng-bootstrap/ng-bootstrap": "~19.0.0", "@ngx-validate/core": "^0.2.0", diff --git a/npm/packs/anchor-js/package.json b/npm/packs/anchor-js/package.json index 5e097746f2..4c303c6757 100644 --- a/npm/packs/anchor-js/package.json +++ b/npm/packs/anchor-js/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/anchor-js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "anchor-js": "^5.0.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/aspnetcore.components.server.basictheme/package.json b/npm/packs/aspnetcore.components.server.basictheme/package.json index 942214a3e5..2ae49ac070 100644 --- a/npm/packs/aspnetcore.components.server.basictheme/package.json +++ b/npm/packs/aspnetcore.components.server.basictheme/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/aspnetcore.components.server.basictheme", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.components.server.theming": "~9.3.4" + "@abp/aspnetcore.components.server.theming": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.components.server.theming/package.json b/npm/packs/aspnetcore.components.server.theming/package.json index 8bc4077f9a..aadfb88ec3 100644 --- a/npm/packs/aspnetcore.components.server.theming/package.json +++ b/npm/packs/aspnetcore.components.server.theming/package.json @@ -1,12 +1,12 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/aspnetcore.components.server.theming", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/bootstrap": "~9.3.4", - "@abp/font-awesome": "~9.3.4" + "@abp/bootstrap": "~9.3.5", + "@abp/font-awesome": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json index 8da7fbf2e0..2c6cd2a492 100644 --- a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json +++ b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/aspnetcore.mvc.ui.theme.basic", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json index ca3eb2e924..1b5e24e2e0 100644 --- a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json +++ b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/aspnetcore.mvc.ui.theme.shared", "repository": { "type": "git", @@ -10,21 +10,21 @@ "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui": "~9.3.4", - "@abp/bootstrap": "~9.3.4", - "@abp/bootstrap-datepicker": "~9.3.4", - "@abp/bootstrap-daterangepicker": "~9.3.4", - "@abp/datatables.net-bs5": "~9.3.4", - "@abp/font-awesome": "~9.3.4", - "@abp/jquery-form": "~9.3.4", - "@abp/jquery-validation-unobtrusive": "~9.3.4", - "@abp/lodash": "~9.3.4", - "@abp/luxon": "~9.3.4", - "@abp/malihu-custom-scrollbar-plugin": "~9.3.4", - "@abp/moment": "~9.3.4", - "@abp/select2": "~9.3.4", - "@abp/sweetalert2": "~9.3.4", - "@abp/timeago": "~9.3.4" + "@abp/aspnetcore.mvc.ui": "~9.3.5", + "@abp/bootstrap": "~9.3.5", + "@abp/bootstrap-datepicker": "~9.3.5", + "@abp/bootstrap-daterangepicker": "~9.3.5", + "@abp/datatables.net-bs5": "~9.3.5", + "@abp/font-awesome": "~9.3.5", + "@abp/jquery-form": "~9.3.5", + "@abp/jquery-validation-unobtrusive": "~9.3.5", + "@abp/lodash": "~9.3.5", + "@abp/luxon": "~9.3.5", + "@abp/malihu-custom-scrollbar-plugin": "~9.3.5", + "@abp/moment": "~9.3.5", + "@abp/select2": "~9.3.5", + "@abp/sweetalert2": "~9.3.5", + "@abp/timeago": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.mvc.ui/package-lock.json b/npm/packs/aspnetcore.mvc.ui/package-lock.json index 1a1276547a..4fe6714bf5 100644 --- a/npm/packs/aspnetcore.mvc.ui/package-lock.json +++ b/npm/packs/aspnetcore.mvc.ui/package-lock.json @@ -1,6 +1,6 @@ { "name": "@abp/aspnetcore.mvc.ui", - "version": "9.3.4", + "version": "9.3.5", "lockfileVersion": 1, "requires": true, "packages": { diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json index be6b5bd924..333d8676e0 100644 --- a/npm/packs/aspnetcore.mvc.ui/package.json +++ b/npm/packs/aspnetcore.mvc.ui/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/aspnetcore.mvc.ui", "repository": { "type": "git", diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json index 47d31fc834..6201657ef9 100644 --- a/npm/packs/blogging/package.json +++ b/npm/packs/blogging/package.json @@ -1,14 +1,14 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/blogging", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~9.3.4", - "@abp/owl.carousel": "~9.3.4", - "@abp/prismjs": "~9.3.4", - "@abp/tui-editor": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.shared": "~9.3.5", + "@abp/owl.carousel": "~9.3.5", + "@abp/prismjs": "~9.3.5", + "@abp/tui-editor": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json index 6b672427fc..f85adcde7c 100644 --- a/npm/packs/bootstrap-datepicker/package.json +++ b/npm/packs/bootstrap-datepicker/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/bootstrap-datepicker", "repository": { "type": "git", diff --git a/npm/packs/bootstrap-daterangepicker/package.json b/npm/packs/bootstrap-daterangepicker/package.json index 96648df47d..b28e72eabc 100644 --- a/npm/packs/bootstrap-daterangepicker/package.json +++ b/npm/packs/bootstrap-daterangepicker/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/bootstrap-daterangepicker", "repository": { "type": "git", diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json index 4234444c6f..c15146a857 100644 --- a/npm/packs/bootstrap/package.json +++ b/npm/packs/bootstrap/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/bootstrap", "repository": { "type": "git", diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json index e8e0104956..ae566e8a2a 100644 --- a/npm/packs/chart.js/package.json +++ b/npm/packs/chart.js/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/chart.js", "publishConfig": { "access": "public" diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json index fcf720e1ea..ac465d84d2 100644 --- a/npm/packs/clipboard/package.json +++ b/npm/packs/clipboard/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/clipboard", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "clipboard": "^2.0.11" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/cms-kit.admin/package.json b/npm/packs/cms-kit.admin/package.json index a5aca052fd..2743cb53a6 100644 --- a/npm/packs/cms-kit.admin/package.json +++ b/npm/packs/cms-kit.admin/package.json @@ -1,16 +1,16 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/cms-kit.admin", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/codemirror": "~9.3.4", - "@abp/jstree": "~9.3.4", - "@abp/markdown-it": "~9.3.4", - "@abp/slugify": "~9.3.4", - "@abp/tui-editor": "~9.3.4", - "@abp/uppy": "~9.3.4" + "@abp/codemirror": "~9.3.5", + "@abp/jstree": "~9.3.5", + "@abp/markdown-it": "~9.3.5", + "@abp/slugify": "~9.3.5", + "@abp/tui-editor": "~9.3.5", + "@abp/uppy": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/cms-kit.public/package.json b/npm/packs/cms-kit.public/package.json index 2786fca547..70c8ec5c94 100644 --- a/npm/packs/cms-kit.public/package.json +++ b/npm/packs/cms-kit.public/package.json @@ -1,12 +1,12 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/cms-kit.public", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/highlight.js": "~9.3.4", - "@abp/star-rating-svg": "~9.3.4" + "@abp/highlight.js": "~9.3.5", + "@abp/star-rating-svg": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/cms-kit/package.json b/npm/packs/cms-kit/package.json index a457646ecb..306a17114f 100644 --- a/npm/packs/cms-kit/package.json +++ b/npm/packs/cms-kit/package.json @@ -1,12 +1,12 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/cms-kit", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/cms-kit.admin": "~9.3.4", - "@abp/cms-kit.public": "~9.3.4" + "@abp/cms-kit.admin": "~9.3.5", + "@abp/cms-kit.public": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json index 5eaf973e1a..57c8c16650 100644 --- a/npm/packs/codemirror/package.json +++ b/npm/packs/codemirror/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/codemirror", "publishConfig": { "access": "public" diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json index abda3cf4a2..449d07cc77 100644 --- a/npm/packs/core/package.json +++ b/npm/packs/core/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/core", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/utils": "~9.3.4" + "@abp/utils": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/cropperjs/package.json b/npm/packs/cropperjs/package.json index 0bd8305d08..a92bb04f9d 100644 --- a/npm/packs/cropperjs/package.json +++ b/npm/packs/cropperjs/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/cropperjs", "publishConfig": { "access": "public" diff --git a/npm/packs/datatables.net-bs4/package.json b/npm/packs/datatables.net-bs4/package.json index 2f8d70f52b..c38b78ca75 100644 --- a/npm/packs/datatables.net-bs4/package.json +++ b/npm/packs/datatables.net-bs4/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/datatables.net-bs4", "repository": { "type": "git", diff --git a/npm/packs/datatables.net-bs5/package.json b/npm/packs/datatables.net-bs5/package.json index b77a1995ed..c4e2715745 100644 --- a/npm/packs/datatables.net-bs5/package.json +++ b/npm/packs/datatables.net-bs5/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/datatables.net-bs5", "publishConfig": { "access": "public" diff --git a/npm/packs/datatables.net/package.json b/npm/packs/datatables.net/package.json index d56d147e10..61eac63119 100644 --- a/npm/packs/datatables.net/package.json +++ b/npm/packs/datatables.net/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/datatables.net", "repository": { "type": "git", diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json index e312723da0..5a5af040e2 100644 --- a/npm/packs/docs/package.json +++ b/npm/packs/docs/package.json @@ -1,15 +1,15 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/docs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/anchor-js": "~9.3.4", - "@abp/clipboard": "~9.3.4", - "@abp/malihu-custom-scrollbar-plugin": "~9.3.4", - "@abp/popper.js": "~9.3.4", - "@abp/prismjs": "~9.3.4" + "@abp/anchor-js": "~9.3.5", + "@abp/clipboard": "~9.3.5", + "@abp/malihu-custom-scrollbar-plugin": "~9.3.5", + "@abp/popper.js": "~9.3.5", + "@abp/prismjs": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/flag-icon-css/package.json b/npm/packs/flag-icon-css/package.json index 5ecba946e8..3756ad9976 100644 --- a/npm/packs/flag-icon-css/package.json +++ b/npm/packs/flag-icon-css/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/flag-icon-css", "publishConfig": { "access": "public" diff --git a/npm/packs/flag-icons/package.json b/npm/packs/flag-icons/package.json index e398210b3c..168ee669e7 100644 --- a/npm/packs/flag-icons/package.json +++ b/npm/packs/flag-icons/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/flag-icons", "publishConfig": { "access": "public" diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json index 388856e43a..8facf11475 100644 --- a/npm/packs/font-awesome/package.json +++ b/npm/packs/font-awesome/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/font-awesome", "repository": { "type": "git", diff --git a/npm/packs/highlight.js/package.json b/npm/packs/highlight.js/package.json index c944ad1ac6..f14a57387a 100644 --- a/npm/packs/highlight.js/package.json +++ b/npm/packs/highlight.js/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/highlight.js", "publishConfig": { "access": "public" diff --git a/npm/packs/jquery-form/package.json b/npm/packs/jquery-form/package.json index 8d9c5c1c09..f7bd9b9130 100644 --- a/npm/packs/jquery-form/package.json +++ b/npm/packs/jquery-form/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/jquery-form", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", + "@abp/jquery": "~9.3.5", "jquery-form": "^4.3.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/jquery-validation-unobtrusive/package.json b/npm/packs/jquery-validation-unobtrusive/package.json index 87053fa1dc..5ec06c006a 100644 --- a/npm/packs/jquery-validation-unobtrusive/package.json +++ b/npm/packs/jquery-validation-unobtrusive/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/jquery-validation-unobtrusive", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery-validation": "~9.3.4", + "@abp/jquery-validation": "~9.3.5", "jquery-validation-unobtrusive": "^4.0.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/jquery-validation/package.json b/npm/packs/jquery-validation/package.json index ac4eaf1140..b67c4aef5b 100644 --- a/npm/packs/jquery-validation/package.json +++ b/npm/packs/jquery-validation/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/jquery-validation", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", + "@abp/jquery": "~9.3.5", "jquery-validation": "^1.21.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json index 452e045af5..1547e55010 100644 --- a/npm/packs/jquery/package.json +++ b/npm/packs/jquery/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/jquery", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "jquery": "~3.7.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json index 86f81c319d..a81cf4769c 100644 --- a/npm/packs/jstree/package.json +++ b/npm/packs/jstree/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/jstree", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", + "@abp/jquery": "~9.3.5", "jstree": "^3.3.17" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json index a59f90f6ba..74c32bce42 100644 --- a/npm/packs/lodash/package.json +++ b/npm/packs/lodash/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/lodash", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "lodash": "^4.17.21" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json index d8b7fad88e..e7203ec28e 100644 --- a/npm/packs/luxon/package.json +++ b/npm/packs/luxon/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/luxon", "repository": { "type": "git", diff --git a/npm/packs/malihu-custom-scrollbar-plugin/package.json b/npm/packs/malihu-custom-scrollbar-plugin/package.json index 090a19bf89..c4baa306c1 100644 --- a/npm/packs/malihu-custom-scrollbar-plugin/package.json +++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/malihu-custom-scrollbar-plugin", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "malihu-custom-scrollbar-plugin": "^3.1.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/markdown-it/package.json b/npm/packs/markdown-it/package.json index 1aca00789e..b22685d81d 100644 --- a/npm/packs/markdown-it/package.json +++ b/npm/packs/markdown-it/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/markdown-it", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "markdown-it": "^14.1.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/moment/package.json b/npm/packs/moment/package.json index 4fb3bdebff..92eb2a6e47 100644 --- a/npm/packs/moment/package.json +++ b/npm/packs/moment/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/moment", "repository": { "type": "git", diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json index 74628ffdeb..f355a2f759 100644 --- a/npm/packs/owl.carousel/package.json +++ b/npm/packs/owl.carousel/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/owl.carousel", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "owl.carousel": "^2.3.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/popper.js/package.json b/npm/packs/popper.js/package.json index 2683edb407..03b3a80090 100644 --- a/npm/packs/popper.js/package.json +++ b/npm/packs/popper.js/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/popper.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "@popperjs/core": "^2.11.8" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json index b13c34aba8..b0ddbc54ef 100644 --- a/npm/packs/prismjs/package.json +++ b/npm/packs/prismjs/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/prismjs", "publishConfig": { "access": "public" diff --git a/npm/packs/qrcode/package.json b/npm/packs/qrcode/package.json index b59b4e29ad..7175575c6b 100644 --- a/npm/packs/qrcode/package.json +++ b/npm/packs/qrcode/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/qrcode", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4" + "@abp/core": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json index ccaa56dd25..cbd7f477a3 100644 --- a/npm/packs/select2/package.json +++ b/npm/packs/select2/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/select2", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "select2": "^4.0.13" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json index 8e54af3968..ec6f313eaa 100644 --- a/npm/packs/signalr/package.json +++ b/npm/packs/signalr/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/signalr", "publishConfig": { "access": "public" diff --git a/npm/packs/slugify/package.json b/npm/packs/slugify/package.json index 6162171b92..f8b6a7174a 100644 --- a/npm/packs/slugify/package.json +++ b/npm/packs/slugify/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/slugify", "publishConfig": { "access": "public" diff --git a/npm/packs/star-rating-svg/package.json b/npm/packs/star-rating-svg/package.json index 9a0ed08570..c7e5639dcd 100644 --- a/npm/packs/star-rating-svg/package.json +++ b/npm/packs/star-rating-svg/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/star-rating-svg", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", + "@abp/jquery": "~9.3.5", "star-rating-svg": "^3.5.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/sweetalert2/package.json b/npm/packs/sweetalert2/package.json index e6d4d71fec..0c018f4a05 100644 --- a/npm/packs/sweetalert2/package.json +++ b/npm/packs/sweetalert2/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/sweetalert2", "publishConfig": { "access": "public" diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json index 66fe5f421d..979138b5a3 100644 --- a/npm/packs/timeago/package.json +++ b/npm/packs/timeago/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/timeago", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", + "@abp/jquery": "~9.3.5", "timeago": "^1.6.7" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json index d37648c6ed..7a7dc0281c 100644 --- a/npm/packs/toastr/package.json +++ b/npm/packs/toastr/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/toastr", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", + "@abp/jquery": "~9.3.5", "toastr": "^2.1.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json index e4ab65b2fb..9be57db423 100644 --- a/npm/packs/tui-editor/package.json +++ b/npm/packs/tui-editor/package.json @@ -1,12 +1,12 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/tui-editor", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~9.3.4", - "@abp/prismjs": "~9.3.4" + "@abp/jquery": "~9.3.5", + "@abp/prismjs": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json index 1ffee412d1..7105ac87e6 100644 --- a/npm/packs/uppy/package.json +++ b/npm/packs/uppy/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/uppy", "publishConfig": { "access": "public" diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json index 220ec7f0ff..4c4293290c 100644 --- a/npm/packs/utils/package.json +++ b/npm/packs/utils/package.json @@ -1,6 +1,6 @@ { "name": "@abp/utils", - "version": "9.3.4", + "version": "9.3.5", "scripts": { "prepublishOnly": "yarn install --ignore-scripts && node prepublish.js", "ng": "ng", diff --git a/npm/packs/vee-validate/package.json b/npm/packs/vee-validate/package.json index e2ecde0e5b..b53c7c59ea 100644 --- a/npm/packs/vee-validate/package.json +++ b/npm/packs/vee-validate/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/vee-validate", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/vue": "~9.3.4", + "@abp/vue": "~9.3.5", "vee-validate": "~3.4.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/virtual-file-explorer/package.json b/npm/packs/virtual-file-explorer/package.json index f105af5d3e..fc20509b8f 100644 --- a/npm/packs/virtual-file-explorer/package.json +++ b/npm/packs/virtual-file-explorer/package.json @@ -1,12 +1,12 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/virtual-file-explorer", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~9.3.4", - "@abp/prismjs": "~9.3.4" + "@abp/clipboard": "~9.3.5", + "@abp/prismjs": "~9.3.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/vue/package.json b/npm/packs/vue/package.json index 67aa1973e7..f86a2603ae 100644 --- a/npm/packs/vue/package.json +++ b/npm/packs/vue/package.json @@ -1,5 +1,5 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/vue", "publishConfig": { "access": "public" diff --git a/npm/packs/zxcvbn/package.json b/npm/packs/zxcvbn/package.json index 73596906f8..21cd7523f7 100644 --- a/npm/packs/zxcvbn/package.json +++ b/npm/packs/zxcvbn/package.json @@ -1,11 +1,11 @@ { - "version": "9.3.4", + "version": "9.3.5", "name": "@abp/zxcvbn", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~9.3.4", + "@abp/core": "~9.3.5", "zxcvbn": "^4.4.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip b/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip index 695ccc3cc3..83712f86de 100644 Binary files a/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip and b/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip differ diff --git a/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip b/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip index 34c89fd50e..e645910158 100644 Binary files a/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip and b/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip differ diff --git a/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip b/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip index 71c66b4302..fca5310490 100644 Binary files a/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip and b/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip differ diff --git a/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip b/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip index b1efaa328f..119f96907f 100644 Binary files a/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip and b/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip differ diff --git a/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip b/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip index 46a8bbe85f..33ac1982c1 100644 Binary files a/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip and b/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip differ diff --git a/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip b/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip index 58c22c5484..5e646322fe 100644 Binary files a/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip and b/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip b/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip index b0a7030e7e..5c3273c381 100644 Binary files a/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip and b/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip differ diff --git a/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip b/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip index 1508c025d1..7d703b0fae 100644 Binary files a/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip and b/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip differ diff --git a/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip b/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip index d22fcb8ca4..ac50eeb3b3 100644 Binary files a/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip and b/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip differ diff --git a/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip b/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip index d107613fa1..faa7ade151 100644 Binary files a/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip and b/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip b/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip index 75e56ccf4e..4e3d1c213c 100644 Binary files a/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip and b/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip b/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip index f72996a032..1e3b07a812 100644 Binary files a/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip and b/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip b/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip index 35276327f9..a989398900 100644 Binary files a/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip and b/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip differ diff --git a/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip b/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip index 0112d28e91..92f0c9eea8 100644 Binary files a/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip and b/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip differ diff --git a/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip b/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip index 1c64fc0fee..130f2bf7b7 100644 Binary files a/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip and b/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip differ diff --git a/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip b/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip index 83fd54417b..1ce4ae6133 100644 Binary files a/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip and b/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip differ diff --git a/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip b/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip index dbb08df56b..583c546a5e 100644 Binary files a/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip and b/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip differ diff --git a/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip b/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip index 1a4cfc18ff..bdebed21c3 100644 Binary files a/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip and b/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip differ diff --git a/templates/app-nolayers/angular/package.json b/templates/app-nolayers/angular/package.json index e618fe2ca6..03f962a45f 100644 --- a/templates/app-nolayers/angular/package.json +++ b/templates/app-nolayers/angular/package.json @@ -12,15 +12,15 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~9.3.4", - "@abp/ng.components": "~9.3.4", - "@abp/ng.core": "~9.3.4", - "@abp/ng.identity": "~9.3.4", - "@abp/ng.oauth": "~9.3.4", - "@abp/ng.setting-management": "~9.3.4", - "@abp/ng.tenant-management": "~9.3.4", - "@abp/ng.theme.lepton-x": "~4.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.account": "~9.3.5", + "@abp/ng.components": "~9.3.5", + "@abp/ng.core": "~9.3.5", + "@abp/ng.identity": "~9.3.5", + "@abp/ng.oauth": "~9.3.5", + "@abp/ng.setting-management": "~9.3.5", + "@abp/ng.tenant-management": "~9.3.5", + "@abp/ng.theme.lepton-x": "~4.3.5", + "@abp/ng.theme.shared": "~9.3.5", "@angular/animations": "~20.0.0", "@angular/common": "~20.0.0", "@angular/compiler": "~20.0.0", @@ -36,7 +36,7 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@abp/ng.schematics": "~9.3.4", + "@abp/ng.schematics": "~9.3.5", "@angular-devkit/build-angular": "~20.0.0", "@angular-eslint/builder": "~20.0.0", "@angular-eslint/eslint-plugin": "~20.0.0", diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json index 8409f7dfbb..e9c0a79ab4 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.4", - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.5", + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json index b2f4e05527..c4ff4de6fd 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json index 9d653c2555..49e7736d5d 100644 --- a/templates/app/angular/package.json +++ b/templates/app/angular/package.json @@ -12,15 +12,15 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~9.3.4", - "@abp/ng.components": "~9.3.4", - "@abp/ng.core": "~9.3.4", - "@abp/ng.identity": "~9.3.4", - "@abp/ng.oauth": "~9.3.4", - "@abp/ng.setting-management": "~9.3.4", - "@abp/ng.tenant-management": "~9.3.4", - "@abp/ng.theme.lepton-x": "~4.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.account": "~9.3.5", + "@abp/ng.components": "~9.3.5", + "@abp/ng.core": "~9.3.5", + "@abp/ng.identity": "~9.3.5", + "@abp/ng.oauth": "~9.3.5", + "@abp/ng.setting-management": "~9.3.5", + "@abp/ng.tenant-management": "~9.3.5", + "@abp/ng.theme.lepton-x": "~4.3.5", + "@abp/ng.theme.shared": "~9.3.5", "@angular/animations": "~20.0.0", "@angular/common": "~20.0.0", "@angular/compiler": "~20.0.0", @@ -36,7 +36,7 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@abp/ng.schematics": "~9.3.4", + "@abp/ng.schematics": "~9.3.5", "@angular-devkit/build-angular": "~20.0.0", "@angular-eslint/builder": "~20.0.0", "@angular-eslint/eslint-plugin": "~20.0.0", diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json index c64344a787..b14dba8408 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json @@ -3,6 +3,6 @@ "name": "my-app-authserver", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json index b2f4e05527..c4ff4de6fd 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json index b2f4e05527..c4ff4de6fd 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json index b2f4e05527..c4ff4de6fd 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json index b2f4e05527..c4ff4de6fd 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json index 6596312500..a3374dfcf9 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.4" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~4.3.5" } } diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json index 1193eb0475..450ae645f8 100644 --- a/templates/module/angular/package.json +++ b/templates/module/angular/package.json @@ -13,15 +13,15 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~9.3.4", - "@abp/ng.components": "~9.3.4", - "@abp/ng.core": "~9.3.4", - "@abp/ng.identity": "~9.3.4", - "@abp/ng.oauth": "~9.3.4", - "@abp/ng.setting-management": "~9.3.4", - "@abp/ng.tenant-management": "~9.3.4", - "@abp/ng.theme.basic": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4", + "@abp/ng.account": "~9.3.5", + "@abp/ng.components": "~9.3.5", + "@abp/ng.core": "~9.3.5", + "@abp/ng.identity": "~9.3.5", + "@abp/ng.oauth": "~9.3.5", + "@abp/ng.setting-management": "~9.3.5", + "@abp/ng.tenant-management": "~9.3.5", + "@abp/ng.theme.basic": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5", "@angular/animations": "~20.0.0", "@angular/common": "~20.0.0", "@angular/compiler": "~20.0.0", @@ -36,7 +36,7 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@abp/ng.schematics": "~9.3.4", + "@abp/ng.schematics": "~9.3.5", "@angular-devkit/build-angular": "~20.0.0", "@angular-eslint/builder": "~20.0.0", "@angular-eslint/eslint-plugin": "~20.0.0", diff --git a/templates/module/angular/projects/my-project-name/package.json b/templates/module/angular/projects/my-project-name/package.json index 59162e80d1..d7c442ae3a 100644 --- a/templates/module/angular/projects/my-project-name/package.json +++ b/templates/module/angular/projects/my-project-name/package.json @@ -4,8 +4,8 @@ "peerDependencies": { "@angular/common": "~19.1.0", "@angular/core": "~19.1.0", - "@abp/ng.core": "~9.3.4", - "@abp/ng.theme.shared": "~9.3.4" + "@abp/ng.core": "~9.3.5", + "@abp/ng.theme.shared": "~9.3.5" }, "dependencies": { "tslib": "^2.1.0" diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json index 62db63b64c..d055004ad8 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json @@ -3,6 +3,6 @@ "name": "my-app-authserver", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json index ebe1798e76..dd143e64a7 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4", - "@abp/aspnetcore.components.server.basictheme": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5", + "@abp/aspnetcore.components.server.basictheme": "~9.3.5" } } diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json index e33522d6e1..71e19a38de 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } } diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json index e33522d6e1..71e19a38de 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.4" + "@abp/aspnetcore.mvc.ui.theme.basic": "~9.3.5" } }