Skip to content

Commit

Permalink
docs: fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shhdharmen committed Feb 29, 2024
1 parent 89e6a13 commit f7b6933
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 130 deletions.
110 changes: 0 additions & 110 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at netanel7799@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at shhdharmen@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ ng add @ngxpert/cmdk
# For Angular version < 16

## First, install dependencies
npm install @ngxpert/overview@4 @ngxpert/until-destroy@9 @angular/cdk@15
npm install @ngneat/overview@4 @ngneat/until-destroy@9 @angular/cdk@15

## Then library
npm install @ngxpert/cmdk@1

# For Angular version >= 16

## First, install dependencies
npm install @ngxpert/overview@5 @ngxpert/until-destroy@10 @angular/cdk@16
npm install @ngneat/overview@5 @ngneat/until-destroy@10 @angular/cdk@16

## Then library
npm install @ngxpert/cmdk@2
Expand Down
4 changes: 2 additions & 2 deletions projects/ngxpert/cmdk/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"entryFile": "src/public-api.ts"
},
"allowedNonPeerDependencies": [
"@ngxpert/overview",
"@ngxpert/until-destroy",
"@ngneat/overview",
"@ngneat/until-destroy",
"@angular/cdk"
],
"assets": [{ "glob": "**/*.*", "input": "styles", "output": "styles/scss" }]
Expand Down
4 changes: 2 additions & 2 deletions projects/ngxpert/cmdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
"dependencies": {
"tslib": "^2.3.0",
"@ngxpert/overview": ">=5.0.0",
"@ngxpert/until-destroy": ">=10.0.0",
"@ngneat/overview": ">=5.0.0",
"@ngneat/until-destroy": ">=10.0.0",
"@angular/cdk": ">=16.0.0"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion projects/ngxpert/cmdk/src/lib/cmdk.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ModuleWithProviders, NgModule } from '@angular/core';
import { InputDirective } from './directives/input/input.directive';
import { EmptyDirective } from './directives/empty/empty.directive';
import { CommandComponent } from './components/command/command.component';
import { DynamicViewModule } from '@ngxpert/overview';
import { DynamicViewModule } from '@ngneat/overview';
import { GroupComponent } from './components/group/group.component';
import { SeparatorComponent } from './components/separator/separator.component';
import { CommonModule } from '@angular/common';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
OnDestroy,
HostBinding,
} from '@angular/core';
import { UntilDestroy, untilDestroyed } from '@ngxpert/until-destroy';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
import { CmdkService } from '../../cmdk.service';
import { EmptyDirective } from '../../directives/empty/empty.directive';
import { ItemDirective } from '../../directives/item/item.directive';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Input,
QueryList,
} from '@angular/core';
import { Content, DynamicViewModule } from '@ngxpert/overview';
import { Content, DynamicViewModule } from '@ngneat/overview';
import { ItemDirective } from '../../directives/item/item.directive';
import { CmdkGroupProps } from '../../types';
import { NgIf } from '@angular/common';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
Input,
Output,
} from '@angular/core';
import { UntilDestroy } from '@ngxpert/until-destroy';
import { UntilDestroy } from '@ngneat/until-destroy';
import { CmdkService } from '../../cmdk.service';
import { CmdkItemProps } from '../../types';

Expand Down
2 changes: 1 addition & 1 deletion projects/ngxpert/cmdk/src/lib/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter } from '@angular/core';
import { Content } from '@ngxpert/overview';
import { Content } from '@ngneat/overview';

export interface CmdkCommandProps {
/**
Expand Down
4 changes: 2 additions & 2 deletions src/app/sections/footer/footer.component.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<footer class="footer">
<div class="footerText">
Crafted by
<a href="https://ngxpert.com/" target="_blank" rel="noopener noreferrer">
<img src="https://ngxpert.com/logo.png" alt="Avatar of ngxpert" />
<a href="https://github.com/ngxpert" target="_blank" rel="noopener noreferrer">
<img src="https://github.com/ngxpert.png" alt="Avatar of ngxpert" />
ngxpert
</a> and <a href="https://shhdharmen.me/" target="_blank" rel="noopener noreferrer">
<img src="https://avatars.githubusercontent.com/u/6831283?s=40&v=4" alt="Avatar of Dharmen" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { Content, DynamicViewModule } from '@ngxpert/overview';
import { Content, DynamicViewModule } from '@ngneat/overview';
import { FramerIconComponent } from 'src/app/icons/framer/framer.component';
import { LinearIconComponent } from 'src/app/icons/linear-icon/linear-icon.component';
import { RaycastIconComponent } from 'src/app/icons/raycast-icon/raycast-icon.component';
Expand Down
2 changes: 1 addition & 1 deletion src/app/themes/framer/framer.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { Content, DynamicViewModule } from '@ngxpert/overview';
import { Content, DynamicViewModule } from '@ngneat/overview';
import { AvatarComponent } from 'src/app/icons/avatar/avatar.component';
import { BadgeComponent } from 'src/app/icons/badge/badge.component';
import { ButtonComponent } from 'src/app/icons/button/button.component';
Expand Down
2 changes: 1 addition & 1 deletion src/app/themes/linear/linear.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ChangePriorityIconComponent } from 'src/app/icons/change-priority-icon/
import { ChangeStatusIconComponent } from 'src/app/icons/change-status-icon/change-status-icon.component';
import { RemoveLabelIconComponent } from 'src/app/icons/remove-label-icon/remove-label-icon.component';
import { SetDueDateIconComponent } from 'src/app/icons/set-due-date-icon/set-due-date-icon.component';
import { DynamicViewModule } from '@ngxpert/overview';
import { DynamicViewModule } from '@ngneat/overview';
import { ItemDirective } from '../../../../projects/ngxpert/cmdk/src/lib/directives/item/item.directive';
import { NgFor } from '@angular/common';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AfterViewInit, Component, ElementRef, Input, ViewChild, forwardRef } from '@angular/core';
import { Content, DynamicViewModule } from '@ngxpert/overview';
import { Content, DynamicViewModule } from '@ngneat/overview';
import { FinderIconComponent } from 'src/app/icons/finder-icon/finder-icon.component';
import { StarIconComponent } from 'src/app/icons/star-icon/star-icon.component';
import { WindowIconComponent } from 'src/app/icons/window-icon/window-icon.component';
Expand Down
2 changes: 1 addition & 1 deletion src/app/themes/vercel/vercel.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, ElementRef, ViewChild } from '@angular/core';
import { Content, DynamicViewModule } from '@ngxpert/overview';
import { Content, DynamicViewModule } from '@ngneat/overview';
import { ContactIconComponent } from 'src/app/icons/contact-icon/contact-icon.component';
import { DocsIconComponent } from 'src/app/icons/docs-icon/docs-icon.component';
import { FeedbackIconComponent } from 'src/app/icons/feedback-icon/feedback-icon.component';
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { A11yModule } from '@angular/cdk/a11y';
import { OverlayModule } from '@angular/cdk/overlay';
import { SharedModule } from './app/shared/shared.module';
import { IconsModule } from './app/icons/icons.module';
import { DynamicViewModule } from '@ngxpert/overview';
import { DynamicViewModule } from '@ngneat/overview';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { CmdkModule } from '@ngxpert/cmdk';
import { BrowserModule, bootstrapApplication } from '@angular/platform-browser';
Expand Down
1 change: 1 addition & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
.info {
display: flex;
gap: 8px;
flex-direction: column;
}

.meta {
Expand Down

0 comments on commit f7b6933

Please sign in to comment.