@hostlink/nuxt-light 1.21.9 → 1.21.10
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/dist/module.json
CHANGED
|
@@ -6,9 +6,9 @@ defineProps<{
|
|
|
6
6
|
</script>
|
|
7
7
|
<template>
|
|
8
8
|
<form-kit type="l-form" :bordered="false" :value="$props" @submit="$emit('submit', $event)">
|
|
9
|
-
<
|
|
9
|
+
<l-field :label="$t('File Manager')" stack-label :color="$light.color" hide-bottom-space>
|
|
10
10
|
<form-kit type="l-checkbox" label="Show" name="file_manager" true-value="1" false-value="0" />
|
|
11
|
-
</
|
|
11
|
+
</l-field>
|
|
12
12
|
</form-kit>
|
|
13
13
|
|
|
14
14
|
</template>
|
|
@@ -34,8 +34,8 @@ withDefaults(defineProps<LSystemSettingSecurityProps>(), {
|
|
|
34
34
|
|
|
35
35
|
<template>
|
|
36
36
|
|
|
37
|
-
<FormKit type="l-form" :bordered="false" :value="$props" @submit="$emit('submit'
|
|
38
|
-
<
|
|
37
|
+
<FormKit type="l-form" :bordered="false" :value="$props" @submit="$emit('submit', $event)">
|
|
38
|
+
<l-field label="Password policy" stack-label :color="$light.color">
|
|
39
39
|
<FormKit type="l-checkbox" label="Upper Case" name="password_contains_uppercase" true-value="1"
|
|
40
40
|
false-value="0" />
|
|
41
41
|
<FormKit type="l-checkbox" label="Lower Case" name="password_contains_lowercase" true-value="1"
|
|
@@ -43,7 +43,7 @@ withDefaults(defineProps<LSystemSettingSecurityProps>(), {
|
|
|
43
43
|
<FormKit type="l-checkbox" label="Number" name="password_contains_numeric" true-value="1" false-value="0" />
|
|
44
44
|
<FormKit type="l-checkbox" label="Special Character" name="password_contains_symbol" true-value="1"
|
|
45
45
|
false-value="0" />
|
|
46
|
-
</
|
|
46
|
+
</l-field>
|
|
47
47
|
|
|
48
48
|
<FormKit type="l-input" label="Password min Length" name="password_min_length" validation="required|number">
|
|
49
49
|
</FormKit>
|