├── .github └── dependabot.yml ├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── config └── tallcraftui.php ├── license.md ├── routes └── web.php └── src ├── Console └── Commands │ └── InstallTallcraftuiCommand.php ├── Enums ├── BorderRadius.php ├── DropdownAnimation.php ├── DropdownPosition.php ├── Position.php ├── Shadow.php ├── Size.php ├── ToastPosition.php └── Width.php ├── Helpers ├── BorderRadiusHelper.php ├── HeightHelper.php ├── ShadowHelper.php └── WidthHelper.php ├── TallCraftUiServiceProvider.php ├── Traits ├── AvatarTrait.php ├── AvatarsTrait.php ├── Borders │ └── HasInputBorders.php ├── CardTrait.php ├── Colors │ ├── HasAlertColors.php │ ├── HasBadgeColors.php │ ├── HasButtonColors.php │ ├── HasCheckboxColors.php │ ├── HasColorAttributes.php │ ├── HasProgressColors.php │ ├── HasProgressRadialColors.php │ ├── HasRadioColors.php │ ├── HasRangeColors.php │ └── HasStatColors.php ├── HasDropdownPosition.php ├── HasMarkdownImages.php ├── ModalTrait.php ├── Sizes │ ├── HasBadgeSizes.php │ ├── HasButtonSizes.php │ ├── HasCheckboxSizes.php │ ├── HasDrawerSizes.php │ ├── HasInputSizes.php │ ├── HasNativeSelectSizes.php │ ├── HasProgressRadialSizes.php │ ├── HasProgressSizes.php │ ├── HasRadioSizes.php │ ├── HasRatingSizes.php │ └── HasSelectSizes.php ├── SpinnerTrait.php ├── ToggleTrait.php ├── WithTcTable.php └── WithTcToast.php ├── View └── Components │ ├── Accordion │ ├── Accordion.php │ └── AccordionItem.php │ ├── Alert.php │ ├── Avatar.php │ ├── Avatars.php │ ├── Badge.php │ ├── Breadcrumb.php │ ├── BreadcrumbItem.php │ ├── Button.php │ ├── Card │ ├── Card.php │ ├── CardContent.php │ ├── CardFigure.php │ ├── CardFooter.php │ └── CardHeader.php │ ├── Checkbox.php │ ├── Clipboard.php │ ├── ColorPicker.php │ ├── Drawer.php │ ├── Dropdown.php │ ├── DropdownItem.php │ ├── Hint.php │ ├── Icon.php │ ├── Input.php │ ├── Label.php │ ├── Markdown.php │ ├── Menu.php │ ├── MenuItem.php │ ├── Modal.php │ ├── NativeSelect.php │ ├── Password.php │ ├── Progress.php │ ├── ProgressRadial.php │ ├── Radio.php │ ├── Range.php │ ├── Rating.php │ ├── Select.php │ ├── Separator.php │ ├── Spinner.php │ ├── Stat.php │ ├── Tab │ ├── Tab.php │ ├── TabContent.php │ └── TabItem.php │ ├── Table │ ├── Index.php │ ├── NotFound.php │ ├── Td.php │ ├── Th.php │ └── Tr.php │ ├── Textarea.php │ ├── ThemeToggle.php │ ├── Toast.php │ ├── Toggle.php │ └── Tooltip.php └── resources └── css └── tallcraftui.css /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | TODO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/composer.lock -------------------------------------------------------------------------------- /config/tallcraftui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/config/tallcraftui.php -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/license.md -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Console/Commands/InstallTallcraftuiCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Console/Commands/InstallTallcraftuiCommand.php -------------------------------------------------------------------------------- /src/Enums/BorderRadius.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/BorderRadius.php -------------------------------------------------------------------------------- /src/Enums/DropdownAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/DropdownAnimation.php -------------------------------------------------------------------------------- /src/Enums/DropdownPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/DropdownPosition.php -------------------------------------------------------------------------------- /src/Enums/Position.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/Position.php -------------------------------------------------------------------------------- /src/Enums/Shadow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/Shadow.php -------------------------------------------------------------------------------- /src/Enums/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/Size.php -------------------------------------------------------------------------------- /src/Enums/ToastPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/ToastPosition.php -------------------------------------------------------------------------------- /src/Enums/Width.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Enums/Width.php -------------------------------------------------------------------------------- /src/Helpers/BorderRadiusHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Helpers/BorderRadiusHelper.php -------------------------------------------------------------------------------- /src/Helpers/HeightHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Helpers/HeightHelper.php -------------------------------------------------------------------------------- /src/Helpers/ShadowHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Helpers/ShadowHelper.php -------------------------------------------------------------------------------- /src/Helpers/WidthHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Helpers/WidthHelper.php -------------------------------------------------------------------------------- /src/TallCraftUiServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/TallCraftUiServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/AvatarTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/AvatarTrait.php -------------------------------------------------------------------------------- /src/Traits/AvatarsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/AvatarsTrait.php -------------------------------------------------------------------------------- /src/Traits/Borders/HasInputBorders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Borders/HasInputBorders.php -------------------------------------------------------------------------------- /src/Traits/CardTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/CardTrait.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasAlertColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasAlertColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasBadgeColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasBadgeColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasButtonColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasButtonColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasCheckboxColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasCheckboxColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasColorAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasColorAttributes.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasProgressColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasProgressColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasProgressRadialColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasProgressRadialColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasRadioColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasRadioColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasRangeColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasRangeColors.php -------------------------------------------------------------------------------- /src/Traits/Colors/HasStatColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Colors/HasStatColors.php -------------------------------------------------------------------------------- /src/Traits/HasDropdownPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/HasDropdownPosition.php -------------------------------------------------------------------------------- /src/Traits/HasMarkdownImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/HasMarkdownImages.php -------------------------------------------------------------------------------- /src/Traits/ModalTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/ModalTrait.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasBadgeSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasBadgeSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasButtonSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasButtonSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasCheckboxSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasCheckboxSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasDrawerSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasDrawerSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasInputSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasInputSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasNativeSelectSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasNativeSelectSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasProgressRadialSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasProgressRadialSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasProgressSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasProgressSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasRadioSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasRadioSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasRatingSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasRatingSizes.php -------------------------------------------------------------------------------- /src/Traits/Sizes/HasSelectSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/Sizes/HasSelectSizes.php -------------------------------------------------------------------------------- /src/Traits/SpinnerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/SpinnerTrait.php -------------------------------------------------------------------------------- /src/Traits/ToggleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/ToggleTrait.php -------------------------------------------------------------------------------- /src/Traits/WithTcTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/WithTcTable.php -------------------------------------------------------------------------------- /src/Traits/WithTcToast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/Traits/WithTcToast.php -------------------------------------------------------------------------------- /src/View/Components/Accordion/Accordion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Accordion/Accordion.php -------------------------------------------------------------------------------- /src/View/Components/Accordion/AccordionItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Accordion/AccordionItem.php -------------------------------------------------------------------------------- /src/View/Components/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Alert.php -------------------------------------------------------------------------------- /src/View/Components/Avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Avatar.php -------------------------------------------------------------------------------- /src/View/Components/Avatars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Avatars.php -------------------------------------------------------------------------------- /src/View/Components/Badge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Badge.php -------------------------------------------------------------------------------- /src/View/Components/Breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Breadcrumb.php -------------------------------------------------------------------------------- /src/View/Components/BreadcrumbItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/BreadcrumbItem.php -------------------------------------------------------------------------------- /src/View/Components/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Button.php -------------------------------------------------------------------------------- /src/View/Components/Card/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Card/Card.php -------------------------------------------------------------------------------- /src/View/Components/Card/CardContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Card/CardContent.php -------------------------------------------------------------------------------- /src/View/Components/Card/CardFigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Card/CardFigure.php -------------------------------------------------------------------------------- /src/View/Components/Card/CardFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Card/CardFooter.php -------------------------------------------------------------------------------- /src/View/Components/Card/CardHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Card/CardHeader.php -------------------------------------------------------------------------------- /src/View/Components/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Checkbox.php -------------------------------------------------------------------------------- /src/View/Components/Clipboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Clipboard.php -------------------------------------------------------------------------------- /src/View/Components/ColorPicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/ColorPicker.php -------------------------------------------------------------------------------- /src/View/Components/Drawer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Drawer.php -------------------------------------------------------------------------------- /src/View/Components/Dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Dropdown.php -------------------------------------------------------------------------------- /src/View/Components/DropdownItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/DropdownItem.php -------------------------------------------------------------------------------- /src/View/Components/Hint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Hint.php -------------------------------------------------------------------------------- /src/View/Components/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Icon.php -------------------------------------------------------------------------------- /src/View/Components/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Input.php -------------------------------------------------------------------------------- /src/View/Components/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Label.php -------------------------------------------------------------------------------- /src/View/Components/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Markdown.php -------------------------------------------------------------------------------- /src/View/Components/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Menu.php -------------------------------------------------------------------------------- /src/View/Components/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/MenuItem.php -------------------------------------------------------------------------------- /src/View/Components/Modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Modal.php -------------------------------------------------------------------------------- /src/View/Components/NativeSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/NativeSelect.php -------------------------------------------------------------------------------- /src/View/Components/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Password.php -------------------------------------------------------------------------------- /src/View/Components/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Progress.php -------------------------------------------------------------------------------- /src/View/Components/ProgressRadial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/ProgressRadial.php -------------------------------------------------------------------------------- /src/View/Components/Radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Radio.php -------------------------------------------------------------------------------- /src/View/Components/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Range.php -------------------------------------------------------------------------------- /src/View/Components/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Rating.php -------------------------------------------------------------------------------- /src/View/Components/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Select.php -------------------------------------------------------------------------------- /src/View/Components/Separator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Separator.php -------------------------------------------------------------------------------- /src/View/Components/Spinner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Spinner.php -------------------------------------------------------------------------------- /src/View/Components/Stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Stat.php -------------------------------------------------------------------------------- /src/View/Components/Tab/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Tab/Tab.php -------------------------------------------------------------------------------- /src/View/Components/Tab/TabContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Tab/TabContent.php -------------------------------------------------------------------------------- /src/View/Components/Tab/TabItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Tab/TabItem.php -------------------------------------------------------------------------------- /src/View/Components/Table/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Table/Index.php -------------------------------------------------------------------------------- /src/View/Components/Table/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Table/NotFound.php -------------------------------------------------------------------------------- /src/View/Components/Table/Td.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Table/Td.php -------------------------------------------------------------------------------- /src/View/Components/Table/Th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Table/Th.php -------------------------------------------------------------------------------- /src/View/Components/Table/Tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Table/Tr.php -------------------------------------------------------------------------------- /src/View/Components/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Textarea.php -------------------------------------------------------------------------------- /src/View/Components/ThemeToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/ThemeToggle.php -------------------------------------------------------------------------------- /src/View/Components/Toast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Toast.php -------------------------------------------------------------------------------- /src/View/Components/Toggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Toggle.php -------------------------------------------------------------------------------- /src/View/Components/Tooltip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/View/Components/Tooltip.php -------------------------------------------------------------------------------- /src/resources/css/tallcraftui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developermithu/tallcraftui/HEAD/src/resources/css/tallcraftui.css --------------------------------------------------------------------------------