Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RedHatInsights/frontend-components
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a8c3d8675759984d4a84ec0a407a372638d6b444
Choose a base ref
...
head repository: RedHatInsights/frontend-components
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 15903b727f890387bd9b8ae788db3b4173488d94
Choose a head ref

Commits on Jan 9, 2023

  1. Copy the full SHA
    f0d79e2 View commit details
  2. Add new chrome package

    Hyperkid123 committed Jan 9, 2023
    Copy the full SHA
    f4e8060 View commit details
  3. Copy the full SHA
    9eff0f7 View commit details
  4. Copy the full SHA
    20447c2 View commit details
  5. Copy the full SHA
    ad6af06 View commit details

Commits on Jan 10, 2023

  1. Copy the full SHA
    118ce94 View commit details
  2. Copy the full SHA
    1c5e620 View commit details
  3. Copy the full SHA
    8785122 View commit details

Commits on Jan 11, 2023

  1. Copy the full SHA
    f3e4bd4 View commit details
  2. Copy the full SHA
    253c8f3 View commit details

Commits on Jan 12, 2023

  1. Copy the full SHA
    f7cdb13 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    040cd33 View commit details
  3. Merge pull request #1692 from Hyperkid123/chrome-package

    Chrome package
    Hyperkid123 authored Jan 12, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    87f6b1e View commit details
  4. Copy the full SHA
    cd713be View commit details
  5. Copy the full SHA
    71c23f0 View commit details
  6. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7f425c6 View commit details
  7. remove all timestamp generation

    bholifie committed Jan 12, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    778c3a2 View commit details

Commits on Jan 13, 2023

  1. Merge pull request #1697 from fhlavac/clear

    Clearable text input in group filter
    Hyperkid123 authored Jan 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    14ade90 View commit details
  2. Copy the full SHA
    30bcb52 View commit details
  3. Pin charts version so pdf generator works correctly (#1698)

    Co-authored-by: Filip Hlavac <50696716+fhlavac@users.noreply.github.com>
    karelhala and fhlavac authored Jan 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ad282dd View commit details
  4. Copy the full SHA
    d6ced16 View commit details
  5. Copy the full SHA
    c101aaf View commit details
  6. Copy the full SHA
    4711c18 View commit details
  7. Merge pull request #1699 from Fewwy/updating-cypress-version-range

    chore(deps): updating range for cypress versions
    Hyperkid123 authored Jan 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    143217b View commit details
  8. Copy the full SHA
    78e6e7a View commit details
  9. Copy PF's chart theme utilities since they no longer support it (#1701)

    Co-authored-by: Filip Hlavac <50696716+fhlavac@users.noreply.github.com>
    karelhala and fhlavac authored Jan 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dc1a65c View commit details
  10. Copy the full SHA
    fdfa5cc View commit details
  11. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d0ba17a View commit details
  12. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0fc1896 View commit details
  13. Merge pull request #1694 from RedHatInsights/RHCLOUD-21728

    [RHCLOUD-21728] Remove timestamps from generated files
    Hyperkid123 authored Jan 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    581aa53 View commit details
  14. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    19c14cf View commit details

Commits on Jan 16, 2023

  1. Merge pull request #1700 from riccardo-forina/master

    feat: make fec build compatible with monorepo setups
    Hyperkid123 authored Jan 16, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    15903b7 View commit details
Showing with 3,871 additions and 693 deletions.
  1. +2 −0 jest.config.js
  2. +1,754 −660 package-lock.json
  3. +1 −0 package.json
  4. +25 −0 packages/chrome/.gitignore
  5. +12 −0 packages/chrome/.npmignore
  6. +9 −0 packages/chrome/README.md
  7. +40 −0 packages/chrome/package.json
  8. +15 −0 packages/chrome/src/ChromeContext/ChromeContext.ts
  9. +2 −0 packages/chrome/src/ChromeContext/index.ts
  10. +65 −0 packages/chrome/src/ChromeProvider/ChromeProvider.test.tsx
  11. +55 −0 packages/chrome/src/ChromeProvider/ChromeProvider.tsx
  12. +5 −0 packages/chrome/src/ChromeProvider/__mocks__/@unleash/proxy-client-react.js
  13. +62 −0 packages/chrome/src/ChromeProvider/chromeState.test.ts
  14. +78 −0 packages/chrome/src/ChromeProvider/chromeState.ts
  15. +3 −0 packages/chrome/src/ChromeProvider/index.ts
  16. +3 −0 packages/chrome/src/index.ts
  17. +2 −0 packages/chrome/src/useLastVisited/index.ts
  18. +19 −0 packages/chrome/src/useLastVisited/useLastVisited.ts
  19. +61 −0 packages/chrome/src/utils/fetch.test.ts
  20. +20 −0 packages/chrome/src/utils/fetch.ts
  21. +8 −0 packages/chrome/tsconfig.cjs.json
  22. +12 −0 packages/chrome/tsconfig.json
  23. +1 −1 packages/components/package.json
  24. +46 −14 packages/components/src/ConditionalFilter/GroupFilter.tsx
  25. +4 −0 packages/components/src/ConditionalFilter/conditional-filter.scss
  26. +16 −0 packages/components/src/ConditionalFilter/group-filter.scss
  27. +2 −1 packages/config-utils/federated-modules.js
  28. +1 −1 packages/config/package.json
  29. +1 −1 packages/config/src/config.js
  30. +7 −2 packages/config/src/config.test.js
  31. +1 −3 packages/config/src/scripts/build-script.js
  32. +1 −2 packages/config/src/scripts/dev-script.js
  33. +2 −2 packages/pdf-generator/package.json
  34. +4 −4 packages/pdf-generator/src/components/Chart.js
  35. +84 −0 packages/pdf-generator/src/utils/theme/chartTheme.js
  36. +17 −0 packages/pdf-generator/src/utils/theme/themes/axis-theme.js
  37. +365 −0 packages/pdf-generator/src/utils/theme/themes/base-theme.js
  38. +140 −0 packages/pdf-generator/src/utils/theme/themes/bullet-theme.js
  39. +64 −0 packages/pdf-generator/src/utils/theme/themes/color-theme.js
  40. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/blue-color-theme.js
  41. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/cyan-color-theme.js
  42. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/gold-color-theme.js
  43. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/gray-color-theme.js
  44. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/green-color-theme.js
  45. +61 −0 packages/pdf-generator/src/utils/theme/themes/dark/multi-color-ordered-theme.js
  46. +81 −0 packages/pdf-generator/src/utils/theme/themes/dark/multi-color-unordered-theme.js
  47. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/orange-color-theme.js
  48. +21 −0 packages/pdf-generator/src/utils/theme/themes/dark/purple-color-theme.js
  49. +15 −0 packages/pdf-generator/src/utils/theme/themes/donut-theme.js
  50. +34 −0 packages/pdf-generator/src/utils/theme/themes/donut-threshold-theme.js
  51. +30 −0 packages/pdf-generator/src/utils/theme/themes/donut-utilization-theme.js
  52. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/blue-color-theme.js
  53. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/cyan-color-theme.js
  54. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/gold-color-theme.js
  55. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/gray-color-theme.js
  56. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/green-color-theme.js
  57. +61 −0 packages/pdf-generator/src/utils/theme/themes/light/multi-color-ordered-theme.js
  58. +81 −0 packages/pdf-generator/src/utils/theme/themes/light/multi-color-unordered-theme.js
  59. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/orange-color-theme.js
  60. +21 −0 packages/pdf-generator/src/utils/theme/themes/light/purple-color-theme.js
  61. +15 −0 packages/pdf-generator/src/utils/theme/themes/threshold-theme.js
  62. +188 −0 packages/pdf-generator/src/utils/theme/utils.js
  63. +2 −2 packages/utils/package.json
2 changes: 2 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -13,6 +13,8 @@ const config = {
],
collectCoverageFrom: [
'<rootDir>/packages/**/src/**/*.js',
'<rootDir>/packages/**/src/**/*.ts',
'<rootDir>/packages/**/src/**/*.tsx',
'!<rootDir>/packages/**/stories/*',
'!<rootDir>/packages/**/index.js',
'!<rootDir>/packages/**/*{c|C}ontext*.js',
Loading