├── .editorconfig ├── .github └── CONTRIBUTING.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CNAME ├── LICENSE ├── README.md ├── lerna.json ├── package.json ├── packages ├── colors │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── scripts │ │ └── build.js │ ├── src │ │ ├── index.ts │ │ └── scss │ │ │ ├── _color.scss │ │ │ └── index.scss │ ├── tsconfig.json │ └── tslint.json ├── icons-react │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── scripts │ │ └── build.js │ ├── src │ │ ├── index.tsx │ │ └── svgs │ │ │ ├── alert-circle.svg │ │ │ ├── android.svg │ │ │ ├── apple.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── building.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-sort.svg │ │ │ ├── caret-up.svg │ │ │ ├── check-circle.svg │ │ │ ├── check.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── circle.svg │ │ │ ├── close-circle.svg │ │ │ ├── close.svg │ │ │ ├── comment.svg │ │ │ ├── document.svg │ │ │ ├── download-thicked.svg │ │ │ ├── download.svg │ │ │ ├── edit.svg │ │ │ ├── expand-down.svg │ │ │ ├── expand-left.svg │ │ │ ├── expand-right-circle.svg │ │ │ ├── expand-right.svg │ │ │ ├── expand-up.svg │ │ │ ├── expand.svg │ │ │ ├── eye-close.svg │ │ │ ├── eye.svg │ │ │ ├── folder.svg │ │ │ ├── gear.svg │ │ │ ├── graph-line.svg │ │ │ ├── graph-mix.svg │ │ │ ├── hamburger.svg │ │ │ ├── handle.svg │ │ │ ├── heart-outline.svg │ │ │ ├── heart.svg │ │ │ ├── list.svg │ │ │ ├── mail.svg │ │ │ ├── more-horizontal.svg │ │ │ ├── more-vertical.svg │ │ │ ├── pencil.svg │ │ │ ├── people.svg │ │ │ ├── phone.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus.svg │ │ │ ├── reload.svg │ │ │ ├── search-list.svg │ │ │ ├── search.svg │ │ │ ├── share.svg │ │ │ ├── star-outline.svg │ │ │ ├── star.svg │ │ │ ├── tag.svg │ │ │ ├── trash.svg │ │ │ └── user-plus.svg │ ├── tsconfig.json │ └── tslint.json └── react │ ├── .gitignore │ ├── .npmignore │ ├── .storybook │ └── main.js │ ├── README.md │ ├── docs │ └── .gitkeep │ ├── package.json │ ├── rollup.config.js │ ├── src │ ├── components │ │ ├── Alert │ │ │ ├── Alert.style.scss │ │ │ ├── Alert.tsx │ │ │ └── index.ts │ │ ├── Avatar │ │ │ ├── Avatar.style.scss │ │ │ ├── Avatar.tsx │ │ │ └── index.ts │ │ ├── Badge │ │ │ ├── Badge.style.scss │ │ │ ├── Badge.tsx │ │ │ └── index.ts │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.style.scss │ │ │ ├── Breadcrumb.tsx │ │ │ ├── BreadcrumbItem.tsx │ │ │ └── index.ts │ │ ├── Button │ │ │ ├── Button.style.scss │ │ │ ├── Button.tsx │ │ │ └── index.ts │ │ ├── Callout │ │ │ ├── Callout.style.scss │ │ │ ├── Callout.tsx │ │ │ └── index.ts │ │ ├── Card │ │ │ ├── Card.style.scss │ │ │ ├── Card.tsx │ │ │ └── index.ts │ │ ├── Checkbox │ │ │ ├── Checkbox.style.scss │ │ │ ├── Checkbox.tsx │ │ │ └── index.ts │ │ ├── Collapse │ │ │ ├── Collapse.style.scss │ │ │ ├── Collapse.tsx │ │ │ └── index.ts │ │ ├── Divider │ │ │ ├── Divider.style.scss │ │ │ ├── Divider.tsx │ │ │ └── index.ts │ │ ├── Dropdown │ │ │ ├── Dropdown.style.scss │ │ │ ├── Dropdown.tsx │ │ │ └── index.tsx │ │ ├── FloatingLabelInput │ │ │ ├── Email.tsx │ │ │ ├── FloatingLabelInput.style.scss │ │ │ ├── Input.tsx │ │ │ ├── Number.tsx │ │ │ ├── Password.tsx │ │ │ ├── PhoneNumber.tsx │ │ │ ├── Text.tsx │ │ │ └── index.tsx │ │ ├── FloatingLabelSelect │ │ │ ├── FloatingLabelSelect.style.scss │ │ │ ├── FloatingLabelSelect.tsx │ │ │ ├── FloatingLabelSelectContext.tsx │ │ │ ├── FloatingLabelSelectOption.tsx │ │ │ └── index.tsx │ │ ├── Grid │ │ │ ├── Col.tsx │ │ │ ├── Grid.style.scss │ │ │ ├── Row.tsx │ │ │ ├── RowContext.ts │ │ │ └── index.ts │ │ ├── Header │ │ │ ├── Header.style.scss │ │ │ ├── Header.tsx │ │ │ └── index.ts │ │ ├── Icon │ │ │ ├── Icon.style.scss │ │ │ ├── Icon.tsx │ │ │ └── index.ts │ │ ├── InlineMessage │ │ │ ├── InlineMessage.style.scss │ │ │ ├── InlineMessage.tsx │ │ │ └── index.ts │ │ ├── Input │ │ │ ├── Email.tsx │ │ │ ├── Input.style.scss │ │ │ ├── Input.tsx │ │ │ ├── Number.tsx │ │ │ ├── Password.tsx │ │ │ ├── PhoneNumber.tsx │ │ │ ├── Text.tsx │ │ │ ├── Textarea.style.scss │ │ │ ├── Textarea.tsx │ │ │ ├── calculateNodeHeight.tsx │ │ │ └── index.ts │ │ ├── Link │ │ │ ├── Link.style.scss │ │ │ ├── Link.tsx │ │ │ └── index.ts │ │ ├── Menu │ │ │ ├── Menu.style.scss │ │ │ ├── Menu.tsx │ │ │ ├── MenuDivider.tsx │ │ │ ├── MenuItem.tsx │ │ │ └── index.ts │ │ ├── Modal │ │ │ ├── Modal.style.scss │ │ │ ├── Modal.tsx │ │ │ └── index.ts │ │ ├── Navigation │ │ │ ├── Navigation.style.scss │ │ │ ├── Navigation.tsx │ │ │ ├── NavigationContext.tsx │ │ │ ├── NavigationGroup.tsx │ │ │ ├── NavigationItem.tsx │ │ │ └── index.ts │ │ ├── Pagination │ │ │ ├── Pagination.style.scss │ │ │ ├── Pagination.tsx │ │ │ └── index.ts │ │ ├── Popover │ │ │ ├── Popover.style.scss │ │ │ ├── Popover.tsx │ │ │ └── index.ts │ │ ├── ProgressIndicator │ │ │ ├── ProgressIndicator.style.scss │ │ │ ├── ProgressIndicator.tsx │ │ │ ├── ProgressIndicatorItem.tsx │ │ │ └── index.ts │ │ ├── Radio │ │ │ ├── Radio.style.scss │ │ │ ├── Radio.tsx │ │ │ ├── RadioContext.tsx │ │ │ ├── RadioGroup.tsx │ │ │ └── index.ts │ │ ├── Scroll │ │ │ ├── Scroll.style.scss │ │ │ ├── Scroll.tsx │ │ │ └── index.tsx │ │ ├── Select │ │ │ ├── Select.style.scss │ │ │ ├── Select.tsx │ │ │ ├── SelectOption.tsx │ │ │ └── index.ts │ │ ├── Skeleton │ │ │ ├── SekeletonParagraph.tsx │ │ │ ├── Skeleton.style.scss │ │ │ ├── SkeletonAvatar.tsx │ │ │ ├── SkeletonBox.tsx │ │ │ ├── SkeletonButton.tsx │ │ │ ├── SkeletonInput.tsx │ │ │ └── index.ts │ │ ├── Slider │ │ │ ├── Slider.style.scss │ │ │ ├── Slider.tsx │ │ │ └── index.ts │ │ ├── Spacer │ │ │ ├── Spacer.style.scss │ │ │ ├── Spacer.tsx │ │ │ └── index.ts │ │ ├── Spinner │ │ │ ├── Spinner.style.scss │ │ │ ├── Spinner.tsx │ │ │ └── index.ts │ │ ├── Stepper │ │ │ ├── Stepper.style.scss │ │ │ ├── Stepper.tsx │ │ │ ├── StepperItem.tsx │ │ │ └── index.ts │ │ ├── Switch │ │ │ ├── Switch.style.scss │ │ │ ├── Switch.tsx │ │ │ ├── SwitchContext.tsx │ │ │ ├── SwitchGroup.tsx │ │ │ └── index.ts │ │ ├── Tab │ │ │ ├── ScrollPane.tsx │ │ │ ├── Tab.style.scss │ │ │ ├── Tab.tsx │ │ │ ├── TabItem.tsx │ │ │ └── index.ts │ │ ├── Table │ │ │ ├── Table.style.scss │ │ │ ├── Table.tsx │ │ │ ├── TableBody.tsx │ │ │ ├── TableCell.tsx │ │ │ ├── TableFoot.tsx │ │ │ ├── TableHead.tsx │ │ │ ├── TableRow.tsx │ │ │ └── index.ts │ │ ├── Tag │ │ │ ├── Tag.style.scss │ │ │ ├── Tag.tsx │ │ │ └── index.ts │ │ ├── Text │ │ │ ├── Text.style.scss │ │ │ ├── Text.tsx │ │ │ └── index.ts │ │ ├── Toast │ │ │ ├── Toast.style.scss │ │ │ ├── Toast.tsx │ │ │ ├── ToastManager.tsx │ │ │ ├── core.tsx │ │ │ └── index.ts │ │ ├── Toggle │ │ │ ├── Toggle.style.scss │ │ │ ├── Toggle.tsx │ │ │ └── index.ts │ │ ├── Tooltip │ │ │ ├── Tooltip.style.scss │ │ │ ├── Tooltip.tsx │ │ │ └── index.ts │ │ ├── Upload │ │ │ ├── Upload.style.scss │ │ │ ├── Upload.tsx │ │ │ └── index.ts │ │ ├── _config │ │ │ ├── ConfigContext.ts │ │ │ └── config.ts │ │ ├── _hook │ │ │ ├── index.ts │ │ │ └── useTimeout.ts │ │ └── _transition │ │ │ ├── ExpandTransition.tsx │ │ │ ├── FadeTransition.tsx │ │ │ ├── Transition.style.scss │ │ │ └── index.ts │ ├── index.ts │ ├── styles │ │ ├── base │ │ │ ├── _core.scss │ │ │ └── _reset.scss │ │ ├── helpers │ │ │ └── _mixins.scss │ │ ├── index.scss │ │ └── variables │ │ │ ├── _color.scss │ │ │ ├── _motion.scss │ │ │ ├── _screen.scss │ │ │ ├── _spacing.scss │ │ │ └── _typography.scss │ └── utils │ │ ├── GUID.ts │ │ └── index.ts │ ├── stories │ ├── 00-Introduce.stories.tsx │ ├── 01-Styleguide.stories.tsx │ ├── 02-Alert.stories.tsx │ ├── 02-Avatar.stories.tsx │ ├── 02-Badge.stories.tsx │ ├── 02-Breadcrumb.stories.tsx │ ├── 02-Button.stories.tsx │ ├── 02-Callout.stories.tsx │ ├── 02-Card.stories.tsx │ ├── 02-Checkbox.stories.tsx │ ├── 02-Collapse.stories.tsx │ ├── 02-Divider.stories.tsx │ ├── 02-Dropdown.stories.tsx │ ├── 02-FloatingLabelInput.stories.tsx │ ├── 02-FloatingLabelSelect.stories.tsx │ ├── 02-Grid.stories.tsx │ ├── 02-Header.stories.tsx │ ├── 02-Icon.stories.tsx │ ├── 02-InlineMessage.stories.tsx │ ├── 02-Input.stories.tsx │ ├── 02-Link.stories.tsx │ ├── 02-Menu.stories.tsx │ ├── 02-Modal.stories.tsx │ ├── 02-Navigation.stories.tsx │ ├── 02-Pagination.stories.tsx │ ├── 02-Popover.stories.tsx │ ├── 02-ProgressIndicator.stories.tsx │ ├── 02-Radio.stories.tsx │ ├── 02-Scroll.stories.tsx │ ├── 02-Select.stories.tsx │ ├── 02-Skeleton.stories.tsx │ ├── 02-Slider.stories.tsx │ ├── 02-Spacer.stories.tsx │ ├── 02-Spinner.stories.tsx │ ├── 02-Stepper.stories.tsx │ ├── 02-Switch.stories.tsx │ ├── 02-Tab.stories.tsx │ ├── 02-Table.stories.tsx │ ├── 02-Tag.stories.tsx │ ├── 02-Text.stories.tsx │ ├── 02-Toast.stories.tsx │ ├── 02-Toggle.stories.tsx │ ├── 02-Tooltip.stories.tsx │ └── 02-Upload.stories.tsx │ ├── tsconfig.json │ └── tslint.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | WIP 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/.prettierrc -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | design.caple.ai -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/README.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/package.json -------------------------------------------------------------------------------- /packages/colors/.npmignore: -------------------------------------------------------------------------------- 1 | scripts/ -------------------------------------------------------------------------------- /packages/colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/README.md -------------------------------------------------------------------------------- /packages/colors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/package.json -------------------------------------------------------------------------------- /packages/colors/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/rollup.config.js -------------------------------------------------------------------------------- /packages/colors/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/scripts/build.js -------------------------------------------------------------------------------- /packages/colors/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/src/index.ts -------------------------------------------------------------------------------- /packages/colors/src/scss/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/src/scss/_color.scss -------------------------------------------------------------------------------- /packages/colors/src/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/src/scss/index.scss -------------------------------------------------------------------------------- /packages/colors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/tsconfig.json -------------------------------------------------------------------------------- /packages/colors/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/colors/tslint.json -------------------------------------------------------------------------------- /packages/icons-react/.npmignore: -------------------------------------------------------------------------------- 1 | **/scripts/** -------------------------------------------------------------------------------- /packages/icons-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/README.md -------------------------------------------------------------------------------- /packages/icons-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/package.json -------------------------------------------------------------------------------- /packages/icons-react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/rollup.config.js -------------------------------------------------------------------------------- /packages/icons-react/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/scripts/build.js -------------------------------------------------------------------------------- /packages/icons-react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/index.tsx -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/alert-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/alert-circle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/android.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/apple.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/archive.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/arrow-left.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/arrow-right.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/building.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/caret-down.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/caret-sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/caret-sort.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/caret-up.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/check-circle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/check.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/chevron-down.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/chevron-left.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/chevron-right.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/chevron-up.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/circle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/close-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/close-circle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/close.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/comment.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/document.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/download-thicked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/download-thicked.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/download.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/edit.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/expand-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/expand-down.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/expand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/expand-left.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/expand-right-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/expand-right-circle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/expand-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/expand-right.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/expand-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/expand-up.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/expand.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/eye-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/eye-close.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/eye.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/folder.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/gear.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/graph-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/graph-line.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/graph-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/graph-mix.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/hamburger.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/handle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/heart-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/heart-outline.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/heart.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/list.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/mail.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/more-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/more-horizontal.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/more-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/more-vertical.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/pencil.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/people.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/phone.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/plus-circle.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/plus.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/reload.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/search-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/search-list.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/search.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/share.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/star-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/star-outline.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/star.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/tag.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/trash.svg -------------------------------------------------------------------------------- /packages/icons-react/src/svgs/user-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/src/svgs/user-plus.svg -------------------------------------------------------------------------------- /packages/icons-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/tsconfig.json -------------------------------------------------------------------------------- /packages/icons-react/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/icons-react/tslint.json -------------------------------------------------------------------------------- /packages/react/.gitignore: -------------------------------------------------------------------------------- 1 | storybook-static -------------------------------------------------------------------------------- /packages/react/.npmignore: -------------------------------------------------------------------------------- 1 | stories/ 2 | src/ 3 | .storybook 4 | docs/ -------------------------------------------------------------------------------- /packages/react/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/.storybook/main.js -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/rollup.config.js -------------------------------------------------------------------------------- /packages/react/src/components/Alert/Alert.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Alert/Alert.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Alert/Alert.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Alert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Alert'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Avatar/Avatar.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Avatar/Avatar.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Avatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Avatar'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Badge/Badge.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Badge/Badge.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Badge'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Breadcrumb/Breadcrumb.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Breadcrumb/Breadcrumb.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Breadcrumb/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Breadcrumb/Breadcrumb.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Breadcrumb/BreadcrumbItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Breadcrumb/BreadcrumbItem.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Breadcrumb/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Breadcrumb'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Button/Button.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Button/Button.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Callout/Callout.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Callout/Callout.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Callout/Callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Callout/Callout.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Callout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Callout'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Card/Card.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Card/Card.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Card/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Card'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Checkbox/Checkbox.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Checkbox/Checkbox.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Checkbox'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Collapse/Collapse.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Collapse/Collapse.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Collapse/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Collapse/Collapse.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Collapse/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Collapse'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Divider/Divider.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Divider/Divider.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Divider/Divider.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Divider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Divider'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Dropdown/Dropdown.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Dropdown/Dropdown.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Dropdown'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/Email.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/FloatingLabelInput.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/FloatingLabelInput.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/Input.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/Number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/Number.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/Password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/Password.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/PhoneNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/PhoneNumber.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/Text.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelInput/index.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelSelect/FloatingLabelSelect.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelSelect/FloatingLabelSelect.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelSelect/FloatingLabelSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelSelect/FloatingLabelSelect.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelSelect/FloatingLabelSelectContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelSelect/FloatingLabelSelectContext.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelSelect/FloatingLabelSelectOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/FloatingLabelSelect/FloatingLabelSelectOption.tsx -------------------------------------------------------------------------------- /packages/react/src/components/FloatingLabelSelect/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './FloatingLabelSelect'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Grid/Col.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Grid/Col.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Grid/Grid.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Grid/Grid.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Grid/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Grid/Row.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Grid/RowContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Grid/RowContext.ts -------------------------------------------------------------------------------- /packages/react/src/components/Grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Grid/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/Header/Header.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Header/Header.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Icon/Icon.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Icon/Icon.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Icon/Icon.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Icon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Icon'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/InlineMessage/InlineMessage.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/InlineMessage/InlineMessage.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/InlineMessage/InlineMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/InlineMessage/InlineMessage.tsx -------------------------------------------------------------------------------- /packages/react/src/components/InlineMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InlineMessage'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Input/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Email.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/Input.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Input.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Input.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/Number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Number.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/Password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Password.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/PhoneNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/PhoneNumber.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Text.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/Textarea.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Textarea.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Input/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/Textarea.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/calculateNodeHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/calculateNodeHeight.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Input/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/Link/Link.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Link/Link.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Link/Link.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Link/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Link'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Menu/Menu.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Menu/Menu.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Menu/MenuDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Menu/MenuDivider.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Menu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Menu/MenuItem.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Menu/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Menu'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Modal/Modal.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Modal/Modal.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Modal'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Navigation/Navigation.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Navigation/Navigation.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Navigation/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Navigation/Navigation.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Navigation/NavigationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Navigation/NavigationContext.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Navigation/NavigationGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Navigation/NavigationGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Navigation/NavigationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Navigation/NavigationItem.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Navigation/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Navigation'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Pagination/Pagination.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Pagination/Pagination.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Pagination/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Pagination'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Popover/Popover.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Popover/Popover.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Popover/Popover.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Popover/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Popover'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/ProgressIndicator/ProgressIndicator.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/ProgressIndicator/ProgressIndicator.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/ProgressIndicator/ProgressIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/ProgressIndicator/ProgressIndicator.tsx -------------------------------------------------------------------------------- /packages/react/src/components/ProgressIndicator/ProgressIndicatorItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/ProgressIndicator/ProgressIndicatorItem.tsx -------------------------------------------------------------------------------- /packages/react/src/components/ProgressIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProgressIndicator'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Radio/Radio.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Radio/Radio.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Radio/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Radio/Radio.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Radio/RadioContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Radio/RadioContext.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Radio/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Radio/RadioGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Radio/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Radio'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Scroll/Scroll.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Scroll/Scroll.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Scroll/Scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Scroll/Scroll.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Scroll/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Scroll'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Select/Select.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Select/Select.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Select/Select.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Select/SelectOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Select/SelectOption.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Select/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Select'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/SekeletonParagraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/SekeletonParagraph.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/Skeleton.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/Skeleton.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/SkeletonAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/SkeletonAvatar.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/SkeletonBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/SkeletonBox.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/SkeletonButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/SkeletonButton.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/SkeletonInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/SkeletonInput.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Skeleton/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/Slider/Slider.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Slider/Slider.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Slider/Slider.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Slider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Slider'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Spacer/Spacer.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Spacer/Spacer.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Spacer/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Spacer/Spacer.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Spacer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spacer'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Spinner/Spinner.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Spinner/Spinner.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Stepper/Stepper.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Stepper/Stepper.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Stepper/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Stepper/Stepper.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Stepper/StepperItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Stepper/StepperItem.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Stepper/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Stepper'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Switch/Switch.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Switch/Switch.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Switch/SwitchContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Switch/SwitchContext.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Switch/SwitchGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Switch/SwitchGroup.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Switch/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Switch'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Tab/ScrollPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tab/ScrollPane.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Tab/Tab.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tab/Tab.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Tab/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tab/Tab.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Tab/TabItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tab/TabItem.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Tab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Tab'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Table/Table.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/Table.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/Table.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Table/TableBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/TableBody.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Table/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/TableCell.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Table/TableFoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/TableFoot.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Table/TableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/TableHead.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Table/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Table/TableRow.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Table/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Table'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Tag/Tag.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tag/Tag.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Tag/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tag/Tag.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Tag/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Tag'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Text/Text.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Text/Text.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Text/Text.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Text/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Text'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Toast/Toast.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Toast/Toast.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Toast/Toast.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Toast/ToastManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Toast/ToastManager.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Toast/core.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Toast/core.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Toast/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './core'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Toggle/Toggle.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Toggle/Toggle.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Toggle/Toggle.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Toggle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Toggle'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Tooltip/Tooltip.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tooltip/Tooltip.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Tooltip'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/Upload/Upload.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Upload/Upload.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/Upload/Upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/Upload/Upload.tsx -------------------------------------------------------------------------------- /packages/react/src/components/Upload/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Upload'; 2 | -------------------------------------------------------------------------------- /packages/react/src/components/_config/ConfigContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_config/ConfigContext.ts -------------------------------------------------------------------------------- /packages/react/src/components/_config/config.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | prefix: 'caple', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/react/src/components/_hook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_hook/index.ts -------------------------------------------------------------------------------- /packages/react/src/components/_hook/useTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_hook/useTimeout.ts -------------------------------------------------------------------------------- /packages/react/src/components/_transition/ExpandTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_transition/ExpandTransition.tsx -------------------------------------------------------------------------------- /packages/react/src/components/_transition/FadeTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_transition/FadeTransition.tsx -------------------------------------------------------------------------------- /packages/react/src/components/_transition/Transition.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_transition/Transition.style.scss -------------------------------------------------------------------------------- /packages/react/src/components/_transition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/components/_transition/index.ts -------------------------------------------------------------------------------- /packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/index.ts -------------------------------------------------------------------------------- /packages/react/src/styles/base/_core.scss: -------------------------------------------------------------------------------- 1 | $prefix: 'caple'; 2 | -------------------------------------------------------------------------------- /packages/react/src/styles/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/base/_reset.scss -------------------------------------------------------------------------------- /packages/react/src/styles/helpers/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/helpers/_mixins.scss -------------------------------------------------------------------------------- /packages/react/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/index.scss -------------------------------------------------------------------------------- /packages/react/src/styles/variables/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/variables/_color.scss -------------------------------------------------------------------------------- /packages/react/src/styles/variables/_motion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/variables/_motion.scss -------------------------------------------------------------------------------- /packages/react/src/styles/variables/_screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/variables/_screen.scss -------------------------------------------------------------------------------- /packages/react/src/styles/variables/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/variables/_spacing.scss -------------------------------------------------------------------------------- /packages/react/src/styles/variables/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/styles/variables/_typography.scss -------------------------------------------------------------------------------- /packages/react/src/utils/GUID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/utils/GUID.ts -------------------------------------------------------------------------------- /packages/react/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/src/utils/index.ts -------------------------------------------------------------------------------- /packages/react/stories/00-Introduce.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/00-Introduce.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/01-Styleguide.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/01-Styleguide.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Alert.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Alert.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Avatar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Avatar.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Badge.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Breadcrumb.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Breadcrumb.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Button.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Callout.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Callout.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Card.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Checkbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Checkbox.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Collapse.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Collapse.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Divider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Divider.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Dropdown.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-FloatingLabelInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-FloatingLabelInput.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-FloatingLabelSelect.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-FloatingLabelSelect.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Grid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Grid.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Header.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Icon.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-InlineMessage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-InlineMessage.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Input.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Link.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Link.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Menu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Menu.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Modal.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Navigation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Navigation.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Pagination.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Pagination.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Popover.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Popover.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-ProgressIndicator.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-ProgressIndicator.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Radio.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Radio.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Scroll.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Scroll.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Select.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Skeleton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Skeleton.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Slider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Slider.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Spacer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Spacer.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Spinner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Spinner.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Stepper.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Stepper.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Switch.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Switch.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Tab.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Tab.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Table.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Tag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Tag.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Text.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Toast.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Toast.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Toggle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Toggle.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Tooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Tooltip.stories.tsx -------------------------------------------------------------------------------- /packages/react/stories/02-Upload.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/stories/02-Upload.stories.tsx -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/packages/react/tslint.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobaltinc/caple-design-system/HEAD/yarn.lock --------------------------------------------------------------------------------