@fy-/fws-vue 2.1.54 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/fws/UserProfileStrict.vue +3 -3
- package/index.ts +17 -17
- package/package.json +3 -3
|
@@ -72,9 +72,9 @@ const rules = {
|
|
|
72
72
|
required,
|
|
73
73
|
ageValidator: props.force18
|
|
74
74
|
? helpers.withMessage(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
translate('fws_under_18_error_message'),
|
|
76
|
+
ageValidator,
|
|
77
|
+
)
|
|
78
78
|
: undefined,
|
|
79
79
|
},
|
|
80
80
|
AcceptedTerms: {
|
package/index.ts
CHANGED
|
@@ -8,18 +8,33 @@ import CmsArticleSingle from './components/fws/CmsArticleSingle.vue'
|
|
|
8
8
|
import DataTable from './components/fws/DataTable.vue'
|
|
9
9
|
import FilterData from './components/fws/FilterData.vue'
|
|
10
10
|
import UserData from './components/fws/UserData.vue'
|
|
11
|
+
// Components/FWS
|
|
12
|
+
import UserFlow from './components/fws/UserFlow.vue'
|
|
13
|
+
import UserOAuth2 from './components/fws/UserOAuth2.vue'
|
|
14
|
+
import UserProfile from './components/fws/UserProfile.vue'
|
|
15
|
+
|
|
16
|
+
import UserProfileStrict from './components/fws/UserProfileStrict.vue'
|
|
11
17
|
import { ClientOnly } from './components/ssr/ClientOnly'
|
|
12
18
|
import DefaultBreadcrumb from './components/ui/DefaultBreadcrumb.vue'
|
|
13
19
|
import DefaultConfirm from './components/ui/DefaultConfirm.vue'
|
|
14
|
-
|
|
15
20
|
import DefaultDropdown from './components/ui/DefaultDropdown.vue'
|
|
21
|
+
|
|
16
22
|
import DefaultDropdownLink from './components/ui/DefaultDropdownLink.vue'
|
|
17
23
|
import DefaultGallery from './components/ui/DefaultGallery.vue'
|
|
24
|
+
// Components/UI
|
|
25
|
+
import DefaultInput from './components/ui/DefaultInput.vue'
|
|
26
|
+
import DefaultLoader from './components/ui/DefaultLoader.vue'
|
|
27
|
+
import DefaultModal from './components/ui/DefaultModal.vue'
|
|
28
|
+
import DefaultNotif from './components/ui/DefaultNotif.vue'
|
|
29
|
+
import DefaultPaging from './components/ui/DefaultPaging.vue'
|
|
30
|
+
import DefaultSidebar from './components/ui/DefaultSidebar.vue'
|
|
31
|
+
import DefaultTagInput from './components/ui/DefaultTagInput.vue'
|
|
18
32
|
import CollapseTransition from './components/ui/transitions/CollapseTransition.vue'
|
|
19
33
|
import ExpandTransition from './components/ui/transitions/ExpandTransition.vue'
|
|
20
|
-
|
|
21
34
|
import FadeTransition from './components/ui/transitions/FadeTransition.vue'
|
|
22
35
|
import ScaleTransition from './components/ui/transitions/ScaleTransition.vue'
|
|
36
|
+
// Components/UI/Transitions
|
|
37
|
+
import SlideTransition from './components/ui/transitions/SlideTransition.vue'
|
|
23
38
|
import { useEventBus } from './composables/event-bus'
|
|
24
39
|
import { useRest } from './composables/rest'
|
|
25
40
|
import { useSeo } from './composables/seo'
|
|
@@ -44,21 +59,6 @@ import {
|
|
|
44
59
|
useUserCheckAsyncSimple,
|
|
45
60
|
useUserStore,
|
|
46
61
|
} from './stores/user'
|
|
47
|
-
// Components/UI/Transitions
|
|
48
|
-
import SlideTransition from './components/ui/transitions/SlideTransition.vue'
|
|
49
|
-
// Components/UI
|
|
50
|
-
import DefaultInput from './components/ui/DefaultInput.vue'
|
|
51
|
-
import DefaultLoader from './components/ui/DefaultLoader.vue'
|
|
52
|
-
import DefaultModal from './components/ui/DefaultModal.vue'
|
|
53
|
-
import DefaultNotif from './components/ui/DefaultNotif.vue'
|
|
54
|
-
import DefaultPaging from './components/ui/DefaultPaging.vue'
|
|
55
|
-
import DefaultSidebar from './components/ui/DefaultSidebar.vue'
|
|
56
|
-
import DefaultTagInput from './components/ui/DefaultTagInput.vue'
|
|
57
|
-
// Components/FWS
|
|
58
|
-
import UserFlow from './components/fws/UserFlow.vue'
|
|
59
|
-
import UserOAuth2 from './components/fws/UserOAuth2.vue'
|
|
60
|
-
import UserProfile from './components/fws/UserProfile.vue'
|
|
61
|
-
import UserProfileStrict from './components/fws/UserProfileStrict.vue'
|
|
62
62
|
// Css
|
|
63
63
|
import './style.css'
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fy-/fws-vue",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"author": "Florian 'Fy' Gasquez <m@fy.to>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/fy-to/FWJS#readme",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"typings": "index.ts",
|
|
28
28
|
"types": "index.ts",
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@fy-/fws-js": "^0.0
|
|
31
|
-
"@fy-/fws-types": "^0.
|
|
30
|
+
"@fy-/fws-js": "^0.1.0",
|
|
31
|
+
"@fy-/fws-types": "^0.1.x",
|
|
32
32
|
"@unhead/schema-org": "1.9.x",
|
|
33
33
|
"@unhead/ssr": "^1.9.x",
|
|
34
34
|
"@unhead/vue": "^1.9.x",
|