Releases: standardkit/ui
v0.4.14 - IconSet constant + type update
v0.4.13 - New Style Table Components
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 ofSkTableModule
- should be used with
ui-table
instead ofsk-table
- required inputs are removed from the selector for easier import & auto-complete
v0.4.12 - New Style Layout Components
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 ofSkSidebarModule
- should be used with
ui-sidebar
instead ofsk-sidebar
- required inputs are removed from the selector for easier import & auto-complete
v0.4.11 - New Style Form Components
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 ofSkTextInputModule
- should be used with
ui-text-input
instead ofsk-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
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 ofSkIconModule
- should be used with
ui-icon
instead ofsk-icon
- required inputs are removed from the selector for easier import & auto-complete
v0.4.9 - New Style Common Components
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 ofSkAlertModule
- should be used with
ui-alert
instead ofsk-alert
- required inputs are removed from the selector for easier import & auto-complete
v0.4.8 - Relative Imports
Fixes the actual build and now uses relative imports for internal interfaces, constants, etc.
v0.4.7 - build issues
this build is broken.
v0.4.6 - State & StateType
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
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