├── .editorconfig ├── .github ├── actions │ └── node-setup │ │ └── action.yml └── workflows │ ├── ci.yml │ ├── publish-alpha.yml │ ├── publish-dev.yml │ └── publish-master.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── AGENTS.md ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── apps └── react-storybook │ ├── .gitignore │ ├── .storybook │ ├── main.ts │ ├── manager-head.html │ ├── manager.ts │ ├── preview-head.html │ ├── preview.ts │ ├── themes │ │ └── kelvin-theme.ts │ └── utils.ts │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── package.json │ ├── project.json │ ├── public │ ├── favicon.ico │ └── kelvin-icon.png │ ├── src │ ├── assets │ │ └── kelvin-hero.svg │ ├── components │ │ ├── buttons │ │ │ ├── Base │ │ │ │ ├── Base.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── icon │ │ │ │ ├── Icon.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── split │ │ │ │ ├── Notes.mdx │ │ │ │ └── Split.stories.tsx │ │ │ └── text │ │ │ │ ├── Notes.mdx │ │ │ │ └── Text.stories.tsx │ │ ├── data-display │ │ │ ├── badge │ │ │ │ ├── Badge.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── copy-to-clipboard │ │ │ │ ├── CopyToClipboard.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── description-list │ │ │ │ ├── DescriptionList.module.scss │ │ │ │ ├── DescriptionList.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── info-label │ │ │ │ ├── InfoLabel.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── state-indicator │ │ │ │ ├── Notes.mdx │ │ │ │ └── StateIndicator.stories.tsx │ │ │ ├── step-indicator │ │ │ │ ├── Notes.mdx │ │ │ │ └── StepIndicator.stories.tsx │ │ │ ├── step-progress-bar │ │ │ │ ├── Notes.mdx │ │ │ │ └── StepProgressBar.stories.tsx │ │ │ ├── summary-card │ │ │ │ ├── Notes.mdx │ │ │ │ └── SummaryCard.stories.tsx │ │ │ ├── tag-alarm │ │ │ │ ├── Notes.mdx │ │ │ │ └── TagAlarm.stories.tsx │ │ │ ├── tag-letter │ │ │ │ ├── Notes.mdx │ │ │ │ └── TagLetter.stories.tsx │ │ │ ├── tag-status │ │ │ │ ├── Notes.mdx │ │ │ │ └── TagStatus.stories.tsx │ │ │ ├── tag │ │ │ │ ├── Notes.mdx │ │ │ │ └── Tag.stories.tsx │ │ │ ├── toaster │ │ │ │ ├── Notes.mdx │ │ │ │ └── Toaster.stories.tsx │ │ │ └── tree │ │ │ │ ├── tree-dropdown │ │ │ │ ├── Notes.mdx │ │ │ │ └── TreeDropdown.stories.tsx │ │ │ │ ├── tree-item │ │ │ │ ├── Notes.mdx │ │ │ │ └── TreeItem.stories.tsx │ │ │ │ └── tree │ │ │ │ ├── Notes.mdx │ │ │ │ └── Tree.stories.tsx │ │ ├── dropdown │ │ │ ├── Dropdown.stories.tsx │ │ │ └── Notes.mdx │ │ ├── feedback │ │ │ ├── alert │ │ │ │ ├── Alert.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── loader │ │ │ │ ├── Loader.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── toggle-tip │ │ │ │ ├── Notes.mdx │ │ │ │ ├── ToggleTip.module.scss │ │ │ │ └── ToggleTip.stories.tsx │ │ │ └── tooltip │ │ │ │ ├── Notes.mdx │ │ │ │ ├── Tooltip.module.scss │ │ │ │ └── Tooltip.stories.tsx │ │ ├── form │ │ │ ├── form-help-text │ │ │ │ ├── FormHelpText.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── form-label │ │ │ │ ├── FormLabel.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ └── schema-form │ │ │ │ └── SchemaForm.stories.tsx │ │ ├── inputs │ │ │ ├── checkbox │ │ │ │ ├── Checkbox.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── code-diff-editor │ │ │ │ └── CodeDIffEditor.stories.tsx │ │ │ ├── code-editor │ │ │ │ └── CodeEditor.stories.tsx │ │ │ ├── date-time-input │ │ │ │ ├── DateTimeInput.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── dropdowns │ │ │ │ └── select │ │ │ │ │ ├── multi-select-dropdown │ │ │ │ │ ├── MultiSelectDropdown.stories.tsx │ │ │ │ │ └── Notes.mdx │ │ │ │ │ └── single-select-dropdown │ │ │ │ │ ├── Notes.mdx │ │ │ │ │ └── SingleSelectDropdown.stories.tsx │ │ │ ├── inline-editable-field │ │ │ │ ├── InlineEditableField.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── radio-list-item │ │ │ │ ├── Notes.mdx │ │ │ │ └── RadioListItem.stories.tsx │ │ │ ├── radio-list │ │ │ │ ├── Notes.mdx │ │ │ │ └── RadioList.stories.tsx │ │ │ ├── radio │ │ │ │ ├── Notes.mdx │ │ │ │ └── Radio.stories.tsx │ │ │ ├── range │ │ │ │ ├── Notes.mdx │ │ │ │ └── Range.stories.tsx │ │ │ ├── search │ │ │ │ ├── Notes.mdx │ │ │ │ └── Search.stories.tsx │ │ │ ├── switch-button │ │ │ │ ├── Notes.mdx │ │ │ │ └── SwitchButton.stories.tsx │ │ │ ├── text-area │ │ │ │ ├── Notes.mdx │ │ │ │ └── TextArea.stories.tsx │ │ │ ├── text-field │ │ │ │ ├── Notes.mdx │ │ │ │ └── TextField.stories.tsx │ │ │ ├── toggle-button-group │ │ │ │ ├── Notes.mdx │ │ │ │ └── ToggleButtonGroup.stories.tsx │ │ │ ├── toggle-button │ │ │ │ ├── Notes.mdx │ │ │ │ └── ToggleButton.stories.tsx │ │ │ └── toggle-switch │ │ │ │ ├── Notes.mdx │ │ │ │ └── ToggleSwitch.stories.tsx │ │ ├── media │ │ │ ├── icon │ │ │ │ ├── Icon.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ └── illustration │ │ │ │ ├── Illustration.stories.tsx │ │ │ │ └── Notes.mdx │ │ ├── navigation │ │ │ ├── breadcrumbs │ │ │ │ ├── breadcrumb-item │ │ │ │ │ ├── BreadcrumbItem.stories.tsx │ │ │ │ │ └── Notes.mdx │ │ │ │ ├── breadcrumb-list │ │ │ │ │ ├── BreadcrumbList.stories.tsx │ │ │ │ │ └── Notes.mdx │ │ │ │ └── breadcrumb │ │ │ │ │ ├── Breadcrumb.stories.tsx │ │ │ │ │ └── Notes.mdx │ │ │ ├── link │ │ │ │ ├── Link.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── tabs │ │ │ │ ├── tab-item │ │ │ │ │ ├── Notes.mdx │ │ │ │ │ └── TabItem.stories.tsx │ │ │ │ └── tab-navigation │ │ │ │ │ ├── Notes.mdx │ │ │ │ │ └── TabNavigation.stories.tsx │ │ │ ├── wizard-footer │ │ │ │ ├── Notes.mdx │ │ │ │ └── WizardFooter.stories.tsx │ │ │ └── wizard │ │ │ │ ├── Notes.mdx │ │ │ │ └── Wizard.stories.tsx │ │ ├── popover │ │ │ └── modal │ │ │ │ ├── Modal.stories.tsx │ │ │ │ └── Notes.mdx │ │ ├── select │ │ │ ├── select-option │ │ │ │ ├── Notes.mdx │ │ │ │ └── SelectOption.stories.tsx │ │ │ └── select │ │ │ │ ├── Notes.mdx │ │ │ │ └── Select.stories.tsx │ │ └── time-picker │ │ │ ├── absolute-time-picker-dropdown-input │ │ │ ├── AbsoluteTimePickerDropdownInput.stories.tsx │ │ │ └── Notes.mdx │ │ │ ├── absolute-time-picker-dropdown │ │ │ ├── AbsoluteTimePickerDropdown.stories.tsx │ │ │ └── Notes.mdx │ │ │ ├── components │ │ │ ├── absolute-time-picker │ │ │ │ ├── AbsoluteTimePicker.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── calendar-day │ │ │ │ ├── CalendarDay.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ └── calendar │ │ │ │ ├── Calendar.stories.tsx │ │ │ │ └── Notes.mdx │ │ │ ├── relative-time-picker │ │ │ ├── Notes.mdx │ │ │ └── RelativeTimePicker.stories.tsx │ │ │ └── time-picker │ │ │ ├── Notes.mdx │ │ │ └── TimePicker.stories.tsx │ ├── configs │ │ └── date.config.ts │ ├── foundation │ │ ├── colors │ │ │ └── Colors.mdx │ │ ├── icons │ │ │ ├── Icons.mdx │ │ │ └── Icons.scss │ │ ├── introduction │ │ │ ├── Introduction.mdx │ │ │ └── Introduction.scss │ │ ├── spacing-system │ │ │ ├── SpatialSystem.mdx │ │ │ ├── SpatialSystem.module.scss │ │ │ └── utils.ts │ │ └── typography │ │ │ ├── Typography.mdx │ │ │ └── Typography.scss │ ├── helpers │ │ └── dropdown.helper.ts │ ├── mocks │ │ ├── dropdown.mock.ts │ │ └── tree.mock.ts │ └── types.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.node.json ├── commitlint.config.js ├── lerna.json ├── package.json ├── packages ├── angular-ui-components │ └── CHANGELOG.md ├── react-ui-components │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── .scripts │ │ └── copy-icons.js │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── project.json │ ├── rollup.config.js │ ├── src │ │ ├── *.d.ts │ │ ├── client.ts │ │ ├── components │ │ │ ├── CodeEditor │ │ │ │ ├── CodeDiffEditor.tsx │ │ │ │ ├── CodeEditor.tsx │ │ │ │ ├── CodeEditorLoader.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useLoadMonacoEditorStyle.ts │ │ │ │ ├── index.ts │ │ │ │ ├── readme │ │ │ │ │ ├── CodeDiffEditor │ │ │ │ │ │ └── readme.md │ │ │ │ │ └── CodeEditor │ │ │ │ │ │ └── readme.md │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── ModalOverlay │ │ │ │ ├── ModalOverlay.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── SchemaForm │ │ │ │ ├── Fields │ │ │ │ │ ├── BooleanField │ │ │ │ │ │ ├── BooleanField.tsx │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── SchemaForm.module.scss │ │ │ │ ├── SchemaForm.tsx │ │ │ │ ├── Templates │ │ │ │ │ ├── ArrayFieldItemTemplate │ │ │ │ │ │ ├── ArrayFieldItemTemplate.module.scss │ │ │ │ │ │ ├── ArrayFieldItemTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ArrayFieldTemplate │ │ │ │ │ │ ├── AddButton.module.scss │ │ │ │ │ │ ├── AddButton.tsx │ │ │ │ │ │ ├── ArrayFieldTemplate.module.scss │ │ │ │ │ │ ├── ArrayFieldTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── BaseInputTemplate │ │ │ │ │ │ ├── BaseInputTemplate.config.ts │ │ │ │ │ │ ├── BaseInputTemplate.module.scss │ │ │ │ │ │ ├── BaseInputTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DescriptionFieldTemplate │ │ │ │ │ │ ├── DescriptionFieldTemplate.module.scss │ │ │ │ │ │ ├── DescriptionFieldTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ErrorListTemplate │ │ │ │ │ │ ├── ErrorListTemplate.module.scss │ │ │ │ │ │ ├── ErrorListTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── FieldTemplate │ │ │ │ │ │ ├── FieldTemplate.module.scss │ │ │ │ │ │ ├── FieldTemplate.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── ObjectFieldTemplate │ │ │ │ │ │ ├── ObjectFieldTemplate.module.scss │ │ │ │ │ │ ├── ObjectFieldTemplate.tsx │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── SubmitButton │ │ │ │ │ │ ├── SubmitButton.module.scss │ │ │ │ │ │ ├── SubmitButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TitleFieldTemplate │ │ │ │ │ │ ├── TitleFieldTemplate.module.scss │ │ │ │ │ │ ├── TitleFieldTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── WrapIfAdditionalTemplate │ │ │ │ │ │ ├── WrapIfAdditionalTemplate.module.scss │ │ │ │ │ │ ├── WrapIfAdditionalTemplate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Theme │ │ │ │ │ └── index.tsx │ │ │ │ ├── Widgets │ │ │ │ │ ├── CheckboxesWidget │ │ │ │ │ │ ├── CheckboxesWidget.tsx │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── DateTimeWidget │ │ │ │ │ │ ├── DateTimeWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DateWidget │ │ │ │ │ │ ├── DateWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── EmailWidget │ │ │ │ │ │ ├── EmailWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── FileWidget │ │ │ │ │ │ ├── FileWidget.module.scss │ │ │ │ │ │ ├── FileWidget.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── PasswordWidget │ │ │ │ │ │ ├── PasswordWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── RadioListWidget │ │ │ │ │ │ ├── RadioListWidget.module.scss │ │ │ │ │ │ ├── RadioListWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── RadioWidget │ │ │ │ │ │ ├── RadioWidget.module.scss │ │ │ │ │ │ ├── RadioWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ReadOnlyValueWidget │ │ │ │ │ │ ├── ReadOnlyValueWidget.module.scss │ │ │ │ │ │ ├── ReadOnlyValueWidget.tsx │ │ │ │ │ │ ├── helper.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── SelectWidget │ │ │ │ │ │ ├── SelectWidget.module.scss │ │ │ │ │ │ ├── SelectWidget.tsx │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── TextWidget │ │ │ │ │ │ ├── TextWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TextareaWidget │ │ │ │ │ │ ├── TextareaWidget.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── config.ts │ │ │ │ ├── contexts │ │ │ │ │ ├── FormStateContext │ │ │ │ │ │ ├── FormStateContext.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ └── useFieldTemplateElement.ts │ │ │ │ ├── index.ts │ │ │ │ ├── readme.md │ │ │ │ └── types.ts │ │ │ ├── ToasterContainer │ │ │ │ ├── config.ts │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useFontsApi │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── useFontsApi.ts │ │ │ └── useScroll.ts │ │ ├── server.ts │ │ ├── shared.ts │ │ ├── types.ts │ │ ├── ui-components.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ └── schema-form │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── schema-form.ts │ │ │ └── types.ts │ └── tsconfig.json └── ui-components │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── .stylelintignore │ ├── .stylelintrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── package.json │ ├── project.json │ ├── readme.md │ ├── scripts │ ├── generate-illustrations.js │ └── prepend_use_client_directive.js │ ├── src │ ├── assets │ │ ├── fonts │ │ │ ├── NunitoSans-Bold.ttf │ │ │ ├── NunitoSans-Light.ttf │ │ │ ├── NunitoSans-Regular.ttf │ │ │ ├── NunitoSans-SemiBold.ttf │ │ │ ├── font-incosolata.css │ │ │ ├── font-nonito.css │ │ │ └── font-proxima-nova.css │ │ ├── styles │ │ │ ├── globals.scss │ │ │ ├── kv-functions.color.scss │ │ │ ├── kv-mixins.scss │ │ │ ├── kv-spacing.scss │ │ │ ├── kv-theme.default.scss │ │ │ ├── kv-theme.modes.scss │ │ │ └── kv-typography.scss │ │ └── svg-symbols.svg │ ├── components │ │ ├── absolute-time-picker-dropdown-input │ │ │ ├── absolute-time-picker-dropdown-input.config.ts │ │ │ ├── absolute-time-picker-dropdown-input.scss │ │ │ ├── absolute-time-picker-dropdown-input.tsx │ │ │ ├── absolute-time-picker-dropdown-input.types.ts │ │ │ ├── absolute-time-picker-dropdown-input.utils.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── absolute-time-picker-dropdown-input.spec.tsx.snap │ │ │ │ ├── absolute-time-picker-dropdown-input.e2e.ts │ │ │ │ └── absolute-time-picker-dropdown-input.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── absolute-time-picker-dropdown │ │ │ ├── absolute-time-picker-dropdown.scss │ │ │ ├── absolute-time-picker-dropdown.tsx │ │ │ ├── absolute-time-picker-dropdown.types.ts │ │ │ ├── absolute-time-picker-dropdown.utils.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── absolute-time-picker-dropdown.spec.tsx.snap │ │ │ │ └── absolute-time-picker-dropdown.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── absolute-time-picker │ │ │ ├── absolute-time-picker.config.ts │ │ │ ├── absolute-time-picker.helper.ts │ │ │ ├── absolute-time-picker.scss │ │ │ ├── absolute-time-picker.tsx │ │ │ ├── absolute-time-picker.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── absolute-time-picker.spec.tsx.snap │ │ │ │ ├── absolute-time-picker.e2e.ts │ │ │ │ └── absolute-time-picker.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── action-button-icon │ │ │ ├── action-button-icon-types.ts │ │ │ ├── action-button-icon.scss │ │ │ ├── action-button-icon.tsx │ │ │ ├── action-button.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── action-button-icon.spec.ts.snap │ │ │ │ ├── action-button-icon.e2e.ts │ │ │ │ └── action-button-icon.spec.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── action-button-split │ │ │ ├── action-button-split.scss │ │ │ ├── action-button-split.tsx │ │ │ ├── action-button-split.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── action-button-split.spec.ts.snap │ │ │ │ ├── action-button-split.e2e.ts │ │ │ │ └── action-button-split.spec.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── action-button-text │ │ │ ├── action-button-text.scss │ │ │ ├── action-button-text.tsx │ │ │ ├── action-button-text.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── action-button-text.spec.ts.snap │ │ │ │ ├── action-button-text.e2e.ts │ │ │ │ └── action-button-text.spec.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── action-button │ │ │ ├── action-button.scss │ │ │ ├── action-button.tsx │ │ │ ├── action-button.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── action-button.spec.ts.snap │ │ │ │ ├── action-button.e2e.ts │ │ │ │ └── action-button.spec.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── alert │ │ │ ├── alert.config.ts │ │ │ ├── alert.scss │ │ │ ├── alert.tsx │ │ │ ├── alert.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── kv-alert.spec.tsx.snap │ │ │ │ └── kv-alert.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── badge │ │ │ ├── badge.base.scss │ │ │ ├── badge.light.scss │ │ │ ├── badge.night.scss │ │ │ ├── badge.tsx │ │ │ ├── badge.types.ts │ │ │ ├── readme.md │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── breadcrumb-item │ │ │ ├── breadcrumb-item.scss │ │ │ ├── breadcrumb-item.tsx │ │ │ ├── breadcrumb-item.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── breadcrumb-item.spec.tsx.snap │ │ │ │ ├── breadcrumb-item.e2e.ts │ │ │ │ └── breadcrumb-item.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── breadcrumb-list │ │ │ ├── breadcrumb-list.scss │ │ │ ├── breadcrumb-list.tsx │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── breadcrumb-list.spec.tsx.snap │ │ │ │ ├── breadcrumb-list.e2e.ts │ │ │ │ └── breadcrumb-list.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── breadcrumb │ │ │ ├── breadcrumb.tsx │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── breadcrumb.spec.tsx.snap │ │ │ │ ├── breadcrumb.mock.ts │ │ │ │ └── breadcrumb.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── calendar-day │ │ │ ├── calendar-day.scss │ │ │ ├── calendar-day.tsx │ │ │ ├── calendar-day.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── calendar-day.spec.tsx.snap │ │ │ │ ├── calendar-day.e2e.ts │ │ │ │ └── calendar-day.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── calendar │ │ │ ├── calendar.config.ts │ │ │ ├── calendar.helper.ts │ │ │ ├── calendar.scss │ │ │ ├── calendar.tsx │ │ │ ├── calendar.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── calendar.spec.tsx.snap │ │ │ │ ├── calendar.e2e.ts │ │ │ │ └── calendar.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── checkbox │ │ │ ├── checkbox.scss │ │ │ ├── checkbox.tsx │ │ │ ├── checkbox.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── checkbox.spec.tsx.snap │ │ │ │ ├── checkbox.e2e.ts │ │ │ │ └── checkbox.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── copy-to-clipboard │ │ │ ├── copy-to-clipboard.config.ts │ │ │ ├── copy-to-clipboard.scss │ │ │ ├── copy-to-clipboard.tsx │ │ │ ├── copy-to-clipboard.types.ts │ │ │ ├── copy-to-clipboard.utils.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── copy-to-clipboard.spec.tsx.snap │ │ │ │ └── copy-to-clipboard.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── date-time-input │ │ │ ├── date-time-input.config.ts │ │ │ ├── date-time-input.scss │ │ │ ├── date-time-input.tsx │ │ │ ├── date-time-input.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── date-time-input.spec.tsx.snap │ │ │ │ ├── date-time-input.e2e.ts │ │ │ │ └── date-time-input.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── description-list │ │ │ ├── description-list.config.ts │ │ │ ├── description-list.helper.ts │ │ │ ├── description-list.scss │ │ │ ├── description-list.tsx │ │ │ ├── description-list.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── description-list.spec.tsx.snap │ │ │ │ ├── description-list.mock.ts │ │ │ │ └── description-list.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── dirty-dot │ │ │ ├── dirty-dot.scss │ │ │ ├── dirty-dot.tsx │ │ │ └── readme.md │ │ ├── dropdown-base │ │ │ ├── dropdown-base.config.ts │ │ │ ├── dropdown-base.scss │ │ │ ├── dropdown-base.tsx │ │ │ ├── dropdown-base.types.ts │ │ │ └── readme.md │ │ ├── dropdown │ │ │ ├── dropdown.config.ts │ │ │ ├── dropdown.helper.ts │ │ │ ├── dropdown.scss │ │ │ ├── dropdown.tsx │ │ │ ├── dropdown.types.ts │ │ │ ├── readme.md │ │ │ └── usage │ │ │ │ ├── javascript.md │ │ │ │ ├── react.md │ │ │ │ └── stencil.md │ │ ├── form-help-text │ │ │ ├── form-help-text.scss │ │ │ ├── form-help-text.tsx │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── form-help-text.spec.tsx.snap │ │ │ │ ├── form-help-text.e2e.ts │ │ │ │ └── form-help-text.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── form-label │ │ │ ├── form-label.base.scss │ │ │ ├── form-label.light.scss │ │ │ ├── form-label.night.scss │ │ │ ├── form-label.tsx │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── form-label.spec.tsx.snap │ │ │ │ ├── form-label.e2e.ts │ │ │ │ └── form-label.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── icon │ │ │ ├── icon.scss │ │ │ ├── icon.tsx │ │ │ ├── icon.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── icon.spec.tsx.snap │ │ │ │ ├── icon.e2e.ts │ │ │ │ └── icon.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── illustration-message │ │ │ ├── illustration-message.scss │ │ │ ├── illustration-message.tsx │ │ │ ├── illustration-message.types.ts │ │ │ ├── readme.md │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── illustration │ │ │ ├── illustration.scss │ │ │ ├── illustration.tsx │ │ │ ├── illustration.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── illustration.spec.tsx.snap │ │ │ │ ├── illustration.e2e.ts │ │ │ │ └── illustration.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── info-label │ │ │ ├── info-label.base.scss │ │ │ ├── info-label.config.ts │ │ │ ├── info-label.light.scss │ │ │ ├── info-label.night.scss │ │ │ ├── info-label.tsx │ │ │ ├── info-label.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── info-label.spec.tsx.snap │ │ │ │ ├── info-label.e2e.ts │ │ │ │ └── info-label.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── inline-editable-field │ │ │ ├── inline-editable-field.config.ts │ │ │ ├── inline-editable-field.scss │ │ │ ├── inline-editable-field.tsx │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── inline-editable-field.e2e.ts │ │ │ │ └── inline-editable-field.spec.tsx │ │ ├── input-wrapper │ │ │ ├── input-wrapper.scss │ │ │ ├── input-wrapper.tsx │ │ │ ├── input-wrapper.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── input-wrapper.spec.tsx.snap │ │ │ │ └── input-wrapper.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── link │ │ │ ├── link.scss │ │ │ ├── link.tsx │ │ │ ├── link.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── link.spec.tsx.snap │ │ │ │ ├── link.e2e.ts │ │ │ │ └── link.spec.tsx │ │ │ └── usage │ │ │ │ ├── javascript.md │ │ │ │ ├── react.md │ │ │ │ └── stencil.md │ │ ├── loader │ │ │ ├── loader.scss │ │ │ ├── loader.tsx │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── loader.spec.tsx.snap │ │ │ │ ├── loader.e2e.ts │ │ │ │ └── loader.spec.tsx │ │ │ └── usage │ │ │ │ ├── javascript.md │ │ │ │ ├── react.md │ │ │ │ └── stencil.md │ │ ├── modal │ │ │ ├── modal.base.scss │ │ │ ├── modal.light.scss │ │ │ ├── modal.night.scss │ │ │ ├── modal.tsx │ │ │ ├── modal.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── modal.spec.tsx.snap │ │ │ │ ├── modal.e2e.ts │ │ │ │ └── modal.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── multi-select-dropdown │ │ │ ├── multi-select-dropdown.config.ts │ │ │ ├── multi-select-dropdown.helper.ts │ │ │ ├── multi-select-dropdown.scss │ │ │ ├── multi-select-dropdown.tsx │ │ │ ├── multi-select-dropdown.types.ts │ │ │ ├── readme.md │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── portal │ │ │ ├── portal.config.ts │ │ │ ├── portal.scss │ │ │ ├── portal.tsx │ │ │ ├── portal.types.ts │ │ │ └── readme.md │ │ ├── radio-list-item │ │ │ ├── radio-list-item.config.ts │ │ │ ├── radio-list-item.helper.tsx │ │ │ ├── radio-list-item.scss │ │ │ ├── radio-list-item.tsx │ │ │ ├── radio-list-item.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── radio-list-item.spec.tsx.snap │ │ │ │ ├── radio-list-item.spec.tsx │ │ │ │ └── radio-list.item.e2e.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── radio-list │ │ │ ├── radio-list.scss │ │ │ ├── radio-list.tsx │ │ │ ├── radio-list.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── radio-list.spec.tsx.snap │ │ │ │ ├── radio-list.mock.ts │ │ │ │ └── radio-list.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── radio │ │ │ ├── radio.base.scss │ │ │ ├── radio.light.scss │ │ │ ├── radio.night.scss │ │ │ ├── radio.tsx │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── radio.spec.tsx.snap │ │ │ │ ├── radio.e2e.ts │ │ │ │ └── radio.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── range │ │ │ ├── range.base.scss │ │ │ ├── range.helper.ts │ │ │ ├── range.light.scss │ │ │ ├── range.night.scss │ │ │ ├── range.tsx │ │ │ ├── range.types.ts │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── range.spec.tsx.snap │ │ │ │ ├── range.e2e.ts │ │ │ │ └── range.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── relative-time-picker │ │ │ ├── readme.md │ │ │ ├── relative-time-picker.config.ts │ │ │ ├── relative-time-picker.helper.ts │ │ │ ├── relative-time-picker.scss │ │ │ ├── relative-time-picker.tsx │ │ │ ├── relative-time-picker.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── relative-time-picker.spec.tsx.snap │ │ │ │ ├── relative-time-picker.e2e.ts │ │ │ │ ├── relative-time-picker.mock.ts │ │ │ │ └── relative-time-picker.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── search │ │ │ ├── readme.md │ │ │ ├── search.tsx │ │ │ ├── search.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── search.spec.tsx.snap │ │ │ │ ├── search.e2e.ts │ │ │ │ └── search.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── select-create-option │ │ │ ├── readme.md │ │ │ ├── select-create-option.scss │ │ │ ├── select-create-option.tsx │ │ │ └── select-create-option.types.ts │ │ ├── select-multi-options │ │ │ ├── readme.md │ │ │ ├── select-multi-options.config.ts │ │ │ ├── select-multi-options.helper.ts │ │ │ ├── select-multi-options.scss │ │ │ ├── select-multi-options.tsx │ │ │ └── select-multi-options.types.ts │ │ ├── select-option │ │ │ ├── readme.md │ │ │ ├── select-option.config.ts │ │ │ ├── select-option.scss │ │ │ ├── select-option.tsx │ │ │ ├── select-option.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── select-option.spec.tsx.snap │ │ │ │ ├── select-option.e2e.ts │ │ │ │ └── select-option.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── select-shortcuts-label │ │ │ ├── readme.md │ │ │ ├── select-shortcuts-label.scss │ │ │ └── select-shortcuts-label.tsx │ │ ├── select │ │ │ ├── readme.md │ │ │ ├── select.config.ts │ │ │ ├── select.helper.ts │ │ │ ├── select.scss │ │ │ ├── select.tsx │ │ │ ├── select.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── single-select-dropdown │ │ │ ├── readme.md │ │ │ ├── single-select-dropdown.config.ts │ │ │ ├── single-select-dropdown.helper.ts │ │ │ ├── single-select-dropdown.scss │ │ │ ├── single-select-dropdown.tsx │ │ │ ├── single-select-dropdown.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── state-indicator │ │ │ ├── readme.md │ │ │ ├── state-indicator.scss │ │ │ ├── state-indicator.tsx │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── state-indicator.spec.tsx.snap │ │ │ │ ├── state-indicator.e2e.ts │ │ │ │ └── state-indicator.spec.tsx │ │ │ └── usage │ │ │ │ ├── javascript.md │ │ │ │ ├── react.md │ │ │ │ └── stencil.md │ │ ├── step-bar │ │ │ ├── readme.md │ │ │ ├── step-bar.config.ts │ │ │ ├── step-bar.scss │ │ │ ├── step-bar.tsx │ │ │ ├── step-bar.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── step-bar.spec.tsx.snap │ │ │ │ ├── step-bar.mock.ts │ │ │ │ └── step-bar.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── step-indicator │ │ │ ├── readme.md │ │ │ ├── step-indicator.scss │ │ │ ├── step-indicator.tsx │ │ │ ├── step-indicator.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── step-indicator.spec.tsx.snap │ │ │ │ ├── step-indicator.e2e.ts │ │ │ │ └── step-indicator.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── step-progress-bar │ │ │ ├── readme.md │ │ │ ├── step-progress-bar.base.scss │ │ │ ├── step-progress-bar.night.scss │ │ │ ├── step-progress-bar.tsx │ │ │ ├── step-progress-bar.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── step-progress-bar.spec.tsx.snap │ │ │ │ └── step-progress-bar.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── summary-card │ │ │ ├── readme.md │ │ │ ├── summary-card.base.scss │ │ │ ├── summary-card.light.scss │ │ │ ├── summary-card.night.scss │ │ │ ├── summary-card.tsx │ │ │ ├── summary-card.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── summary-card.spec.tsx.snap │ │ │ │ ├── summary-card.e2e.ts │ │ │ │ └── summary-card.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── switch-button │ │ │ ├── readme.md │ │ │ ├── switch-button.scss │ │ │ ├── switch-button.tsx │ │ │ ├── switch-button.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── switch-button.spec.ts.snap │ │ │ │ ├── switch-button.e2e.ts │ │ │ │ └── switch-button.spec.ts │ │ │ └── usage │ │ │ │ ├── javascript.md │ │ │ │ ├── react.md │ │ │ │ └── stencil.md │ │ ├── tab-item │ │ │ ├── readme.md │ │ │ ├── tab-item.scss │ │ │ ├── tab-item.tsx │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tab-item.spec.tsx.snap │ │ │ │ ├── tab-item.e2e.ts │ │ │ │ └── tab-item.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tab-navigation │ │ │ ├── readme.md │ │ │ ├── tab-navigation.config.ts │ │ │ ├── tab-navigation.scss │ │ │ ├── tab-navigation.tsx │ │ │ ├── tab-navigation.types.ts │ │ │ ├── tab-navigation.utils.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tab-navigation.spec.tsx.snap │ │ │ │ ├── tab-navigation.mock.ts │ │ │ │ └── tab-navigation.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tag-alarm │ │ │ ├── readme.md │ │ │ ├── tag-alarm.config.ts │ │ │ ├── tag-alarm.scss │ │ │ ├── tag-alarm.tsx │ │ │ ├── tag-alarm.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tag-alarm.spec.tsx.snap │ │ │ │ ├── tag-alarm.e2e.ts │ │ │ │ └── tag-alarm.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tag-letter │ │ │ ├── readme.md │ │ │ ├── tag-letter.scss │ │ │ ├── tag-letter.tsx │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tag-letter.spec.tsx.snap │ │ │ │ ├── tag-letter.e2e.ts │ │ │ │ └── tag-letter.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tag-status │ │ │ ├── readme.md │ │ │ ├── tag-status.scss │ │ │ ├── tag-status.tsx │ │ │ ├── tag-status.types.ts │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── status.spec.tsx.snap │ │ │ │ ├── status.e2e.ts │ │ │ │ └── status.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tag │ │ │ ├── readme.md │ │ │ ├── tag.scss │ │ │ ├── tag.tsx │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tag.spec.tsx.snap │ │ │ │ ├── tag.e2e.ts │ │ │ │ └── tag.spec.tsx │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── text-area │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── text-area.spec.tsx.snap │ │ │ │ ├── text-area.e2e.ts │ │ │ │ └── text-area.spec.tsx │ │ │ ├── text-area.scss │ │ │ ├── text-area.tsx │ │ │ ├── types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── text-field │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── text-field.spec.tsx.snap │ │ │ │ ├── text-field.e2e.ts │ │ │ │ └── text-field.spec.tsx │ │ │ ├── text-field.base.scss │ │ │ ├── text-field.config.ts │ │ │ ├── text-field.light.scss │ │ │ ├── text-field.night.scss │ │ │ ├── text-field.tsx │ │ │ ├── text-field.types.ts │ │ │ ├── text-field.utils.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── time-picker-select-option │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── time-picker-select-option.spec.tsx.snap │ │ │ │ ├── time-picker-select-option.e2e.ts │ │ │ │ └── time-picker-select-option.spec.tsx │ │ │ ├── time-picker-select-option.scss │ │ │ ├── time-picker-select-option.tsx │ │ │ ├── time-picker-select-option.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── time-picker │ │ │ ├── readme.md │ │ │ ├── time-picker.config.ts │ │ │ ├── time-picker.helper.ts │ │ │ ├── time-picker.scss │ │ │ ├── time-picker.tsx │ │ │ ├── time-picker.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── toaster │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── toaster.spec.tsx.snap │ │ │ │ ├── toaster.e2e.ts │ │ │ │ └── toaster.spec.tsx │ │ │ ├── toaster.config.ts │ │ │ ├── toaster.scss │ │ │ ├── toaster.tsx │ │ │ ├── toaster.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── toggle-button-group │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── toggle-button-group.spec.tsx.snap │ │ │ │ ├── toggle-button-group.mock.ts │ │ │ │ └── toggle-button-group.spec.tsx │ │ │ ├── toggle-button-group.scss │ │ │ ├── toggle-button-group.tsx │ │ │ └── toggle-button-group.types.ts │ │ ├── toggle-button │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── toggle-button.spec.tsx.snap │ │ │ │ ├── toggle-button.e2e.ts │ │ │ │ └── toggle-button.spec.tsx │ │ │ ├── toggle-button.scss │ │ │ ├── toggle-button.tsx │ │ │ ├── toggle-button.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── toggle-switch │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── toggle-switch.spec.tsx.snap │ │ │ │ ├── toggle-switch.mock.ts │ │ │ │ └── toggle-switch.spec.tsx │ │ │ ├── toggle-switch.scss │ │ │ ├── toggle-switch.tsx │ │ │ └── toggle-switch.types.ts │ │ ├── toggle-tip │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── toggle-tip.spec.tsx.snap │ │ │ │ ├── toggle-tip.e2e.ts │ │ │ │ └── toggle-tip.spec.tsx │ │ │ ├── toggle-tip.config.ts │ │ │ ├── toggle-tip.scss │ │ │ ├── toggle-tip.tsx │ │ │ ├── toggle-tip.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tooltip-text │ │ │ ├── readme.md │ │ │ ├── tooltip-text.scss │ │ │ ├── tooltip-text.tsx │ │ │ ├── tooltip-text.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tooltip │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tooltip.spec.tsx.snap │ │ │ │ ├── tooltip.e2e.ts │ │ │ │ └── tooltip.spec.tsx │ │ │ ├── tooltip.config.ts │ │ │ ├── tooltip.tsx │ │ │ ├── tooltip.types.ts │ │ │ ├── tooltip.utils.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tree-dropdown │ │ │ ├── readme.md │ │ │ ├── tree-dropdown.scss │ │ │ └── tree-dropdown.tsx │ │ ├── tree-item │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tree-item.spec.tsx.snap │ │ │ │ ├── tree-item.e2e.ts │ │ │ │ └── tree-item.spec.tsx │ │ │ ├── tree-item.base.scss │ │ │ ├── tree-item.config.ts │ │ │ ├── tree-item.light.scss │ │ │ ├── tree-item.night.scss │ │ │ ├── tree-item.tsx │ │ │ ├── tree-item.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── tree │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tree.spec.tsx.snap │ │ │ │ ├── tree.mock.ts │ │ │ │ └── tree.spec.tsx │ │ │ ├── tree.base.scss │ │ │ ├── tree.light.scss │ │ │ ├── tree.night.scss │ │ │ ├── tree.tsx │ │ │ ├── tree.types.ts │ │ │ └── usage │ │ │ │ └── react.md │ │ ├── utils.ts │ │ ├── virtualized-list │ │ │ ├── readme.md │ │ │ ├── virtualized-list.helper.tsx │ │ │ ├── virtualized-list.scss │ │ │ ├── virtualized-list.tsx │ │ │ └── virtualized-list.types.ts │ │ ├── wizard-footer │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── wizard-footer.spec.tsx.snap │ │ │ │ ├── wizard-footer.mock.ts │ │ │ │ └── wizard-footer.spec.tsx │ │ │ ├── usage │ │ │ │ └── react.md │ │ │ ├── wizard-footer.config.ts │ │ │ ├── wizard-footer.scss │ │ │ ├── wizard-footer.tsx │ │ │ └── wizard-footer.types.ts │ │ ├── wizard-header │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── wizard-header.spec.tsx.snap │ │ │ │ └── wizard-header.spec.tsx │ │ │ ├── usage │ │ │ │ └── react.md │ │ │ ├── wizard-header.scss │ │ │ ├── wizard-header.tsx │ │ │ └── wizard-header.types.ts │ │ └── wizard │ │ │ ├── readme.md │ │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ └── wizard.spec.tsx.snap │ │ │ ├── wizard.mock.ts │ │ │ └── wizard.spec.tsx │ │ │ ├── usage │ │ │ └── react.md │ │ │ ├── wizard.helper.ts │ │ │ ├── wizard.scss │ │ │ ├── wizard.tsx │ │ │ └── wizard.types.ts │ ├── config.ts │ ├── globals │ │ ├── config.ts │ │ └── globals.ts │ ├── illustrations │ │ ├── agree │ │ │ └── agree.svg │ │ ├── box-build │ │ │ └── box-build.svg │ │ ├── color-circle │ │ │ └── color-circle.svg │ │ ├── disagree │ │ │ └── disagree.svg │ │ ├── error-state-404 │ │ │ └── error-state-404.svg │ │ ├── error-state │ │ │ └── error-state.svg │ │ ├── es-asset-placeholder │ │ │ └── es-asset-placeholder.svg │ │ ├── es-checkbox │ │ │ └── es-checkbox.svg │ │ ├── es-component-placeholder │ │ │ └── es-component-placeholder.svg │ │ ├── es-error-404 │ │ │ └── es-error-404.svg │ │ ├── es-error-503 │ │ │ └── es-error-503.svg │ │ ├── es-kelvin-logotype │ │ │ └── es-kelvin-logotype.svg │ │ ├── es-lock │ │ │ └── es-lock.svg │ │ ├── es-metadata │ │ │ └── es-metadata.svg │ │ ├── es-part-placeholder │ │ │ └── es-part-placeholder.svg │ │ ├── es-section-cell │ │ │ └── es-section-cell.svg │ │ ├── es-section-somethingwentwrong │ │ │ └── es-section-somethingwentwrong.svg │ │ ├── es-section-thresholds │ │ │ └── es-section-thresholds.svg │ │ ├── es-sensor-placeholder │ │ │ └── es-sensor-placeholder.svg │ │ ├── es-slowy │ │ │ └── es-slowy.svg │ │ ├── es-somethingwentwrong │ │ │ └── es-somethingwentwrong.svg │ │ ├── es-table-build │ │ │ └── es-table-build.svg │ │ ├── es-table-empty │ │ │ └── es-table-empty.svg │ │ ├── es-table-search │ │ │ └── es-table-search.svg │ │ ├── feedback-form │ │ │ └── feedback-form.svg │ │ ├── illustration-component.hbs │ │ ├── illustrations.scss │ │ ├── impact │ │ │ └── impact.svg │ │ ├── import │ │ │ └── import.svg │ │ ├── no-content-here │ │ │ └── no-content-here.svg │ │ ├── no-data-available │ │ │ └── no-data-available.svg │ │ ├── no-matching-results │ │ │ └── no-matching-results.svg │ │ ├── no-results-found-dark │ │ │ └── no-results-found-dark.svg │ │ ├── no-results-found-light │ │ │ └── no-results-found-light.svg │ │ ├── party-dance │ │ │ └── party-dance.svg │ │ ├── soft-agree │ │ │ └── soft-agree.svg │ │ ├── table-build │ │ │ └── table-build.svg │ │ └── take-actions │ │ │ └── take-actions.svg │ ├── index.html │ ├── index.ts │ ├── interfaces.d.ts │ ├── types.ts │ └── utils │ │ ├── arrays.helper.ts │ │ ├── clipboard.helper.ts │ │ ├── css-class.helper.ts │ │ ├── date.config.ts │ │ ├── date.helper.ts │ │ ├── date.spec.ts │ │ ├── floating-ui.helper.ts │ │ ├── index.ts │ │ ├── mouse-event.helper.ts │ │ ├── relative-time.helper.ts │ │ ├── search.helper.ts │ │ ├── search.spec.ts │ │ ├── select.helper.ts │ │ ├── string.helper.ts │ │ └── types │ │ ├── components.ts │ │ ├── dates.ts │ │ ├── index.ts │ │ ├── intl.ts │ │ └── lib-config.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── patches └── @pxtrn__storybook-addon-docs-stencil@8.0.0.patch ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/actions/node-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.github/actions/node-setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-alpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.github/workflows/publish-alpha.yml -------------------------------------------------------------------------------- /.github/workflows/publish-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.github/workflows/publish-dev.yml -------------------------------------------------------------------------------- /.github/workflows/publish-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.github/workflows/publish-master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/.prettierrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/README.md -------------------------------------------------------------------------------- /apps/react-storybook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.gitignore -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/main.ts -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/manager-head.html -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/manager.ts -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/preview-head.html -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/preview.ts -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/themes/kelvin-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/themes/kelvin-theme.ts -------------------------------------------------------------------------------- /apps/react-storybook/.storybook/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/.storybook/utils.ts -------------------------------------------------------------------------------- /apps/react-storybook/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/CHANGELOG.md -------------------------------------------------------------------------------- /apps/react-storybook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/README.md -------------------------------------------------------------------------------- /apps/react-storybook/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/eslint.config.js -------------------------------------------------------------------------------- /apps/react-storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/package.json -------------------------------------------------------------------------------- /apps/react-storybook/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/project.json -------------------------------------------------------------------------------- /apps/react-storybook/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/public/favicon.ico -------------------------------------------------------------------------------- /apps/react-storybook/public/kelvin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/public/kelvin-icon.png -------------------------------------------------------------------------------- /apps/react-storybook/src/assets/kelvin-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/assets/kelvin-hero.svg -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/Base/Base.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/Base/Base.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/Base/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/Base/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/icon/Icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/icon/Icon.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/icon/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/icon/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/split/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/split/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/split/Split.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/split/Split.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/text/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/text/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/buttons/text/Text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/buttons/text/Text.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/badge/Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/badge/Badge.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/badge/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/badge/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/copy-to-clipboard/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/copy-to-clipboard/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/description-list/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/description-list/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/info-label/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/info-label/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/state-indicator/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/state-indicator/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/step-indicator/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/step-indicator/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/step-progress-bar/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/step-progress-bar/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/summary-card/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/summary-card/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tag-alarm/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tag-alarm/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tag-letter/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tag-letter/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tag-status/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tag-status/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tag/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tag/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tag/Tag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tag/Tag.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/toaster/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/toaster/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/toaster/Toaster.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/toaster/Toaster.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tree/tree-dropdown/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tree/tree-dropdown/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tree/tree-item/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tree/tree-item/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tree/tree/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tree/tree/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/data-display/tree/tree/Tree.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/data-display/tree/tree/Tree.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/dropdown/Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/dropdown/Dropdown.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/dropdown/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/dropdown/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/alert/Alert.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/alert/Alert.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/alert/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/alert/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/loader/Loader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/loader/Loader.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/loader/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/loader/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/toggle-tip/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/toggle-tip/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/toggle-tip/ToggleTip.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/toggle-tip/ToggleTip.module.scss -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/toggle-tip/ToggleTip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/toggle-tip/ToggleTip.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/tooltip/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/tooltip/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/tooltip/Tooltip.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/tooltip/Tooltip.module.scss -------------------------------------------------------------------------------- /apps/react-storybook/src/components/feedback/tooltip/Tooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/feedback/tooltip/Tooltip.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/form/form-help-text/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/form/form-help-text/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/form/form-label/FormLabel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/form/form-label/FormLabel.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/form/form-label/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/form/form-label/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/form/schema-form/SchemaForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/form/schema-form/SchemaForm.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/checkbox/Checkbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/checkbox/Checkbox.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/checkbox/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/checkbox/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/code-editor/CodeEditor.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/code-editor/CodeEditor.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/date-time-input/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/date-time-input/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/inline-editable-field/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/inline-editable-field/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/radio-list-item/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/radio-list-item/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/radio-list/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/radio-list/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/radio-list/RadioList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/radio-list/RadioList.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/radio/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/radio/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/radio/Radio.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/radio/Radio.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/range/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/range/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/range/Range.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/range/Range.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/search/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/search/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/search/Search.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/search/Search.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/switch-button/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/switch-button/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/text-area/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/text-area/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/text-area/TextArea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/text-area/TextArea.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/text-field/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/text-field/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/text-field/TextField.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/text-field/TextField.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/toggle-button-group/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/toggle-button-group/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/toggle-button/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/toggle-button/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/inputs/toggle-switch/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/inputs/toggle-switch/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/media/icon/Icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/media/icon/Icon.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/media/icon/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/media/icon/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/media/illustration/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/media/illustration/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/link/Link.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/link/Link.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/link/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/link/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/tabs/tab-item/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/tabs/tab-item/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/tabs/tab-navigation/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/tabs/tab-navigation/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/wizard-footer/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/wizard-footer/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/wizard/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/wizard/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/navigation/wizard/Wizard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/navigation/wizard/Wizard.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/popover/modal/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/popover/modal/Modal.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/popover/modal/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/popover/modal/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/select/select-option/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/select/select-option/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/select/select/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/select/select/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/select/select/Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/select/select/Select.stories.tsx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/time-picker/components/calendar/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/time-picker/components/calendar/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/components/time-picker/time-picker/Notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/components/time-picker/time-picker/Notes.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/configs/date.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/configs/date.config.ts -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/colors/Colors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/colors/Colors.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/icons/Icons.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/icons/Icons.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/icons/Icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/icons/Icons.scss -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/introduction/Introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/introduction/Introduction.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/introduction/Introduction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/introduction/Introduction.scss -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/spacing-system/SpatialSystem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/spacing-system/SpatialSystem.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/spacing-system/SpatialSystem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/spacing-system/SpatialSystem.module.scss -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/spacing-system/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/spacing-system/utils.ts -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/typography/Typography.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/typography/Typography.mdx -------------------------------------------------------------------------------- /apps/react-storybook/src/foundation/typography/Typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/foundation/typography/Typography.scss -------------------------------------------------------------------------------- /apps/react-storybook/src/helpers/dropdown.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/helpers/dropdown.helper.ts -------------------------------------------------------------------------------- /apps/react-storybook/src/mocks/dropdown.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/mocks/dropdown.mock.ts -------------------------------------------------------------------------------- /apps/react-storybook/src/mocks/tree.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/mocks/tree.mock.ts -------------------------------------------------------------------------------- /apps/react-storybook/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/src/types.d.ts -------------------------------------------------------------------------------- /apps/react-storybook/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/tsconfig.app.json -------------------------------------------------------------------------------- /apps/react-storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/tsconfig.json -------------------------------------------------------------------------------- /apps/react-storybook/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/apps/react-storybook/tsconfig.node.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ["@commitlint/config-conventional"] 3 | }; 4 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/package.json -------------------------------------------------------------------------------- /packages/angular-ui-components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/angular-ui-components/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-ui-components/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | stencil-generated 4 | -------------------------------------------------------------------------------- /packages/react-ui-components/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/.eslintrc.json -------------------------------------------------------------------------------- /packages/react-ui-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/.gitignore -------------------------------------------------------------------------------- /packages/react-ui-components/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/.prettierrc.json -------------------------------------------------------------------------------- /packages/react-ui-components/.scripts/copy-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/.scripts/copy-icons.js -------------------------------------------------------------------------------- /packages/react-ui-components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-ui-components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/LICENSE -------------------------------------------------------------------------------- /packages/react-ui-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/README.md -------------------------------------------------------------------------------- /packages/react-ui-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/package.json -------------------------------------------------------------------------------- /packages/react-ui-components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/project.json -------------------------------------------------------------------------------- /packages/react-ui-components/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/rollup.config.js -------------------------------------------------------------------------------- /packages/react-ui-components/src/*.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/*.d.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/client.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/CodeDiffEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/CodeDiffEditor.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/CodeEditor.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/CodeEditorLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/CodeEditorLoader.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/config.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useLoadMonacoEditorStyle'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/types.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/CodeEditor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/CodeEditor/utils.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/ModalOverlay/ModalOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/ModalOverlay/ModalOverlay.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/ModalOverlay/config.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_MODAL_ROOT_ID = 'modal-root'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/ModalOverlay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/ModalOverlay/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/ModalOverlay/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/ModalOverlay/types.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/Fields/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/SchemaForm.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/SchemaForm.module.scss -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/SchemaForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/SchemaForm.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/ArrayFieldItemTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ArrayFieldItemTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/ArrayFieldTemplate/AddButton.module.scss: -------------------------------------------------------------------------------- 1 | .AddButtonContainer { 2 | display: flex; 3 | justify-content: end; 4 | } 5 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/ArrayFieldTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ArrayFieldTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/BaseInputTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BaseInputTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/DescriptionFieldTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DescriptionFieldTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/ErrorListTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ErrorListTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/FieldTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FieldTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/ObjectFieldTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ObjectFieldTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/SubmitButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SubmitButton'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/TitleFieldTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TitleFieldTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/WrapIfAdditionalTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WrapIfAdditionalTemplate'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/Templates/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/Theme/index.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/CheckboxesWidget/config.ts: -------------------------------------------------------------------------------- 1 | export const ALL_BUTTON_VALUE: string = 'all'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/CheckboxesWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CheckboxesWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/DateTimeWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DateTimeWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/DateWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DateWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/EmailWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EmailWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/FileWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FileWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/PasswordWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/RadioListWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RadioListWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/RadioWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RadioWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/ReadOnlyValueWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ReadOnlyValueWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/SelectWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SelectWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/TextWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TextWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/TextareaWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TextareaWidget'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/Widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/Widgets/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/config.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/contexts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FormStateContext'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/readme.md -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/SchemaForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/SchemaForm/types.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/ToasterContainer/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/ToasterContainer/config.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/ToasterContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/ToasterContainer/index.tsx -------------------------------------------------------------------------------- /packages/react-ui-components/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/components/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/hooks/useFontsApi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/hooks/useFontsApi/constants.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/hooks/useFontsApi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/hooks/useFontsApi/index.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/hooks/useFontsApi/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/hooks/useFontsApi/types.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/hooks/useFontsApi/useFontsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/hooks/useFontsApi/useFontsApi.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/hooks/useScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/hooks/useScroll.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/server.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/shared.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/types.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/ui-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/ui-components.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './schema-form'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/utils/schema-form/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/utils/schema-form/config.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/utils/schema-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './schema-form'; 2 | -------------------------------------------------------------------------------- /packages/react-ui-components/src/utils/schema-form/schema-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/utils/schema-form/schema-form.ts -------------------------------------------------------------------------------- /packages/react-ui-components/src/utils/schema-form/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/src/utils/schema-form/types.ts -------------------------------------------------------------------------------- /packages/react-ui-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/react-ui-components/tsconfig.json -------------------------------------------------------------------------------- /packages/ui-components/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.editorconfig -------------------------------------------------------------------------------- /packages/ui-components/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.eslintignore -------------------------------------------------------------------------------- /packages/ui-components/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.eslintrc.json -------------------------------------------------------------------------------- /packages/ui-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.gitignore -------------------------------------------------------------------------------- /packages/ui-components/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.prettierrc.json -------------------------------------------------------------------------------- /packages/ui-components/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.stylelintignore -------------------------------------------------------------------------------- /packages/ui-components/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/.stylelintrc -------------------------------------------------------------------------------- /packages/ui-components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ui-components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/LICENSE -------------------------------------------------------------------------------- /packages/ui-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/package.json -------------------------------------------------------------------------------- /packages/ui-components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/project.json -------------------------------------------------------------------------------- /packages/ui-components/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/readme.md -------------------------------------------------------------------------------- /packages/ui-components/scripts/generate-illustrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/scripts/generate-illustrations.js -------------------------------------------------------------------------------- /packages/ui-components/scripts/prepend_use_client_directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/scripts/prepend_use_client_directive.js -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/NunitoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/NunitoSans-Bold.ttf -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/NunitoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/NunitoSans-Light.ttf -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/NunitoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/NunitoSans-Regular.ttf -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/NunitoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/NunitoSans-SemiBold.ttf -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/font-incosolata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/font-incosolata.css -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/font-nonito.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/font-nonito.css -------------------------------------------------------------------------------- /packages/ui-components/src/assets/fonts/font-proxima-nova.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/fonts/font-proxima-nova.css -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/globals.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/kv-functions.color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/kv-functions.color.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/kv-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/kv-mixins.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/kv-spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/kv-spacing.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/kv-theme.default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/kv-theme.default.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/kv-theme.modes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/kv-theme.modes.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/styles/kv-typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/styles/kv-typography.scss -------------------------------------------------------------------------------- /packages/ui-components/src/assets/svg-symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/assets/svg-symbols.svg -------------------------------------------------------------------------------- /packages/ui-components/src/components/absolute-time-picker-dropdown/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/absolute-time-picker-dropdown/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/absolute-time-picker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/absolute-time-picker/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/absolute-time-picker/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/absolute-time-picker/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button-icon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button-icon/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button-icon/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button-icon/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button-split/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button-split/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button-split/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button-split/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button-text/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button-text/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button-text/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button-text/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button/action-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button/action-button.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button/action-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button/action-button.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button/action-button.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button/action-button.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button/test/action-button.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button/test/action-button.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/action-button/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/action-button/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/alert.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/alert.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/alert.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/alert.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/alert.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/alert.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/test/kv-alert.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/test/kv-alert.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/alert/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/alert/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/badge.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/badge.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/badge.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/badge.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/badge.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/badge.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/badge.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/badge.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/badge.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/badge/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/badge/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-item/breadcrumb-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-item/breadcrumb-item.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-item/breadcrumb-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-item/breadcrumb-item.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-item/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-item/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-item/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-item/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-list/breadcrumb-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-list/breadcrumb-list.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-list/breadcrumb-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-list/breadcrumb-list.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-list/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-list/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb-list/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb-list/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb/breadcrumb.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb/test/breadcrumb.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb/test/breadcrumb.mock.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb/test/breadcrumb.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb/test/breadcrumb.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/breadcrumb/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/breadcrumb/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/calendar-day.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/calendar-day.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/calendar-day.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/calendar-day.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/calendar-day.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/calendar-day.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/test/calendar-day.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/test/calendar-day.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/test/calendar-day.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/test/calendar-day.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar-day/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar-day/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/calendar.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/calendar.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/calendar.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/calendar.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/calendar.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/calendar.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/calendar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/calendar.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/test/calendar.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/test/calendar.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/test/calendar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/test/calendar.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/calendar/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/calendar/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/checkbox.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/checkbox.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/checkbox.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/checkbox.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/test/checkbox.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/test/checkbox.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/test/checkbox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/test/checkbox.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/checkbox/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/checkbox/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/copy-to-clipboard/copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/copy-to-clipboard/copy-to-clipboard.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/copy-to-clipboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/copy-to-clipboard/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/copy-to-clipboard/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/copy-to-clipboard/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/date-time-input/date-time-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/date-time-input/date-time-input.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/date-time-input/date-time-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/date-time-input/date-time-input.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/date-time-input/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/date-time-input/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/date-time-input/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/date-time-input/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/description-list/description-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/description-list/description-list.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/description-list/description-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/description-list/description-list.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/description-list/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/description-list/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/description-list/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/description-list/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/dirty-dot/dirty-dot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dirty-dot/dirty-dot.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/dirty-dot/dirty-dot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dirty-dot/dirty-dot.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/dirty-dot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dirty-dot/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown-base/dropdown-base.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown-base/dropdown-base.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown-base/dropdown-base.scss: -------------------------------------------------------------------------------- 1 | @import '../../assets/styles/globals'; 2 | 3 | 4 | .dropdown-base-list { 5 | width: 100%; 6 | } 7 | -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown-base/dropdown-base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown-base/dropdown-base.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown-base/dropdown-base.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown-base/dropdown-base.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown-base/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown-base/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/dropdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/dropdown.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/dropdown.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/dropdown.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/dropdown.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/dropdown.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/dropdown.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/dropdown.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/usage/javascript.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/dropdown/usage/stencil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/dropdown/usage/stencil.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-help-text/form-help-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-help-text/form-help-text.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-help-text/form-help-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-help-text/form-help-text.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-help-text/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-help-text/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-help-text/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-help-text/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/form-label.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/form-label.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/form-label.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/form-label.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/form-label.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/form-label.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/form-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/form-label.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/test/form-label.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/test/form-label.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/test/form-label.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/test/form-label.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/form-label/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/form-label/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/icon.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/icon.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/icon.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/icon.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/test/icon.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/test/icon.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/test/icon.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/test/icon.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/icon/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/icon/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration-message/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration-message/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration-message/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration-message/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/illustration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/illustration.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/illustration.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/illustration.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/illustration.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/test/illustration.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/test/illustration.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/test/illustration.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/test/illustration.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/illustration/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/illustration/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/info-label.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/info-label.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/info-label.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/info-label.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/info-label.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/info-label.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/info-label.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/info-label.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/info-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/info-label.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/info-label.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/info-label.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/test/info-label.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/test/info-label.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/test/info-label.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/test/info-label.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/info-label/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/info-label/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/inline-editable-field/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/inline-editable-field/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/input-wrapper/input-wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/input-wrapper/input-wrapper.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/input-wrapper/input-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/input-wrapper/input-wrapper.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/input-wrapper/input-wrapper.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/input-wrapper/input-wrapper.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/input-wrapper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/input-wrapper/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/input-wrapper/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/input-wrapper/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/link.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/link.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/link.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/link.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/test/link.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/test/link.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/test/link.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/test/link.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/usage/javascript.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/link/usage/stencil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/link/usage/stencil.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/loader.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/loader.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/test/loader.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/test/loader.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/test/loader.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/test/loader.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/usage/javascript.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/loader/usage/stencil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/loader/usage/stencil.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/modal.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/modal.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/modal.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/modal.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/modal.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/modal.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/modal.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/modal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/modal.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/test/modal.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/test/modal.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/test/modal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/test/modal.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/modal/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/modal/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/multi-select-dropdown/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/multi-select-dropdown/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/multi-select-dropdown/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/multi-select-dropdown/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/portal/portal.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/portal/portal.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/portal/portal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/portal/portal.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/portal/portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/portal/portal.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/portal/portal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/portal/portal.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/portal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/portal/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list-item/radio-list-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list-item/radio-list-item.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list-item/radio-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list-item/radio-list-item.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list-item/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list-item/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list-item/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list-item/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/radio-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/radio-list.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/radio-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/radio-list.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/radio-list.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/radio-list.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/test/radio-list.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/test/radio-list.mock.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/test/radio-list.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/test/radio-list.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio-list/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio-list/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/radio.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/radio.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/radio.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/radio.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/radio.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/radio.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/radio.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/test/radio.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/test/radio.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/test/radio.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/test/radio.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/radio/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/radio/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/range.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/range.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/range.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/range.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/range.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/range.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/range.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/range.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/range.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/range.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/range.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/test/range.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/test/range.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/test/range.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/test/range.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/range/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/range/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/relative-time-picker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/relative-time-picker/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/relative-time-picker/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/relative-time-picker/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/search/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/search/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/search/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/search/search.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/search/search.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/search/search.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/search/test/search.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/search/test/search.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/search/test/search.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/search/test/search.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/search/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/search/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-create-option/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-create-option/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-multi-options/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-multi-options/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-option/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/select-option.config.ts: -------------------------------------------------------------------------------- 1 | export const LEVEL_OFFSET_PX = 24; 2 | -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/select-option.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-option/select-option.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/select-option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-option/select-option.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/select-option.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-option/select-option.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/test/select-option.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-option/test/select-option.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-option/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-option/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select-shortcuts-label/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select-shortcuts-label/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/select.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/select.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/select.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/select.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/select.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/select.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/select.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/select.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/select/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/select/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/single-select-dropdown/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/single-select-dropdown/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/single-select-dropdown/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/single-select-dropdown/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/state-indicator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/state-indicator/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/state-indicator/state-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/state-indicator/state-indicator.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/state-indicator/state-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/state-indicator/state-indicator.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/state-indicator/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/state-indicator/usage/javascript.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/state-indicator/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/state-indicator/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/state-indicator/usage/stencil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/state-indicator/usage/stencil.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/step-bar.config.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_LABEL = 'Progress:'; 2 | -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/step-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/step-bar.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/step-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/step-bar.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/step-bar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/step-bar.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/test/step-bar.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/test/step-bar.mock.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/test/step-bar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/test/step-bar.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-bar/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-bar/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-indicator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-indicator/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-indicator/step-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-indicator/step-indicator.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-indicator/step-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-indicator/step-indicator.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-indicator/step-indicator.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-indicator/step-indicator.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-indicator/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-indicator/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-progress-bar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-progress-bar/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-progress-bar/step-progress-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-progress-bar/step-progress-bar.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/step-progress-bar/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/step-progress-bar/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/summary-card.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/summary-card.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/summary-card.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/summary-card.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/summary-card.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/summary-card.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/summary-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/summary-card.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/summary-card.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/summary-card.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/test/summary-card.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/test/summary-card.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/test/summary-card.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/test/summary-card.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/summary-card/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/summary-card/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/switch-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/switch-button.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/switch-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/switch-button.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/switch-button.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/switch-button.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/test/switch-button.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/test/switch-button.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/usage/javascript.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/switch-button/usage/stencil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/switch-button/usage/stencil.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-item/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-item/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-item/tab-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-item/tab-item.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-item/tab-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-item/tab-item.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-item/test/tab-item.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-item/test/tab-item.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-item/test/tab-item.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-item/test/tab-item.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-item/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-item/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/tab-navigation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/tab-navigation.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/tab-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/tab-navigation.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/tab-navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/tab-navigation.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/tab-navigation.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/tab-navigation.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/tab-navigation.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/tab-navigation.utils.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tab-navigation/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tab-navigation/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/tag-alarm.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/tag-alarm.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/tag-alarm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/tag-alarm.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/tag-alarm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/tag-alarm.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/tag-alarm.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/tag-alarm.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/test/tag-alarm.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/test/tag-alarm.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/test/tag-alarm.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/test/tag-alarm.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-alarm/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-alarm/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-letter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-letter/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-letter/tag-letter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-letter/tag-letter.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-letter/tag-letter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-letter/tag-letter.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-letter/test/tag-letter.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-letter/test/tag-letter.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-letter/test/tag-letter.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-letter/test/tag-letter.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-letter/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-letter/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/tag-status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/tag-status.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/tag-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/tag-status.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/tag-status.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/tag-status.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/test/status.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/test/status.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/test/status.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/test/status.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag-status/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag-status/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag/tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag/tag.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag/tag.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag/test/tag.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag/test/tag.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag/test/tag.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag/test/tag.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tag/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tag/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/test/text-area.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/test/text-area.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/test/text-area.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/test/text-area.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/text-area.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/text-area.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/text-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/text-area.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-area/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-area/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/test/text-field.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/test/text-field.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/test/text-field.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/test/text-field.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/text-field.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/text-field.utils.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/text-field/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/text-field/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker-select-option/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker-select-option/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/time-picker.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/time-picker.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/time-picker.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/time-picker.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/time-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/time-picker.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/time-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/time-picker.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/time-picker.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/time-picker.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/time-picker/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/time-picker/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/test/toaster.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/test/toaster.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/test/toaster.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/test/toaster.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/toaster.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/toaster.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/toaster.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/toaster.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/toaster.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/toaster.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/toaster.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toaster/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toaster/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button-group/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button-group/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button/test/toggle-button.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button/test/toggle-button.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button/toggle-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button/toggle-button.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button/toggle-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button/toggle-button.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button/toggle-button.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button/toggle-button.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-button/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-button/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-switch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-switch/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-switch/toggle-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-switch/toggle-switch.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-switch/toggle-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-switch/toggle-switch.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-switch/toggle-switch.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-switch/toggle-switch.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/test/toggle-tip.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/test/toggle-tip.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/test/toggle-tip.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/test/toggle-tip.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/toggle-tip.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/toggle-tip.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/toggle-tip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/toggle-tip.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/toggle-tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/toggle-tip.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/toggle-tip.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/toggle-tip.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/toggle-tip/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/toggle-tip/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip-text/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip-text/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip-text/tooltip-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip-text/tooltip-text.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip-text/tooltip-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip-text/tooltip-text.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip-text/tooltip-text.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip-text/tooltip-text.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip-text/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip-text/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/test/tooltip.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/test/tooltip.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/test/tooltip.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/test/tooltip.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/tooltip.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/tooltip.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/tooltip.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/tooltip.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/tooltip.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/tooltip.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/tooltip.utils.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tooltip/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tooltip/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-dropdown/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-dropdown/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-dropdown/tree-dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-dropdown/tree-dropdown.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-dropdown/tree-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-dropdown/tree-dropdown.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/test/tree-item.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/test/tree-item.e2e.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/test/tree-item.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/test/tree-item.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/tree-item.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/tree-item.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/tree-item.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/tree-item.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/tree-item.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/tree-item.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/tree-item.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/tree-item.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/tree-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/tree-item.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/tree-item.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/tree-item.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree-item/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree-item/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/test/tree.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/test/tree.mock.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/test/tree.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/test/tree.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/tree.base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/tree.base.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/tree.light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/tree.light.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/tree.night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/tree.night.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/tree.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/tree.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/tree.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/tree/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/tree/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/utils.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/virtualized-list/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/virtualized-list/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-footer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-footer/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-footer/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-footer/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-footer/wizard-footer.config.ts: -------------------------------------------------------------------------------- 1 | export const TOOLTIP_CUSTOM_STYLE = { 2 | '--container-max-width': '350px' 3 | }; 4 | -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-footer/wizard-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-footer/wizard-footer.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-footer/wizard-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-footer/wizard-footer.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-footer/wizard-footer.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-footer/wizard-footer.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-header/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-header/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-header/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-header/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-header/wizard-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-header/wizard-header.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-header/wizard-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-header/wizard-header.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard-header/wizard-header.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard-header/wizard-header.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/readme.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/test/wizard.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/test/wizard.mock.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/test/wizard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/test/wizard.spec.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/usage/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/usage/react.md -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/wizard.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/wizard.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/wizard.scss -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/wizard.tsx -------------------------------------------------------------------------------- /packages/ui-components/src/components/wizard/wizard.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/components/wizard/wizard.types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/globals/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/globals/config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/globals/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/globals/globals.ts -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/agree/agree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/agree/agree.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/box-build/box-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/box-build/box-build.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/color-circle/color-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/color-circle/color-circle.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/disagree/disagree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/disagree/disagree.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/error-state/error-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/error-state/error-state.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-checkbox/es-checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-checkbox/es-checkbox.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-error-404/es-error-404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-error-404/es-error-404.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-error-503/es-error-503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-error-503/es-error-503.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-lock/es-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-lock/es-lock.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-metadata/es-metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-metadata/es-metadata.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-slowy/es-slowy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-slowy/es-slowy.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-table-build/es-table-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-table-build/es-table-build.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/es-table-empty/es-table-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/es-table-empty/es-table-empty.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/feedback-form/feedback-form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/feedback-form/feedback-form.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/illustration-component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/illustration-component.hbs -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/illustrations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/illustrations.scss -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/impact/impact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/impact/impact.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/import/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/import/import.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/party-dance/party-dance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/party-dance/party-dance.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/soft-agree/soft-agree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/soft-agree/soft-agree.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/table-build/table-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/table-build/table-build.svg -------------------------------------------------------------------------------- /packages/ui-components/src/illustrations/take-actions/take-actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/illustrations/take-actions/take-actions.svg -------------------------------------------------------------------------------- /packages/ui-components/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/index.html -------------------------------------------------------------------------------- /packages/ui-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/interfaces.d.ts -------------------------------------------------------------------------------- /packages/ui-components/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/types.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/arrays.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/arrays.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/clipboard.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/clipboard.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/css-class.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/css-class.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/date.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/date.config.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/date.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/date.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/date.spec.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/floating-ui.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/floating-ui.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/mouse-event.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/mouse-event.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/relative-time.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/relative-time.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/search.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/search.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/search.spec.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/select.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/select.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/string.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/string.helper.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/types/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/types/components.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/types/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/types/dates.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/types/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/types/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/types/intl.ts -------------------------------------------------------------------------------- /packages/ui-components/src/utils/types/lib-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/src/utils/types/lib-config.ts -------------------------------------------------------------------------------- /packages/ui-components/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/stencil.config.ts -------------------------------------------------------------------------------- /packages/ui-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/packages/ui-components/tsconfig.json -------------------------------------------------------------------------------- /patches/@pxtrn__storybook-addon-docs-stencil@8.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/patches/@pxtrn__storybook-addon-docs-stencil@8.0.0.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvininc/ui-components/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------