🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@cdssnc/gcds-components-angular

Package Overview
Dependencies
Maintainers
8
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cdssnc/gcds-components-angular - npm Package Versions

1345

0.27.0

Diff
ethanwallace
published 0.27.0 •

Changelog

Source

0.27.0

Released on 2024-11-21

:rocket: New Features

  • gcds-file-uploader: Add files prop for ease of access to uploaded files (#676) (2323e42)

:bug: :wrench: Bug Fixes

  • Allow skipping blocking form submission with validate-on attribute (17c50ae)
  • error-message property blocking form submission. (#673) (17c50ae)
  • gcds-fieldset: Add CSS to allow form components to maintain responsive layout (#683) (6b41ba0)

:arrows_counterclockwise: Code Refactoring

  • adjust details font sizes and summary + panel padding (#674) (fd5a422)
  • improve date-modified validation (#679) (481d8a3)
  • remove focus colour from label, hint and legend (#678) (544f1cb)
ethanwallace
published 0.26.3 •

Changelog

Source

0.26.3

Released on 2024-10-10

:bug: :wrench: Bug Fixes

  • gcds-error-summary: focusing gcds element from manual error-links list (#666) (290e271)
  • gcds-select: Update available options in select if changed (#655) (e7a16cb)

:arrows_counterclockwise: Code Refactoring

  • gcds-signature: Signature alternative text to be bilingual (#660) (146e8b2)
ethanwallace
published 0.26.2 •

Changelog

Source

0.26.2

Released on 2024-09-25

:bug: :wrench: Bug Fixes

  • Fix typos in tokens (#646) (4c8d850)
  • gcds-sr-only: Align with WCAG technique C7 (#642) (3cbe8bc)
  • Update tokens to fix FIP red and date-input legend font weight (#650) (3c602da)
  • Update tokens to inherit fixes for FIP red and legend font weight (3c602da)
ethanwallace
published 0.26.1 •

Changelog

Source

0.26.1

Released on: 2024-09-16

:bug: :wrench: Bug Fixes

  • add mobile font size to search component (#640) (2f8efa3)
ethanwallace
published 0.26.0 •

Changelog

Source

0.26.0

Released on: 2024-09-12

:rocket: New Features

:bug: :wrench: Bug Fixes

ethanwallace
published 0.25.1 •

Changelog

Source

0.25.1

Released on: 2024-08-22

:bug: :wrench: Bug Fixes

  • Build to allow new tokens to be imported in react-ssr package (#624) (88790c7)
  • Margin and spacing issues in gcds-card (#617) (2d39bdc)
ethanwallace
published 0.25.0 •

Changelog

Source

0.25.0

Released on: 2024-08-19

:rotating_light: Breaking changes

The Card and Stepper components have been redesigned and will have some changes in their API structure.

Updates to the Card component

The property type will be removed as the component will now only support link interactions. If you’re using type=action, note that this will be unsupported in this release.

The tag property will be replaced by a new property named badge.

The property title-element will be replaced by a new property named card-title-tag.

We’re dropping support for the footer slot (slot="footer"). We’re removing it as we haven’t observed any use of the slot.

New: We’ve introduced a slot to support the display of HTML text formatting within the Card component. You can still use the description property for this purpose with a simple string value (text) only.

Old implementation
<gcds-card
  type="link"
  card-title=""
  href=""
  title-element=""
  description=""
  tag=""
  img-src=""
  img-alt=""
>
  <slot name="”footer”"></slot>
</gcds-card>
New implementation
<gcds-card
  card-title=""
  href=""
  card-title-tag="a"
  description=""
  badge=""
  img-src=""
  img-alt=""
>
  <slot></slot>
</gcds-card>

Updates to the Stepper component

New: A new tag property will be available to allow the developer to choose the right heading to render the element.

New (required): The stepper will now require text or an element passed into the slot to display the heading element. It’s a required property and the component will not render without it.

If you experience issues with the change, ‌‌contact us.

Old implementation
<gcds-stepper current-step="" total-steps=""></gcds-stepper>
New implementation
<gcds-stepper current-step="" total-steps="" tag="">
  <slot></slot>
</gcds-stepper>

:rocket: New Features

  • Add gcds-date-input component (#607) (ce0b4cc)
  • add new main-container prop to container (#613) (4eef9b3)
  • update gcds-card (breaking change) (#578) (4a72105)
  • updates to stepper component (breaking change + new tag attribute) (#573) (0f8bd2f)

:arrows_counterclockwise: Code Refactoring

  • change fieldset legend required to span (#612) (ca5108f)
ethanwallace
published 0.24.1 •

Changelog

Source

0.24.1

Released on: 2024-08-13

:bug: :wrench: Bug Fixes

  • update small design misalignments in various components (#608) (9bcb4ae)
ethanwallace
published 0.24.0 •

Changelog

Source

0.24.0

Released on: 2024-08-01

:rocket: New Features

ethanwallace
published 0.23.0 •

Changelog

Source

0.23.0

Released on: 2024-07-31

:rocket: New Features

  • add react ssr package (canary version) (#587) (bf3fd1e)