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.
Files changed (62) hide show
  1. package/docs/src/views/Form/PageInput/PageInput.js +24 -23
  2. package/docs/src/views/Form/PageInput/PageInput.pug +43 -36
  3. package/docs/src/views/PageModalWizard/compositionAPI/PropsAPI.js +7 -0
  4. package/docs/src/views/PageWizard/PageWizard.js +97 -95
  5. package/docs/src/views/PageWizard/PageWizard.pug +73 -71
  6. package/docs/src/views/PageWizard/PageWizardDemo/PageWizardDemo.js +3 -3
  7. package/docs/src/views/PageWizard/PageWizardDemo/compositionAPI/JsAPI.js +3 -3
  8. package/docs/src/views/PageWizard/PageWizardShowOnlyActiveStepMobile/PageWizardShowOnlyActiveStepMobile.js +3 -3
  9. package/docs/src/views/PageWizard/PageWizardShowOnlyActiveStepMobile/compositionAPI/JsAPI.js +3 -3
  10. package/docs/src/views/PageWizard/PageWizardStepsErrors/PageWizardStepsErrors.js +2 -2
  11. package/docs/src/views/PageWizard/PageWizardStepsErrors/compositionAPI/JsAPI.js +2 -2
  12. package/docs/src/views/PageWizard/PageWizardStepsWarnings/PageWizardStepsWarnings.js +2 -2
  13. package/docs/src/views/PageWizard/PageWizardStepsWarnings/compositionAPI/JsAPI.js +2 -2
  14. package/docs/src/views/PageWizard/PageWizardSubType/PageWizardSubType.js +58 -0
  15. package/docs/src/views/PageWizard/PageWizardSubType/PageWizardSubType.pug +174 -0
  16. package/docs/src/views/PageWizard/PageWizardSubType/PageWizardSubType.vue +2 -0
  17. package/docs/src/views/PageWizard/PageWizardSubType/compositionAPI/HtmlAPI.js +181 -0
  18. package/docs/src/views/PageWizard/PageWizardSubType/compositionAPI/JsAPI.js +49 -0
  19. package/docs/src/views/PageWizard/PageWizardType/PageWizardType.js +58 -85
  20. package/docs/src/views/PageWizard/PageWizardType/PageWizardType.pug +128 -15
  21. package/docs/src/views/PageWizard/PageWizardType/compositionAPI/HtmlAPI.js +134 -21
  22. package/docs/src/views/PageWizard/PageWizardType/compositionAPI/JsAPI.js +49 -77
  23. package/docs/src/views/PageWizard/compositionAPI/PropsAPI.js +7 -0
  24. package/docs/src/views/PageWizard/i18n/ar.json +19 -16
  25. package/docs/src/views/PageWizard/i18n/de.json +21 -18
  26. package/docs/src/views/PageWizard/i18n/en.json +10 -7
  27. package/docs/src/views/PageWizard/i18n/es.json +19 -16
  28. package/docs/src/views/PageWizard/i18n/fr.json +19 -16
  29. package/docs/src/views/PageWizard/i18n/hr.json +13 -10
  30. package/docs/src/views/PageWizard/i18n/it.json +19 -16
  31. package/docs/src/views/PageWizard/i18n/ru.json +17 -14
  32. package/docs/styles/styles.scss +19 -19
  33. package/package.json +2 -2
  34. package/src/AFormElement/AFormElementBtnClear/AFormElementBtnClear.js +83 -69
  35. package/src/AFormElement/AFormElementBtnClear/compositionAPI/ClearAPI.js +11 -0
  36. package/src/AJson/AJson.js +12 -6
  37. package/src/AModalWizard/AModalWizard.js +22 -1
  38. package/src/AWizard/AWizard.js +30 -3
  39. package/src/AWizard/compositionAPI/ClassAPI.js +31 -21
  40. package/src/AWizard/compositionAPI/TypeAPI.js +25 -0
  41. package/src/i18n/allLanguages.js +207 -198
  42. package/src/styles/components/AFormElement/ATextarea.scss +17 -17
  43. package/src/styles/components/AWizard.scss +122 -22
  44. package/src/styles/components/ui/ui.scss +15 -20
  45. package/src/ui/AInput/AInput.js +74 -18
  46. package/src/ui/AInput/compositionAPI/ClassAPI.js +29 -0
  47. package/src/ui/AInput/compositionAPI/PasswordAPI.js +43 -0
  48. package/src/ui/AInput/compositionAPI/TypeAPI.js +32 -0
  49. package/src/ui/AInput/i18n/AInputI18n.js +19 -0
  50. package/src/ui/AInput/i18n/ar.json +4 -0
  51. package/src/ui/AInput/i18n/de.json +4 -0
  52. package/src/ui/AInput/i18n/en.json +4 -0
  53. package/src/ui/AInput/i18n/es.json +4 -0
  54. package/src/ui/AInput/i18n/fr.json +4 -0
  55. package/src/ui/AInput/i18n/hr.json +4 -0
  56. package/src/ui/AInput/i18n/it.json +4 -0
  57. package/src/ui/AInput/i18n/ru.json +4 -0
  58. package/src/ui/AInputCurrency/AInputCurrency.js +17 -6
  59. package/src/ui/AInputNumber/AInputNumber.js +13 -7
  60. package/src/ui/ATextarea/ATextarea.js +13 -7
  61. package/src/ui/ATinymce/compositionAPI/ATinymceAPI.js +145 -145
  62. 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
- methods: {
19
- changeModel1(arg) {
20
- console.log("arg", arg);
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 PageWizardType from "./PageWizardType/PageWizardType.vue";
25
-
26
- import ExposesAPI from "./compositionAPI/ExposesAPI";
27
- import EventsAPI from "./compositionAPI/EventsAPI";
28
- import PageTitleAPI from "./compositionAPI/PageTitleAPI";
29
- import PropsAPI from "./compositionAPI/PropsAPI";
30
- import SlotsAPI from "./compositionAPI/SlotsAPI";
31
- import TranslateAPI from "./compositionAPI/TranslateAPI";
32
-
33
- export default {
34
- name: "PageWizard",
35
- components: {
36
- AlohaPage,
37
- AlohaTableProps,
38
- AlohaTableTranslate,
39
- ATranslation,
40
- PageWizardBasic,
41
- PageWizardButtons,
42
- PageWizardButtonsDisabled,
43
- PageWizardButtonsHide,
44
- PageWizardDemo,
45
- PageWizardHasFocusJump,
46
- PageWizardIsButtonsLoading,
47
- PageWizardIsControlOutside,
48
- PageWizardIsStepNumberVisible,
49
- PageWizardIsStepsJustified,
50
- PageWizardIsToolbar,
51
- PageWizardKeyId,
52
- PageWizardShowOnlyActiveStepMobile,
53
- PageWizardSlot,
54
- PageWizardSlotLabel,
55
- PageWizardSlotToolbar,
56
- PageWizardStepActive,
57
- PageWizardStepsErrors,
58
- PageWizardStepsWarnings,
59
- PageWizardType,
60
- },
61
- setup() {
62
- const {
63
- pageTitle,
64
- } = PageTitleAPI();
65
-
66
- const {
67
- dataProps,
68
- } = PropsAPI();
69
-
70
- const {
71
- dataSlots,
72
- } = SlotsAPI();
73
-
74
- const {
75
- dataExposes,
76
- } = ExposesAPI();
77
-
78
- const {
79
- dataEvents,
80
- } = EventsAPI();
81
-
82
- const {
83
- dataTranslate,
84
- } = TranslateAPI();
85
-
86
- return {
87
- dataExposes,
88
- dataEvents,
89
- dataProps,
90
- dataSlots,
91
- dataTranslate,
92
- pageTitle,
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-buttons
17
-
18
- page-wizard-buttons-disabled
19
-
20
- page-wizard-buttons-hide
21
-
22
- page-wizard-is-steps-justified
23
-
24
- page-wizard-is-buttons-loading
25
-
26
- page-wizard-is-toolbar
27
-
28
- page-wizard-is-step-number-visible
29
-
30
- page-wizard-step-active
31
-
32
- page-wizard-steps-errors
33
-
34
- page-wizard-steps-warnings
35
-
36
- page-wizard-key-id
37
-
38
- page-wizard-has-focus-jump
39
-
40
- page-wizard-is-control-outside
41
-
42
- page-wizard-slot-toolbar
43
-
44
- page-wizard-slot-label
45
-
46
- page-wizard-slot
47
-
48
- page-wizard-show-only-active-step-mobile
49
-
50
- page-wizard-demo
51
-
52
- aloha-table-props(
53
- :data="dataProps"
54
- )
55
-
56
- aloha-table-props(
57
- table-label="Slots"
58
- :data="dataSlots"
59
- :columns="['name', 'description']"
60
- )
61
-
62
- aloha-table-props(
63
- table-label="Events"
64
- :data="dataEvents"
65
- :columns="['name', 'type', 'description']"
66
- )
67
-
68
- aloha-table-translate(
69
- :data="dataTranslate"
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("square");
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: "_A_WIZARD_TYPE_SQUARE_",
54
- value: "square",
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("square");
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: "_A_WIZARD_TYPE_SQUARE_",
37
- value: "square",
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("square");
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: "_A_WIZARD_TYPE_SQUARE_",
43
- value: "square",
42
+ label: "_A_WIZARD_TYPE_LINE_",
43
+ value: "line",
44
44
  },
45
45
  {
46
46
  label: "_A_WIZARD_TYPE_ROUND_",
@@ -16,7 +16,7 @@ export default {
16
16
  },
17
17
  setup() {
18
18
  const showOnlyActiveStepMobile = ref(true);
19
- const modelType = ref("square");
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: "_A_WIZARD_TYPE_SQUARE_",
31
- value: "square",
30
+ label: "_A_WIZARD_TYPE_LINE_",
31
+ value: "line",
32
32
  },
33
33
  {
34
34
  label: "_A_WIZARD_TYPE_ROUND_",
@@ -40,8 +40,8 @@ export default {
40
40
  value: "arrows",
41
41
  },
42
42
  {
43
- label: "_A_WIZARD_TYPE_SQUARE_",
44
- value: "square",
43
+ label: "_A_WIZARD_TYPE_LINE_",
44
+ value: "line",
45
45
  },
46
46
  {
47
47
  label: "_A_WIZARD_TYPE_ROUND_",
@@ -28,8 +28,8 @@ export default {
28
28
  value: "arrows",
29
29
  },
30
30
  {
31
- label: "_A_WIZARD_TYPE_SQUARE_",
32
- value: "square",
31
+ label: "_A_WIZARD_TYPE_LINE_",
32
+ value: "line",
33
33
  },
34
34
  {
35
35
  label: "_A_WIZARD_TYPE_ROUND_",
@@ -40,8 +40,8 @@ export default {
40
40
  value: "arrows",
41
41
  },
42
42
  {
43
- label: "_A_WIZARD_TYPE_SQUARE_",
44
- value: "square",
43
+ label: "_A_WIZARD_TYPE_LINE_",
44
+ value: "line",
45
45
  },
46
46
  {
47
47
  label: "_A_WIZARD_TYPE_ROUND_",
@@ -28,8 +28,8 @@ export default {
28
28
  value: "arrows",
29
29
  },
30
30
  {
31
- label: "_A_WIZARD_TYPE_SQUARE_",
32
- value: "square",
31
+ label: "_A_WIZARD_TYPE_LINE_",
32
+ value: "line",
33
33
  },
34
34
  {
35
35
  label: "_A_WIZARD_TYPE_ROUND_",