diff --git a/CHANGELOG.md b/CHANGELOG.md index 04912c0944a2f0779b44a32058e0c668b8240151..c6c1244f76772f5b3bffc9b587c508d389ae22be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,14 +3,6 @@ title: 更新日志 | TinyNG --- ## 更新日志 -### 1.0.0-beta.2 +### 1.0.0 -*2023-05-16* - -1. Latest version - -### 1.0.0-beta.1 - -*2023-04-19* - -1. Latest version +*2023-06-14* \ No newline at end of file diff --git a/build.md b/build.md index 1605545eca86ce2da12ae91e43d0473578d92178..521979e69ae18140cf8e13bd321c46cfd0d1381d 100644 --- a/build.md +++ b/build.md @@ -99,9 +99,54 @@ ``` 或执行命令行: - ``` + ```bash ng run ng-demo:preview ``` 功能:1. 构建打包相关 @opentiny/ng-xxx 发布包(.tgz);2. 在 ng-demo 项目中 npm install 安装 .tgz 包;3. ng-demo 项目生产环境构建;4. 启动浏览器在8020 端口运行 + +### 基于 Angular13 构建的 lib 在 Angular14/15 的应用中使用效果预览命令 + + 执行命令行: + ```bash + ng preview ng-demo --configuration ng14(或者 ng15) + ``` + + 或执行命令行: + ```bash + ng run ng-demo:preview --configuration ng14(或者 ng15) + ``` + + 功能: + 1. 基于 Angular13 构建打包相关 @opentiny/ng-xxx 发布包(.tgz); + 2. 在 src/ng/ngversion 项目中 npm install 安装 Angular14/15,同时安装 @opentiny/ng-xxx 的 tgz 包; + 3. 基于 Angular14/15 对 ng-demo 项目进行生产环境构建; + 4. 启动浏览器在 8020 端口运行,查看 Angular13 的 lib 在 Angular14/15 demo中的使用效果。 + +### 发布组件 + +1. 发布全量组件: + + 执行命令行: + ```bash + ng publish ng --args="--tag=xxxx" (例如:ng publish ng --args="--tag=latest") + ``` + + 或执行命令行: + ```bash + ng run ng:publish --args="--tag=xxxx" + ``` + +2. 发布单个组件: + + 执行命令行: + ```bash + ng publish 组件名 --args="--tag=xxxx" (例如:ng publish select --args="--tag=latest") + ``` + + 或执行命令行: + ```bash + ng run 组件名:publish --args="--tag=xxxx" + ``` + diff --git a/build/buildwc.js b/build/buildwc.js index e17e6d2876f1df385efee2c3de9acbfa328f4afe..736a625ad91893a766e206cc510b9de1c5c3bfc1 100644 --- a/build/buildwc.js +++ b/build/buildwc.js @@ -4,7 +4,7 @@ const { execSync } = require('child_process'); // 1.删除 dist 目录 execSync('npm run clean'); -// 2.编译生产环境 tiny3demo +// 2.编译生产环境 tinyng-demo execSync('ng run ng-demo:build:wc --skip-nx-cache'); // 3.编译基础样式 execSync('npx lessc src/themes/basic/build.less dist/apps/ng/assets/themes/styles.css'); diff --git a/build/preview-demo.js b/build/preview-demo.js index 16975397fd8205b38b427946e636023b5feea893..1ca32cb55506623f46015283ac30a124b19cad4a 100644 --- a/build/preview-demo.js +++ b/build/preview-demo.js @@ -40,14 +40,15 @@ serverDemo(); function ready(){ - execSync('npm run prepreview'); + execSync('npm run prepreview', { stdio: 'inherit' }); } function buildLib() { - execSync(`ng build ${name}`); + console.log('---------------- build lib ---------------'); + execSync(`ng build ${name}`, { stdio: 'inherit' }); if (isNeedThemesBuild() && !isNgDemoPreview) { - execSync('ng build themes'); + execSync('ng build themes', { stdio: 'inherit' }); } } @@ -65,15 +66,19 @@ function changePathAliasAndInstallLib() { if (isNgDemoPreview) { delete baseTsConfigData.compilerOptions.paths; - execSync(`ng pack ${ngDemoDir}`); + + console.log('---------------- pack lib ---------------'); + execSync(`ng pack ${ngDemoDir}`, { stdio: 'inherit' }); } dirs.forEach((dir) => { // 去除掉 compilerOptions.paths 中当前组件 demo 中使用的当前组件 lib 库的路径,以便在后续构建当前组件demo 时使用 node_modules 中的当前组件 lib 库 if (!isNgDemoPreview) { delete baseTsConfigData.compilerOptions.paths[`@opentiny/ng-${dir}`]; + + console.log('---------------- pack lib ---------------'); // 打包压缩 lib 库 - execSync(`ng pack ${dir}`); + execSync(`ng pack ${dir}`, { stdio: 'inherit' }); } // 拼凑 npm install 时所需的 lib 库的 tgz 包路径 @@ -86,8 +91,10 @@ function changePathAliasAndInstallLib() { installs += `dist/libs/${dir}/${fileName} `; } }); + + console.log('---------------- install lib ---------------'); // 安装当前组件 lib 库 - execSync(`npm install ${installs} --legacy-peer-deps`); + execSync(`npm install ${installs} --legacy-peer-deps`, { stdio: 'inherit' }); // 将经上面处理过的 tsconfig.base.json 文件内容再写入 fs.writeFileSync(baseTsConfigPath, JSON.stringify(baseTsConfigData, "", "\t")); @@ -111,16 +118,18 @@ function configDemoThemes() { } function buildDemo() { - execSync(`ng build ${name}-demo`); + console.log('---------------- build demo ---------------'); + execSync(`ng build ${name}-demo`, { stdio: 'inherit' }); } function reset() { const param = isNeedThemesBuild() ? ` ${name}` : ''; - execSync(`npm run resetpreview${param}`); + execSync(`npm run resetpreview${param}`, { stdio: 'inherit' }); } function serverDemo() { - execSync(`npx live-server dist/apps/${name} --port=8020`); + console.log('---------------- serve demo ---------------'); + execSync(`npx live-server dist/apps/${name} --port=8020`, { stdio: 'inherit' }); } function isNeedThemesBuild() { diff --git a/build/preview-ngversion-demo.js b/build/preview-ngversion-demo.js new file mode 100644 index 0000000000000000000000000000000000000000..466263002fbcdac9098cd84cb77da05afd7e4514 --- /dev/null +++ b/build/preview-ngversion-demo.js @@ -0,0 +1,78 @@ +/** + * 基于 Angular13 构建的 lib 在 Angular14/15 的应用demo中使用效果(生产环境)预览。 + * 使用方式:在根目录下,执行 `ng preview ng-demo --configuration ng14(或者 ng15)`。 + */ +const path = require('path'); +const fs = require('fs-extra'); +const { execSync } = require('child_process'); + +// 处理输入参数,获取目标组件名 +const args = process.argv; +if (args.length !== 3) { + throw new TypeError('请输入要预览的组件名称!'); + return; +} +const name = args[2]; +console.log('name', name); +// 删除 dist、node_modules/@opentiny 等 +ready(); + +// build 构建 lib +buildLib(); + +// 打包压缩 lib 为 tgz 文件 +packLib(); + +// 在对应目录执行 npm install,并安装 demo 所依赖的 lib 的 tgz 包。 +installLib(); + +// 打包构建 demo +buildDemo(); + +// // 启动 demo +serverDemo(); + + +function ready(){ + execSync('npm run clean', { stdio: 'inherit' }); +} + +function buildLib() { + console.log('---------------- build lib ---------------'); + execSync(`ng build ng`, { stdio: 'inherit' }); +} + +function packLib() { + console.log('---------------- pack lib ---------------'); + execSync('ng pack ng', { stdio: 'inherit' }); +} + +function installLib() { + const distLibsPath = path.resolve(__dirname, '../dist/libs'); + const dirs = fs.readdirSync(distLibsPath); + let installs = ''; + dirs.forEach((dir) => { + // 拼凑 npm install 时所需的 lib 库的 tgz 包路径 + const dirPath = path.resolve(distLibsPath, `${dir}`); + const fileName = fs.readdirSync(dirPath).filter((file) => { + return file.endsWith('.tgz'); + })[0]; + + if (fileName) { + installs += `../../../../dist/libs/${dir}/${fileName} `; + } + }); + console.log('---------------- install lib ---------------'); + // 安装当前组件 lib 库 + execSync(`cd src/ng/ngversion/${name} && npm install --force && npm install ${installs} --legacy-peer-deps`, { stdio: 'inherit' }); +} + +function buildDemo() { + console.log(`---------------- build ${name} demo ---------------`); + execSync(`cd src/ng/ngversion/${name} && npm run build`, { stdio: 'inherit' }); +} + +function serverDemo() { + console.log(`---------------- serve ${name} demo ---------------`); + execSync(`npx live-server dist/apps/${name} --port=8021`, { stdio: 'inherit' }); +} diff --git a/src/accordion/lib/package.json b/src/accordion/lib/package.json index a93ead23fb49565e4408576b3277cc93a19ccc10..67eae5bda84da2a72f4f28c130b426ac228abf65 100644 --- a/src/accordion/lib/package.json +++ b/src/accordion/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-accordion", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/animations": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/actionmenu/lib/package.json b/src/actionmenu/lib/package.json index ad31380ccc9cb53126da1cf7921d90098b139d31..14781cce6ca774e734e3e1c3443f9c8558d904f7 100644 --- a/src/actionmenu/lib/package.json +++ b/src/actionmenu/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-actionmenu", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-menu": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-menu": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-popconfirm": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-popconfirm": "~1.0.0" } } \ No newline at end of file diff --git a/src/alert/demo/src/app/alert/AlertTestModule.ts b/src/alert/demo/src/app/alert/AlertTestModule.ts index a5d5ab0337b86d23f2b6f88f78b1305b9f1c32b3..acbb31fc81e1a7db506a834b6027baaf240d51ae 100644 --- a/src/alert/demo/src/app/alert/AlertTestModule.ts +++ b/src/alert/demo/src/app/alert/AlertTestModule.ts @@ -3,9 +3,6 @@ import { CommonModule } from '@angular/common'; import { RouterModule, Routes } from '@angular/router'; import { TiAlertModule, TiButtonModule, TiSelectModule } from '@opentiny/ng'; -// import { TiAlertModule } from '@opentiny/ng-alert'; -// import { TiButtonModule } from '@opentiny/ng-button'; -// import { TiSelectModule } from '@opentiny/ng-select'; import { DemoLogModule } from '../../../../../ng/demolog/DemoLogModule'; import { AlertTypeComponent } from './AlertTypeComponent'; diff --git a/src/alert/lib/package.json b/src/alert/lib/package.json index b263f01875bd0c71086b1bb0316486a1820d38e1..2913d4cabb389347166de67e5ecf56e8ef48b1f6 100644 --- a/src/alert/lib/package.json +++ b/src/alert/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-alert", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/common": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", "@angular/animations": ">=13.0.0" } } \ No newline at end of file diff --git a/src/anchor/lib/package.json b/src/anchor/lib/package.json index afe74b1d6cdcbe9126132aa96780059ade6e8d9d..9d1c06d197c15e5561ef9e22fb73dea0e4bd1771 100644 --- a/src/anchor/lib/package.json +++ b/src/anchor/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-anchor", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/autocomplete/lib/package.json b/src/autocomplete/lib/package.json index 74f4972101f4efdb55e3e21bfa1040a36abf9670..c5ca756faeae58b85eabb1faa23c769e25eef4c4 100644 --- a/src/autocomplete/lib/package.json +++ b/src/autocomplete/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-autocomplete", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-droplist": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-droplist": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0" } diff --git a/src/avatar/lib/package.json b/src/avatar/lib/package.json index 4335a92b720922ce6fd31841175a061313979e5e..070e5ce3f3d5d1a27b407717c7e4438b5ded688b 100644 --- a/src/avatar/lib/package.json +++ b/src/avatar/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-avatar", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/base/lib/package.json b/src/base/lib/package.json index 81407b441e2242ac83c23949770c23d9ac10bd47..08070d2187243bec75f3ea6d2405d7058f5e68fa 100644 --- a/src/base/lib/package.json +++ b/src/base/lib/package.json @@ -1,9 +1,9 @@ { "name": "@opentiny/ng-base", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/forms": ">=13.0.0" } diff --git a/src/button/lib/package.json b/src/button/lib/package.json index e1dcd37527ee305c5a0a3aedf67a2cda2b6db6c7..e79b35c2f821b98015fdabf186f6b7e058001b88 100644 --- a/src/button/lib/package.json +++ b/src/button/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-button", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-loading": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-loading": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/buttongroup/lib/package.json b/src/buttongroup/lib/package.json index 37f9575f65be174872c6f8c6b6427a14f4657e6c..7ee53fbb4fd336e33a60270965776e136fe72919 100644 --- a/src/buttongroup/lib/package.json +++ b/src/buttongroup/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-buttongroup", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/buttonselect/lib/package.json b/src/buttonselect/lib/package.json index b59b2bbd2a34cf4cb233d7d07da77c3cae3be12d..6a22d5a31df8b1db9e1a92e292e291604873529b 100644 --- a/src/buttonselect/lib/package.json +++ b/src/buttonselect/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-buttonselect", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-droplist": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-droplist": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/card/lib/package.json b/src/card/lib/package.json index 6d97f7ec5be6652b8e7d0e444acfb011ea126455..5c7b10a24d53e40ef153a903187fe4ae68a8ceeb 100644 --- a/src/card/lib/package.json +++ b/src/card/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-card", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/cascader/lib/package.json b/src/cascader/lib/package.json index 284e8deee5fd8bfe7d5977e1edf46c5d7dc33aeb..cc0e0070a01bbaa6a699319296ac61019492ec16 100644 --- a/src/cascader/lib/package.json +++ b/src/cascader/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-cascader", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-dominator": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-droplist": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", + "@opentiny/ng-dominator": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-droplist": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/checkbox/lib/package.json b/src/checkbox/lib/package.json index 710620d2786083c8ed0f111e82e4d380f4f9b19c..387500431b84c642361af926762f03f48d27c0c7 100644 --- a/src/checkbox/lib/package.json +++ b/src/checkbox/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-checkbox", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/collapse/lib/package.json b/src/collapse/lib/package.json index 24e914f989137fbe641080a1cd2431ad020a573c..0b99fbe9eb10ccedc2d6095cb3b537b31afcb487 100644 --- a/src/collapse/lib/package.json +++ b/src/collapse/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-collapse", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/animations": ">=13.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/collapsebox/lib/package.json b/src/collapsebox/lib/package.json index 23c37216e291165147c4e0f0124f7ea8b7f68fc8..f089b9d479dadf2cd7dbb1d880063577a00ee803 100644 --- a/src/collapsebox/lib/package.json +++ b/src/collapsebox/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-collapsebox", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-collapse": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-collapse": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/collapsebutton/lib/package.json b/src/collapsebutton/lib/package.json index 1f17b3d3ee84017856bcd51b0bf5e5999ad6d20d..09290a198a16b17d5faa576d2f7d14bee449ad8f 100644 --- a/src/collapsebutton/lib/package.json +++ b/src/collapsebutton/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-collapsebutton", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/collapsetext/lib/package.json b/src/collapsetext/lib/package.json index 7282dfe16d77c8ff86acf476fa14081f6b94ce22..fcb59a1759c4675e797227da0972eac5ad35f9a9 100644 --- a/src/collapsetext/lib/package.json +++ b/src/collapsetext/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-collapsetext", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0" diff --git a/src/copy/lib/package.json b/src/copy/lib/package.json index ed69f86b344c1373e843b406c0b5a82ab254b35c..e7d379d9b307b6d6aed5fa38a9684c0701ba3c16 100644 --- a/src/copy/lib/package.json +++ b/src/copy/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-copy", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-popup": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-popup": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/crumb/lib/package.json b/src/crumb/lib/package.json index 0a5d447ccc32d606a44fdcb44f960a13e4e583b1..d5f9a13a44f5c3deb14223131d7497226b0391ca 100644 --- a/src/crumb/lib/package.json +++ b/src/crumb/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-crumb", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/router": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/date/lib/package.json b/src/date/lib/package.json index 5cd569c7b94e0bcbf641139fb016adee03323150..abe6e510a68a404cc3691ddeb4da0928bed7ab6d 100644 --- a/src/date/lib/package.json +++ b/src/date/lib/package.json @@ -1,19 +1,19 @@ { "name": "@opentiny/ng-date", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-datepanel": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-datedominator": "~1.0.0-beta.2", - "@opentiny/ng-dateedit": "~1.0.0-beta.2", - "@opentiny/ng-datebase": "~1.0.0-beta.2" + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-datepanel": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-datedominator": "~1.0.0", + "@opentiny/ng-dateedit": "~1.0.0", + "@opentiny/ng-datebase": "~1.0.0" } } \ No newline at end of file diff --git a/src/datebase/lib/package.json b/src/datebase/lib/package.json index a6fbbeede26f31008619e099a2d4befa32f036e2..41cd8f0461a395d951cd3b2426f7ec496ff40200 100644 --- a/src/datebase/lib/package.json +++ b/src/datebase/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-datebase", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-datedominator": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-dateedit": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-datedominator": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-dateedit": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0" } } \ No newline at end of file diff --git a/src/datedominator/lib/package.json b/src/datedominator/lib/package.json index 4fa4ba21b5a0ec6d9ee4c50c2e462521e2f9e175..ac6e4403158a404cd094ff6c4ac68176832808f6 100644 --- a/src/datedominator/lib/package.json +++ b/src/datedominator/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-datedominator", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/dateedit/lib/package.json b/src/dateedit/lib/package.json index 3adb44f3c744d03296d989562fc638f6c6834026..85bfaa928118e7aaa60c1d3e3cff30d3d29c7a82 100644 --- a/src/dateedit/lib/package.json +++ b/src/dateedit/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-dateedit", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/datepanel/lib/package.json b/src/datepanel/lib/package.json index 5f72638cee4c065374ced25dbc498d8c62fce1fb..10c532da6480afb25618e00d2fad2b90767dd47a 100644 --- a/src/datepanel/lib/package.json +++ b/src/datepanel/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-datepanel", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-datebase": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-datebase": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/forms": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-list": "~1.0.0" } } \ No newline at end of file diff --git a/src/daterange/lib/package.json b/src/daterange/lib/package.json index 5568c1627779ee312f65e49fc98d48a46ee1a60c..ab06afa52f5704ae2793bdf2c3ddc42fc753be89 100644 --- a/src/daterange/lib/package.json +++ b/src/daterange/lib/package.json @@ -1,19 +1,19 @@ { "name": "@opentiny/ng-daterange", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-datebase": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-datebase": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-datepanel": "~1.0.0-beta.2", - "@opentiny/ng-dateedit": "~1.0.0-beta.2", - "@opentiny/ng-datedominator": "~1.0.0-beta.2" + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-datepanel": "~1.0.0", + "@opentiny/ng-dateedit": "~1.0.0", + "@opentiny/ng-datedominator": "~1.0.0" } } \ No newline at end of file diff --git a/src/datetime/lib/package.json b/src/datetime/lib/package.json index 711d617c96b7d0b7ec678216c2a419ba19e507be..f8ca07d16a41f8dbf82575cd23525f1342c8e516 100644 --- a/src/datetime/lib/package.json +++ b/src/datetime/lib/package.json @@ -1,22 +1,22 @@ { "name": "@opentiny/ng-datetime", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-datebase": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-datebase": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-datepanel": "~1.0.0-beta.2", - "@opentiny/ng-dateedit": "~1.0.0-beta.2", - "@opentiny/ng-datedominator": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-time": "~1.0.0-beta.2", - "@opentiny/ng-select": "~1.0.0-beta.2" + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-datepanel": "~1.0.0", + "@opentiny/ng-dateedit": "~1.0.0", + "@opentiny/ng-datedominator": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-time": "~1.0.0", + "@opentiny/ng-select": "~1.0.0" } } \ No newline at end of file diff --git a/src/datetimerange/lib/package.json b/src/datetimerange/lib/package.json index d1f95306ae66bc438459cf6b45e294234c83c052..4177479ae17729e167d87af44f1d5847dddc40cb 100644 --- a/src/datetimerange/lib/package.json +++ b/src/datetimerange/lib/package.json @@ -1,22 +1,22 @@ { "name": "@opentiny/ng-datetimerange", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-datebase": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-datebase": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-datepanel": "~1.0.0-beta.2", - "@opentiny/ng-dateedit": "~1.0.0-beta.2", - "@opentiny/ng-time": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-datedominator": "~1.0.0-beta.2", - "@opentiny/ng-select": "~1.0.0-beta.2" + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-datepanel": "~1.0.0", + "@opentiny/ng-dateedit": "~1.0.0", + "@opentiny/ng-time": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-datedominator": "~1.0.0", + "@opentiny/ng-select": "~1.0.0" } } \ No newline at end of file diff --git a/src/dominator/lib/package.json b/src/dominator/lib/package.json index c08b429f66bd9a7ec1ce6b7e0ca211df0d103121..34b6222ed7284242b32c59694d8df2082ca891cd 100644 --- a/src/dominator/lib/package.json +++ b/src/dominator/lib/package.json @@ -1,16 +1,16 @@ { "name": "@opentiny/ng-dominator", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-tag": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-tag": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/drag/lib/package.json b/src/drag/lib/package.json index 7e6d4c860762463e3176227851952421d8ae9112..e2b1665738fb9ab16e1b2513a905e22877a0e7ab 100644 --- a/src/drag/lib/package.json +++ b/src/drag/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-drag", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/drop/lib/package.json b/src/drop/lib/package.json index be1a1564a7b35c0db64ca62d7cdc9939cd4691a4..742970912bbfa05088e6458f2ec409cffe94f0df 100644 --- a/src/drop/lib/package.json +++ b/src/drop/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-drop", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0" } diff --git a/src/droplist/lib/package.json b/src/droplist/lib/package.json index 45fbd62db1a17f7a0fef9852561a1abf069ef5c3..fd3dbbb5e65bcfff46d6ccf9d540a884e9d5658e 100644 --- a/src/droplist/lib/package.json +++ b/src/droplist/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-droplist", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/dropsearch/lib/package.json b/src/dropsearch/lib/package.json index 387135d2f93528c45133ecb16753cdfb869e1cc7..a48f87a29715c61bbdb83af7d84acb79f68cf227 100644 --- a/src/dropsearch/lib/package.json +++ b/src/dropsearch/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-dropsearch", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-searchbox": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-droplist": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-searchbox": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-droplist": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/foldtext/lib/package.json b/src/foldtext/lib/package.json index 56a5ac44d1732102ac16155b607d5fd7632f58ed..9aff5a21c918f786701f83c3539fd11203fcb570 100644 --- a/src/foldtext/lib/package.json +++ b/src/foldtext/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-foldtext", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/formfield/lib/package.json b/src/formfield/lib/package.json index a2ae05da6081098dfeff14dc0e333bb20ac93970..079d123c35195e2f6c2b128f1b087f6b3b8720be 100644 --- a/src/formfield/lib/package.json +++ b/src/formfield/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-formfield", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-include": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-include": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/grid/lib/package.json b/src/grid/lib/package.json index c6328a3816f2622622bfbaa2784b1ac000ca077d..1315a1b1b3be050b331ac24e42adc0a12845bb1e 100644 --- a/src/grid/lib/package.json +++ b/src/grid/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-grid", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0" diff --git a/src/guides/lib/package.json b/src/guides/lib/package.json index c5e68eb7920f2ac8c027d6e8d661853b4ceb50ca..3af9de1a8bf9afe5b389a9685f530c189a6e9a0f 100644 --- a/src/guides/lib/package.json +++ b/src/guides/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-guides", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0" } } \ No newline at end of file diff --git a/src/guidesteps/lib/package.json b/src/guidesteps/lib/package.json index 8e9f9842e4ae92c8248125880558b8e8887fbccb..5ed151a4460840c063c33465fe73b2ddfe645f5a 100644 --- a/src/guidesteps/lib/package.json +++ b/src/guidesteps/lib/package.json @@ -1,9 +1,9 @@ { "name": "@opentiny/ng-guidesteps", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0" } } \ No newline at end of file diff --git a/src/halfmodal/demo/src/app/halfmodal/HalfmodalTestModule.ts b/src/halfmodal/demo/src/app/halfmodal/HalfmodalTestModule.ts index d8aa16ead2fdcc578b94ada641b73b48ab926eef..a71f70db66de852bfef5dd768dacad7f9c6d3203 100644 --- a/src/halfmodal/demo/src/app/halfmodal/HalfmodalTestModule.ts +++ b/src/halfmodal/demo/src/app/halfmodal/HalfmodalTestModule.ts @@ -73,8 +73,7 @@ import { HalfmodalServiceTestComponent } from './HalfmodalServiceTestComponent'; ContentComponent, HalfmodalAsyncComponent, HalfmodalServiceTestComponent - ], - entryComponents: [ContentComponent] + ] }) export class HalfmodalTestModule { public static readonly ROUTES: Routes = [ diff --git a/src/halfmodal/lib/package.json b/src/halfmodal/lib/package.json index 869a9fc96fa61fe7401c0f04d08800fed114ebe8..aa7db6e33f8f24aeba9b0e0b4a82ef512d3ac419 100644 --- a/src/halfmodal/lib/package.json +++ b/src/halfmodal/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-halfmodal", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/animations": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-popup": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-popup": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/icon/lib/package.json b/src/icon/lib/package.json index 11499f142bd052c05790f00d79e7b05824b96c90..8ed167f735e35559ff4ec40e0d74ddfd27afb266 100644 --- a/src/icon/lib/package.json +++ b/src/icon/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-icon", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/iconaction/lib/package.json b/src/iconaction/lib/package.json index f1d1302a777813c98f56ebc5fbc9d6c159d7b167..848b518c0049da05fe55e8c7a59e772d23002cce 100644 --- a/src/iconaction/lib/package.json +++ b/src/iconaction/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-iconaction", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/imagepreview/lib/package.json b/src/imagepreview/lib/package.json index 071511e21639568b6cb92b7f0892ab69173fca6a..78be125bbe184976c9ca7238d052c86a6fce0c5e 100644 --- a/src/imagepreview/lib/package.json +++ b/src/imagepreview/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-imagepreview", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/platform-browser": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-modal": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-modal": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/include/lib/package.json b/src/include/lib/package.json index 62811aa171e716636db2b8a49629dbdb35b6915f..521bd97d25b8e07d5f1ceaa4afe000fdc2465ab2 100644 --- a/src/include/lib/package.json +++ b/src/include/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-include", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/inputnumber/lib/package.json b/src/inputnumber/lib/package.json index 63d8dcc0702c5107ce6c4c4a3462860ad1096c49..26bb6c7289283a44721e8ac956bec432074a66d4 100644 --- a/src/inputnumber/lib/package.json +++ b/src/inputnumber/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-inputnumber", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/forms": ">=13.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/intro/lib/package.json b/src/intro/lib/package.json index 0ab330adb9fa375bb2752e42db57cf4cd3847bb3..354244bf1a3928d6ada7619d231af47f3cd37c94 100644 --- a/src/intro/lib/package.json +++ b/src/intro/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-intro", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-modal": "~1.0.0-beta.2", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-modal": "~1.0.0", + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/ip/lib/package.json b/src/ip/lib/package.json index 0c9ab13a91c54f117919c760b0e23e912aea21db..8433e41d5203bb445f4a1137baf0c9e45bf40896 100644 --- a/src/ip/lib/package.json +++ b/src/ip/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-ip", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/forms": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/ipsection/lib/package.json b/src/ipsection/lib/package.json index 22d0a56ddb787c203d9c7ab4ebba1ccd2a8906c4..1d629f2e14b115928ce65940a184ca8be74e256b 100644 --- a/src/ipsection/lib/package.json +++ b/src/ipsection/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-ipsection", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-validation": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-validation": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-select": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2" + "@opentiny/ng-select": "~1.0.0", + "@opentiny/ng-text": "~1.0.0" } } \ No newline at end of file diff --git a/src/labeleditor/demo/src/app/labeleditor/LabeleditorTestModule.ts b/src/labeleditor/demo/src/app/labeleditor/LabeleditorTestModule.ts index 7730fc16e977d43a3c89e35fcd0b86fc66c6261e..f3298560c88d768d487d745e514e7b51b990812d 100644 --- a/src/labeleditor/demo/src/app/labeleditor/LabeleditorTestModule.ts +++ b/src/labeleditor/demo/src/app/labeleditor/LabeleditorTestModule.ts @@ -42,8 +42,7 @@ import { LabeleditorIconTipContextComponent, TemplateComponent } from './Labeled TemplateComponent, LabeleditorValidationAsyncComponent, LabeleditorIconTipContextComponent - ], - entryComponents: [TemplateComponent] + ] }) export class LabeleditorTestModule { static readonly ROUTES: Routes = [ diff --git a/src/labeleditor/lib/package.json b/src/labeleditor/lib/package.json index 9f1b374b5ef562972b59517d95e4687ae80b8724..336726e48105df431dab97b3b288f3e06bde5561 100644 --- a/src/labeleditor/lib/package.json +++ b/src/labeleditor/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-labeleditor", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/forms": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-validation": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-textarea": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-validation": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-textarea": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/layout/lib/package.json b/src/layout/lib/package.json index 8db5dd0cc1852fac92ecb1781144ec0804b070f7..e02ecb80a7070ecf654a85a77255c111e203d806 100644 --- a/src/layout/lib/package.json +++ b/src/layout/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-layout", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", diff --git a/src/leftmenu/lib/package.json b/src/leftmenu/lib/package.json index c7b7e078854cc3ef265d5f75f2303188e2d360d1..4fdceb592c7ba6fa69d0500df75c459c5ee61d75 100644 --- a/src/leftmenu/lib/package.json +++ b/src/leftmenu/lib/package.json @@ -1,16 +1,16 @@ { "name": "@opentiny/ng-leftmenu", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/router": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/platform-browser": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/leftmenuthin/lib/package.json b/src/leftmenuthin/lib/package.json index e4339ba67717ed88e9897b01d5927c867f91cac3..588579998580a98fa322f646d2bc409b0a9d530b 100644 --- a/src/leftmenuthin/lib/package.json +++ b/src/leftmenuthin/lib/package.json @@ -1,8 +1,13 @@ { "name": "@opentiny/ng-leftmenuthin", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/common": ">=13.0.0", - "@angular/core": ">=13.0.0" + "@angular/core": ">=13.0.0", + "@angular/router": ">=13.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } diff --git a/src/linkbutton/lib/package.json b/src/linkbutton/lib/package.json index 5eb066b1246847dcf7aa6dfbe44124c149c59c70..7a1b6198f16436b9565d8964a8700d7f12cda71c 100644 --- a/src/linkbutton/lib/package.json +++ b/src/linkbutton/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-linkbutton", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/list/lib/package.json b/src/list/lib/package.json index 2a97ab30eb208f18ecf08e56f222dcc5a25d7eb7..2e29ba562ed1d349dbc902ce468fed0e15f45cfc 100644 --- a/src/list/lib/package.json +++ b/src/list/lib/package.json @@ -1,16 +1,16 @@ { "name": "@opentiny/ng-list", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/cdk": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-loading": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-loading": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/loading/lib/package.json b/src/loading/lib/package.json index 89337102393b7026ec4282919e6a25c8b11887ea..b83527e5c237da85fe972fcde82b704c131b0d90 100644 --- a/src/loading/lib/package.json +++ b/src/loading/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-loading", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/locale/lib/package.json b/src/locale/lib/package.json index 8e8e106290cdfc029d6f97ff8d5fe0e260f06dd6..9bf9ff76f1b85c0ee02a5c9582c1d6ae1da20c6a 100644 --- a/src/locale/lib/package.json +++ b/src/locale/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-locale", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/common": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/menu/lib/package.json b/src/menu/lib/package.json index 2926f86aab6ac61157cf98ae28ba18044617e39a..83a467463548cccdfc6383eae0331e390572bc2b 100644 --- a/src/menu/lib/package.json +++ b/src/menu/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-menu", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-list": "~1.0.0-beta.2", + "@opentiny/ng-list": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0" } } \ No newline at end of file diff --git a/src/message/demo/src/app/message/MessageTestModule.ts b/src/message/demo/src/app/message/MessageTestModule.ts index e291645c85f9fe1235fe7387a53fa5653adba726..70e591fd71b11bea1114902b69a216ba0108201a 100644 --- a/src/message/demo/src/app/message/MessageTestModule.ts +++ b/src/message/demo/src/app/message/MessageTestModule.ts @@ -33,8 +33,7 @@ import { MessageSecurityComponent } from './MessageSecurityComponent'; MessageTitleComponent, MessageIdComponent, MessageSecurityComponent - ], - entryComponents: [TestComponent] + ] }) export class MessageTestModule { static readonly LINKS: Array = [ diff --git a/src/message/lib/package.json b/src/message/lib/package.json index c1dbb2bcc884f71bfc45a85bedacd161a9d21902..86a24ee254ab533ea730962ec866bb776ee293c1 100644 --- a/src/message/lib/package.json +++ b/src/message/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-message", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-modal": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-modal": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-popup": "~1.0.0-beta.2" + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-popup": "~1.0.0" } } \ No newline at end of file diff --git a/src/message/lib/src/TiMessageModule.ts b/src/message/lib/src/TiMessageModule.ts index c785d06b3350770c7adf4eb41f722612969624b2..90c45690df31250fc6d2352ab2f1975f57a5e0c4 100644 --- a/src/message/lib/src/TiMessageModule.ts +++ b/src/message/lib/src/TiMessageModule.ts @@ -25,8 +25,7 @@ import { locales } from './i18n'; */ @NgModule({ imports: [CommonModule, TiModalModule, TiButtonModule, TiIconModule], - declarations: [TiMessageComponent, TiTranscludeDirective, TiContentWrapperComponent], - entryComponents: [TiMessageComponent, TiContentWrapperComponent] + declarations: [TiMessageComponent, TiTranscludeDirective, TiContentWrapperComponent] }) export class TiMessageModule { constructor() { diff --git a/src/modal/demo/src/app/modal/ModalTestModule.ts b/src/modal/demo/src/app/modal/ModalTestModule.ts index 5d19f3df4afc2fc4de3aea41186d5f1f6daa0cac..17e802016c3e8b33687d04b71f43ebc4c84236d9 100644 --- a/src/modal/demo/src/app/modal/ModalTestModule.ts +++ b/src/modal/demo/src/app/modal/ModalTestModule.ts @@ -67,8 +67,7 @@ import { ModalEscComponent } from './ModalEscComponent'; ModalDraggableComponent, ModalHeaderAlignComponent, ModalEscComponent - ], - entryComponents: [TestComponent, ModalTestComponent] + ] }) export class ModalTestModule { static readonly LINKS: Array = [ diff --git a/src/modal/demo/src/app/modal/webdoc/modal-demos.js b/src/modal/demo/src/app/modal/webdoc/modal-demos.js index 5c7c2f84f92d6fd14c6b650c4fddcb7b2ec7c124..3031961bd0f014d78171227b8839897583357ac8 100644 --- a/src/modal/demo/src/app/modal/webdoc/modal-demos.js +++ b/src/modal/demo/src/app/modal/webdoc/modal-demos.js @@ -5,134 +5,121 @@ export default { demoId: 'modal-content-temp', name: { 'zh-CN': '弹出框内容为 template 形式', - 'en-US': 'template', + 'en-US': 'template' }, desc: { 'zh-CN': '

使用了ng-template方式自定义弹出框模板。

', - 'en-US': '

template

', + 'en-US': '

template

' }, - apis: ['TiModalConfig.properties.id'], + apis: ['TiModalConfig.properties.id'] }, { demoId: 'modal-content-comp', name: { 'zh-CN': '弹出框内容定义为组件形式', - 'en-US': 'component', + 'en-US': 'component' }, desc: { - 'zh-CN': - '

弹出框内容定义为组件形式时,弹出框中的内容组件需要在ngModule中定义其为entryComponents

', - 'en-US': '

component

', - }, - apis: [ - 'TiModalConfig.properties.context', - 'TiModalConfig.methods.close', - 'TiModalConfig.methods.dismiss', - ], + 'zh-CN': '

弹出框内容定义为组件形式时,open 方法传入对应的组件类即可。

', + 'en-US': '

component

' + }, + apis: ['TiModalConfig.properties.context', 'TiModalConfig.methods.close', 'TiModalConfig.methods.dismiss'] }, { demoId: 'modal-class', name: { 'zh-CN': '自定义弹出框样式', - 'en-US': 'modalClass', + 'en-US': 'modalClass' }, desc: { 'zh-CN': '

通过modalClass自定义弹出框样式。

', - 'en-US': 'modalClass', + 'en-US': 'modalClass' }, - apis: ['TiModalConfig.properties.modalClass'], + apis: ['TiModalConfig.properties.modalClass'] }, { demoId: 'modal-animation', name: { 'zh-CN': '显示/隐藏不带动画效果', - 'en-US': 'animation', + 'en-US': 'animation' }, desc: { - 'zh-CN': - '

通过animation控制弹出框显示/隐藏是否带动画效果。

', - 'en-US': 'animation', + 'zh-CN': '

通过animation控制弹出框显示/隐藏是否带动画效果。

', + 'en-US': 'animation' }, - apis: ['TiModalConfig.properties.animation'], + apis: ['TiModalConfig.properties.animation'] }, { demoId: 'modal-backdrop', name: { 'zh-CN': '不呈现模态背景', - 'en-US': 'backdrop', + 'en-US': 'backdrop' }, desc: { 'zh-CN': '

通过backdrop控制是否呈现模态背景。

', - 'en-US': 'backdrop', + 'en-US': 'backdrop' }, - apis: ['TiModalConfig.properties.backdrop'], + apis: ['TiModalConfig.properties.backdrop'] }, { demoId: 'modal-close-icon', name: { 'zh-CN': '头部不呈现关闭按钮', - 'en-US': 'closeIcon', + 'en-US': 'closeIcon' }, desc: { 'zh-CN': '

通过closeIcon头部是否有关闭按钮。

', - 'en-US': 'closeIcon', + 'en-US': 'closeIcon' }, - apis: ['TiModalConfig.properties.closeIcon'], + apis: ['TiModalConfig.properties.closeIcon'] }, { demoId: 'modal-draggable', name: { 'zh-CN': '不可拖拽', - 'en-US': 'draggable', + 'en-US': 'draggable' }, desc: { 'zh-CN': '

通过draggable控制弹出框是否可拖拽。

', - 'en-US': 'draggable', + 'en-US': 'draggable' }, - apis: ['TiModalConfig.properties.draggable'], + apis: ['TiModalConfig.properties.draggable'] }, { demoId: 'modal-esc', name: { 'zh-CN': 'Esc 键弹出框不关闭', - 'en-US': 'closeOnEsc', + 'en-US': 'closeOnEsc' }, desc: { - 'zh-CN': - '

通过closeOnEsc控制按 Esc 键弹出框是否关闭。

', - 'en-US': 'closeOnEsc', + 'zh-CN': '

通过closeOnEsc控制按 Esc 键弹出框是否关闭。

', + 'en-US': 'closeOnEsc' }, - apis: ['TiModalConfig.properties.closeOnEsc'], + apis: ['TiModalConfig.properties.closeOnEsc'] }, { demoId: 'modal-header-align', name: { 'zh-CN': '头部水平居中', - 'en-US': 'headerAlign', + 'en-US': 'headerAlign' }, desc: { - 'zh-CN': - '

通过headerAlign配置头部内容水平对齐方式。

', - 'en-US': 'headerAlign', + 'zh-CN': '

通过headerAlign配置头部内容水平对齐方式。

', + 'en-US': 'headerAlign' }, - apis: ['TiModalConfig.properties.headerAlign'], + apis: ['TiModalConfig.properties.headerAlign'] }, { demoId: 'modal-event', name: { 'zh-CN': '事件', - 'en-US': 'beforeClose', + 'en-US': 'beforeClose' }, desc: { - 'zh-CN': - '

通过beforeClose配置关闭弹出框前的回调函数。

', - 'en-US': 'beforeClose', - }, - apis: [ - 'TiModalConfig.methods.beforeClose', - 'TiModalConfig.methods.close', - 'TiModalConfig.methods.dismiss', - ], - }, - ], + 'zh-CN': '

通过beforeClose配置关闭弹出框前的回调函数。

', + 'en-US': 'beforeClose' + }, + apis: ['TiModalConfig.methods.beforeClose', 'TiModalConfig.methods.close', 'TiModalConfig.methods.dismiss'] + } + ] }; diff --git a/src/modal/lib/package.json b/src/modal/lib/package.json index 0e2b4aa41e2229a92eebe05f1f34f2e9d645da87..2301cdf27a03453bf1c0722033e9ef86e296a92d 100644 --- a/src/modal/lib/package.json +++ b/src/modal/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-modal", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/router": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/animations": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-popup": "~1.0.0-beta.2", - "@opentiny/ng-drag": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-popup": "~1.0.0", + "@opentiny/ng-drag": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/modal/lib/src/TiModalComponent.ts b/src/modal/lib/src/TiModalComponent.ts index f9eacd635613310e2b18920998fce6942c0ff49c..22d0ebbaba2a577d893d6f0124b4354f8c970f98 100644 --- a/src/modal/lib/src/TiModalComponent.ts +++ b/src/modal/lib/src/TiModalComponent.ts @@ -22,7 +22,7 @@ import { ViewChild, ViewEncapsulation } from '@angular/core'; -import { NavigationEnd, Router, RouterEvent } from '@angular/router'; +import { NavigationEnd, Router } from '@angular/router'; import { filter } from 'rxjs/operators'; import { Subscription } from 'rxjs'; import { DOCUMENT } from '@angular/common'; @@ -124,7 +124,7 @@ export class TiModalComponent extends TiBaseComponent implements AfterContentIni protected renderer: Renderer2, @Optional() private router: Router, protected changeDetectorRef: ChangeDetectorRef, - @Inject(DOCUMENT) private document + @Inject(DOCUMENT) private document: any ) { super(ele, renderer); } @@ -214,15 +214,17 @@ export class TiModalComponent extends TiBaseComponent implements AfterContentIni return position; } }; - // 监听路由变化,关闭弹出框:hashchange监听不到通过routerLink/navigate路由跳转的场景 - this.modalSubscribe = this.router?.events.pipe(filter((event: RouterEvent) => event instanceof NavigationEnd)).subscribe(() => { - this.modalInstance._remove(); - }); + // 监听路由变化,关闭弹出框:hashchange监听不到通过routerLink/navigate路由跳转的场景 // 升级 ng16 去除 RouterEvent + this.modalSubscribe = this.router?.events + .pipe(filter((event: any /* : RouterEvent */) => event instanceof NavigationEnd)) + .subscribe(() => { + this.modalInstance._remove(); + }); } ngOnDestroy(): void { super.ngOnDestroy(); - this.modalSubscribe && this.modalSubscribe.unsubscribe(); + this.modalSubscribe?.unsubscribe(); } public dismissModal(): void { diff --git a/src/modal/lib/src/TiModalModule.ts b/src/modal/lib/src/TiModalModule.ts index b15e4d7a45cca2241fcc850f5a83f7559c2ff52d..a45c6e758f036508172a064b52af77fbfdf29c61 100644 --- a/src/modal/lib/src/TiModalModule.ts +++ b/src/modal/lib/src/TiModalModule.ts @@ -42,8 +42,7 @@ import { TiOutlineModule } from '@opentiny/ng-outline'; TiModalFooterComponent, TiModalBodyComponent, TiBackdropComponent - ], - entryComponents: [TiModalComponent, TiModalNoAnimationComponent, TiBackdropNoAnimationComponent, TiBackdropComponent] + ] }) export class TiModalModule {} diff --git a/src/nav/lib/package.json b/src/nav/lib/package.json index da32e36f9e61d7a1968fb3555fb49a9483a13905..e7fdd79d02956967830cf75a8a5e01ef7435a8f3 100644 --- a/src/nav/lib/package.json +++ b/src/nav/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-nav", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", diff --git a/src/ng/demo/project.json b/src/ng/demo/project.json index 0cb3dc0e6d009d35a179db20c52e7d7dfd04de3c..fa73cd1337ec83521097c2c65b081771c5c04e81 100644 --- a/src/ng/demo/project.json +++ b/src/ng/demo/project.json @@ -95,13 +95,21 @@ }, "preview": { "executor": "@nrwl/workspace:run-commands", - "options": { - "commands": [ - { - "command": "node build/preview-demo.js ng" - } - ] - } + "configurations": { + "ng13": { + "command": "node build/preview-demo.js ng" + }, + "ng14": { + "command": "node build/preview-ngversion-demo.js ng14" + }, + "ng15": { + "command": "node build/preview-ngversion-demo.js ng15" + }, + "ng16": { + "command": "node build/preview-ngversion-demo.js ng16" + } + }, + "defaultConfiguration": "ng13" }, "test": { "builder": "@angular-devkit/build-angular:karma", diff --git a/src/ng/demo/src/webdoc/introduce.md b/src/ng/demo/src/webdoc/introduce.md index d4668a9d4ffb099d52fb3a68ee207dadd7eb8832..7706683d19bd2783bde11bbd74b22a666d66e880 100644 --- a/src/ng/demo/src/webdoc/introduce.md +++ b/src/ng/demo/src/webdoc/introduce.md @@ -24,7 +24,7 @@ title: 介绍 | TinyNG ### 支持环境 -| Edge
Edge | Firefox
Firefox | Chrome
Chrome | Safari
Safari | +|Edge |Firefox | Chrome | Safari | | --------- | --------- | --------- | --------- | | last 3 versions | last 3 versions | last 3 versions | last 2 versions | diff --git a/src/ng/lib/README.md b/src/ng/lib/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f38049832b4222e746a2de4c77be8a7c085dd6d3 --- /dev/null +++ b/src/ng/lib/README.md @@ -0,0 +1,32 @@ +--- +title: 介绍 | TinyNG +--- + +# 介绍 + +`TinyNG`是基于 Angular + TypeScript 的 web UI 组件库,可用于研发企业级前端页面。 + +### 特性 + +- 适合企业级 PC 端产品的交互语言和视觉风格。 + +- 70+ 开箱即用的高质量 Angular 组件库,几乎满足所有业务场景。 + +- 使用 TypeScript 进行开发,提供完整的类型定义。 + +- 支持 OnPush 模式,性能卓越。 + +- 支持 5 种国际化语言。 + +- 通过CSS variables 提供超细粒度的主题定制能力。 + + + +### 支持环境 + +Edge | Firefox |Chrome | Safari | +| --------- | --------- | --------- | --------- | +| last 3 versions | last 3 versions | last 3 versions | last 2 versions | + +### 支持 Angular 版本 +目前支持 Angular 版本 `>=13.0.0`。 diff --git a/src/ng/lib/ng-package.json b/src/ng/lib/ng-package.json index e740ca55b50f7c54bb250b3d033bce5254c9bdd9..af708b4f97baa32b7fd4913b1b46bb5d78f90b8b 100644 --- a/src/ng/lib/ng-package.json +++ b/src/ng/lib/ng-package.json @@ -3,5 +3,6 @@ "dest": "../../../dist/libs/ng", "lib": { "entryFile": "index.ts" - } + }, + "assets": ["README.md"] } diff --git a/src/ng/lib/package.json b/src/ng/lib/package.json index 2b62a0304f65838394f903a59a1b296bffef4015..b2b5abda42b422495adb4e0d5e23c7834080c343 100644 --- a/src/ng/lib/package.json +++ b/src/ng/lib/package.json @@ -1,111 +1,129 @@ { "name": "@opentiny/ng", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", + "description": "opentiny angular components", + "keywords": [ + "angular", + "components", + "typescript", + "ui", + "component", + "opentiny", + "ng" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/opentiny/ng.git" + }, + "homepage": "https://opentiny.design/tiny-ng/overview", + "engines": { + "npm": ">=7.0.0" + }, "peerDependencies": { "@angular/common": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-accordion": "1.0.0-beta.2", - "@opentiny/ng-actionmenu": "1.0.0-beta.2", - "@opentiny/ng-alert": "1.0.0-beta.2", - "@opentiny/ng-anchor": "1.0.0-beta.2", - "@opentiny/ng-autocomplete": "1.0.0-beta.2", - "@opentiny/ng-avatar": "1.0.0-beta.2", - "@opentiny/ng-base": "1.0.0-beta.2", - "@opentiny/ng-button": "1.0.0-beta.2", - "@opentiny/ng-buttongroup": "1.0.0-beta.2", - "@opentiny/ng-card": "1.0.0-beta.2", - "@opentiny/ng-cascader": "1.0.0-beta.2", - "@opentiny/ng-checkbox": "1.0.0-beta.2", - "@opentiny/ng-collapse": "1.0.0-beta.2", - "@opentiny/ng-collapsebox": "1.0.0-beta.2", - "@opentiny/ng-collapsebutton": "1.0.0-beta.2", - "@opentiny/ng-copy": "1.0.0-beta.2", - "@opentiny/ng-crumb": "1.0.0-beta.2", - "@opentiny/ng-date": "1.0.0-beta.2", - "@opentiny/ng-datebase": "1.0.0-beta.2", - "@opentiny/ng-datedominator": "1.0.0-beta.2", - "@opentiny/ng-dateedit": "1.0.0-beta.2", - "@opentiny/ng-datepanel": "1.0.0-beta.2", - "@opentiny/ng-daterange": "1.0.0-beta.2", - "@opentiny/ng-datetime": "1.0.0-beta.2", - "@opentiny/ng-datetimerange": "1.0.0-beta.2", - "@opentiny/ng-dominator": "1.0.0-beta.2", - "@opentiny/ng-drag": "1.0.0-beta.2", - "@opentiny/ng-drop": "1.0.0-beta.2", - "@opentiny/ng-droplist": "1.0.0-beta.2", - "@opentiny/ng-dropsearch": "1.0.0-beta.2", - "@opentiny/ng-formfield": "1.0.0-beta.2", - "@opentiny/ng-foldtext": "1.0.0-beta.2", - "@opentiny/ng-grid": "1.0.0-beta.2", - "@opentiny/ng-halfmodal": "1.0.0-beta.2", - "@opentiny/ng-icon": "1.0.0-beta.2", - "@opentiny/ng-iconaction": "1.0.0-beta.2", - "@opentiny/ng-imagepreview": "1.0.0-beta.2", - "@opentiny/ng-include": "1.0.0-beta.2", - "@opentiny/ng-inputnumber": "1.0.0-beta.2", - "@opentiny/ng-intro": "1.0.0-beta.2", - "@opentiny/ng-ip": "1.0.0-beta.2", - "@opentiny/ng-ipsection": "1.0.0-beta.2", - "@opentiny/ng-layout": "1.0.0-beta.2", - "@opentiny/ng-leftmenu": "1.0.0-beta.2", - "@opentiny/ng-leftmenuthin": "1.0.0-beta.2", - "@opentiny/ng-list": "1.0.0-beta.2", - "@opentiny/ng-loading": "1.0.0-beta.2", - "@opentiny/ng-locale": "1.0.0-beta.2", - "@opentiny/ng-linkbutton": "1.0.0-beta.2", - "@opentiny/ng-menu": "1.0.0-beta.2", - "@opentiny/ng-message": "1.0.0-beta.2", - "@opentiny/ng-modal": "1.0.0-beta.2", - "@opentiny/ng-nav": "1.0.0-beta.2", - "@opentiny/ng-notification": "1.0.0-beta.2", - "@opentiny/ng-outline": "1.0.0-beta.2", - "@opentiny/ng-overflow": "1.0.0-beta.2", - "@opentiny/ng-pagination": "1.0.0-beta.2", - "@opentiny/ng-popconfirm": "1.0.0-beta.2", - "@opentiny/ng-popup": "1.0.0-beta.2", - "@opentiny/ng-progressbar": "1.0.0-beta.2", - "@opentiny/ng-progresspie": "1.0.0-beta.2", - "@opentiny/ng-radio": "1.0.0-beta.2", - "@opentiny/ng-rate": "1.0.0-beta.2", - "@opentiny/ng-renderer": "1.0.0-beta.2", - "@opentiny/ng-rights": "1.0.0-beta.2", - "@opentiny/ng-score": "1.0.0-beta.2", - "@opentiny/ng-scroll": "1.0.0-beta.2", - "@opentiny/ng-searchbox": "1.0.0-beta.2", - "@opentiny/ng-select": "1.0.0-beta.2", - "@opentiny/ng-skeleton": "1.0.0-beta.2", - "@opentiny/ng-slider": "1.0.0-beta.2", - "@opentiny/ng-spinner": "1.0.0-beta.2", - "@opentiny/ng-steps": "1.0.0-beta.2", - "@opentiny/ng-subtitle": "1.0.0-beta.2", - "@opentiny/ng-swiper": "1.0.0-beta.2", - "@opentiny/ng-switch": "1.0.0-beta.2", - "@opentiny/ng-tab": "1.0.0-beta.2", - "@opentiny/ng-table": "1.0.0-beta.2", - "@opentiny/ng-tag": "1.0.0-beta.2", - "@opentiny/ng-tagsinput": "1.0.0-beta.2", - "@opentiny/ng-text": "1.0.0-beta.2", - "@opentiny/ng-textarea": "1.0.0-beta.2", - "@opentiny/ng-time": "1.0.0-beta.2", - "@opentiny/ng-timeline": "1.0.0-beta.2", - "@opentiny/ng-tip": "1.0.0-beta.2", - "@opentiny/ng-transfer": "1.0.0-beta.2", - "@opentiny/ng-tree": "1.0.0-beta.2", - "@opentiny/ng-treeselect": "1.0.0-beta.2", - "@opentiny/ng-upload": "1.0.0-beta.2", - "@opentiny/ng-utils": "1.0.0-beta.2", - "@opentiny/ng-validation": "1.0.0-beta.2", - "@opentiny/ng-zoom": "1.0.0-beta.2", - "@opentiny/ng-themes": "1.0.0-beta.2", - "@opentiny/ng-guides": "1.0.0-beta.2", - "@opentiny/ng-labeleditor": "1.0.0-beta.2", - "@opentiny/ng-phonenumber": "1.0.0-beta.2", - "@opentiny/ng-selectgroup": "1.0.0-beta.2", - "@opentiny/ng-productpreview": "1.0.0-beta.2", - "@opentiny/ng-buttonselect": "1.0.0-beta.2", - "@opentiny/ng-collapsetext": "1.0.0-beta.2", - "@opentiny/ng-guidesteps": "1.0.0-beta.2", - "@opentiny/ng-path": "1.0.0-beta.2" + "@opentiny/ng-accordion": "1.0.0", + "@opentiny/ng-actionmenu": "1.0.0", + "@opentiny/ng-alert": "1.0.0", + "@opentiny/ng-anchor": "1.0.0", + "@opentiny/ng-autocomplete": "1.0.0", + "@opentiny/ng-avatar": "1.0.0", + "@opentiny/ng-base": "1.0.0", + "@opentiny/ng-button": "1.0.0", + "@opentiny/ng-buttongroup": "1.0.0", + "@opentiny/ng-card": "1.0.0", + "@opentiny/ng-cascader": "1.0.0", + "@opentiny/ng-checkbox": "1.0.0", + "@opentiny/ng-collapse": "1.0.0", + "@opentiny/ng-collapsebox": "1.0.0", + "@opentiny/ng-collapsebutton": "1.0.0", + "@opentiny/ng-copy": "1.0.0", + "@opentiny/ng-crumb": "1.0.0", + "@opentiny/ng-date": "1.0.0", + "@opentiny/ng-datebase": "1.0.0", + "@opentiny/ng-datedominator": "1.0.0", + "@opentiny/ng-dateedit": "1.0.0", + "@opentiny/ng-datepanel": "1.0.0", + "@opentiny/ng-daterange": "1.0.0", + "@opentiny/ng-datetime": "1.0.0", + "@opentiny/ng-datetimerange": "1.0.0", + "@opentiny/ng-dominator": "1.0.0", + "@opentiny/ng-drag": "1.0.0", + "@opentiny/ng-drop": "1.0.0", + "@opentiny/ng-droplist": "1.0.0", + "@opentiny/ng-dropsearch": "1.0.0", + "@opentiny/ng-formfield": "1.0.0", + "@opentiny/ng-foldtext": "1.0.0", + "@opentiny/ng-grid": "1.0.0", + "@opentiny/ng-halfmodal": "1.0.0", + "@opentiny/ng-icon": "1.0.0", + "@opentiny/ng-iconaction": "1.0.0", + "@opentiny/ng-imagepreview": "1.0.0", + "@opentiny/ng-include": "1.0.0", + "@opentiny/ng-inputnumber": "1.0.0", + "@opentiny/ng-intro": "1.0.0", + "@opentiny/ng-ip": "1.0.0", + "@opentiny/ng-ipsection": "1.0.0", + "@opentiny/ng-layout": "1.0.0", + "@opentiny/ng-leftmenu": "1.0.0", + "@opentiny/ng-leftmenuthin": "1.0.0", + "@opentiny/ng-list": "1.0.0", + "@opentiny/ng-loading": "1.0.0", + "@opentiny/ng-locale": "1.0.0", + "@opentiny/ng-linkbutton": "1.0.0", + "@opentiny/ng-menu": "1.0.0", + "@opentiny/ng-message": "1.0.0", + "@opentiny/ng-modal": "1.0.0", + "@opentiny/ng-nav": "1.0.0", + "@opentiny/ng-notification": "1.0.0", + "@opentiny/ng-outline": "1.0.0", + "@opentiny/ng-overflow": "1.0.0", + "@opentiny/ng-pagination": "1.0.0", + "@opentiny/ng-popconfirm": "1.0.0", + "@opentiny/ng-popup": "1.0.0", + "@opentiny/ng-progressbar": "1.0.0", + "@opentiny/ng-progresspie": "1.0.0", + "@opentiny/ng-radio": "1.0.0", + "@opentiny/ng-rate": "1.0.0", + "@opentiny/ng-renderer": "1.0.0", + "@opentiny/ng-rights": "1.0.0", + "@opentiny/ng-score": "1.0.0", + "@opentiny/ng-scroll": "1.0.0", + "@opentiny/ng-searchbox": "1.0.0", + "@opentiny/ng-select": "1.0.0", + "@opentiny/ng-skeleton": "1.0.0", + "@opentiny/ng-slider": "1.0.0", + "@opentiny/ng-spinner": "1.0.0", + "@opentiny/ng-steps": "1.0.0", + "@opentiny/ng-subtitle": "1.0.0", + "@opentiny/ng-swiper": "1.0.0", + "@opentiny/ng-switch": "1.0.0", + "@opentiny/ng-tab": "1.0.0", + "@opentiny/ng-table": "1.0.0", + "@opentiny/ng-tag": "1.0.0", + "@opentiny/ng-tagsinput": "1.0.0", + "@opentiny/ng-text": "1.0.0", + "@opentiny/ng-textarea": "1.0.0", + "@opentiny/ng-time": "1.0.0", + "@opentiny/ng-timeline": "1.0.0", + "@opentiny/ng-tip": "1.0.0", + "@opentiny/ng-transfer": "1.0.0", + "@opentiny/ng-tree": "1.0.0", + "@opentiny/ng-treeselect": "1.0.0", + "@opentiny/ng-upload": "1.0.0", + "@opentiny/ng-utils": "1.0.0", + "@opentiny/ng-validation": "1.0.0", + "@opentiny/ng-zoom": "1.0.0", + "@opentiny/ng-themes": "1.0.0", + "@opentiny/ng-guides": "1.0.0", + "@opentiny/ng-labeleditor": "1.0.0", + "@opentiny/ng-phonenumber": "1.0.0", + "@opentiny/ng-selectgroup": "1.0.0", + "@opentiny/ng-productpreview": "1.0.0", + "@opentiny/ng-buttonselect": "1.0.0", + "@opentiny/ng-collapsetext": "1.0.0", + "@opentiny/ng-guidesteps": "1.0.0", + "@opentiny/ng-path": "1.0.0" } -} +} \ No newline at end of file diff --git a/src/ng/ngversion/ng14/.browserslistrc b/src/ng/ngversion/ng14/.browserslistrc new file mode 100644 index 0000000000000000000000000000000000000000..3ccd6c95f2615804213d7e9c57142cd4811a65ae --- /dev/null +++ b/src/ng/ngversion/ng14/.browserslistrc @@ -0,0 +1,14 @@ +# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries + +# For the full list of supported browsers by the Angular framework, please see: +# https://angular.io/guide/browser-support + +# You can see what browsers were selected by your queries by running: +# npx browserslist + +last 3 Chrome versions +last 3 Firefox versions +last 2 Safari versions +Edge >=12 \ No newline at end of file diff --git a/src/ng/ngversion/ng14/angular.json b/src/ng/ngversion/ng14/angular.json new file mode 100644 index 0000000000000000000000000000000000000000..add8fddba727d7886d6efa19b32d22b3855c5575 --- /dev/null +++ b/src/ng/ngversion/ng14/angular.json @@ -0,0 +1,86 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "ng14-demo": { + "projectType": "application", + "schematics": {}, + "root": "", + "sourceRoot": "../../demo/src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "../../../../dist/apps/ng14", + "index": "../../demo/src/index.html", + "main": "../../demo/src/main.ts", + "polyfills": "../../../polyfills.ts", + "tsConfig": "./tsconfig.app.json", + "assets": [ + "../../demo/src/favicon.ico", + "../../demo/src/assets", + { + "glob": "**/*", + "input": "node_modules/ionicons/dist/ionicons/svg", + "output": "/assets/ionicons/" + }, + { + "glob": "**/*", + "input": "node_modules/@opentiny/ng-themes/", + "output": "/assets/themes/" + } + ], + "styles": ["../../../themes/basic/build.less", "../../../themes/theme-default/build.less", "../../../styles.less"], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "2mb", + "maximumError": "10mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "6kb" + } + ], + "fileReplacements": [ + { + "replace": "../../../environments/environment.ts", + "with": "../../../environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "ng14-demo:build:production" + }, + "development": { + "browserTarget": "ng14-demo:build:development" + } + }, + "defaultConfiguration": "development" + } + } + } + }, + "defaultProject": "ng14-demo" +} diff --git a/src/ng/ngversion/ng14/package.json b/src/ng/ngversion/ng14/package.json new file mode 100644 index 0000000000000000000000000000000000000000..ccf39f64ee22f2d0819d68cce56209a93a2f72b4 --- /dev/null +++ b/src/ng/ngversion/ng14/package.json @@ -0,0 +1,39 @@ +{ + "name": "tinyng-demo", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build" + }, + "private": true, + "dependencies": { + "@angular/animations": "^14.0.1", + "@angular/cdk": "^14.0.1", + "@angular/common": "^14.0.1", + "@angular/compiler": "^14.0.1", + "@angular/core": "^14.0.1", + "@angular/elements": "^14.0.1", + "@angular/forms": "^14.0.1", + "@angular/platform-browser": "^14.0.1", + "@angular/platform-browser-dynamic": "^14.0.1", + "@angular/router": "^14.0.1", + "color": "4.2.3", + "css-vars-ponyfill": "^2.4.2", + "libphonenumber-js": "^1.10.7", + "rxjs": "~7.4.0", + "tslib": "^2.3.0", + "web-animations-js": "^2.3.2", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "^14.0.1", + "@angular/cli": "^14.0.1", + "@angular/compiler-cli": "^14.0.1", + "@angular/language-service": "^14.0.1", + "@types/node": "^12.11.1", + "ionicons": "^6.0.4", + "rimraf": "^3.0.2", + "typescript": "~4.7.3" + } +} diff --git a/src/ng/ngversion/ng14/tsconfig.app.json b/src/ng/ngversion/ng14/tsconfig.app.json new file mode 100644 index 0000000000000000000000000000000000000000..c4e63cfb9ff2e7a08531a87e2115a0a198c6c61f --- /dev/null +++ b/src/ng/ngversion/ng14/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["../../demo/src/main.ts", "../../../polyfills.ts"], + "include": ["../../demo/src/**/*.d.ts"] +} diff --git a/src/ng/ngversion/ng14/tsconfig.json b/src/ng/ngversion/ng14/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..61d245c1ff9365f7e06900160fdc4a6d95fa40cc --- /dev/null +++ b/src/ng/ngversion/ng14/tsconfig.json @@ -0,0 +1,35 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "forceConsistentCasingInFileNames": true, + //"strict": true, + //"noImplicitOverride": true, + //"noPropertyAccessFromIndexSignature": true, + //"noImplicitReturns": true, + //"noFallthroughCasesInSwitch": true, + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "moduleResolution": "node", + "importHelpers": true, + "target": "es2020", + "module": "es2020", + "lib": ["es2020", "dom"], + "paths": { + "@opentiny/*": ["./node_modules/@opentiny/*"], + "@angular/*": ["./node_modules/@angular/*"], + "rxjs": ["./node_modules/rxjs"], + "rxjs/*": ["./node_modules/rxjs/*"] + } + }, + "angularCompilerOptions": { + //"enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true + //"strictInputAccessModifiers": true, + //"strictTemplates": true + } +} diff --git a/src/ng/ngversion/ng15/angular.json b/src/ng/ngversion/ng15/angular.json new file mode 100644 index 0000000000000000000000000000000000000000..0ae5b093c3b46110a46ea17463b8ad89313cb0be --- /dev/null +++ b/src/ng/ngversion/ng15/angular.json @@ -0,0 +1,86 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "ng15-demo": { + "projectType": "application", + "schematics": {}, + "root": "", + "sourceRoot": "../../demo/src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "../../../../dist/apps/ng15", + "index": "../../demo/src/index.html", + "main": "../../demo/src/main.ts", + "polyfills": "../../../polyfills.ts", + "tsConfig": "./tsconfig.app.json", + "assets": [ + "../../demo/src/favicon.ico", + "../../demo/src/assets", + { + "glob": "**/*", + "input": "node_modules/ionicons/dist/ionicons/svg", + "output": "/assets/ionicons/" + }, + { + "glob": "**/*", + "input": "node_modules/@opentiny/ng-themes/", + "output": "/assets/themes/" + } + ], + "styles": ["../../../themes/basic/build.less", "../../../themes/theme-default/build.less", "../../../styles.less"], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "2mb", + "maximumError": "10mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "6kb" + } + ], + "fileReplacements": [ + { + "replace": "../../../environments/environment.ts", + "with": "../../../environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "ng15-demo:build:production" + }, + "development": { + "browserTarget": "ng15-demo:build:development" + } + }, + "defaultConfiguration": "development" + } + } + } + }, + "defaultProject": "ng15-demo" +} diff --git a/src/ng/ngversion/ng15/browserslist b/src/ng/ngversion/ng15/browserslist new file mode 100644 index 0000000000000000000000000000000000000000..a9ab781d0a1303ad07040474f32c021a9f4bfc0a --- /dev/null +++ b/src/ng/ngversion/ng15/browserslist @@ -0,0 +1,8 @@ +# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries + +last 3 Chrome versions +last 3 Edge versions +last 3 Firefox versions +last 2 Safari versions \ No newline at end of file diff --git a/src/ng/ngversion/ng15/package.json b/src/ng/ngversion/ng15/package.json new file mode 100644 index 0000000000000000000000000000000000000000..a1d0fbfc98351b6e17832111771adf9ddfb031e5 --- /dev/null +++ b/src/ng/ngversion/ng15/package.json @@ -0,0 +1,38 @@ +{ + "name": "ng15-demo", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build" + }, + "private": true, + "dependencies": { + "@angular/animations": "^15.0.2", + "@angular/cdk": "^15.0.1", + "@angular/common": "^15.0.2", + "@angular/compiler": "^15.0.2", + "@angular/core": "^15.0.2", + "@angular/elements": "^15.0.2", + "@angular/forms": "^15.0.2", + "@angular/platform-browser": "^15.0.2", + "@angular/platform-browser-dynamic": "^15.0.2", + "@angular/router": "^15.0.2", + "color": "4.2.3", + "libphonenumber-js": "^1.10.7", + "rxjs": "~7.4.0", + "tslib": "^2.3.0", + "web-animations-js": "^2.3.2", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "^15.0.2", + "@angular/cli": "^15.0.2", + "@angular/compiler-cli": "^15.0.2", + "@angular/language-service": "^15.0.2", + "@types/node": "^12.11.1", + "ionicons": "^6.0.4", + "rimraf": "^3.0.2", + "typescript": "~4.8.4" + } +} diff --git a/src/ng/ngversion/ng15/tsconfig.app.json b/src/ng/ngversion/ng15/tsconfig.app.json new file mode 100644 index 0000000000000000000000000000000000000000..c4e63cfb9ff2e7a08531a87e2115a0a198c6c61f --- /dev/null +++ b/src/ng/ngversion/ng15/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["../../demo/src/main.ts", "../../../polyfills.ts"], + "include": ["../../demo/src/**/*.d.ts"] +} diff --git a/src/ng/ngversion/ng15/tsconfig.json b/src/ng/ngversion/ng15/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..710c8c79a8efe431085d85ba5539d648a7a5bd01 --- /dev/null +++ b/src/ng/ngversion/ng15/tsconfig.json @@ -0,0 +1,33 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "forceConsistentCasingInFileNames": true, + //"strict": true, + //"noImplicitOverride": true, + //"noPropertyAccessFromIndexSignature": true, + //"noImplicitReturns": true, + //"noFallthroughCasesInSwitch": true, + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "moduleResolution": "node", + "importHelpers": true, + "target": "ES2022", + "module": "es2020", + "lib": ["es2020", "dom"], + "useDefineForClassFields": false, + "paths": { + "@opentiny/*": ["./node_modules/@opentiny/*"], + "@angular/*": ["./node_modules/@angular/*"], + "rxjs": ["./node_modules/rxjs"], + "rxjs/operators": ["./node_modules/rxjs/operators"] + } + }, + "angularCompilerOptions": { + "strictInjectionParameters": true + } +} diff --git a/src/ng/ngversion/ng16/.browserslistrc b/src/ng/ngversion/ng16/.browserslistrc new file mode 100644 index 0000000000000000000000000000000000000000..e007b500456199bf412ad6bf9845cc88b1f107ef --- /dev/null +++ b/src/ng/ngversion/ng16/.browserslistrc @@ -0,0 +1,14 @@ +# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries + +# For the full list of supported browsers by the Angular framework, please see: +# https://angular.io/guide/browser-support + +# You can see what browsers were selected by your queries by running: +# npx browserslist + +last 3 Chrome versions +last 3 Edge versions +last 3 Firefox versions +last 2 Safari versions \ No newline at end of file diff --git a/src/ng/ngversion/ng16/angular.json b/src/ng/ngversion/ng16/angular.json new file mode 100644 index 0000000000000000000000000000000000000000..62c0ade7bb9eb2a0805c64e01f6d851c449f6f93 --- /dev/null +++ b/src/ng/ngversion/ng16/angular.json @@ -0,0 +1,87 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "ng16-demo": { + "projectType": "application", + "schematics": {}, + "root": "", + "sourceRoot": "../../demo/src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "../../../../dist/apps/ng16", + "index": "../../demo/src/index.html", + "main": "../../demo/src/main.ts", + "polyfills": "../../../polyfills.ts", + "tsConfig": "./tsconfig.app.json", + "assets": [ + "../../demo/src/favicon.ico", + "../../demo/src/assets", + { + "glob": "**/*", + "input": "node_modules/ionicons/dist/ionicons/svg", + "output": "/assets/ionicons/" + }, + { + "glob": "**/*", + "input": "node_modules/@opentiny/ng-themes/", + "output": "/assets/themes/" + } + ], + "styles": ["../../../themes/basic/build.less", "../../../themes/theme-default/build.less", "../../../styles.less"], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "5mb", + "maximumError": "10mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "6kb" + } + ], + "fileReplacements": [ + { + "replace": "../../../environments/environment.ts", + "with": "../../../environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "sourceMap": true + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "ng16-demo:build:production" + }, + "development": { + "browserTarget": "ng16-demo:build:development" + } + }, + "defaultConfiguration": "development" + } + } + } + }, + "defaultProject": "ng16-demo" +} diff --git a/src/ng/ngversion/ng16/package.json b/src/ng/ngversion/ng16/package.json new file mode 100644 index 0000000000000000000000000000000000000000..37b9dd74f0443a1f041ad210a2b699de02996bc5 --- /dev/null +++ b/src/ng/ngversion/ng16/package.json @@ -0,0 +1,38 @@ +{ + "name": "ng16-demo", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build" + }, + "private": true, + "dependencies": { + "@angular/animations": "^16.0.0", + "@angular/cdk": "^15.0.1", + "@angular/common": "^16.0.0", + "@angular/compiler": "^16.0.0", + "@angular/core": "^16.0.0", + "@angular/elements": "^16.0.0", + "@angular/forms": "^16.0.0", + "@angular/platform-browser": "^16.0.0", + "@angular/platform-browser-dynamic": "^16.0.0", + "@angular/router": "^16.0.0", + "color": "4.2.3", + "libphonenumber-js": "^1.10.7", + "rxjs": "~7.4.0", + "tslib": "^2.3.0", + "web-animations-js": "^2.3.2", + "zone.js": "~0.13.0" + }, + "devDependencies": { + "@angular-devkit/build-angular": "^16.0.0", + "@angular/cli": "^16.0.0", + "@angular/compiler-cli": "^16.0.0", + "@angular/language-service": "^16.0.0", + "@types/node": "^12.11.1", + "ionicons": "^6.0.4", + "rimraf": "^3.0.2", + "typescript": "~5.0.4" + } +} diff --git a/src/ng/ngversion/ng16/tsconfig.app.json b/src/ng/ngversion/ng16/tsconfig.app.json new file mode 100644 index 0000000000000000000000000000000000000000..c4e63cfb9ff2e7a08531a87e2115a0a198c6c61f --- /dev/null +++ b/src/ng/ngversion/ng16/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["../../demo/src/main.ts", "../../../polyfills.ts"], + "include": ["../../demo/src/**/*.d.ts"] +} diff --git a/src/ng/ngversion/ng16/tsconfig.json b/src/ng/ngversion/ng16/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..d219330179f5c88bf7869134ef5f14b235570137 --- /dev/null +++ b/src/ng/ngversion/ng16/tsconfig.json @@ -0,0 +1,30 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "forceConsistentCasingInFileNames": true, + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "moduleResolution": "node", + "importHelpers": true, + "target": "ES2022", + "module": "es2020", + "lib": ["es2020", "dom"], + "paths": { + "@opentiny/*": ["./node_modules/@opentiny/*"], + "@angular/*": ["./node_modules/@angular/*"], + "rxjs": ["./node_modules/rxjs"], + "rxjs/operators": ["./node_modules/rxjs/operators"] + } + }, + "angularCompilerOptions": { + //"enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true + //"strictInputAccessModifiers": true, + //"strictTemplates": true + } +} diff --git a/src/notification/lib/package.json b/src/notification/lib/package.json index b16d198c30f83405b012f4124d7ebaf2fd7b1efd..8d472bf3ab1e1274d90fbd9a9532fbee0c4457b6 100644 --- a/src/notification/lib/package.json +++ b/src/notification/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-notification", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/animations": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/cdk": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-alert": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2" + "@opentiny/ng-alert": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0" } } \ No newline at end of file diff --git a/src/outline/lib/package.json b/src/outline/lib/package.json index 36370738057cb4f5fe018ab243cdf8847faafff8..15bc1d4e89b0a8aa9b3358f53bda459d6f444d7c 100644 --- a/src/outline/lib/package.json +++ b/src/outline/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-outline", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", diff --git a/src/overflow/lib/package.json b/src/overflow/lib/package.json index 4430ceffc96e3e4043025ad654f7fdc98ee5db22..638f3861f3e3920a3ae5e67ffdc98dbf5f238ec0 100644 --- a/src/overflow/lib/package.json +++ b/src/overflow/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-overflow", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-renderer": "~1.0.0-beta.2" + "@opentiny/ng-renderer": "~1.0.0" } } \ No newline at end of file diff --git a/src/pagination/lib/package.json b/src/pagination/lib/package.json index 021f7976635374d6b95a7ea7f58e048acc009874..6c12f88f58d44236afa12eecd41a9f2c1a0907cb 100644 --- a/src/pagination/lib/package.json +++ b/src/pagination/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-pagination", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-table": "~1.0.0-beta.2", - "@opentiny/ng-select": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-table": "~1.0.0", + "@opentiny/ng-select": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/path/lib/package.json b/src/path/lib/package.json index 0de57f81476ffa5b3dc8325ee3105c33b00c8e3d..00340d41b1cb7155ca6505fe509e18ad55776c6b 100644 --- a/src/path/lib/package.json +++ b/src/path/lib/package.json @@ -1,16 +1,16 @@ { "name": "@opentiny/ng-path", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/common": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-droplist": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-droplist": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/phonenumber/lib/package.json b/src/phonenumber/lib/package.json index a91cd842902e58b1c19568ca203fcaacf4fdc2ce..770008cdab126343dc195d29838c791cdc4c5abe 100644 --- a/src/phonenumber/lib/package.json +++ b/src/phonenumber/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-phonenumber", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", "libphonenumber-js": "1.10.7", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-validation": "~1.0.0-beta.2", - "@opentiny/ng-select": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-validation": "~1.0.0", + "@opentiny/ng-select": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0" } } \ No newline at end of file diff --git a/src/popconfirm/lib/package.json b/src/popconfirm/lib/package.json index 86475662e169d340ba4ad61e35cdac37bacfb5bb..d9f1fbb45dcf368b38f70bc04bea109286e2b1bf 100644 --- a/src/popconfirm/lib/package.json +++ b/src/popconfirm/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-popconfirm", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/popup/lib/package.json b/src/popup/lib/package.json index 7668c682973c4af25d476c1bfc511f94dc631358..e22d09aca9158420258ae1924a72030e5aa3f292 100644 --- a/src/popup/lib/package.json +++ b/src/popup/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-popup", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/common": ">=13.0.0", "@angular/platform-browser": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0" } } \ No newline at end of file diff --git a/src/productpreview/lib/package.json b/src/productpreview/lib/package.json index 7a5cf5314929dbbc18f920e2041c0d3f4aedd335..e250e1c6c4bc537e2a1ffc72ffe4bbf06c55d8df 100644 --- a/src/productpreview/lib/package.json +++ b/src/productpreview/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-productpreview", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { - "@opentiny/ng-imagepreview": "~1.0.0-beta.2", - "@opentiny/ng-modal": "~1.0.0-beta.2", + "@opentiny/ng-imagepreview": "~1.0.0", + "@opentiny/ng-modal": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-zoom": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-zoom": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/progressbar/lib/package.json b/src/progressbar/lib/package.json index 4afb54c2e7cda42763ce4cf2435633f60cf9d44b..bf7c8132270cef665089364722827a7fe76582fa 100644 --- a/src/progressbar/lib/package.json +++ b/src/progressbar/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-progressbar", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/progresspie/lib/package.json b/src/progresspie/lib/package.json index 54b5edc64e9cd5b87e0cc8f286e1d000b2d60d26..12e9027746e0066ddbc605555808d22bb0fc4ad0 100644 --- a/src/progresspie/lib/package.json +++ b/src/progresspie/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-progresspie", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0" diff --git a/src/radio/lib/package.json b/src/radio/lib/package.json index 925af4dc4fde4d7679aac047c51f76b292d18669..ae9615c1e303db5c95c92931b6090d78a93973ed 100644 --- a/src/radio/lib/package.json +++ b/src/radio/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-radio", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-checkbox": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-checkbox": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/rate/lib/package.json b/src/rate/lib/package.json index 000feb910ea02eeb11212ea08026263b39a0668c..cd3b144d9b1cf3be355d7ad9d62fd10248143029 100644 --- a/src/rate/lib/package.json +++ b/src/rate/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-rate", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/renderer/lib/package.json b/src/renderer/lib/package.json index 9fba5f0c07c2a7d4fc0b1a10f395c153ea69a46f..5462bc791cd28c841fede730688072531eabaab9 100644 --- a/src/renderer/lib/package.json +++ b/src/renderer/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-renderer", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0" diff --git a/src/rights/lib/package.json b/src/rights/lib/package.json index 07880f495cab9019ea458405c635a9f03b32cec4..49ea88fd09f80ef54cff0d1ab994fd5d4cec0ad6 100644 --- a/src/rights/lib/package.json +++ b/src/rights/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-rights", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/score/lib/package.json b/src/score/lib/package.json index 5e7d5fb49903d3616120665e474306594bf5e780..931dba2e3b53b6bf6a2352a8d913172b0a196d22 100644 --- a/src/score/lib/package.json +++ b/src/score/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-score", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/scroll/lib/package.json b/src/scroll/lib/package.json index 9c285055c7e916abb44b176a4c4746190b78bf18..2a184e3826dde6a9b2e30d2dc35a314f53eeccc3 100644 --- a/src/scroll/lib/package.json +++ b/src/scroll/lib/package.json @@ -1,9 +1,9 @@ { "name": "@opentiny/ng-scroll", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/searchbox/lib/package.json b/src/searchbox/lib/package.json index 4234f0fe1eb2c03a8f1129d7f15c387261123fa0..d376588a0014bc649c2103dd47fc69180f3f614f 100644 --- a/src/searchbox/lib/package.json +++ b/src/searchbox/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-searchbox", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-autocomplete": "~1.0.0-beta.2", + "@opentiny/ng-autocomplete": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-droplist": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-droplist": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/select/lib/package.json b/src/select/lib/package.json index e747d0f460d64c118712af3bd9eb4b7ff3478fc7..ad259a12ffdf715d1d3c8ec86f917d475a38c5b3 100644 --- a/src/select/lib/package.json +++ b/src/select/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-select", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-dominator": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-dropsearch": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-dominator": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-dropsearch": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/selectgroup/lib/package.json b/src/selectgroup/lib/package.json index 3342dc91cef74d3be6ba5ac0ec72da81920c7b98..4c6e91d404181a4dacbf5374e52b89605f2e71a4 100644 --- a/src/selectgroup/lib/package.json +++ b/src/selectgroup/lib/package.json @@ -1,11 +1,11 @@ { "name": "@opentiny/ng-selectgroup", - "version": "1.0.0-beta.2", + "version": "1.0.0", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/skeleton/lib/package.json b/src/skeleton/lib/package.json index 58e8cdb33d60c0de1a1c468b371572e085e94631..61287fc6357855a501757fd1a2d4eed8db5e1453 100644 --- a/src/skeleton/lib/package.json +++ b/src/skeleton/lib/package.json @@ -1,6 +1,6 @@ { "name": "@opentiny/ng-skeleton", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", diff --git a/src/slider/lib/package.json b/src/slider/lib/package.json index df6bcdc1e0127eb4c130c4619139f9d1742272ac..03d41d19427facb3aec6e402a14a830765c2a784 100644 --- a/src/slider/lib/package.json +++ b/src/slider/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-slider", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/platform-browser": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-drag": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-drag": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/spinner/lib/package.json b/src/spinner/lib/package.json index 4bd6e63061efd88717da7f1514d62821d88ecd0e..239be68adb86233c70b3ddf7c827c82085945c34 100644 --- a/src/spinner/lib/package.json +++ b/src/spinner/lib/package.json @@ -1,17 +1,17 @@ { "name": "@opentiny/ng-spinner", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-inputnumber": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-inputnumber": "~1.0.0", "@angular/forms": ">=13.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-tip": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-tip": "~1.0.0" } } \ No newline at end of file diff --git a/src/steps/lib/package.json b/src/steps/lib/package.json index 12596e8172e432e54aa17318fc44c65fe5659a85..fcf2c9cad3b4060f448d6b51dfcf0f69fe88f47e 100644 --- a/src/steps/lib/package.json +++ b/src/steps/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-steps", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/subtitle/lib/package.json b/src/subtitle/lib/package.json index ba770bc5a1c5ba14dd68b94da40a004253dc2d2d..b3911c68b5e5d5fc6e1351af968e8b8ecea9c613 100644 --- a/src/subtitle/lib/package.json +++ b/src/subtitle/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-subtitle", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/router": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-select": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-select": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-tip": "~1.0.0-beta.2" + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-tip": "~1.0.0" } } \ No newline at end of file diff --git a/src/swiper/lib/package.json b/src/swiper/lib/package.json index fe6b12746c4565af36e3a0450d35c19cf831e894..4a14cc214d60d5d81d7dfff9b3190d91972159bd 100644 --- a/src/swiper/lib/package.json +++ b/src/swiper/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-swiper", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/switch/lib/package.json b/src/switch/lib/package.json index 3b3e61a59052a2071c59ebc58408d316d62d32af..4182e156e58e8d7bd1ad5fb2dc956d6a9631cfc0 100644 --- a/src/switch/lib/package.json +++ b/src/switch/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-switch", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/tab/lib/package.json b/src/tab/lib/package.json index 164ba8e16ced164fbce1a6b47f93f927af04e3bf..f5f2e808431526bf2f5633de219809dae0d98821 100644 --- a/src/tab/lib/package.json +++ b/src/tab/lib/package.json @@ -1,16 +1,16 @@ { "name": "@opentiny/ng-tab", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-include": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-droplist": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2" + "@opentiny/ng-include": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-droplist": "~1.0.0", + "@opentiny/ng-base": "~1.0.0" } } \ No newline at end of file diff --git a/src/table/lib/package.json b/src/table/lib/package.json index 389e0c776017fd699533ef8e1b8fbb82ab31af79..bec365a6f3a6d545323cc42b28f3a23614573c4f 100644 --- a/src/table/lib/package.json +++ b/src/table/lib/package.json @@ -1,28 +1,28 @@ { "name": "@opentiny/ng-table", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-select": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-dropsearch": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-datebase": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", + "@opentiny/ng-select": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-dropsearch": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-datebase": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", "@angular/cdk": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-date": "~1.0.0-beta.2", - "@opentiny/ng-datetime": "~1.0.0-beta.2", - "@opentiny/ng-searchbox": "~1.0.0-beta.2", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-date": "~1.0.0", + "@opentiny/ng-datetime": "~1.0.0", + "@opentiny/ng-searchbox": "~1.0.0", + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/tag/lib/package.json b/src/tag/lib/package.json index ab449a3b8af06148590690071347e6cb1d67407c..930f942469408e0f041487b570a1b0a5dd62ec4f 100644 --- a/src/tag/lib/package.json +++ b/src/tag/lib/package.json @@ -1,12 +1,12 @@ { "name": "@opentiny/ng-tag", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/tagsinput/demo/src/app/tagsinput/TagsinputReactiveComponent.ts b/src/tagsinput/demo/src/app/tagsinput/TagsinputReactiveComponent.ts index 14835941969ec4c9de0ee4a8b90664ee32ea2db5..63eddbc00bf829af2ee1864d213f9143fc65ed7d 100644 --- a/src/tagsinput/demo/src/app/tagsinput/TagsinputReactiveComponent.ts +++ b/src/tagsinput/demo/src/app/tagsinput/TagsinputReactiveComponent.ts @@ -1,6 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; -import { SuggestionItem } from './TagsInputPanelwidthComponent'; +import { SuggestionItem } from './TagsinputPanelwidthComponent'; @Component({ templateUrl: './tagsinput-reactive.html' }) diff --git a/src/tagsinput/demo/src/app/tagsinput/TagsinputSeparatorsComponent.ts b/src/tagsinput/demo/src/app/tagsinput/TagsinputSeparatorsComponent.ts index bcdc450e5a3008d923292d97aa0c7df7c5bfdd92..7aaf4772fe454e21148e395a6162d7e19dedab7b 100644 --- a/src/tagsinput/demo/src/app/tagsinput/TagsinputSeparatorsComponent.ts +++ b/src/tagsinput/demo/src/app/tagsinput/TagsinputSeparatorsComponent.ts @@ -1,5 +1,5 @@ import { Component } from '@angular/core'; -import { SuggestionItem } from './TagsInputPanelwidthComponent'; +import { SuggestionItem } from './TagsinputPanelwidthComponent'; @Component({ templateUrl: './tagsinput-separators.html' diff --git a/src/tagsinput/lib/package.json b/src/tagsinput/lib/package.json index 56202c3e3d8e2df9ac1900ee0c3ef75e4e192a41..8a2befee018018f9b710989e705131bb09c42f7e 100644 --- a/src/tagsinput/lib/package.json +++ b/src/tagsinput/lib/package.json @@ -1,15 +1,15 @@ { "name": "@opentiny/ng-tagsinput", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-dominator": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-dropsearch": "~1.0.0-beta.2", + "@opentiny/ng-dominator": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-dropsearch": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/text/lib/package.json b/src/text/lib/package.json index 1f851ba5692088818dd61bb0dd4c63b6548ef63a..ab8dd49c6deadd4bc0b29e150b9a9af42020accf 100644 --- a/src/text/lib/package.json +++ b/src/text/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-text", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0" } } \ No newline at end of file diff --git a/src/textarea/lib/package.json b/src/textarea/lib/package.json index 05c1edcb11409a1f861850903d47221503a8638c..658c0177b9e0e85aa4bb711763dd8189a8b638ff 100644 --- a/src/textarea/lib/package.json +++ b/src/textarea/lib/package.json @@ -1,14 +1,14 @@ { "name": "@opentiny/ng-textarea", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2" + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0" } } \ No newline at end of file diff --git a/src/themes/package.json b/src/themes/package.json index 043c965945ab5bc25bb5a3bec2d297152c9f2eb4..38dc17debfe6ea65c19fad8d55a18aa131d9f90d 100644 --- a/src/themes/package.json +++ b/src/themes/package.json @@ -1,5 +1,5 @@ { "name": "@opentiny/ng-themes", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT" } \ No newline at end of file diff --git a/src/time/lib/package.json b/src/time/lib/package.json index dcb350ab65070195c2453fb3201056ff6de071e3..af4cbc6edf4ca01ad420ac20ff77dc43a6c23daa 100644 --- a/src/time/lib/package.json +++ b/src/time/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-time", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-datedominator": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2" + "@opentiny/ng-datedominator": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-button": "~1.0.0" } } \ No newline at end of file diff --git a/src/timeline/lib/package.json b/src/timeline/lib/package.json index b7e8720e305e37c6cd520c3d4cda9e04c39b82e8..a45d18fe571bb758def8533428123000c8eade2e 100644 --- a/src/timeline/lib/package.json +++ b/src/timeline/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-timeline", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/tip/demo/src/app/tip/TipTestModule.ts b/src/tip/demo/src/app/tip/TipTestModule.ts index 272aeb2207a12fea6f81cacd8b0ed7532b25da2f..6e911005a01884a0a9dcc12b77c0baa4fbbe9bd6 100644 --- a/src/tip/demo/src/app/tip/TipTestModule.ts +++ b/src/tip/demo/src/app/tip/TipTestModule.ts @@ -48,8 +48,7 @@ import { TipLongTextPositionComponent } from './TipLongTextPositionComponent'; TipEmptyComponent, TipLongTextPositionComponent, TipZindexComponent - ], - entryComponents: [TipDemoComponent] + ] }) export class TipTestModule { static readonly LINKS: Array = [ diff --git a/src/tip/lib/package.json b/src/tip/lib/package.json index 8d3cf63fd11f8033ad5aab9165d645c525e0ba39..f143a1eaca04c4d314ca6e46616ca34b0d8ac51a 100644 --- a/src/tip/lib/package.json +++ b/src/tip/lib/package.json @@ -1,13 +1,13 @@ { "name": "@opentiny/ng-tip", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/router": ">=13.0.0", - "@opentiny/ng-popup": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2" + "@opentiny/ng-popup": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0" } } \ No newline at end of file diff --git a/src/tip/lib/src/TiTipService.ts b/src/tip/lib/src/TiTipService.ts index b8b4b194f901a4cc626c76255cbc0c66ea9c71b6..896bf78279f740eaa5f1019d939d1954944c5865 100644 --- a/src/tip/lib/src/TiTipService.ts +++ b/src/tip/lib/src/TiTipService.ts @@ -33,7 +33,7 @@ */ import { ComponentRef, Inject, Injectable, NgZone, Optional, Renderer2, RendererFactory2 } from '@angular/core'; import { DOCUMENT } from '@angular/common'; -import { NavigationEnd, Router, RouterEvent } from '@angular/router'; +import { NavigationEnd, Router } from '@angular/router'; import { Subscription } from 'rxjs'; import { filter } from 'rxjs/operators'; @@ -86,7 +86,7 @@ export class TiTipService { rendererFactory: RendererFactory2, private tiRenderer: TiRenderer, private zone: NgZone, - @Inject(DOCUMENT) private document, + @Inject(DOCUMENT) private document: any, @Optional() private router: Router ) { this.render = rendererFactory.createRenderer(null, null); @@ -192,10 +192,12 @@ export class TiTipService { } // 部分服务使用了路由复用策略重写了 angular/router 的 RouteReuseStrategy 接口 // 使用 hashchange 监听不到通过 routerLink/navigate 路由跳转的场景 - // 此时宿主元素的 ngOnDestroy 不会触发不会销毁 tip,因此监听路由变化的方式 - routerChangeSub = this.router?.events.pipe(filter((event: RouterEvent) => event instanceof NavigationEnd)).subscribe(() => { - hideFn(); - }); + // 此时宿主元素的 ngOnDestroy 不会触发不会销毁 tip,因此监听路由变化的方式 // 升级 ng16 去除 RouterEvent + routerChangeSub = this.router?.events + .pipe(filter((event: any /* : RouterEvent */) => event instanceof NavigationEnd)) + .subscribe(() => { + hideFn(); + }); return tipComponentRef; }, @@ -224,6 +226,7 @@ export class TiTipService { return; } shareValues.mouseenterTimer = setTimeout(() => { + // eslint-disable-next-line max-nested-callbacks this.zone.run(() => { const showInfo: TiTipShowInfo = config.showFn(); if (!showInfo) { diff --git a/src/transfer/lib/package.json b/src/transfer/lib/package.json index 8284d5cd9861d9887c0227d18ec2201cbc141df3..0d306c5c1fc95c7b7966c41f72312805930fd8ee 100644 --- a/src/transfer/lib/package.json +++ b/src/transfer/lib/package.json @@ -1,22 +1,22 @@ { "name": "@opentiny/ng-transfer", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-dropsearch": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-list": "~1.0.0-beta.2", - "@opentiny/ng-searchbox": "~1.0.0-beta.2", - "@opentiny/ng-table": "~1.0.0-beta.2", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-checkbox": "~1.0.0-beta.2", - "@opentiny/ng-pagination": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2" + "@opentiny/ng-dropsearch": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-list": "~1.0.0", + "@opentiny/ng-searchbox": "~1.0.0", + "@opentiny/ng-table": "~1.0.0", + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-checkbox": "~1.0.0", + "@opentiny/ng-pagination": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0" } } \ No newline at end of file diff --git a/src/tree/lib/package.json b/src/tree/lib/package.json index c602a2124b3b52d0e28be2d50e8bcadb5e29fd98..3276b833ac6eac0110b57378d36e972915ddbd1d 100644 --- a/src/tree/lib/package.json +++ b/src/tree/lib/package.json @@ -1,20 +1,20 @@ { "name": "@opentiny/ng-tree", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/cdk": ">=13.0.0", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", "@angular/common": ">=13.0.0", "@angular/forms": ">=13.0.0", - "@opentiny/ng-checkbox": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-loading": "~1.0.0-beta.2", - "@opentiny/ng-text": "~1.0.0-beta.2", - "@opentiny/ng-validation": "~1.0.0-beta.2" + "@opentiny/ng-checkbox": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-loading": "~1.0.0", + "@opentiny/ng-text": "~1.0.0", + "@opentiny/ng-validation": "~1.0.0" } } \ No newline at end of file diff --git a/src/treeselect/demo/src/app/treeselect/TreeselectTestModule.ts b/src/treeselect/demo/src/app/treeselect/TreeselectTestModule.ts index de128fcc517a06672bc026fec426ee8c104097e2..cf346f1eb3b6cbdeca3919a71bbca8909051c46b 100644 --- a/src/treeselect/demo/src/app/treeselect/TreeselectTestModule.ts +++ b/src/treeselect/demo/src/app/treeselect/TreeselectTestModule.ts @@ -61,8 +61,7 @@ import { TreeselectLabelkeyComponent } from './TreeselectLabelkeyComponent'; TreeselectPanelwidthComponent, TreeselectLabelkeyComponent, ModalTestComponent - ], - entryComponents: [ModalTestComponent] + ] }) export class TreeselectTestModule { static readonly LINKS: Array = [{ href: 'components/TiTreeselectComponent.html', label: 'Treeselect' }]; diff --git a/src/treeselect/lib/package.json b/src/treeselect/lib/package.json index 233ce3314950f4e9ea0bb5f80e260621ead706c7..5d746480215ce94eb9b9c79b97c746ce7b680b55 100644 --- a/src/treeselect/lib/package.json +++ b/src/treeselect/lib/package.json @@ -1,20 +1,20 @@ { "name": "@opentiny/ng-treeselect", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-tree": "~1.0.0-beta.2", - "@opentiny/ng-dominator": "~1.0.0-beta.2", - "@opentiny/ng-drop": "~1.0.0-beta.2", - "@opentiny/ng-searchbox": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-select": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-tree": "~1.0.0", + "@opentiny/ng-dominator": "~1.0.0", + "@opentiny/ng-drop": "~1.0.0", + "@opentiny/ng-searchbox": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-select": "~1.0.0", "@angular/forms": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-dropsearch": "~1.0.0-beta.2", - "@opentiny/ng-checkbox": "~1.0.0-beta.2" + "@opentiny/ng-dropsearch": "~1.0.0", + "@opentiny/ng-checkbox": "~1.0.0" } } \ No newline at end of file diff --git a/src/upload/lib/package.json b/src/upload/lib/package.json index 72720ea7f223656ddc6f86d6c95399411c64afb9..31ecc502833c92b36326ef96abafd2741dd53f98 100644 --- a/src/upload/lib/package.json +++ b/src/upload/lib/package.json @@ -1,23 +1,23 @@ { "name": "@opentiny/ng-upload", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", - "@opentiny/ng-base": "~1.0.0-beta.2", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-utils": "~1.0.0-beta.2", - "@opentiny/ng-overflow": "~1.0.0-beta.2", - "@opentiny/ng-modal": "~1.0.0-beta.2", - "@opentiny/ng-imagepreview": "~1.0.0-beta.2", + "@opentiny/ng-base": "~1.0.0", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-utils": "~1.0.0", + "@opentiny/ng-overflow": "~1.0.0", + "@opentiny/ng-modal": "~1.0.0", + "@opentiny/ng-imagepreview": "~1.0.0", "@angular/platform-browser": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-progresspie": "~1.0.0-beta.2", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-validation": "~1.0.0-beta.2", - "@opentiny/ng-progressbar": "~1.0.0-beta.2", - "@opentiny/ng-button": "~1.0.0-beta.2", - "@opentiny/ng-outline": "~1.0.0-beta.2" + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-progresspie": "~1.0.0", + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-validation": "~1.0.0", + "@opentiny/ng-progressbar": "~1.0.0", + "@opentiny/ng-button": "~1.0.0", + "@opentiny/ng-outline": "~1.0.0" } } \ No newline at end of file diff --git a/src/utils/lib/package.json b/src/utils/lib/package.json index 47dd1f0d4554b97139c662298e038fb2a210c72b..514ce72d89e5b191ad5d087a24592ae442f1bc7e 100644 --- a/src/utils/lib/package.json +++ b/src/utils/lib/package.json @@ -1,9 +1,10 @@ { "name": "@opentiny/ng-utils", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@angular/platform-browser-dynamic": ">=13.0.0" + "@angular/platform-browser-dynamic": ">=13.0.0", + "color":"4.2.3" }, "dependencies": { "tslib": "^2.3.0" diff --git a/src/validation/lib/package.json b/src/validation/lib/package.json index 93c808c52d42c4c42aa388407d6340339dd444a7..db19174d6beed4101284c0ce15373c76caa341e1 100644 --- a/src/validation/lib/package.json +++ b/src/validation/lib/package.json @@ -1,18 +1,18 @@ { "name": "@opentiny/ng-validation", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { - "@opentiny/ng-utils": "~1.0.0-beta.2", + "@opentiny/ng-utils": "~1.0.0", "@angular/forms": ">=13.0.0", "@angular/core": ">=13.0.0", - "@opentiny/ng-locale": "~1.0.0-beta.2", - "@opentiny/ng-renderer": "~1.0.0-beta.2", - "@opentiny/ng-popup": "~1.0.0-beta.2", - "@opentiny/ng-tip": "~1.0.0-beta.2", - "@opentiny/ng-base": "~1.0.0-beta.2", + "@opentiny/ng-locale": "~1.0.0", + "@opentiny/ng-renderer": "~1.0.0", + "@opentiny/ng-popup": "~1.0.0", + "@opentiny/ng-tip": "~1.0.0", + "@opentiny/ng-base": "~1.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-icon": "~1.0.0-beta.2", - "@opentiny/ng-loading": "~1.0.0-beta.2" + "@opentiny/ng-icon": "~1.0.0", + "@opentiny/ng-loading": "~1.0.0" } } \ No newline at end of file diff --git a/src/zoom/lib/package.json b/src/zoom/lib/package.json index f9965f6235f0ff2d0940cc9ab00325bc9a7a46ff..af316199f0b467b9f8a5242ec381949ed3373ab4 100644 --- a/src/zoom/lib/package.json +++ b/src/zoom/lib/package.json @@ -1,10 +1,10 @@ { "name": "@opentiny/ng-zoom", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "MIT", "peerDependencies": { "@angular/core": ">=13.0.0", "@angular/common": ">=13.0.0", - "@opentiny/ng-renderer": "~1.0.0-beta.2" + "@opentiny/ng-renderer": "~1.0.0" } } \ No newline at end of file diff --git a/website-tinydoc/package.json b/website-tinydoc/package.json index 7cd2e4fafaa7338f7ff21eb6a15a827f7a4e5871..bd305359387372095838a30c1d8525b5bc4d5ee6 100644 --- a/website-tinydoc/package.json +++ b/website-tinydoc/package.json @@ -1,7 +1,7 @@ { "name": "@opentiny/ng-tinydoc", "private": false, - "version": "1.0.0", + "version": "1.0.9", "scripts": { "copy": "node ./build/copy.js", "pub": "npm run copy && npm publish --verbose"