question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Upgrade to Angular 7.3

See original GitHub issue

I’m submitting a…


[ ] Bug report  
[x] Feature request

Current behavior

Im trying to upgrade my system to angular 7.3 but angular-star-rating have some incompatibles peer dependencies (@angular/forms, @angular/core and rjxs)

How can I help you to upgrade these dependencies?

Minimal reproduction of the problem with instructions

``` ng update angular/core ````

Package "angular-star-rating" has an incompatible peer dependency to "@angular/forms" (requires "^4.0.0 || ^5.0.0" (extended), would install "7.2.8").
                  Package "angular-star-rating" has an incompatible peer dependency to "@angular/core" (requires "^4.0.0 || ^5.0.0" (extended), would install "7.2.8").
                  Package "angular-star-rating" has an incompatible peer dependency to "rxjs" (requires "^5.1.0", would install "6.4.0").

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:8
  • Comments:11

github_iconTop GitHub Comments

10reactions
webcat12345commented, Jun 19, 2019

Just import this @import "~css-star-rating/css/star-rating.min.css"; not scss mixins. Also you need to override classes to make your own style. Functions won’t work.

Something like this.

.rating.color-negative .star-container .star {
  svg {
    fill: #f18f01 !important;
  }
  i {
    color: #f18f01 !important;;
  }
}

.rating.color-ok .star-container .star {
  svg {
    fill: #f18f01 !important;;
  }
  i {
    color: #f18f01 !important;;
  }
}

.rating.color-positive .star-container .star {
  svg {
    fill: #f18f01 !important;;
  }
  i {
    color: #f18f01 !important;;
  }
}

.rating.color-default .star-container .star {
  svg {
    fill: #f18f01 !important;;
  }
  i {
    color: #f18f01 !important;;
  }
}
2reactions
barryam3commented, Nov 17, 2019

This is blocked by BioPhoton/css-star-rating#44 which I have submitted a fix for (BioPhoton/css-star-rating#47) so here’s hoping @BioPhoton accepts it. He doesn’t seem to have been very active as of late.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Angular Update Guide
Select the options that match your update. Angular versions. From v. 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.2, 10.1, 10.0, 9.1, 9.0, 8.2,...
Read more >
Upgrading an Existing Angular Application to CLI 7.3 for ...
Upgrade global CLI to 7.3; Upgrade project to CLI 7.3; Delete IE polyfills from polyfills.ts; Add flag to angular.json; Validate it's working.
Read more >
How To Update Angular CLI To Latest Version
To update Angular CLI to latest version Angular, use ng update @angular/core @angular/cli@latest command.
Read more >
7.3.0 - @angular/cli - npm
CLI tool for Angular. Latest version: 15.0.3, last published: 6 days ago. Start using @angular/cli in your project by running `npm i ...
Read more >
Angular CLI version is showing as 7.3.9 not 8 - Stack Overflow
If so, ng is showing the CLI installed in your project, and not your global one. Now, if you want to upgrade to...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found