mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 04:03:29 +00:00
* Copy Vertical stepper into CL * remove unused input * add docs around vertical step usage * use signal inputs * add vertical step story * enhance documentation * WIP * Rename to Stepper * adds horizontal stepper * updated view logic * add resizeobserver directive * add basic responsizeness to stepper * add comment about stateChanged method * update responsive logic * reformat with prettier * remove obsolete applyBorder input * fix step type mismatch * fix incorrect step import * fix borken disabled logic * fix class logic * move tabpanel out of tablist. correctly increment ids * make map private * use accordion attributes for vertical stepper * barrel export directive * fixing types * remove now obsolete step-content * reimplement constructors to fix storybook not rendering * move padding to different container * move map and observer into directive * remove useless test for now * add comment about constructor implementation * add template variable for disabled state * fix typo * simplify resize observer directive logic * add jsdoc description * use typography directive * use the variable for step disabled * Update libs/components/src/stepper/stepper.mdx Co-authored-by: Vicki League <vleague@bitwarden.com> --------- Co-authored-by: Will Martin <contact@willmartian.com> Co-authored-by: Vicki League <vleague@bitwarden.com>
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
export { ButtonType, ButtonLikeAbstraction } from "./shared/button-like.abstraction";
|
|
export * from "./a11y";
|
|
export * from "./async-actions";
|
|
export * from "./avatar";
|
|
export * from "./badge-list";
|
|
export * from "./badge";
|
|
export * from "./banner";
|
|
export * from "./breadcrumbs";
|
|
export * from "./button";
|
|
export * from "./callout";
|
|
export * from "./card";
|
|
export * from "./checkbox";
|
|
export * from "./chip-select";
|
|
export * from "./color-password";
|
|
export * from "./container";
|
|
export * from "./copy-click";
|
|
export * from "./dialog";
|
|
export * from "./disclosure";
|
|
export * from "./drawer";
|
|
export * from "./form-field";
|
|
export * from "./icon-button";
|
|
export * from "./icon";
|
|
export * from "./input";
|
|
export * from "./item";
|
|
export * from "./layout";
|
|
export * from "./link";
|
|
export * from "./menu";
|
|
export * from "./multi-select";
|
|
export * from "./navigation";
|
|
export * from "./no-items";
|
|
export * from "./popover";
|
|
export * from "./progress";
|
|
export * from "./radio-button";
|
|
export * from "./search";
|
|
export * from "./section";
|
|
export * from "./select";
|
|
export * from "./shared/compact-mode.service";
|
|
export * from "./table";
|
|
export * from "./tabs";
|
|
export * from "./toast";
|
|
export * from "./toggle-group";
|
|
export * from "./typography";
|
|
export * from "./utils";
|
|
export * from "./stepper";
|