Skip to content

Releases: Talend/ui

@talend/[email protected]

11 Jul 15:57
1fb065b
Compare
Choose a tag to compare

Minor Changes

  • 6fcd6e9: feat: Support .mjs files transform

@talend/[email protected]

11 Jul 15:57
1fb065b
Compare
Choose a tag to compare

Patch Changes

  • 0fd9f4c: fix: do not copy the same lib multiple times

@talend/[email protected]

11 Jul 15:57
1fb065b
Compare
Choose a tag to compare

Patch Changes

  • d7a69e7: fix: fallback to default output.path if not found

@talend/[email protected]

11 Jul 15:57
1fb065b
Compare
Choose a tag to compare

Minor Changes

  • b8c67b7: fix(APIC-827): reset inputCopy state when input value changes

@talend/[email protected]

08 Jul 14:01
173a803
Compare
Choose a tag to compare

Patch Changes

  • 71a7367: fix(design-system): Allow additional bundles for IconsProvider

@talend/[email protected]

07 Jul 14:47
0181d61
Compare
Choose a tag to compare

Minor Changes

@talend/[email protected]

07 Jul 06:54
fb484c4
Compare
Choose a tag to compare

Patch Changes

@talend/[email protected]

07 Jul 06:54
fb484c4
Compare
Choose a tag to compare

Patch Changes

@talend/[email protected]

07 Jul 06:54
fb484c4
Compare
Choose a tag to compare

Patch Changes

@talend/[email protected]

07 Jul 06:54
fb484c4
Compare
Choose a tag to compare

Patch Changes

  • 2a8de8a: * fix: do not generate both hashed and non hashed assets for fonts, images and svgs.

    • fix: do not copy icons into app root folder
    • chore: put assets config in common so app and umd configuration are aligned.

    Note: path has been changed this way:

    # case of woff in lib
    - mylib/dist/[hash].woff
    - mylib/dist/fonts/[name].woff
    + mylib/dist/assets/fonts/[name].woff
    
    # case if woff in app
    - myapp/dist/[hash].woff
    - myapp/dist/fonts/[name].woff
    + myapp/dist/assets/fonts/[name]-[hash].woff
    
    # case of img in lib
    - not supported
    + mylib/dist/assets/img/[name].woff
    
    # case of img in app
    - myapp/dist/[hash].png
    - myapp/dist/assets/img/[name].png
    + myapp/dist/assets/img/[name]-[hash].png
    
    # case of svg in app
    - myapp/dist/[hash].svg
    - myapp/dist/assets/svg/[name].svg
    + myapp/dist/assets/svg/[name]-[hash].svg
    
    # case of svg in lib
    - mylib/dist/[hash].svg
    - mylib/dist/assets/svg/[name].svg
    + mylib/dist/assets/svg/[name]-[hash].svg