From 1a2dee7129a4c75eebb8a66f2fbc24017913d799 Mon Sep 17 00:00:00 2001
From: Fahri Gedik <53567152+fahrigedik@users.noreply.github.com>
Date: Fri, 23 Jan 2026 11:03:05 +0300
Subject: [PATCH 01/17] Migrate Angular tests from Karma/Jasmine to Vitest
Replaces Karma and Jasmine with Vitest for unit testing in the Angular template.
---
templates/app/angular/angular.json | 12 +-
templates/app/angular/karma.conf.js | 44 -------
templates/app/angular/package.json | 11 +-
.../angular/src/app/home/home.component.html | 1 -
.../src/app/home/home.component.spec.ts | 114 +++++++++---------
.../angular/src/app/home/home.component.ts | 79 +-----------
templates/app/angular/src/test.ts | 13 --
templates/app/angular/tsconfig.spec.json | 13 +-
8 files changed, 68 insertions(+), 219 deletions(-)
delete mode 100644 templates/app/angular/karma.conf.js
delete mode 100644 templates/app/angular/src/test.ts
diff --git a/templates/app/angular/angular.json b/templates/app/angular/angular.json
index 0a99a4c08a..81d536178a 100644
--- a/templates/app/angular/angular.json
+++ b/templates/app/angular/angular.json
@@ -163,17 +163,7 @@
}
},
"test": {
- "builder": "@angular/build:karma",
- "options": {
- "browser": "src/test.ts",
- "polyfills": ["src/polyfills.ts"],
- "tsConfig": "tsconfig.spec.json",
- "karmaConfig": "karma.conf.js",
- "inlineStyleLanguage": "scss",
- "assets": ["src/favicon.ico", "src/assets"],
- "styles": ["src/styles.scss"],
- "scripts": []
- }
+ "builder": "@angular/build:unit-test"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
diff --git a/templates/app/angular/karma.conf.js b/templates/app/angular/karma.conf.js
deleted file mode 100644
index b06ddef227..0000000000
--- a/templates/app/angular/karma.conf.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Karma configuration file, see link for more information
-// https://karma-runner.github.io/1.0/config/configuration-file.html
-
-module.exports = function (config) {
- config.set({
- basePath: '',
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
- plugins: [
- require('karma-jasmine'),
- require('karma-chrome-launcher'),
- require('karma-jasmine-html-reporter'),
- require('karma-coverage'),
-
- ],
- client: {
- jasmine: {
- // you can add configuration options for Jasmine here
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
- // for example, you can disable the random execution with `random: false`
- // or set a specific seed with `seed: 4321`
- },
- clearContext: false // leave Jasmine Spec Runner output visible in browser
- },
- jasmineHtmlReporter: {
- suppressAll: true // removes the duplicated traces
- },
- coverageReporter: {
- dir: require('path').join(__dirname, './coverage/MyProjectName'),
- subdir: '.',
- reporters: [
- { type: 'html' },
- { type: 'text-summary' }
- ]
- },
- reporters: ['progress', 'kjhtml'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['Chrome'],
- singleRun: false,
- restartOnFileChange: true
- });
-};
diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json
index 9b318eb19b..9695146bd7 100644
--- a/templates/app/angular/package.json
+++ b/templates/app/angular/package.json
@@ -47,17 +47,12 @@
"@angular/cli": "~21.0.0",
"@angular/compiler-cli": "~21.0.0",
"@angular/language-service": "~21.0.0",
- "@types/jasmine": "~3.6.0",
"@types/node": "~20.11.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "^8.0.0",
- "jasmine-core": "~4.0.0",
- "karma": "~6.4.4",
- "karma-chrome-launcher": "~3.1.0",
- "karma-coverage": "~2.1.0",
- "karma-jasmine": "~4.0.0",
- "karma-jasmine-html-reporter": "^1.7.0",
- "typescript": "~5.9.3"
+ "jsdom": "^27.1.0",
+ "typescript": "~5.9.3",
+ "vitest": "^4.0.8"
}
}
\ No newline at end of file
diff --git a/templates/app/angular/src/app/home/home.component.html b/templates/app/angular/src/app/home/home.component.html
index edcdc66bc0..e3e73e48ae 100644
--- a/templates/app/angular/src/app/home/home.component.html
+++ b/templates/app/angular/src/app/home/home.component.html
@@ -1,5 +1,4 @@
-
diff --git a/templates/app/angular/src/app/home/home.component.spec.ts b/templates/app/angular/src/app/home/home.component.spec.ts
index 2243bfca92..7d0ddb0952 100644
--- a/templates/app/angular/src/app/home/home.component.spec.ts
+++ b/templates/app/angular/src/app/home/home.component.spec.ts
@@ -1,39 +1,43 @@
import { CoreTestingModule } from "@abp/ng.core/testing";
import { ThemeSharedTestingModule } from "@abp/ng.theme.shared/testing";
-import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing";
+import { ComponentFixture, TestBed } from "@angular/core/testing";
import { NgxValidateCoreModule } from "@ngx-validate/core";
import { HomeComponent } from "./home.component";
import { OAuthService } from 'angular-oauth2-oidc';
import { AuthService } from '@abp/ng.core';
+import { vi } from 'vitest';
describe("HomeComponent", () => {
let fixture: ComponentFixture
;
- const mockOAuthService = jasmine.createSpyObj('OAuthService', ['hasValidAccessToken'])
- const mockAuthService = jasmine.createSpyObj('AuthService', ['navigateToLogin'])
- beforeEach(
- waitForAsync(() => {
- TestBed.configureTestingModule({
- declarations: [],
- imports: [
- CoreTestingModule.withConfig(),
- ThemeSharedTestingModule.withConfig(),
- NgxValidateCoreModule,
- HomeComponent
- ],
- providers: [
- /* mock providers here */
- {
- provide: OAuthService,
- useValue: mockOAuthService
- },
- {
- provide: AuthService,
- useValue: mockAuthService
- }
- ],
- }).compileComponents();
- })
- );
+ const mockOAuthService = {
+ hasValidAccessToken: vi.fn()
+ };
+ const mockAuthService = {
+ navigateToLogin: vi.fn()
+ };
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [],
+ imports: [
+ CoreTestingModule.withConfig(),
+ ThemeSharedTestingModule.withConfig(),
+ NgxValidateCoreModule,
+ HomeComponent
+ ],
+ providers: [
+ /* mock providers here */
+ {
+ provide: OAuthService,
+ useValue: mockOAuthService
+ },
+ {
+ provide: AuthService,
+ useValue: mockAuthService
+ }
+ ],
+ }).compileComponents();
+ });
beforeEach(() => {
fixture = TestBed.createComponent(HomeComponent);
@@ -44,55 +48,49 @@ describe("HomeComponent", () => {
expect(fixture.componentInstance).toBeTruthy();
});
-
-
describe('when login state is true', () => {
beforeAll(() => {
- mockOAuthService.hasValidAccessToken.and.returnValue(true)
+ mockOAuthService.hasValidAccessToken.mockReturnValue(true);
});
it("hasLoggedIn should be true", () => {
-
- expect(fixture.componentInstance.hasLoggedIn).toBeTrue();
- expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled()
- })
+ expect(fixture.componentInstance.hasLoggedIn).toBe(true);
+ expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled();
+ });
it("button should not be exists", () => {
- const element = fixture.nativeElement
- const button = element.querySelector('[role="button"]')
- expect(button).toBeNull()
- })
-
- })
+ const element = fixture.nativeElement;
+ const button = element.querySelector('[role="button"]');
+ expect(button).toBeNull();
+ });
+ });
describe('when login state is false', () => {
beforeAll(() => {
- mockOAuthService.hasValidAccessToken.and.returnValue(false)
+ mockOAuthService.hasValidAccessToken.mockReturnValue(false);
});
it("hasLoggedIn should be false", () => {
-
- expect(fixture.componentInstance.hasLoggedIn).toBeFalse();
- expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled()
- })
+ expect(fixture.componentInstance.hasLoggedIn).toBe(false);
+ expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled();
+ });
it("button should be exists", () => {
- const element = fixture.nativeElement
- const button = element.querySelector('[role="button"]')
- expect(button).toBeDefined()
- })
- describe('when button clicked', () => {
+ const element = fixture.nativeElement;
+ const button = element.querySelector('[role="button"]');
+ expect(button).toBeDefined();
+ });
+ describe('when button clicked', () => {
beforeEach(() => {
- const element = fixture.nativeElement
- const button = element.querySelector('[role="button"]')
- button.click()
+ const element = fixture.nativeElement;
+ const button = element.querySelector('[role="button"]');
+ button.click();
});
it("navigateToLogin have been called", () => {
- expect(mockAuthService.navigateToLogin).toHaveBeenCalled()
- })
- })
- })
-
+ expect(mockAuthService.navigateToLogin).toHaveBeenCalled();
+ });
+ });
+ });
});
diff --git a/templates/app/angular/src/app/home/home.component.ts b/templates/app/angular/src/app/home/home.component.ts
index ee6bd838c9..7d65148a11 100644
--- a/templates/app/angular/src/app/home/home.component.ts
+++ b/templates/app/angular/src/app/home/home.component.ts
@@ -1,89 +1,16 @@
-import {AuthService, LocalizationPipe} from '@abp/ng.core';
+import { AuthService, LocalizationPipe } from '@abp/ng.core';
import { Component, inject } from '@angular/core';
-import {NgTemplateOutlet} from "@angular/common";
-import {DynamicFormComponent, FormFieldConfig} from "@abp/ng.components/dynamic-form";
+import { NgTemplateOutlet } from "@angular/common";
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
- imports: [NgTemplateOutlet, LocalizationPipe, DynamicFormComponent]
+ imports: [NgTemplateOutlet, LocalizationPipe]
})
export class HomeComponent {
private authService = inject(AuthService);
- formFields: FormFieldConfig[] = [
- {
- key: 'firstName',
- type: 'text',
- label: 'First Name',
- placeholder: 'Enter first name',
- value: 'erdemc',
- required: true,
- validators: [
- { type: 'required', message: 'First name is required' },
- { type: 'minLength', value: 2, message: 'Minimum 2 characters required' }
- ],
- gridSize: 6,
- order: 1
- },
- {
- key: 'lastName',
- type: 'text',
- label: 'Last Name',
- placeholder: 'Enter last name',
- required: true,
- validators: [
- { type: 'required', message: 'Last name is required' }
- ],
- gridSize: 12,
- order: 3
- },
- {
- key: 'email',
- type: 'email',
- label: 'Email Address',
- placeholder: 'Enter email',
- required: true,
- validators: [
- { type: 'required', message: 'Email is required' },
- { type: 'email', message: 'Please enter a valid email' }
- ],
- gridSize: 6,
- order: 2
- },
- {
- key: 'userType',
- type: 'select',
- label: 'User Type',
- required: true,
- options: [
- { key: 'admin', value: 'Administrator' },
- { key: 'user', value: 'Regular User' },
- { key: 'guest', value: 'Guest User' }
- ],
- validators: [
- { type: 'required', message: 'Please select user type' }
- ],
- order: 4
- },
- {
- key: 'adminNotes',
- type: 'textarea',
- label: 'Admin Notes',
- placeholder: 'Enter admin-specific notes',
- conditionalLogic: [
- {
- dependsOn: 'userType',
- condition: 'equals',
- value: 'admin',
- action: 'show'
- }
- ],
- order: 5
- }
- ];
-
get hasLoggedIn(): boolean {
return this.authService.isAuthenticated;
}
diff --git a/templates/app/angular/src/test.ts b/templates/app/angular/src/test.ts
deleted file mode 100644
index 3b701bbfa0..0000000000
--- a/templates/app/angular/src/test.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-// This file is required by karma.conf.js and loads recursively all the .spec and framework files
-import 'zone.js/testing';
-import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting,
-} from '@angular/platform-browser-dynamic/testing';
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting()
-);
diff --git a/templates/app/angular/tsconfig.spec.json b/templates/app/angular/tsconfig.spec.json
index 092345b02e..d38370633f 100644
--- a/templates/app/angular/tsconfig.spec.json
+++ b/templates/app/angular/tsconfig.spec.json
@@ -1,18 +1,15 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
- "jasmine"
+ "vitest/globals"
]
},
- "files": [
- "src/test.ts",
- "src/polyfills.ts"
- ],
"include": [
- "src/**/*.spec.ts",
- "src/**/*.d.ts"
+ "src/**/*.d.ts",
+ "src/**/*.spec.ts"
]
}
From 36435bd6e1227cb6be51e204ffeb8c63df84c43b Mon Sep 17 00:00:00 2001
From: Fahri Gedik <53567152+fahrigedik@users.noreply.github.com>
Date: Fri, 23 Jan 2026 11:21:05 +0300
Subject: [PATCH 02/17] Migrate Angular template from Karma/Jasmine to Vitest
on app-no-layers
Replaces Karma and Jasmine with Vitest and jsdom for unit testing in the app-nolayers Angular template. Removes Karma configuration files and related dependencies, updates test configuration in angular.json, and adapts test files and tsconfig for Vitest. Also updates tsconfig.app.json and tsconfig.spec.json to reflect new test setup. Minor cleanup in app template test files.
---
templates/app-nolayers/angular/angular.json | 12 +----
templates/app-nolayers/angular/karma.conf.js | 44 -------------------
templates/app-nolayers/angular/package.json | 11 ++---
.../src/app/home/home.component.spec.ts | 24 ++++++----
templates/app-nolayers/angular/src/test.ts | 13 ------
.../app-nolayers/angular/tsconfig.app.json | 12 ++---
.../app-nolayers/angular/tsconfig.spec.json | 13 +++---
.../src/app/home/home.component.spec.ts | 1 -
templates/app/angular/tsconfig.app.json | 12 ++---
9 files changed, 36 insertions(+), 106 deletions(-)
delete mode 100644 templates/app-nolayers/angular/karma.conf.js
delete mode 100644 templates/app-nolayers/angular/src/test.ts
diff --git a/templates/app-nolayers/angular/angular.json b/templates/app-nolayers/angular/angular.json
index 0a99a4c08a..81d536178a 100644
--- a/templates/app-nolayers/angular/angular.json
+++ b/templates/app-nolayers/angular/angular.json
@@ -163,17 +163,7 @@
}
},
"test": {
- "builder": "@angular/build:karma",
- "options": {
- "browser": "src/test.ts",
- "polyfills": ["src/polyfills.ts"],
- "tsConfig": "tsconfig.spec.json",
- "karmaConfig": "karma.conf.js",
- "inlineStyleLanguage": "scss",
- "assets": ["src/favicon.ico", "src/assets"],
- "styles": ["src/styles.scss"],
- "scripts": []
- }
+ "builder": "@angular/build:unit-test"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
diff --git a/templates/app-nolayers/angular/karma.conf.js b/templates/app-nolayers/angular/karma.conf.js
deleted file mode 100644
index b06ddef227..0000000000
--- a/templates/app-nolayers/angular/karma.conf.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Karma configuration file, see link for more information
-// https://karma-runner.github.io/1.0/config/configuration-file.html
-
-module.exports = function (config) {
- config.set({
- basePath: '',
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
- plugins: [
- require('karma-jasmine'),
- require('karma-chrome-launcher'),
- require('karma-jasmine-html-reporter'),
- require('karma-coverage'),
-
- ],
- client: {
- jasmine: {
- // you can add configuration options for Jasmine here
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
- // for example, you can disable the random execution with `random: false`
- // or set a specific seed with `seed: 4321`
- },
- clearContext: false // leave Jasmine Spec Runner output visible in browser
- },
- jasmineHtmlReporter: {
- suppressAll: true // removes the duplicated traces
- },
- coverageReporter: {
- dir: require('path').join(__dirname, './coverage/MyProjectName'),
- subdir: '.',
- reporters: [
- { type: 'html' },
- { type: 'text-summary' }
- ]
- },
- reporters: ['progress', 'kjhtml'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['Chrome'],
- singleRun: false,
- restartOnFileChange: true
- });
-};
diff --git a/templates/app-nolayers/angular/package.json b/templates/app-nolayers/angular/package.json
index 2aadf0e576..2ec6ed3912 100644
--- a/templates/app-nolayers/angular/package.json
+++ b/templates/app-nolayers/angular/package.json
@@ -47,17 +47,12 @@
"@angular/cli": "~21.0.0",
"@angular/compiler-cli": "~21.0.0",
"@angular/language-service": "~21.0.0",
- "@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "^8.0.0",
- "jasmine-core": "~4.0.0",
- "karma": "~6.4.4",
- "karma-chrome-launcher": "~3.1.0",
- "karma-coverage": "~2.1.0",
- "karma-jasmine": "~4.0.0",
- "karma-jasmine-html-reporter": "^1.7.0",
- "typescript": "~5.9.0"
+ "jsdom": "^27.1.0",
+ "typescript": "~5.9.0",
+ "vitest": "^4.0.8"
}
}
\ No newline at end of file
diff --git a/templates/app-nolayers/angular/src/app/home/home.component.spec.ts b/templates/app-nolayers/angular/src/app/home/home.component.spec.ts
index 9fb41df29a..0514873406 100644
--- a/templates/app-nolayers/angular/src/app/home/home.component.spec.ts
+++ b/templates/app-nolayers/angular/src/app/home/home.component.spec.ts
@@ -1,22 +1,28 @@
import { CoreTestingModule } from '@abp/ng.core/testing';
import { ThemeSharedTestingModule } from '@abp/ng.theme.shared/testing';
-import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NgxValidateCoreModule } from '@ngx-validate/core';
import { HomeComponent } from './home.component';
import { OAuthService } from 'angular-oauth2-oidc';
import { AuthService } from '@abp/ng.core';
+import { vi } from 'vitest';
describe('HomeComponent', () => {
let fixture: ComponentFixture;
- const mockOAuthService = jasmine.createSpyObj('OAuthService', ['hasValidAccessToken']);
- const mockAuthService = jasmine.createSpyObj('AuthService', ['navigateToLogin']);
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- declarations: [HomeComponent],
+ const mockOAuthService = {
+ hasValidAccessToken: vi.fn(),
+ };
+ const mockAuthService = {
+ navigateToLogin: vi.fn(),
+ };
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
imports: [
CoreTestingModule.withConfig(),
ThemeSharedTestingModule.withConfig(),
NgxValidateCoreModule,
+ HomeComponent,
],
providers: [
/* mock providers here */
@@ -30,7 +36,7 @@ describe('HomeComponent', () => {
},
],
}).compileComponents();
- }));
+ });
beforeEach(() => {
fixture = TestBed.createComponent(HomeComponent);
@@ -43,11 +49,11 @@ describe('HomeComponent', () => {
describe('when login state is true', () => {
beforeAll(() => {
- mockOAuthService.hasValidAccessToken.and.returnValue(true);
+ mockOAuthService.hasValidAccessToken.mockReturnValue(true);
});
it('hasLoggedIn should be true', () => {
- expect(fixture.componentInstance.hasLoggedIn).toBeTrue();
+ expect(fixture.componentInstance.hasLoggedIn).toBe(true);
expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled();
});
diff --git a/templates/app-nolayers/angular/src/test.ts b/templates/app-nolayers/angular/src/test.ts
deleted file mode 100644
index 3b701bbfa0..0000000000
--- a/templates/app-nolayers/angular/src/test.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-// This file is required by karma.conf.js and loads recursively all the .spec and framework files
-import 'zone.js/testing';
-import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting,
-} from '@angular/platform-browser-dynamic/testing';
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting()
-);
diff --git a/templates/app-nolayers/angular/tsconfig.app.json b/templates/app-nolayers/angular/tsconfig.app.json
index 82d91dc4a4..264f459bf8 100644
--- a/templates/app-nolayers/angular/tsconfig.app.json
+++ b/templates/app-nolayers/angular/tsconfig.app.json
@@ -1,15 +1,15 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": []
},
- "files": [
- "src/main.ts",
- "src/polyfills.ts"
- ],
"include": [
- "src/**/*.d.ts"
+ "src/**/*.ts"
+ ],
+ "exclude": [
+ "src/**/*.spec.ts"
]
}
diff --git a/templates/app-nolayers/angular/tsconfig.spec.json b/templates/app-nolayers/angular/tsconfig.spec.json
index 092345b02e..d38370633f 100644
--- a/templates/app-nolayers/angular/tsconfig.spec.json
+++ b/templates/app-nolayers/angular/tsconfig.spec.json
@@ -1,18 +1,15 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
- "jasmine"
+ "vitest/globals"
]
},
- "files": [
- "src/test.ts",
- "src/polyfills.ts"
- ],
"include": [
- "src/**/*.spec.ts",
- "src/**/*.d.ts"
+ "src/**/*.d.ts",
+ "src/**/*.spec.ts"
]
}
diff --git a/templates/app/angular/src/app/home/home.component.spec.ts b/templates/app/angular/src/app/home/home.component.spec.ts
index 7d0ddb0952..49ee6cea57 100644
--- a/templates/app/angular/src/app/home/home.component.spec.ts
+++ b/templates/app/angular/src/app/home/home.component.spec.ts
@@ -18,7 +18,6 @@ describe("HomeComponent", () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
- declarations: [],
imports: [
CoreTestingModule.withConfig(),
ThemeSharedTestingModule.withConfig(),
diff --git a/templates/app/angular/tsconfig.app.json b/templates/app/angular/tsconfig.app.json
index 82d91dc4a4..264f459bf8 100644
--- a/templates/app/angular/tsconfig.app.json
+++ b/templates/app/angular/tsconfig.app.json
@@ -1,15 +1,15 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": []
},
- "files": [
- "src/main.ts",
- "src/polyfills.ts"
- ],
"include": [
- "src/**/*.d.ts"
+ "src/**/*.ts"
+ ],
+ "exclude": [
+ "src/**/*.spec.ts"
]
}
From 4d537d62ac80f5f076ab066d3f93544f57eb7c31 Mon Sep 17 00:00:00 2001
From: Fahri Gedik <53567152+fahrigedik@users.noreply.github.com>
Date: Fri, 23 Jan 2026 11:38:34 +0300
Subject: [PATCH 03/17] Migrate Angular template from Karma/Jasmine to Vitest
Replaces Karma and Jasmine with Vitest for unit testing in the Angular module template. Removes Karma configuration files and test entry points, updates test builder in angular.json, adjusts TypeScript configs for Vitest, and updates dependencies in package.json. Test files are refactored to use Vitest mocking utilities.
---
templates/module/angular/angular.json | 27 +-----------
templates/module/angular/package.json | 11 ++---
.../angular/projects/dev-app/karma.conf.js | 44 -------------------
.../angular/projects/dev-app/src/test.ts | 14 ------
.../projects/dev-app/tsconfig.app.json | 11 ++---
.../projects/dev-app/tsconfig.spec.json | 12 +++--
.../projects/my-project-name/karma.conf.js | 44 -------------------
.../src/lib/my-project-name.component.spec.ts | 18 ++++----
.../src/lib/my-project-name.service.spec.ts | 6 ++-
.../projects/my-project-name/src/test.ts | 15 -------
.../my-project-name/tsconfig.spec.json | 12 +++--
11 files changed, 36 insertions(+), 178 deletions(-)
delete mode 100644 templates/module/angular/projects/dev-app/karma.conf.js
delete mode 100644 templates/module/angular/projects/dev-app/src/test.ts
delete mode 100644 templates/module/angular/projects/my-project-name/karma.conf.js
delete mode 100644 templates/module/angular/projects/my-project-name/src/test.ts
diff --git a/templates/module/angular/angular.json b/templates/module/angular/angular.json
index 8c1b576257..62b319d275 100644
--- a/templates/module/angular/angular.json
+++ b/templates/module/angular/angular.json
@@ -28,12 +28,7 @@
"defaultConfiguration": "production"
},
"test": {
- "builder": "@angular/build:karma",
- "options": {
- "main": "projects/my-project-name/src/test.ts",
- "tsConfig": "projects/my-project-name/tsconfig.spec.json",
- "karmaConfig": "projects/my-project-name/karma.conf.js"
- }
+ "builder": "@angular/build:unit-test"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
@@ -157,25 +152,7 @@
}
},
"test": {
- "builder": "@angular/build:karma",
- "options": {
- "browser": "projects/dev-app/src/test.ts",
- "polyfills": ["projects/dev-app/src/polyfills.ts"],
- "tsConfig": "projects/dev-app/tsconfig.spec.json",
- "karmaConfig": "projects/dev-app/karma.conf.js",
- "inlineStyleLanguage": "scss",
- "assets": ["projects/dev-app/src/favicon.ico", "projects/dev-app/src/assets"],
- "styles": [
- "node_modules/bootstrap/dist/css/bootstrap.min.css",
- "node_modules/@fortawesome/fontawesome-free/css/all.min.css",
- "node_modules/@fortawesome/fontawesome-free/css/v4-shims.min.css",
- "node_modules/@swimlane/ngx-datatable/index.css",
- "node_modules/@swimlane/ngx-datatable/assets/icons.css",
- "node_modules/@swimlane/ngx-datatable/themes/material.css",
- "projects/dev-app/src/styles.scss"
- ],
- "scripts": []
- }
+ "builder": "@angular/build:unit-test"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json
index 61e301fad5..6b341274b0 100644
--- a/templates/module/angular/package.json
+++ b/templates/module/angular/package.json
@@ -47,19 +47,14 @@
"@angular/cli": "~21.0.0",
"@angular/compiler-cli": "~21.0.0",
"@angular/language-service": "~21.0.0",
- "@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "^8.0.0",
- "jasmine-core": "~4.0.0",
- "karma": "~6.4.4",
- "karma-chrome-launcher": "~3.1.0",
- "karma-coverage": "~2.1.0",
- "karma-jasmine": "~4.0.0",
- "karma-jasmine-html-reporter": "^1.7.0",
+ "jsdom": "^27.1.0",
"ng-packagr": "~21.0.0",
"symlink": "^2.0.0",
- "typescript": "~5.9.0"
+ "typescript": "~5.9.0",
+ "vitest": "^4.0.8"
}
}
\ No newline at end of file
diff --git a/templates/module/angular/projects/dev-app/karma.conf.js b/templates/module/angular/projects/dev-app/karma.conf.js
deleted file mode 100644
index eee6000f3a..0000000000
--- a/templates/module/angular/projects/dev-app/karma.conf.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Karma configuration file, see link for more information
-// https://karma-runner.github.io/1.0/config/configuration-file.html
-
-module.exports = function (config) {
- config.set({
- basePath: '',
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
- plugins: [
- require('karma-jasmine'),
- require('karma-chrome-launcher'),
- require('karma-jasmine-html-reporter'),
- require('karma-coverage'),
-
- ],
- client: {
- jasmine: {
- // you can add configuration options for Jasmine here
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
- // for example, you can disable the random execution with `random: false`
- // or set a specific seed with `seed: 4321`
- },
- clearContext: false // leave Jasmine Spec Runner output visible in browser
- },
- jasmineHtmlReporter: {
- suppressAll: true // removes the duplicated traces
- },
- coverageReporter: {
- dir: require('path').join(__dirname, '../../coverage/dev-app'),
- subdir: '.',
- reporters: [
- { type: 'html' },
- { type: 'text-summary' }
- ]
- },
- reporters: ['progress', 'kjhtml'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['Chrome'],
- singleRun: false,
- restartOnFileChange: true
- });
-};
diff --git a/templates/module/angular/projects/dev-app/src/test.ts b/templates/module/angular/projects/dev-app/src/test.ts
deleted file mode 100644
index 7632e27a11..0000000000
--- a/templates/module/angular/projects/dev-app/src/test.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-// This file is required by karma.conf.js and loads recursively all the .spec and framework files
-
-import 'zone.js/testing';
-import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting
-} from '@angular/platform-browser-dynamic/testing';
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting()
-);
diff --git a/templates/module/angular/projects/dev-app/tsconfig.app.json b/templates/module/angular/projects/dev-app/tsconfig.app.json
index 809c09ca71..742c48812c 100644
--- a/templates/module/angular/projects/dev-app/tsconfig.app.json
+++ b/templates/module/angular/projects/dev-app/tsconfig.app.json
@@ -1,14 +1,15 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/app",
"types": []
},
- "files": [
- "src/main.ts",
- "src/polyfills.ts"
- ],
"include": [
- "src/**/*.d.ts"
+ "src/**/*.ts"
+ ],
+ "exclude": [
+ "src/**/*.spec.ts"
]
}
diff --git a/templates/module/angular/projects/dev-app/tsconfig.spec.json b/templates/module/angular/projects/dev-app/tsconfig.spec.json
index a8ce1d396b..ff7db766ac 100644
--- a/templates/module/angular/projects/dev-app/tsconfig.spec.json
+++ b/templates/module/angular/projects/dev-app/tsconfig.spec.json
@@ -1,18 +1,16 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/spec",
"types": [
- "jasmine",
+ "vitest/globals",
"node"
]
},
- "files": [
- "src/test.ts",
- "src/polyfills.ts"
- ],
"include": [
- "src/**/*.spec.ts",
- "src/**/*.d.ts"
+ "src/**/*.d.ts",
+ "src/**/*.spec.ts"
]
}
diff --git a/templates/module/angular/projects/my-project-name/karma.conf.js b/templates/module/angular/projects/my-project-name/karma.conf.js
deleted file mode 100644
index 4fa9d617e5..0000000000
--- a/templates/module/angular/projects/my-project-name/karma.conf.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Karma configuration file, see link for more information
-// https://karma-runner.github.io/1.0/config/configuration-file.html
-
-module.exports = function (config) {
- config.set({
- basePath: '',
- frameworks: ['jasmine', '@angular-devkit/build-angular'],
- plugins: [
- require('karma-jasmine'),
- require('karma-chrome-launcher'),
- require('karma-jasmine-html-reporter'),
- require('karma-coverage'),
-
- ],
- client: {
- jasmine: {
- // you can add configuration options for Jasmine here
- // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
- // for example, you can disable the random execution with `random: false`
- // or set a specific seed with `seed: 4321`
- },
- clearContext: false // leave Jasmine Spec Runner output visible in browser
- },
- jasmineHtmlReporter: {
- suppressAll: true // removes the duplicated traces
- },
- coverageReporter: {
- dir: require('path').join(__dirname, '../../coverage/my-project-name'),
- subdir: '.',
- reporters: [
- { type: 'html' },
- { type: 'text-summary' }
- ]
- },
- reporters: ['progress', 'kjhtml'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- autoWatch: true,
- browsers: ['Chrome'],
- singleRun: false,
- restartOnFileChange: true
- });
-};
diff --git a/templates/module/angular/projects/my-project-name/src/lib/my-project-name.component.spec.ts b/templates/module/angular/projects/my-project-name/src/lib/my-project-name.component.spec.ts
index 4d6aae3ac8..6176f4d6c6 100644
--- a/templates/module/angular/projects/my-project-name/src/lib/my-project-name.component.spec.ts
+++ b/templates/module/angular/projects/my-project-name/src/lib/my-project-name.component.spec.ts
@@ -1,17 +1,19 @@
-import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MyProjectNameComponent } from './components/my-project-name.component';
import { MyProjectNameService } from '@my-company-name/my-project-name';
import { of } from 'rxjs';
+import { vi } from 'vitest';
describe('MyProjectNameComponent', () => {
let component: MyProjectNameComponent;
let fixture: ComponentFixture;
- const mockMyProjectNameService = jasmine.createSpyObj('MyProjectNameService', {
- sample: of([]),
- });
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- declarations: [MyProjectNameComponent],
+ const mockMyProjectNameService = {
+ sample: vi.fn().mockReturnValue(of([])),
+ };
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [MyProjectNameComponent],
providers: [
{
provide: MyProjectNameService,
@@ -19,7 +21,7 @@ describe('MyProjectNameComponent', () => {
},
],
}).compileComponents();
- }));
+ });
beforeEach(() => {
fixture = TestBed.createComponent(MyProjectNameComponent);
diff --git a/templates/module/angular/projects/my-project-name/src/lib/my-project-name.service.spec.ts b/templates/module/angular/projects/my-project-name/src/lib/my-project-name.service.spec.ts
index ec7aeb6c68..0782f6c0b6 100644
--- a/templates/module/angular/projects/my-project-name/src/lib/my-project-name.service.spec.ts
+++ b/templates/module/angular/projects/my-project-name/src/lib/my-project-name.service.spec.ts
@@ -1,10 +1,14 @@
import { TestBed } from '@angular/core/testing';
import { MyProjectNameService } from './services/my-project-name.service';
import { RestService } from '@abp/ng.core';
+import { vi } from 'vitest';
describe('MyProjectNameService', () => {
let service: MyProjectNameService;
- const mockRestService = jasmine.createSpyObj('RestService', ['request']);
+ const mockRestService = {
+ request: vi.fn(),
+ };
+
beforeEach(() => {
TestBed.configureTestingModule({
providers: [
diff --git a/templates/module/angular/projects/my-project-name/src/test.ts b/templates/module/angular/projects/my-project-name/src/test.ts
deleted file mode 100644
index e63a876062..0000000000
--- a/templates/module/angular/projects/my-project-name/src/test.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-// This file is required by karma.conf.js and loads recursively all the .spec and framework files
-
-import 'zone.js';
-import 'zone.js/testing';
-import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting
-} from '@angular/platform-browser-dynamic/testing';
-
-// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting()
-);
diff --git a/templates/module/angular/projects/my-project-name/tsconfig.spec.json b/templates/module/angular/projects/my-project-name/tsconfig.spec.json
index 715dd0a5d2..d63beb540b 100644
--- a/templates/module/angular/projects/my-project-name/tsconfig.spec.json
+++ b/templates/module/angular/projects/my-project-name/tsconfig.spec.json
@@ -1,17 +1,15 @@
-/* To learn more about this file see: https://angular.io/config/tsconfig. */
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/spec",
"types": [
- "jasmine"
+ "vitest/globals"
]
},
- "files": [
- "src/test.ts"
- ],
"include": [
- "**/*.spec.ts",
- "**/*.d.ts"
+ "**/*.d.ts",
+ "**/*.spec.ts"
]
}
From b2cbc15234240985df2194894117826dd415eac2 Mon Sep 17 00:00:00 2001
From: Fahri Gedik <53567152+fahrigedik@users.noreply.github.com>
Date: Thu, 29 Jan 2026 15:18:15 +0300
Subject: [PATCH 04/17] Refactor HomeComponent tests and update vitest version
Removed OAuthService mocking from HomeComponent tests and switched to using AuthService's isAuthenticated property for login state checks. Also updated vitest devDependency version constraint from ^4.0.8 to ^4.0.0 in Angular template package.json files.
---
templates/app-nolayers/angular/package.json | 2 +-
.../src/app/home/home.component.spec.ts | 30 ++++++---------
templates/app/angular/package.json | 4 +-
.../src/app/home/home.component.spec.ts | 37 ++++++++-----------
templates/module/angular/package.json | 2 +-
5 files changed, 30 insertions(+), 45 deletions(-)
diff --git a/templates/app-nolayers/angular/package.json b/templates/app-nolayers/angular/package.json
index 2ec6ed3912..faccdf181d 100644
--- a/templates/app-nolayers/angular/package.json
+++ b/templates/app-nolayers/angular/package.json
@@ -53,6 +53,6 @@
"eslint": "^8.0.0",
"jsdom": "^27.1.0",
"typescript": "~5.9.0",
- "vitest": "^4.0.8"
+ "vitest": "^4.0.0"
}
}
\ No newline at end of file
diff --git a/templates/app-nolayers/angular/src/app/home/home.component.spec.ts b/templates/app-nolayers/angular/src/app/home/home.component.spec.ts
index 0514873406..ea07d9ad36 100644
--- a/templates/app-nolayers/angular/src/app/home/home.component.spec.ts
+++ b/templates/app-nolayers/angular/src/app/home/home.component.spec.ts
@@ -3,20 +3,19 @@ import { ThemeSharedTestingModule } from '@abp/ng.theme.shared/testing';
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NgxValidateCoreModule } from '@ngx-validate/core';
import { HomeComponent } from './home.component';
-import { OAuthService } from 'angular-oauth2-oidc';
import { AuthService } from '@abp/ng.core';
import { vi } from 'vitest';
describe('HomeComponent', () => {
let fixture: ComponentFixture;
- const mockOAuthService = {
- hasValidAccessToken: vi.fn(),
- };
- const mockAuthService = {
- navigateToLogin: vi.fn(),
- };
+ let mockAuthService: { isAuthenticated: boolean; navigateToLogin: ReturnType };
beforeEach(async () => {
+ mockAuthService = {
+ isAuthenticated: false,
+ navigateToLogin: vi.fn(),
+ };
+
await TestBed.configureTestingModule({
imports: [
CoreTestingModule.withConfig(),
@@ -25,11 +24,6 @@ describe('HomeComponent', () => {
HomeComponent,
],
providers: [
- /* mock providers here */
- {
- provide: OAuthService,
- useValue: mockOAuthService,
- },
{
provide: AuthService,
useValue: mockAuthService,
@@ -38,23 +32,21 @@ describe('HomeComponent', () => {
}).compileComponents();
});
- beforeEach(() => {
+ it('should be initiated', () => {
fixture = TestBed.createComponent(HomeComponent);
fixture.detectChanges();
- });
-
- it('should be initiated', () => {
expect(fixture.componentInstance).toBeTruthy();
});
describe('when login state is true', () => {
- beforeAll(() => {
- mockOAuthService.hasValidAccessToken.mockReturnValue(true);
+ beforeEach(() => {
+ mockAuthService.isAuthenticated = true;
+ fixture = TestBed.createComponent(HomeComponent);
+ fixture.detectChanges();
});
it('hasLoggedIn should be true', () => {
expect(fixture.componentInstance.hasLoggedIn).toBe(true);
- expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled();
});
it('button should not be exists', () => {
diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json
index 9695146bd7..5d1824c650 100644
--- a/templates/app/angular/package.json
+++ b/templates/app/angular/package.json
@@ -53,6 +53,6 @@
"eslint": "^8.0.0",
"jsdom": "^27.1.0",
"typescript": "~5.9.3",
- "vitest": "^4.0.8"
+ "vitest": "^4.0.0"
}
-}
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/templates/app/angular/src/app/home/home.component.spec.ts b/templates/app/angular/src/app/home/home.component.spec.ts
index 49ee6cea57..4efbb17f0d 100644
--- a/templates/app/angular/src/app/home/home.component.spec.ts
+++ b/templates/app/angular/src/app/home/home.component.spec.ts
@@ -3,20 +3,19 @@ import { ThemeSharedTestingModule } from "@abp/ng.theme.shared/testing";
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { NgxValidateCoreModule } from "@ngx-validate/core";
import { HomeComponent } from "./home.component";
-import { OAuthService } from 'angular-oauth2-oidc';
import { AuthService } from '@abp/ng.core';
import { vi } from 'vitest';
describe("HomeComponent", () => {
let fixture: ComponentFixture;
- const mockOAuthService = {
- hasValidAccessToken: vi.fn()
- };
- const mockAuthService = {
- navigateToLogin: vi.fn()
- };
+ let mockAuthService: { isAuthenticated: boolean; navigateToLogin: ReturnType };
beforeEach(async () => {
+ mockAuthService = {
+ isAuthenticated: false,
+ navigateToLogin: vi.fn()
+ };
+
await TestBed.configureTestingModule({
imports: [
CoreTestingModule.withConfig(),
@@ -25,11 +24,6 @@ describe("HomeComponent", () => {
HomeComponent
],
providers: [
- /* mock providers here */
- {
- provide: OAuthService,
- useValue: mockOAuthService
- },
{
provide: AuthService,
useValue: mockAuthService
@@ -38,23 +32,21 @@ describe("HomeComponent", () => {
}).compileComponents();
});
- beforeEach(() => {
+ it("should be initiated", () => {
fixture = TestBed.createComponent(HomeComponent);
fixture.detectChanges();
- });
-
- it("should be initiated", () => {
expect(fixture.componentInstance).toBeTruthy();
});
describe('when login state is true', () => {
- beforeAll(() => {
- mockOAuthService.hasValidAccessToken.mockReturnValue(true);
+ beforeEach(() => {
+ mockAuthService.isAuthenticated = true;
+ fixture = TestBed.createComponent(HomeComponent);
+ fixture.detectChanges();
});
it("hasLoggedIn should be true", () => {
expect(fixture.componentInstance.hasLoggedIn).toBe(true);
- expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled();
});
it("button should not be exists", () => {
@@ -65,13 +57,14 @@ describe("HomeComponent", () => {
});
describe('when login state is false', () => {
- beforeAll(() => {
- mockOAuthService.hasValidAccessToken.mockReturnValue(false);
+ beforeEach(() => {
+ mockAuthService.isAuthenticated = false;
+ fixture = TestBed.createComponent(HomeComponent);
+ fixture.detectChanges();
});
it("hasLoggedIn should be false", () => {
expect(fixture.componentInstance.hasLoggedIn).toBe(false);
- expect(mockOAuthService.hasValidAccessToken).toHaveBeenCalled();
});
it("button should be exists", () => {
diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json
index 6b341274b0..ffd08c8eec 100644
--- a/templates/module/angular/package.json
+++ b/templates/module/angular/package.json
@@ -55,6 +55,6 @@
"ng-packagr": "~21.0.0",
"symlink": "^2.0.0",
"typescript": "~5.9.0",
- "vitest": "^4.0.8"
+ "vitest": "^4.0.0"
}
}
\ No newline at end of file
From f0ab3fd782e13bffcedb0b659b486cae4fdf9e8b Mon Sep 17 00:00:00 2001
From: selman koc <64414348+skoc10@users.noreply.github.com>
Date: Tue, 17 Feb 2026 09:56:05 +0300
Subject: [PATCH 05/17] Update version to release 10.1.0
---
common.props | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/common.props b/common.props
index 5da5fa0900..1ca5b1927f 100644
--- a/common.props
+++ b/common.props
@@ -1,8 +1,8 @@
latest
- 10.1.0-rc.3
- 5.1.0-rc.3
+ 10.1.0
+ 5.1.0
$(NoWarn);CS1591;CS0436
https://abp.io/assets/abp_nupkg.png
https://abp.io/
From c5f483849b83f7851abcb711ff642400c100fbf2 Mon Sep 17 00:00:00 2001
From: voloagent
Date: Tue, 17 Feb 2026 11:09:33 +0300
Subject: [PATCH 06/17] Update_NPM_Packages
---
.../package.json | 6 +-
.../yarn.lock | 264 ++++++------
.../package.json | 4 +-
.../yarn.lock | 268 ++++++------
.../app/Volo.BloggingTestApp/package.json | 4 +-
.../app/Volo.BloggingTestApp/yarn.lock | 306 +++++++-------
.../Volo.ClientSimulation.Demo/package.json | 2 +-
.../demo/Volo.ClientSimulation.Demo/yarn.lock | 240 +++++------
modules/cms-kit/angular/package.json | 10 +-
.../angular/projects/cms-kit/package.json | 4 +-
.../Volo.CmsKit.IdentityServer/package.json | 2 +-
.../host/Volo.CmsKit.IdentityServer/yarn.lock | 240 +++++------
.../host/Volo.CmsKit.Web.Host/package.json | 2 +-
.../host/Volo.CmsKit.Web.Host/yarn.lock | 240 +++++------
.../host/Volo.CmsKit.Web.Unified/package.json | 4 +-
.../host/Volo.CmsKit.Web.Unified/yarn.lock | 392 +++++++++---------
modules/docs/app/VoloDocs.Web/package.json | 4 +-
modules/docs/app/VoloDocs.Web/yarn.lock | 306 +++++++-------
.../app/OpenIddict.Demo.Server/package.json | 2 +-
modules/openiddict/app/angular/package.json | 20 +-
.../package.json | 2 +-
.../yarn.lock | 240 +++++------
.../virtual-file-explorer/app/package.json | 4 +-
npm/lerna.json | 2 +-
npm/ng-packs/package.json | 4 +-
.../packages/account-core/package.json | 6 +-
npm/ng-packs/packages/account/package.json | 6 +-
npm/ng-packs/packages/components/package.json | 6 +-
npm/ng-packs/packages/core/package.json | 4 +-
.../packages/feature-management/package.json | 4 +-
npm/ng-packs/packages/generators/package.json | 2 +-
npm/ng-packs/packages/identity/package.json | 8 +-
npm/ng-packs/packages/oauth/package.json | 6 +-
.../permission-management/package.json | 4 +-
npm/ng-packs/packages/schematics/package.json | 2 +-
.../packages/setting-management/package.json | 6 +-
.../packages/tenant-management/package.json | 6 +-
.../packages/theme-basic/package.json | 6 +-
.../packages/theme-shared/package.json | 4 +-
npm/packs/anchor-js/package.json | 4 +-
.../package.json | 4 +-
.../package.json | 6 +-
.../package.json | 4 +-
.../package.json | 32 +-
npm/packs/aspnetcore.mvc.ui/package-lock.json | 2 +-
npm/packs/aspnetcore.mvc.ui/package.json | 2 +-
npm/packs/blogging/package.json | 10 +-
npm/packs/bootstrap-datepicker/package.json | 2 +-
.../bootstrap-daterangepicker/package.json | 2 +-
npm/packs/bootstrap/package.json | 4 +-
npm/packs/chart.js/package.json | 2 +-
npm/packs/clipboard/package.json | 4 +-
npm/packs/cms-kit.admin/package.json | 14 +-
npm/packs/cms-kit.public/package.json | 6 +-
npm/packs/cms-kit/package.json | 6 +-
npm/packs/codemirror/package.json | 4 +-
npm/packs/core/package.json | 4 +-
npm/packs/cropperjs/package.json | 4 +-
npm/packs/datatables.net-bs4/package.json | 4 +-
npm/packs/datatables.net-bs5/package.json | 4 +-
npm/packs/datatables.net/package.json | 4 +-
npm/packs/docs/package.json | 12 +-
npm/packs/flag-icon-css/package.json | 2 +-
npm/packs/flag-icons/package.json | 2 +-
npm/packs/font-awesome/package.json | 4 +-
npm/packs/highlight.js/package.json | 4 +-
npm/packs/jquery-form/package.json | 4 +-
.../package.json | 4 +-
npm/packs/jquery-validation/package.json | 4 +-
npm/packs/jquery/package.json | 4 +-
npm/packs/jstree/package.json | 4 +-
npm/packs/lodash/package.json | 4 +-
npm/packs/luxon/package.json | 4 +-
.../package.json | 4 +-
npm/packs/markdown-it/package.json | 4 +-
npm/packs/moment/package.json | 2 +-
npm/packs/owl.carousel/package.json | 4 +-
npm/packs/popper.js/package.json | 4 +-
npm/packs/prismjs/package.json | 6 +-
npm/packs/qrcode/package.json | 4 +-
npm/packs/select2/package.json | 4 +-
npm/packs/signalr/package.json | 4 +-
npm/packs/slugify/package.json | 2 +-
npm/packs/star-rating-svg/package.json | 4 +-
npm/packs/sweetalert2/package.json | 4 +-
npm/packs/timeago/package.json | 4 +-
npm/packs/toastr/package.json | 4 +-
npm/packs/tui-editor/package.json | 6 +-
npm/packs/uppy/package.json | 4 +-
npm/packs/utils/package.json | 2 +-
npm/packs/vee-validate/package.json | 4 +-
npm/packs/virtual-file-explorer/package.json | 6 +-
npm/packs/vue/package.json | 2 +-
npm/packs/zxcvbn/package.json | 4 +-
.../Volo.Abp.Account.SourceCode.zip | Bin 232791 -> 232750 bytes
.../Volo.Abp.AuditLogging.SourceCode.zip | Bin 114116 -> 114087 bytes
.../Volo.Abp.BackgroundJobs.SourceCode.zip | Bin 68389 -> 68329 bytes
...lo.Abp.BlobStoring.Database.SourceCode.zip | Bin 69080 -> 69048 bytes
.../Volo.Abp.FeatureManagement.SourceCode.zip | Bin 196042 -> 195975 bytes
.../Volo.Abp.Identity.SourceCode.zip | Bin 474192 -> 474112 bytes
.../Volo.Abp.IdentityServer.SourceCode.zip | Bin 167236 -> 167192 bytes
.../Volo.Abp.OpenIddict.SourceCode.zip | Bin 2273460 -> 2273384 bytes
...lo.Abp.PermissionManagement.SourceCode.zip | Bin 266500 -> 266448 bytes
.../Volo.Abp.SettingManagement.SourceCode.zip | Bin 251266 -> 251184 bytes
.../Volo.Abp.TenantManagement.SourceCode.zip | Bin 171192 -> 171124 bytes
.../Volo.Abp.Users.SourceCode.zip | Bin 32191 -> 32166 bytes
...olo.Abp.VirtualFileExplorer.SourceCode.zip | Bin 22391545 -> 22388296 bytes
.../Volo.Blogging.SourceCode.zip | Bin 404716 -> 404611 bytes
.../Volo.CmsKit.SourceCode.zip | Bin 1385010 -> 1384897 bytes
.../Volo.Docs.SourceCode.zip | Bin 697465 -> 697359 bytes
templates/app-nolayers/angular/package.json | 20 +-
.../package.json | 4 +-
.../package.json | 4 +-
.../Server.Mongo/package.json | 2 +-
.../Server/package.json | 2 +-
.../package.json | 2 +-
.../package.json | 2 +-
.../package.json | 2 +-
.../package.json | 2 +-
templates/app/angular/package.json | 20 +-
.../package.json | 2 +-
.../package.json | 4 +-
.../package.json | 4 +-
.../package.json | 4 +-
.../package.json | 4 +-
.../package.json | 2 +-
.../package.json | 2 +-
.../package.json | 2 +-
templates/module/angular/package.json | 20 +-
.../projects/my-project-name/package.json | 4 +-
.../package.json | 2 +-
.../package.json | 4 +-
.../package.json | 2 +-
.../package.json | 2 +-
134 files changed, 1511 insertions(+), 1511 deletions(-)
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 9c2b3ac04d..d787d89173 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": "~10.1.0-rc.3",
- "@abp/prismjs": "~10.1.0-rc.3",
- "@abp/highlight.js": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~10.1.0",
+ "@abp/prismjs": "~10.1.0",
+ "@abp/highlight.js": "~10.1.0"
}
}
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 f5be1c3005..ba0eed3a53 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0-rc.3.tgz#bdadf4926a272058de066f15e4c97ee665ac0e0b"
- integrity sha512-wCUkrWSzvm6uCABYBc9xUSgcaZK065ZcrmfinFgyv0bN2I1SrUlbwhezV5nvB+4XmNWj/UYUQa/8PyTSh4k7xA==
+"@abp/clipboard@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0.tgz#a59b14370b99fd7df447250b293fd7ac3f8c1a51"
+ integrity sha512-OulNwy9vhASO8TJ+m0ql6/iXNflE59oGUNAW+qzcaxaazre1mVPahPMBoLSVuOAGtAjLZAN4SWCOC5r3tLt9pA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
clipboard "^2.0.11"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/highlight.js@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.1.0-rc.3.tgz#ee8aa3ec9144eea269257ad072b428c7d1e739ed"
- integrity sha512-BM5cXKUkVnBmVW2GPXAVjppBAtvoHcjSe/0N/iHhwTxJItnQlqrrzNRPpQo+fNBsARBrxJ18amCGO5aWygZVbg==
+"@abp/highlight.js@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.1.0.tgz#b0a798ccdd71b437710978d1ced794c178de6b7c"
+ integrity sha512-kyDjTkLwkDEBY0jqpPf5KmZWmzJQPsPto4TidX9GG7U8e+biFK4MF/gtPUjjFs9POTQ585AKfk0U/xDjhr42qg==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@highlightjs/cdn-assets" "~11.11.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/prismjs@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0-rc.3.tgz#6d02feb6ed04f3aa3a02512fdbf6e83d2d34960b"
- integrity sha512-sm6/08J/FqCRuipd3ZqpnG0LYJbI1QfC2dnIPC870Lkq8K6bt6WgRIB6Y+Aifb5PX17v2+YmUwn8bquOZlxwWw==
+"@abp/prismjs@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0.tgz#632e06b47a9ac11d0131d06a270b97292266df47"
+ integrity sha512-iqXB3bgrlXDyfuFr23R2JtfN0Ij3ai81KkWM3oc3QikKaCwAHtiU0ZvshRlL9y3YfwjlNpYYFLE4en2xx1xThQ==
dependencies:
- "@abp/clipboard" "~10.1.0-rc.3"
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/clipboard" "~10.1.0"
+ "@abp/core" "~10.1.0"
prismjs "^1.30.0"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 46d9131f8d..ed8ec8cb2a 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": "~10.1.0-rc.3",
- "@abp/prismjs": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0",
+ "@abp/prismjs": "~10.1.0"
},
"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 82105203ad..cf3f814ae9 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0-rc.3.tgz#bdadf4926a272058de066f15e4c97ee665ac0e0b"
- integrity sha512-wCUkrWSzvm6uCABYBc9xUSgcaZK065ZcrmfinFgyv0bN2I1SrUlbwhezV5nvB+4XmNWj/UYUQa/8PyTSh4k7xA==
+"@abp/clipboard@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0.tgz#a59b14370b99fd7df447250b293fd7ac3f8c1a51"
+ integrity sha512-OulNwy9vhASO8TJ+m0ql6/iXNflE59oGUNAW+qzcaxaazre1mVPahPMBoLSVuOAGtAjLZAN4SWCOC5r3tLt9pA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
clipboard "^2.0.11"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/prismjs@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0-rc.3.tgz#6d02feb6ed04f3aa3a02512fdbf6e83d2d34960b"
- integrity sha512-sm6/08J/FqCRuipd3ZqpnG0LYJbI1QfC2dnIPC870Lkq8K6bt6WgRIB6Y+Aifb5PX17v2+YmUwn8bquOZlxwWw==
+"@abp/prismjs@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0.tgz#632e06b47a9ac11d0131d06a270b97292266df47"
+ integrity sha512-iqXB3bgrlXDyfuFr23R2JtfN0Ij3ai81KkWM3oc3QikKaCwAHtiU0ZvshRlL9y3YfwjlNpYYFLE4en2xx1xThQ==
dependencies:
- "@abp/clipboard" "~10.1.0-rc.3"
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/clipboard" "~10.1.0"
+ "@abp/core" "~10.1.0"
prismjs "^1.30.0"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 45803bb4ec..283e915f7e 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": "~10.1.0-rc.3",
- "@abp/blogging": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0",
+ "@abp/blogging": "~10.1.0"
}
}
diff --git a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
index 61d4d17b76..edbedf007e 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/blogging@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-10.1.0-rc.3.tgz#6cf3ab60d6cc4f3b5587df8d3420ffe8384815ce"
- integrity sha512-UOqA9N0QelAINNbtLS71jVUYLi1O3CzsuGNo1kxkA57A2YpDoJ2ntaoqrvk7pNg8MupQkkEZPysmQUlDNsv43w==
+"@abp/blogging@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-10.1.0.tgz#681170a3d27e3726decf60a924e3d9375c77de6b"
+ integrity sha512-2Dox5XI0EoDigy6cV7GOOFZuN8wpEh5ADjiwMDTpOm0MlHuWUjLdXiHzIogtb/JowxL14SUiUEhendInJ6+eAQ==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
- "@abp/owl.carousel" "~10.1.0-rc.3"
- "@abp/prismjs" "~10.1.0-rc.3"
- "@abp/tui-editor" "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
+ "@abp/owl.carousel" "~10.1.0"
+ "@abp/prismjs" "~10.1.0"
+ "@abp/tui-editor" "~10.1.0"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0-rc.3.tgz#bdadf4926a272058de066f15e4c97ee665ac0e0b"
- integrity sha512-wCUkrWSzvm6uCABYBc9xUSgcaZK065ZcrmfinFgyv0bN2I1SrUlbwhezV5nvB+4XmNWj/UYUQa/8PyTSh4k7xA==
+"@abp/clipboard@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0.tgz#a59b14370b99fd7df447250b293fd7ac3f8c1a51"
+ integrity sha512-OulNwy9vhASO8TJ+m0ql6/iXNflE59oGUNAW+qzcaxaazre1mVPahPMBoLSVuOAGtAjLZAN4SWCOC5r3tLt9pA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
clipboard "^2.0.11"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/owl.carousel@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-10.1.0-rc.3.tgz#676cf71014551e00ecfa9797a335016d673b8675"
- integrity sha512-mfZSIjyTaCzcJHUCSnG7ztvUu2e+cc2RSvfH/sSXSRDnQ7mW1fvlEDS97obXSKnfE8pQI+JEB9pTPcij9qKEbA==
+"@abp/owl.carousel@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-10.1.0.tgz#dd2138b9381626628fcb719c7f9ea9ea343268f7"
+ integrity sha512-apJpF1/tCca6Xw0j/9UOHhvXth7a3q1sWRQpVd2450MwSCFTjU11ODLnHYxDNe2uLvqwAvolANOYfBpWmWpYOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
owl.carousel "^2.3.4"
-"@abp/prismjs@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0-rc.3.tgz#6d02feb6ed04f3aa3a02512fdbf6e83d2d34960b"
- integrity sha512-sm6/08J/FqCRuipd3ZqpnG0LYJbI1QfC2dnIPC870Lkq8K6bt6WgRIB6Y+Aifb5PX17v2+YmUwn8bquOZlxwWw==
+"@abp/prismjs@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0.tgz#632e06b47a9ac11d0131d06a270b97292266df47"
+ integrity sha512-iqXB3bgrlXDyfuFr23R2JtfN0Ij3ai81KkWM3oc3QikKaCwAHtiU0ZvshRlL9y3YfwjlNpYYFLE4en2xx1xThQ==
dependencies:
- "@abp/clipboard" "~10.1.0-rc.3"
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/clipboard" "~10.1.0"
+ "@abp/core" "~10.1.0"
prismjs "^1.30.0"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/tui-editor@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.1.0-rc.3.tgz#b69dfe1bfd0a6516fdc5edc387a21e37720c21a5"
- integrity sha512-ueraSHQFecdSIfSAwTEQrDFJ9JWZYcMLyQI092aerJC2Id+ycBjabxyb/rhpNvJ0dUS2myc0w94sttq231439g==
+"@abp/tui-editor@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.1.0.tgz#3f0556f918a239da9c048bf96f7c6703cff1f796"
+ integrity sha512-cIpNiIvxkUUzk9TnyhP3wBcsrCcgTFOlqhRWowyq9Kt7iVqoKb6vkCflxKt1oxkLZVBI7qOJGx2o5KmSYFcWiQ==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
- "@abp/prismjs" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
+ "@abp/prismjs" "~10.1.0"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 ff92c7d9c9..647abdc641 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": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0"
}
}
diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
index b04d107656..1910c85cf1 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/cms-kit/angular/package.json b/modules/cms-kit/angular/package.json
index fb2f81fdf3..530ccee465 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": "~10.1.0-rc.3",
- "@abp/ng.identity": "~10.1.0-rc.3",
- "@abp/ng.setting-management": "~10.1.0-rc.3",
- "@abp/ng.tenant-management": "~10.1.0-rc.3",
- "@abp/ng.theme.basic": "~10.1.0-rc.3",
+ "@abp/ng.account": "~10.1.0",
+ "@abp/ng.identity": "~10.1.0",
+ "@abp/ng.setting-management": "~10.1.0",
+ "@abp/ng.tenant-management": "~10.1.0",
+ "@abp/ng.theme.basic": "~10.1.0",
"@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 020dfacaf2..b3c89721dd 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": ">=10.1.0-rc.3",
- "@abp/ng.theme.shared": ">=10.1.0-rc.3"
+ "@abp/ng.core": ">=10.1.0",
+ "@abp/ng.theme.shared": ">=10.1.0"
},
"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 f6d516f31b..0a69024f15 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": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0"
}
}
diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
index b04d107656..1910c85cf1 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 4fb0215c8d..e544c427a0 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": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0"
}
}
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 b04d107656..1910c85cf1 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 2496a83f84..a73a3b9523 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": "~10.1.0-rc.3",
- "@abp/cms-kit": "10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0",
+ "@abp/cms-kit": "10.1.0"
}
}
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 dd464e071f..e4a8c88818 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0-rc.3.tgz#bdadf4926a272058de066f15e4c97ee665ac0e0b"
- integrity sha512-wCUkrWSzvm6uCABYBc9xUSgcaZK065ZcrmfinFgyv0bN2I1SrUlbwhezV5nvB+4XmNWj/UYUQa/8PyTSh4k7xA==
+"@abp/clipboard@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0.tgz#a59b14370b99fd7df447250b293fd7ac3f8c1a51"
+ integrity sha512-OulNwy9vhASO8TJ+m0ql6/iXNflE59oGUNAW+qzcaxaazre1mVPahPMBoLSVuOAGtAjLZAN4SWCOC5r3tLt9pA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
clipboard "^2.0.11"
-"@abp/cms-kit.admin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-10.1.0-rc.3.tgz#6359425ff718f5244ff9babcfdb1b4d78d7d765d"
- integrity sha512-Poj6OtpNPWCOmixaXbiAoLAYJr1aaFYuIcAO/0rA68cbsSHJe+rEWkmQ9YsGqT6Rf1K/ABGB0sgvXb1sjtrA0g==
+"@abp/cms-kit.admin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-10.1.0.tgz#4dda82b946ad9b94ffdeb12f399ec3294dbf5dc2"
+ integrity sha512-edWNeHnwPb9ZlV+EIcASAOXk/gJxekDEC5X2R6Mx5m9zq2oq4yoJj5/ZBlvekxnm6CRgXhUn3RYX4+h9qExTzQ==
dependencies:
- "@abp/codemirror" "~10.1.0-rc.3"
- "@abp/jstree" "~10.1.0-rc.3"
- "@abp/markdown-it" "~10.1.0-rc.3"
- "@abp/slugify" "~10.1.0-rc.3"
- "@abp/tui-editor" "~10.1.0-rc.3"
- "@abp/uppy" "~10.1.0-rc.3"
+ "@abp/codemirror" "~10.1.0"
+ "@abp/jstree" "~10.1.0"
+ "@abp/markdown-it" "~10.1.0"
+ "@abp/slugify" "~10.1.0"
+ "@abp/tui-editor" "~10.1.0"
+ "@abp/uppy" "~10.1.0"
-"@abp/cms-kit.public@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-10.1.0-rc.3.tgz#bba2631ea3e8ed676c5d0dc53c59b2739c498451"
- integrity sha512-chrTiCUYrYTd6kgb5ONBdkddceBXrKenIhnzyPIYI1J2Uk7ZjXsuabplVpfYCcauDC2kauRorX+X/Tkwmfie1A==
+"@abp/cms-kit.public@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-10.1.0.tgz#ad84ccfe4508a64c62e628392f9c317e49a6bec4"
+ integrity sha512-6bLdv75EaRS1R08tHITXmO805u84EHG32IczgcWKzewaloUeYJear1Gucezt0SpVOzAHW9fkHzC9LAnQM+8nVQ==
dependencies:
- "@abp/highlight.js" "~10.1.0-rc.3"
- "@abp/star-rating-svg" "~10.1.0-rc.3"
+ "@abp/highlight.js" "~10.1.0"
+ "@abp/star-rating-svg" "~10.1.0"
-"@abp/cms-kit@10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-10.1.0-rc.3.tgz#490c6a931fd01dddd26148acc045b54bf9116af7"
- integrity sha512-0t7xzokVAsimIJ5NZjjffyPWqjXtTXd/MUJezrRlIPOHuvmIlN2lYerCHCEe3kpTUWYzC1tEdCLrCIWJ3KXqqw==
+"@abp/cms-kit@10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-10.1.0.tgz#3af788dd38de56bbdf10ca6a7bd6d0a15da098a8"
+ integrity sha512-qzJ5EJCR8/OnlyTRqkaDZjuxi7Vzm65zDIWQ6mvGp6c5a3UuIN40DOU9glT9QC4MyA5+/1vMBUJK+ad5G0eKHA==
dependencies:
- "@abp/cms-kit.admin" "~10.1.0-rc.3"
- "@abp/cms-kit.public" "~10.1.0-rc.3"
+ "@abp/cms-kit.admin" "~10.1.0"
+ "@abp/cms-kit.public" "~10.1.0"
-"@abp/codemirror@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-10.1.0-rc.3.tgz#c32d8746514cb16fa297c3b9216964cb4373e259"
- integrity sha512-lQOh7bDTAHrzLlweplxeZ/6UT4zQgO11YQmw0rRSFmR/NjIjovY+tH0O3RX/H4VgmNKFs00TF6xueJo1KpW7QA==
+"@abp/codemirror@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-10.1.0.tgz#3fdc99c1e19af844b4737b49ec8deda7db346148"
+ integrity sha512-zkFLXyqGV6aksiFbkVQQFceRt7YirLB/LtY6njn+eMMlXMLHsQxX8G3p5xVSUj+Mr+HWcZ4sHDwIebiV29dvLg==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
codemirror "^5.65.1"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/highlight.js@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.1.0-rc.3.tgz#ee8aa3ec9144eea269257ad072b428c7d1e739ed"
- integrity sha512-BM5cXKUkVnBmVW2GPXAVjppBAtvoHcjSe/0N/iHhwTxJItnQlqrrzNRPpQo+fNBsARBrxJ18amCGO5aWygZVbg==
+"@abp/highlight.js@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.1.0.tgz#b0a798ccdd71b437710978d1ced794c178de6b7c"
+ integrity sha512-kyDjTkLwkDEBY0jqpPf5KmZWmzJQPsPto4TidX9GG7U8e+biFK4MF/gtPUjjFs9POTQ585AKfk0U/xDjhr42qg==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@highlightjs/cdn-assets" "~11.11.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/jstree@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-10.1.0-rc.3.tgz#68effa7058d8bd95bbb36790cc79ef85239acacf"
- integrity sha512-Krt0Fv7jsjflwYSQroE0twmWMfb3e4m6zs3HJX7zou2EJRZteAUC0SAkBjArnbSstsCj8j1yRTxGJZLusJnrnw==
+"@abp/jstree@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-10.1.0.tgz#479c59a97f5a1dda4f035207dde5023005b6f8b4"
+ integrity sha512-4gu433xPpxTysA/oe11dbRG1/3Oa76ABThlD4UPA40Ep7k/I6PzHbQGRhUrzm2ygvAboTiApFXW1gj4uk3oq/w==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jstree "^3.3.17"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/markdown-it@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-10.1.0-rc.3.tgz#976b86e85a36c3f967f33d381c5c7052fa45d5b9"
- integrity sha512-F89fBsPoPu59xczRHnR9GtbR63YS8tTfW78N4JK9XK8fxLpUowcx1TNc+mA+R1eyxvYuJqj26abiobOiypA8cA==
+"@abp/markdown-it@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-10.1.0.tgz#a768c084091dda85d78a9269de31fdbb54431c62"
+ integrity sha512-vjcTEuC367p2prqJ8/jVni4zZN/Bb+UU5K1JHbgEub3Z9MGNmJvZli95vdiROTm/Pq2pw1BFOERquDb7qolybg==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
markdown-it "^14.1.0"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/prismjs@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0-rc.3.tgz#6d02feb6ed04f3aa3a02512fdbf6e83d2d34960b"
- integrity sha512-sm6/08J/FqCRuipd3ZqpnG0LYJbI1QfC2dnIPC870Lkq8K6bt6WgRIB6Y+Aifb5PX17v2+YmUwn8bquOZlxwWw==
+"@abp/prismjs@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0.tgz#632e06b47a9ac11d0131d06a270b97292266df47"
+ integrity sha512-iqXB3bgrlXDyfuFr23R2JtfN0Ij3ai81KkWM3oc3QikKaCwAHtiU0ZvshRlL9y3YfwjlNpYYFLE4en2xx1xThQ==
dependencies:
- "@abp/clipboard" "~10.1.0-rc.3"
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/clipboard" "~10.1.0"
+ "@abp/core" "~10.1.0"
prismjs "^1.30.0"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/slugify@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-10.1.0-rc.3.tgz#2ea762267cdd0fdc0c4d2c923ec8dd393ebe268b"
- integrity sha512-65y4aa/3ku1GVGMZOj51BdVbPNgx3eTLvAfJ5EDIeQRiD/qXoqA9GGxe1RiydhBS8I79QNUGwVLRZ9SW2h/Ieg==
+"@abp/slugify@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-10.1.0.tgz#779cacb32f389acb9563ae562aaf29d1049a02cf"
+ integrity sha512-W7F6jimH1iuWc1zzn9nZlylimFtW6lGMuj0KEzkmhxkthapqm1VDaY43HaV6wCvZGEQG7scAQbzY3VvJ8WA/tw==
dependencies:
slugify "^1.6.6"
-"@abp/star-rating-svg@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-10.1.0-rc.3.tgz#dea9dabef76d65ac0ec41be0499a0612f35e178b"
- integrity sha512-XYb0UfJSp4yim58xg5gyVK3uVdHDV2aKWBso2i/hKDLDx7nKQi1g2pKbyVdO2gS+xpcZSJ7KU51q9M2jotU8jw==
+"@abp/star-rating-svg@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-10.1.0.tgz#f8a2cc268adf31979dbd8bb4900613be74f7abf7"
+ integrity sha512-AmHKEbVZNZALhRaFHaGweBcp/lyBLTr8Br5hemGRcFm9tyYtnkPrhY7a/By59gjttOYAFHjqa+scs5HP7unCfg==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
star-rating-svg "^3.5.0"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/tui-editor@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.1.0-rc.3.tgz#b69dfe1bfd0a6516fdc5edc387a21e37720c21a5"
- integrity sha512-ueraSHQFecdSIfSAwTEQrDFJ9JWZYcMLyQI092aerJC2Id+ycBjabxyb/rhpNvJ0dUS2myc0w94sttq231439g==
+"@abp/tui-editor@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.1.0.tgz#3f0556f918a239da9c048bf96f7c6703cff1f796"
+ integrity sha512-cIpNiIvxkUUzk9TnyhP3wBcsrCcgTFOlqhRWowyq9Kt7iVqoKb6vkCflxKt1oxkLZVBI7qOJGx2o5KmSYFcWiQ==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
- "@abp/prismjs" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
+ "@abp/prismjs" "~10.1.0"
-"@abp/uppy@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-10.1.0-rc.3.tgz#757e1efc4e441e07ddc4d90b82dde6806f1e0d18"
- integrity sha512-OIQRN+CYdQZ+dKFPDRf1bojswyB0p8awMUb0PUBhQaQDg+PEWJ6BiPL1qCtzoeVFLVUEk5jX5MpCet2yCc81XA==
+"@abp/uppy@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-10.1.0.tgz#8a78ee9c95432be60aa076d84fc7d801df89ae3f"
+ integrity sha512-9ySUpG/TBMQDDA7G15tkQl25XRqTjI0diUzETmk7mgnv2MonEJHmBQ8GlGuSBVyvx2Ie7Oq5D8P2uHjrwsA76w==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
uppy "^5.1.2"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 295c97c209..d021405fe4 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": "~10.1.0-rc.3",
- "@abp/docs": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0",
+ "@abp/docs": "~10.1.0"
}
}
diff --git a/modules/docs/app/VoloDocs.Web/yarn.lock b/modules/docs/app/VoloDocs.Web/yarn.lock
index 7f7dc1e096..888fc2dd90 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-10.1.0-rc.3.tgz#f7f9e396273908ea1cfcc66b8ef28b13d1a3cf2f"
- integrity sha512-rqHsZl3D6rFcRVTtnEBuxM089ioWqTn/L1lKID0XkYNkgm7OIVSXM4AmkC76yKxSZyATllwHKt8+zTMx1ltefg==
+"@abp/anchor-js@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-10.1.0.tgz#c0032fde0d2cd94824bba8042eb4fe3dbbd3ff0c"
+ integrity sha512-mVDGemNe2uiwgjGR5YgGQBy11zTNu9dm1W/PEGXbW1rQ3Ba5OAJknhdrcoCBnsfvYnSL4XLoJKKI+ZqqWDHSxw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
anchor-js "^5.0.0"
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0-rc.3.tgz#bdadf4926a272058de066f15e4c97ee665ac0e0b"
- integrity sha512-wCUkrWSzvm6uCABYBc9xUSgcaZK065ZcrmfinFgyv0bN2I1SrUlbwhezV5nvB+4XmNWj/UYUQa/8PyTSh4k7xA==
+"@abp/clipboard@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.1.0.tgz#a59b14370b99fd7df447250b293fd7ac3f8c1a51"
+ integrity sha512-OulNwy9vhASO8TJ+m0ql6/iXNflE59oGUNAW+qzcaxaazre1mVPahPMBoLSVuOAGtAjLZAN4SWCOC5r3tLt9pA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
clipboard "^2.0.11"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/docs@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-10.1.0-rc.3.tgz#8d6b6e21b1bb2e8100a7892abef9b32c43d14aa2"
- integrity sha512-xVWv+88+SRkPfqIg2gKmgIUcCrwqsZaMLkhsOUfYjaDM7jz8uixLvaqPtpv5MDLI8NxsrqVfTZUsBKOaieB1sA==
+"@abp/docs@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-10.1.0.tgz#6235c4ae843871b4679067e9f8d72ac595aa6bab"
+ integrity sha512-kZxdYAVC8uMK54QHEm7tIK9akd1AMnWpj9p7l9/9QpfMzm2Hg/nXxAzC8FVS8C6MyfwVbX9M3eqhI7lY4bw/Jg==
dependencies:
- "@abp/anchor-js" "~10.1.0-rc.3"
- "@abp/clipboard" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/popper.js" "~10.1.0-rc.3"
- "@abp/prismjs" "~10.1.0-rc.3"
+ "@abp/anchor-js" "~10.1.0"
+ "@abp/clipboard" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/popper.js" "~10.1.0"
+ "@abp/prismjs" "~10.1.0"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.1.0-rc.3.tgz#37903e8ed5bd38881ce79cc0c350002f424d1181"
- integrity sha512-8Vg/TqIrh8faXUTmvYxMsgKT9zLUJ4LmWWhg09c327qHlkDGLREEToMkKAGMRLJZ5ELyM8wsHyAqCnv+qS9tZw==
+"@abp/popper.js@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.1.0.tgz#dac1a4ef2860059681d5b317af923ff38bfbcb3a"
+ integrity sha512-/u6rcCQzR1OMmaRyCjJVw1YRBXTAzySL3X2SJ4/OMnW3IYUSTode1IwZyf1OIKQPJ9IGg99RS5MVG/3JVV/trA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@popperjs/core" "^2.11.8"
-"@abp/prismjs@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0-rc.3.tgz#6d02feb6ed04f3aa3a02512fdbf6e83d2d34960b"
- integrity sha512-sm6/08J/FqCRuipd3ZqpnG0LYJbI1QfC2dnIPC870Lkq8K6bt6WgRIB6Y+Aifb5PX17v2+YmUwn8bquOZlxwWw==
+"@abp/prismjs@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.1.0.tgz#632e06b47a9ac11d0131d06a270b97292266df47"
+ integrity sha512-iqXB3bgrlXDyfuFr23R2JtfN0Ij3ai81KkWM3oc3QikKaCwAHtiU0ZvshRlL9y3YfwjlNpYYFLE4en2xx1xThQ==
dependencies:
- "@abp/clipboard" "~10.1.0-rc.3"
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/clipboard" "~10.1.0"
+ "@abp/core" "~10.1.0"
prismjs "^1.30.0"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/package.json b/modules/openiddict/app/OpenIddict.Demo.Server/package.json
index 4fb0215c8d..e544c427a0 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": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0"
}
}
diff --git a/modules/openiddict/app/angular/package.json b/modules/openiddict/app/angular/package.json
index 7635e7023f..b36953bf65 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": "~10.1.0-rc.3",
- "@abp/ng.components": "~10.1.0-rc.3",
- "@abp/ng.core": "~10.1.0-rc.3",
- "@abp/ng.oauth": "~10.1.0-rc.3",
- "@abp/ng.identity": "~10.1.0-rc.3",
- "@abp/ng.setting-management": "~10.1.0-rc.3",
- "@abp/ng.tenant-management": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
- "@abp/ng.theme.lepton-x": "~5.1.0-rc.3",
+ "@abp/ng.account": "~10.1.0",
+ "@abp/ng.components": "~10.1.0",
+ "@abp/ng.core": "~10.1.0",
+ "@abp/ng.oauth": "~10.1.0",
+ "@abp/ng.identity": "~10.1.0",
+ "@abp/ng.setting-management": "~10.1.0",
+ "@abp/ng.tenant-management": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
+ "@abp/ng.theme.lepton-x": "~5.1.0",
"@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": "~10.1.0-rc.3",
+ "@abp/ng.schematics": "~10.1.0",
"@angular-devkit/build-angular": "^15.0.1",
"@angular-eslint/builder": "~15.1.0",
"@angular-eslint/eslint-plugin": "~15.1.0",
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 8a89fca098..fa6daf88f1 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": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0"
}
}
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 b04d107656..1910c85cf1 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@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0-rc.3.tgz#6bdb05f5217213b153fbad5b063d93fd9ddd0bfc"
- integrity sha512-ZEli/vfsEtDjZmtDdPrSUUab0FSUGQFnpuMUBvFP8re1RcUS3HeaZYqKsOQbjUleyC8eb9gwwD7fHoFw86s6RA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.1.0.tgz#94f68982ce8b67b6ac827f824aed3faad50e56e9"
+ integrity sha512-wqbEANW8CRZ+/7qGNprC828yNN17TsYtFxywL0B+EA2UfUtcTpzR/3ompZd/XcDm3N2NmS1n5Ao3WEn2NJlHgA==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.1.0"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0-rc.3.tgz#aecad44c173c073ff9bc9fadd78618ab6cebc460"
- integrity sha512-4heShBsSL3IGW63hnvJlcLbnT5VVl6SQx8Du54YZ2YzWTKdWm2ToAflJiVtt9sZ6G6mfF+53cjovwo1SBAi+Ug==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.1.0.tgz#b89c5d38fdeceda9e421f9357842838be36dce49"
+ integrity sha512-9QyZ7lYr17thTKxq9WN/KVCxNyYurY5Ph9y3vFBkA3u+uOZcaxdw0T417vy0hJvAB7RGlkpLRTmZL7q5P9FzJA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.1.0-rc.3"
- "@abp/bootstrap" "~10.1.0-rc.3"
- "@abp/bootstrap-datepicker" "~10.1.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~10.1.0-rc.3"
- "@abp/datatables.net-bs5" "~10.1.0-rc.3"
- "@abp/font-awesome" "~10.1.0-rc.3"
- "@abp/jquery-form" "~10.1.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~10.1.0-rc.3"
- "@abp/lodash" "~10.1.0-rc.3"
- "@abp/luxon" "~10.1.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~10.1.0-rc.3"
- "@abp/moment" "~10.1.0-rc.3"
- "@abp/select2" "~10.1.0-rc.3"
- "@abp/sweetalert2" "~10.1.0-rc.3"
- "@abp/timeago" "~10.1.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0-rc.3.tgz#16754555038d709f762fb757874375ad68b67c84"
- integrity sha512-XcvpFhkoyOrBDSJeBc6bPUTUCR5PivCAUQ+YEYBhj8svY0eE2hcteqGA6rZUKTw31lapE/K+w8WZkfOYNhnsHQ==
+ "@abp/aspnetcore.mvc.ui" "~10.1.0"
+ "@abp/bootstrap" "~10.1.0"
+ "@abp/bootstrap-datepicker" "~10.1.0"
+ "@abp/bootstrap-daterangepicker" "~10.1.0"
+ "@abp/datatables.net-bs5" "~10.1.0"
+ "@abp/font-awesome" "~10.1.0"
+ "@abp/jquery-form" "~10.1.0"
+ "@abp/jquery-validation-unobtrusive" "~10.1.0"
+ "@abp/lodash" "~10.1.0"
+ "@abp/luxon" "~10.1.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.1.0"
+ "@abp/moment" "~10.1.0"
+ "@abp/select2" "~10.1.0"
+ "@abp/sweetalert2" "~10.1.0"
+ "@abp/timeago" "~10.1.0"
+
+"@abp/aspnetcore.mvc.ui@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.1.0.tgz#79d76232aacb9c8e1762d903f75007d0418bf5a8"
+ integrity sha512-brVfaSUicZuSuwtizrEcMvtRjFsoAHr9i56HjJZb7bmElr+q5STiul3stRumly4IfoLkYqdy85hMk+B3G0bJDg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0-rc.3.tgz#7f7162235d151260dad7f307ed5121e18cb42460"
- integrity sha512-0KsY+R2IetWb9VKGpYL4Edl7g7BY3vPr776+/cSO8buIiM68comeTj6bTe6C28JpF50IaSRK7fam58hLhCC8lQ==
+"@abp/bootstrap-datepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.1.0.tgz#68270ed8cf8e0c23a77331ef2ba6ef2d1da3cefc"
+ integrity sha512-ahKKHlluo4U1Z238mBNzpL0YaErTPENLQDVLNZB1BnZcUTqz1j7WJHGZoy4j3CXZKt7mnFCRe1+vJMCcwP+DYA==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0-rc.3.tgz#205c0a5f0ca06c8b1f9ee27b6c61ec5414aaa477"
- integrity sha512-iF0ghkSuBdTY0yPvxmcCC4Ou7h24gLH+OpClmWuulk3H+MjmOMx4DWOWKIxiG1lPIdgHeIbKLwor+o/ym320Tg==
+"@abp/bootstrap-daterangepicker@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.1.0.tgz#69f7775eafe7c038c2684d3e990384c8f2966cff"
+ integrity sha512-mFMaH7GqPn7W5zzIMOOTl4f0at9Vx8da4ewvPU/IvngrTeezMRPC1tofHmiWDhHfZpzF5J9DDMCGul9Q4nOl5A==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0-rc.3.tgz#42e0184c87b577e93cca5d1c3711c0c81943cd80"
- integrity sha512-SNBqxwp6eZKcQU1knFPpOveHj9duF5GjyxznIq3OVAX+IOfk/gqGxagpiBJrf62P5OselMxhOwPXRZVla6bRJA==
+"@abp/bootstrap@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.1.0.tgz#816436ab547fc46d4c00b1facbdd80e3f4f78af1"
+ integrity sha512-ioqQDOvjXIUWncmLJuTcLPTnlJ3xGxyKXC9veSTJWFd+5pZswK7/QIlAuTvIIujs/7Z13GLunUIMMjny7WFBMw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
bootstrap "^5.3.8"
-"@abp/core@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0-rc.3.tgz#7efd439cd5a659781ba05878d3fdcb5afd36d579"
- integrity sha512-nOiZt8cnmPLwUsqQZrZDkyrYOduyEQpu+UxAOySg3Hrosm/16gEcNS6QODZO61nDfVP/I8NNUH3uEF1GDzCsYQ==
+"@abp/core@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.1.0.tgz#7cb21012deee5510a0774d982f85627d47b368f4"
+ integrity sha512-/N0K2NVdk5/OM+Q5JDnpC+0CD0mS4wpDhLO1SIQbMXSTFbplhfPw2SFm7+MvPA9pVx2L8TYAzXmS7CtAJxKvCg==
dependencies:
- "@abp/utils" "~10.1.0-rc.3"
+ "@abp/utils" "~10.1.0"
-"@abp/datatables.net-bs5@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0-rc.3.tgz#4c34705290f658bef2c59cc4ccb7fd9a5c59d44b"
- integrity sha512-ouAm4uNOo3O/dCQpPCQDTPa/RLY8tiZrucrHBF12WgDCvPyw7X2clOf3NuceMc31lauxMhdlOmh9VL+XJ3TJ0g==
+"@abp/datatables.net-bs5@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.1.0.tgz#ea2a60c22bdcc80882662b9f55f198793f6ea556"
+ integrity sha512-dPe3bVW3Hfnm/X9Bw5k7TuEIsYYwFk1faC8kIxf2Spk+4Z9TdYFS2zGaHBYStE9iRtKmneNYMykG2O88mX3quA==
dependencies:
- "@abp/datatables.net" "~10.1.0-rc.3"
+ "@abp/datatables.net" "~10.1.0"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0-rc.3.tgz#93f5c7ec39b3ce9a3928e3a1df441d1450bba874"
- integrity sha512-lNP6stfJS5i9Dw7mh4hYt7oqvxJSS60KacnOkWWgII4+tOsp/IL+4oLTs3kxGWqnrYRVElQ3frupQGnJmJoT5w==
+"@abp/datatables.net@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.1.0.tgz#7fe641883e6d1417c86a030481777a75c9a5a555"
+ integrity sha512-p9S/ZaJ4OXpihTOWIxsSQ0s3G4S+ScQLD+Q+w0NrWbUa7HTKg9tdqSh6VDhyW9KZ/iiLUO5jNzsAFXyUjjDQuw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0-rc.3.tgz#5066d22472bd1135fde4f7e4f320ef03016a5758"
- integrity sha512-38eB3UEM5hNcfDUasDdhdt1Q1DfAme3jp0OxwNQTf2KO+9fAxUjORZS7x2rQ243FKMwctrD7MhaW+N4BeKop0Q==
+"@abp/font-awesome@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.1.0.tgz#79c5b7eb9a85467b0078b9f9bf201493fc3de358"
+ integrity sha512-dm4VRtZnvm5p8mYQys9KWLkQ+JdwPahQSan2DV1s5Rq4P96hk8p8VshZu7pI3iE0MS+rSZnXYvetZrqCdt1mOQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-form@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0-rc.3.tgz#61744b74432b8c971e0f4e02549884d553a0b708"
- integrity sha512-pKoz861oVQSprXxU1Nb9eatdus7Iizxbu2K7qSOO/xlisYmln+h4sn5KOC0WvSa36xRVom6JCAaeQaEGWvSL4g==
+"@abp/jquery-form@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-10.1.0.tgz#7c19605eb103519fea332d0f153cac185b7f2ebb"
+ integrity sha512-ddlapZqFVwpXU3uDi/RnQ6uSpseMxPAKE+/LgLF+SVyPzazNFognxPT3ztzqTk84P/gFleNgNjAfUlKrfyIfGw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0-rc.3.tgz#6b43a9029dadad4f202db3af03addc8f48c30bf0"
- integrity sha512-n4uN4uJC22LKxKrzqhztyxW2H+tENnfUDuxFjELdMxB/dOYFedUMVLFnGZhFEZSv1dlr0ohUOVfRFjeiGwV5Fg==
+"@abp/jquery-validation-unobtrusive@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.1.0.tgz#13aa462c4347d3459541a9a9ea19a60458805328"
+ integrity sha512-94smwn/W3d+gkX2UKH+/OiB7poKDP1ZK0DqWiiH4BGGmpRk9j3B+eJxPbL86dwNG4XT8upuX3ZOrUb6Fy2SA3A==
dependencies:
- "@abp/jquery-validation" "~10.1.0-rc.3"
+ "@abp/jquery-validation" "~10.1.0"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0-rc.3.tgz#6406cceb450980b0e8cb18ff758b3f44aa351f8e"
- integrity sha512-6ShfqEdjGdowUyUr8J5OkP6bDdwU3sI4eKCJqXo5yQgMK4KY1vjm53rk4QM6eZdm3O0S+UOjqRtMwqN+/+PX/w==
+"@abp/jquery-validation@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.1.0.tgz#5389785f5ff359ecd6291889420d6c2f84e633aa"
+ integrity sha512-/X5smp0xpNqCM+BuLI9eEyMPQ0uF42hmEfBvCIfWWBhfp7uFfq7sS706QcGfXYqFdpprRYoUJGKDfSaHxPaJUA==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
jquery-validation "^1.21.0"
-"@abp/jquery@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0-rc.3.tgz#1e6f1ae3d1d7a72ad0c1293a653f0e6849fe0f79"
- integrity sha512-0oAXHXmuVdP5ar4ZRKYBEKAKDmYmVdwLG6tq3JNdlwLjeVEdEO74+KbHYpLbcqJSiXY3td6/39EqUSMs0hC2sA==
+"@abp/jquery@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.1.0.tgz#d8812a7d410ad959a1ed27696beb9b7885142684"
+ integrity sha512-cVF2hOP6GGp0N3VMBOFjEHuHFgXbDH8x0d7Agw4DN2ydFU8wYuj3m9u0HCc0aoBG6Zls90tMpTfM0RqDNFgCKA==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
jquery "~3.7.1"
-"@abp/lodash@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0-rc.3.tgz#2b121bbc989b567d637bb0c81bf400c768fdaa21"
- integrity sha512-D6MP5WQRm7GA8Qoh5PuZur+2ee3QcCFn0AUoqMt1ZUkkGJjL75pmSxTbTPKlIvPibJzP/JzE+hPpK3kKtPYsig==
+"@abp/lodash@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.1.0.tgz#fdebe764d1142abfd3ecdeef56aa33746e31815b"
+ integrity sha512-r4WwpqLFFQi721edd8XF5wueAdqEvx75dmRlEuhZoIBA6RQ0yYjTRMNWjTOlIEzFDGj7XrisV5CSUQ9BhhuS+Q==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
lodash "^4.17.21"
-"@abp/luxon@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0-rc.3.tgz#2a0196722e293909f20f7fbdb1268a1dea17ecb8"
- integrity sha512-ZsF3kkX8K9sNKDwGdGLvYyvF5hbfXFLe571MTqpmHSgRO20NbAWP34mvfHIdWXXn9SYiWJJtiLfPyIRC4bdvwA==
+"@abp/luxon@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.1.0.tgz#c80cdb1a85e9cc824946dc0009df0daba384a4ca"
+ integrity sha512-slwiGSrevvWZrBhuy9sw7UP6akk2Ln9eAY3nxxo8xzE7C7uezcNk12dbKN4psdSAVpbDwuqC3GGrkmcFL+6sBQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0-rc.3.tgz#0e3478827d19b7b3320b820ec59763db2e61aa79"
- integrity sha512-0k08K83mZBhk0kEbntQFeUepT7xVbbXx3yc4UrZRX1/hO5bGZso89hfQJd+V9fWHmwDVQQ3N/BI2g+1RCmbULQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.1.0.tgz#d257e83b7cc1af89a708e365eef7af0136ccebcf"
+ integrity sha512-+h8hoYUkjcYBdm/M3b8c3CeE5WNU8K6kQ5MwQXNaaGLCvwEmZHy0A6+U8yxtKv2eRRhAkAqOkQyWYRWA5w1XzQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0-rc.3.tgz#02080befcd35c560656de02cf62722acf5d4c894"
- integrity sha512-LSU+MVdW8XHmvBc9Do3Lb2RzLV8C3TxttbvuD+NQCaR4OY4XldT5SK//AwFMaQWOkL7xaaVjeX9nhH/OF6E3Og==
+"@abp/moment@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.1.0.tgz#5755e4e10a7302e2832b1a1ce571f20b27600303"
+ integrity sha512-faHV7vmPEjFUJTRNTTlmnpx0VZuyvQt4O98WBLAjPdcqpLfWazdS9Ro405St5liIkgvmAXWsrwVmZb0VKTLcNA==
dependencies:
moment "^2.30.1"
-"@abp/select2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0-rc.3.tgz#2fe552fd4d03495ad206fd773376cb1dc29be4ed"
- integrity sha512-eSta5GtAX01bUjnUNWMexh90dwj1B+K1s0Ihy53OMuOz+BHV3tDX3sRAXeLMpq4IqmhrXLNELYgV7WIZU4V7Gg==
+"@abp/select2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.1.0.tgz#8b15954e462e65329b8eb481226170df6d55d36a"
+ integrity sha512-7+1GirZe4i/2/LR4jZgWhiN6lFHhClLtUmrdCjh7FeeuBvy5GGA417DybDihna/GzlcOVI4GHnn2fjEwcFqJiw==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0-rc.3.tgz#0788a177543bbb64e4ab32c15ed3d476d832c925"
- integrity sha512-arZAT3Z+JuDEW8/rBXJw1adlxtzAvdTeZ79KGb5CbYjJ/R4eJBPJbeBOGgI+eygHnB/JIBy7r5n/qgFLPJvdDg==
+"@abp/sweetalert2@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.1.0.tgz#6997cb7909671f9deddaea53f17ed054aab27cd3"
+ integrity sha512-vlkH+DkuQBvOqnDPqTtyZ5mHb+GfIR/QJBXI7yrS62ML+ZNqkg0vXftCrm4aAR2kPmvgYsbUOJcKJAmgydcOEQ==
dependencies:
- "@abp/core" "~10.1.0-rc.3"
+ "@abp/core" "~10.1.0"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0-rc.3.tgz#9959d1fedc46b41027901dec00f5a21b3f4842bb"
- integrity sha512-09Xr2ZXGVO/ExUvi/hwzNLX+UCw4p3XeBzBJu/ksvQlCWpBzaVrho7hDiyT7INhP2IFUlKsYo/ndof7o+fmHeg==
+"@abp/timeago@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.1.0.tgz#45c1e8b1451e31910e330053981a871787fe02f1"
+ integrity sha512-3RVMlBbOepa4WBTLthRmf2VddkNwsjE+FNnaSUaMQ2ZQaXnghnZc4xZ3f3oKraGcWMgqpz1IfrWWV1POKRsEXw==
dependencies:
- "@abp/jquery" "~10.1.0-rc.3"
+ "@abp/jquery" "~10.1.0"
timeago "^1.6.7"
-"@abp/utils@~10.1.0-rc.3":
- version "10.1.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0-rc.3.tgz#5e30feb739b93ddf7b2fda5e66231f1cfdf397f7"
- integrity sha512-iz7vgIFaCE2ICKeTcDfKAiPc2W5c9gMpCFU7NZEhyAxTVJofprHvinaQXKn/B1wSwv9NTk/7+LIIWIDh0NCuBw==
+"@abp/utils@~10.1.0":
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.1.0.tgz#ef7f6bf16abb34b77fa57c156b264154827bc0af"
+ integrity sha512-UDgbvDMbcQklNu+SlQPhkIcIfZoWsQjCCzihanLBiHc474BCOlcTsO6K/EatV9LwqG3zY0mYd0ExAWjH44G0rQ==
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 bd7ff9316e..0bab9f7fda 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": "~10.1.0-rc.3",
- "@abp/virtual-file-explorer": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.1.0",
+ "@abp/virtual-file-explorer": "~10.1.0"
}
}
diff --git a/npm/lerna.json b/npm/lerna.json
index 510619a651..b8fb175701 100644
--- a/npm/lerna.json
+++ b/npm/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"packages": [
"packs/*"
],
diff --git a/npm/ng-packs/package.json b/npm/ng-packs/package.json
index c516512d3e..2c597732f8 100644
--- a/npm/ng-packs/package.json
+++ b/npm/ng-packs/package.json
@@ -48,8 +48,8 @@
},
"private": true,
"devDependencies": {
- "@abp/ng.theme.lepton-x": "~5.1.0-rc.3",
- "@abp/utils": "~10.1.0-rc.3",
+ "@abp/ng.theme.lepton-x": "~5.1.0",
+ "@abp/utils": "~10.1.0",
"@angular-devkit/build-angular": "~21.0.0",
"@angular-devkit/core": "~21.0.0",
"@angular-devkit/schematics": "~21.0.0",
diff --git a/npm/ng-packs/packages/account-core/package.json b/npm/ng-packs/packages/account-core/package.json
index e20770c39d..c18d7f6f1d 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.core": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/account/package.json b/npm/ng-packs/packages/account/package.json
index 6842938cdc..4eba821e81 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.account.core": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.account.core": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/components/package.json b/npm/ng-packs/packages/components/package.json
index fac0769c08..7340ce3890 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"peerDependencies": {
- "@abp/ng.core": ">=10.1.0-rc.3",
- "@abp/ng.theme.shared": ">=10.1.0-rc.3"
+ "@abp/ng.core": ">=10.1.0",
+ "@abp/ng.theme.shared": ">=10.1.0"
},
"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 bfd177e257..59a86a32f8 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/utils": "~10.1.0-rc.3",
+ "@abp/utils": "~10.1.0",
"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 13d40d5d4b..0ef541834c 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.theme.shared": "~10.1.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/generators/package.json b/npm/ng-packs/packages/generators/package.json
index 78344c76b3..a06715fea8 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"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 70c19db261..7e188681bc 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~10.1.0-rc.3",
- "@abp/ng.permission-management": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.components": "~10.1.0",
+ "@abp/ng.permission-management": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/oauth/package.json b/npm/ng-packs/packages/oauth/package.json
index 8de50a4ac1..4842c8b547 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~10.1.0-rc.3",
- "@abp/utils": "~10.1.0-rc.3",
+ "@abp/ng.core": "~10.1.0",
+ "@abp/utils": "~10.1.0",
"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 6588eefc59..b576c0bf88 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.theme.shared": "~10.1.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/schematics/package.json b/npm/ng-packs/packages/schematics/package.json
index fc3a341cc3..e92fe7605c 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"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 b88295ec94..62e1e5b559 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.components": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
"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 8302116773..cb3e1d90a2 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.feature-management": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.feature-management": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
"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 3e7218d30a..766690a8b1 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.account.core": "~10.1.0-rc.3",
- "@abp/ng.theme.shared": "~10.1.0-rc.3",
+ "@abp/ng.account.core": "~10.1.0",
+ "@abp/ng.theme.shared": "~10.1.0",
"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 3dc35335a1..c243b4ef19 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~10.1.0-rc.3",
+ "@abp/ng.core": "~10.1.0",
"@fortawesome/fontawesome-free": "^6.0.0",
"@ng-bootstrap/ng-bootstrap": "~20.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 4f4f081140..caf741659b 100644
--- a/npm/packs/anchor-js/package.json
+++ b/npm/packs/anchor-js/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/anchor-js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"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 59628b97d1..515197b70f 100644
--- a/npm/packs/aspnetcore.components.server.basictheme/package.json
+++ b/npm/packs/aspnetcore.components.server.basictheme/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/aspnetcore.components.server.basictheme",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.components.server.theming": "~10.1.0-rc.3"
+ "@abp/aspnetcore.components.server.theming": "~10.1.0"
},
"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 4aabd58e3a..3294a5383d 100644
--- a/npm/packs/aspnetcore.components.server.theming/package.json
+++ b/npm/packs/aspnetcore.components.server.theming/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/aspnetcore.components.server.theming",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/bootstrap": "~10.1.0-rc.3",
- "@abp/font-awesome": "~10.1.0-rc.3"
+ "@abp/bootstrap": "~10.1.0",
+ "@abp/font-awesome": "~10.1.0"
},
"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 4aba0a5a3c..ab9e0c45db 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/aspnetcore.mvc.ui.theme.basic",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~10.1.0"
},
"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 9547d9aea9..a40c61cd90 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/aspnetcore.mvc.ui.theme.shared",
"repository": {
"type": "git",
@@ -10,21 +10,21 @@
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui": "~10.1.0-rc.3",
- "@abp/bootstrap": "~10.1.0-rc.3",
- "@abp/bootstrap-datepicker": "~10.1.0-rc.3",
- "@abp/bootstrap-daterangepicker": "~10.1.0-rc.3",
- "@abp/datatables.net-bs5": "~10.1.0-rc.3",
- "@abp/font-awesome": "~10.1.0-rc.3",
- "@abp/jquery-form": "~10.1.0-rc.3",
- "@abp/jquery-validation-unobtrusive": "~10.1.0-rc.3",
- "@abp/lodash": "~10.1.0-rc.3",
- "@abp/luxon": "~10.1.0-rc.3",
- "@abp/malihu-custom-scrollbar-plugin": "~10.1.0-rc.3",
- "@abp/moment": "~10.1.0-rc.3",
- "@abp/select2": "~10.1.0-rc.3",
- "@abp/sweetalert2": "~10.1.0-rc.3",
- "@abp/timeago": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui": "~10.1.0",
+ "@abp/bootstrap": "~10.1.0",
+ "@abp/bootstrap-datepicker": "~10.1.0",
+ "@abp/bootstrap-daterangepicker": "~10.1.0",
+ "@abp/datatables.net-bs5": "~10.1.0",
+ "@abp/font-awesome": "~10.1.0",
+ "@abp/jquery-form": "~10.1.0",
+ "@abp/jquery-validation-unobtrusive": "~10.1.0",
+ "@abp/lodash": "~10.1.0",
+ "@abp/luxon": "~10.1.0",
+ "@abp/malihu-custom-scrollbar-plugin": "~10.1.0",
+ "@abp/moment": "~10.1.0",
+ "@abp/select2": "~10.1.0",
+ "@abp/sweetalert2": "~10.1.0",
+ "@abp/timeago": "~10.1.0"
},
"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 12ffc506ee..50456bcf8c 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": "10.1.0-rc.3",
+ "version": "10.1.0",
"lockfileVersion": 1,
"requires": true,
"packages": {
diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json
index 38b8c77a14..6f5bebafed 100644
--- a/npm/packs/aspnetcore.mvc.ui/package.json
+++ b/npm/packs/aspnetcore.mvc.ui/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/aspnetcore.mvc.ui",
"repository": {
"type": "git",
diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json
index fc2c613d33..9a4a5744f1 100644
--- a/npm/packs/blogging/package.json
+++ b/npm/packs/blogging/package.json
@@ -1,14 +1,14 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/blogging",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~10.1.0-rc.3",
- "@abp/owl.carousel": "~10.1.0-rc.3",
- "@abp/prismjs": "~10.1.0-rc.3",
- "@abp/tui-editor": "~10.1.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~10.1.0",
+ "@abp/owl.carousel": "~10.1.0",
+ "@abp/prismjs": "~10.1.0",
+ "@abp/tui-editor": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json
index 30d0cfc5b7..70323a3532 100644
--- a/npm/packs/bootstrap-datepicker/package.json
+++ b/npm/packs/bootstrap-datepicker/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/bootstrap-datepicker",
"repository": {
"type": "git",
diff --git a/npm/packs/bootstrap-daterangepicker/package.json b/npm/packs/bootstrap-daterangepicker/package.json
index 73faa8c0b2..58ea46786c 100644
--- a/npm/packs/bootstrap-daterangepicker/package.json
+++ b/npm/packs/bootstrap-daterangepicker/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/bootstrap-daterangepicker",
"repository": {
"type": "git",
diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json
index 431165bc59..bb0ae55946 100644
--- a/npm/packs/bootstrap/package.json
+++ b/npm/packs/bootstrap/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/bootstrap",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"bootstrap": "^5.3.8"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json
index 8d21cee1af..e69f2b5085 100644
--- a/npm/packs/chart.js/package.json
+++ b/npm/packs/chart.js/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/chart.js",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json
index 38acbe0229..6c71fc541e 100644
--- a/npm/packs/clipboard/package.json
+++ b/npm/packs/clipboard/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/clipboard",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"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 ca4a07f26d..f785cb7ad6 100644
--- a/npm/packs/cms-kit.admin/package.json
+++ b/npm/packs/cms-kit.admin/package.json
@@ -1,16 +1,16 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/cms-kit.admin",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/codemirror": "~10.1.0-rc.3",
- "@abp/jstree": "~10.1.0-rc.3",
- "@abp/markdown-it": "~10.1.0-rc.3",
- "@abp/slugify": "~10.1.0-rc.3",
- "@abp/tui-editor": "~10.1.0-rc.3",
- "@abp/uppy": "~10.1.0-rc.3"
+ "@abp/codemirror": "~10.1.0",
+ "@abp/jstree": "~10.1.0",
+ "@abp/markdown-it": "~10.1.0",
+ "@abp/slugify": "~10.1.0",
+ "@abp/tui-editor": "~10.1.0",
+ "@abp/uppy": "~10.1.0"
},
"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 4f21693731..5e706dc9c8 100644
--- a/npm/packs/cms-kit.public/package.json
+++ b/npm/packs/cms-kit.public/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/cms-kit.public",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/highlight.js": "~10.1.0-rc.3",
- "@abp/star-rating-svg": "~10.1.0-rc.3"
+ "@abp/highlight.js": "~10.1.0",
+ "@abp/star-rating-svg": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cms-kit/package.json b/npm/packs/cms-kit/package.json
index 7c3d53c574..a4a7cc66b5 100644
--- a/npm/packs/cms-kit/package.json
+++ b/npm/packs/cms-kit/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/cms-kit",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/cms-kit.admin": "~10.1.0-rc.3",
- "@abp/cms-kit.public": "~10.1.0-rc.3"
+ "@abp/cms-kit.admin": "~10.1.0",
+ "@abp/cms-kit.public": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json
index e46b186790..fbba5ac933 100644
--- a/npm/packs/codemirror/package.json
+++ b/npm/packs/codemirror/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/codemirror",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"codemirror": "^5.65.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json
index de53dd477f..5c5802c632 100644
--- a/npm/packs/core/package.json
+++ b/npm/packs/core/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/core",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/utils": "~10.1.0-rc.3"
+ "@abp/utils": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cropperjs/package.json b/npm/packs/cropperjs/package.json
index 3c346aaa6b..ac6061b8de 100644
--- a/npm/packs/cropperjs/package.json
+++ b/npm/packs/cropperjs/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/cropperjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"cropperjs": "^1.6.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net-bs4/package.json b/npm/packs/datatables.net-bs4/package.json
index c5a3b10a6a..8b5a587d10 100644
--- a/npm/packs/datatables.net-bs4/package.json
+++ b/npm/packs/datatables.net-bs4/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/datatables.net-bs4",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/datatables.net": "~10.1.0-rc.3",
+ "@abp/datatables.net": "~10.1.0",
"datatables.net-bs4": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net-bs5/package.json b/npm/packs/datatables.net-bs5/package.json
index d36de4177e..b2495a028c 100644
--- a/npm/packs/datatables.net-bs5/package.json
+++ b/npm/packs/datatables.net-bs5/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/datatables.net-bs5",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/datatables.net": "~10.1.0-rc.3",
+ "@abp/datatables.net": "~10.1.0",
"datatables.net-bs5": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net/package.json b/npm/packs/datatables.net/package.json
index 8fc4915e11..b599e94328 100644
--- a/npm/packs/datatables.net/package.json
+++ b/npm/packs/datatables.net/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/datatables.net",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"datatables.net": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json
index 936f735e0b..e5e36f7daf 100644
--- a/npm/packs/docs/package.json
+++ b/npm/packs/docs/package.json
@@ -1,15 +1,15 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/docs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/anchor-js": "~10.1.0-rc.3",
- "@abp/clipboard": "~10.1.0-rc.3",
- "@abp/malihu-custom-scrollbar-plugin": "~10.1.0-rc.3",
- "@abp/popper.js": "~10.1.0-rc.3",
- "@abp/prismjs": "~10.1.0-rc.3"
+ "@abp/anchor-js": "~10.1.0",
+ "@abp/clipboard": "~10.1.0",
+ "@abp/malihu-custom-scrollbar-plugin": "~10.1.0",
+ "@abp/popper.js": "~10.1.0",
+ "@abp/prismjs": "~10.1.0"
},
"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 f7e2079b37..20afba8bd8 100644
--- a/npm/packs/flag-icon-css/package.json
+++ b/npm/packs/flag-icon-css/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"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 1a4502f06e..022a9d2194 100644
--- a/npm/packs/flag-icons/package.json
+++ b/npm/packs/flag-icons/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/flag-icons",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json
index cf36ac5aca..1e22bd814a 100644
--- a/npm/packs/font-awesome/package.json
+++ b/npm/packs/font-awesome/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/font-awesome",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"@fortawesome/fontawesome-free": "^7.0.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/highlight.js/package.json b/npm/packs/highlight.js/package.json
index e4924e72a0..7a927fda5e 100644
--- a/npm/packs/highlight.js/package.json
+++ b/npm/packs/highlight.js/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/highlight.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"@highlightjs/cdn-assets": "~11.11.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery-form/package.json b/npm/packs/jquery-form/package.json
index f12dc895f7..47aea3742c 100644
--- a/npm/packs/jquery-form/package.json
+++ b/npm/packs/jquery-form/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/jquery-form",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"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 677e6a5c36..7f8dd38e52 100644
--- a/npm/packs/jquery-validation-unobtrusive/package.json
+++ b/npm/packs/jquery-validation-unobtrusive/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/jquery-validation-unobtrusive",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery-validation": "~10.1.0-rc.3",
+ "@abp/jquery-validation": "~10.1.0",
"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 4d72ea4945..6deb646c6f 100644
--- a/npm/packs/jquery-validation/package.json
+++ b/npm/packs/jquery-validation/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/jquery-validation",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"jquery-validation": "^1.21.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json
index dcf2f80743..375b4a8926 100644
--- a/npm/packs/jquery/package.json
+++ b/npm/packs/jquery/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/jquery",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"jquery": "~3.7.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json
index 6a8ab8f845..96adee3704 100644
--- a/npm/packs/jstree/package.json
+++ b/npm/packs/jstree/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/jstree",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"jstree": "^3.3.17"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json
index 846374d535..758947b6aa 100644
--- a/npm/packs/lodash/package.json
+++ b/npm/packs/lodash/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/lodash",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"lodash": "^4.17.21"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json
index 9ed20a502e..ec2cafc99d 100644
--- a/npm/packs/luxon/package.json
+++ b/npm/packs/luxon/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/luxon",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"luxon": "^3.7.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/malihu-custom-scrollbar-plugin/package.json b/npm/packs/malihu-custom-scrollbar-plugin/package.json
index d5084785f5..8037f6e6cc 100644
--- a/npm/packs/malihu-custom-scrollbar-plugin/package.json
+++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/malihu-custom-scrollbar-plugin",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"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 3e7905934d..cbfc4f62de 100644
--- a/npm/packs/markdown-it/package.json
+++ b/npm/packs/markdown-it/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/markdown-it",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"markdown-it": "^14.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/moment/package.json b/npm/packs/moment/package.json
index b02eb3e42e..64b4f251d1 100644
--- a/npm/packs/moment/package.json
+++ b/npm/packs/moment/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/moment",
"repository": {
"type": "git",
diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json
index afef46cd70..bbc8e7df3c 100644
--- a/npm/packs/owl.carousel/package.json
+++ b/npm/packs/owl.carousel/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/owl.carousel",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"owl.carousel": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/popper.js/package.json b/npm/packs/popper.js/package.json
index 991419c7e0..602ddf6708 100644
--- a/npm/packs/popper.js/package.json
+++ b/npm/packs/popper.js/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/popper.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"@popperjs/core": "^2.11.8"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json
index 0b0879d531..4fd469f4dc 100644
--- a/npm/packs/prismjs/package.json
+++ b/npm/packs/prismjs/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/prismjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/clipboard": "~10.1.0-rc.3",
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/clipboard": "~10.1.0",
+ "@abp/core": "~10.1.0",
"prismjs": "^1.30.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/qrcode/package.json b/npm/packs/qrcode/package.json
index c719e9230a..c62be35b29 100644
--- a/npm/packs/qrcode/package.json
+++ b/npm/packs/qrcode/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/qrcode",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3"
+ "@abp/core": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json
index e91eba01ba..cf27666b02 100644
--- a/npm/packs/select2/package.json
+++ b/npm/packs/select2/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/select2",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"select2": "^4.0.13"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json
index 5f50177cd1..7a0024790f 100644
--- a/npm/packs/signalr/package.json
+++ b/npm/packs/signalr/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/signalr",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"@microsoft/signalr": "~9.0.6"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/slugify/package.json b/npm/packs/slugify/package.json
index 295deb3765..3331b28587 100644
--- a/npm/packs/slugify/package.json
+++ b/npm/packs/slugify/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"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 98f12d92de..99d9e6e7d3 100644
--- a/npm/packs/star-rating-svg/package.json
+++ b/npm/packs/star-rating-svg/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/star-rating-svg",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"star-rating-svg": "^3.5.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/sweetalert2/package.json b/npm/packs/sweetalert2/package.json
index adc2ba5b9d..19fa99ed97 100644
--- a/npm/packs/sweetalert2/package.json
+++ b/npm/packs/sweetalert2/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/sweetalert2",
"publishConfig": {
"access": "public"
@@ -10,7 +10,7 @@
"directory": "npm/packs/sweetalert2"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"sweetalert2": "^11.23.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json
index 52d9f56b08..84d3e7564e 100644
--- a/npm/packs/timeago/package.json
+++ b/npm/packs/timeago/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/timeago",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"timeago": "^1.6.7"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json
index fa2df3bf39..dd4c63be1b 100644
--- a/npm/packs/toastr/package.json
+++ b/npm/packs/toastr/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/toastr",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
+ "@abp/jquery": "~10.1.0",
"toastr": "^2.1.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json
index 53bc911abc..c7110e52a7 100644
--- a/npm/packs/tui-editor/package.json
+++ b/npm/packs/tui-editor/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/tui-editor",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.1.0-rc.3",
- "@abp/prismjs": "~10.1.0-rc.3"
+ "@abp/jquery": "~10.1.0",
+ "@abp/prismjs": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json
index 1773989490..12874ee518 100644
--- a/npm/packs/uppy/package.json
+++ b/npm/packs/uppy/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/uppy",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"uppy": "^5.1.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json
index ee674f4f22..6c2606a397 100644
--- a/npm/packs/utils/package.json
+++ b/npm/packs/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@abp/utils",
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"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 7da98a4b02..1dd191b619 100644
--- a/npm/packs/vee-validate/package.json
+++ b/npm/packs/vee-validate/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/vee-validate",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/vue": "~10.1.0-rc.3",
+ "@abp/vue": "~10.1.0",
"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 6e00f1ad24..46975b6bd8 100644
--- a/npm/packs/virtual-file-explorer/package.json
+++ b/npm/packs/virtual-file-explorer/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/virtual-file-explorer",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/clipboard": "~10.1.0-rc.3",
- "@abp/prismjs": "~10.1.0-rc.3"
+ "@abp/clipboard": "~10.1.0",
+ "@abp/prismjs": "~10.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/vue/package.json b/npm/packs/vue/package.json
index b5f5856705..5ab9881b41 100644
--- a/npm/packs/vue/package.json
+++ b/npm/packs/vue/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/vue",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/zxcvbn/package.json b/npm/packs/zxcvbn/package.json
index c80b673f4a..0118f27ac1 100644
--- a/npm/packs/zxcvbn/package.json
+++ b/npm/packs/zxcvbn/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.1.0-rc.3",
+ "version": "10.1.0",
"name": "@abp/zxcvbn",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.1.0-rc.3",
+ "@abp/core": "~10.1.0",
"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 2ac4aa28bac0bd20bc1c80cf3b1488005d1c6f30..d795a676a59b0ccd02689d299af47c0c8995eb0e 100644
GIT binary patch
delta 17524
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
I9AL)(0Mec5BLDyZ
delta 17572
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
delta 7489
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
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 b58469f3fe809fde9a1bbb47386fb5106302da1f..0ab637656e067781e6d69c58f7232ea71472f53a 100644
GIT binary patch
delta 9074
zcmaiZ2RPO5`~Nw|o*hIu*(E}emC>Lwj+9YCW@bkAh(sun{e)CPBFa_?*+NDiJDa4k
zGD=2?-{bxE>C@?Z{jb04dSCD7-1qAq@B6-=`x(;X$tUB;8MHLW$hTuK7-|gv8SNMb
zE3*4q+65lQSTgvts2giXfee(Xt|JuCL>-I}v}uM=hyMnY+F2*
z5o$3yR+*7T4o%=N0DoH;?CjbD@|YMAOcm399D*5QlM9T-VlZsvTNpln3pZz1C%ZUZ
z&8SXse7V2^Pxcz-ar5&_kMhsA@$2tp_L+L^kx?BnE%8A;VSZYBz#-0)Y=-;L)vG*d
zHqUtn1I@M1w2H1?U@)&^Xb!n7eCvsNVX;%N7F`XdZb-F8W~Zuh=0E-KG*WEaZB9uZ
z*PC?isjYai({NuIrf+RWrn|rMEK_<0=L*>*mm>%`?ax9c8%b>tuAkT6}D<=;Lh5)m!9+$K55E{DKW!=lMpGUO4j$mc66D99|{S
z`Ic*qUe(4juQw{|yMvcF>vT`4-QHK$Wg%JO6C8?8*+B&P54SJM?P%i#l;o|Vvh3G4|~Gp#=G;@Q|^k$|P68{>z+I|QF^io5+(&Dulna-OCx
z%ZrL1!P5r?e{g0?N#HM;+F7se_@vNl&K)Rv)i!YIdcKHboQdA|%WgbvK`Y#QTg5fp
zshRHNW(-o+B4Kf+>w0E(?UbTI>e|u
ziiPeCCv!~0Z+CpIk7F6viqRklupe)jE{dCZ!aCCQ^4lHmij>HA{=*`#d!0jF>#T45
zQ|B?I70bQozIM5wk=dUi?KFiAPhmuOj%MgPecrU9%u`8@{X2iQhq_p4ODHe(S~i|;
zj4|9jt4cFdeTq42#pdnLtQ#sV_dVOrOjt&|prcu1lu5l|<~(QKM$1~Ct2(8GE3edE
zipbH(==o^l&SSRzF)hr0VI;G-PWmge(HgnQl06yw=xkZtvHR^+zKz`U7V8=uy`za4
zPQ&u+yw%(viG_ZGv7%@D%+~)Q%xZ-Y(^tLA4XxyTVlYw9h#h*>J+-*&kqgW*TKH
z(5|dxHM!7T(!hPl%J3m;TtX{vX`Yy_D&4gZZS3W~<9(}%IzCO~F;;%f+t)lF-L8<#
zz02n%U6L&wm^9(--_yVyw8Hzk-$KSmm1{1^|L1Y@m&zsPMK!Wxf^I?=aiNiwrVhqq
z$p?HyU&=e*;~cm{o9uEe{Ov{uY25zhXhUrB#h+0
zd-+fxbve3{v;J!xd+%FGu_*t3&x^_YeN-gTE|S~36AiGw$m9RloG}xl21mruITIiz
zf`&az^UL=|m?m-K#$2_4sF3x`3Db@B{E!$9Xt1WUEY>J#}KB(34
zkDXi(a!u8Iho?M0WF{Auv#+_wiTi4Lh3q=n*_#czqZ;huZl`7*NGW}9xFen>pm=3X
z&$X}f%=kUEAGDjXrTM+i74b-fpsQBafhnYD<0Z}itzv1=CPNAGWcC4XL3EXJmmxz#
zI}?9ubsUB^8CLaXMehUoGJC+#K^lL%T5KeEu_X-?`dtr
zTt+SzKi^_~$_QD*-F%0Wfp^?x-sajU)N*%(wQ^M4JSNJdbCNR2Tvm6r(^Bk*|M&N?
zhfP#so*LQ6-mVrYW9^(K{~TV`;P$X})g
zW@G#OU+Y$%syT`;zqhjO-qos0?cM`2Spk%3H+2@qtoj(!pUpT}7gw*BW9@K(G@L9^
z3g5mC-%BiZJ^m8&rSG6f+GuK9Fr&?bZ9j#1Y^?Cf$r6I9!EBAP#lg>qZnJ~srg0YD
zb19)BAFD45d)kZ56fC`1x@f^STN$)nVU8_kZOMy)e_JI1#l@hhI9$&hMzhoIM$_iYX=
zmDL{YGQyX>^@~tHQ?(m=WSCX2?(%AYc=LIE<;0h$%2lyx{kp$a>$9q3NLJ+44A6Ry
zCtgDcoElyf$WH7oYihvWZ~j_TFKBwfIJyy@!Wi
z`fUShs#tGtJa?_SPLpD4p6sq;wG~t19e7R8+}#75=^5Vpdpkum&R-5Y!RTM|=J2*y
z|2I27_jcmjVw;Asg?Z%GoLQ9^;$zW^s>;K$cYOvTB8d$1uii(#wS-zS}HqEgh!%4=U{H-{7>}<-}smEO>7%9g6ZzUc~Fk9zv
zzdRacE~t>Vx)@^7&`m%Jo()C<*%}*lJ9m!9!Cyu2kpnTQVn9qM7YW_4ju{$DrL*w}
zq5o_LTIov#GCi#jzgg{iP(}g-oaG02eQN)9J6Pu@My{{d7V_lxEoQyeJW4zttQQzI
z_hFXZAvQ@|L1)c3l;+`z)L^soT%rqWCy$Tzy|(Q?mM0RKx$3eH7hAJ%8dtR3c4gI#
z68-Fyq3i$rw(Al6G?%Nqj_7&($+1FTC&K~UJ0Vkgu5}jKtZ*T9UdqvVyO}kmPeE4<
z2t&&*<30Kbhtf|@+VdMIg=A4h?IpMr*_ae>pW&VtnP=#FSx;JCw}i`f4&}-97vt-!_n-u#_to
zk9f~7Z1t%}R$;t1HqS?d{k3JWVVI+stdQ;tvI-WjI8|ZSM$M&8wN>dD(Jul168a%~
zf9{O_WnyL>SX-<_V--PVxyabvQg$`FpbO)qFh#??gyqhe=FDh+m-j4c{$!BjuOl)q
z+3!Tkx5{}Lyz8Ufm?$;5>wWQ~`$u1Xm7ESYqVc%a(RGh@%VMb=gObGWSdxGl-L=P^
zx(SQqHhiQpK;^<4Buc+ZJ9=5+67E9*$(vCsI%07UiD;3Jl@E?#a~Cbu|1Lp0Lw(M4ucOH;#zW!Ad347Fz(veQFl
zzH>>AF$P!2PB^4Z@6y+6dRTjCq1(M#wv@5sr$YU4>jE;3kdoIG3QFOjJ1#bH>7Pqg
zC#a9A9UqZ6JwQB5STb1dm{0j<8&uF%}Hn-oe4#CY|y&CEUdRCFrX^X%P=oUvvh3|~VYekg0w
z*?%u>{?jORf57UXx_Ibna6|P8SH%s(OV=rTISsFb>>5@4tXMgrNIaXs=9`vW;B3TZ
z{PdpYH{1F;7EatTQ^t+1xiY^qm0g`KXQFpo#+v9#-yA3V9PUFEQ|v6D$^PlRcIngR
zd9OKvrAj$2)8s(eCh3Nz^H^e_6yx^EKi$7WROqqkN+IgM3TV>4@>5!xU=5~dj
z`jhxYDxV|{&kBQbYx&gH3j?bv`+S>kPuwy0s0?!aY~|}K5NslOVtj3>QR?-rUBOpn
zs=vhOo=)XDS%3R^X%ErCrq}$cndF#AffL!M(m>+VWR*8gH@`N8-+5Rd)I}BWLo;QE
zIY)!jQL84(s77|tuoL;UUFHHTDtmNq@z5gVAcdNS;5v`P*-iY+@Y
zQBSGXm*&&`Z`;ckBN}c6Mk-op01MUO>Zi99{GQTQAC=aarf?ybI6hJ@?{K=rV#3C4
zpy8Roh-sI07gt>|ej}?cir?VeEs0LmYZb-KD%&d@GW1f
z#u2$A-(Gp!Wh&JU_#VscOHkZ@b$h9PN*$fogGE4d0q6xHA$mXC9!sby+O%Ns`bFVf#y9`
zZ4x=bi{(L$*Lbeul_q%DJS-B^KE~v)2(*^v?XktgV>Il?zXIo7mImyu^8P6;H4NR#
zlcxQ=juy7R3Jx$v{#v_>?%aoevgsK>#iD8L?}4a^z#fLuR*ko1kN
zXgna93`ypV;1P6Sd(#bVFvDSs2&em26{_w|#0ok9Q8MVDC3+nlw8l!K1B%;c(1B5$
zB)aLyWO!Ro4U2*e_Neo)`5XpER+x+C<9SgW%N--MNlj$V(%px+M7Y41L!1Vfji&}5
zSDA{&?`ELbi2K*j6^AML3PJ(VDf5VrL8I*`vnFAa;LbGcAVeqII2aw+UXDVopv(ZSvq11O8SWCk59m${%U`|?NV72^wU
zOD{qAEf;Vgua*cHt9KR!RZ60ulB!5_K&&~34j$DuqKcgAd(i>$4FP4@HWi`+t`>fD
zpxnCk8FK%iz5;_bnax{L5ZiWi^Fu**n6jy}}6TJ|vwK*dkGZPrYmi*=(4ATipGd{7;{lh?WKxw;l8Q#BcO)
zmbvc{tdJeF7>pH()k`3?&mH+Pk_#&mOq|dk%J+cKe$>MU{RAAxUce-_A58V{LR?`Q
zAm9#)ASB}fw*ODS#zY~|WZPf9#tss2W@4Kh@I~yuxRKoJka!olAAGb(VfUQTpT6f?Bsuw-^w%o9XQYqA>9hUAv@m-Al4~G>&wHSn-s7kE0I{ARr(E%
zc+ZEJDR>V*_1G4f4s5(p-B~?*h2{k$_`43rV6t>nAxp#tLl~
z0rH95p9r{YQkL-u>K@7Ymqh)wbARaCJQ7oa#;yMF=Rx}jiBOF`6yiosi?g2@LDXlo
zI8#0oaL)|>V4?NGFhRg^8T}?l8%cu53Do5z$SNjfaZjQylN?S-tlu~LLzftMK8Z%P
zX_A1$z+oRMeTvE1
z0VnMUNe1BG#!YgnA(1U`f3_!t491DXa-`cI0+OI-4%Ib1N5Cm~K$Zm1
z^5h5S=TWlrJOS78FIfl-&Y{6IW{lw93Dt7KN0UT-I$&BbLIOv+)&3JC>izG=8}uw}
znO`8_CN6{Ojy+)iS3X3(4^Mq75%!>v|LH*oeYb$jAnPl-Vn~py(xt)Pe3<6%X)W#t
zVgl5_o^OnZR+4?@pH5-q0w7QqWPU><_;BOPNe^iH0|N$gngn<#7y>0geK7C;teK00
zpS^ZKH<~H`?wdS7Yf%gFKx&}QbMxk+3O=N}jkqw_*^kD4XF+gNYFSkm;P>mn{{$Z+
zaUlE_#2o-^;Vi)WJL>J{Lk*{HL+}{%Se*oXIsyS7U1kL1-*+JWXZ?M~wPSKEH&v
z*~?1=Tu}5Dc?TF-+J>MPAUQa8i@X;hIW7}$ufSHvKY&an^XlCe<&z^@O-Y{U=Bw|eo;M!dxFj-|qqCv9vCIJfHg+Pn{
zNrn3NCsLam`VVkZr$r)g9Ps@xMU+No%Mj?G^BA=M_lYo;?-6FAr`6t_e*(y0;T4P1n!fS9>@et`%m)2Af)z|VG
zyfUFmJoLeuL^buJ-?KjI7x(6w1kA@%0P$ZOh^~{r;ASuV4+y%K9)M(?j6cXCKz*GP
zF_n<{<7FK*BM&RejKmaMCY+H+p$R5XnaQ-79VDqwj|B{J!5F5%)zySVKp)^Y91%AH
zHVC+dY$&c7=Y*vIa~tUDA3Ay8<0%x8hxX2qh^of%VXZesZ|FtL>X%JA?pus5jNU
z`5OQ#-tZ(;QExf&&nAec34%1C+w5Sli6Oy+W{c@a1DRdT2$QjzAt9F<%ZS3Y)Yi(p4AqJHc1Ge-BJ-n3sua&g+!f%by_SRC1cxWT>lRah-bk7
delta 9206
zcmZ`-2RPO3`*)5ltAsd6lsz*uvR-75tkAHNtW-!sS#Pp>;+RE7Qj(-)_lk^c*`rV>
zGa?!P=X}3Xr{DE=UFZ5f?)`l3`?;SnnLw74NJeL@M@qJvgoK2O#ME3bp3aH1!9=g<
z!f^~K{I|FZbA}uls8fa^6wp8wiV#ew2T>8p9Y;}41Z_RSIZEe*MFyn|i73Zxrz=9J
z+9{5uhh}X>mtzzXFeD`0WZ>jZ-5>`auXCPf5{_1T^h?l|GxVrXRTvqTI_xGrkxI|`
zOw6h*?VO2Y?a_yk?3(w!Ra`mpk-~5)bJ}E#X*i%JD`lrg)#D`m(*7ULbapi|jS;T<
zK0Bp5&JI&&I)`E+`&&W{DHGwLnjKY1^lmCzE@PgIs3^
z_t6+I&v8zQD)DqBQ&zCo$LosYC`BiIB&TlM1?0Nt8WaexVBEOpC~C^(9tmc8dQbJ9
z3rM+gjqHi)dC8sWVLDH`_Z7z4$kX$ccF_9YsFLhxo?cqi<9Dp)i;FRseXo@-0Q)j($f~HwP3EA7UMJFI(Ic9tIh^8kMrG~)m)&^un``a
zf9N3^VwWx3IGE*;r5jOd8+j(jxT
zvm!FUi%T8|anU29id-VtorJW{*#-qW!?eedl91Sf%!B+;?BG`R3xJK$s48vPaQq5G
zR#{=kSKY`6*KGAh16v`}kudyZ4Yh0g{D^n(T0m#xnH}d#H2dm`Vh``Naal}q4Yx2$
z>|US9f1)2k6Y`~v>`7Tn`?_+@Vp2V?o^M0vs*{djpsTHaEQioJR|m3d6Mn_d5(l4t
zv`IeC)zKD&oAMhix6r4>3-F))w4!T!kN&`yoSyi+rPQje*G6@JPfy=1zbNv9
z3QHwitx3UFEo6GJ54!)xI@-9_G!|Z=cOHc%9W0J%r9bQBw>i
zyLfHzsD?z+r9Ds8!-`T9FU6_OQrfI6DR;&fU8wJTwH98$Lz)?>$<8fZ{frn
z!$tFfXRR2n%};@mKJ0!By}+)?_f`nqZP)Js&tg=<$K0GB)n~r?_HyS}?b@HgJPE?2
zP1u)R+E!CB^}bBjZ~Uwzt@q8et9?83Dr0nda4FJH(jh9{DUa1xXBb12P21g?xy711
zJJFSVj5i0#B*5_bB8dy&+mEi-le}D4nPB2BVZp475O~Zd_G`_?8yLM-WelI?+lVlj
zHSA~f)ML7Fn)^z|fwVG_{>;S0^mpfFX)1@PWH4_c>(T?im9@-FPsGL
zX4RF&-L#Dq=f)bOyK0YU($|W