├── .editorconfig ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── contribution-proposal.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── check-website-links.yml │ ├── lock-threads.yml │ └── stale-threads.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .stylelintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── apps ├── README.md ├── adoption │ └── src │ │ └── app │ │ ├── migrations │ │ └── card │ │ │ ├── card.1.angular.txt │ │ │ ├── card.1.core.txt │ │ │ ├── card.2.angular.txt │ │ │ └── card.2.core.txt │ │ └── pages │ │ └── card.page.ts ├── core-angular-cli │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── yarn.lock ├── core-angular-js │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── postcss.config.js │ ├── rollup.config.js │ ├── src │ │ ├── favicon.ico │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ └── yarn.lock ├── core-angular-universal │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package.json │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.browser.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── app.server.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ └── yarn.lock ├── core-cdn-demo │ ├── index.html │ └── package.json ├── core-create-react-app │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── serviceWorker.ts │ │ └── setupTests.ts │ ├── tsconfig.json │ └── yarn.lock ├── core-parcel-js │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── init.js │ └── yarn.lock ├── core-rollup-js │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── postcss.config.js │ ├── rollup.config.js │ ├── src │ │ ├── favicon.ico │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ └── yarn.lock ├── core-simple-devapp │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── demo │ │ ├── favicon.ico │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ ├── package.json │ ├── src │ │ ├── counter │ │ │ ├── counter.element.styles.ts │ │ │ ├── counter.element.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ └── index.ts │ ├── tsconfig.json │ └── web-dev-server.config.mjs ├── core-snowpack │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── index.css │ │ └── index.html │ ├── snowpack.config.json │ ├── src │ │ └── index.js │ └── yarn.lock ├── core-vue-cli │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── HelloWorld.vue │ │ └── main.js │ └── yarn.lock ├── package.json ├── shim-clr-ui │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── accordion-demo │ │ │ │ ├── accordion-demo.component.html │ │ │ │ └── accordion-demo.component.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── combobox-demo │ │ │ │ ├── combobox-demo.component.html │ │ │ │ └── combobox-demo.component.ts │ │ │ ├── datagrid-demo │ │ │ │ ├── datagrid-demo.component.html │ │ │ │ ├── datagrid-demo.component.ts │ │ │ │ └── inventory │ │ │ │ │ ├── inventory.ts │ │ │ │ │ ├── pokemon.ts │ │ │ │ │ ├── user.ts │ │ │ │ │ └── values.ts │ │ │ ├── modal-demo │ │ │ │ ├── modal-demo.component.html │ │ │ │ └── modal-demo.component.ts │ │ │ ├── overview │ │ │ │ ├── overview.component.html │ │ │ │ └── overview.component.ts │ │ │ ├── stepper-demo │ │ │ │ ├── stepper-demo.component.html │ │ │ │ └── stepper-demo.component.ts │ │ │ └── wizard-demo │ │ │ │ ├── wizard-demo.component.html │ │ │ │ └── wizard-demo.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── yarn.lock └── website │ ├── .gitignore │ ├── .markdownlint.json │ ├── .vuepress │ ├── blocks.js │ ├── code │ │ ├── core-usage-demos │ │ │ ├── alert │ │ │ │ ├── app-level-error.html │ │ │ │ ├── app-level-info.html │ │ │ │ ├── app-level-type.html │ │ │ │ ├── app-level-warning.html │ │ │ │ ├── card-alert.html │ │ │ │ ├── default-type.html │ │ │ │ ├── default-vs-compact.html │ │ │ │ ├── lightweight-card.html │ │ │ │ ├── lightweight-error.html │ │ │ │ ├── lightweight-group.html │ │ │ │ ├── lightweight-info.html │ │ │ │ ├── lightweight-loading.html │ │ │ │ ├── lightweight-success.html │ │ │ │ ├── lightweight-type.html │ │ │ │ ├── lightweight-unknown.html │ │ │ │ ├── lightweight-warning.html │ │ │ │ ├── modal-alert.html │ │ │ │ ├── sizes.html │ │ │ │ ├── standard-error.html │ │ │ │ ├── standard-group.html │ │ │ │ ├── standard-info.html │ │ │ │ ├── standard-success.html │ │ │ │ └── standard-warning.html │ │ │ ├── checkbox │ │ │ │ ├── basic.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal-inline.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── indeterminate.html │ │ │ │ ├── success.html │ │ │ │ ├── vertical-inline.html │ │ │ │ └── vertical.html │ │ │ ├── datalist │ │ │ │ ├── active.html │ │ │ │ ├── basic.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── layouts.html │ │ │ │ ├── states.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── file │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── form-group │ │ │ │ └── basic.html │ │ │ ├── form │ │ │ │ ├── compact.html │ │ │ │ ├── error.html │ │ │ │ ├── helper.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── icon │ │ │ │ ├── badges.html │ │ │ │ ├── colors.html │ │ │ │ ├── flip.html │ │ │ │ ├── inverse-color.html │ │ │ │ ├── rotate-attr.html │ │ │ │ ├── rotate-style.html │ │ │ │ ├── size-attr.html │ │ │ │ └── size-style.html │ │ │ ├── input-group │ │ │ │ ├── active.html │ │ │ │ ├── complex.html │ │ │ │ ├── control-actions.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── status.html │ │ │ │ └── success.html │ │ │ ├── input │ │ │ │ ├── active.html │ │ │ │ ├── compact.html │ │ │ │ ├── controlled-width.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── modal │ │ │ │ ├── basic.html │ │ │ │ └── sizes.html │ │ │ ├── password │ │ │ │ ├── active.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── radio │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal-inline.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ ├── vertical-inline.html │ │ │ │ └── vertical.html │ │ │ ├── range │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── search │ │ │ │ ├── active.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── select │ │ │ │ ├── active.html │ │ │ │ ├── basic.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── multiple.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── textarea │ │ │ │ ├── active.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ ├── theme │ │ │ │ └── custom.scss │ │ │ ├── time │ │ │ │ ├── active.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ └── vertical.html │ │ │ └── toggle │ │ │ │ ├── alignment.html │ │ │ │ ├── basic.html │ │ │ │ ├── compact.html │ │ │ │ ├── disabled.html │ │ │ │ ├── enabled.html │ │ │ │ ├── error.html │ │ │ │ ├── horizontal-inline.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── success.html │ │ │ │ ├── vertical-inline.html │ │ │ │ └── vertical.html │ │ └── demos │ │ │ ├── accordion │ │ │ └── basic.html │ │ │ ├── alert │ │ │ ├── app-level-icon-css.html │ │ │ ├── app-level-main-css.html │ │ │ ├── app-level-main-ng.html │ │ │ ├── basic-app-level-css.html │ │ │ ├── basic-app-level-ng.html │ │ │ ├── card-css.html │ │ │ ├── card-ng.html │ │ │ ├── closable-false-ng.html │ │ │ ├── clr-alert-app-level-ng.html │ │ │ ├── clr-alert-closed-change-ng.html │ │ │ ├── clr-alert-size-small-ng.html │ │ │ ├── clr-alert-type-ng.html │ │ │ ├── content-area-css.html │ │ │ ├── main-container-css.html │ │ │ ├── main-container-ng.html │ │ │ ├── modal-css.html │ │ │ ├── modal-ng.html │ │ │ ├── multiple-app-level-alerts-ng.html │ │ │ ├── placement-css.html │ │ │ ├── placement-ng.html │ │ │ ├── size-css.html │ │ │ ├── size-ng.html │ │ │ ├── types-css.html │ │ │ └── types-ng.html │ │ │ ├── app-layout │ │ │ ├── content-container-css.html │ │ │ ├── content-container-ng.html │ │ │ └── custom-rem-size.css │ │ │ ├── badge │ │ │ ├── colors-css.html │ │ │ ├── colors-ng.html │ │ │ ├── status-css.html │ │ │ └── status-ng.html │ │ │ ├── button-group │ │ │ ├── accessibility.html │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── checkbox-css.html │ │ │ ├── flat-css.html │ │ │ ├── icons-css.html │ │ │ ├── icons-with-text-css.html │ │ │ ├── mixed-css.html │ │ │ ├── outline-css.html │ │ │ ├── overflow-css.html │ │ │ ├── primary-css.html │ │ │ ├── radio-css.html │ │ │ └── small-css.html │ │ │ ├── button │ │ │ ├── block-css.html │ │ │ ├── flat-css.html │ │ │ ├── icon-css.html │ │ │ ├── inverse-css.html │ │ │ ├── loading-ng.html │ │ │ ├── loading.ts │ │ │ ├── outline-css.html │ │ │ ├── sizes-css.html │ │ │ ├── solid-css.html │ │ │ ├── states-css.html │ │ │ └── types-css.html │ │ │ ├── card │ │ │ ├── alert-css.html │ │ │ ├── basic-css.html │ │ │ ├── clickable-css.html │ │ │ ├── columns-css.html │ │ │ ├── dropdown-css.html │ │ │ ├── grid-css.html │ │ │ ├── images-css.html │ │ │ ├── list-group-css.html │ │ │ ├── lists-css.html │ │ │ ├── media-block-css.html │ │ │ └── progress-bars-css.html │ │ │ ├── checkbox │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── disabled-css.html │ │ │ ├── disabled-ng.html │ │ │ ├── helper-css.html │ │ │ ├── helper-ng.html │ │ │ ├── indeterminate-css.html │ │ │ ├── indeterminate-ng.html │ │ │ ├── inline-css.html │ │ │ └── inline-ng.html │ │ │ ├── combobox │ │ │ ├── async.html │ │ │ ├── basic.html │ │ │ ├── multi.html │ │ │ └── single.html │ │ │ ├── datagrid │ │ │ ├── basic-structure.html │ │ │ ├── batch-action.html │ │ │ ├── binding-properties.html │ │ │ ├── built-in-filters.html │ │ │ ├── compact.html │ │ │ ├── custom-rendering.html │ │ │ ├── detail.html │ │ │ ├── expandable-rows.html │ │ │ ├── filtering.html │ │ │ ├── fixed-height.html │ │ │ ├── hide-show-columns.html │ │ │ ├── pagination.html │ │ │ ├── placeholder.html │ │ │ ├── selection.html │ │ │ ├── server-driven.html │ │ │ ├── single-action.html │ │ │ ├── single-selection.html │ │ │ ├── smart-iterator.html │ │ │ └── sorting.html │ │ │ ├── datalist │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── validation-css.html │ │ │ └── validation-ng.html │ │ │ ├── datepicker │ │ │ ├── basic-ng.html │ │ │ ├── i18n-ng.ts │ │ │ ├── js-date-object.html │ │ │ ├── min-max-ng.html │ │ │ ├── reactive-date.html │ │ │ ├── reactive-date.ts │ │ │ ├── template-driven.html │ │ │ └── template-driven.ts │ │ │ ├── dropdown │ │ │ ├── basic-angular-css.html │ │ │ ├── basic-angular-ng.html │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── bottom-right-css.html │ │ │ ├── bottom-right-ng.html │ │ │ ├── icon-angular-ng.html │ │ │ ├── icon-toggle-css.html │ │ │ └── icon-toggle-ng.html │ │ │ ├── form │ │ │ ├── compact.html │ │ │ ├── horizontal.html │ │ │ └── vertical.html │ │ │ ├── grid │ │ │ ├── 1-12-css.html │ │ │ ├── 1-12-ng.html │ │ │ ├── 1-col-width-auto-css.html │ │ │ ├── 1-col-width-auto-ng.html │ │ │ ├── 1-col-width-css.html │ │ │ ├── 1-col-width-ng.html │ │ │ ├── col-offset-css.html │ │ │ ├── col-offset-ng.html │ │ │ ├── col-stack-css.html │ │ │ ├── col-stack-ng.html │ │ │ ├── col-wrapping-css.html │ │ │ ├── col-wrapping-ng.html │ │ │ ├── column-1-css.html │ │ │ ├── column-1-ng.html │ │ │ ├── flex-grid-css.html │ │ │ ├── flex-grid-ng.html │ │ │ ├── grid-nesting-css.html │ │ │ ├── grid-nesting-ng.html │ │ │ ├── horizontal-alignments-css.html │ │ │ ├── horizontal-alignments-ng.html │ │ │ ├── multi-row-css.html │ │ │ ├── multi-row-ng.html │ │ │ ├── self-align-css.html │ │ │ ├── self-align-ng.html │ │ │ ├── variable-width-content-css.html │ │ │ ├── variable-width-content-ng.html │ │ │ ├── vert-align-css.html │ │ │ └── vert-align-ng.html │ │ │ ├── header │ │ │ ├── basic.html │ │ │ ├── colors.html │ │ │ ├── subnav.html │ │ │ └── types.html │ │ │ ├── i18n │ │ │ ├── localize-ng.ts │ │ │ ├── translate-ng.ts │ │ │ ├── update-step-1.ts │ │ │ └── update-step-2.ts │ │ │ ├── input │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── helper-css.html │ │ │ ├── helper-ng.html │ │ │ ├── label-css.html │ │ │ └── label-ng.html │ │ │ ├── label │ │ │ ├── badges-css.html │ │ │ ├── badges-ng.html │ │ │ ├── color-css.html │ │ │ ├── color-ng.html │ │ │ ├── demo1-css.html │ │ │ ├── demo1-ng.html │ │ │ ├── food-css.html │ │ │ ├── food-ng.html │ │ │ ├── status-css.html │ │ │ └── status-ng.html │ │ │ ├── list │ │ │ ├── compact.html │ │ │ ├── ordered.html │ │ │ ├── unordered.html │ │ │ └── unstyled.html │ │ │ ├── login │ │ │ ├── login-css.html │ │ │ └── login-ng.html │ │ │ ├── modal │ │ │ ├── modal-backdrop.html │ │ │ ├── modal-basic.html │ │ │ └── modal-sizes.html │ │ │ ├── navigation │ │ │ ├── header-css.html │ │ │ ├── header-ng.html │ │ │ ├── header-sidenav-css.html │ │ │ ├── header-sidenav-ng.html │ │ │ ├── header-subnav-css.html │ │ │ ├── header-subnav-ng.html │ │ │ ├── nav-1-css.html │ │ │ ├── nav-2-css.html │ │ │ ├── sidenav-css.html │ │ │ ├── sidenav-ng.html │ │ │ ├── subnav-sidenav-css.html │ │ │ └── subnav-sidenav-ng.html │ │ │ ├── password │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── helper-css.html │ │ │ └── helper-ng.html │ │ │ ├── progress │ │ │ ├── determinate-css.html │ │ │ ├── determinate-ng.html │ │ │ ├── indeterminate-css.html │ │ │ ├── indeterminate-ng.html │ │ │ ├── labeled-css.html │ │ │ └── labeled-ng.html │ │ │ ├── radio │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── disabled-css.html │ │ │ ├── disabled-ng.html │ │ │ ├── helper-css.html │ │ │ ├── helper-ng.html │ │ │ ├── inline-css.html │ │ │ └── inline-ng.html │ │ │ ├── range │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── disabled-css.html │ │ │ ├── disabled-ng.html │ │ │ ├── helper-css.html │ │ │ └── helper-ng.html │ │ │ ├── select │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── helper-css.html │ │ │ ├── helper-ng.html │ │ │ ├── label-css.html │ │ │ └── label-ng.html │ │ │ ├── sidenav │ │ │ ├── icons-css.html │ │ │ ├── icons-ng.html │ │ │ ├── nav-groups-css.html │ │ │ ├── nav-groups-ng.html │ │ │ ├── structure-css.html │ │ │ └── structure-ng.html │ │ │ ├── signpost │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── custom-css.html │ │ │ └── custom-ng.html │ │ │ ├── spinner │ │ │ ├── inline-css.html │ │ │ ├── inline-ng.html │ │ │ ├── inverse-css.html │ │ │ ├── inverse-ng.html │ │ │ ├── large-css.html │ │ │ ├── large-ng.html │ │ │ ├── medium-css.html │ │ │ ├── medium-ng.html │ │ │ ├── page-css.html │ │ │ ├── page-ng.html │ │ │ ├── small-css.html │ │ │ └── small-ng.html │ │ │ ├── stack-view │ │ │ ├── stack-view-editing.html │ │ │ ├── stack-view-lazy.html │ │ │ └── stack-view.html │ │ │ ├── stepper │ │ │ ├── reactive-form.html │ │ │ ├── reactive-form.ts │ │ │ ├── template-form.html │ │ │ └── template-form.ts │ │ │ ├── table │ │ │ ├── basic.html │ │ │ ├── borderless.html │ │ │ ├── compact.html │ │ │ ├── left-align.html │ │ │ ├── multiline.html │ │ │ └── vertical.html │ │ │ ├── tabs │ │ │ ├── horizontal-css.html │ │ │ ├── horizontal-ng.html │ │ │ ├── overflow-css.html │ │ │ ├── overflow-ng.html │ │ │ ├── two-way-css.html │ │ │ ├── two-way-ng.html │ │ │ ├── vertical-css.html │ │ │ └── vertical-ng.html │ │ │ ├── textarea │ │ │ ├── basic-css.html │ │ │ ├── basic-ng.html │ │ │ ├── helper-css.html │ │ │ ├── helper-ng.html │ │ │ ├── label-css.html │ │ │ └── label-ng.html │ │ │ ├── themes │ │ │ ├── angular.json │ │ │ └── webpack.js │ │ │ ├── timeline │ │ │ ├── horizontal-ng.html │ │ │ ├── horizontal.html │ │ │ ├── vertical-ng.html │ │ │ └── vertical.html │ │ │ ├── toggle │ │ │ ├── disabled-demo-css.html │ │ │ ├── disabled-demo-ng.html │ │ │ ├── error-demo-css.html │ │ │ ├── error-demo-ng.html │ │ │ ├── helper-demo-css.html │ │ │ ├── helper-demo-ng.html │ │ │ ├── inline-demo-css.html │ │ │ ├── inline-demo-ng.html │ │ │ ├── right-demo-css.html │ │ │ └── right-demo-ng.html │ │ │ ├── tooltip │ │ │ ├── tooltip-bottom-left.html │ │ │ ├── tooltip-bottom-right.html │ │ │ ├── tooltip-left.html │ │ │ ├── tooltip-lg.html │ │ │ ├── tooltip-md.html │ │ │ ├── tooltip-right.html │ │ │ ├── tooltip-sm.html │ │ │ ├── tooltip-top-left.html │ │ │ ├── tooltip-top-right.html │ │ │ └── tooltip-xs.html │ │ │ ├── tree-view │ │ │ ├── basic-ng.html │ │ │ ├── checkbox-binding-ng.html │ │ │ ├── checkbox-binding.json │ │ │ ├── checkbox-binding.ts │ │ │ ├── checkbox-ng.html │ │ │ ├── checkbox.json │ │ │ ├── checkbox.ts │ │ │ ├── dynamic.html │ │ │ ├── dynamic.ts │ │ │ ├── empty-css.html │ │ │ ├── expanded-ng.html │ │ │ ├── lazy-ng.html │ │ │ ├── lazy-recursive-ng.html │ │ │ ├── lazy-recursive-ng.ts │ │ │ ├── lazy-tree.ts │ │ │ ├── recursive-ng.html │ │ │ ├── recursive-ng.ts │ │ │ └── routed-ng.html │ │ │ ├── vertical-nav │ │ │ ├── basic-ng.html │ │ │ ├── collapsible-ng.html │ │ │ ├── icon-links-ng.html │ │ │ ├── jigglypuff-css.html │ │ │ ├── jigglypuff.html │ │ │ ├── lazy-ng.html │ │ │ └── vertical-ng.html │ │ │ └── wizard │ │ │ ├── basic-css.html │ │ │ └── basic-ng.html │ ├── config.js │ ├── public │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── ClarityCity-Black.woff │ │ │ ├── ClarityCity-BlackItalic.woff │ │ │ ├── ClarityCity-Bold.woff │ │ │ ├── ClarityCity-BoldItalic.woff │ │ │ ├── ClarityCity-ExtraBold.woff │ │ │ ├── ClarityCity-ExtraBoldItalic.woff │ │ │ ├── ClarityCity-ExtraLight.woff │ │ │ ├── ClarityCity-ExtraLightItalic.woff │ │ │ ├── ClarityCity-Light.woff │ │ │ ├── ClarityCity-LightItalic.woff │ │ │ ├── ClarityCity-Medium.woff │ │ │ ├── ClarityCity-MediumItalic.woff │ │ │ ├── ClarityCity-Regular.woff │ │ │ ├── ClarityCity-RegularItalic.woff │ │ │ ├── ClarityCity-SemiBold.woff │ │ │ ├── ClarityCity-SemiBoldItalic.woff │ │ │ ├── ClarityCity-Thin.woff │ │ │ └── ClarityCity-ThinItalic.woff │ │ ├── manifest.json │ │ └── versions.json │ ├── sidebar.js │ └── theme │ │ ├── LICENSE │ │ ├── components │ │ ├── AlgoliaSearchBox.vue │ │ ├── Footer.vue │ │ ├── Home.vue │ │ ├── NavToc.vue │ │ ├── Navbar.vue │ │ ├── Page.vue │ │ ├── PageNav.vue │ │ ├── PageSubnav.vue │ │ ├── Sidebar.vue │ │ └── SkipTo.vue │ │ ├── core.js │ │ ├── enhanceApp.js │ │ ├── filters │ │ ├── uppercase.js │ │ └── uppercaseSplit.js │ │ ├── global-components │ │ ├── Badge.vue │ │ ├── CdsDemo.vue │ │ ├── CdsDemos.vue │ │ ├── ClrColorList.vue │ │ ├── ClrColorListSet.vue │ │ ├── ClrColorsFunctional.vue │ │ ├── ClrColorsPalette.vue │ │ ├── ClrImage.vue │ │ ├── ClrSummary.vue │ │ ├── ComponentsComparison.vue │ │ ├── ComponentsOverview.vue │ │ ├── DocAlert.vue │ │ ├── DocAlertClassesTable.vue │ │ ├── DocAlertSummaryOfOptions.vue │ │ ├── DocCode.vue │ │ ├── DocCol.vue │ │ ├── DocComponentApi.vue │ │ ├── DocDemo.vue │ │ ├── DocDo.vue │ │ ├── DocDoDont.vue │ │ ├── DocDont.vue │ │ ├── DocIcon.vue │ │ ├── DocIconDetail.vue │ │ ├── DocIcons.vue │ │ ├── DocIconsPreviewSettings.vue │ │ ├── DocIconsSearch.vue │ │ ├── DocIconsSet.vue │ │ ├── DocIndent.vue │ │ ├── DocInset.vue │ │ ├── DocLocalizationStrings.vue │ │ ├── DocModalWrapper.vue │ │ ├── DocPinbox.vue │ │ ├── DocPinboxVs.vue │ │ ├── DocPreviewWarning.vue │ │ ├── DocStorybook.vue │ │ ├── DocTypographyTable.vue │ │ ├── DocVideo.vue │ │ ├── DocWebComponentAPI.vue │ │ ├── ItemOverview.vue │ │ ├── Release.vue │ │ ├── ReleaseGroup.vue │ │ ├── ReleaseItem.vue │ │ ├── Tab.vue │ │ ├── Tabs.vue │ │ ├── WhatsNew.vue │ │ └── services │ │ │ ├── icon-preview-service.js │ │ │ └── icon-search-service.js │ │ ├── index.js │ │ ├── layouts │ │ ├── 404.vue │ │ └── Layout.vue │ │ ├── noopModule.js │ │ ├── styles │ │ ├── a11y-light.scss │ │ ├── containers.scss │ │ ├── demo.scss │ │ ├── fonts.scss │ │ ├── index.scss │ │ ├── layout.scss │ │ ├── overrides.scss │ │ └── spaces.scss │ │ └── util │ │ ├── clipboard-copy.js │ │ ├── color-utils.js │ │ ├── index.js │ │ ├── path-to-id.js │ │ ├── remove-path-ext.js │ │ ├── route-guards.js │ │ └── timer-utils.js │ ├── README.md │ ├── angular-components │ ├── README.md │ └── _components │ │ ├── accordion │ │ ├── README.md │ │ └── api.md │ │ ├── alert │ │ ├── README.md │ │ └── api.md │ │ ├── badge │ │ ├── README.md │ │ └── api.md │ │ ├── button-group │ │ ├── README.md │ │ └── api.md │ │ ├── button │ │ ├── README.md │ │ └── api.md │ │ ├── card │ │ ├── README.md │ │ └── api.md │ │ ├── checkbox │ │ ├── README.md │ │ └── api.md │ │ ├── combobox │ │ ├── README.md │ │ └── api.md │ │ ├── datagrid │ │ ├── README.md │ │ └── api.md │ │ ├── datalist │ │ ├── README.md │ │ └── api.md │ │ ├── date-picker │ │ ├── README.md │ │ └── api.md │ │ ├── dropdown │ │ ├── README.md │ │ └── api.md │ │ ├── form │ │ ├── README.md │ │ └── api.md │ │ ├── grid │ │ ├── README.md │ │ └── api.md │ │ ├── header │ │ ├── README.md │ │ └── api.md │ │ ├── input │ │ ├── README.md │ │ └── api.md │ │ ├── label │ │ ├── README.md │ │ └── api.md │ │ ├── list │ │ ├── README.md │ │ └── api.md │ │ ├── login │ │ ├── README.md │ │ └── api.md │ │ ├── modal │ │ ├── README.md │ │ └── api.md │ │ ├── password │ │ ├── README.md │ │ └── api.md │ │ ├── progress-bar │ │ ├── README.md │ │ └── api.md │ │ ├── radio │ │ ├── README.md │ │ └── api.md │ │ ├── range │ │ ├── README.md │ │ └── api.md │ │ ├── select │ │ ├── README.md │ │ └── api.md │ │ ├── sidenav │ │ ├── README.md │ │ └── api.md │ │ ├── signpost │ │ ├── README.md │ │ └── api.md │ │ ├── spinner │ │ ├── README.md │ │ └── api.md │ │ ├── stack-view │ │ ├── README.md │ │ └── api.md │ │ ├── stepper │ │ ├── README.md │ │ └── api.md │ │ ├── tab │ │ ├── README.md │ │ └── api.md │ │ ├── table │ │ ├── README.md │ │ └── api.md │ │ ├── textarea │ │ ├── README.md │ │ └── api.md │ │ ├── timeline │ │ ├── README.md │ │ └── api.md │ │ ├── toggle │ │ ├── README.md │ │ └── api.md │ │ ├── tooltip │ │ ├── README.md │ │ └── api.md │ │ ├── tree-view │ │ ├── README.md │ │ └── api.md │ │ ├── vertical-nav │ │ ├── README.md │ │ └── api.md │ │ └── wizard │ │ ├── README.md │ │ └── api.md │ ├── build │ ├── parse │ │ ├── utils.ts │ │ └── website-demos.ts │ └── tsconfig.parse.json │ ├── core-components │ ├── README.md │ ├── accordion │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── alert │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── badge │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── button │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── card │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── checkbox │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── control │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── datalist │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── divider │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── file │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── form-group │ │ ├── README.md │ │ └── api.md │ ├── form │ │ └── README.md │ ├── icon-button │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── inline-button │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── input-group │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── input │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── list │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── modal │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── password │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── progress-circle │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── radio │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── range │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── search │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── select │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── tag │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── textarea │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── time │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ └── toggle │ │ ├── README.md │ │ ├── api.md │ │ └── code.md │ ├── data │ ├── angular-api.json │ ├── clarity-web-components.js │ ├── core-component.html │ ├── functional-colors-dark.json │ ├── functional-colors-light.json │ ├── i18n-strings.json │ ├── icon-inventory.js │ └── palette-colors.json │ ├── foundation │ ├── README.md │ ├── app-layout │ │ ├── README.md │ │ └── api.md │ ├── color │ │ └── README.md │ ├── icons │ │ ├── README.md │ │ ├── accessibility.md │ │ ├── api.md │ │ ├── code.md │ │ └── shapes.md │ ├── internationalization │ │ └── README.md │ ├── navigation │ │ ├── README.md │ │ └── api.md │ ├── themes │ │ ├── README.md │ │ ├── code.md │ │ ├── themes.md │ │ └── usage.md │ └── typography │ │ └── README.md │ ├── get-started │ ├── README.md │ ├── design.md │ ├── developing │ │ ├── README.md │ │ └── angular.md │ ├── roadmap.md │ ├── support.md │ └── updating │ │ ├── README.md │ │ └── angular.md │ ├── package.json │ └── releases │ ├── README.md │ ├── v4.md │ ├── v5.md │ └── v6.md ├── browserslist ├── bs-config.js ├── changelogs ├── schema.json ├── v4.json ├── v5.json └── v6.json ├── commitlint.config.js ├── docs ├── BUILD.md ├── CODE_OF_CONDUCT.md ├── CODING_GUIDELINES.md ├── CONTRIBUTING.md ├── CONTRIBUTING_DESIGN.md ├── CONTRIBUTING_DEVELOPMENT.md ├── CONTRIBUTING_DOCUMENTATION.md ├── CONTRIBUTING_ISSUES.md ├── GOVERNANCE.md ├── INSTALLATION.md ├── PUBLISHING.md └── WEBSITE.md ├── logo.png ├── netlify.toml ├── package.json ├── packages ├── angular │ ├── .eslintrc.js │ ├── .gitignore │ ├── .stylelintrc │ ├── angular.json │ ├── karma.conf.js │ ├── package.json │ ├── projects │ │ ├── cds-angular │ │ │ ├── README.md │ │ │ ├── _stubs │ │ │ │ ├── directive.ts.mustache │ │ │ │ ├── index.ts.mustache │ │ │ │ ├── module.ts.mustache │ │ │ │ ├── package.json.mustache │ │ │ │ ├── public-api.ts.mustache │ │ │ │ ├── root-index.ts.mustache │ │ │ │ ├── root-module.ts.mustache │ │ │ │ └── test.ts.mustache │ │ │ ├── karma.conf.js │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── all.spec.ts │ │ │ │ └── test.ts │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ ├── tsconfig.spec.json │ │ │ ├── tslint.json │ │ │ └── yarn.lock │ │ └── clr-angular │ │ │ └── README.md │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── core │ ├── .browserslistrc │ ├── .eslintrc.js │ ├── .storybook │ │ ├── main.js │ │ ├── manager-head.html │ │ ├── manager.js │ │ ├── preview.js │ │ └── public │ │ │ ├── assets │ │ │ └── images │ │ │ │ ├── clarity-high-contrast-dark.png │ │ │ │ ├── clarity-high-contrast-light.png │ │ │ │ ├── clarity-logo.svg │ │ │ │ └── clarity-ui-theme.png │ │ │ ├── common.css │ │ │ ├── manager.css │ │ │ └── preview.css │ ├── README.md │ ├── build │ │ ├── build.tokens.ts │ │ ├── eslint-rules │ │ │ ├── reserved-event-names.js │ │ │ └── reserved-property-names.js │ │ ├── package.json │ │ ├── parse │ │ │ ├── utils.ts │ │ │ └── website-demos.ts │ │ ├── token-utils.ts │ │ ├── tokens.ts │ │ ├── tsconfig.json │ │ └── utils.ts │ ├── custom-elements-manifest.config.mjs │ ├── docs │ │ ├── angular.stories.mdx │ │ ├── angularjs.stories.mdx │ │ ├── browser-support.stories.mdx │ │ ├── changelog.stories.mdx │ │ ├── development │ │ │ ├── accessibility.stories.mdx │ │ │ ├── code-conventions.stories.mdx │ │ │ ├── component-code-conventions.stories.mdx │ │ │ ├── component-registration.stories.mdx │ │ │ ├── content-projection.stories.mdx │ │ │ ├── demo-applications.stories.mdx │ │ │ ├── getting-started.stories.mdx │ │ │ ├── imports-and-dependencies.stories.mdx │ │ │ ├── package.stories.mdx │ │ │ ├── public-api.stories.mdx │ │ │ ├── stateless.stories.mdx │ │ │ ├── templates-and-styles.stories.mdx │ │ │ ├── unit-testing.stories.mdx │ │ │ └── using-icons.stories.mdx │ │ ├── getting-started.stories.mdx │ │ ├── i18n.stories.mdx │ │ ├── preact.stories.mdx │ │ ├── react.stories.mdx │ │ ├── utilities.stories.ts │ │ ├── vue.stories.mdx │ │ ├── welcome.stories.mdx │ │ └── welcome.stories.ts │ ├── npm.json │ ├── package.json │ ├── rollup.config.js │ ├── rollup.storybook.js │ ├── rollup.utils.js │ ├── sandbox │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ ├── src │ │ ├── accordion │ │ │ ├── accordion-content.element.scss │ │ │ ├── accordion-content.element.spec.ts │ │ │ ├── accordion-content.element.ts │ │ │ ├── accordion-header.element.scss │ │ │ ├── accordion-header.element.spec.ts │ │ │ ├── accordion-header.element.ts │ │ │ ├── accordion-panel.element.scss │ │ │ ├── accordion-panel.element.spec.ts │ │ │ ├── accordion-panel.element.ts │ │ │ ├── accordion.element.scss │ │ │ ├── accordion.element.spec.ts │ │ │ ├── accordion.element.ts │ │ │ ├── accordion.stories.mdx │ │ │ ├── accordion.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── alert │ │ │ ├── alert-actions.element.scss │ │ │ ├── alert-actions.element.spec.ts │ │ │ ├── alert-actions.element.ts │ │ │ ├── alert-group.element.scss │ │ │ ├── alert-group.element.spec.ts │ │ │ ├── alert-group.element.ts │ │ │ ├── alert-group.stories.ts │ │ │ ├── alert.element.scss │ │ │ ├── alert.element.spec.ts │ │ │ ├── alert.element.ts │ │ │ ├── alert.interfaces.ts │ │ │ ├── alert.performance.ts │ │ │ ├── alert.stories.mdx │ │ │ ├── alert.stories.ts │ │ │ ├── banner-alerts.stories.mdx │ │ │ ├── index.ts │ │ │ ├── ligntweight-alerts.stories.mdx │ │ │ └── register.ts │ │ ├── badge │ │ │ ├── badge.element.scss │ │ │ ├── badge.element.spec.ts │ │ │ ├── badge.element.ts │ │ │ ├── badge.performance.ts │ │ │ ├── badge.stories.mdx │ │ │ ├── badge.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── breadcrumb │ │ │ ├── breadcrumb.element.scss │ │ │ ├── breadcrumb.element.spec.ts │ │ │ ├── breadcrumb.element.ts │ │ │ ├── breadcrumb.stories.mdx │ │ │ ├── breadcrumb.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── button-action │ │ │ ├── button-action.element.scss │ │ │ ├── button-action.element.spec.ts │ │ │ ├── button-action.element.ts │ │ │ ├── button-action.performance.ts │ │ │ ├── button-action.stories.mdx │ │ │ ├── button-action.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── button-expand │ │ │ ├── button-expand.element.scss │ │ │ ├── button-expand.element.spec.ts │ │ │ ├── button-expand.element.ts │ │ │ ├── button-expand.performance.ts │ │ │ ├── button-expand.stories.mdx │ │ │ ├── button-expand.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── button-handle │ │ │ ├── button-handle.element.scss │ │ │ ├── button-handle.element.spec.ts │ │ │ ├── button-handle.element.ts │ │ │ ├── button-handle.performance.ts │ │ │ ├── button-handle.stories.mdx │ │ │ ├── button-handle.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── button-inline │ │ │ ├── button-inline.element.scss │ │ │ ├── button-inline.element.spec.ts │ │ │ ├── button-inline.element.ts │ │ │ ├── button-inline.performance.ts │ │ │ ├── button-inline.stories.mdx │ │ │ ├── button-inline.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── button-sort │ │ │ ├── button-sort.element.scss │ │ │ ├── button-sort.element.spec.ts │ │ │ ├── button-sort.element.ts │ │ │ ├── button-sort.performance.ts │ │ │ ├── button-sort.stories.mdx │ │ │ ├── button-sort.stories.ts │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── button │ │ │ ├── button.element.scss │ │ │ ├── button.element.spec.ts │ │ │ ├── button.element.ts │ │ │ ├── button.stories.mdx │ │ │ ├── button.stories.ts │ │ │ ├── icon-button.element.spec.ts │ │ │ ├── icon-button.element.ts │ │ │ ├── icon-button.stories.mdx │ │ │ ├── icon-button.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── card │ │ │ ├── card.element.scss │ │ │ ├── card.element.spec.ts │ │ │ ├── card.element.ts │ │ │ ├── card.stories.mdx │ │ │ ├── card.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── checkbox │ │ │ ├── checkbox-group.element.spec.ts │ │ │ ├── checkbox-group.element.ts │ │ │ ├── checkbox.element.scss │ │ │ ├── checkbox.element.spec.ts │ │ │ ├── checkbox.element.ts │ │ │ ├── checkbox.stories.mdx │ │ │ ├── checkbox.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── datalist │ │ │ ├── datalist.element.spec.ts │ │ │ ├── datalist.element.ts │ │ │ ├── datalist.global.scss │ │ │ ├── datalist.stories.mdx │ │ │ ├── datalist.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── date │ │ │ ├── date.element.spec.ts │ │ │ ├── date.element.ts │ │ │ ├── date.global.scss │ │ │ ├── date.stories.mdx │ │ │ ├── date.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── divider │ │ │ ├── divider.element.scss │ │ │ ├── divider.element.spec.ts │ │ │ ├── divider.element.ts │ │ │ ├── divider.stories.mdx │ │ │ ├── divider.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── dropdown │ │ │ ├── dropdown.element.spec.ts │ │ │ ├── dropdown.element.ts │ │ │ ├── dropdown.stories.mdx │ │ │ ├── dropdown.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── file │ │ │ ├── file.element.scss │ │ │ ├── file.element.spec.ts │ │ │ ├── file.element.ts │ │ │ ├── file.stories.mdx │ │ │ ├── file.stories.ts │ │ │ ├── index.ts │ │ │ └── register.ts │ │ ├── forms │ │ │ ├── control-action │ │ │ │ ├── control-action.element.spec.ts │ │ │ │ └── control-action.element.ts │ │ │ ├── control-group │ │ │ │ ├── control-group.element.scss │ │ │ │ ├── control-group.element.spec.ts │ │ │ │ └── control-group.element.ts │ │ │ ├── control-inline │ │ │ │ ├── control-inline.element.scss │ │ │ │ ├── control-inline.element.spec.ts │ │ │ │ └── control-inline.element.ts │ │ │ ├── control-label │ │ │ │ ├── control-label.element.scss │ │ │ │ ├── control-label.element.spec.ts │ │ │ │ └── control-label.element.ts │ │ │ ├── control-message │ │ │ │ ├── control-message.element.scss │ │ │ │ ├── control-message.element.spec.ts │ │ │ │ └── control-message.element.ts │ │ │ ├── control.stories.mdx │ │ │ ├── control.stories.ts │ │ │ ├── control │ │ │ │ ├── control.element.scss │ │ │ │ ├── control.element.spec.ts │ │ │ │ └── control.element.ts │ │ │ ├── form-group │ │ │ │ ├── form-group.element.scss │ │ │ │ ├── form-group.element.spec.ts │ │ │ │ └── form-group.element.ts │ │ │ ├── forms.stories.mdx │ │ │ ├── forms.stories.ts │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── responsive.stories.mdx │ │ │ ├── utils │ │ │ │ ├── interfaces.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── validate.spec.ts │ │ │ │ └── validate.ts │ │ │ └── validation.stories.mdx │ │ ├── global.d.ts │ │ ├── icon │ │ │ ├── collections │ │ │ │ ├── chart.ts │ │ │ │ ├── collections.spec.ts │ │ │ │ ├── commerce.ts │ │ │ │ ├── core.ts │ │ │ │ ├── essential.ts │ │ │ │ ├── media.ts │ │ │ │ ├── mini.ts │ │ │ │ ├── social.ts │ │ │ │ ├── technology.ts │ │ │ │ ├── test.ts │ │ │ │ ├── text-edit.ts │ │ │ │ └── travel.ts │ │ │ ├── icon.element.scss │ │ │ ├── icon.element.spec.ts │ │ │ ├── icon.element.ts │ │ │ ├── icon.performance.ts │ │ │ ├── icon.renderer.spec.ts │ │ │ ├── icon.renderer.ts │ │ │ ├── icon.service.spec.ts │ │ │ ├── icon.service.ts │ │ │ ├── icon.stories.mdx │ │ │ ├── icon.stories.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ └── icon.interfaces.ts │ │ │ ├── register.ts │ │ │ ├── shapes │ │ │ │ ├── accessibility-1.ts │ │ │ │ ├── accessibility-2.ts │ │ │ │ ├── add-text.ts │ │ │ │ ├── administrator.ts │ │ │ │ ├── airplane.ts │ │ │ │ ├── alarm-clock.ts │ │ │ │ ├── alarm-off.ts │ │ │ │ ├── align-bottom.ts │ │ │ │ ├── align-center.ts │ │ │ │ ├── align-left-text.ts │ │ │ │ ├── align-left.ts │ │ │ │ ├── align-middle.ts │ │ │ │ ├── align-right-text.ts │ │ │ │ ├── align-right.ts │ │ │ │ ├── align-top.ts │ │ │ │ ├── angle-double.ts │ │ │ │ ├── angle.ts │ │ │ │ ├── animation.ts │ │ │ │ ├── announcement.ts │ │ │ │ ├── application.ts │ │ │ │ ├── applications.ts │ │ │ │ ├── archive.ts │ │ │ │ ├── arrow-mini.ts │ │ │ │ ├── arrow.ts │ │ │ │ ├── assign-user.ts │ │ │ │ ├── asterisk.ts │ │ │ │ ├── atom.ts │ │ │ │ ├── axis-chart.ts │ │ │ │ ├── backup-restore.ts │ │ │ │ ├── backup.ts │ │ │ │ ├── balance.ts │ │ │ │ ├── ban.ts │ │ │ │ ├── bank.ts │ │ │ │ ├── bar-chart.ts │ │ │ │ ├── bar-code.ts │ │ │ │ ├── bars.ts │ │ │ │ ├── battery.ts │ │ │ │ ├── bell-curve.ts │ │ │ │ ├── bell.ts │ │ │ │ ├── beta.ts │ │ │ │ ├── bicycle.ts │ │ │ │ ├── birthday-cake.ts │ │ │ │ ├── bitcoin.ts │ │ │ │ ├── block-quote.ts │ │ │ │ ├── block.ts │ │ │ │ ├── blocks-group.ts │ │ │ │ ├── bluetooth-off.ts │ │ │ │ ├── bluetooth.ts │ │ │ │ ├── boat.ts │ │ │ │ ├── bold.ts │ │ │ │ ├── bolt.ts │ │ │ │ ├── book.ts │ │ │ │ ├── bookmark.ts │ │ │ │ ├── box-plot.ts │ │ │ │ ├── briefcase.ts │ │ │ │ ├── bubble-chart.ts │ │ │ │ ├── bubble-exclamation.ts │ │ │ │ ├── bug.ts │ │ │ │ ├── building.ts │ │ │ │ ├── bullet-list.ts │ │ │ │ ├── bullseye.ts │ │ │ │ ├── bundle.ts │ │ │ │ ├── calculator.ts │ │ │ │ ├── calendar-mini.ts │ │ │ │ ├── calendar.ts │ │ │ │ ├── camera.ts │ │ │ │ ├── campervan.ts │ │ │ │ ├── capacitor.ts │ │ │ │ ├── car.ts │ │ │ │ ├── caravan.ts │ │ │ │ ├── cd-dvd.ts │ │ │ │ ├── center-text.ts │ │ │ │ ├── certificate.ts │ │ │ │ ├── chat-bubble.ts │ │ │ │ ├── check-circle-mini.ts │ │ │ │ ├── check-circle.ts │ │ │ │ ├── check-mini.ts │ │ │ │ ├── check.ts │ │ │ │ ├── checkbox-list.ts │ │ │ │ ├── child-arrow.ts │ │ │ │ ├── ci-cd.ts │ │ │ │ ├── circle-arrow.ts │ │ │ │ ├── circle.ts │ │ │ │ ├── clipboard.ts │ │ │ │ ├── clock.ts │ │ │ │ ├── clone.ts │ │ │ │ ├── cloud-chart.ts │ │ │ │ ├── cloud-network.ts │ │ │ │ ├── cloud-scale.ts │ │ │ │ ├── cloud-traffic.ts │ │ │ │ ├── cloud.ts │ │ │ │ ├── cluster.ts │ │ │ │ ├── code.ts │ │ │ │ ├── cog.ts │ │ │ │ ├── coin-bag.ts │ │ │ │ ├── collapse-card.ts │ │ │ │ ├── color-palette.ts │ │ │ │ ├── color-picker.ts │ │ │ │ ├── compass.ts │ │ │ │ ├── computer.ts │ │ │ │ ├── connect.ts │ │ │ │ ├── container-volume.ts │ │ │ │ ├── container.ts │ │ │ │ ├── control-lun.ts │ │ │ │ ├── copy-to-clipboard.ts │ │ │ │ ├── copy.ts │ │ │ │ ├── cpu.ts │ │ │ │ ├── credit-card.ts │ │ │ │ ├── crosshairs.ts │ │ │ │ ├── crown.ts │ │ │ │ ├── cursor-arrow.ts │ │ │ │ ├── cursor-hand-click.ts │ │ │ │ ├── cursor-hand-grab.ts │ │ │ │ ├── cursor-hand-open.ts │ │ │ │ ├── cursor-hand.ts │ │ │ │ ├── cursor-move.ts │ │ │ │ ├── curve-chart.ts │ │ │ │ ├── dashboard.ts │ │ │ │ ├── data-cluster.ts │ │ │ │ ├── deploy.ts │ │ │ │ ├── detail-collapse.ts │ │ │ │ ├── detail-expand.ts │ │ │ │ ├── details.ts │ │ │ │ ├── devices.ts │ │ │ │ ├── digital-signature.ts │ │ │ │ ├── disconnect.ts │ │ │ │ ├── display.ts │ │ │ │ ├── dollar-bill.ts │ │ │ │ ├── dollar.ts │ │ │ │ ├── dot-circle.ts │ │ │ │ ├── download-cloud.ts │ │ │ │ ├── download.ts │ │ │ │ ├── drag-handle-corner.ts │ │ │ │ ├── drag-handle.ts │ │ │ │ ├── e-check.ts │ │ │ │ ├── ellipsis-horizontal.ts │ │ │ │ ├── ellipsis-vertical.ts │ │ │ │ ├── employee-group.ts │ │ │ │ ├── employee.ts │ │ │ │ ├── envelope.ts │ │ │ │ ├── eraser.ts │ │ │ │ ├── error-mini.ts │ │ │ │ ├── error-standard.ts │ │ │ │ ├── euro.ts │ │ │ │ ├── event-mini.ts │ │ │ │ ├── event.ts │ │ │ │ ├── exclamation-circle.ts │ │ │ │ ├── exclamation-triangle.ts │ │ │ │ ├── expand-card.ts │ │ │ │ ├── export.ts │ │ │ │ ├── eye-hide.ts │ │ │ │ ├── eye.ts │ │ │ │ ├── factory.ts │ │ │ │ ├── fast-forward.ts │ │ │ │ ├── ferry.ts │ │ │ │ ├── file-group.ts │ │ │ │ ├── file-settings.ts │ │ │ │ ├── file-share-2.ts │ │ │ │ ├── file-share.ts │ │ │ │ ├── file-zip.ts │ │ │ │ ├── file.ts │ │ │ │ ├── film-strip.ts │ │ │ │ ├── filter-2.ts │ │ │ │ ├── filter-grid-circle-mini.ts │ │ │ │ ├── filter-grid-circle.ts │ │ │ │ ├── filter-grid-mini.ts │ │ │ │ ├── filter-grid.ts │ │ │ │ ├── filter-off.ts │ │ │ │ ├── filter.ts │ │ │ │ ├── firewall.ts │ │ │ │ ├── first-aid.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── flag.ts │ │ │ │ ├── flame.ts │ │ │ │ ├── flask.ts │ │ │ │ ├── floppy.ts │ │ │ │ ├── folder-open.ts │ │ │ │ ├── folder.ts │ │ │ │ ├── font-size.ts │ │ │ │ ├── forking.ts │ │ │ │ ├── form.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── gavel.ts │ │ │ │ ├── grid-chart.ts │ │ │ │ ├── grid-view.ts │ │ │ │ ├── half-star.ts │ │ │ │ ├── happy-face.ts │ │ │ │ ├── hard-disk.ts │ │ │ │ ├── hard-drive-disks.ts │ │ │ │ ├── hard-drive.ts │ │ │ │ ├── hashtag.ts │ │ │ │ ├── headphones.ts │ │ │ │ ├── heart-broken.ts │ │ │ │ ├── heart.ts │ │ │ │ ├── heat-map.ts │ │ │ │ ├── helix.ts │ │ │ │ ├── help-info.ts │ │ │ │ ├── help.ts │ │ │ │ ├── highlighter.ts │ │ │ │ ├── history.ts │ │ │ │ ├── home.ts │ │ │ │ ├── host-group.ts │ │ │ │ ├── host.ts │ │ │ │ ├── hourglass.ts │ │ │ │ ├── iconTemplate.ts │ │ │ │ ├── id-badge.ts │ │ │ │ ├── image-gallery.ts │ │ │ │ ├── image.ts │ │ │ │ ├── import.ts │ │ │ │ ├── inbox.ts │ │ │ │ ├── indent.ts │ │ │ │ ├── inductor.ts │ │ │ │ ├── info-circle-mini.ts │ │ │ │ ├── info-circle.ts │ │ │ │ ├── info-standard.ts │ │ │ │ ├── install.ts │ │ │ │ ├── internet-of-things.ts │ │ │ │ ├── italic.ts │ │ │ │ ├── justify-text.ts │ │ │ │ ├── key.ts │ │ │ │ ├── keyboard.ts │ │ │ │ ├── landscape.ts │ │ │ │ ├── language.ts │ │ │ │ ├── launchpad.ts │ │ │ │ ├── layers.ts │ │ │ │ ├── library.ts │ │ │ │ ├── lightbulb.ts │ │ │ │ ├── line-chart.ts │ │ │ │ ├── link.ts │ │ │ │ ├── list.ts │ │ │ │ ├── lock.ts │ │ │ │ ├── login.ts │ │ │ │ ├── logout.ts │ │ │ │ ├── map-marker.ts │ │ │ │ ├── map.ts │ │ │ │ ├── media-changer.ts │ │ │ │ ├── memory.ts │ │ │ │ ├── microphone-mute.ts │ │ │ │ ├── microphone.ts │ │ │ │ ├── minus-circle.ts │ │ │ │ ├── minus.ts │ │ │ │ ├── mobile.ts │ │ │ │ ├── moon.ts │ │ │ │ ├── mouse.ts │ │ │ │ ├── music-note.ts │ │ │ │ ├── namespace.ts │ │ │ │ ├── network-globe.ts │ │ │ │ ├── network-settings.ts │ │ │ │ ├── network-switch.ts │ │ │ │ ├── neutral-face.ts │ │ │ │ ├── new.ts │ │ │ │ ├── no-access.ts │ │ │ │ ├── no-wifi.ts │ │ │ │ ├── node-group.ts │ │ │ │ ├── node.ts │ │ │ │ ├── nodes.ts │ │ │ │ ├── note.ts │ │ │ │ ├── number-list.ts │ │ │ │ ├── nvme.ts │ │ │ │ ├── objects.ts │ │ │ │ ├── on-holiday.ts │ │ │ │ ├── organization.ts │ │ │ │ ├── outdent.ts │ │ │ │ ├── paint-roller.ts │ │ │ │ ├── paperclip.ts │ │ │ │ ├── paste.ts │ │ │ │ ├── pause.ts │ │ │ │ ├── pdf-file.ts │ │ │ │ ├── pencil.ts │ │ │ │ ├── peso.ts │ │ │ │ ├── phone-handset.ts │ │ │ │ ├── picture.ts │ │ │ │ ├── pie-chart.ts │ │ │ │ ├── piggy-bank.ts │ │ │ │ ├── pin.ts │ │ │ │ ├── pinboard.ts │ │ │ │ ├── play.ts │ │ │ │ ├── plugin.ts │ │ │ │ ├── plus-circle.ts │ │ │ │ ├── plus.ts │ │ │ │ ├── pod.ts │ │ │ │ ├── pop-out.ts │ │ │ │ ├── portrait.ts │ │ │ │ ├── pound.ts │ │ │ │ ├── power.ts │ │ │ │ ├── printer.ts │ │ │ │ ├── process-on-vm.ts │ │ │ │ ├── qr-code.ts │ │ │ │ ├── rack-server.ts │ │ │ │ ├── radar.ts │ │ │ │ ├── recycle.ts │ │ │ │ ├── redo.ts │ │ │ │ ├── refresh.ts │ │ │ │ ├── repeat.ts │ │ │ │ ├── replay-all.ts │ │ │ │ ├── replay-one.ts │ │ │ │ ├── resistor.ts │ │ │ │ ├── resize.ts │ │ │ │ ├── resource-pool.ts │ │ │ │ ├── rewind.ts │ │ │ │ ├── router.ts │ │ │ │ ├── ruble.ts │ │ │ │ ├── ruler-pencil.ts │ │ │ │ ├── rupee.ts │ │ │ │ ├── sad-face.ts │ │ │ │ ├── scatter-plot.ts │ │ │ │ ├── scissors.ts │ │ │ │ ├── script-execute.ts │ │ │ │ ├── script-schedule.ts │ │ │ │ ├── scroll.ts │ │ │ │ ├── search.ts │ │ │ │ ├── share.ts │ │ │ │ ├── shield-check.ts │ │ │ │ ├── shield-x.ts │ │ │ │ ├── shield.ts │ │ │ │ ├── shopping-bag.ts │ │ │ │ ├── shopping-cart.ts │ │ │ │ ├── shrink.ts │ │ │ │ ├── shuffle.ts │ │ │ │ ├── slider.ts │ │ │ │ ├── snowflake.ts │ │ │ │ ├── sort-by.ts │ │ │ │ ├── squid.ts │ │ │ │ ├── ssd.ts │ │ │ │ ├── star.ts │ │ │ │ ├── step-forward-2.ts │ │ │ │ ├── step-forward.ts │ │ │ │ ├── stop.ts │ │ │ │ ├── storage-adapter.ts │ │ │ │ ├── storage.ts │ │ │ │ ├── store.ts │ │ │ │ ├── strikethrough.ts │ │ │ │ ├── subscript.ts │ │ │ │ ├── success-standard.ts │ │ │ │ ├── sun.ts │ │ │ │ ├── superscript.ts │ │ │ │ ├── switch.ts │ │ │ │ ├── sync.ts │ │ │ │ ├── table.ts │ │ │ │ ├── tablet.ts │ │ │ │ ├── tag.ts │ │ │ │ ├── tags.ts │ │ │ │ ├── talk-bubbles.ts │ │ │ │ ├── tape-drive.ts │ │ │ │ ├── target.ts │ │ │ │ ├── tasks.ts │ │ │ │ ├── terminal.ts │ │ │ │ ├── test.ts │ │ │ │ ├── text-color.ts │ │ │ │ ├── text.ts │ │ │ │ ├── thermometer.ts │ │ │ │ ├── thin-client.ts │ │ │ │ ├── thumbs-down.ts │ │ │ │ ├── thumbs-up.ts │ │ │ │ ├── tick-chart.ts │ │ │ │ ├── timeline.ts │ │ │ │ ├── times-circle.ts │ │ │ │ ├── times-mini.ts │ │ │ │ ├── times.ts │ │ │ │ ├── tools.ts │ │ │ │ ├── trailer.ts │ │ │ │ ├── trash.ts │ │ │ │ ├── tree-view.ts │ │ │ │ ├── tree.ts │ │ │ │ ├── truck.ts │ │ │ │ ├── two-way-arrows.ts │ │ │ │ ├── unarchive.ts │ │ │ │ ├── underline.ts │ │ │ │ ├── undo.ts │ │ │ │ ├── uninstall.ts │ │ │ │ ├── unknown-status.ts │ │ │ │ ├── unknown.ts │ │ │ │ ├── unlink.ts │ │ │ │ ├── unlock.ts │ │ │ │ ├── update.ts │ │ │ │ ├── upload-cloud.ts │ │ │ │ ├── upload.ts │ │ │ │ ├── usb.ts │ │ │ │ ├── user.ts │ │ │ │ ├── users.ts │ │ │ │ ├── video-camera.ts │ │ │ │ ├── video-gallery.ts │ │ │ │ ├── view-cards.ts │ │ │ │ ├── view-columns.ts │ │ │ │ ├── view-list.ts │ │ │ │ ├── vm-bug-inverse.ts │ │ │ │ ├── vm-bug.ts │ │ │ │ ├── vm.ts │ │ │ │ ├── vmw-app.ts │ │ │ │ ├── volume-down.ts │ │ │ │ ├── volume-mute.ts │ │ │ │ ├── volume-up.ts │ │ │ │ ├── volume.ts │ │ │ │ ├── wallet.ts │ │ │ │ ├── wand.ts │ │ │ │ ├── warning-mini.ts │ │ │ │ ├── warning-standard.ts │ │ │ │ ├── wifi.ts │ │ │ │ ├── window-close.ts │ │ │ │ ├── window-max.ts │ │ │ │ ├── window-min.ts │ │ │ │ ├── window-restore.ts │ │ │ │ ├── won.ts │ │ │ │ ├── world.ts │ │ │ │ ├── wrench.ts │ │ │ │ ├── xls-file.ts │ │ │ │ ├── yen.ts │ │ │ │ ├── zoom-in.ts │ │ │ │ └── zoom-out.ts │ │ │ └── utils │ │ │ │ ├── icon.classnames.spec.ts │ │ │ │ ├── icon.classnames.ts │ │ │ │ ├── icon.svg-helpers.spec.ts │ │ │ │ ├── icon.svg-helpers.ts │ │ │ │ └── test-icons.ts │ │ ├── index.performance.ts │ │ ├── index.ts │ │ ├── input │ │ │ ├── index.ts │ │ │ ├── input-group.element.scss │ │ │ ├── input-group.element.spec.ts │ │ │ ├── input-group.element.ts │ │ │ ├── input-groups.stories.mdx │ │ │ ├── input-groups.stories.ts │ │ │ ├── input.element.scss │ │ │ ├── input.element.spec.ts │ │ │ ├── input.element.ts │ │ │ ├── input.stories.mdx │ │ │ ├── input.stories.ts │ │ │ └── register.ts │ │ ├── internal-components │ │ │ ├── close-button │ │ │ │ ├── close-button.element.spec.ts │ │ │ │ ├── close-button.element.ts │ │ │ │ ├── close-button.stories.mdx │ │ │ │ ├── close-button.stories.ts │ │ │ │ ├── index.ts │ │ │ │ └── register.ts │ │ │ ├── overlay │ │ │ │ ├── index.ts │ │ │ │ ├── overlay.element.scss │ │ │ │ ├── overlay.element.spec.ts │ │ │ │ ├── overlay.element.ts │ │ │ │ ├── overlay.stories.mdx │ │ │ │ ├── overlay.stories.ts │ │ │ │ ├── register.ts │ │ │ │ └── shared.element.scss │ │ │ ├── panel │ │ │ │ ├── index.ts │ │ │ │ ├── panel.element.scss │ │ │ │ ├── panel.element.spec.ts │ │ │ │ ├── panel.element.ts │ │ │ │ ├── panel.stories.mdx │ │ │ │ ├── panel.stories.ts │ │ │ │ └── register.ts │ │ │ ├── popup │ │ │ │ ├── index.ts │ │ │ │ ├── pointer.element.scss │ │ │ │ ├── pointer.element.spec.ts │ │ │ │ ├── pointer.element.ts │ │ │ │ ├── popup.element.scss │ │ │ │ ├── popup.element.spec.ts │ │ │ │ ├── popup.element.ts │ │ │ │ ├── popup.stories.mdx │ │ │ │ ├── popup.stories.ts │ │ │ │ ├── register.ts │ │ │ │ └── utils │ │ │ │ │ ├── pointer.utils.spec.ts │ │ │ │ │ └── pointer.utils.ts │ │ │ └── visual-checkbox │ │ │ │ ├── index.ts │ │ │ │ ├── register.ts │ │ │ │ ├── visual-checkbox.element.scss │ │ │ │ ├── visual-checkbox.element.spec.ts │ │ │ │ └── visual-checkbox.element.ts │ │ ├── internal │ │ │ ├── base │ │ │ │ ├── base.element.scss │ │ │ │ ├── button.base.ts │ │ │ │ ├── focus-trap.base.spec.ts │ │ │ │ └── focus-trap.base.ts │ │ │ ├── controllers │ │ │ │ ├── active.controller.spec.ts │ │ │ │ ├── active.controller.ts │ │ │ │ ├── aria-button.controller.spec.ts │ │ │ │ ├── aria-button.controller.ts │ │ │ │ ├── aria-disabled.controller.spec.ts │ │ │ │ ├── aria-disabled.controller.ts │ │ │ │ ├── aria-popup-trigger.controller.spec.ts │ │ │ │ ├── aria-popup-trigger.controller.ts │ │ │ │ ├── aria-popup.controller.spec.ts │ │ │ │ ├── aria-popup.controller.ts │ │ │ │ ├── aria-pressed.controller.spec.ts │ │ │ │ ├── aria-pressed.controller.ts │ │ │ │ ├── aria-selected.controller.spec.ts │ │ │ │ ├── aria-selected.controller.ts │ │ │ │ ├── button-anchor.controller.spec.ts │ │ │ │ ├── button-anchor.controller.ts │ │ │ │ ├── button-submit.controller.spec.ts │ │ │ │ ├── button-submit.controller.ts │ │ │ │ ├── closable.controller.spec.ts │ │ │ │ ├── closable.controller.ts │ │ │ │ ├── controller.stories.ts │ │ │ │ ├── first-focus.controller.spec.ts │ │ │ │ ├── first-focus.controller.ts │ │ │ │ ├── inline-focus-trap.controller.spec.ts │ │ │ │ ├── inline-focus-trap.controller.ts │ │ │ │ └── utils │ │ │ │ │ ├── first-focus.controller.utils.spec.ts │ │ │ │ │ └── first-focus.controller.utils.ts │ │ │ ├── decorators │ │ │ │ ├── animate.spec.ts │ │ │ │ ├── animate.ts │ │ │ │ ├── element.spec.ts │ │ │ │ ├── element.ts │ │ │ │ ├── event.spec.ts │ │ │ │ ├── event.ts │ │ │ │ ├── global-style.spec.ts │ │ │ │ ├── global-style.ts │ │ │ │ ├── i18n.spec.ts │ │ │ │ ├── i18n.ts │ │ │ │ ├── id.spec.ts │ │ │ │ ├── id.ts │ │ │ │ ├── property.spec.ts │ │ │ │ ├── property.ts │ │ │ │ ├── query-slot.spec.ts │ │ │ │ └── query-slot.ts │ │ │ ├── directives │ │ │ │ ├── spread-props.spec.ts │ │ │ │ └── spread-props.ts │ │ │ ├── enums │ │ │ │ └── aria-roles.ts │ │ │ ├── i18n │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ └── interfaces.ts │ │ │ ├── motion │ │ │ │ ├── animations │ │ │ │ │ ├── animations.spec.ts │ │ │ │ │ ├── cds-accordion-panel-open.ts │ │ │ │ │ ├── cds-component-shake.ts │ │ │ │ │ ├── cds-dropdown-open.ts │ │ │ │ │ ├── cds-modal-enter.ts │ │ │ │ │ ├── cds-navigation-group-open.ts │ │ │ │ │ ├── cds-navigation-open.ts │ │ │ │ │ ├── cds-overlay-hinge-example.ts │ │ │ │ │ ├── cds-tree-item-expand.ts │ │ │ │ │ └── keyframes │ │ │ │ │ │ ├── fade-in-and-slide-down.ts │ │ │ │ │ │ ├── fade-in.ts │ │ │ │ │ │ ├── hinge.ts │ │ │ │ │ │ └── shake.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── motion.service.spec.ts │ │ │ │ ├── motion.service.ts │ │ │ │ ├── motion.stories.mdx │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── positioning │ │ │ │ ├── interfaces.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── services │ │ │ │ ├── focus-trap-tracker.service.spec.ts │ │ │ │ ├── focus-trap-tracker.service.ts │ │ │ │ ├── global.service.spec.ts │ │ │ │ ├── global.service.ts │ │ │ │ ├── i18n.service.spec.ts │ │ │ │ ├── i18n.service.ts │ │ │ │ ├── keycodes.service.spec.ts │ │ │ │ ├── keycodes.service.ts │ │ │ │ ├── log.service.spec.ts │ │ │ │ └── log.service.ts │ │ │ └── utils │ │ │ │ ├── __.ts │ │ │ │ ├── a11y.spec.ts │ │ │ │ ├── a11y.ts │ │ │ │ ├── array.spec.ts │ │ │ │ ├── array.ts │ │ │ │ ├── async.spec.ts │ │ │ │ ├── async.ts │ │ │ │ ├── color.ts │ │ │ │ ├── conditional.spec.ts │ │ │ │ ├── conditional.ts │ │ │ │ ├── css.spec.ts │ │ │ │ ├── css.ts │ │ │ │ ├── dom.spec.ts │ │ │ │ ├── dom.ts │ │ │ │ ├── enum.spec.ts │ │ │ │ ├── enum.ts │ │ │ │ ├── environment.spec.ts │ │ │ │ ├── environment.ts │ │ │ │ ├── event-subject.spec.ts │ │ │ │ ├── event-subject.ts │ │ │ │ ├── events.spec.ts │ │ │ │ ├── events.ts │ │ │ │ ├── exists.spec.ts │ │ │ │ ├── exists.ts │ │ │ │ ├── framework.spec.ts │ │ │ │ ├── framework.ts │ │ │ │ ├── global.spec.ts │ │ │ │ ├── global.ts │ │ │ │ ├── identity.spec.ts │ │ │ │ ├── identity.ts │ │ │ │ ├── keycodes.spec.ts │ │ │ │ ├── keycodes.ts │ │ │ │ ├── lit-element.spec.ts │ │ │ │ ├── lit.spec.ts │ │ │ │ ├── lit.ts │ │ │ │ ├── math.spec.ts │ │ │ │ ├── math.ts │ │ │ │ ├── metadata.spec.ts │ │ │ │ ├── metadata.ts │ │ │ │ ├── registration.spec.ts │ │ │ │ ├── registration.ts │ │ │ │ ├── responsive.spec.ts │ │ │ │ ├── responsive.ts │ │ │ │ ├── size.spec.ts │ │ │ │ ├── size.ts │ │ │ │ ├── string.spec.ts │ │ │ │ ├── string.ts │ │ │ │ ├── supports.spec.ts │ │ │ │ ├── supports.ts │ │ │ │ ├── traversal.spec.ts │ │ │ │ └── traversal.ts │ │ ├── list │ │ │ ├── list.scss │ │ │ ├── list.stories.mdx │ │ │ └── list.stories.ts │ │ ├── modal │ │ │ ├── index.ts │ │ │ ├── modal-actions.element.spec.ts │ │ │ ├── modal-actions.element.ts │ │ │ ├── modal-content.element.spec.ts │ │ │ ├── modal-content.element.ts │ │ │ ├── modal-header-actions.element.spec.ts │ │ │ ├── modal-header-actions.element.ts │ │ │ ├── modal-header.element.spec.ts │ │ │ ├── modal-header.element.ts │ │ │ ├── modal.element.scss │ │ │ ├── modal.element.spec.ts │ │ │ ├── modal.element.ts │ │ │ ├── modal.stories.mdx │ │ │ ├── modal.stories.ts │ │ │ └── register.ts │ │ ├── navigation │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ └── navigation.interfaces.ts │ │ │ ├── navigation-group.element.scss │ │ │ ├── navigation-group.element.spec.ts │ │ │ ├── navigation-group.element.ts │ │ │ ├── navigation-item.element.scss │ │ │ ├── navigation-item.element.spec.ts │ │ │ ├── navigation-item.element.ts │ │ │ ├── navigation-start.element.spec.ts │ │ │ ├── navigation-start.element.ts │ │ │ ├── navigation.element.scss │ │ │ ├── navigation.element.spec.ts │ │ │ ├── navigation.element.ts │ │ │ ├── navigation.stories.mdx │ │ │ ├── navigation.stories.ts │ │ │ ├── register.ts │ │ │ └── utils │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ ├── pagination │ │ │ ├── index.ts │ │ │ ├── pagination-button.element.spec.ts │ │ │ ├── pagination-button.element.ts │ │ │ ├── pagination.element.scss │ │ │ ├── pagination.element.spec.ts │ │ │ ├── pagination.element.ts │ │ │ ├── pagination.stories.mdx │ │ │ ├── pagination.stories.ts │ │ │ ├── register.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ ├── password │ │ │ ├── index.ts │ │ │ ├── password.element.spec.ts │ │ │ ├── password.element.ts │ │ │ ├── password.stories.mdx │ │ │ ├── password.stories.ts │ │ │ └── register.ts │ │ ├── polyfills │ │ │ ├── aria-reflect.ts │ │ │ └── index.ts │ │ ├── progress-circle │ │ │ ├── index.ts │ │ │ ├── progress-circle.element.scss │ │ │ ├── progress-circle.element.spec.ts │ │ │ ├── progress-circle.element.ts │ │ │ ├── progress-circle.stories.mdx │ │ │ ├── progress-circle.stories.ts │ │ │ ├── progress-circle.utils.spec.ts │ │ │ ├── progress-circle.utils.ts │ │ │ └── register.ts │ │ ├── radio │ │ │ ├── index.ts │ │ │ ├── radio-group.element.spec.ts │ │ │ ├── radio-group.element.ts │ │ │ ├── radio.element.scss │ │ │ ├── radio.element.spec.ts │ │ │ ├── radio.element.ts │ │ │ ├── radio.stories.mdx │ │ │ ├── radio.stories.ts │ │ │ └── register.ts │ │ ├── range │ │ │ ├── index.ts │ │ │ ├── range.element.scss │ │ │ ├── range.element.spec.ts │ │ │ ├── range.element.ts │ │ │ ├── range.global.scss │ │ │ ├── range.stories.mdx │ │ │ ├── range.stories.ts │ │ │ └── register.ts │ │ ├── search │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── search.element.spec.ts │ │ │ ├── search.element.ts │ │ │ ├── search.global.scss │ │ │ ├── search.stories.mdx │ │ │ └── search.stories.ts │ │ ├── select │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── select.element.scss │ │ │ ├── select.element.spec.ts │ │ │ ├── select.element.ts │ │ │ ├── select.global.scss │ │ │ ├── select.stories.mdx │ │ │ └── select.stories.ts │ │ ├── selection-panels │ │ │ ├── checkbox │ │ │ │ ├── checkbox-panel.element.spec.ts │ │ │ │ ├── checkbox-panel.element.ts │ │ │ │ ├── checkbox-panel.stories.mdx │ │ │ │ ├── checkbox-panel.stories.ts │ │ │ │ ├── index.ts │ │ │ │ └── register.ts │ │ │ ├── radio │ │ │ │ ├── index.ts │ │ │ │ ├── radio-panel.element.spec.ts │ │ │ │ ├── radio-panel.element.ts │ │ │ │ ├── radio-panel.stories.mdx │ │ │ │ ├── radio-panel.stories.ts │ │ │ │ └── register.ts │ │ │ └── shared │ │ │ │ ├── selection-panel.element.scss │ │ │ │ └── selection-panel.interfaces.ts │ │ ├── styles │ │ │ ├── global.scss │ │ │ ├── layout │ │ │ │ ├── _alignments.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _optimize.scss │ │ │ │ ├── _shadow-dom.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _type-grid.scss │ │ │ │ ├── _type-horizontal.scss │ │ │ │ ├── _type-vertical.scss │ │ │ │ ├── docs │ │ │ │ │ ├── grid.stories.mdx │ │ │ │ │ ├── horizontal.stories.mdx │ │ │ │ │ ├── layout.stories.mdx │ │ │ │ │ ├── patterns.stories.mdx │ │ │ │ │ ├── spacing.stories.mdx │ │ │ │ │ ├── utilities.stories.mdx │ │ │ │ │ └── vertical.stories.mdx │ │ │ │ ├── layout.stories.ts │ │ │ │ └── mixins │ │ │ │ │ └── _mixins.scss │ │ │ ├── mixins │ │ │ │ └── _mixins.scss │ │ │ ├── module.layout.scss │ │ │ ├── module.reset.scss │ │ │ ├── module.typography.scss │ │ │ ├── shim.clr-ui.scss │ │ │ ├── theme.dark.scss │ │ │ ├── theme.high-contrast.scss │ │ │ ├── theme.low-motion.scss │ │ │ ├── themes │ │ │ │ ├── clr-theme.stories.mdx │ │ │ │ ├── dark-theme.stories.mdx │ │ │ │ ├── dynamic-themes.stories.mdx │ │ │ │ ├── high-contrast-theme.stories.mdx │ │ │ │ ├── low-motion-theme.stories.mdx │ │ │ │ ├── status.stories.mdx │ │ │ │ ├── themes.stories.mdx │ │ │ │ └── themes.stories.ts │ │ │ ├── tokens │ │ │ │ ├── color.stories.mdx │ │ │ │ ├── interaction.stories.mdx │ │ │ │ ├── motion.stories.mdx │ │ │ │ ├── object.stories.mdx │ │ │ │ ├── platform.stories.mdx │ │ │ │ ├── spacing.stories.mdx │ │ │ │ ├── tokens.stories.mdx │ │ │ │ └── tokens.stories.ts │ │ │ └── typography │ │ │ │ ├── _legacy-typography.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── typography.stories.mdx │ │ │ │ └── typography.stories.ts │ │ ├── table │ │ │ ├── table.scss │ │ │ ├── table.stories.mdx │ │ │ └── table.stories.ts │ │ ├── tag │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── tag.element.scss │ │ │ ├── tag.element.spec.ts │ │ │ ├── tag.element.ts │ │ │ ├── tag.stories.mdx │ │ │ └── tag.stories.ts │ │ ├── test-dropdown │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── test-dropdown.element.scss │ │ │ ├── test-dropdown.element.spec.ts │ │ │ └── test-dropdown.element.ts │ │ ├── test │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── textarea │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── textarea.element.scss │ │ │ ├── textarea.element.spec.ts │ │ │ ├── textarea.element.ts │ │ │ ├── textarea.stories.mdx │ │ │ └── textarea.stories.ts │ │ ├── time │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── time.element.spec.ts │ │ │ ├── time.element.ts │ │ │ ├── time.global.scss │ │ │ ├── time.stories.mdx │ │ │ └── time.stories.ts │ │ ├── toggle │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── toggle-group.element.spec.ts │ │ │ ├── toggle-group.element.ts │ │ │ ├── toggle.element.scss │ │ │ ├── toggle.element.spec.ts │ │ │ ├── toggle.element.ts │ │ │ ├── toggle.stories.mdx │ │ │ └── toggle.stories.ts │ │ └── tree-view │ │ │ ├── index.ts │ │ │ ├── register.ts │ │ │ ├── story-utils.ts │ │ │ ├── tree-item.element.scss │ │ │ ├── tree-item.element.spec.ts │ │ │ ├── tree-item.element.ts │ │ │ ├── tree.element.scss │ │ │ ├── tree.element.spec.ts │ │ │ ├── tree.element.ts │ │ │ ├── tree.stories.mdx │ │ │ └── tree.stories.ts │ ├── stylelint.config.js │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.storybook.json │ ├── web-dev-server.config.mjs │ ├── web-dev-server.sandbox.mjs │ ├── web-dev-server.storybook.mjs │ ├── web-test-runner.a11y.mjs │ ├── web-test-runner.config.mjs │ └── web-test-runner.performance.mjs ├── eslint-plugin-clarity-adoption │ ├── .gitignore │ ├── README.md │ ├── docs │ │ └── rules │ │ │ ├── no-clr-accordion.md │ │ │ ├── no-clr-alert.md │ │ │ ├── no-clr-badge.md │ │ │ ├── no-clr-button.md │ │ │ ├── no-clr-card.md │ │ │ ├── no-clr-checkbox.md │ │ │ ├── no-clr-datalist.md │ │ │ ├── no-clr-form.md │ │ │ ├── no-clr-icon.md │ │ │ ├── no-clr-input.md │ │ │ ├── no-clr-label.md │ │ │ ├── no-clr-list.md │ │ │ ├── no-clr-modal.md │ │ │ ├── no-clr-password.md │ │ │ ├── no-clr-radio.md │ │ │ ├── no-clr-range.md │ │ │ ├── no-clr-select.md │ │ │ ├── no-clr-textarea.md │ │ │ └── no-clr-toggle.md │ ├── package.json │ ├── src │ │ ├── html-parser.ts │ │ ├── index.ts │ │ ├── rules │ │ │ ├── decorator-template-helper.ts │ │ │ ├── html-fixer-helpers.ts │ │ │ ├── no-clr-accordion │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-accordion.spec.ts │ │ │ ├── no-clr-alert │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-alert.spec.ts │ │ │ ├── no-clr-badge │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-badge.spec.ts │ │ │ ├── no-clr-button │ │ │ │ ├── disallowed-classes.ts │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-button.spec.ts │ │ │ ├── no-clr-card │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-card.spec.ts │ │ │ ├── no-clr-checkbox │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-checkbox.spec.ts │ │ │ ├── no-clr-datalist │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-datalist.spec.ts │ │ │ ├── no-clr-form │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-form.spec.ts │ │ │ ├── no-clr-icon │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-icon.spec.ts │ │ │ ├── no-clr-input │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-input.spec.ts │ │ │ ├── no-clr-label │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-label.spec.ts │ │ │ ├── no-clr-list │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-list.spec.ts │ │ │ ├── no-clr-modal │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-modal.spec.ts │ │ │ ├── no-clr-password │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-password.spec.ts │ │ │ ├── no-clr-radio │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-radio.spec.ts │ │ │ ├── no-clr-range │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-range.spec.ts │ │ │ ├── no-clr-select │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-select.spec.ts │ │ │ ├── no-clr-textarea │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-textarea.spec.ts │ │ │ └── no-clr-toggle │ │ │ │ ├── index.ts │ │ │ │ └── no-clr-toggle.spec.ts │ │ ├── test-helper.spec.ts │ │ └── types │ │ │ └── index.d.ts │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── eslint-plugin-clarity │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── rules │ │ └── no-barrel-imports.js ├── react │ ├── .eslintrc.js │ ├── App.tsx │ ├── README.md │ ├── babel.config.js │ ├── index.html │ ├── index.tsx │ ├── jest.config.js │ ├── jest.setup.ts │ ├── package.js │ ├── package.json │ ├── src │ │ ├── accordion │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── alert │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── badge │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── breadcrumb │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── button-action │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── button-expand │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── button-handle │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── button-inline │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── button-sort │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── button │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── card │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── checkbox │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── datalist │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── date │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── divider │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── dropdown │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── file │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── forms │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── icon │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── input │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── internal-components │ │ │ ├── close-button │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ │ ├── overlay │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ │ ├── panel │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ │ ├── popup │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ │ └── visual-checkbox │ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ ├── modal │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── navigation │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── pagination │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── password │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── progress-circle │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── radio │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── range │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── search │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── select │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── selection-panels │ │ │ ├── checkbox │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ │ └── radio │ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── entrypoint.tsconfig.json │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── package.json │ │ ├── tag │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── textarea │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── time │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── toggle │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ ├── tree-view │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── entrypoint.tsconfig.json │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── package.json │ │ └── utils │ │ │ ├── entrypoint.tsconfig.json │ │ │ └── index.ts │ ├── tsconfig.build.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.project.json │ └── tsconfig.test.json └── schematics │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ ├── add │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── schema.d.ts │ │ └── schema.json │ ├── cds-add │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── schema.d.ts │ │ ├── schema.json │ │ └── versions.ts │ ├── cds-collection.json │ ├── collection.json │ ├── migration-collection.json │ ├── update │ │ ├── update-0.13.0.ts │ │ ├── update-3.0.0.ts │ │ ├── update-5.0.0.spec.ts │ │ └── update-5.0.0.ts │ └── utility │ │ ├── add-assets-to-config-file.ts │ │ ├── add-module-import-to-module.ts │ │ ├── angular-config-filename.ts │ │ ├── compare-versions.ts │ │ ├── config.ts │ │ ├── find-app-module.ts │ │ ├── get-file-content.ts │ │ ├── get-index-html-path.ts │ │ ├── get-json-file.ts │ │ ├── get-main-path.ts │ │ ├── get-typescript-source-file.ts │ │ ├── ng-add-options.ts │ │ ├── run-npm-install.ts │ │ ├── setup-project.ts │ │ └── update-json-file.ts │ ├── tsconfig.cds.json │ ├── tsconfig.json │ └── tsconfig.test.json ├── postcss.config.js ├── scripts ├── axe.js ├── clr-icons-svg.js ├── commitlint │ ├── adoptionScopes.js │ ├── angularScopes.js │ ├── common.js │ ├── coreScopes.js │ ├── customScopes.js │ ├── customScopes.json │ ├── packagesScopes.js │ └── websiteScopes.js ├── copy-version.js ├── core-ng-module-generator.js ├── lock-check.js ├── lock-fix.js ├── netlify-build.sh ├── netlify │ └── download-icon.js ├── publish-build.sh ├── publish-verify.js ├── set-version.js ├── update-license.js ├── update-local-packages.js ├── version-validation.js ├── website-add-rel-notes.js ├── website.sh └── write-svg-icons.js ├── tools ├── audit-website │ ├── README.md │ ├── index.js │ └── package.json ├── link-checker │ ├── README.md │ ├── index.js │ └── package.json └── visual-tester │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ ├── README.md │ ├── angular.dev.vspec.ts │ └── core.stories.vspec.ts │ ├── babel.config.js │ ├── jest.config.ts │ ├── jest.setup.js │ ├── package.json │ ├── specs │ ├── angular.dev.vspec.js │ └── core │ │ └── stories.vspec.js │ ├── src │ ├── index.ts │ ├── runner │ │ ├── cli.ts │ │ ├── context.ts │ │ ├── index.ts │ │ ├── reporters │ │ │ ├── dotReporter.ts │ │ │ ├── reporter.ts │ │ │ └── specReporter.ts │ │ ├── runner.ts │ │ ├── structure │ │ │ └── tree.ts │ │ └── types.d.ts │ └── visual │ │ ├── visual-diff.ts │ │ └── visual-error.ts │ ├── tsconfig.json │ └── yarn.lock ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-website-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/workflows/check-website-links.yml -------------------------------------------------------------------------------- /.github/workflows/lock-threads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/workflows/lock-threads.yml -------------------------------------------------------------------------------- /.github/workflows/stale-threads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.github/workflows/stale-threads.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/README.md -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/README.md -------------------------------------------------------------------------------- /apps/adoption/src/app/pages/card.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/adoption/src/app/pages/card.page.ts -------------------------------------------------------------------------------- /apps/core-angular-cli/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/.browserslistrc -------------------------------------------------------------------------------- /apps/core-angular-cli/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/.editorconfig -------------------------------------------------------------------------------- /apps/core-angular-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/.gitignore -------------------------------------------------------------------------------- /apps/core-angular-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/README.md -------------------------------------------------------------------------------- /apps/core-angular-cli/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/angular.json -------------------------------------------------------------------------------- /apps/core-angular-cli/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/karma.conf.js -------------------------------------------------------------------------------- /apps/core-angular-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/package.json -------------------------------------------------------------------------------- /apps/core-angular-cli/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core-angular-cli/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core-angular-cli/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/core-angular-cli/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/src/favicon.ico -------------------------------------------------------------------------------- /apps/core-angular-cli/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/src/index.html -------------------------------------------------------------------------------- /apps/core-angular-cli/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/src/main.ts -------------------------------------------------------------------------------- /apps/core-angular-cli/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/src/polyfills.ts -------------------------------------------------------------------------------- /apps/core-angular-cli/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/src/styles.scss -------------------------------------------------------------------------------- /apps/core-angular-cli/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/src/test.ts -------------------------------------------------------------------------------- /apps/core-angular-cli/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/tsconfig.app.json -------------------------------------------------------------------------------- /apps/core-angular-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/tsconfig.json -------------------------------------------------------------------------------- /apps/core-angular-cli/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/core-angular-cli/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-cli/yarn.lock -------------------------------------------------------------------------------- /apps/core-angular-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/.gitignore -------------------------------------------------------------------------------- /apps/core-angular-js/README.md: -------------------------------------------------------------------------------- 1 | # Angular JS + Clarity Core Demo 2 | -------------------------------------------------------------------------------- /apps/core-angular-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/package.json -------------------------------------------------------------------------------- /apps/core-angular-js/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/postcss.config.js -------------------------------------------------------------------------------- /apps/core-angular-js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/rollup.config.js -------------------------------------------------------------------------------- /apps/core-angular-js/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/src/favicon.ico -------------------------------------------------------------------------------- /apps/core-angular-js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/src/index.css -------------------------------------------------------------------------------- /apps/core-angular-js/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/src/index.html -------------------------------------------------------------------------------- /apps/core-angular-js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/src/index.js -------------------------------------------------------------------------------- /apps/core-angular-js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-js/yarn.lock -------------------------------------------------------------------------------- /apps/core-angular-universal/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/.editorconfig -------------------------------------------------------------------------------- /apps/core-angular-universal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/.gitignore -------------------------------------------------------------------------------- /apps/core-angular-universal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/README.md -------------------------------------------------------------------------------- /apps/core-angular-universal/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/angular.json -------------------------------------------------------------------------------- /apps/core-angular-universal/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/karma.conf.js -------------------------------------------------------------------------------- /apps/core-angular-universal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/package.json -------------------------------------------------------------------------------- /apps/core-angular-universal/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/server.ts -------------------------------------------------------------------------------- /apps/core-angular-universal/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core-angular-universal/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core-angular-universal/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/core-angular-universal/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/src/index.html -------------------------------------------------------------------------------- /apps/core-angular-universal/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/src/main.ts -------------------------------------------------------------------------------- /apps/core-angular-universal/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/src/test.ts -------------------------------------------------------------------------------- /apps/core-angular-universal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/tsconfig.json -------------------------------------------------------------------------------- /apps/core-angular-universal/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-angular-universal/yarn.lock -------------------------------------------------------------------------------- /apps/core-cdn-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-cdn-demo/index.html -------------------------------------------------------------------------------- /apps/core-cdn-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-cdn-demo/package.json -------------------------------------------------------------------------------- /apps/core-create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/.gitignore -------------------------------------------------------------------------------- /apps/core-create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/README.md -------------------------------------------------------------------------------- /apps/core-create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/package.json -------------------------------------------------------------------------------- /apps/core-create-react-app/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core-create-react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/src/App.tsx -------------------------------------------------------------------------------- /apps/core-create-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/src/index.css -------------------------------------------------------------------------------- /apps/core-create-react-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/src/index.tsx -------------------------------------------------------------------------------- /apps/core-create-react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/src/logo.svg -------------------------------------------------------------------------------- /apps/core-create-react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/core-create-react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/tsconfig.json -------------------------------------------------------------------------------- /apps/core-create-react-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-create-react-app/yarn.lock -------------------------------------------------------------------------------- /apps/core-parcel-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/.gitignore -------------------------------------------------------------------------------- /apps/core-parcel-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/README.md -------------------------------------------------------------------------------- /apps/core-parcel-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/package.json -------------------------------------------------------------------------------- /apps/core-parcel-js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/src/index.css -------------------------------------------------------------------------------- /apps/core-parcel-js/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/src/index.html -------------------------------------------------------------------------------- /apps/core-parcel-js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/src/index.js -------------------------------------------------------------------------------- /apps/core-parcel-js/src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/src/init.js -------------------------------------------------------------------------------- /apps/core-parcel-js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-parcel-js/yarn.lock -------------------------------------------------------------------------------- /apps/core-rollup-js/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /apps/core-rollup-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/README.md -------------------------------------------------------------------------------- /apps/core-rollup-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/package.json -------------------------------------------------------------------------------- /apps/core-rollup-js/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/postcss.config.js -------------------------------------------------------------------------------- /apps/core-rollup-js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/rollup.config.js -------------------------------------------------------------------------------- /apps/core-rollup-js/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/src/favicon.ico -------------------------------------------------------------------------------- /apps/core-rollup-js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/src/index.css -------------------------------------------------------------------------------- /apps/core-rollup-js/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/src/index.html -------------------------------------------------------------------------------- /apps/core-rollup-js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/src/index.js -------------------------------------------------------------------------------- /apps/core-rollup-js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-rollup-js/yarn.lock -------------------------------------------------------------------------------- /apps/core-simple-devapp/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /apps/core-simple-devapp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/LICENSE -------------------------------------------------------------------------------- /apps/core-simple-devapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/README.md -------------------------------------------------------------------------------- /apps/core-simple-devapp/demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/demo/favicon.ico -------------------------------------------------------------------------------- /apps/core-simple-devapp/demo/index.css: -------------------------------------------------------------------------------- 1 | body:not([cds-version]) { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /apps/core-simple-devapp/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/demo/index.html -------------------------------------------------------------------------------- /apps/core-simple-devapp/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/demo/index.js -------------------------------------------------------------------------------- /apps/core-simple-devapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/package.json -------------------------------------------------------------------------------- /apps/core-simple-devapp/src/index.ts: -------------------------------------------------------------------------------- 1 | // export utilities at top level entrypoint 2 | -------------------------------------------------------------------------------- /apps/core-simple-devapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-simple-devapp/tsconfig.json -------------------------------------------------------------------------------- /apps/core-snowpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/.gitignore -------------------------------------------------------------------------------- /apps/core-snowpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/README.md -------------------------------------------------------------------------------- /apps/core-snowpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/package.json -------------------------------------------------------------------------------- /apps/core-snowpack/public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/public/index.css -------------------------------------------------------------------------------- /apps/core-snowpack/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/public/index.html -------------------------------------------------------------------------------- /apps/core-snowpack/snowpack.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/snowpack.config.json -------------------------------------------------------------------------------- /apps/core-snowpack/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/src/index.js -------------------------------------------------------------------------------- /apps/core-snowpack/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-snowpack/yarn.lock -------------------------------------------------------------------------------- /apps/core-vue-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/.gitignore -------------------------------------------------------------------------------- /apps/core-vue-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/README.md -------------------------------------------------------------------------------- /apps/core-vue-cli/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/babel.config.js -------------------------------------------------------------------------------- /apps/core-vue-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/package.json -------------------------------------------------------------------------------- /apps/core-vue-cli/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/public/favicon.ico -------------------------------------------------------------------------------- /apps/core-vue-cli/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/public/index.html -------------------------------------------------------------------------------- /apps/core-vue-cli/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/src/App.vue -------------------------------------------------------------------------------- /apps/core-vue-cli/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/src/assets/logo.png -------------------------------------------------------------------------------- /apps/core-vue-cli/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/src/main.js -------------------------------------------------------------------------------- /apps/core-vue-cli/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/core-vue-cli/yarn.lock -------------------------------------------------------------------------------- /apps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/package.json -------------------------------------------------------------------------------- /apps/shim-clr-ui/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/.browserslistrc -------------------------------------------------------------------------------- /apps/shim-clr-ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/.editorconfig -------------------------------------------------------------------------------- /apps/shim-clr-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/.gitignore -------------------------------------------------------------------------------- /apps/shim-clr-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/README.md -------------------------------------------------------------------------------- /apps/shim-clr-ui/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/angular.json -------------------------------------------------------------------------------- /apps/shim-clr-ui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/karma.conf.js -------------------------------------------------------------------------------- /apps/shim-clr-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/package.json -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/favicon.ico -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/index.html -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/main.ts -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/polyfills.ts -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/styles.scss -------------------------------------------------------------------------------- /apps/shim-clr-ui/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/src/test.ts -------------------------------------------------------------------------------- /apps/shim-clr-ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/tsconfig.app.json -------------------------------------------------------------------------------- /apps/shim-clr-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/tsconfig.json -------------------------------------------------------------------------------- /apps/shim-clr-ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/shim-clr-ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/shim-clr-ui/yarn.lock -------------------------------------------------------------------------------- /apps/website/.gitignore: -------------------------------------------------------------------------------- 1 | api/ 2 | dist/ 3 | node_modules/ 4 | .vuepress/code/images 5 | -------------------------------------------------------------------------------- /apps/website/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.markdownlint.json -------------------------------------------------------------------------------- /apps/website/.vuepress/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/blocks.js -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/alert/app-level-main-ng.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/signpost/basic-css.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/signpost/custom-css.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/spinner/large-css.html: -------------------------------------------------------------------------------- 1 | 2 | Loading... 3 | 4 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/spinner/page-css.html: -------------------------------------------------------------------------------- 1 | 2 | Loading... 3 | 4 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/tree-view/empty-css.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/vertical-nav/jigglypuff-css.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/website/.vuepress/code/demos/wizard/basic-css.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/website/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/config.js -------------------------------------------------------------------------------- /apps/website/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /apps/website/.vuepress/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/sidebar.js -------------------------------------------------------------------------------- /apps/website/.vuepress/theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/theme/LICENSE -------------------------------------------------------------------------------- /apps/website/.vuepress/theme/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/theme/core.js -------------------------------------------------------------------------------- /apps/website/.vuepress/theme/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/theme/enhanceApp.js -------------------------------------------------------------------------------- /apps/website/.vuepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/theme/index.js -------------------------------------------------------------------------------- /apps/website/.vuepress/theme/noopModule.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /apps/website/.vuepress/theme/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/.vuepress/theme/util/index.js -------------------------------------------------------------------------------- /apps/website/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | home: true 3 | permalink: / 4 | --- 5 | 6 | # Clarity Design System 7 | -------------------------------------------------------------------------------- /apps/website/angular-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/angular-components/README.md -------------------------------------------------------------------------------- /apps/website/build/parse/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/build/parse/utils.ts -------------------------------------------------------------------------------- /apps/website/build/parse/website-demos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/build/parse/website-demos.ts -------------------------------------------------------------------------------- /apps/website/build/tsconfig.parse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/build/tsconfig.parse.json -------------------------------------------------------------------------------- /apps/website/core-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/README.md -------------------------------------------------------------------------------- /apps/website/core-components/alert/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/alert/api.md -------------------------------------------------------------------------------- /apps/website/core-components/alert/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/alert/code.md -------------------------------------------------------------------------------- /apps/website/core-components/badge/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/badge/api.md -------------------------------------------------------------------------------- /apps/website/core-components/badge/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/badge/code.md -------------------------------------------------------------------------------- /apps/website/core-components/button/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/button/api.md -------------------------------------------------------------------------------- /apps/website/core-components/card/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/card/api.md -------------------------------------------------------------------------------- /apps/website/core-components/card/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/card/code.md -------------------------------------------------------------------------------- /apps/website/core-components/file/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/file/api.md -------------------------------------------------------------------------------- /apps/website/core-components/file/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/file/code.md -------------------------------------------------------------------------------- /apps/website/core-components/input/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/input/api.md -------------------------------------------------------------------------------- /apps/website/core-components/input/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/input/code.md -------------------------------------------------------------------------------- /apps/website/core-components/list/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: API 3 | toc: false 4 | --- 5 | 6 | N/A 7 | -------------------------------------------------------------------------------- /apps/website/core-components/list/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/list/code.md -------------------------------------------------------------------------------- /apps/website/core-components/modal/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/modal/api.md -------------------------------------------------------------------------------- /apps/website/core-components/modal/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/modal/code.md -------------------------------------------------------------------------------- /apps/website/core-components/radio/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/radio/api.md -------------------------------------------------------------------------------- /apps/website/core-components/radio/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/radio/code.md -------------------------------------------------------------------------------- /apps/website/core-components/range/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/range/api.md -------------------------------------------------------------------------------- /apps/website/core-components/range/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/range/code.md -------------------------------------------------------------------------------- /apps/website/core-components/search/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/search/api.md -------------------------------------------------------------------------------- /apps/website/core-components/select/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/select/api.md -------------------------------------------------------------------------------- /apps/website/core-components/tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/tag/README.md -------------------------------------------------------------------------------- /apps/website/core-components/tag/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/tag/api.md -------------------------------------------------------------------------------- /apps/website/core-components/tag/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/tag/code.md -------------------------------------------------------------------------------- /apps/website/core-components/time/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/time/api.md -------------------------------------------------------------------------------- /apps/website/core-components/time/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/time/code.md -------------------------------------------------------------------------------- /apps/website/core-components/toggle/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/core-components/toggle/api.md -------------------------------------------------------------------------------- /apps/website/data/angular-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/data/angular-api.json -------------------------------------------------------------------------------- /apps/website/data/core-component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/data/core-component.html -------------------------------------------------------------------------------- /apps/website/data/i18n-strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/data/i18n-strings.json -------------------------------------------------------------------------------- /apps/website/data/icon-inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/data/icon-inventory.js -------------------------------------------------------------------------------- /apps/website/data/palette-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/data/palette-colors.json -------------------------------------------------------------------------------- /apps/website/foundation/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Foundation 3 | --- 4 | 5 | overview page 6 | -------------------------------------------------------------------------------- /apps/website/foundation/app-layout/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/app-layout/api.md -------------------------------------------------------------------------------- /apps/website/foundation/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/color/README.md -------------------------------------------------------------------------------- /apps/website/foundation/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/icons/README.md -------------------------------------------------------------------------------- /apps/website/foundation/icons/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/icons/api.md -------------------------------------------------------------------------------- /apps/website/foundation/icons/code.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Code 3 | toc: false 4 | --- 5 | 6 | 7 | -------------------------------------------------------------------------------- /apps/website/foundation/icons/shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/icons/shapes.md -------------------------------------------------------------------------------- /apps/website/foundation/navigation/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/navigation/api.md -------------------------------------------------------------------------------- /apps/website/foundation/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/themes/README.md -------------------------------------------------------------------------------- /apps/website/foundation/themes/code.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Code 3 | toc: false 4 | --- 5 | 6 | 7 | -------------------------------------------------------------------------------- /apps/website/foundation/themes/themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/themes/themes.md -------------------------------------------------------------------------------- /apps/website/foundation/themes/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/foundation/themes/usage.md -------------------------------------------------------------------------------- /apps/website/get-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/get-started/README.md -------------------------------------------------------------------------------- /apps/website/get-started/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/get-started/design.md -------------------------------------------------------------------------------- /apps/website/get-started/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/get-started/roadmap.md -------------------------------------------------------------------------------- /apps/website/get-started/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/get-started/support.md -------------------------------------------------------------------------------- /apps/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/package.json -------------------------------------------------------------------------------- /apps/website/releases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/releases/README.md -------------------------------------------------------------------------------- /apps/website/releases/v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/releases/v4.md -------------------------------------------------------------------------------- /apps/website/releases/v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/releases/v5.md -------------------------------------------------------------------------------- /apps/website/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/apps/website/releases/v6.md -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/browserslist -------------------------------------------------------------------------------- /bs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/bs-config.js -------------------------------------------------------------------------------- /changelogs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/changelogs/schema.json -------------------------------------------------------------------------------- /changelogs/v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/changelogs/v4.json -------------------------------------------------------------------------------- /changelogs/v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/changelogs/v5.json -------------------------------------------------------------------------------- /changelogs/v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/changelogs/v6.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CODING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CODING_GUIDELINES.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CONTRIBUTING_DESIGN.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING_DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CONTRIBUTING_DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING_DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CONTRIBUTING_DOCUMENTATION.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/CONTRIBUTING_ISSUES.md -------------------------------------------------------------------------------- /docs/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/GOVERNANCE.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/PUBLISHING.md -------------------------------------------------------------------------------- /docs/WEBSITE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/docs/WEBSITE.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/logo.png -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/package.json -------------------------------------------------------------------------------- /packages/angular/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/.eslintrc.js -------------------------------------------------------------------------------- /packages/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/.gitignore -------------------------------------------------------------------------------- /packages/angular/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/.stylelintrc -------------------------------------------------------------------------------- /packages/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/angular.json -------------------------------------------------------------------------------- /packages/angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/karma.conf.js -------------------------------------------------------------------------------- /packages/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/package.json -------------------------------------------------------------------------------- /packages/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /packages/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /packages/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/favicon.ico -------------------------------------------------------------------------------- /packages/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/index.html -------------------------------------------------------------------------------- /packages/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/main.ts -------------------------------------------------------------------------------- /packages/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/polyfills.ts -------------------------------------------------------------------------------- /packages/angular/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/src/styles.scss -------------------------------------------------------------------------------- /packages/angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/tsconfig.app.json -------------------------------------------------------------------------------- /packages/angular/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/angular/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.browserslistrc: -------------------------------------------------------------------------------- 1 | # Browsers that we support 2 | chrome 96 -------------------------------------------------------------------------------- /packages/core/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/.eslintrc.js -------------------------------------------------------------------------------- /packages/core/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/.storybook/main.js -------------------------------------------------------------------------------- /packages/core/.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/.storybook/manager-head.html -------------------------------------------------------------------------------- /packages/core/.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/.storybook/manager.js -------------------------------------------------------------------------------- /packages/core/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/.storybook/preview.js -------------------------------------------------------------------------------- /packages/core/.storybook/public/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/.storybook/public/common.css -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/build/build.tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/build.tokens.ts -------------------------------------------------------------------------------- /packages/core/build/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "core-build" 3 | } -------------------------------------------------------------------------------- /packages/core/build/parse/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/parse/utils.ts -------------------------------------------------------------------------------- /packages/core/build/parse/website-demos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/parse/website-demos.ts -------------------------------------------------------------------------------- /packages/core/build/token-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/token-utils.ts -------------------------------------------------------------------------------- /packages/core/build/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/tokens.ts -------------------------------------------------------------------------------- /packages/core/build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/tsconfig.json -------------------------------------------------------------------------------- /packages/core/build/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/build/utils.ts -------------------------------------------------------------------------------- /packages/core/docs/angular.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/angular.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/angularjs.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/angularjs.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/changelog.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/changelog.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/i18n.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/i18n.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/preact.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/preact.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/react.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/react.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/utilities.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/utilities.stories.ts -------------------------------------------------------------------------------- /packages/core/docs/vue.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/vue.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/welcome.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/welcome.stories.mdx -------------------------------------------------------------------------------- /packages/core/docs/welcome.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/docs/welcome.stories.ts -------------------------------------------------------------------------------- /packages/core/npm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/npm.json -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/rollup.config.js -------------------------------------------------------------------------------- /packages/core/rollup.storybook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/rollup.storybook.js -------------------------------------------------------------------------------- /packages/core/rollup.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/rollup.utils.js -------------------------------------------------------------------------------- /packages/core/sandbox/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/sandbox/index.css -------------------------------------------------------------------------------- /packages/core/sandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/sandbox/index.html -------------------------------------------------------------------------------- /packages/core/sandbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/sandbox/index.js -------------------------------------------------------------------------------- /packages/core/src/accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/accordion/index.ts -------------------------------------------------------------------------------- /packages/core/src/accordion/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/accordion/register.ts -------------------------------------------------------------------------------- /packages/core/src/alert/alert.element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/alert/alert.element.scss -------------------------------------------------------------------------------- /packages/core/src/alert/alert.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/alert/alert.element.ts -------------------------------------------------------------------------------- /packages/core/src/alert/alert.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/alert/alert.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/alert/alert.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/alert/alert.stories.ts -------------------------------------------------------------------------------- /packages/core/src/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/alert/index.ts -------------------------------------------------------------------------------- /packages/core/src/alert/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/alert/register.ts -------------------------------------------------------------------------------- /packages/core/src/badge/badge.element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/badge/badge.element.scss -------------------------------------------------------------------------------- /packages/core/src/badge/badge.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/badge/badge.element.ts -------------------------------------------------------------------------------- /packages/core/src/badge/badge.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/badge/badge.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/badge/badge.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/badge/badge.stories.ts -------------------------------------------------------------------------------- /packages/core/src/badge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/badge/index.ts -------------------------------------------------------------------------------- /packages/core/src/badge/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/badge/register.ts -------------------------------------------------------------------------------- /packages/core/src/breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/breadcrumb/index.ts -------------------------------------------------------------------------------- /packages/core/src/breadcrumb/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/breadcrumb/register.ts -------------------------------------------------------------------------------- /packages/core/src/button-action/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-action/index.ts -------------------------------------------------------------------------------- /packages/core/src/button-expand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-expand/index.ts -------------------------------------------------------------------------------- /packages/core/src/button-handle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-handle/index.ts -------------------------------------------------------------------------------- /packages/core/src/button-inline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-inline/index.ts -------------------------------------------------------------------------------- /packages/core/src/button-sort/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-sort/index.ts -------------------------------------------------------------------------------- /packages/core/src/button-sort/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-sort/register.ts -------------------------------------------------------------------------------- /packages/core/src/button-sort/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button-sort/utils.ts -------------------------------------------------------------------------------- /packages/core/src/button/button.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button/button.element.ts -------------------------------------------------------------------------------- /packages/core/src/button/button.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button/button.stories.ts -------------------------------------------------------------------------------- /packages/core/src/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button/index.ts -------------------------------------------------------------------------------- /packages/core/src/button/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/button/register.ts -------------------------------------------------------------------------------- /packages/core/src/card/card.element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/card/card.element.scss -------------------------------------------------------------------------------- /packages/core/src/card/card.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/card/card.element.ts -------------------------------------------------------------------------------- /packages/core/src/card/card.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/card/card.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/card/card.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/card/card.stories.ts -------------------------------------------------------------------------------- /packages/core/src/card/index.ts: -------------------------------------------------------------------------------- 1 | export * from './card.element.js'; 2 | -------------------------------------------------------------------------------- /packages/core/src/card/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/card/register.ts -------------------------------------------------------------------------------- /packages/core/src/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/checkbox/index.ts -------------------------------------------------------------------------------- /packages/core/src/checkbox/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/checkbox/register.ts -------------------------------------------------------------------------------- /packages/core/src/datalist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/datalist/index.ts -------------------------------------------------------------------------------- /packages/core/src/datalist/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/datalist/register.ts -------------------------------------------------------------------------------- /packages/core/src/date/date.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/date/date.element.ts -------------------------------------------------------------------------------- /packages/core/src/date/date.global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/date/date.global.scss -------------------------------------------------------------------------------- /packages/core/src/date/date.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/date/date.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/date/date.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/date/date.stories.ts -------------------------------------------------------------------------------- /packages/core/src/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/date/index.ts -------------------------------------------------------------------------------- /packages/core/src/date/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/date/register.ts -------------------------------------------------------------------------------- /packages/core/src/divider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/divider/index.ts -------------------------------------------------------------------------------- /packages/core/src/divider/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/divider/register.ts -------------------------------------------------------------------------------- /packages/core/src/dropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/dropdown/index.ts -------------------------------------------------------------------------------- /packages/core/src/dropdown/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/dropdown/register.ts -------------------------------------------------------------------------------- /packages/core/src/file/file.element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/file/file.element.scss -------------------------------------------------------------------------------- /packages/core/src/file/file.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/file/file.element.ts -------------------------------------------------------------------------------- /packages/core/src/file/file.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/file/file.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/file/file.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/file/file.stories.ts -------------------------------------------------------------------------------- /packages/core/src/file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/file/index.ts -------------------------------------------------------------------------------- /packages/core/src/file/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/file/register.ts -------------------------------------------------------------------------------- /packages/core/src/forms/control.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/control.stories.ts -------------------------------------------------------------------------------- /packages/core/src/forms/forms.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/forms.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/forms/forms.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/forms.stories.ts -------------------------------------------------------------------------------- /packages/core/src/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/index.ts -------------------------------------------------------------------------------- /packages/core/src/forms/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/register.ts -------------------------------------------------------------------------------- /packages/core/src/forms/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/utils/utils.ts -------------------------------------------------------------------------------- /packages/core/src/forms/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/forms/utils/validate.ts -------------------------------------------------------------------------------- /packages/core/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/global.d.ts -------------------------------------------------------------------------------- /packages/core/src/icon/collections/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/collections/core.ts -------------------------------------------------------------------------------- /packages/core/src/icon/collections/mini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/collections/mini.ts -------------------------------------------------------------------------------- /packages/core/src/icon/collections/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/collections/test.ts -------------------------------------------------------------------------------- /packages/core/src/icon/icon.element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.element.scss -------------------------------------------------------------------------------- /packages/core/src/icon/icon.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.element.ts -------------------------------------------------------------------------------- /packages/core/src/icon/icon.performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.performance.ts -------------------------------------------------------------------------------- /packages/core/src/icon/icon.renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.renderer.ts -------------------------------------------------------------------------------- /packages/core/src/icon/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.service.ts -------------------------------------------------------------------------------- /packages/core/src/icon/icon.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/icon/icon.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/icon.stories.ts -------------------------------------------------------------------------------- /packages/core/src/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/index.ts -------------------------------------------------------------------------------- /packages/core/src/icon/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/register.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/add-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/add-text.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/airplane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/airplane.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/alarm-off.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/alarm-off.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/align-top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/align-top.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/angle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/angle.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/animation.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/archive.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/arrow.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/asterisk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/asterisk.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/atom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/atom.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/backup.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/balance.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/ban.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bank.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bar-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bar-chart.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bar-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bar-code.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bars.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/battery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/battery.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bell.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/beta.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bicycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bicycle.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bitcoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bitcoin.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/block.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bluetooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bluetooth.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/boat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/boat.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bold.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bolt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bolt.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/book.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bookmark.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/box-plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/box-plot.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/briefcase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/briefcase.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bug.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/building.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/building.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bullseye.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bullseye.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/bundle.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/calendar.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/camera.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/campervan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/campervan.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/capacitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/capacitor.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/car.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/caravan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/caravan.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/cd-dvd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/cd-dvd.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/check.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/ci-cd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/ci-cd.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/circle.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/clipboard.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/clock.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/clone.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/cloud.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/cluster.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/code.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/cog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/cog.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/coin-bag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/coin-bag.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/compass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/compass.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/computer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/computer.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/connect.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/container.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/copy.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/cpu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/cpu.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/crown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/crown.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/dashboard.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/deploy.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/details.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/devices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/devices.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/display.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/dollar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/dollar.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/download.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/e-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/e-check.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/employee.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/envelope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/envelope.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/eraser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/eraser.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/euro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/euro.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/event.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/export.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/eye-hide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/eye-hide.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/eye.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/eye.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/factory.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/ferry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/ferry.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/file-zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/file-zip.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/file.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/filter-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/filter-2.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/filter.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/firewall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/firewall.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/first-aid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/first-aid.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/fish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/fish.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/flag.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/flame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/flame.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/flask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/flask.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/floppy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/floppy.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/folder.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/font-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/font-size.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/forking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/forking.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/form.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/fuel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/fuel.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/gavel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/gavel.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/grid-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/grid-view.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/half-star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/half-star.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/hard-disk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/hard-disk.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/hashtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/hashtag.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/heart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/heart.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/heat-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/heat-map.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/helix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/helix.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/help-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/help-info.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/help.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/history.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/home.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/host.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/hourglass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/hourglass.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/id-badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/id-badge.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/image.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/import.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/inbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/inbox.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/indent.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/inductor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/inductor.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/install.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/italic.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/key.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/keyboard.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/landscape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/landscape.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/language.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/launchpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/launchpad.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/layers.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/library.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/lightbulb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/lightbulb.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/link.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/list.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/lock.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/login.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/logout.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/map.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/memory.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/minus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/minus.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/mobile.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/moon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/moon.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/mouse.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/namespace.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/new.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/no-access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/no-access.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/no-wifi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/no-wifi.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/node.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/nodes.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/note.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/nvme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/nvme.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/objects.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/outdent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/outdent.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/paperclip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/paperclip.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/paste.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pause.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pdf-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pdf-file.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pencil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pencil.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/peso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/peso.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/picture.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pie-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pie-chart.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pin.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pinboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pinboard.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/play.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/plugin.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/plus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/plus.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pod.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pop-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pop-out.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/portrait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/portrait.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/pound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/pound.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/power.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/power.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/printer.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/qr-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/qr-code.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/radar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/radar.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/recycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/recycle.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/redo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/redo.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/refresh.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/repeat.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/resistor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/resistor.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/resize.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/rewind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/rewind.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/router.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/ruble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/ruble.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/rupee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/rupee.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/sad-face.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/sad-face.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/scissors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/scissors.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/scroll.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/search.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/share.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/shield-x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/shield-x.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/shield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/shield.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/shrink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/shrink.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/shuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/shuffle.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/slider.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/snowflake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/snowflake.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/sort-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/sort-by.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/squid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/squid.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/ssd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/ssd.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/star.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/stop.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/storage.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/store.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/subscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/subscript.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/sun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/sun.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/switch.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/sync.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/table.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tablet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tablet.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tag.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tags.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/target.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tasks.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/terminal.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/test.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/text.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/thumbs-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/thumbs-up.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/timeline.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/times.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/times.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tools.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/trailer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/trailer.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/trash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/trash.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tree-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tree-view.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/tree.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/truck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/truck.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/undo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/undo.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/unknown.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/unlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/unlink.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/unlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/unlock.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/update.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/upload.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/usb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/usb.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/user.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/users.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/vm-bug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/vm-bug.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/vm.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/vmw-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/vmw-app.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/volume.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/wallet.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/wand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/wand.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/wifi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/wifi.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/won.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/won.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/world.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/wrench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/wrench.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/yen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/yen.ts -------------------------------------------------------------------------------- /packages/core/src/icon/shapes/zoom-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/icon/shapes/zoom-in.ts -------------------------------------------------------------------------------- /packages/core/src/index.performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/index.performance.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/input/index.ts -------------------------------------------------------------------------------- /packages/core/src/input/input.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/input/input.element.ts -------------------------------------------------------------------------------- /packages/core/src/input/input.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/input/input.stories.ts -------------------------------------------------------------------------------- /packages/core/src/input/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/input/register.ts -------------------------------------------------------------------------------- /packages/core/src/internal-components/panel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './panel.element.js'; 2 | -------------------------------------------------------------------------------- /packages/core/src/internal/i18n/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/i18n/utils.ts -------------------------------------------------------------------------------- /packages/core/src/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/index.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/__.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/a11y.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/a11y.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/css.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/dom.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/enum.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/lit.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/math.ts -------------------------------------------------------------------------------- /packages/core/src/internal/utils/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/internal/utils/size.ts -------------------------------------------------------------------------------- /packages/core/src/list/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/list/list.scss -------------------------------------------------------------------------------- /packages/core/src/list/list.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/list/list.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/list/list.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/list/list.stories.ts -------------------------------------------------------------------------------- /packages/core/src/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/modal/index.ts -------------------------------------------------------------------------------- /packages/core/src/modal/modal.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/modal/modal.element.ts -------------------------------------------------------------------------------- /packages/core/src/modal/modal.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/modal/modal.stories.ts -------------------------------------------------------------------------------- /packages/core/src/modal/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/modal/register.ts -------------------------------------------------------------------------------- /packages/core/src/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/navigation/index.ts -------------------------------------------------------------------------------- /packages/core/src/navigation/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/navigation/register.ts -------------------------------------------------------------------------------- /packages/core/src/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/pagination/index.ts -------------------------------------------------------------------------------- /packages/core/src/pagination/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/pagination/register.ts -------------------------------------------------------------------------------- /packages/core/src/pagination/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/pagination/utils.ts -------------------------------------------------------------------------------- /packages/core/src/password/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/password/index.ts -------------------------------------------------------------------------------- /packages/core/src/password/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/password/register.ts -------------------------------------------------------------------------------- /packages/core/src/polyfills/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/polyfills/index.ts -------------------------------------------------------------------------------- /packages/core/src/radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/radio/index.ts -------------------------------------------------------------------------------- /packages/core/src/radio/radio.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/radio/radio.element.ts -------------------------------------------------------------------------------- /packages/core/src/radio/radio.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/radio/radio.stories.ts -------------------------------------------------------------------------------- /packages/core/src/radio/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/radio/register.ts -------------------------------------------------------------------------------- /packages/core/src/range/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/range/index.ts -------------------------------------------------------------------------------- /packages/core/src/range/range.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/range/range.element.ts -------------------------------------------------------------------------------- /packages/core/src/range/range.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/range/range.stories.ts -------------------------------------------------------------------------------- /packages/core/src/range/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/range/register.ts -------------------------------------------------------------------------------- /packages/core/src/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/search/index.ts -------------------------------------------------------------------------------- /packages/core/src/search/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/search/register.ts -------------------------------------------------------------------------------- /packages/core/src/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/select/index.ts -------------------------------------------------------------------------------- /packages/core/src/select/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/select/register.ts -------------------------------------------------------------------------------- /packages/core/src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/styles/global.scss -------------------------------------------------------------------------------- /packages/core/src/styles/theme.dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/styles/theme.dark.scss -------------------------------------------------------------------------------- /packages/core/src/table/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/table/table.scss -------------------------------------------------------------------------------- /packages/core/src/table/table.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/table/table.stories.ts -------------------------------------------------------------------------------- /packages/core/src/tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tag/index.ts -------------------------------------------------------------------------------- /packages/core/src/tag/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tag/register.ts -------------------------------------------------------------------------------- /packages/core/src/tag/tag.element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tag/tag.element.scss -------------------------------------------------------------------------------- /packages/core/src/tag/tag.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tag/tag.element.ts -------------------------------------------------------------------------------- /packages/core/src/tag/tag.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tag/tag.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/tag/tag.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tag/tag.stories.ts -------------------------------------------------------------------------------- /packages/core/src/test-dropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/test-dropdown/index.ts -------------------------------------------------------------------------------- /packages/core/src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/test/index.ts -------------------------------------------------------------------------------- /packages/core/src/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/test/utils.ts -------------------------------------------------------------------------------- /packages/core/src/textarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/textarea/index.ts -------------------------------------------------------------------------------- /packages/core/src/textarea/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/textarea/register.ts -------------------------------------------------------------------------------- /packages/core/src/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/time/index.ts -------------------------------------------------------------------------------- /packages/core/src/time/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/time/register.ts -------------------------------------------------------------------------------- /packages/core/src/time/time.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/time/time.element.ts -------------------------------------------------------------------------------- /packages/core/src/time/time.global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/time/time.global.scss -------------------------------------------------------------------------------- /packages/core/src/time/time.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/time/time.stories.mdx -------------------------------------------------------------------------------- /packages/core/src/time/time.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/time/time.stories.ts -------------------------------------------------------------------------------- /packages/core/src/toggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/toggle/index.ts -------------------------------------------------------------------------------- /packages/core/src/toggle/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/toggle/register.ts -------------------------------------------------------------------------------- /packages/core/src/tree-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tree-view/index.ts -------------------------------------------------------------------------------- /packages/core/src/tree-view/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/src/tree-view/register.ts -------------------------------------------------------------------------------- /packages/core/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/stylelint.config.js -------------------------------------------------------------------------------- /packages/core/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/core/tsconfig.storybook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/tsconfig.storybook.json -------------------------------------------------------------------------------- /packages/core/web-dev-server.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/web-dev-server.config.mjs -------------------------------------------------------------------------------- /packages/core/web-dev-server.sandbox.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/web-dev-server.sandbox.mjs -------------------------------------------------------------------------------- /packages/core/web-test-runner.a11y.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/web-test-runner.a11y.mjs -------------------------------------------------------------------------------- /packages/core/web-test-runner.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/core/web-test-runner.config.mjs -------------------------------------------------------------------------------- /packages/eslint-plugin-clarity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/eslint-plugin-clarity/index.js -------------------------------------------------------------------------------- /packages/react/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/.eslintrc.js -------------------------------------------------------------------------------- /packages/react/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/App.tsx -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/babel.config.js -------------------------------------------------------------------------------- /packages/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/index.html -------------------------------------------------------------------------------- /packages/react/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/index.tsx -------------------------------------------------------------------------------- /packages/react/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/jest.config.js -------------------------------------------------------------------------------- /packages/react/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/jest.setup.ts -------------------------------------------------------------------------------- /packages/react/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/package.js -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/src/accordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/accordion/index.tsx -------------------------------------------------------------------------------- /packages/react/src/alert/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/alert/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/alert/index.tsx -------------------------------------------------------------------------------- /packages/react/src/alert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/alert/package.json -------------------------------------------------------------------------------- /packages/react/src/badge/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/badge/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/badge/index.tsx -------------------------------------------------------------------------------- /packages/react/src/badge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/badge/package.json -------------------------------------------------------------------------------- /packages/react/src/breadcrumb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/breadcrumb/index.tsx -------------------------------------------------------------------------------- /packages/react/src/button-sort/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/button-sort/index.tsx -------------------------------------------------------------------------------- /packages/react/src/button/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/button/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/button/index.tsx -------------------------------------------------------------------------------- /packages/react/src/button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/button/package.json -------------------------------------------------------------------------------- /packages/react/src/card/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/card/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/card/index.tsx -------------------------------------------------------------------------------- /packages/react/src/card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/card/package.json -------------------------------------------------------------------------------- /packages/react/src/checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/checkbox/index.tsx -------------------------------------------------------------------------------- /packages/react/src/checkbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/checkbox/package.json -------------------------------------------------------------------------------- /packages/react/src/datalist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/datalist/index.tsx -------------------------------------------------------------------------------- /packages/react/src/datalist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/datalist/package.json -------------------------------------------------------------------------------- /packages/react/src/date/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/date/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/date/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/date/index.tsx -------------------------------------------------------------------------------- /packages/react/src/date/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/date/package.json -------------------------------------------------------------------------------- /packages/react/src/divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/divider/index.tsx -------------------------------------------------------------------------------- /packages/react/src/divider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/divider/package.json -------------------------------------------------------------------------------- /packages/react/src/dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/dropdown/index.tsx -------------------------------------------------------------------------------- /packages/react/src/dropdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/dropdown/package.json -------------------------------------------------------------------------------- /packages/react/src/file/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/file/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/file/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/file/index.tsx -------------------------------------------------------------------------------- /packages/react/src/file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/file/package.json -------------------------------------------------------------------------------- /packages/react/src/forms/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/forms/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/forms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/forms/index.tsx -------------------------------------------------------------------------------- /packages/react/src/forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/forms/package.json -------------------------------------------------------------------------------- /packages/react/src/icon/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/icon/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/icon/index.tsx -------------------------------------------------------------------------------- /packages/react/src/icon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/icon/package.json -------------------------------------------------------------------------------- /packages/react/src/input/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/input/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/input/index.tsx -------------------------------------------------------------------------------- /packages/react/src/input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/input/package.json -------------------------------------------------------------------------------- /packages/react/src/internal-components/overlay/entrypoint.tsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/modal/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/modal/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/modal/index.tsx -------------------------------------------------------------------------------- /packages/react/src/modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/modal/package.json -------------------------------------------------------------------------------- /packages/react/src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/navigation/index.tsx -------------------------------------------------------------------------------- /packages/react/src/pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/pagination/index.tsx -------------------------------------------------------------------------------- /packages/react/src/password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/password/index.tsx -------------------------------------------------------------------------------- /packages/react/src/password/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/password/package.json -------------------------------------------------------------------------------- /packages/react/src/radio/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/radio/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/radio/index.tsx -------------------------------------------------------------------------------- /packages/react/src/radio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/radio/package.json -------------------------------------------------------------------------------- /packages/react/src/range/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/range/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/range/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/range/index.tsx -------------------------------------------------------------------------------- /packages/react/src/range/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/range/package.json -------------------------------------------------------------------------------- /packages/react/src/search/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/search/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/search/index.tsx -------------------------------------------------------------------------------- /packages/react/src/search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/search/package.json -------------------------------------------------------------------------------- /packages/react/src/select/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/select/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/select/index.tsx -------------------------------------------------------------------------------- /packages/react/src/select/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/select/package.json -------------------------------------------------------------------------------- /packages/react/src/tag/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/tag/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/tag/index.tsx -------------------------------------------------------------------------------- /packages/react/src/tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/tag/package.json -------------------------------------------------------------------------------- /packages/react/src/textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/textarea/index.tsx -------------------------------------------------------------------------------- /packages/react/src/textarea/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/textarea/package.json -------------------------------------------------------------------------------- /packages/react/src/time/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/time/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/time/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/time/index.tsx -------------------------------------------------------------------------------- /packages/react/src/time/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/time/package.json -------------------------------------------------------------------------------- /packages/react/src/toggle/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/toggle/index.test.tsx -------------------------------------------------------------------------------- /packages/react/src/toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/toggle/index.tsx -------------------------------------------------------------------------------- /packages/react/src/toggle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/toggle/package.json -------------------------------------------------------------------------------- /packages/react/src/tree-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/tree-view/index.tsx -------------------------------------------------------------------------------- /packages/react/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/src/utils/index.ts -------------------------------------------------------------------------------- /packages/react/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/tsconfig.build.json -------------------------------------------------------------------------------- /packages/react/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/react/tsconfig.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/tsconfig.project.json -------------------------------------------------------------------------------- /packages/react/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/react/tsconfig.test.json -------------------------------------------------------------------------------- /packages/schematics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/.gitignore -------------------------------------------------------------------------------- /packages/schematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/README.md -------------------------------------------------------------------------------- /packages/schematics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/package.json -------------------------------------------------------------------------------- /packages/schematics/src/add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/src/add/index.ts -------------------------------------------------------------------------------- /packages/schematics/src/add/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/src/add/schema.d.ts -------------------------------------------------------------------------------- /packages/schematics/src/add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/src/add/schema.json -------------------------------------------------------------------------------- /packages/schematics/src/cds-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/src/cds-add/index.ts -------------------------------------------------------------------------------- /packages/schematics/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/src/collection.json -------------------------------------------------------------------------------- /packages/schematics/tsconfig.cds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/tsconfig.cds.json -------------------------------------------------------------------------------- /packages/schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/tsconfig.json -------------------------------------------------------------------------------- /packages/schematics/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/packages/schematics/tsconfig.test.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/axe.js -------------------------------------------------------------------------------- /scripts/clr-icons-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/clr-icons-svg.js -------------------------------------------------------------------------------- /scripts/commitlint/adoptionScopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/adoptionScopes.js -------------------------------------------------------------------------------- /scripts/commitlint/angularScopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/angularScopes.js -------------------------------------------------------------------------------- /scripts/commitlint/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/common.js -------------------------------------------------------------------------------- /scripts/commitlint/coreScopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/coreScopes.js -------------------------------------------------------------------------------- /scripts/commitlint/customScopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/customScopes.js -------------------------------------------------------------------------------- /scripts/commitlint/customScopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/customScopes.json -------------------------------------------------------------------------------- /scripts/commitlint/packagesScopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/packagesScopes.js -------------------------------------------------------------------------------- /scripts/commitlint/websiteScopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/commitlint/websiteScopes.js -------------------------------------------------------------------------------- /scripts/copy-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/copy-version.js -------------------------------------------------------------------------------- /scripts/core-ng-module-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/core-ng-module-generator.js -------------------------------------------------------------------------------- /scripts/lock-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/lock-check.js -------------------------------------------------------------------------------- /scripts/lock-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/lock-fix.js -------------------------------------------------------------------------------- /scripts/netlify-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/netlify-build.sh -------------------------------------------------------------------------------- /scripts/netlify/download-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/netlify/download-icon.js -------------------------------------------------------------------------------- /scripts/publish-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/publish-build.sh -------------------------------------------------------------------------------- /scripts/publish-verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/publish-verify.js -------------------------------------------------------------------------------- /scripts/set-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/set-version.js -------------------------------------------------------------------------------- /scripts/update-license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/update-license.js -------------------------------------------------------------------------------- /scripts/update-local-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/update-local-packages.js -------------------------------------------------------------------------------- /scripts/version-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/version-validation.js -------------------------------------------------------------------------------- /scripts/website-add-rel-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/website-add-rel-notes.js -------------------------------------------------------------------------------- /scripts/website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/website.sh -------------------------------------------------------------------------------- /scripts/write-svg-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/scripts/write-svg-icons.js -------------------------------------------------------------------------------- /tools/audit-website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/audit-website/README.md -------------------------------------------------------------------------------- /tools/audit-website/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/audit-website/index.js -------------------------------------------------------------------------------- /tools/audit-website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/audit-website/package.json -------------------------------------------------------------------------------- /tools/link-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/link-checker/README.md -------------------------------------------------------------------------------- /tools/link-checker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/link-checker/index.js -------------------------------------------------------------------------------- /tools/link-checker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/link-checker/package.json -------------------------------------------------------------------------------- /tools/visual-tester/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/.gitignore -------------------------------------------------------------------------------- /tools/visual-tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/README.md -------------------------------------------------------------------------------- /tools/visual-tester/__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/__tests__/README.md -------------------------------------------------------------------------------- /tools/visual-tester/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/babel.config.js -------------------------------------------------------------------------------- /tools/visual-tester/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/jest.config.ts -------------------------------------------------------------------------------- /tools/visual-tester/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/jest.setup.js -------------------------------------------------------------------------------- /tools/visual-tester/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/package.json -------------------------------------------------------------------------------- /tools/visual-tester/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/src/index.ts -------------------------------------------------------------------------------- /tools/visual-tester/src/runner/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/src/runner/cli.ts -------------------------------------------------------------------------------- /tools/visual-tester/src/runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/src/runner/index.ts -------------------------------------------------------------------------------- /tools/visual-tester/src/runner/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/src/runner/runner.ts -------------------------------------------------------------------------------- /tools/visual-tester/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/tsconfig.json -------------------------------------------------------------------------------- /tools/visual-tester/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tools/visual-tester/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/clarity/HEAD/yarn.lock --------------------------------------------------------------------------------