aloha-vue 1.2.228 → 1.2.229
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/docs/src/views/Form/PageInput/PageInput.js +24 -23
- package/docs/src/views/Form/PageInput/PageInput.pug +43 -36
- package/docs/src/views/PageModalWizard/compositionAPI/PropsAPI.js +7 -0
- package/docs/src/views/PageWizard/PageWizard.js +97 -95
- package/docs/src/views/PageWizard/PageWizard.pug +73 -71
- package/docs/src/views/PageWizard/PageWizardDemo/PageWizardDemo.js +3 -3
- package/docs/src/views/PageWizard/PageWizardDemo/compositionAPI/JsAPI.js +3 -3
- package/docs/src/views/PageWizard/PageWizardShowOnlyActiveStepMobile/PageWizardShowOnlyActiveStepMobile.js +3 -3
- package/docs/src/views/PageWizard/PageWizardShowOnlyActiveStepMobile/compositionAPI/JsAPI.js +3 -3
- package/docs/src/views/PageWizard/PageWizardStepsErrors/PageWizardStepsErrors.js +2 -2
- package/docs/src/views/PageWizard/PageWizardStepsErrors/compositionAPI/JsAPI.js +2 -2
- package/docs/src/views/PageWizard/PageWizardStepsWarnings/PageWizardStepsWarnings.js +2 -2
- package/docs/src/views/PageWizard/PageWizardStepsWarnings/compositionAPI/JsAPI.js +2 -2
- package/docs/src/views/PageWizard/PageWizardSubType/PageWizardSubType.js +58 -0
- package/docs/src/views/PageWizard/PageWizardSubType/PageWizardSubType.pug +174 -0
- package/docs/src/views/PageWizard/PageWizardSubType/PageWizardSubType.vue +2 -0
- package/docs/src/views/PageWizard/PageWizardSubType/compositionAPI/HtmlAPI.js +181 -0
- package/docs/src/views/PageWizard/PageWizardSubType/compositionAPI/JsAPI.js +49 -0
- package/docs/src/views/PageWizard/PageWizardType/PageWizardType.js +58 -85
- package/docs/src/views/PageWizard/PageWizardType/PageWizardType.pug +128 -15
- package/docs/src/views/PageWizard/PageWizardType/compositionAPI/HtmlAPI.js +134 -21
- package/docs/src/views/PageWizard/PageWizardType/compositionAPI/JsAPI.js +49 -77
- package/docs/src/views/PageWizard/compositionAPI/PropsAPI.js +7 -0
- package/docs/src/views/PageWizard/i18n/ar.json +19 -16
- package/docs/src/views/PageWizard/i18n/de.json +21 -18
- package/docs/src/views/PageWizard/i18n/en.json +10 -7
- package/docs/src/views/PageWizard/i18n/es.json +19 -16
- package/docs/src/views/PageWizard/i18n/fr.json +19 -16
- package/docs/src/views/PageWizard/i18n/hr.json +13 -10
- package/docs/src/views/PageWizard/i18n/it.json +19 -16
- package/docs/src/views/PageWizard/i18n/ru.json +17 -14
- package/docs/styles/styles.scss +19 -19
- package/package.json +2 -2
- package/src/AFormElement/AFormElementBtnClear/AFormElementBtnClear.js +83 -69
- package/src/AFormElement/AFormElementBtnClear/compositionAPI/ClearAPI.js +11 -0
- package/src/AJson/AJson.js +12 -6
- package/src/AModalWizard/AModalWizard.js +22 -1
- package/src/AWizard/AWizard.js +30 -3
- package/src/AWizard/compositionAPI/ClassAPI.js +31 -21
- package/src/AWizard/compositionAPI/TypeAPI.js +25 -0
- package/src/i18n/allLanguages.js +207 -198
- package/src/styles/components/AFormElement/ATextarea.scss +17 -17
- package/src/styles/components/AWizard.scss +122 -22
- package/src/styles/components/ui/ui.scss +15 -20
- package/src/ui/AInput/AInput.js +74 -18
- package/src/ui/AInput/compositionAPI/ClassAPI.js +29 -0
- package/src/ui/AInput/compositionAPI/PasswordAPI.js +43 -0
- package/src/ui/AInput/compositionAPI/TypeAPI.js +32 -0
- package/src/ui/AInput/i18n/AInputI18n.js +19 -0
- package/src/ui/AInput/i18n/ar.json +4 -0
- package/src/ui/AInput/i18n/de.json +4 -0
- package/src/ui/AInput/i18n/en.json +4 -0
- package/src/ui/AInput/i18n/es.json +4 -0
- package/src/ui/AInput/i18n/fr.json +4 -0
- package/src/ui/AInput/i18n/hr.json +4 -0
- package/src/ui/AInput/i18n/it.json +4 -0
- package/src/ui/AInput/i18n/ru.json +4 -0
- package/src/ui/AInputCurrency/AInputCurrency.js +17 -6
- package/src/ui/AInputNumber/AInputNumber.js +13 -7
- package/src/ui/ATextarea/ATextarea.js +13 -7
- package/src/ui/ATinymce/compositionAPI/ATinymceAPI.js +145 -145
- package/src/ui/compositionApi/UiClearButtonAPI.js +18 -17
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
import AInput from "../../../../../src/ui/AInput/AInput";
|
|
2
|
-
import ATextarea from "../../../../../src/ui/ATextarea/ATextarea";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export default {
|
|
6
|
-
name: "PageInput",
|
|
7
|
-
components: {
|
|
8
|
-
AInput,
|
|
9
|
-
ATextarea,
|
|
10
|
-
},
|
|
11
|
-
data() {
|
|
12
|
-
return {
|
|
13
|
-
model1: "aloha",
|
|
14
|
-
model2: "hola",
|
|
15
|
-
model3: "",
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
1
|
+
import AInput from "../../../../../src/ui/AInput/AInput";
|
|
2
|
+
import ATextarea from "../../../../../src/ui/ATextarea/ATextarea";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
name: "PageInput",
|
|
7
|
+
components: {
|
|
8
|
+
AInput,
|
|
9
|
+
ATextarea,
|
|
10
|
+
},
|
|
11
|
+
data() {
|
|
12
|
+
return {
|
|
13
|
+
model1: "aloha",
|
|
14
|
+
model2: "hola",
|
|
15
|
+
model3: "",
|
|
16
|
+
model4: "FakePass",
|
|
17
|
+
};
|
|
18
|
+
},
|
|
19
|
+
methods: {
|
|
20
|
+
changeModel1(arg) {
|
|
21
|
+
console.log("arg", arg);
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
};
|
|
@@ -1,36 +1,43 @@
|
|
|
1
|
-
div
|
|
2
|
-
h1 Form element
|
|
3
|
-
h2 Input
|
|
4
|
-
a-input(
|
|
5
|
-
id="input1"
|
|
6
|
-
v-model="model1"
|
|
7
|
-
type="text"
|
|
8
|
-
label="Input 1"
|
|
9
|
-
:required="true"
|
|
10
|
-
:change="changeModel1"
|
|
11
|
-
)
|
|
12
|
-
div model1: {{ model1 }}
|
|
13
|
-
h2 Textarea
|
|
14
|
-
a-textarea(
|
|
15
|
-
id="textarea1"
|
|
16
|
-
v-model="model2"
|
|
17
|
-
type="text"
|
|
18
|
-
label="Textarea 1"
|
|
19
|
-
:required="true"
|
|
20
|
-
:is-scalable="true"
|
|
21
|
-
)
|
|
22
|
-
div model2:
|
|
23
|
-
pre {{ model2 }}
|
|
24
|
-
|
|
25
|
-
h2 Textarea 2
|
|
26
|
-
a-textarea(
|
|
27
|
-
id="textarea3"
|
|
28
|
-
v-model="model3"
|
|
29
|
-
type="text"
|
|
30
|
-
label="Textarea 2"
|
|
31
|
-
:required="true"
|
|
32
|
-
)
|
|
33
|
-
div model3:
|
|
34
|
-
pre {{ model3 }}
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
div
|
|
2
|
+
h1 Form element
|
|
3
|
+
h2 Input
|
|
4
|
+
a-input(
|
|
5
|
+
id="input1"
|
|
6
|
+
v-model="model1"
|
|
7
|
+
type="text"
|
|
8
|
+
label="Input 1"
|
|
9
|
+
:required="true"
|
|
10
|
+
:change="changeModel1"
|
|
11
|
+
)
|
|
12
|
+
div model1: {{ model1 }}
|
|
13
|
+
h2 Textarea
|
|
14
|
+
a-textarea(
|
|
15
|
+
id="textarea1"
|
|
16
|
+
v-model="model2"
|
|
17
|
+
type="text"
|
|
18
|
+
label="Textarea 1"
|
|
19
|
+
:required="true"
|
|
20
|
+
:is-scalable="true"
|
|
21
|
+
)
|
|
22
|
+
div model2:
|
|
23
|
+
pre {{ model2 }}
|
|
24
|
+
|
|
25
|
+
h2 Textarea 2
|
|
26
|
+
a-textarea(
|
|
27
|
+
id="textarea3"
|
|
28
|
+
v-model="model3"
|
|
29
|
+
type="text"
|
|
30
|
+
label="Textarea 2"
|
|
31
|
+
:required="true"
|
|
32
|
+
)
|
|
33
|
+
div model3:
|
|
34
|
+
pre {{ model3 }}
|
|
35
|
+
h2 Input (Password)
|
|
36
|
+
a-input.a_pt_2(
|
|
37
|
+
id="input4"
|
|
38
|
+
v-model="model4"
|
|
39
|
+
type="password"
|
|
40
|
+
:show-password="true"
|
|
41
|
+
label="Input 4"
|
|
42
|
+
:required="true"
|
|
43
|
+
)
|
|
@@ -471,6 +471,13 @@ export default function PropsAPI() {
|
|
|
471
471
|
default: "_A_WIZARD_STEPS_PROGRESSBAR_TEXT_{{stepActive}}_{{stepsCount}}_{{stepActiveLabel}}_",
|
|
472
472
|
required: false,
|
|
473
473
|
},
|
|
474
|
+
{
|
|
475
|
+
name: "sub-type",
|
|
476
|
+
description: "_A_WIZARD_PROPS_SUB_TYPE_DESCRIPTION_",
|
|
477
|
+
type: "String",
|
|
478
|
+
default: undefined,
|
|
479
|
+
required: false,
|
|
480
|
+
},
|
|
474
481
|
{
|
|
475
482
|
name: "steps-visited",
|
|
476
483
|
description: "_A_WIZARD_PROPS_STEPS_VISITED_DESCRIPTION_",
|
|
@@ -1,95 +1,97 @@
|
|
|
1
|
-
import AlohaPage from "../../global/components/AlohaPage/AlohaPage.vue";
|
|
2
|
-
import AlohaTableProps from "../../global/components/AlohaTableProps/AlohaTableProps.vue";
|
|
3
|
-
import AlohaTableTranslate from "../../global/components/AlohaTableTranslate/AlohaTableTranslate.vue";
|
|
4
|
-
import ATranslation from "../../../../src/ATranslation/ATranslation";
|
|
5
|
-
import PageWizardBasic from "./PageWizardBasic/PageWizardBasic.vue";
|
|
6
|
-
import PageWizardButtons from "./PageWizardButtons/PageWizardButtons.vue";
|
|
7
|
-
import PageWizardButtonsDisabled from "./PageWizardButtonsDisabled/PageWizardButtonsDisabled.vue";
|
|
8
|
-
import PageWizardButtonsHide from "./PageWizardButtonsHide/PageWizardButtonsHide.vue";
|
|
9
|
-
import PageWizardDemo from "./PageWizardDemo/PageWizardDemo.vue";
|
|
10
|
-
import PageWizardHasFocusJump from "./PageWizardHasFocusJump/PageWizardHasFocusJump.vue";
|
|
11
|
-
import PageWizardIsButtonsLoading from "./PageWizardIsButtonsLoading/PageWizardIsButtonsLoading.vue";
|
|
12
|
-
import PageWizardIsControlOutside from "./PageWizardIsControlOutside/PageWizardIsControlOutside.vue";
|
|
13
|
-
import PageWizardIsStepNumberVisible from "./PageWizardIsStepNumberVisible/PageWizardIsStepNumberVisible.vue";
|
|
14
|
-
import PageWizardIsStepsJustified from "./PageWizardIsStepsJustified/PageWizardIsStepsJustified.vue";
|
|
15
|
-
import PageWizardIsToolbar from "./PageWizardIsToolbar/PageWizardIsToolbar.vue";
|
|
16
|
-
import PageWizardKeyId from "./PageWizardKeyId/PageWizardKeyId.vue";
|
|
17
|
-
import PageWizardShowOnlyActiveStepMobile from "./PageWizardShowOnlyActiveStepMobile/PageWizardShowOnlyActiveStepMobile.vue";
|
|
18
|
-
import PageWizardSlot from "./PageWizardSlot/PageWizardSlot.vue";
|
|
19
|
-
import PageWizardSlotLabel from "./PageWizardSlotLabel/PageWizardSlotLabel.vue";
|
|
20
|
-
import PageWizardSlotToolbar from "./PageWizardSlotToolbar/PageWizardSlotToolbar.vue";
|
|
21
|
-
import PageWizardStepActive from "./PageWizardStepActive/PageWizardStepActive.vue";
|
|
22
|
-
import PageWizardStepsErrors from "./PageWizardStepsErrors/PageWizardStepsErrors.vue";
|
|
23
|
-
import PageWizardStepsWarnings from "./PageWizardStepsWarnings/PageWizardStepsWarnings.vue";
|
|
24
|
-
import
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
};
|
|
1
|
+
import AlohaPage from "../../global/components/AlohaPage/AlohaPage.vue";
|
|
2
|
+
import AlohaTableProps from "../../global/components/AlohaTableProps/AlohaTableProps.vue";
|
|
3
|
+
import AlohaTableTranslate from "../../global/components/AlohaTableTranslate/AlohaTableTranslate.vue";
|
|
4
|
+
import ATranslation from "../../../../src/ATranslation/ATranslation";
|
|
5
|
+
import PageWizardBasic from "./PageWizardBasic/PageWizardBasic.vue";
|
|
6
|
+
import PageWizardButtons from "./PageWizardButtons/PageWizardButtons.vue";
|
|
7
|
+
import PageWizardButtonsDisabled from "./PageWizardButtonsDisabled/PageWizardButtonsDisabled.vue";
|
|
8
|
+
import PageWizardButtonsHide from "./PageWizardButtonsHide/PageWizardButtonsHide.vue";
|
|
9
|
+
import PageWizardDemo from "./PageWizardDemo/PageWizardDemo.vue";
|
|
10
|
+
import PageWizardHasFocusJump from "./PageWizardHasFocusJump/PageWizardHasFocusJump.vue";
|
|
11
|
+
import PageWizardIsButtonsLoading from "./PageWizardIsButtonsLoading/PageWizardIsButtonsLoading.vue";
|
|
12
|
+
import PageWizardIsControlOutside from "./PageWizardIsControlOutside/PageWizardIsControlOutside.vue";
|
|
13
|
+
import PageWizardIsStepNumberVisible from "./PageWizardIsStepNumberVisible/PageWizardIsStepNumberVisible.vue";
|
|
14
|
+
import PageWizardIsStepsJustified from "./PageWizardIsStepsJustified/PageWizardIsStepsJustified.vue";
|
|
15
|
+
import PageWizardIsToolbar from "./PageWizardIsToolbar/PageWizardIsToolbar.vue";
|
|
16
|
+
import PageWizardKeyId from "./PageWizardKeyId/PageWizardKeyId.vue";
|
|
17
|
+
import PageWizardShowOnlyActiveStepMobile from "./PageWizardShowOnlyActiveStepMobile/PageWizardShowOnlyActiveStepMobile.vue";
|
|
18
|
+
import PageWizardSlot from "./PageWizardSlot/PageWizardSlot.vue";
|
|
19
|
+
import PageWizardSlotLabel from "./PageWizardSlotLabel/PageWizardSlotLabel.vue";
|
|
20
|
+
import PageWizardSlotToolbar from "./PageWizardSlotToolbar/PageWizardSlotToolbar.vue";
|
|
21
|
+
import PageWizardStepActive from "./PageWizardStepActive/PageWizardStepActive.vue";
|
|
22
|
+
import PageWizardStepsErrors from "./PageWizardStepsErrors/PageWizardStepsErrors.vue";
|
|
23
|
+
import PageWizardStepsWarnings from "./PageWizardStepsWarnings/PageWizardStepsWarnings.vue";
|
|
24
|
+
import PageWizardSubType from "./PageWizardSubType/PageWizardSubType.vue";
|
|
25
|
+
import PageWizardType from "./PageWizardType/PageWizardType.vue";
|
|
26
|
+
|
|
27
|
+
import ExposesAPI from "./compositionAPI/ExposesAPI";
|
|
28
|
+
import EventsAPI from "./compositionAPI/EventsAPI";
|
|
29
|
+
import PageTitleAPI from "./compositionAPI/PageTitleAPI";
|
|
30
|
+
import PropsAPI from "./compositionAPI/PropsAPI";
|
|
31
|
+
import SlotsAPI from "./compositionAPI/SlotsAPI";
|
|
32
|
+
import TranslateAPI from "./compositionAPI/TranslateAPI";
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
name: "PageWizard",
|
|
36
|
+
components: {
|
|
37
|
+
AlohaPage,
|
|
38
|
+
AlohaTableProps,
|
|
39
|
+
AlohaTableTranslate,
|
|
40
|
+
ATranslation,
|
|
41
|
+
PageWizardBasic,
|
|
42
|
+
PageWizardButtons,
|
|
43
|
+
PageWizardButtonsDisabled,
|
|
44
|
+
PageWizardButtonsHide,
|
|
45
|
+
PageWizardDemo,
|
|
46
|
+
PageWizardHasFocusJump,
|
|
47
|
+
PageWizardIsButtonsLoading,
|
|
48
|
+
PageWizardIsControlOutside,
|
|
49
|
+
PageWizardIsStepNumberVisible,
|
|
50
|
+
PageWizardIsStepsJustified,
|
|
51
|
+
PageWizardIsToolbar,
|
|
52
|
+
PageWizardKeyId,
|
|
53
|
+
PageWizardShowOnlyActiveStepMobile,
|
|
54
|
+
PageWizardSlot,
|
|
55
|
+
PageWizardSlotLabel,
|
|
56
|
+
PageWizardSlotToolbar,
|
|
57
|
+
PageWizardStepActive,
|
|
58
|
+
PageWizardStepsErrors,
|
|
59
|
+
PageWizardStepsWarnings,
|
|
60
|
+
PageWizardSubType,
|
|
61
|
+
PageWizardType,
|
|
62
|
+
},
|
|
63
|
+
setup() {
|
|
64
|
+
const {
|
|
65
|
+
pageTitle,
|
|
66
|
+
} = PageTitleAPI();
|
|
67
|
+
|
|
68
|
+
const {
|
|
69
|
+
dataProps,
|
|
70
|
+
} = PropsAPI();
|
|
71
|
+
|
|
72
|
+
const {
|
|
73
|
+
dataSlots,
|
|
74
|
+
} = SlotsAPI();
|
|
75
|
+
|
|
76
|
+
const {
|
|
77
|
+
dataExposes,
|
|
78
|
+
} = ExposesAPI();
|
|
79
|
+
|
|
80
|
+
const {
|
|
81
|
+
dataEvents,
|
|
82
|
+
} = EventsAPI();
|
|
83
|
+
|
|
84
|
+
const {
|
|
85
|
+
dataTranslate,
|
|
86
|
+
} = TranslateAPI();
|
|
87
|
+
|
|
88
|
+
return {
|
|
89
|
+
dataExposes,
|
|
90
|
+
dataEvents,
|
|
91
|
+
dataProps,
|
|
92
|
+
dataSlots,
|
|
93
|
+
dataTranslate,
|
|
94
|
+
pageTitle,
|
|
95
|
+
};
|
|
96
|
+
},
|
|
97
|
+
};
|
|
@@ -1,71 +1,73 @@
|
|
|
1
|
-
aloha-page(
|
|
2
|
-
:page-title="pageTitle"
|
|
3
|
-
)
|
|
4
|
-
template(
|
|
5
|
-
v-slot:body
|
|
6
|
-
)
|
|
7
|
-
a-translation(
|
|
8
|
-
tag="p"
|
|
9
|
-
html="_A_WIZARD_COMPONENT_DESCRIPTION_"
|
|
10
|
-
)
|
|
11
|
-
|
|
12
|
-
page-wizard-basic
|
|
13
|
-
|
|
14
|
-
page-wizard-type
|
|
15
|
-
|
|
16
|
-
page-wizard-
|
|
17
|
-
|
|
18
|
-
page-wizard-buttons
|
|
19
|
-
|
|
20
|
-
page-wizard-buttons-
|
|
21
|
-
|
|
22
|
-
page-wizard-
|
|
23
|
-
|
|
24
|
-
page-wizard-is-
|
|
25
|
-
|
|
26
|
-
page-wizard-is-
|
|
27
|
-
|
|
28
|
-
page-wizard-is-
|
|
29
|
-
|
|
30
|
-
page-wizard-step-
|
|
31
|
-
|
|
32
|
-
page-wizard-
|
|
33
|
-
|
|
34
|
-
page-wizard-steps-
|
|
35
|
-
|
|
36
|
-
page-wizard-
|
|
37
|
-
|
|
38
|
-
page-wizard-
|
|
39
|
-
|
|
40
|
-
page-wizard-
|
|
41
|
-
|
|
42
|
-
page-wizard-
|
|
43
|
-
|
|
44
|
-
page-wizard-slot-
|
|
45
|
-
|
|
46
|
-
page-wizard-slot
|
|
47
|
-
|
|
48
|
-
page-wizard-
|
|
49
|
-
|
|
50
|
-
page-wizard-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
1
|
+
aloha-page(
|
|
2
|
+
:page-title="pageTitle"
|
|
3
|
+
)
|
|
4
|
+
template(
|
|
5
|
+
v-slot:body
|
|
6
|
+
)
|
|
7
|
+
a-translation(
|
|
8
|
+
tag="p"
|
|
9
|
+
html="_A_WIZARD_COMPONENT_DESCRIPTION_"
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
page-wizard-basic
|
|
13
|
+
|
|
14
|
+
page-wizard-type
|
|
15
|
+
|
|
16
|
+
page-wizard-sub-type
|
|
17
|
+
|
|
18
|
+
page-wizard-buttons
|
|
19
|
+
|
|
20
|
+
page-wizard-buttons-disabled
|
|
21
|
+
|
|
22
|
+
page-wizard-buttons-hide
|
|
23
|
+
|
|
24
|
+
page-wizard-is-steps-justified
|
|
25
|
+
|
|
26
|
+
page-wizard-is-buttons-loading
|
|
27
|
+
|
|
28
|
+
page-wizard-is-toolbar
|
|
29
|
+
|
|
30
|
+
page-wizard-is-step-number-visible
|
|
31
|
+
|
|
32
|
+
page-wizard-step-active
|
|
33
|
+
|
|
34
|
+
page-wizard-steps-errors
|
|
35
|
+
|
|
36
|
+
page-wizard-steps-warnings
|
|
37
|
+
|
|
38
|
+
page-wizard-key-id
|
|
39
|
+
|
|
40
|
+
page-wizard-has-focus-jump
|
|
41
|
+
|
|
42
|
+
page-wizard-is-control-outside
|
|
43
|
+
|
|
44
|
+
page-wizard-slot-toolbar
|
|
45
|
+
|
|
46
|
+
page-wizard-slot-label
|
|
47
|
+
|
|
48
|
+
page-wizard-slot
|
|
49
|
+
|
|
50
|
+
page-wizard-show-only-active-step-mobile
|
|
51
|
+
|
|
52
|
+
page-wizard-demo
|
|
53
|
+
|
|
54
|
+
aloha-table-props(
|
|
55
|
+
:data="dataProps"
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
aloha-table-props(
|
|
59
|
+
table-label="Slots"
|
|
60
|
+
:data="dataSlots"
|
|
61
|
+
:columns="['name', 'description']"
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
aloha-table-props(
|
|
65
|
+
table-label="Events"
|
|
66
|
+
:data="dataEvents"
|
|
67
|
+
:columns="['name', 'type', 'description']"
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
aloha-table-translate(
|
|
71
|
+
:data="dataTranslate"
|
|
72
|
+
)
|
|
73
|
+
|
|
@@ -36,7 +36,7 @@ export default {
|
|
|
36
36
|
codeJs,
|
|
37
37
|
} = JsAPI();
|
|
38
38
|
|
|
39
|
-
const modelType = ref("
|
|
39
|
+
const modelType = ref("line");
|
|
40
40
|
const modelStepName = ref("");
|
|
41
41
|
const modelStepId = ref(undefined);
|
|
42
42
|
const isStepsJustified = ref(true);
|
|
@@ -50,8 +50,8 @@ export default {
|
|
|
50
50
|
value: "arrows",
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
|
-
label: "
|
|
54
|
-
value: "
|
|
53
|
+
label: "_A_WIZARD_TYPE_LINE_",
|
|
54
|
+
value: "line",
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
label: "_A_WIZARD_TYPE_ROUND_",
|
|
@@ -19,7 +19,7 @@ export default {
|
|
|
19
19
|
AWizard,
|
|
20
20
|
},
|
|
21
21
|
setup() {
|
|
22
|
-
const modelType = ref("
|
|
22
|
+
const modelType = ref("line");
|
|
23
23
|
const modelStepName = ref("");
|
|
24
24
|
const modelStepId = ref(undefined);
|
|
25
25
|
const isStepsJustified = ref(true);
|
|
@@ -33,8 +33,8 @@ export default {
|
|
|
33
33
|
value: "arrows",
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
label: "
|
|
37
|
-
value: "
|
|
36
|
+
label: "_A_WIZARD_TYPE_LINE_",
|
|
37
|
+
value: "line",
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
label: "_A_WIZARD_TYPE_ROUND_",
|
|
@@ -28,7 +28,7 @@ export default {
|
|
|
28
28
|
} = JsAPI();
|
|
29
29
|
|
|
30
30
|
const showOnlyActiveStepMobile = ref(true);
|
|
31
|
-
const modelType = ref("
|
|
31
|
+
const modelType = ref("line");
|
|
32
32
|
const types = [
|
|
33
33
|
{
|
|
34
34
|
label: "_A_WIZARD_TYPE_BASIC_",
|
|
@@ -39,8 +39,8 @@ export default {
|
|
|
39
39
|
value: "arrows",
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
|
-
label: "
|
|
43
|
-
value: "
|
|
42
|
+
label: "_A_WIZARD_TYPE_LINE_",
|
|
43
|
+
value: "line",
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
label: "_A_WIZARD_TYPE_ROUND_",
|
package/docs/src/views/PageWizard/PageWizardShowOnlyActiveStepMobile/compositionAPI/JsAPI.js
CHANGED
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
},
|
|
17
17
|
setup() {
|
|
18
18
|
const showOnlyActiveStepMobile = ref(true);
|
|
19
|
-
const modelType = ref("
|
|
19
|
+
const modelType = ref("line");
|
|
20
20
|
const types = [
|
|
21
21
|
{
|
|
22
22
|
label: "_A_WIZARD_TYPE_BASIC_",
|
|
@@ -27,8 +27,8 @@ export default {
|
|
|
27
27
|
value: "arrows",
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
label: "
|
|
31
|
-
value: "
|
|
30
|
+
label: "_A_WIZARD_TYPE_LINE_",
|
|
31
|
+
value: "line",
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
label: "_A_WIZARD_TYPE_ROUND_",
|