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: 8ee0d498c66d514cbac32e9276dbb4ac492989a5
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: a2a4960648338fd958e7981defb466fd333f48d4
Choose a head ref

Commits on Oct 12, 2022

  1. Copy the full SHA
    f502535 View commit details

Commits on Oct 13, 2022

  1. Copy the full SHA
    8514f92 View commit details
  2. Copy the full SHA
    729f62f View commit details

Commits on Oct 14, 2022

  1. Copy the full SHA
    eb9c0ae View commit details
  2. Merge pull request #1628 from karelhala/proper-group-label

    Use proper group label and correct group type
    Hyperkid123 authored Oct 14, 2022
    Copy the full SHA
    c126899 View commit details
  3. Copy the full SHA
    2dc55c2 View commit details

Commits on Oct 17, 2022

  1. Copy the full SHA
    6b75b0c View commit details
  2. Merge pull request #1631 from Hyperkid123/set-fec-config

    Fix missing fec config in static script
    Hyperkid123 authored Oct 17, 2022
    Copy the full SHA
    36c2723 View commit details
  3. Copy the full SHA
    f4e2095 View commit details
  4. Run npm audit

    Hyperkid123 committed Oct 17, 2022
    Copy the full SHA
    1e8fa2a View commit details
  5. Merge pull request #1632 from Hyperkid123/audit

    npm audit
    Hyperkid123 authored Oct 17, 2022
    Copy the full SHA
    653b7bb View commit details
  6. Copy the full SHA
    2a22385 View commit details
  7. Merge pull request #1619 from Hyperkid123/routerv6-update-doc

    Add Router v6 migration steps guide docs
    Hyperkid123 authored Oct 17, 2022
    Copy the full SHA
    6929195 View commit details

Commits on Oct 18, 2022

  1. Copy the full SHA
    9b0f905 View commit details
  2. Merge pull request #1634 from Hyperkid123/add-ref-to-conditional-filter

    Allow sending ref to conditional filter items.
    fhlavac authored Oct 18, 2022
    Copy the full SHA
    ecf3b69 View commit details
  3. Copy the full SHA
    92d9d1c View commit details

Commits on Oct 20, 2022

  1. Copy the full SHA
    ea0bdd9 View commit details
  2. Copy the full SHA
    632746a View commit details
  3. Add build cache docs.

    Hyperkid123 committed Oct 20, 2022
    Copy the full SHA
    440768f View commit details
  4. Fix plugins tests.

    Hyperkid123 committed Oct 20, 2022
    Copy the full SHA
    841c7a2 View commit details

Commits on Oct 21, 2022

  1. Merge pull request #1636 from Hyperkid123/build-optimization

    Webpack build optimization
    Hyperkid123 authored Oct 21, 2022
    Copy the full SHA
    a2a4960 View commit details
Showing with 8,975 additions and 13,044 deletions.
  1. +2 −0 .gitignore
  2. +2 −0 Dockerfile
  3. +1 −1 docker-compose.yml
  4. +1 −1 jest.config.js
  5. +8,568 −13,006 package-lock.json
  6. +3 −2 package.json
  7. +1 −1 packages/components/package.json
  8. +6 −1 packages/components/src/ConditionalFilter/ConditionalFilter.tsx
  9. +11 −2 packages/components/src/ConditionalFilter/GroupFilter.tsx
  10. +4 −0 packages/components/src/ConditionalFilter/TextFilter.tsx
  11. +16 −16 packages/components/src/ConditionalFilter/groupFilterConstants.ts
  12. +6 −2 packages/config/bin/fec.js
  13. +3 −2 packages/config/package.json
  14. +21 −0 packages/config/src/config.js
  15. +2 −0 packages/config/src/plugins.js
  16. +2 −2 packages/config/src/plugins.test.js
  17. +55 −0 packages/docs/components/blog-nav/index.js
  18. +9 −0 packages/docs/components/navigation/blog-navigation.json
  19. +3 −0 packages/docs/components/navigation/common-navigation.js
  20. +6 −1 packages/docs/components/navigation/frontend-components-config-navigation.json
  21. +9 −0 packages/docs/components/navigation/news-navigation.json
  22. +2 −1 packages/docs/components/table-of-contents/index.js
  23. +3 −2 packages/docs/next.config.mjs
  24. +1 −1 packages/docs/package.json
  25. +163 −0 packages/docs/pages/blog/router-v6.mdx
  26. +4 −0 packages/docs/pages/frontend-components-config/index.mdx
  27. +65 −0 packages/docs/pages/frontend-components-config/use-cache.mdx
  28. +2 −0 packages/docs/pages/index.js
  29. +2 −1 packages/pdf-generator/package.json
  30. +1 −1 packages/rule-components/package.json
  31. +1 −1 tsconfig.json
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
# ide config
.idea/
.editorconfig
.vscode/

# devel
*.js.map
@@ -30,3 +31,4 @@ coverage
lerna-debug.log
.DS_Store
packages/**/package-lock.json
packages/**/.cache
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -3,6 +3,8 @@ USER root
WORKDIR /docs
COPY ./packages /docs/packages
COPY ./tsconfig.json /docs/tsconfig.json
# Clear any modules from disk
RUN rm -rf /docs/packages/*/node_modules
WORKDIR /docs/packages/docs
RUN npm i
RUN npm run build
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ services:
build:
context: ./
dockerfile: Dockerfile.dev
command: sh -c "npm i && npm run generate:components && npm run watch"
command: sh -c "export CYPRESS_CACHE_FOLDER=/docs/packages/docs/.cache && npm i && npm run generate:components && npm run watch"
ports:
- '3000:3000'
volumes:
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ const config = {
setupFilesAfterEnv: ['<rootDir>/config/setupTests.js', 'jest-canvas-mock'],
testEnvironment: 'jsdom',
roots: ['<rootDir>/packages/'],
modulePathIgnorePatterns: ['<rootDir>/packages/create-crc-app/templates'],
modulePathIgnorePatterns: ['<rootDir>/packages/create-crc-app/templates', '<rootDir>/packages/docs/.cache'],
moduleNameMapper: {
'\\.(css|scss)$': 'identity-obj-proxy',
'^lodash-es$': 'lodash',
Loading