cja-phoenix 1.2.11 → 1.2.12

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 (83) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/assets/scss/mixins/_funnel.scss +15 -0
  3. package/dist/runtime/assets/scss/mixins/_index.scss +3 -14
  4. package/dist/runtime/assets/scss/mixins/_results.scss +234 -0
  5. package/dist/runtime/components/CjaButton.d.vue.ts +33 -0
  6. package/dist/runtime/components/CjaButton.vue.d.ts +3 -2
  7. package/dist/runtime/components/CollapseContainer.d.vue.ts +35 -0
  8. package/dist/runtime/components/CollapseContainer.vue.d.ts +3 -2
  9. package/dist/runtime/components/ContentTabs.d.vue.ts +23 -0
  10. package/dist/runtime/components/ContentTabs.vue.d.ts +3 -2
  11. package/dist/runtime/components/Drawer.d.vue.ts +52 -0
  12. package/dist/runtime/components/Drawer.vue.d.ts +3 -2
  13. package/dist/runtime/components/FixedContainer.d.vue.ts +37 -0
  14. package/dist/runtime/components/FixedContainer.vue.d.ts +3 -2
  15. package/dist/runtime/components/GridContainer.d.vue.ts +13 -0
  16. package/dist/runtime/components/GridContainer.vue.d.ts +3 -2
  17. package/dist/runtime/components/GridItem.d.vue.ts +29 -0
  18. package/dist/runtime/components/GridItem.vue.d.ts +3 -2
  19. package/dist/runtime/components/InfoMessage.d.vue.ts +28 -0
  20. package/dist/runtime/components/InfoMessage.vue.d.ts +3 -2
  21. package/dist/runtime/components/LoadingSpinner.d.vue.ts +10 -0
  22. package/dist/runtime/components/LoadingSpinner.vue.d.ts +2 -1
  23. package/dist/runtime/components/Modal.d.vue.ts +39 -0
  24. package/dist/runtime/components/Modal.vue.d.ts +3 -2
  25. package/dist/runtime/components/Scaffold.d.vue.ts +13 -0
  26. package/dist/runtime/components/Scaffold.vue.d.ts +3 -2
  27. package/dist/runtime/components/StickyContainer.d.vue.ts +21 -0
  28. package/dist/runtime/components/StickyContainer.vue +16 -10
  29. package/dist/runtime/components/StickyContainer.vue.d.ts +3 -2
  30. package/dist/runtime/components/form/CheckboxInput.d.vue.ts +42 -0
  31. package/dist/runtime/components/form/CheckboxInput.vue.d.ts +5 -3
  32. package/dist/runtime/components/form/CheckboxInputList.d.vue.ts +37 -0
  33. package/dist/runtime/components/form/CheckboxInputList.vue.d.ts +4 -2
  34. package/dist/runtime/components/form/CurrencyInput.d.vue.ts +37 -0
  35. package/dist/runtime/components/form/CurrencyInput.vue.d.ts +4 -2
  36. package/dist/runtime/components/form/DateInput.d.vue.ts +40 -0
  37. package/dist/runtime/components/form/DateInput.vue.d.ts +4 -2
  38. package/dist/runtime/components/form/FileInput.d.vue.ts +46 -0
  39. package/dist/runtime/components/form/FileInput.vue.d.ts +4 -2
  40. package/dist/runtime/components/form/NumberInput.d.vue.ts +41 -0
  41. package/dist/runtime/components/form/NumberInput.vue.d.ts +6 -4
  42. package/dist/runtime/components/form/PhoneInput.d.vue.ts +44 -0
  43. package/dist/runtime/components/form/PhoneInput.vue.d.ts +6 -4
  44. package/dist/runtime/components/form/RadioInput.d.vue.ts +42 -0
  45. package/dist/runtime/components/form/RadioInput.vue.d.ts +5 -3
  46. package/dist/runtime/components/form/RadioInputList.d.vue.ts +57 -0
  47. package/dist/runtime/components/form/RadioInputList.vue.d.ts +4 -2
  48. package/dist/runtime/components/form/SelectInput.d.vue.ts +46 -0
  49. package/dist/runtime/components/form/SelectInput.vue +16 -10
  50. package/dist/runtime/components/form/SelectInput.vue.d.ts +13 -11
  51. package/dist/runtime/components/form/SelectionTiles.d.vue.ts +44 -0
  52. package/dist/runtime/components/form/SelectionTiles.vue.d.ts +4 -2
  53. package/dist/runtime/components/form/SliderInput.d.vue.ts +51 -0
  54. package/dist/runtime/components/form/SliderInput.vue +2 -0
  55. package/dist/runtime/components/form/SliderInput.vue.d.ts +7 -5
  56. package/dist/runtime/components/form/TextInput.d.vue.ts +56 -0
  57. package/dist/runtime/components/form/TextInput.vue.d.ts +4 -2
  58. package/dist/runtime/components/form/TextareaInput.d.vue.ts +37 -0
  59. package/dist/runtime/components/form/TextareaInput.vue.d.ts +4 -2
  60. package/dist/runtime/components/form/TileCheckboxInput.d.vue.ts +40 -0
  61. package/dist/runtime/components/form/TileCheckboxInput.vue.d.ts +5 -3
  62. package/dist/runtime/components/form/ToggleInput.d.vue.ts +43 -0
  63. package/dist/runtime/components/form/ToggleInput.vue.d.ts +5 -3
  64. package/dist/runtime/components/form/structure/Container.d.vue.ts +16 -0
  65. package/dist/runtime/components/form/structure/Container.vue.d.ts +3 -2
  66. package/dist/runtime/components/form/structure/Description.d.vue.ts +9 -0
  67. package/dist/runtime/components/form/structure/Description.vue.d.ts +2 -1
  68. package/dist/runtime/components/form/structure/Error.d.vue.ts +9 -0
  69. package/dist/runtime/components/form/structure/Error.vue.d.ts +2 -1
  70. package/dist/runtime/components/form/structure/Title.d.vue.ts +12 -0
  71. package/dist/runtime/components/form/structure/Title.vue.d.ts +2 -1
  72. package/dist/runtime/components/funnel/Header.d.vue.ts +8 -0
  73. package/dist/runtime/components/funnel/Header.vue.d.ts +2 -1
  74. package/dist/runtime/composables/useCjaGtm.d.ts +1 -9
  75. package/dist/runtime/composables/useCjaGtm.js +47 -79
  76. package/dist/runtime/composables/useHeaderHeight.d.ts +1 -1
  77. package/dist/runtime/composables/useHeaderHeight.js +17 -7
  78. package/dist/runtime/utils/applyProductData.d.ts +1 -1
  79. package/dist/runtime/utils/applyProductData.js +1 -1
  80. package/dist/runtime/utils/formatValue.d.ts +1 -1
  81. package/dist/runtime/utils/formatValue.js +4 -3
  82. package/dist/runtime/utils/jsonReviver.js +4 -1
  83. package/package.json +2 -2
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cja-phoenix",
3
3
  "configKey": "cja-phoenix",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -0,0 +1,15 @@
1
+ @use "../variables" as *;
2
+
3
+ @mixin funnel-divider {
4
+ margin: 32px 0;
5
+ border-color: $light-grey;
6
+ border-style: solid;
7
+ border-bottom-width: 0;
8
+ }
9
+
10
+ @mixin funnel-form($width: 360px) {
11
+ display: grid;
12
+ grid-template-columns: min(100%, $width);
13
+ justify-content: center;
14
+ gap: 32px;
15
+ }
@@ -1,5 +1,8 @@
1
1
  @use "../variables" as *;
2
2
 
3
+ @forward "funnel";
4
+ @forward "results";
5
+
3
6
  @mixin text-gradient-dark-blue {
4
7
  display: inline-block; /* inline-block assures gradient display across all text */
5
8
  background-image: linear-gradient(90deg, $extra-dark-blue, $main-blue);
@@ -24,20 +27,6 @@
24
27
  transition: all 0.4s ease-in-out;
25
28
  }
26
29
 
27
- @mixin funnel-divider {
28
- margin: 32px 0;
29
- border-color: $light-grey;
30
- border-style: solid;
31
- border-bottom-width: 0;
32
- }
33
-
34
- @mixin funnel-form($width: 360px) {
35
- display: grid;
36
- grid-template-columns: min(100%, $width);
37
- justify-content: center;
38
- gap: 32px;
39
- }
40
-
41
30
  @mixin fade-transition($duration: 0.6s) {
42
31
  .fade-enter-active,
43
32
  .fade-leave-active {
@@ -0,0 +1,234 @@
1
+ @use "../variables" as *;
2
+
3
+ @mixin results-info {
4
+ .sidebar-product-info {
5
+ display: grid;
6
+ grid-template-rows: auto 1fr auto;
7
+ height: 100%;
8
+ background: $white;
9
+ box-shadow: $box-shadow-m;
10
+ overflow: hidden;
11
+
12
+ .sidebar-header {
13
+ display: grid;
14
+ grid-template-columns: 100px 1fr auto;
15
+ align-items: center;
16
+ padding: 24px;
17
+ gap: 20px;
18
+ box-shadow: $box-shadow-s;
19
+
20
+ @media screen and (min-width: $break-md-min) {
21
+ grid-template-columns: 115px 1fr auto;
22
+ padding: 24px 48px;
23
+ gap: 48px;
24
+ }
25
+
26
+ .product-image {
27
+ img {
28
+ display: block;
29
+ width: 100%;
30
+ }
31
+ }
32
+
33
+ .product-title {
34
+ font-size: 13px;
35
+ line-height: 17px;
36
+ }
37
+
38
+ .btn-container button {
39
+ display: flex;
40
+ align-items: center;
41
+ justify-content: center;
42
+ border: none;
43
+ background: none;
44
+ width: 24px;
45
+ height: 24px;
46
+ font-size: 14px;
47
+ padding: 0;
48
+ cursor: pointer;
49
+ transition: all 0.2s ease-in-out;
50
+ color: $dark-blue;
51
+
52
+ &:hover {
53
+ color: $main-blue;
54
+ }
55
+ }
56
+ }
57
+
58
+ .sidebar-body {
59
+ padding: 24px;
60
+ overflow-y: auto;
61
+
62
+ @media screen and (min-width: $break-md-min) {
63
+ padding: 24px 40px;
64
+ }
65
+
66
+ .product-data {
67
+ margin-bottom: 32px;
68
+
69
+ .title {
70
+ font-size: 16px;
71
+ font-weight: 700;
72
+ line-height: 20px;
73
+ margin-bottom: 16px;
74
+ }
75
+
76
+ .data-list {
77
+ display: grid;
78
+ grid-template-columns: repeat(2, 1fr);
79
+ gap: 16px;
80
+
81
+ .data-group {
82
+ display: grid;
83
+ align-items: center;
84
+ gap: 16px;
85
+
86
+ &:not(.bordered):not(.highlight) {
87
+ @media screen and (min-width: $break-sm-min) {
88
+ padding: 12px 16px;
89
+ border-radius: 8px;
90
+ border: 1px solid $light-grey;
91
+ }
92
+ }
93
+
94
+ &.bordered {
95
+ padding: 12px 16px;
96
+ border-radius: 8px;
97
+ border: 1px solid $light-grey;
98
+ }
99
+
100
+ &.highlight {
101
+ padding: 12px 16px;
102
+ border-radius: 8px;
103
+ background: $light-blue;
104
+ grid-area: 1 / 1 / 2 / 2;
105
+
106
+ .data-item {
107
+ .item-title {
108
+ font-size: 13px;
109
+ line-height: 17px;
110
+ }
111
+
112
+ .item-amount {
113
+ font-size: 24px;
114
+ font-weight: 800;
115
+ }
116
+ }
117
+ }
118
+
119
+ .data-item {
120
+ display: flex;
121
+ flex-direction: column;
122
+ justify-content: center;
123
+ gap: 4px;
124
+ font-size: 14px;
125
+ line-height: 18px;
126
+
127
+ .item-amount {
128
+ font-weight: 700;
129
+ }
130
+ }
131
+ }
132
+ }
133
+ }
134
+
135
+ .info-section {
136
+ + .info-section {
137
+ border-top: 1px solid $light-grey;
138
+ padding-top: 16px;
139
+ margin-top: 16px;
140
+ }
141
+
142
+ :deep(.collapse-header .header-wrapper) {
143
+ font-size: 16px;
144
+ font-weight: 700;
145
+ line-height: 28px;
146
+ }
147
+
148
+ :deep(.content-container .collapse-header .header-wrapper) {
149
+ color: $main-blue;
150
+ font-size: 14px;
151
+ font-weight: 700;
152
+ line-height: 28px;
153
+ }
154
+ }
155
+
156
+ .features-list {
157
+ display: grid;
158
+ gap: 8px;
159
+ list-style: none;
160
+ padding: 0;
161
+ margin: 0;
162
+
163
+ li {
164
+ display: grid;
165
+ grid-template-columns: auto 1fr;
166
+ gap: 4px 16px;
167
+
168
+ .icon {
169
+ font-size: 16px;
170
+ line-height: 21px;
171
+
172
+ &.m-cgg-icon--check {
173
+ color: $main-green;
174
+ }
175
+
176
+ &.m-cgg-icon--cross {
177
+ color: $alert-red;
178
+ }
179
+ }
180
+
181
+ .text {
182
+ color: text-grey;
183
+ font-size: 14px;
184
+ line-height: 21px;
185
+ }
186
+ }
187
+ }
188
+
189
+ .info-list {
190
+ display: flex;
191
+ flex-direction: column;
192
+ gap: 8px;
193
+ list-style: none;
194
+ padding: 0;
195
+ margin: 0;
196
+
197
+ li {
198
+ display: flex;
199
+ justify-content: space-between;
200
+ gap: 16px;
201
+ font-size: 14px;
202
+ line-height: 28px;
203
+ padding-top: 8px;
204
+ border-top: 1px solid $disabled-grey;
205
+
206
+ .item-title {
207
+ display: flex;
208
+ align-items: center;
209
+ gap: 8px;
210
+
211
+ .m-cgg-icon--question {
212
+ color: $main-blue;
213
+ }
214
+ }
215
+
216
+ .item-amount {
217
+ font-weight: 700;
218
+ }
219
+ }
220
+ }
221
+ }
222
+
223
+ .sidebar-footer {
224
+ display: grid;
225
+ padding: 24px;
226
+ box-shadow: $box-shadow-s;
227
+
228
+ @media screen and (min-width: $break-xs-min) {
229
+ justify-content: center;
230
+ grid-template-columns: 200px;
231
+ }
232
+ }
233
+ }
234
+ }
@@ -0,0 +1,33 @@
1
+ import type { AnchorHTMLAttributes } from 'vue';
2
+ import type { Icon } from '../types/Icon.js';
3
+ type __VLS_Props = {
4
+ type?: 'primary' | 'secondary' | 'tertiary';
5
+ color?: 'blue' | 'orange' | 'white' | 'light-blue' | 'gradient-green-blue';
6
+ textAlign?: 'center' | 'left' | 'right';
7
+ size?: 'sm' | 'md' | 'lg';
8
+ shadow?: boolean;
9
+ iconRight?: Icon;
10
+ iconLeft?: Icon;
11
+ iconOnly?: boolean;
12
+ loading?: boolean;
13
+ href?: AnchorHTMLAttributes['href'];
14
+ target?: AnchorHTMLAttributes['target'];
15
+ };
16
+ declare var __VLS_12: {};
17
+ type __VLS_Slots = {} & {
18
+ default?: (props: typeof __VLS_12) => any;
19
+ };
20
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
21
+ type: "primary" | "secondary" | "tertiary";
22
+ size: "sm" | "md" | "lg";
23
+ color: "blue" | "orange" | "white" | "light-blue" | "gradient-green-blue";
24
+ textAlign: "center" | "left" | "right";
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
+ declare const _default: typeof __VLS_export;
28
+ export default _default;
29
+ type __VLS_WithSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -17,13 +17,14 @@ declare var __VLS_12: {};
17
17
  type __VLS_Slots = {} & {
18
18
  default?: (props: typeof __VLS_12) => any;
19
19
  };
20
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
20
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
21
21
  type: "primary" | "secondary" | "tertiary";
22
22
  size: "sm" | "md" | "lg";
23
23
  color: "blue" | "orange" | "white" | "light-blue" | "gradient-green-blue";
24
24
  textAlign: "center" | "left" | "right";
25
25
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
26
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
+ declare const _default: typeof __VLS_export;
27
28
  export default _default;
28
29
  type __VLS_WithSlots<T, S> = T & {
29
30
  new (): {
@@ -0,0 +1,35 @@
1
+ type __VLS_Props = {
2
+ active?: boolean;
3
+ scrollToContent?: {
4
+ element: HTMLElement;
5
+ };
6
+ };
7
+ declare var __VLS_1: {}, __VLS_12: {};
8
+ type __VLS_Slots = {} & {
9
+ header?: (props: typeof __VLS_1) => any;
10
+ } & {
11
+ content?: (props: typeof __VLS_12) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
14
+ toggleCollapse: () => void;
15
+ openCollapse: () => void;
16
+ closeCollapse: () => void;
17
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "toggle:collapse": (...args: any[]) => void;
19
+ "open:collapse": (...args: any[]) => void;
20
+ "close:collapse": (...args: any[]) => void;
21
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
22
+ "onToggle:collapse"?: ((...args: any[]) => any) | undefined;
23
+ "onOpen:collapse"?: ((...args: any[]) => any) | undefined;
24
+ "onClose:collapse"?: ((...args: any[]) => any) | undefined;
25
+ }>, {
26
+ active: boolean;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
29
+ declare const _default: typeof __VLS_export;
30
+ export default _default;
31
+ type __VLS_WithSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  } & {
11
11
  content?: (props: typeof __VLS_12) => any;
12
12
  };
13
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
14
14
  toggleCollapse: () => void;
15
15
  openCollapse: () => void;
16
16
  closeCollapse: () => void;
@@ -25,7 +25,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
25
25
  }>, {
26
26
  active: boolean;
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
29
+ declare const _default: typeof __VLS_export;
29
30
  export default _default;
30
31
  type __VLS_WithSlots<T, S> = T & {
31
32
  new (): {
@@ -0,0 +1,23 @@
1
+ type __VLS_Props = {
2
+ defaultTab: number;
3
+ tabs: string[];
4
+ };
5
+ declare var __VLS_7: number, __VLS_8: {};
6
+ type __VLS_Slots = {} & {
7
+ [K in NonNullable<typeof __VLS_7>]?: (props: typeof __VLS_8) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
10
+ activeTab: import("vue").Ref<number, number>;
11
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ "tab:changed": (...args: any[]) => void;
13
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
14
+ "onTab:changed"?: ((...args: any[]) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
19
+ type __VLS_WithSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -6,14 +6,15 @@ declare var __VLS_7: number, __VLS_8: {};
6
6
  type __VLS_Slots = {} & {
7
7
  [K in NonNullable<typeof __VLS_7>]?: (props: typeof __VLS_8) => any;
8
8
  };
9
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
9
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
10
10
  activeTab: import("vue").Ref<number, number>;
11
11
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
12
  "tab:changed": (...args: any[]) => void;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
14
14
  "onTab:changed"?: ((...args: any[]) => any) | undefined;
15
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
16
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
+ declare const _default: typeof __VLS_export;
17
18
  export default _default;
18
19
  type __VLS_WithSlots<T, S> = T & {
19
20
  new (): {
@@ -0,0 +1,52 @@
1
+ type __VLS_Props = {
2
+ defaultActive?: boolean;
3
+ type?: 'vertical-top' | 'vertical-bottom' | 'horizontal-left' | 'horizontal-right';
4
+ maxWidth?: {
5
+ md?: string;
6
+ lg?: string;
7
+ xl?: string;
8
+ };
9
+ position?: {
10
+ left?: string;
11
+ top?: string;
12
+ right?: string;
13
+ bottom?: string;
14
+ };
15
+ height?: string;
16
+ backdrop?: boolean;
17
+ disableDocumentScroll?: boolean;
18
+ overlapMenu?: boolean;
19
+ };
20
+ declare var __VLS_16: {};
21
+ type __VLS_Slots = {} & {
22
+ default?: (props: typeof __VLS_16) => any;
23
+ };
24
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
25
+ active: import("vue").Ref<boolean, boolean>;
26
+ openDrawer: () => void;
27
+ closeDrawer: () => void;
28
+ toggleDrawer: () => void;
29
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
30
+ close: (...args: any[]) => void;
31
+ open: (...args: any[]) => void;
32
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
33
+ onClose?: ((...args: any[]) => any) | undefined;
34
+ onOpen?: ((...args: any[]) => any) | undefined;
35
+ }>, {
36
+ type: "vertical-top" | "vertical-bottom" | "horizontal-left" | "horizontal-right";
37
+ defaultActive: boolean;
38
+ maxWidth: {
39
+ md?: string;
40
+ lg?: string;
41
+ xl?: string;
42
+ };
43
+ backdrop: boolean;
44
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
45
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
46
+ declare const _default: typeof __VLS_export;
47
+ export default _default;
48
+ type __VLS_WithSlots<T, S> = T & {
49
+ new (): {
50
+ $slots: S;
51
+ };
52
+ };
@@ -21,7 +21,7 @@ declare var __VLS_16: {};
21
21
  type __VLS_Slots = {} & {
22
22
  default?: (props: typeof __VLS_16) => any;
23
23
  };
24
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
24
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
25
25
  active: import("vue").Ref<boolean, boolean>;
26
26
  openDrawer: () => void;
27
27
  closeDrawer: () => void;
@@ -42,7 +42,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
42
42
  };
43
43
  backdrop: boolean;
44
44
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
45
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
45
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
46
+ declare const _default: typeof __VLS_export;
46
47
  export default _default;
47
48
  type __VLS_WithSlots<T, S> = T & {
48
49
  new (): {
@@ -0,0 +1,37 @@
1
+ type __VLS_Props = {
2
+ active?: boolean;
3
+ scrollThreshold?: number;
4
+ scrollLimitEl?: HTMLElement;
5
+ fixWidth?: boolean;
6
+ size?: {
7
+ height?: string;
8
+ width?: string;
9
+ };
10
+ position?: {
11
+ left?: string;
12
+ top?: string;
13
+ right?: string;
14
+ bottom?: string;
15
+ };
16
+ };
17
+ declare var __VLS_1: {}, __VLS_3: {};
18
+ type __VLS_Slots = {} & {
19
+ default?: (props: typeof __VLS_1) => any;
20
+ } & {
21
+ default?: (props: typeof __VLS_3) => any;
22
+ };
23
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
24
+ positionFixed: import("vue").Ref<boolean, boolean>;
25
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
26
+ active: boolean;
27
+ scrollThreshold: number;
28
+ fixWidth: boolean;
29
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
31
+ declare const _default: typeof __VLS_export;
32
+ export default _default;
33
+ type __VLS_WithSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };
@@ -20,14 +20,15 @@ type __VLS_Slots = {} & {
20
20
  } & {
21
21
  default?: (props: typeof __VLS_3) => any;
22
22
  };
23
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
23
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
24
24
  positionFixed: import("vue").Ref<boolean, boolean>;
25
25
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
26
26
  active: boolean;
27
27
  scrollThreshold: number;
28
28
  fixWidth: boolean;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
30
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
31
+ declare const _default: typeof __VLS_export;
31
32
  export default _default;
32
33
  type __VLS_WithSlots<T, S> = T & {
33
34
  new (): {
@@ -0,0 +1,13 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -2,8 +2,9 @@ declare var __VLS_1: {};
2
2
  type __VLS_Slots = {} & {
3
3
  default?: (props: typeof __VLS_1) => any;
4
4
  };
5
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
5
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
7
+ declare const _default: typeof __VLS_export;
7
8
  export default _default;
8
9
  type __VLS_WithSlots<T, S> = T & {
9
10
  new (): {
@@ -0,0 +1,29 @@
1
+ import type { GridItemOffsetDesktop, GridItemOffsetMobile, GridItemSizeDesktop, GridItemSizeMobile } from '../types/Grid.js';
2
+ type __VLS_Props = {
3
+ sizeSm?: GridItemSizeMobile;
4
+ offsetSm?: GridItemOffsetMobile;
5
+ sizeMd?: GridItemSizeMobile;
6
+ offsetMd?: GridItemOffsetMobile;
7
+ sizeLg?: GridItemSizeDesktop;
8
+ offsetLg?: GridItemOffsetDesktop;
9
+ sizeXl?: GridItemSizeDesktop;
10
+ offsetXl?: GridItemOffsetDesktop;
11
+ };
12
+ declare var __VLS_1: {};
13
+ type __VLS_Slots = {} & {
14
+ default?: (props: typeof __VLS_1) => any;
15
+ };
16
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ sizeSm: GridItemSizeMobile;
18
+ sizeMd: GridItemSizeMobile;
19
+ sizeLg: GridItemSizeDesktop;
20
+ sizeXl: GridItemSizeDesktop;
21
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
25
+ type __VLS_WithSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -13,13 +13,14 @@ declare var __VLS_1: {};
13
13
  type __VLS_Slots = {} & {
14
14
  default?: (props: typeof __VLS_1) => any;
15
15
  };
16
- declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
17
  sizeSm: GridItemSizeMobile;
18
18
  sizeMd: GridItemSizeMobile;
19
19
  sizeLg: GridItemSizeDesktop;
20
20
  sizeXl: GridItemSizeDesktop;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
22
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
23
+ declare const _default: typeof __VLS_export;
23
24
  export default _default;
24
25
  type __VLS_WithSlots<T, S> = T & {
25
26
  new (): {
@@ -0,0 +1,28 @@
1
+ type __VLS_Props = {
2
+ toggle?: boolean;
3
+ color: 'blue' | 'green' | 'red' | 'yellow' | 'dark-white';
4
+ border?: boolean;
5
+ };
6
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
7
+ type __VLS_Slots = {} & {
8
+ icon?: (props: typeof __VLS_1) => any;
9
+ } & {
10
+ title?: (props: typeof __VLS_3) => any;
11
+ } & {
12
+ description?: (props: typeof __VLS_5) => any;
13
+ };
14
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "btn:close": (...args: any[]) => void;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ "onBtn:close"?: ((...args: any[]) => any) | undefined;
18
+ }>, {
19
+ border: boolean;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };