tailwind 3 upgrade part 1

This commit is contained in:
Čarodej
2022-01-28 11:41:13 +01:00
parent 42c2ffc274
commit 940a2de13d
63 changed files with 3924 additions and 8488 deletions
@@ -129,15 +129,15 @@
import AppInputSwitch from "../../../components/Admin/AppInputSwitch";
import AppInputText from "../../../components/Admin/AppInputText";
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
import MobileActionButton from '/resources/js/components/FilesView/MobileActionButton'
import SwitchInput from '/resources/js/components/Others/Forms/SwitchInput'
import SearchInput from '/resources/js/components/Others/Forms/SearchInput'
import FormLabel from '/resources/js/components/Others/Forms/FormLabel'
import MobileHeader from '/resources/js/components/Mobile/MobileHeader'
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
import PageHeader from '/resources/js/components/Others/PageHeader'
import Spinner from '/resources/js/components/FilesView/Spinner'
import MobileActionButton from "../../../components/FilesView/MobileActionButton";
import SwitchInput from "../../../components/Others/Forms/SwitchInput";
import SearchInput from "../../../components/Others/Forms/SearchInput";
import FormLabel from "../../../components/Others/Forms/FormLabel";
import MobileHeader from "../../../components/Mobile/MobileHeader";
import ButtonBase from "../../../components/FilesView/ButtonBase";
import InfoBox from "../../../components/Others/Forms/InfoBox";
import PageHeader from "../../../components/Others/PageHeader";
import Spinner from "../../../components/FilesView/Spinner";
import {PlusIcon, XIcon} from 'vue-feather-icons'
import {debounce, omitBy} from 'lodash'
import {events} from '/resources/js/bus'
+8 -8
View File
@@ -29,14 +29,14 @@
</template>
<script>
import HeroScreenshot from '/resources/js/components/Index/IndexHeroScreenshot'
import PricingTables from '/resources/js/components/Index/IndexPricingTables'
import MainFeatures from '/resources/js/components/Index/IndexMainFeatures'
import Navigation from '/resources/js/components/Index/IndexNavigation'
import PageHeader from '/resources/js/components/Index/IndexPageHeader'
import GetStarted from '/resources/js/components/Index/IndexGetStarted'
import PageFooter from '/resources/js/components/Index/IndexPageFooter'
import Spinner from '/resources/js/components/FilesView/Spinner'
import HeroScreenshot from '../../components/Index/IndexHeroScreenshot'
import PricingTables from '../../components/Index/IndexPricingTables'
import MainFeatures from '../../components/Index/IndexMainFeatures'
import Navigation from '../../components/Index/IndexNavigation'
import PageHeader from '../../components/Index/IndexPageHeader'
import GetStarted from '../../components/Index/IndexGetStarted'
import PageFooter from '../../components/Index/IndexPageFooter'
import Spinner from "../../components/FilesView/Spinner";
import { mapGetters } from 'vuex'
import axios from 'axios'
@@ -135,12 +135,12 @@
<script>
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
import AuthContentWrapper from '/resources/js/components/Auth/AuthContentWrapper'
import SelectInput from '/resources/js/components/Others/Forms/SelectInput'
import FormLabel from '/resources/js/components/Others/Forms/FormLabel'
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
import AuthContent from '/resources/js/components/Auth/AuthContent'
import AuthButton from '/resources/js/components/Auth/AuthButton'
import AuthContentWrapper from "../../components/Auth/AuthContentWrapper";
import SelectInput from "../../components/Others/Forms/SelectInput";
import FormLabel from "../../components/Others/Forms/FormLabel";
import InfoBox from "../../components/Others/Forms/InfoBox";
import AuthContent from "../../components/Auth/AuthContent";
import AuthButton from "../../components/Auth/AuthButton";
import {SettingsIcon} from 'vue-feather-icons'
import Headline from "../Auth/Headline"
import {required} from 'vee-validate/dist/rules'
+4 -4
View File
@@ -81,10 +81,10 @@
<script>
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
import SwitchInput from '/resources/js/components/Others/Forms/SwitchInput'
import FormLabel from '/resources/js/components/Others/Forms/FormLabel'
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
import SwitchInput from "../../components/Others/Forms/SwitchInput";
import FormLabel from "../../components/Others/Forms/FormLabel";
import ButtonBase from "../../components/FilesView/ButtonBase";
import InfoBox from "../../components/Others/Forms/InfoBox";
import AppInputSwitch from "../../components/Admin/AppInputSwitch"
import AppInputButton from "../../components/Admin/AppInputButton"
import AppInputText from "../../components/Admin/AppInputText"