cja-phoenix 1.2.39 → 1.2.41

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 (184) hide show
  1. package/dist/module.d.mts +6 -2
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +29 -16
  4. package/dist/runtime/assets/iconia/fonts/CGG-icomoon.svg +94 -0
  5. package/dist/runtime/assets/iconia/fonts/CGG-icomoon.ttf +0 -0
  6. package/dist/runtime/assets/iconia/fonts/CGG-icomoon.woff +0 -0
  7. package/dist/runtime/assets/iconia/selection.json +1 -0
  8. package/dist/runtime/assets/iconia/style.css +281 -0
  9. package/dist/runtime/assets/scss/main.scss +6 -0
  10. package/dist/runtime/assets/scss/mixins/_funnel.scss +15 -0
  11. package/dist/runtime/assets/scss/mixins/_index.scss +46 -0
  12. package/dist/runtime/assets/scss/mixins/_media-queries.scss +109 -0
  13. package/dist/runtime/assets/scss/mixins/_results.scss +235 -0
  14. package/dist/runtime/assets/scss/tippy.scss +31 -0
  15. package/dist/runtime/assets/scss/variables/_breakpoints.scss +18 -0
  16. package/dist/runtime/assets/scss/variables/_colors.scss +100 -0
  17. package/dist/runtime/assets/scss/variables/_forms.scss +121 -0
  18. package/dist/runtime/assets/scss/variables/_grid.scss +12 -0
  19. package/dist/runtime/assets/scss/variables/_index.scss +6 -0
  20. package/dist/runtime/assets/scss/variables/_shadows.scss +7 -0
  21. package/dist/runtime/assets/scss/variables/_z-index.scss +6 -0
  22. package/dist/runtime/components/CjaButton.d.vue.ts +33 -0
  23. package/dist/runtime/components/CjaButton.vue +437 -0
  24. package/dist/runtime/components/CjaButton.vue.d.ts +33 -0
  25. package/dist/runtime/components/CollapseContainer.d.vue.ts +35 -0
  26. package/dist/runtime/components/CollapseContainer.vue +112 -0
  27. package/dist/runtime/components/CollapseContainer.vue.d.ts +35 -0
  28. package/dist/runtime/components/ContentTabs.d.vue.ts +23 -0
  29. package/dist/runtime/components/ContentTabs.vue +103 -0
  30. package/dist/runtime/components/ContentTabs.vue.d.ts +23 -0
  31. package/dist/runtime/components/Drawer.d.vue.ts +52 -0
  32. package/dist/runtime/components/Drawer.vue +169 -0
  33. package/dist/runtime/components/Drawer.vue.d.ts +52 -0
  34. package/dist/runtime/components/FixedContainer.d.vue.ts +37 -0
  35. package/dist/runtime/components/FixedContainer.vue +95 -0
  36. package/dist/runtime/components/FixedContainer.vue.d.ts +37 -0
  37. package/dist/runtime/components/GridContainer.d.vue.ts +13 -0
  38. package/dist/runtime/components/GridContainer.vue +37 -0
  39. package/dist/runtime/components/GridContainer.vue.d.ts +13 -0
  40. package/dist/runtime/components/GridItem.d.vue.ts +29 -0
  41. package/dist/runtime/components/GridItem.vue +93 -0
  42. package/dist/runtime/components/GridItem.vue.d.ts +29 -0
  43. package/dist/runtime/components/InfoMessage.d.vue.ts +28 -0
  44. package/dist/runtime/components/InfoMessage.vue +141 -0
  45. package/dist/runtime/components/InfoMessage.vue.d.ts +28 -0
  46. package/dist/runtime/components/LoadingSpinner.d.vue.ts +10 -0
  47. package/dist/runtime/components/LoadingSpinner.vue +39 -0
  48. package/dist/runtime/components/LoadingSpinner.vue.d.ts +10 -0
  49. package/dist/runtime/components/Modal.d.vue.ts +39 -0
  50. package/dist/runtime/components/Modal.vue +195 -0
  51. package/dist/runtime/components/Modal.vue.d.ts +39 -0
  52. package/dist/runtime/components/Scaffold.d.vue.ts +13 -0
  53. package/dist/runtime/components/Scaffold.vue +3 -0
  54. package/dist/runtime/components/Scaffold.vue.d.ts +13 -0
  55. package/dist/runtime/components/StickyContainer.d.vue.ts +21 -0
  56. package/dist/runtime/components/StickyContainer.vue +57 -0
  57. package/dist/runtime/components/StickyContainer.vue.d.ts +21 -0
  58. package/dist/runtime/components/form/CheckboxInput.d.vue.ts +42 -0
  59. package/dist/runtime/components/form/CheckboxInput.vue +163 -0
  60. package/dist/runtime/components/form/CheckboxInput.vue.d.ts +42 -0
  61. package/dist/runtime/components/form/CheckboxInputList.d.vue.ts +37 -0
  62. package/dist/runtime/components/form/CheckboxInputList.vue +84 -0
  63. package/dist/runtime/components/form/CheckboxInputList.vue.d.ts +37 -0
  64. package/dist/runtime/components/form/CurrencyInput.d.vue.ts +37 -0
  65. package/dist/runtime/components/form/CurrencyInput.vue +134 -0
  66. package/dist/runtime/components/form/CurrencyInput.vue.d.ts +37 -0
  67. package/dist/runtime/components/form/DateInput.d.vue.ts +40 -0
  68. package/dist/runtime/components/form/DateInput.vue +325 -0
  69. package/dist/runtime/components/form/DateInput.vue.d.ts +40 -0
  70. package/dist/runtime/components/form/FileInput.d.vue.ts +46 -0
  71. package/dist/runtime/components/form/FileInput.vue +202 -0
  72. package/dist/runtime/components/form/FileInput.vue.d.ts +46 -0
  73. package/dist/runtime/components/form/NumberInput.d.vue.ts +41 -0
  74. package/dist/runtime/components/form/NumberInput.vue +162 -0
  75. package/dist/runtime/components/form/NumberInput.vue.d.ts +41 -0
  76. package/dist/runtime/components/form/PhoneInput.d.vue.ts +44 -0
  77. package/dist/runtime/components/form/PhoneInput.vue +143 -0
  78. package/dist/runtime/components/form/PhoneInput.vue.d.ts +44 -0
  79. package/dist/runtime/components/form/RadioInput.d.vue.ts +42 -0
  80. package/dist/runtime/components/form/RadioInput.vue +181 -0
  81. package/dist/runtime/components/form/RadioInput.vue.d.ts +42 -0
  82. package/dist/runtime/components/form/RadioInputList.d.vue.ts +57 -0
  83. package/dist/runtime/components/form/RadioInputList.vue +130 -0
  84. package/dist/runtime/components/form/RadioInputList.vue.d.ts +57 -0
  85. package/dist/runtime/components/form/SelectInput.d.vue.ts +46 -0
  86. package/dist/runtime/components/form/SelectInput.vue +362 -0
  87. package/dist/runtime/components/form/SelectInput.vue.d.ts +46 -0
  88. package/dist/runtime/components/form/SelectionTiles.d.vue.ts +44 -0
  89. package/dist/runtime/components/form/SelectionTiles.vue +329 -0
  90. package/dist/runtime/components/form/SelectionTiles.vue.d.ts +44 -0
  91. package/dist/runtime/components/form/SliderInput.d.vue.ts +51 -0
  92. package/dist/runtime/components/form/SliderInput.vue +175 -0
  93. package/dist/runtime/components/form/SliderInput.vue.d.ts +51 -0
  94. package/dist/runtime/components/form/TextInput.d.vue.ts +56 -0
  95. package/dist/runtime/components/form/TextInput.vue +227 -0
  96. package/dist/runtime/components/form/TextInput.vue.d.ts +56 -0
  97. package/dist/runtime/components/form/TextareaInput.d.vue.ts +37 -0
  98. package/dist/runtime/components/form/TextareaInput.vue +76 -0
  99. package/dist/runtime/components/form/TextareaInput.vue.d.ts +37 -0
  100. package/dist/runtime/components/form/TileCheckboxInput.d.vue.ts +40 -0
  101. package/dist/runtime/components/form/TileCheckboxInput.vue +108 -0
  102. package/dist/runtime/components/form/TileCheckboxInput.vue.d.ts +40 -0
  103. package/dist/runtime/components/form/ToggleInput.d.vue.ts +43 -0
  104. package/dist/runtime/components/form/ToggleInput.vue +119 -0
  105. package/dist/runtime/components/form/ToggleInput.vue.d.ts +43 -0
  106. package/dist/runtime/components/form/structure/Container.d.vue.ts +16 -0
  107. package/dist/runtime/components/form/structure/Container.vue +31 -0
  108. package/dist/runtime/components/form/structure/Container.vue.d.ts +16 -0
  109. package/dist/runtime/components/form/structure/Description.d.vue.ts +9 -0
  110. package/dist/runtime/components/form/structure/Description.vue +26 -0
  111. package/dist/runtime/components/form/structure/Description.vue.d.ts +9 -0
  112. package/dist/runtime/components/form/structure/Error.d.vue.ts +9 -0
  113. package/dist/runtime/components/form/structure/Error.vue +23 -0
  114. package/dist/runtime/components/form/structure/Error.vue.d.ts +9 -0
  115. package/dist/runtime/components/form/structure/Title.d.vue.ts +12 -0
  116. package/dist/runtime/components/form/structure/Title.vue +43 -0
  117. package/dist/runtime/components/form/structure/Title.vue.d.ts +12 -0
  118. package/dist/runtime/components/funnel/Header.d.vue.ts +18 -0
  119. package/dist/runtime/components/funnel/Header.vue +62 -0
  120. package/dist/runtime/components/funnel/Header.vue.d.ts +18 -0
  121. package/dist/runtime/composables/useCjaGtm.d.ts +19 -0
  122. package/dist/runtime/composables/useCjaGtm.js +164 -0
  123. package/dist/runtime/composables/useFunnelConfig.d.ts +11 -0
  124. package/dist/runtime/composables/useFunnelConfig.js +51 -0
  125. package/dist/runtime/composables/useFunnelSummary.d.ts +14 -0
  126. package/dist/runtime/composables/useFunnelSummary.js +16 -0
  127. package/dist/runtime/composables/useHeaderHeight.d.ts +3 -0
  128. package/dist/runtime/composables/useHeaderHeight.js +24 -0
  129. package/dist/runtime/composables/useJourneyConfig.d.ts +11 -0
  130. package/dist/runtime/composables/useJourneyConfig.js +13 -0
  131. package/dist/runtime/composables/useValidateForm.d.ts +11 -0
  132. package/dist/runtime/composables/useValidateForm.js +33 -0
  133. package/dist/runtime/data/dialCodes.d.ts +7 -0
  134. package/dist/runtime/data/dialCodes.js +1466 -0
  135. package/dist/runtime/data/phoneDigits.d.ts +2 -0
  136. package/dist/runtime/data/phoneDigits.js +231 -0
  137. package/dist/runtime/plugins/tippy.d.ts +4 -0
  138. package/dist/runtime/plugins/tippy.js +12 -0
  139. package/dist/runtime/plugins/v-calendar.d.ts +3 -0
  140. package/dist/runtime/plugins/v-calendar.js +6 -0
  141. package/dist/runtime/server/tsconfig.json +3 -0
  142. package/dist/runtime/types/Form.d.ts +34 -0
  143. package/dist/runtime/types/Form.js +20 -0
  144. package/dist/runtime/types/Grid.d.ts +4 -0
  145. package/dist/runtime/types/Grid.js +0 -0
  146. package/dist/runtime/types/Icon.d.ts +2 -0
  147. package/dist/runtime/types/Icon.js +85 -0
  148. package/dist/runtime/types/JourneyConfig.d.ts +9 -0
  149. package/dist/runtime/types/JourneyConfig.js +0 -0
  150. package/dist/runtime/types/index.d.ts +4 -0
  151. package/dist/runtime/types/index.js +4 -0
  152. package/dist/runtime/utils/applyProductData.d.ts +10 -0
  153. package/dist/runtime/utils/applyProductData.js +22 -0
  154. package/dist/runtime/utils/convertDate.d.ts +5 -0
  155. package/dist/runtime/utils/convertDate.js +17 -0
  156. package/dist/runtime/utils/findScrollAncestor.d.ts +1 -0
  157. package/dist/runtime/utils/findScrollAncestor.js +14 -0
  158. package/dist/runtime/utils/formValidations.d.ts +78 -0
  159. package/dist/runtime/utils/formValidations.js +180 -0
  160. package/dist/runtime/utils/formatValue.d.ts +4 -0
  161. package/dist/runtime/utils/formatValue.js +20 -0
  162. package/dist/runtime/utils/getAbTestVersion.d.ts +9 -0
  163. package/dist/runtime/utils/getAbTestVersion.js +48 -0
  164. package/dist/runtime/utils/getCalendarUrl.d.ts +8 -0
  165. package/dist/runtime/utils/getCalendarUrl.js +24 -0
  166. package/dist/runtime/utils/getFromUrl.d.ts +2 -0
  167. package/dist/runtime/utils/getFromUrl.js +25 -0
  168. package/dist/runtime/utils/getStoryblokUrl.d.ts +71 -0
  169. package/dist/runtime/utils/getStoryblokUrl.js +35 -0
  170. package/dist/runtime/utils/jsonReviver.d.ts +1 -0
  171. package/dist/runtime/utils/jsonReviver.js +18 -0
  172. package/dist/runtime/utils/mediaBreakpoints.d.ts +28 -0
  173. package/dist/runtime/utils/mediaBreakpoints.js +28 -0
  174. package/dist/runtime/utils/toggleScroll.d.ts +1 -0
  175. package/dist/runtime/utils/toggleScroll.js +6 -0
  176. package/dist/runtime/utils/updateForm.d.ts +11 -0
  177. package/dist/runtime/utils/updateForm.js +74 -0
  178. package/dist/runtime/utils/updateMarketingConsent.d.ts +4 -0
  179. package/dist/runtime/utils/updateMarketingConsent.js +13 -0
  180. package/dist/runtime/utils/uploadFile.d.ts +8 -0
  181. package/dist/runtime/utils/uploadFile.js +13 -0
  182. package/dist/types.d.mts +6 -10
  183. package/package.json +9 -8
  184. package/dist/module.d.cts +0 -2
@@ -0,0 +1,37 @@
1
+ import { type InputHTMLAttributes } from 'vue';
2
+ import type { Lazy, Schema } from 'yup';
3
+ type __VLS_Props = {
4
+ title?: string;
5
+ label?: string;
6
+ tooltip?: string;
7
+ placeholder?: InputHTMLAttributes['placeholder'];
8
+ layout?: 'vertical' | 'horizontal';
9
+ size?: 'sm' | 'md' | 'lg';
10
+ validation?: Schema | Lazy<any>;
11
+ validationMode?: 'change' | 'blur' | 'none';
12
+ errorDisplay?: boolean;
13
+ id?: InputHTMLAttributes['id'];
14
+ disabled?: InputHTMLAttributes['disabled'];
15
+ currency?: string;
16
+ };
17
+ type __VLS_ModelProps = {
18
+ modelValue: any;
19
+ };
20
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
21
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
22
+ errorMessage: import("vue").Ref<string | undefined, string | undefined>;
23
+ meta: import("vee-validate").FieldMeta<unknown>;
24
+ validate: import("vee-validate").FieldValidator<unknown>;
25
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
+ "update:modelValue": (value: any) => any;
27
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
29
+ }>, {
30
+ size: "sm" | "md" | "lg";
31
+ errorDisplay: boolean;
32
+ validationMode: "change" | "blur" | "none";
33
+ layout: "vertical" | "horizontal";
34
+ currency: string;
35
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
+ declare const _default: typeof __VLS_export;
37
+ export default _default;
@@ -0,0 +1,40 @@
1
+ import { type InputHTMLAttributes } from 'vue';
2
+ import type { Lazy, Schema } from 'yup';
3
+ import type { DateFormat } from '../../types/Form.js';
4
+ type __VLS_Props = {
5
+ title?: string;
6
+ label?: string;
7
+ tooltip?: string;
8
+ placeholder?: InputHTMLAttributes['placeholder'];
9
+ layout?: 'vertical' | 'horizontal';
10
+ size?: 'sm' | 'md' | 'lg';
11
+ validation?: Schema | Lazy<any>;
12
+ validationMode?: 'change' | 'blur' | 'none';
13
+ errorDisplay?: boolean;
14
+ id?: InputHTMLAttributes['id'];
15
+ disabled?: InputHTMLAttributes['disabled'];
16
+ dateFormat?: DateFormat;
17
+ minDate?: string;
18
+ maxDate?: string;
19
+ };
20
+ type __VLS_ModelProps = {
21
+ modelValue: InputHTMLAttributes['value'];
22
+ };
23
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
24
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
25
+ errorMessage: import("vue").Ref<string | undefined, string | undefined>;
26
+ meta: import("vee-validate").FieldMeta<unknown>;
27
+ validate: import("vee-validate").FieldValidator<unknown>;
28
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
+ "update:modelValue": (value: any) => any;
30
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
31
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
32
+ }>, {
33
+ size: "sm" | "md" | "lg";
34
+ errorDisplay: boolean;
35
+ validationMode: "change" | "blur" | "none";
36
+ layout: "vertical" | "horizontal";
37
+ dateFormat: DateFormat;
38
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
39
+ declare const _default: typeof __VLS_export;
40
+ export default _default;
@@ -0,0 +1,325 @@
1
+ <template>
2
+ <FormStructureContainer v-bind="{ layout }">
3
+ <FormStructureTitle
4
+ v-if="title"
5
+ v-bind="{ title, tooltip, size, disabled }"
6
+ />
7
+
8
+ <div
9
+ ref="inputWrapper"
10
+ class="input-wrapper"
11
+ :class="{
12
+ error: errorMessage
13
+ }"
14
+ >
15
+ <input
16
+ v-bind="{ id, disabled }"
17
+ ref="inputEl"
18
+ v-model="model"
19
+ v-maska="maskOptions"
20
+ :class="[`size-${size}`]"
21
+ dateFormat="numeric"
22
+ type="text"
23
+ :placeholder="placeholder || defaultPlaceholder"
24
+ :aria-label="label || title"
25
+ @focus="datepickerActive = false"
26
+ @blur="handleBlur($event, validationMode == 'blur')"
27
+ >
28
+
29
+ <ClientOnly>
30
+ <DatePicker
31
+ v-model.string="datepickerModel"
32
+ :popover="false"
33
+ locale="pt"
34
+ v-bind="{ masks, minDate, maxDate }"
35
+ is-required
36
+ trim-weeks
37
+ :update-on-input="false"
38
+ @popover-did-hide="handleBlur($event, validationMode == 'blur')"
39
+ @dayclick="setModel($event)"
40
+ >
41
+ <template #default="{ togglePopover }">
42
+ <button
43
+ class="datepicker-btn"
44
+ aria-label="Abrir calendário"
45
+ @click="togglePopover"
46
+ >
47
+ <span class="m-cgg-icon--calendar" />
48
+ </button>
49
+ </template>
50
+ </DatePicker>
51
+ </ClientOnly>
52
+ </div>
53
+
54
+ <FormStructureError
55
+ v-if="errorMessage && errorDisplay"
56
+ v-bind="{ size, errorMessage }"
57
+ />
58
+ </FormStructureContainer>
59
+ </template>
60
+
61
+ <script setup>
62
+ import { useField } from "vee-validate";
63
+ import { computed, ref } from "vue";
64
+ import { vMaska } from "maska/vue";
65
+ import { DatePicker } from "@angelblanco/v-calendar";
66
+ const props = defineProps({
67
+ title: { type: String, required: false },
68
+ label: { type: String, required: false },
69
+ tooltip: { type: String, required: false },
70
+ placeholder: { type: null, required: false },
71
+ layout: { type: String, required: false, default: "vertical" },
72
+ size: { type: String, required: false, default: "md" },
73
+ validation: { type: Object, required: false },
74
+ validationMode: { type: String, required: false, default: "blur" },
75
+ errorDisplay: { type: Boolean, required: false, default: true },
76
+ id: { type: null, required: false },
77
+ disabled: { type: null, required: false },
78
+ dateFormat: { type: String, required: false, default: "DD/MM/YYYY" },
79
+ minDate: { type: String, required: false },
80
+ maxDate: { type: String, required: false }
81
+ });
82
+ const datepickerModel = ref();
83
+ const defaultPlaceholder = computed(
84
+ () => props.dateFormat.replaceAll("Y", "a").toLowerCase()
85
+ );
86
+ const model = defineModel({ type: null, ...{
87
+ required: true,
88
+ set: (v) => {
89
+ datepickerModel.value = v;
90
+ return v;
91
+ }
92
+ } });
93
+ const setModel = (e) => {
94
+ if (!e.isDisabled) {
95
+ const parsedDate = e.id.split("-");
96
+ switch (props.dateFormat) {
97
+ case "DD/MM/YYYY":
98
+ parsedDate.reverse();
99
+ break;
100
+ case "MM/YYYY":
101
+ parsedDate.reverse().splice(0, 1);
102
+ break;
103
+ case "YYYY":
104
+ parsedDate.reverse().splice(0, 2);
105
+ break;
106
+ case "YYYY/MM":
107
+ parsedDate.splice(2, 1);
108
+ break;
109
+ }
110
+ model.value = parsedDate.join("/");
111
+ }
112
+ };
113
+ const { errorMessage, meta, handleBlur, validate } = useField(
114
+ "input",
115
+ props.validation,
116
+ {
117
+ validateOnValueUpdate: props.validationMode == "change",
118
+ syncVModel: true
119
+ }
120
+ );
121
+ const inputEl = ref();
122
+ const inputWrapper = ref();
123
+ const masks = ref({
124
+ modelValue: props.dateFormat
125
+ });
126
+ const maskOptions = {
127
+ mask: () => {
128
+ switch (props.dateFormat) {
129
+ case "YYYY":
130
+ return "####";
131
+ case "MM/YYYY":
132
+ return "##/####";
133
+ case "DD/MM/YYYY":
134
+ return "##/##/####";
135
+ case "YYYY/MM/DD":
136
+ return "####/##/##";
137
+ case "YYYY/MM":
138
+ return "####/##";
139
+ }
140
+ }
141
+ };
142
+ const datepickerActive = ref(false);
143
+ defineExpose({ errorMessage, meta, validate });
144
+ </script>
145
+
146
+ <style lang="scss" scoped>
147
+ .input-wrapper {
148
+ position: relative;
149
+
150
+ input {
151
+ @include input-template;
152
+
153
+ &.size-sm {
154
+ + .datepicker-btn {
155
+ font-size: 14px;
156
+ right: $sm-padding-h;
157
+ }
158
+ }
159
+
160
+ &.size-md {
161
+ + .datepicker-btn {
162
+ font-size: 16px;
163
+ right: $md-padding-h;
164
+ }
165
+ }
166
+
167
+ &.size-lg {
168
+ + .datepicker-btn {
169
+ font-size: 18px;
170
+ right: $lg-padding-h;
171
+ }
172
+ }
173
+ }
174
+
175
+ &.error {
176
+ input {
177
+ @include input-error;
178
+ }
179
+ }
180
+
181
+ .datepicker-btn {
182
+ display: flex;
183
+ position: absolute;
184
+ top: 50%;
185
+ transform: translateY(-50%);
186
+ padding: 0;
187
+ border: none;
188
+ background: none;
189
+ cursor: pointer;
190
+ transition: all 0.2s ease-in-out;
191
+
192
+ &:hover {
193
+ color: $main-blue;
194
+ }
195
+ }
196
+
197
+ :deep(.vc-date-picker-content) {
198
+ .vc-light {
199
+ --vc-hover-bg: #{$light-blue};
200
+ --vc-color: #{$extra-dark-blue};
201
+ --vc-weekday-color: #{$extra-dark-blue};
202
+ --vc-gray-400: #{$light-grey};
203
+ --vc-header-arrow-color: #{$main-blue};
204
+ --vc-focus-ring: none;
205
+ --vc-nav-hover-bg: #{$light-blue};
206
+ --vc-header-title-color: #{$main-blue};
207
+ --vc-nav-title-color: #{$main-blue};
208
+ --vc-popover-content-bg: #{$white};
209
+ }
210
+
211
+ .vc-light.vc-attr,
212
+ .vc-light .vc-attr,
213
+ .vc-blue {
214
+ --vc-accent-500: #{$main-blue};
215
+ --vc-accent-600: #{$main-blue};
216
+ }
217
+
218
+ .vc-popover-caret {
219
+ display: none;
220
+ }
221
+
222
+ .vc-header,
223
+ .vc-nav-header {
224
+ .vc-title,
225
+ .vc-nav-title {
226
+ text-transform: capitalize;
227
+ background: $extra-light-blue;
228
+ font-size: 12px;
229
+ font-weight: 700;
230
+ transition: all 0.2s ease-in-out;
231
+ border-radius: 8px;
232
+ border: 1px solid transparent;
233
+
234
+ &:hover {
235
+ opacity: 1;
236
+ background: $light-blue;
237
+ }
238
+
239
+ &:focus {
240
+ border-color: $main-blue;
241
+ }
242
+ }
243
+
244
+ .vc-arrow,
245
+ .vc-nav-arrow {
246
+ background: none;
247
+
248
+ &:hover {
249
+ color: $dark-blue;
250
+ }
251
+
252
+ &:focus {
253
+ color: $extra-dark-blue;
254
+ }
255
+
256
+ &:disabled {
257
+ opacity: 1;
258
+ color: $blue-grey;
259
+ }
260
+ }
261
+ }
262
+
263
+ .vc-container {
264
+ .vc-day {
265
+ .vc-highlights + .vc-day-content:hover {
266
+ background-color: var(--vc-highlight-solid-bg);
267
+ }
268
+
269
+ .vc-day-content {
270
+ transition: all 0.2s ease-in-out;
271
+
272
+ &:focus:not(.vc-disabled) {
273
+ background-color: $dark-blue;
274
+ color: $white;
275
+ }
276
+ }
277
+
278
+ .vc-disabled {
279
+ background: none;
280
+ cursor: auto;
281
+ }
282
+ }
283
+ }
284
+
285
+ .vc-nav-container {
286
+ .vc-nav-items {
287
+ margin-top: 8px;
288
+ }
289
+
290
+ .vc-nav-item {
291
+ text-transform: capitalize;
292
+ transition: all 0.2s ease-in-out;
293
+
294
+ &:not(.is-active):not(:hover) {
295
+ background: transparent;
296
+ }
297
+
298
+ &.is-active:focus {
299
+ background-color: $dark-blue;
300
+ }
301
+
302
+ &:disabled {
303
+ opacity: 1;
304
+ color: $light-grey;
305
+ }
306
+ }
307
+ }
308
+
309
+ .vc-popover-content-wrapper {
310
+ position: absolute;
311
+ inset: 0px auto auto 0px;
312
+ margin: 0px;
313
+ transform: translate3d(43px, 42px, 0px);
314
+
315
+ .vc-popover-content.direction-bottom {
316
+ margin-top: 8px;
317
+ }
318
+ }
319
+ }
320
+
321
+ :deep(.vc-popover-content-wrapper) {
322
+ --popover-vertical-content-offset: 28px;
323
+ }
324
+ }
325
+ </style>
@@ -0,0 +1,40 @@
1
+ import { type InputHTMLAttributes } from 'vue';
2
+ import type { Lazy, Schema } from 'yup';
3
+ import type { DateFormat } from '../../types/Form.js';
4
+ type __VLS_Props = {
5
+ title?: string;
6
+ label?: string;
7
+ tooltip?: string;
8
+ placeholder?: InputHTMLAttributes['placeholder'];
9
+ layout?: 'vertical' | 'horizontal';
10
+ size?: 'sm' | 'md' | 'lg';
11
+ validation?: Schema | Lazy<any>;
12
+ validationMode?: 'change' | 'blur' | 'none';
13
+ errorDisplay?: boolean;
14
+ id?: InputHTMLAttributes['id'];
15
+ disabled?: InputHTMLAttributes['disabled'];
16
+ dateFormat?: DateFormat;
17
+ minDate?: string;
18
+ maxDate?: string;
19
+ };
20
+ type __VLS_ModelProps = {
21
+ modelValue: InputHTMLAttributes['value'];
22
+ };
23
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
24
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
25
+ errorMessage: import("vue").Ref<string | undefined, string | undefined>;
26
+ meta: import("vee-validate").FieldMeta<unknown>;
27
+ validate: import("vee-validate").FieldValidator<unknown>;
28
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
+ "update:modelValue": (value: any) => any;
30
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
31
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
32
+ }>, {
33
+ size: "sm" | "md" | "lg";
34
+ errorDisplay: boolean;
35
+ validationMode: "change" | "blur" | "none";
36
+ layout: "vertical" | "horizontal";
37
+ dateFormat: DateFormat;
38
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
39
+ declare const _default: typeof __VLS_export;
40
+ export default _default;
@@ -0,0 +1,46 @@
1
+ import { type Ref, type InputHTMLAttributes } from 'vue';
2
+ import type { Lazy, Schema } from 'yup';
3
+ type __VLS_Props = {
4
+ id?: InputHTMLAttributes['id'];
5
+ layout?: 'vertical' | 'horizontal';
6
+ size?: 'sm' | 'md' | 'lg';
7
+ title?: string;
8
+ label?: string;
9
+ tooltip?: string;
10
+ placeholder?: string;
11
+ errorDisplay?: boolean;
12
+ description?: string;
13
+ disabled?: InputHTMLAttributes['disabled'];
14
+ validation?: Schema | Lazy<any>;
15
+ validationMode?: 'change' | 'none';
16
+ variant?: 'white' | 'blue';
17
+ accept?: string[];
18
+ hasDelete?: boolean;
19
+ };
20
+ type __VLS_ModelProps = {
21
+ modelValue: any;
22
+ };
23
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
24
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
25
+ errorMessage: Ref<string | undefined, string | undefined>;
26
+ meta: import("vee-validate").FieldMeta<unknown>;
27
+ validate: import("vee-validate").FieldValidator<unknown>;
28
+ handleInput: () => void;
29
+ updateFile: () => void;
30
+ inputElement: Ref<any, any>;
31
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
32
+ "update:delete": (...args: any[]) => void;
33
+ "update:modelValue": (value: any) => void;
34
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
35
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
36
+ "onUpdate:delete"?: ((...args: any[]) => any) | undefined;
37
+ }>, {
38
+ size: "sm" | "md" | "lg";
39
+ errorDisplay: boolean;
40
+ validationMode: "change" | "none";
41
+ layout: "vertical" | "horizontal";
42
+ placeholder: string;
43
+ variant: "white" | "blue";
44
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
45
+ declare const _default: typeof __VLS_export;
46
+ export default _default;
@@ -0,0 +1,202 @@
1
+ <template>
2
+ <FormStructureContainer v-bind="{ layout }">
3
+ <FormStructureTitle
4
+ v-if="title"
5
+ v-bind="{ title, tooltip, size, disabled }"
6
+ />
7
+
8
+ <div
9
+ class="input-wrapper"
10
+ :class="[
11
+ `size-${size}`,
12
+ `variant-${variant}`,
13
+ {
14
+ error: errorMessage,
15
+ success: model?.name,
16
+ disabled
17
+ }
18
+ ]"
19
+ @click="handleInput"
20
+ >
21
+ <span
22
+ v-if="variant == 'white'"
23
+ class="m-cgg-icon--document"
24
+ />
25
+ <div class="input-text-wrapper">
26
+ <div class="input-text">
27
+ {{
28
+ model?.name && model?.extension ? `${model.name}.${model.extension}` : placeholder
29
+ }}
30
+ </div>
31
+ </div>
32
+ <div class="icon-wrapper">
33
+ <span
34
+ v-if="!model?.name"
35
+ class="m-cgg-icon--upload"
36
+ />
37
+ <span
38
+ v-else-if="model?.name && hasDelete"
39
+ class="m-cgg-icon--cross"
40
+ @click.stop="deleteFile"
41
+ />
42
+ <span
43
+ v-else-if="model?.name"
44
+ class="m-cgg-icon--change"
45
+ />
46
+ </div>
47
+ </div>
48
+
49
+ <input
50
+ v-bind="{ id }"
51
+ ref="inputElement"
52
+ type="file"
53
+ name="file-input"
54
+ :aria-label="label || title"
55
+ :accept="accept?.map((a) => `.${a}`).join(',')"
56
+ @change="updateFile"
57
+ >
58
+
59
+ <FormStructureDescription
60
+ v-if="description"
61
+ v-bind="{ description, size, disabled }"
62
+ />
63
+
64
+ <FormStructureError
65
+ v-if="errorMessage && errorDisplay"
66
+ v-bind="{ size, errorMessage }"
67
+ />
68
+ </FormStructureContainer>
69
+ </template>
70
+
71
+ <script setup>
72
+ import { ref } from "vue";
73
+ import { useField } from "vee-validate";
74
+ const props = defineProps({
75
+ id: { type: null, required: false },
76
+ layout: { type: String, required: false, default: "vertical" },
77
+ size: { type: String, required: false, default: "md" },
78
+ title: { type: String, required: false },
79
+ label: { type: String, required: false },
80
+ tooltip: { type: String, required: false },
81
+ placeholder: { type: String, required: false, default: "Anexar ficheiro" },
82
+ errorDisplay: { type: Boolean, required: false, default: true },
83
+ description: { type: String, required: false },
84
+ disabled: { type: null, required: false },
85
+ validation: { type: Object, required: false },
86
+ validationMode: { type: String, required: false, default: "change" },
87
+ variant: { type: String, required: false, default: "white" },
88
+ accept: { type: Array, required: false },
89
+ hasDelete: { type: Boolean, required: false }
90
+ });
91
+ const model = defineModel({
92
+ required: true
93
+ });
94
+ const inputElement = ref();
95
+ const { errorMessage, meta, validate } = useField("input", props.validation, {
96
+ validateOnValueUpdate: props.validationMode == "change",
97
+ syncVModel: true
98
+ });
99
+ const handleInput = () => {
100
+ if (!props.disabled) {
101
+ inputElement.value.click();
102
+ }
103
+ };
104
+ const updateFile = () => {
105
+ const file = inputElement.value.files[0];
106
+ model.value = {
107
+ name: file.name.match(/^.+(?=\..)/g)[0],
108
+ extension: file.name.match(/[^.]+$/g)[0],
109
+ file
110
+ };
111
+ };
112
+ const deleteFile = () => {
113
+ inputElement.value.value = null;
114
+ model.value = void 0;
115
+ emit("update:delete");
116
+ };
117
+ const emit = defineEmits(["update:delete"]);
118
+ defineExpose({
119
+ errorMessage,
120
+ meta,
121
+ validate,
122
+ handleInput,
123
+ updateFile,
124
+ inputElement
125
+ });
126
+ </script>
127
+
128
+ <style lang="scss" scoped>
129
+ .input-wrapper {
130
+ @include input-template;
131
+ display: grid;
132
+ grid-template-columns: 18px 1fr 18px;
133
+ align-items: center;
134
+ cursor: pointer;
135
+ gap: 8px;
136
+ user-select: none;
137
+
138
+ &.success {
139
+ border-color: $main-blue;
140
+ }
141
+
142
+ &.error {
143
+ border-color: $input-border-error-color;
144
+ }
145
+
146
+ &.disabled,
147
+ &.disabled .icon-wrapper * {
148
+ color: $light-grey;
149
+ pointer-events: none;
150
+ }
151
+
152
+ .input-text-wrapper {
153
+ overflow: hidden;
154
+
155
+ .input-text {
156
+ text-overflow: ellipsis;
157
+ overflow: hidden;
158
+ text-wrap-mode: nowrap;
159
+ }
160
+ }
161
+
162
+ .m-cgg-icon--document {
163
+ font-size: 18px;
164
+ }
165
+
166
+ .icon-wrapper {
167
+ display: flex;
168
+ flex-direction: row;
169
+ justify-content: flex-end;
170
+ gap: 10px;
171
+ font-size: 18px;
172
+ }
173
+
174
+ .m-cgg-icon--upload,
175
+ .m-cgg-icon--change {
176
+ color: $main-blue;
177
+ }
178
+
179
+ .m-cgg-icon--cross {
180
+ cursor: pointer;
181
+ transition: all 0.2s ease-in-out;
182
+
183
+ &:hover {
184
+ color: $main-blue;
185
+ }
186
+ }
187
+
188
+ &.variant-blue {
189
+ background-color: $extra-light-blue;
190
+ border-color: $extra-light-blue;
191
+ grid-template-columns: 1fr 18px;
192
+
193
+ &.success {
194
+ border-color: $main-blue;
195
+ }
196
+ }
197
+ }
198
+
199
+ input[type="file"] {
200
+ display: none;
201
+ }
202
+ </style>