Skip to content

Releases: standardkit/ui

v0.4.14 - IconSet constant + type update

30 Dec 18:53
Compare
Choose a tag to compare

v0.4.13 - New Style Table Components

30 Dec 14:52
Compare
Choose a tag to compare

all table components have been refactor to the new style + some accessibility and codestyle improvements.

Components

  • table
  • data table
  • filter
  • search
  • pagination

Changes

  • They are now all standalone components
  • should be imported as UiTable instead of SkTableModule
  • should be used with ui-table instead of sk-table
  • required inputs are removed from the selector for easier import & auto-complete

v0.4.12 - New Style Layout Components

30 Dec 12:53
Compare
Choose a tag to compare

all layout components have been refactor to the new style + some accessibility and codestyle improvements.

Components

  • top bar & bottom bar
  • card page & sidebar page
  • row & column
  • header
  • jumbotron
  • navigation item & sub navigation item
  • sidebar
  • user menu

Also, the layout service that stores the collapse state now uses the ui prefix instead of the sk prefix.

Changes

  • They are now all standalone components
  • should be imported as UiSidebar instead of SkSidebarModule
  • should be used with ui-sidebar instead of sk-sidebar
  • required inputs are removed from the selector for easier import & auto-complete

v0.4.11 - New Style Form Components

29 Dec 15:55
Compare
Choose a tag to compare

all Form components have been refactor to the new style + some accessibility and codestyle improvements.

Components

  • radio input, radio option & advanced radio option
  • checkbox input
  • date input
  • field & field group
  • file input
  • form-section-title
  • input-description & input-error
  • label
  • select input & multi select input & select option & select search
  • number input
  • password input
  • text input
  • textarea input
  • time input

Changes

  • They are now all standalone components
  • should be imported as UiTextInput instead of SkTextInputModule
  • should be used with ui-text-input instead of sk-text-input
  • required inputs are removed from the selector for easier import & auto-complete

Other

  • changelog is now autogenerated
  • roadmap is added

v0.4.10 - New Style Core Components

29 Dec 14:22
Compare
Choose a tag to compare

all core components have been refactor to the new style + some accessibility and codestyle improvements.

Components

  • bar
  • icon
  • link
  • pill
  • tag
  • toggle

Changes

  • They are now all standalone components
  • should be imported as UiIcon instead of SkIconModule
  • should be used with ui-icon instead of sk-icon
  • required inputs are removed from the selector for easier import & auto-complete

v0.4.9 - New Style Common Components

29 Dec 13:54
Compare
Choose a tag to compare

all common components have been refactor to the new style + some accessibility and codestyle improvements.

Components

  • Accordion & AccordionItem
  • Alert
  • Breadcrumbs
  • Card
  • List
  • Modal
  • RichText
  • Segment & SegmentGroup
  • StatisticsCard
  • Stepper & StepperItem
  • Tab & TabGroup

Changes

  • They are now all standalone components
  • should be imported as UiAlert instead of SkAlertModule
  • should be used with ui-alert instead of sk-alert
  • required inputs are removed from the selector for easier import & auto-complete

v0.4.8 - Relative Imports

28 Dec 16:03
Compare
Choose a tag to compare

Fixes the actual build and now uses relative imports for internal interfaces, constants, etc.

v0.4.7 - build issues

28 Dec 16:02
Compare
Choose a tag to compare

this build is broken.

v0.4.6 - State & StateType

28 Dec 15:34
Compare
Choose a tag to compare

Introduces a replacement of the old state class.

const state: StateType = State.Initial;

state = State.Pending;

<ng-container *ngIf="state === 'pending'" >
  Only shows when state is pending
</ng-container>

a const as const state is usable in the template as string but typechecked.

v0.4.5 - Button & Select-Input, new build system

28 Dec 15:14
Compare
Choose a tag to compare

better readme and build pipelines

Buttons now have 'buttonClick' event
Select-input uses slot 'error' instead of 'footer'

Readme now included in build.
Readme now includes examples and migration guide