From 69e17c4752638d4a2d2e4e42009767a69c9ef847 Mon Sep 17 00:00:00 2001 From: Badisi Date: Mon, 8 Jul 2024 14:01:58 +0200 Subject: [PATCH 1/9] ci: improve release --- .github/workflows/ci_release.yml | 3 +- package.json | 3 +- scripts/release.ts | 443 +++++++++++++++++-------------- 3 files changed, 252 insertions(+), 197 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index a2d26dcf..b014bf64 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -9,6 +9,7 @@ on: required: true type: choice options: + - -- all -- - core - layout - list-loader @@ -43,6 +44,6 @@ jobs: GH_TOKEN: ${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.DSI_HUG_NPM_TOKEN }} with: - working-directory: 'projects/${{ inputs.package }}' + working-directory: ${{ (inputs.package == '-- all --') && '.' || format('projects/{0}', inputs.package) }} dry-run: ${{ inputs.dry-run }} release: true diff --git a/package.json b/package.json index c2965601..568d334a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "lint": "eslint . --fix", "prepare": "husky || true", "new-package": "ng g .:new-package", - "release:dry-run": "node -r @swc-node/register ./scripts/release.ts --verbose --dry-run", + "release": "node -r @swc-node/register ./scripts/release.ts --verbose", + "release:dry-run": "npm run release -- --dry-run", "postinstall": "patch-package" }, "workspaces": [ diff --git a/scripts/release.ts b/scripts/release.ts index 8e165c90..0e654b22 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -6,257 +6,310 @@ import { copyFileSync, readFileSync, writeFileSync } from 'node:fs'; import { join } from 'node:path'; import { releaseChangelog, releasePublish, releaseVersion } from 'nx/release'; import { PublishOptions } from 'nx/src/command-line/release/command-object'; +import { VersionData } from 'nx/src/command-line/release/version'; +import { ProjectsConfigurations } from 'nx/src/config/workspace-json-project-json'; import { createProjectGraphAsync, readProjectsConfigurationFromProjectGraph } from 'nx/src/project-graph/project-graph'; import { PackageJson } from 'nx/src/utils/package-json'; import { workspaceRoot } from 'nx/src/utils/workspace-root'; import * as yargs from 'yargs'; -const { yellow, blue, red, green, gray, white, bgBlue } = chalk; +const { yellow, blue, red, green, gray, white, cyan, bgBlue } = chalk; -void (async (): Promise => { - const exec = (message: string | undefined, cmd: string, args: string[]): void => { - if (message) { - console.log(message); +interface Options { + projects: string[]; + dryRun: boolean; + verbose: boolean; +} + +const exec = (message: string, cmd: string, args: string[], options: Options, newLine = false): void => { + console.log(`${message}${options.dryRun ? yellow(' [dry-run]') : ''}${newLine ? '\n' : ''}`); + if (options.verbose) { + console.log(`${cmd} ${args.join(' ')}`); + } + if (!options.dryRun) { + const result = spawnSync(cmd, args, { stdio: 'inherit', cwd: workspaceRoot }); + if (result.error) { + throw result.error; } - if (options.verbose) { - console.log(`\n${cmd} ${args.join(' ')}`); + if (result.status !== 0) { + throw new Error(`Command failed with exit code ${result.status}`); } - if (!options.dryRun) { - const result = spawnSync(cmd, args, { stdio: 'inherit', cwd: workspaceRoot }); - if (result.error) { - throw result.error; - } - if (result.status !== 0) { - throw new Error(`Command failed with exit code ${result.status}`); + } +}; + +/** + * Currently `nx release` does not allow to easily change the folder to be published. + * + * `nx.json#targetDefaults.nx-release-publish.options.packageRoot` could be used but can only interpolate: + * - {projectName}: which resolved to '@hug/ngx-abc' (ie. package.json#name) + * - {projectRoot}: which resolved to 'projects/abc' + * And what we need is actually `abc` because Angular generates projects in `dist/abc`. + * So to make it work, we use the hidden option (__overrides_unparsed__) and publish each project individually. + */ +const publishProjects = async ( + projectsToRelease: string[], + projects: ProjectsConfigurations['projects'], + options: Options +): Promise => { + let processStatus = 0; + if (!options.dryRun) { + for (const project of projectsToRelease) { + const projectName = projects[project].root.substring('projects/'.length); + const publishStatus = await releasePublish({ + __overrides_unparsed__: `--packageRoot=./dist/${projectName}`, + projects: [project], + dryRun: options.dryRun, + verbose: options.verbose + } as PublishOptions); + if (publishStatus !== 0) { + processStatus = publishStatus; } } - }; - - const options = await yargs - .version(false) - .option('projects', { - description: 'Projects filter to use for the release script', - type: 'array', - string: true, - default: [] - }) - .option('dry-run', { - description: 'Whether or not to perform a dry-run of the release process, defaults to false', - type: 'boolean', - default: false - }) - .option('verbose', { - description: 'Whether or not to enable verbose logging, defaults to false', - type: 'boolean', - default: false - }) - .parseAsync(); - - /** - * 1. Resolve new project version - * 2. Update `projects//package.json` with new version - * 3. Update npm lock file - * 4. Stage changed files with git - */ - const { workspaceVersion, projectsVersionData } = await releaseVersion({ - projects: options.projects, - stageChanges: true, - gitCommit: false, - dryRun: options.dryRun, - verbose: options.verbose - }); - - /** - * 5. Determine affected projects and exit if none - */ - const projectsToRelease = Object.keys(projectsVersionData).filter(key => { - const { newVersion, currentVersion } = projectsVersionData[key]; - return (newVersion && (newVersion !== currentVersion)); - }); - if (projectsToRelease.length === 0) { - console.log('No affected projects found to be published'); - return process.exit(0); + } else { + console.log(`\n${bgBlue(' HUG ')} ${blue('Publishing to npm')}${yellow(' [dry-run]')}\n`); } + return processStatus; +}; +/** + * Currently `nx release` publishes packages from their source directory by default. + * + * So we need to make sure `dist` are in sync and used for publishing instead. + * + * TODO: remove this script if one day this feature is supported by `nx release` directly + * @see https://github.com/nrwl/nx/issues/21855#issuecomment-1977360480 + */ +const updateProjectsDists = ( + projectsToRelease: string[], + projects: ProjectsConfigurations['projects'], + projectsVersionData: VersionData, + options: Options +): void => { + console.log(`\n${bgBlue(' HUG ')} ${blue('Synchronizing dist packages')}${options.dryRun ? yellow(' [dry-run]') : ''}`); + projectsToRelease.forEach(project => { + const projectRoot = projects[project].root; + const projectName = projectRoot.substring('projects/'.length); + const projectNewVersion = projectsVersionData[project].newVersion ?? ''; + const distPackageJsonPath = join('dist', projectName, 'package.json'); + const distChangelogPath = join('dist', projectName, 'CHANGELOG.md'); - /** - * 6. Update `projects//CHANGELOG.md` - * 7. Stage changed files with git - * 8. Commit all previously staged files in git - * chore(release): publish [skip ci] - * - project: @hug/ngx-xyz 1.2.3 - * 9. Tag commit with git - * @hug/ngx-xyz@1.2.3 - * 10. Push to git remote - * 11. Create GitHub release - */ - await releaseChangelog({ - projects: options.projects, - version: workspaceVersion, - versionData: projectsVersionData, - stageChanges: true, - gitCommit: true, - gitCommitMessage: 'chore(release): publish [skip ci]', - gitTag: true, - dryRun: options.dryRun, - verbose: options.verbose + console.log(`\n${cyan(projects[project].name ?? '')} New version ${projectNewVersion} written to ${distPackageJsonPath}`); + if (!options.dryRun) { + const distPackageJson = JSON.parse(readFileSync(join(workspaceRoot, projectRoot, 'package.json'), 'utf8')) as PackageJson; + distPackageJson.version = projectNewVersion; + writeFileSync(join(workspaceRoot, distPackageJsonPath), JSON.stringify(distPackageJson, null, 4), { encoding: 'utf8' }); + } + + console.log(`${cyan(projects[project].name ?? '')} Changelog updated in ${distChangelogPath}`); + if (!options.dryRun) { + copyFileSync(join(workspaceRoot, projectRoot, 'CHANGELOG.md'), join(workspaceRoot, distChangelogPath)); + } }); +}; - /** - * Ensures consistent versioning across interdependent packages in the monorepo. - * - * It reads the current version of each package and updates any other packages that reference - * it in their `peerDependencies` to maintain version synchronization. - * - * TODO: remove this script if one day this feature is supported by `nx release` directly - * @see https://github.com/nrwl/nx/issues/22776 - * @see https://github.com/nrwl/nx/discussions/23388 - * - * 12. Synchronize interdependencies - * - Update project's package.json file - * - Update npm lock file - * - Stage changed files with git - * - Commit all previously staged files in git - * deps(@hug/ngx-xyz): upgrade to v1.2.3 - * [skip ci] - * 13. Push to git remote - */ - const projectGraph = await createProjectGraphAsync({ exitOnError: true }); - const { projects } = readProjectsConfigurationFromProjectGraph(projectGraph); - const workspaces = Object.values(projects).map(project => ({ - packageJsonPath: join(project.root, 'package.json'), - packageJson: JSON.parse(readFileSync(join(workspaceRoot, project.root, 'package.json'), 'utf8')) as PackageJson - })); +/** + * Ensures consistent versioning across interdependent packages in the monorepo. + * + * It reads the current version of each package and updates any other packages that reference + * it in their `peerDependencies` to maintain version synchronization. + * + * TODO: remove this script if one day this feature is supported by `nx release` directly + * @see https://github.com/nrwl/nx/issues/22776 + * @see https://github.com/nrwl/nx/discussions/23388 + */ +const updateProjectsPeerDeps = ( + projectsToRelease: string[], + projects: ProjectsConfigurations['projects'], + projectsVersionData: VersionData, + options: Options +): boolean => { let packageJsonFiles: string[] = []; let changesDetected = false; - console.log(`\n${bgBlue(' HUG ')} ${blue('Synchronizing peer interdependencies')}${options.dryRun ? yellow(' [dry-run]') : ''}`); - workspaces.forEach(workspace => { - workspaces.forEach(workspace2 => { - const peerDependencies = workspace2.packageJson.peerDependencies ?? {}; - if (Object.prototype.hasOwnProperty.call(peerDependencies, workspace.packageJson.name)) { - const version = peerDependencies[workspace.packageJson.name]; - if (!version.includes(workspace.packageJson.version)) { + console.log(`\n${bgBlue(' HUG ')} ${blue('Synchronizing inter peer dependencies')}${options.dryRun ? yellow(' [dry-run]') : ''}`); + projectsToRelease.forEach(projectToRelease => { + const projectToReleaseNewVersion = projectsVersionData[projectToRelease].newVersion ?? ''; + + Object.values(projects).forEach(project => { + const packageJsonPath = join(project.root, 'package.json'); + const packageJson = JSON.parse(readFileSync(join(workspaceRoot, packageJsonPath), 'utf8')) as PackageJson; + const peerDependencies = packageJson.peerDependencies ?? {}; + + if (Object.prototype.hasOwnProperty.call(peerDependencies, projectToRelease)) { + const version = peerDependencies[projectToRelease]; + if (!version.includes(projectToReleaseNewVersion)) { changesDetected = true; const versionRange = version.match(/(^[^\d]*)\d.*/)?.[1] ?? ''; - const newVersion = `${versionRange}${workspace.packageJson.version}`; + const newVersion = `${versionRange}${projectToReleaseNewVersion}`; if (!packageJsonFiles.length) { - console.log(`\n- ${blue(workspace.packageJson.name)}`); + console.log(blue(`\n- ${projectToRelease}`)); } - console.log(`\n${white('UPDATE')} ${workspace2.packageJsonPath}${options.dryRun ? yellow(' [dry-run]') : ''}\n`); + console.log(`\n${white('UPDATE')} ${packageJsonPath}${options.dryRun ? yellow(' [dry-run]') : ''}\n`); console.log(gray(' "peerDependencies": {')); - console.log(red(`- "${workspace.packageJson.name}": "${version}"`)); - console.log(green(`+ "${workspace.packageJson.name}": "${newVersion}"`)); + console.log(red(`- "${projectToRelease}": "${version}"`)); + console.log(green(`+ "${projectToRelease}": "${newVersion}"`)); console.log(gray(' }')); if (!options.dryRun) { - peerDependencies[workspace.packageJson.name] = newVersion; - workspace2.packageJson.peerDependencies = peerDependencies; - writeFileSync(join(workspaceRoot, workspace2.packageJsonPath), JSON.stringify(workspace2.packageJson, null, 4), { encoding: 'utf8' }); + peerDependencies[projectToRelease] = newVersion; + packageJson.peerDependencies = peerDependencies; + writeFileSync(join(workspaceRoot, packageJsonPath), JSON.stringify(packageJson, null, 4), { encoding: 'utf8' }); } - packageJsonFiles.push(workspace2.packageJsonPath); + packageJsonFiles.push(packageJsonPath); } } }); if (packageJsonFiles.length) { + exec('\nUpdating npm lock file:', 'npm', ['install'], options); + exec('\nStaging changed files with git:', 'git', ['add', 'package-lock.json', ...packageJsonFiles], options); exec( - `\n${bgBlue(' HUG ')} ${blue('Updating npm lock file')}${options.dryRun ? yellow(' [dry-run]') : ''}\n`, - 'npm', ['install'] - ); - exec( - `\n${bgBlue(' HUG ')} ${blue('Staging changed files with git')}${options.dryRun ? yellow(' [dry-run]') : ''}\n`, - 'git', ['add', 'package-lock.json', ...packageJsonFiles] - ); - exec( - `\n${bgBlue(' HUG ')} ${blue('Comitting changes with git')}${options.dryRun ? yellow(' [dry-run]') : ''}\n`, - 'git', ['commit', '--message', `deps(${workspace.packageJson.name}): upgrade to v${workspace.packageJson.version}`, '--message', '[skip ci]'] + '\nComitting changes with git:', + 'git', ['commit', '--message', `deps(${projectToRelease}): upgrade to v${projectToReleaseNewVersion}`, '--message', '[skip ci]'], + options ); packageJsonFiles = []; } }); + if (changesDetected) { exec( - `\n${bgBlue(' HUG ')} ${blue('Pushing to git remote')}${options.dryRun ? yellow(' [dry-run]') : ''}\n`, - 'git', ['push', '--follow-tags', '--no-verify', '--atomic'] + `\n${bgBlue(' HUG ')} ${blue('Pushing to git remote')}`, + 'git', ['push', '--follow-tags', '--no-verify', '--atomic'], + options, true ); } else { console.log('\nNo changes were needed, versions already in sync.'); } + return changesDetected; +}; + +const updateProjectsVersions = async (gitCommitMessage: string, options: Options): Promise<{ + projectsToRelease: string[]; + workspaceVersion: (string | null) | undefined; + projectsVersionData: VersionData; +}> => { + const { workspaceVersion, projectsVersionData } = await releaseVersion({ + projects: options.projects, + stageChanges: true, + gitCommit: true, + gitCommitMessage, + dryRun: options.dryRun, + verbose: options.verbose + }); + const projectsToRelease = Object.keys(projectsVersionData).filter(key => { + const { newVersion, currentVersion } = projectsVersionData[key]; + return (newVersion && (newVersion !== currentVersion)); + }); + if (projectsToRelease.length === 0) { + console.log('No affected projects found to be published'); + return process.exit(0); + } + return { projectsToRelease, workspaceVersion, projectsVersionData }; +}; + +void (async (): Promise => { + const projectGraph = await createProjectGraphAsync({ exitOnError: true }); + const { projects } = readProjectsConfigurationFromProjectGraph(projectGraph); + const options = await yargs + .version(false) + .option('projects', { + description: 'Projects filter to use for the release script', + type: 'array', + string: true, + default: [] + }) + .option('dry-run', { + description: 'Whether or not to perform a dry-run of the release process, defaults to false', + type: 'boolean', + default: false + }) + .option('verbose', { + description: 'Whether or not to enable verbose logging, defaults to false', + type: 'boolean', + default: false + }) + .parseAsync(); + /** - * Currently `nx release` does not update package-lock file correctly. - * - * TODO: remove this script if one day this feature is supported by `nx release` directly - * @see https://github.com/nrwl/nx/issues/26660 - * - * 14. Synchronize `package-lock.json` file + * 1. Resolve new versions of projects using semantic versioning + * 2. Update every projects `package.json` file with their new version + * 3. Update npm lock file + * 4. Stage changed files with git + * 5. Commit all previously staged files in git + * chore(release): update projects versions [skip ci] + * - project: @hug/ngx-abc 1.2.3 + * - project: @hug/ngx-xyz 4.5.6 */ - console.log(`\n${bgBlue(' HUG ')} ${blue('Synchronizing npm lock file')}${options.dryRun ? yellow(' [dry-run]') : ''}`); - exec(undefined, 'npm', ['install']); - exec(undefined, 'git', ['add', 'package.json', 'package-lock.json']); - exec(undefined, 'git', ['commit', '--message', 'chore: synchronize package.json and package-lock.json', '--message', '[skip ci]']); - exec(undefined, 'git', ['push', '--follow-tags', '--no-verify', '--atomic']); + let updates = await updateProjectsVersions('chore(release): update projects versions [skip ci]', options); /** - * Currently `nx release` publishes packages from their source directory by default. - * - * So we need to make sure `dist` are in sync and published instead. - * - * TODO: remove this script if one day this feature is supported by `nx release` directly - * @see https://github.com/nrwl/nx/issues/21855#issuecomment-1977360480 - * - * 15. Update project(s) `package.json` and `CHANGELOG.md` in dist + * 6. Synchronize inter peer dependencies + * For each project: + * - Update project's package.json file + * - Update npm lock file + * - Stage changed files with git + * - Commit all previously staged files in git + * deps(@hug/ngx-abc): upgrade to v1.2.3 + * [skip ci] + * 7. Push to git remote */ - console.log(`\n${bgBlue(' HUG ')} ${blue('Synchronizing dist packages')}${options.dryRun ? yellow(' [dry-run]') : ''}`); - projectsToRelease.forEach(project => { - const projectRoot = projects[project].root; - const projectName = projectRoot.substring('projects/'.length); - const projectNewVersion = projectsVersionData[project].newVersion ?? ''; - const distPackageJsonPath = join('dist', projectName, 'package.json'); - const distChangelogPath = join('dist', projectName, 'CHANGELOG.md'); + const needReUpdate = updateProjectsPeerDeps(updates.projectsToRelease, projects, updates.projectsVersionData, options); - console.log(`\n${blue(projects[project].name ?? '')} New version ${projectNewVersion} written to ${distPackageJsonPath}`); - if (!options.dryRun) { - const distPackageJson = JSON.parse(readFileSync(join(workspaceRoot, projectRoot, 'package.json'), 'utf8')) as PackageJson; - distPackageJson.version = projectNewVersion; - writeFileSync(join(workspaceRoot, distPackageJsonPath), JSON.stringify(distPackageJson, null, 4), { encoding: 'utf8' }); - } + /** + * If multiple projects were be released, synchronizing inter peer dependencies might have affected some of them. + * So we need to resolve new versions of projects once more. + * + * 8. Resolve new versions of projects using semantic versioning + * 9. Update every projects `package.json` file with their new version + * 10. Update npm lock file + * 11. Stage changed files with git + * 12. Commit all previously staged files in git + * chore(release): re-update projects versions [skip ci] + * - project: @hug/ngx-abc 1.2.3 + * - project: @hug/ngx-xyz 4.5.6 + */ + if (needReUpdate && (options.projects?.length > 1)) { + updates = await updateProjectsVersions('chore(release): re-update projects versions [skip ci]', options); + } - console.log(`${blue(projects[project].name ?? '')} Changelog updated in ${distChangelogPath}`); - if (!options.dryRun) { - copyFileSync(join(workspaceRoot, projectRoot, 'CHANGELOG.md'), join(workspaceRoot, distChangelogPath)); - } + /** + * 13. Update every projects `CHANGELOG.md` file + * 14. Stage changed files with git + * 15. Commit all previously staged files in git + * chore(release): update projects changelogs [skip ci] + * - project: @hug/ngx-abc 1.2.3 + * - project: @hug/ngx-xyz 4.5.6 + * 16. Tag commit with git + * @hug/ngx-abc@1.2.3 + * @hug/ngx-xyz@5.6.7 + * 17. Push to git remote + * 18. Create GitHub releases + */ + await releaseChangelog({ + projects: updates.projectsToRelease, + version: updates.workspaceVersion, + versionData: updates.projectsVersionData, + stageChanges: true, + gitCommit: true, + gitCommitMessage: 'chore(release): update projects changelogs [skip ci]', + gitTag: true, + dryRun: options.dryRun, + verbose: options.verbose }); /** - * Currently `nx release` does not allow to easily change the folder to be published. - * - * `nx.json#targetDefaults.nx-release-publish.options.packageRoot` could be used but can only interpolate: - * - {projectName}: which resolved to '@hug/ngx-xyz' (ie. package.json#name) - * - {projectRoot}: which resolved to 'projects/xyz' - * And what we need is actually `xyz` because Angular generates projects in `dist/xyz`. - * So to make it work, we use the hidden option (__overrides_unparsed__) and publish each project individually. - * - * 16. Publish to npm + * 19. Update projects `package.json` and `CHANGELOG.md` in their dist folder */ - let processStatus = 0; - if (!options.dryRun) { - for (const project of projectsToRelease) { - const projectName = projects[project].root.substring('projects/'.length); - const publishStatus = await releasePublish({ - __overrides_unparsed__: `--packageRoot=./dist/${projectName}`, - projects: [project], - dryRun: options.dryRun, - verbose: options.verbose - } as PublishOptions); - if (publishStatus !== 0) { - processStatus = publishStatus; - } - } - } + updateProjectsDists(updates.projectsToRelease, projects, updates.projectsVersionData, options); + + /** + * 20. Publish projects to npm + */ + const publishStatus = await publishProjects(updates.projectsToRelease, projects, options); - return process.exit(processStatus); + return process.exit(publishStatus); })(); From 4c5348b6e711402f9e89848ef5fb382e2f0ebeb7 Mon Sep 17 00:00:00 2001 From: Badisi Date: Mon, 8 Jul 2024 14:20:26 +0200 Subject: [PATCH 2/9] ci: improve release --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 568d334a..f0f04b1a 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,11 @@ "private": true, "scripts": { "ncu": "npx npm-check-updates -i --target=minor --dep=dev,peer,optional,prod --format=group --packageFile='{,projects/**/}package.json'", - "lint": "eslint . --fix", "prepare": "husky || true", "new-package": "ng g .:new-package", + "lint": "nx run-many -t lint", + "test:ci": "nx run-many -t test:ci", + "build": "nx run-many -t build:ng --verbose", "release": "node -r @swc-node/register ./scripts/release.ts --verbose", "release:dry-run": "npm run release -- --dry-run", "postinstall": "patch-package" From 8cc9df3476beee500607d5218d460acd8dd8e054 Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:26:50 +0000 Subject: [PATCH 3/9] chore(release): update projects versions [skip ci] - project: @hug/ngx-numeric-stepper 1.1.4 - project: @hug/ngx-user-tooltip 1.1.2 - project: @hug/ngx-list-loader 1.1.3 - project: @hug/ngx-time-picker 1.1.3 - project: @hug/ngx-user-card 1.1.2 - project: @hug/ngx-snackbar 1.1.3 - project: @hug/ngx-sidenav 1.1.2 - project: @hug/ngx-tooltip 1.1.3 - project: @hug/ngx-layout 1.1.3 - project: @hug/ngx-status 1.1.2 --- package-lock.json | 723 +------------------------- projects/layout/package.json | 4 +- projects/list-loader/package.json | 2 +- projects/numeric-stepper/package.json | 4 +- projects/sidenav/package.json | 4 +- projects/snackbar/package.json | 4 +- projects/status/package.json | 4 +- projects/time-picker/package.json | 4 +- projects/tooltip/package.json | 4 +- projects/user-card/package.json | 2 +- projects/user-tooltip/package.json | 2 +- 11 files changed, 27 insertions(+), 730 deletions(-) diff --git a/package-lock.json b/package-lock.json index ac7e135f..d517c025 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "@hug/ngx-components", + "name": "ngx-components", "lockfileVersion": 3, "requires": true, "packages": { @@ -3637,21 +3637,6 @@ "node": ">=8" } }, - "node_modules/@commitlint/load/node_modules/typescript": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.3.tgz", - "integrity": "sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==", - "dev": true, - "license": "Apache-2.0", - "peer": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, "node_modules/@commitlint/message": { "version": "18.6.1", "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-18.6.1.tgz", @@ -4244,147 +4229,6 @@ "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0", - "peer": true - }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "peer": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/@gar/promisify": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", @@ -4539,73 +4383,6 @@ "resolved": "projects/user-tooltip", "link": true }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "deprecated": "Use @eslint/config-array instead", - "dev": true, - "license": "Apache-2.0", - "peer": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "peer": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", - "deprecated": "Use @eslint/object-schema instead", - "dev": true, - "license": "BSD-3-Clause", - "peer": true - }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -7365,14 +7142,6 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true, - "license": "ISC", - "peer": true - }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", @@ -9973,14 +9742,6 @@ "node": ">=0.10" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT", - "peer": true - }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", @@ -10209,20 +9970,6 @@ "node": ">=6" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "license": "Apache-2.0", - "peer": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/dom-serialize": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", @@ -11118,63 +10865,6 @@ "node": ">=0.8.0" } }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, "node_modules/eslint-compat-utils": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz", @@ -11653,239 +11343,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0", - "peer": true - }, - "node_modules/eslint/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "peer": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "peer": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", @@ -12201,14 +11658,6 @@ "dev": true, "license": "MIT" }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT", - "peer": true - }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", @@ -12248,20 +11697,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, "node_modules/filelist": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", @@ -12389,22 +11824,6 @@ "flat": "cli.js" } }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, "node_modules/flatted": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", @@ -13967,17 +13386,6 @@ "node": ">=8" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", @@ -14654,14 +14062,6 @@ "node": ">=4" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true, - "license": "MIT", - "peer": true - }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -14695,14 +14095,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT", - "peer": true - }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -15044,17 +14436,6 @@ "node": ">=10" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -15205,21 +14586,6 @@ "node": ">=0.10.0" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/license-webpack-plugin": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", @@ -17367,25 +16733,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", @@ -18934,17 +18281,6 @@ "dev": true, "license": "MIT" }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/pretty-bytes": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", @@ -21074,20 +20410,6 @@ "node": ">=8" } }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/strong-log-transformer": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", @@ -21755,20 +21077,6 @@ "dev": true, "license": "0BSD" }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", @@ -22582,17 +21890,6 @@ "dev": true, "license": "MIT" }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -22807,7 +22104,7 @@ }, "projects/layout": { "name": "@hug/ngx-layout", - "version": "1.1.2", + "version": "1.1.3", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22823,7 +22120,7 @@ }, "projects/list-loader": { "name": "@hug/ngx-list-loader", - "version": "1.1.2", + "version": "1.1.3", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22864,7 +22161,7 @@ }, "projects/numeric-stepper": { "name": "@hug/ngx-numeric-stepper", - "version": "1.1.3", + "version": "1.1.4", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22911,7 +22208,7 @@ }, "projects/sidenav": { "name": "@hug/ngx-sidenav", - "version": "1.1.1", + "version": "1.1.2", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22925,7 +22222,7 @@ }, "projects/snackbar": { "name": "@hug/ngx-snackbar", - "version": "1.1.2", + "version": "1.1.3", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22954,7 +22251,7 @@ }, "projects/status": { "name": "@hug/ngx-status", - "version": "1.1.1", + "version": "1.1.2", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22972,7 +22269,7 @@ }, "projects/time-picker": { "name": "@hug/ngx-time-picker", - "version": "1.1.2", + "version": "1.1.3", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -22991,7 +22288,7 @@ }, "projects/tooltip": { "name": "@hug/ngx-tooltip", - "version": "1.1.2", + "version": "1.1.3", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" @@ -23008,7 +22305,7 @@ }, "projects/user-card": { "name": "@hug/ngx-user-card", - "version": "1.1.1", + "version": "1.1.2", "license": "GPL-3.0-only", "dependencies": { "tslib": "^2.6.3" diff --git a/projects/layout/package.json b/projects/layout/package.json index 6dbf5948..ac5efbe2 100644 --- a/projects/layout/package.json +++ b/projects/layout/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-layout", - "version": "1.1.2", + "version": "1.1.3", "description": "HUG Angular - layout component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -48,4 +48,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/list-loader/package.json b/projects/list-loader/package.json index f57b2bdc..8fd10415 100644 --- a/projects/list-loader/package.json +++ b/projects/list-loader/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-list-loader", - "version": "1.1.2", + "version": "1.1.3", "description": "HUG Angular - list loader component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", diff --git a/projects/numeric-stepper/package.json b/projects/numeric-stepper/package.json index f59297b3..aec9f3bf 100644 --- a/projects/numeric-stepper/package.json +++ b/projects/numeric-stepper/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-numeric-stepper", - "version": "1.1.3", + "version": "1.1.4", "description": "HUG Angular - numeric stepper component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -48,4 +48,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/sidenav/package.json b/projects/sidenav/package.json index fe66249f..86e5bfa7 100644 --- a/projects/sidenav/package.json +++ b/projects/sidenav/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-sidenav", - "version": "1.1.1", + "version": "1.1.2", "description": "HUG Angular - sidenav component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -46,4 +46,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/snackbar/package.json b/projects/snackbar/package.json index 5a29c989..b367ac04 100644 --- a/projects/snackbar/package.json +++ b/projects/snackbar/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-snackbar", - "version": "1.1.2", + "version": "1.1.3", "description": "HUG Angular - snackbar component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -41,4 +41,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/status/package.json b/projects/status/package.json index 151246c4..af3ffe47 100644 --- a/projects/status/package.json +++ b/projects/status/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-status", - "version": "1.1.1", + "version": "1.1.2", "description": "HUG Angular - status component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -50,4 +50,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/time-picker/package.json b/projects/time-picker/package.json index 3a351308..cc42acb7 100644 --- a/projects/time-picker/package.json +++ b/projects/time-picker/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-time-picker", - "version": "1.1.2", + "version": "1.1.3", "description": "HUG Angular - time picker component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -46,4 +46,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/tooltip/package.json b/projects/tooltip/package.json index 501ff18e..268fac58 100644 --- a/projects/tooltip/package.json +++ b/projects/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-tooltip", - "version": "1.1.2", + "version": "1.1.3", "description": "HUG Angular - tooltip component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", @@ -44,4 +44,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/projects/user-card/package.json b/projects/user-card/package.json index bc503c99..6aa9da85 100644 --- a/projects/user-card/package.json +++ b/projects/user-card/package.json @@ -1,6 +1,6 @@ { "name": "@hug/ngx-user-card", - "version": "1.1.1", + "version": "1.1.2", "description": "HUG Angular - user-card component", "homepage": "https://github.com/dsi-hug/ngx-components", "license": "GPL-3.0-only", diff --git a/projects/user-tooltip/package.json b/projects/user-tooltip/package.json index 7d4daae5..72064567 100644 --- a/projects/user-tooltip/package.json +++ b/projects/user-tooltip/package.json @@ -43,4 +43,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} From 197b1ad16bd89ea05171b18ec6b04469bcba4ed8 Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:26:53 +0000 Subject: [PATCH 4/9] deps(@hug/ngx-numeric-stepper): upgrade to v1.1.4 [skip ci] --- package-lock.json | 2 +- projects/time-picker/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index d517c025..007a7445 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22281,7 +22281,7 @@ "@angular/forms": ">= 14", "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", - "@hug/ngx-numeric-stepper": "1.1.3", + "@hug/ngx-numeric-stepper": "1.1.4", "date-fns": "^2.30.0", "rxjs": ">= 7.0.0" } diff --git a/projects/time-picker/package.json b/projects/time-picker/package.json index cc42acb7..7f498833 100644 --- a/projects/time-picker/package.json +++ b/projects/time-picker/package.json @@ -38,7 +38,7 @@ "rxjs": ">= 7.0.0", "date-fns": "^2.30.0", "@hug/ngx-core": "1.1.7", - "@hug/ngx-numeric-stepper": "1.1.3" + "@hug/ngx-numeric-stepper": "1.1.4" }, "dependencies": { "tslib": "^2.6.3" @@ -46,4 +46,4 @@ "publishConfig": { "access": "public" } -} +} \ No newline at end of file From 0195aed63f8bfa3629a19969aa4cecba32e11c40 Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:26:55 +0000 Subject: [PATCH 5/9] deps(@hug/ngx-user-card): upgrade to v1.1.2 [skip ci] --- package-lock.json | 2 +- projects/user-tooltip/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 007a7445..bb1ffda2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22330,7 +22330,7 @@ "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", "@hug/ngx-tooltip": "1.1.2", - "@hug/ngx-user-card": "1.1.1" + "@hug/ngx-user-card": "1.1.2" } } } diff --git a/projects/user-tooltip/package.json b/projects/user-tooltip/package.json index 72064567..1053b4c3 100644 --- a/projects/user-tooltip/package.json +++ b/projects/user-tooltip/package.json @@ -35,7 +35,7 @@ "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", "@hug/ngx-tooltip": "1.1.2", - "@hug/ngx-user-card": "1.1.1" + "@hug/ngx-user-card": "1.1.2" }, "dependencies": { "tslib": "^2.6.3" @@ -43,4 +43,4 @@ "publishConfig": { "access": "public" } -} +} \ No newline at end of file From 20a211ca0fef0e0ac48ffa19edc01f0f1680c88d Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:26:57 +0000 Subject: [PATCH 6/9] deps(@hug/ngx-snackbar): upgrade to v1.1.3 [skip ci] --- package-lock.json | 2 +- projects/status/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index bb1ffda2..554be090 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22263,7 +22263,7 @@ "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", "@hug/ngx-message-box": "1.1.2", - "@hug/ngx-snackbar": "1.1.2", + "@hug/ngx-snackbar": "1.1.3", "rxjs": ">= 7.0.0" } }, diff --git a/projects/status/package.json b/projects/status/package.json index af3ffe47..9380d253 100644 --- a/projects/status/package.json +++ b/projects/status/package.json @@ -41,7 +41,7 @@ "@angular/material": ">= 14", "rxjs": ">= 7.0.0", "@hug/ngx-core": "1.1.7", - "@hug/ngx-snackbar": "1.1.2", + "@hug/ngx-snackbar": "1.1.3", "@hug/ngx-message-box": "1.1.2" }, "dependencies": { @@ -50,4 +50,4 @@ "publishConfig": { "access": "public" } -} +} \ No newline at end of file From 92ee5752a470f58b7ca6498da96e9b2d28d24ffb Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:26:59 +0000 Subject: [PATCH 7/9] deps(@hug/ngx-sidenav): upgrade to v1.1.2 [skip ci] --- package-lock.json | 2 +- projects/layout/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 554be090..5053c6bb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22115,7 +22115,7 @@ "@angular/core": ">= 14", "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", - "@hug/ngx-sidenav": "1.1.1" + "@hug/ngx-sidenav": "1.1.2" } }, "projects/list-loader": { diff --git a/projects/layout/package.json b/projects/layout/package.json index ac5efbe2..6c83cd05 100644 --- a/projects/layout/package.json +++ b/projects/layout/package.json @@ -40,7 +40,7 @@ "@angular/cdk": ">= 14", "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", - "@hug/ngx-sidenav": "1.1.1" + "@hug/ngx-sidenav": "1.1.2" }, "dependencies": { "tslib": "^2.6.3" @@ -48,4 +48,4 @@ "publishConfig": { "access": "public" } -} +} \ No newline at end of file From 6e040452e90152f26f396b02f480d68aec6ad74b Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:27:02 +0000 Subject: [PATCH 8/9] deps(@hug/ngx-tooltip): upgrade to v1.1.3 [skip ci] --- package-lock.json | 2 +- projects/user-tooltip/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5053c6bb..5e709dd8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22329,7 +22329,7 @@ "@angular/core": ">= 14", "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", - "@hug/ngx-tooltip": "1.1.2", + "@hug/ngx-tooltip": "1.1.3", "@hug/ngx-user-card": "1.1.2" } } diff --git a/projects/user-tooltip/package.json b/projects/user-tooltip/package.json index 1053b4c3..ceb3bb88 100644 --- a/projects/user-tooltip/package.json +++ b/projects/user-tooltip/package.json @@ -34,7 +34,7 @@ "@angular/core": ">= 14", "@angular/material": ">= 14", "@hug/ngx-core": "1.1.7", - "@hug/ngx-tooltip": "1.1.2", + "@hug/ngx-tooltip": "1.1.3", "@hug/ngx-user-card": "1.1.2" }, "dependencies": { From 8e067f5f318c8e9b9b2dbfe5b593d631a5e0f38c Mon Sep 17 00:00:00 2001 From: dsi-hug-bot Date: Mon, 8 Jul 2024 12:27:04 +0000 Subject: [PATCH 9/9] chore(release): update projects changelogs [skip ci] - project: @hug/ngx-numeric-stepper 1.1.4 - project: @hug/ngx-user-tooltip 1.1.2 - project: @hug/ngx-list-loader 1.1.3 - project: @hug/ngx-time-picker 1.1.3 - project: @hug/ngx-user-card 1.1.2 - project: @hug/ngx-snackbar 1.1.3 - project: @hug/ngx-sidenav 1.1.2 - project: @hug/ngx-tooltip 1.1.3 - project: @hug/ngx-layout 1.1.3 - project: @hug/ngx-status 1.1.2 --- projects/layout/CHANGELOG.md | 20 ++++++++++++++++++++ projects/list-loader/CHANGELOG.md | 12 ++++++++++++ projects/numeric-stepper/CHANGELOG.md | 12 ++++++++++++ projects/sidenav/CHANGELOG.md | 18 ++++++++++++++++++ projects/snackbar/CHANGELOG.md | 12 ++++++++++++ projects/status/CHANGELOG.md | 14 ++++++++++++++ projects/time-picker/CHANGELOG.md | 14 ++++++++++++++ projects/tooltip/CHANGELOG.md | 12 ++++++++++++ projects/user-card/CHANGELOG.md | 12 ++++++++++++ 9 files changed, 126 insertions(+) diff --git a/projects/layout/CHANGELOG.md b/projects/layout/CHANGELOG.md index d4f28dc1..f9c6b53f 100644 --- a/projects/layout/CHANGELOG.md +++ b/projects/layout/CHANGELOG.md @@ -1,3 +1,23 @@ +## 1.1.3 (2024-07-08) + + +### 🐛 Fixes + +- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e)) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + +- **@hug/ngx-sidenav:** upgrade to v1.1.2 ([92ee575](https://github.com/DSI-HUG/ngx-components/commit/92ee575)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot +- Serge + ## 1.1.0 (2024-06-26) diff --git a/projects/list-loader/CHANGELOG.md b/projects/list-loader/CHANGELOG.md index 70fec572..44a6ba43 100644 --- a/projects/list-loader/CHANGELOG.md +++ b/projects/list-loader/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.3 (2024-07-08) + + +### 🐛 Fixes + +- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e)) + + +### ❤️ Thank You + +- Serge + ## 1.1.1 (2024-06-17) diff --git a/projects/numeric-stepper/CHANGELOG.md b/projects/numeric-stepper/CHANGELOG.md index 2b5c3cfe..9d56292e 100644 --- a/projects/numeric-stepper/CHANGELOG.md +++ b/projects/numeric-stepper/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.4 (2024-07-08) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot + ## 1.1.2 (2024-06-24) diff --git a/projects/sidenav/CHANGELOG.md b/projects/sidenav/CHANGELOG.md index 9be2858b..e1a8da95 100644 --- a/projects/sidenav/CHANGELOG.md +++ b/projects/sidenav/CHANGELOG.md @@ -1,3 +1,21 @@ +## 1.1.2 (2024-07-08) + + +### 🐛 Fixes + +- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e)) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot +- Serge + ## 1.1.0 (2024-06-26) diff --git a/projects/snackbar/CHANGELOG.md b/projects/snackbar/CHANGELOG.md index 7363cce0..259817cd 100644 --- a/projects/snackbar/CHANGELOG.md +++ b/projects/snackbar/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.3 (2024-07-08) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot + ## 1.1.1 (2024-06-24) diff --git a/projects/status/CHANGELOG.md b/projects/status/CHANGELOG.md index 66a04fdd..86163324 100644 --- a/projects/status/CHANGELOG.md +++ b/projects/status/CHANGELOG.md @@ -1,3 +1,17 @@ +## 1.1.2 (2024-07-08) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + +- **@hug/ngx-snackbar:** upgrade to v1.1.3 ([20a211c](https://github.com/DSI-HUG/ngx-components/commit/20a211c)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot + ## 1.1.0 (2024-06-24) diff --git a/projects/time-picker/CHANGELOG.md b/projects/time-picker/CHANGELOG.md index 4b1886a0..45810010 100644 --- a/projects/time-picker/CHANGELOG.md +++ b/projects/time-picker/CHANGELOG.md @@ -1,3 +1,17 @@ +## 1.1.3 (2024-07-08) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + +- **@hug/ngx-numeric-stepper:** upgrade to v1.1.4 ([197b1ad](https://github.com/DSI-HUG/ngx-components/commit/197b1ad)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot + ## 1.1.1 (2024-06-24) diff --git a/projects/tooltip/CHANGELOG.md b/projects/tooltip/CHANGELOG.md index 21267fb7..8422b0ee 100644 --- a/projects/tooltip/CHANGELOG.md +++ b/projects/tooltip/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.3 (2024-07-08) + + +### 🌱 Dependencies + +- **@hug/ngx-core:** upgrade to v1.1.7 ([b0f15b9](https://github.com/DSI-HUG/ngx-components/commit/b0f15b9)) + + +### ❤️ Thank You + +- dsi-hug-bot @dsi-hug-bot + ## 1.1.1 (2024-06-24) diff --git a/projects/user-card/CHANGELOG.md b/projects/user-card/CHANGELOG.md index a7d22183..80848ef2 100644 --- a/projects/user-card/CHANGELOG.md +++ b/projects/user-card/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.2 (2024-07-08) + + +### 🐛 Fixes + +- theming ([79feb6e](https://github.com/DSI-HUG/ngx-components/commit/79feb6e)) + + +### ❤️ Thank You + +- Serge + ## 1.1.0 (2024-06-26)