@explorer-1/vue 0.2.40 → 0.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.
- package/components.d.ts +3 -0
- package/dist/explorer-1-vue.js +4912 -4553
- package/dist/explorer-1-vue.umd.cjs +13 -13
- package/dist/src/components/BasePill/BasePill.vue.d.ts +4 -10
- package/dist/src/components/BaseSwimlane/BaseSwimlane.vue.d.ts +2 -2
- package/dist/src/components/BlockIframeEmbed/BlockIframeEmbed.vue.d.ts +9 -1
- package/dist/src/components/BlockImage/BlockImageFullBleed.vue.d.ts +23 -4
- package/dist/src/components/BlockImage/BlockImageStandard.vue.d.ts +23 -4
- package/dist/src/components/BlockImageComparison/BlockImageComparison.vue.d.ts +11 -1
- package/dist/src/components/BlockVideo/BlockVideo.vue.d.ts +19 -1
- package/dist/src/components/BlockVideoEmbed/BlockVideoEmbed.vue.d.ts +9 -0
- package/dist/src/components/DetailHeadline/DetailHeadline.vue.d.ts +9 -0
- package/dist/src/components/HeroListingIndex/HeroListingIndex.stories.d.ts +82 -93
- package/dist/src/components/MetadataEduResource/MetadataEduResource.vue.d.ts +4 -0
- package/dist/src/components/MetadataEvent/MetadataEvent.stories.d.ts +1 -0
- package/dist/src/components/MixinCarousel/MixinCarousel.stories.d.ts +4 -4
- package/dist/src/components/MixinCarousel/MixinCarousel.vue.d.ts +2 -2
- package/dist/src/components/MixinFancybox/MixinFancybox.vue.d.ts +1 -1
- package/dist/src/components/NavDesktop/NavDesktop.stories.d.ts +4 -4
- package/dist/src/components/NavDesktop/NavDesktop.vue.d.ts +2 -2
- package/dist/src/components/NavDesktopEdu/NavDesktopEdu.stories.d.ts +2 -2
- package/dist/src/components/NavMobile/NavMobile.stories.d.ts +3 -3
- package/dist/src/components/NavMobile/NavMobile.vue.d.ts +1 -1
- package/dist/src/components/NavMobile/NavMobileEdu.stories.d.ts +3 -3
- package/dist/src/components/NavSecondary/NavSecondaryDropdown.vue.d.ts +4 -4
- package/dist/src/components/NewsDetailMediaContact/NewsDetailMediaContact.vue.d.ts +1 -1
- package/dist/src/components/SearchFilterGroup/SearchFilterGroup.vue.d.ts +7 -0
- package/dist/src/components/SearchResultCard/SearchResultCard.vue.d.ts +54 -5
- package/dist/src/components/SearchResultGridItem/SearchResultGridItem.vue.d.ts +42 -4
- package/dist/src/components/TextArea/TextArea.vue.d.ts +9 -9
- package/dist/src/components/TextInput/TextInput.vue.d.ts +9 -9
- package/dist/src/constants.d.ts +12 -2
- package/dist/src/interfaces.d.ts +16 -9
- package/dist/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.d.ts +284 -0
- package/dist/src/templates/edu/PageEduLesson/PageEduLesson.stories.d.ts +8 -2
- package/dist/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.stories.d.ts +359 -0
- package/dist/src/utils/getHeadingId.d.ts +1 -3
- package/dist/src/utils/lookupContentType.d.ts +3 -0
- package/dist/src/utils/mixins.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/BaseButton/BaseButton.vue +3 -3
- package/src/components/BaseImageCaption/BaseImageCaption.vue +10 -7
- package/src/components/BlockImage/BlockImageFullBleed.vue +37 -7
- package/src/components/BlockImage/BlockImageStandard.vue +36 -8
- package/src/components/BlockImageComparison/BlockImageComparison.vue +23 -20
- package/src/components/BlockRelatedLinks/RelatedLink.vue +2 -2
- package/src/components/BlockVideo/BlockVideo.vue +22 -2
- package/src/components/BlockVideoEmbed/BlockVideoEmbed.vue +10 -2
- package/src/components/DetailHeadline/DetailHeadline.vue +11 -6
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.stories.js +13 -4
- package/src/templates/edu/PageEduGalleryDetail/PageEduGalleryDetail.vue +36 -18
- package/src/templates/edu/PageEduMultimediaDetail/PageEduMultimediaDetail.vue +1 -0
|
@@ -101,7 +101,7 @@ export namespace BaseStory {
|
|
|
101
101
|
closeMenu(): void;
|
|
102
102
|
openMenu(): void;
|
|
103
103
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
104
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
104
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
105
105
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
106
106
|
data: {
|
|
107
107
|
type: ObjectConstructor;
|
|
@@ -213,7 +213,7 @@ export namespace WithSecondaryNav {
|
|
|
213
213
|
closeMenu(): void;
|
|
214
214
|
openMenu(): void;
|
|
215
215
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
216
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
216
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
217
217
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
218
218
|
data: {
|
|
219
219
|
type: ObjectConstructor;
|
|
@@ -326,7 +326,7 @@ export namespace WithTertiaryNav {
|
|
|
326
326
|
closeMenu(): void;
|
|
327
327
|
openMenu(): void;
|
|
328
328
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
329
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
329
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
330
330
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
331
331
|
data: {
|
|
332
332
|
type: ObjectConstructor;
|
|
@@ -54,7 +54,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
54
54
|
closeMenu(): void;
|
|
55
55
|
openMenu(): void;
|
|
56
56
|
getUrlKey(item: LinkObject): string | null;
|
|
57
|
-
checkActive(item: LinkObject): boolean;
|
|
57
|
+
checkActive(item: LinkObject): boolean | undefined;
|
|
58
58
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
59
59
|
data: {
|
|
60
60
|
type: ObjectConstructor;
|
|
@@ -106,7 +106,7 @@ export namespace BaseStory {
|
|
|
106
106
|
closeMenu(): void;
|
|
107
107
|
openMenu(): void;
|
|
108
108
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
109
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
109
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
110
110
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
111
111
|
data: {
|
|
112
112
|
type: ObjectConstructor;
|
|
@@ -218,7 +218,7 @@ export namespace WithSecondaryNav {
|
|
|
218
218
|
closeMenu(): void;
|
|
219
219
|
openMenu(): void;
|
|
220
220
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
221
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
221
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
222
222
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
223
223
|
data: {
|
|
224
224
|
type: ObjectConstructor;
|
|
@@ -331,7 +331,7 @@ export namespace WithTertiaryNav {
|
|
|
331
331
|
closeMenu(): void;
|
|
332
332
|
openMenu(): void;
|
|
333
333
|
getUrlKey(item: import("../../utils/mixins").LinkObject): string | null;
|
|
334
|
-
checkActive(item: import("../../utils/mixins").LinkObject): boolean;
|
|
334
|
+
checkActive(item: import("../../utils/mixins").LinkObject): boolean | undefined;
|
|
335
335
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closeMobileMenu" | "openMobileMenu")[], "closeMobileMenu" | "openMobileMenu", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
336
336
|
data: {
|
|
337
337
|
type: ObjectConstructor;
|
|
@@ -27,16 +27,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
27
27
|
isExternal(path: string): boolean;
|
|
28
28
|
dropdownToggleClasses(index: number): {
|
|
29
29
|
'mr-auto text-white font-bold secondary-root': boolean;
|
|
30
|
-
'text-white font-semibold
|
|
30
|
+
'text-white font-semibold mt-[.2rem]': boolean;
|
|
31
31
|
'-open': boolean;
|
|
32
32
|
'mr-auto text-primary font-semibold secondary-root'?: undefined;
|
|
33
|
-
'text-gray-dark font-medium
|
|
33
|
+
'text-gray-dark font-medium mt-[.2rem]'?: undefined;
|
|
34
34
|
} | {
|
|
35
35
|
'mr-auto text-primary font-semibold secondary-root': boolean;
|
|
36
|
-
'text-gray-dark font-medium
|
|
36
|
+
'text-gray-dark font-medium mt-[.2rem]': boolean;
|
|
37
37
|
'-open': boolean;
|
|
38
38
|
'mr-auto text-white font-bold secondary-root'?: undefined;
|
|
39
|
-
'text-white font-semibold
|
|
39
|
+
'text-white font-semibold mt-[.2rem]'?: undefined;
|
|
40
40
|
};
|
|
41
41
|
dropdownButtonClasses(index: number): "can-hover:group-hover:border-white" | "can-hover:group-hover:border-primary" | "can-hover:group-hover:border-white can-hover:group-hover:text-white" | "can-hover:group-hover:border-gray-mid-dark can-hover:group-hover:text-gray-mid-dark";
|
|
42
42
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("closeDropdown" | "openDropdown")[], "closeDropdown" | "openDropdown", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
16
16
|
default: () => never[];
|
|
17
17
|
};
|
|
18
18
|
}, unknown, unknown, {
|
|
19
|
-
hasContent(): boolean;
|
|
19
|
+
hasContent(): boolean | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
formatEmail(email: string): string;
|
|
22
22
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -30,6 +30,13 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
30
30
|
set(newValue: any): void;
|
|
31
31
|
};
|
|
32
32
|
bucketsLength(): any;
|
|
33
|
+
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
34
|
+
isEdu(state: {
|
|
35
|
+
theme: import('../../interfaces').Explorer1Theme | null;
|
|
36
|
+
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
37
|
+
}, {
|
|
38
|
+
setTheme(value: import('../../interfaces').Explorer1Theme): void;
|
|
39
|
+
}>;
|
|
33
40
|
}, {
|
|
34
41
|
generateId(value: any): string;
|
|
35
42
|
toggleShowMoreFilters(): void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
+
import { PrimarySubjectObject, GradeLevelsObject, EduResourcesTime } from './../../interfaces';
|
|
2
3
|
import { HeadingLevel } from './../BaseHeading/BaseHeading.vue';
|
|
3
4
|
|
|
4
5
|
declare const _default: import('vue').DefineComponent<{
|
|
@@ -89,6 +90,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
89
90
|
required: false;
|
|
90
91
|
default: undefined;
|
|
91
92
|
};
|
|
93
|
+
customDate: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
required: false;
|
|
96
|
+
default: undefined;
|
|
97
|
+
};
|
|
92
98
|
location: {
|
|
93
99
|
type: StringConstructor;
|
|
94
100
|
required: false;
|
|
@@ -98,16 +104,33 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
98
104
|
type: StringConstructor;
|
|
99
105
|
default: undefined;
|
|
100
106
|
};
|
|
107
|
+
ongoing: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
primarySubject: {
|
|
112
|
+
type: PropType<PrimarySubjectObject>;
|
|
113
|
+
default: undefined;
|
|
114
|
+
};
|
|
115
|
+
gradeLevels: {
|
|
116
|
+
type: PropType<GradeLevelsObject[]>;
|
|
117
|
+
default: undefined;
|
|
118
|
+
};
|
|
119
|
+
time: {
|
|
120
|
+
type: PropType<EduResourcesTime>;
|
|
121
|
+
default: undefined;
|
|
122
|
+
};
|
|
101
123
|
}, unknown, unknown, {
|
|
102
|
-
searchContentTypeToPageType(): import('../../interfaces').DictionaryInterface;
|
|
103
124
|
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
104
125
|
isEdu(state: {
|
|
105
|
-
theme: import('
|
|
126
|
+
theme: import('./../../interfaces').Explorer1Theme | null;
|
|
106
127
|
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
107
128
|
}, {
|
|
108
|
-
setTheme(value: import('
|
|
129
|
+
setTheme(value: import('./../../interfaces').Explorer1Theme): void;
|
|
109
130
|
}>;
|
|
110
|
-
}, {
|
|
131
|
+
}, {
|
|
132
|
+
getInterfaceFromEskey(key: string): undefined;
|
|
133
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
111
134
|
url: {
|
|
112
135
|
type: StringConstructor;
|
|
113
136
|
required: false;
|
|
@@ -195,6 +218,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
195
218
|
required: false;
|
|
196
219
|
default: undefined;
|
|
197
220
|
};
|
|
221
|
+
customDate: {
|
|
222
|
+
type: StringConstructor;
|
|
223
|
+
required: false;
|
|
224
|
+
default: undefined;
|
|
225
|
+
};
|
|
198
226
|
location: {
|
|
199
227
|
type: StringConstructor;
|
|
200
228
|
required: false;
|
|
@@ -204,24 +232,45 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
204
232
|
type: StringConstructor;
|
|
205
233
|
default: undefined;
|
|
206
234
|
};
|
|
235
|
+
ongoing: {
|
|
236
|
+
type: BooleanConstructor;
|
|
237
|
+
default: boolean;
|
|
238
|
+
};
|
|
239
|
+
primarySubject: {
|
|
240
|
+
type: PropType<PrimarySubjectObject>;
|
|
241
|
+
default: undefined;
|
|
242
|
+
};
|
|
243
|
+
gradeLevels: {
|
|
244
|
+
type: PropType<GradeLevelsObject[]>;
|
|
245
|
+
default: undefined;
|
|
246
|
+
};
|
|
247
|
+
time: {
|
|
248
|
+
type: PropType<EduResourcesTime>;
|
|
249
|
+
default: undefined;
|
|
250
|
+
};
|
|
207
251
|
}>>, {
|
|
208
252
|
summary: string;
|
|
253
|
+
time: EduResourcesTime;
|
|
209
254
|
title: string;
|
|
210
255
|
image: Record<string, any>;
|
|
211
256
|
startDate: string;
|
|
212
257
|
endDate: string;
|
|
213
258
|
startTime: string;
|
|
214
259
|
endTime: string;
|
|
260
|
+
customDate: string;
|
|
215
261
|
eventType: string;
|
|
262
|
+
ongoing: boolean;
|
|
216
263
|
location: string;
|
|
264
|
+
primarySubject: PrimarySubjectObject;
|
|
265
|
+
gradeLevels: GradeLevelsObject[];
|
|
217
266
|
type: string;
|
|
218
267
|
url: string;
|
|
219
268
|
date: string;
|
|
220
269
|
headingLevel: HeadingLevel;
|
|
221
270
|
media: string;
|
|
222
|
-
featured: boolean;
|
|
223
271
|
topic: string;
|
|
224
272
|
pageContentType: string;
|
|
273
|
+
featured: boolean;
|
|
225
274
|
isEvents: boolean;
|
|
226
275
|
isPodcastSeason: boolean;
|
|
227
276
|
isProfiles: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
+
import { PrimarySubjectObject, GradeLevelsObject, EduResourcesTime } from './../../interfaces';
|
|
2
3
|
import { HeadingLevel } from './../BaseHeading/BaseHeading.vue';
|
|
3
4
|
|
|
4
5
|
declare const _default: import('vue').DefineComponent<{
|
|
@@ -38,6 +39,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
38
39
|
type: StringConstructor;
|
|
39
40
|
required: false;
|
|
40
41
|
};
|
|
42
|
+
customDate: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
required: false;
|
|
45
|
+
default: undefined;
|
|
46
|
+
};
|
|
41
47
|
startTime: {
|
|
42
48
|
type: StringConstructor;
|
|
43
49
|
required: false;
|
|
@@ -64,15 +70,26 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
64
70
|
type: StringConstructor;
|
|
65
71
|
required: false;
|
|
66
72
|
};
|
|
73
|
+
primarySubject: {
|
|
74
|
+
type: PropType<PrimarySubjectObject>;
|
|
75
|
+
default: undefined;
|
|
76
|
+
};
|
|
77
|
+
gradeLevels: {
|
|
78
|
+
type: PropType<GradeLevelsObject[]>;
|
|
79
|
+
default: undefined;
|
|
80
|
+
};
|
|
81
|
+
time: {
|
|
82
|
+
type: PropType<EduResourcesTime>;
|
|
83
|
+
default: undefined;
|
|
84
|
+
};
|
|
67
85
|
}, unknown, unknown, {
|
|
68
|
-
|
|
69
|
-
typename(): string | undefined;
|
|
86
|
+
typename(): undefined;
|
|
70
87
|
themeStore: () => import('pinia').Store<"theme", import('../../store/theme').State, {
|
|
71
88
|
isEdu(state: {
|
|
72
|
-
theme: import('
|
|
89
|
+
theme: import('./../../interfaces').Explorer1Theme | null;
|
|
73
90
|
} & import('pinia').PiniaCustomStateProperties<import('../../store/theme').State>): boolean;
|
|
74
91
|
}, {
|
|
75
|
-
setTheme(value: import('
|
|
92
|
+
setTheme(value: import('./../../interfaces').Explorer1Theme): void;
|
|
76
93
|
}>;
|
|
77
94
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
78
95
|
url: {
|
|
@@ -111,6 +128,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
111
128
|
type: StringConstructor;
|
|
112
129
|
required: false;
|
|
113
130
|
};
|
|
131
|
+
customDate: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
required: false;
|
|
134
|
+
default: undefined;
|
|
135
|
+
};
|
|
114
136
|
startTime: {
|
|
115
137
|
type: StringConstructor;
|
|
116
138
|
required: false;
|
|
@@ -137,10 +159,26 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
137
159
|
type: StringConstructor;
|
|
138
160
|
required: false;
|
|
139
161
|
};
|
|
162
|
+
primarySubject: {
|
|
163
|
+
type: PropType<PrimarySubjectObject>;
|
|
164
|
+
default: undefined;
|
|
165
|
+
};
|
|
166
|
+
gradeLevels: {
|
|
167
|
+
type: PropType<GradeLevelsObject[]>;
|
|
168
|
+
default: undefined;
|
|
169
|
+
};
|
|
170
|
+
time: {
|
|
171
|
+
type: PropType<EduResourcesTime>;
|
|
172
|
+
default: undefined;
|
|
173
|
+
};
|
|
140
174
|
}>>, {
|
|
175
|
+
time: EduResourcesTime;
|
|
141
176
|
startTime: string;
|
|
142
177
|
endTime: string;
|
|
178
|
+
customDate: string;
|
|
143
179
|
ongoing: boolean;
|
|
144
180
|
location: string;
|
|
181
|
+
primarySubject: PrimarySubjectObject;
|
|
182
|
+
gradeLevels: GradeLevelsObject[];
|
|
145
183
|
}, {}>;
|
|
146
184
|
export default _default;
|
|
@@ -13,10 +13,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
13
13
|
type: import('vue').PropType<number>;
|
|
14
14
|
default: number;
|
|
15
15
|
};
|
|
16
|
-
placeholder: {
|
|
17
|
-
type: import('vue').PropType<string>;
|
|
18
|
-
default: undefined;
|
|
19
|
-
};
|
|
20
16
|
cols: {
|
|
21
17
|
type: import('vue').PropType<number>;
|
|
22
18
|
default: undefined;
|
|
@@ -29,6 +25,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
29
25
|
type: import('vue').PropType<boolean>;
|
|
30
26
|
default: boolean;
|
|
31
27
|
};
|
|
28
|
+
placeholder: {
|
|
29
|
+
type: import('vue').PropType<string>;
|
|
30
|
+
default: undefined;
|
|
31
|
+
};
|
|
32
32
|
labelClass: {
|
|
33
33
|
type: import('vue').PropType<string>;
|
|
34
34
|
default: undefined;
|
|
@@ -55,10 +55,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
55
55
|
type: import('vue').PropType<number>;
|
|
56
56
|
default: number;
|
|
57
57
|
};
|
|
58
|
-
placeholder: {
|
|
59
|
-
type: import('vue').PropType<string>;
|
|
60
|
-
default: undefined;
|
|
61
|
-
};
|
|
62
58
|
cols: {
|
|
63
59
|
type: import('vue').PropType<number>;
|
|
64
60
|
default: undefined;
|
|
@@ -71,6 +67,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
71
67
|
type: import('vue').PropType<boolean>;
|
|
72
68
|
default: boolean;
|
|
73
69
|
};
|
|
70
|
+
placeholder: {
|
|
71
|
+
type: import('vue').PropType<string>;
|
|
72
|
+
default: undefined;
|
|
73
|
+
};
|
|
74
74
|
labelClass: {
|
|
75
75
|
type: import('vue').PropType<string>;
|
|
76
76
|
default: undefined;
|
|
@@ -86,9 +86,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
86
86
|
label: string;
|
|
87
87
|
required: boolean;
|
|
88
88
|
rows: number;
|
|
89
|
-
placeholder: string;
|
|
90
89
|
cols: number;
|
|
91
90
|
showLabel: boolean;
|
|
91
|
+
placeholder: string;
|
|
92
92
|
labelClass: string;
|
|
93
93
|
inputClass: string;
|
|
94
94
|
}, {}>;
|
|
@@ -20,10 +20,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
20
20
|
type: import('vue').PropType<boolean>;
|
|
21
21
|
default: boolean;
|
|
22
22
|
};
|
|
23
|
-
placeholder: {
|
|
24
|
-
type: import('vue').PropType<string>;
|
|
25
|
-
default: undefined;
|
|
26
|
-
};
|
|
27
23
|
inputName: {
|
|
28
24
|
type: import('vue').PropType<string>;
|
|
29
25
|
required: true;
|
|
@@ -32,6 +28,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
32
28
|
type: import('vue').PropType<boolean>;
|
|
33
29
|
default: boolean;
|
|
34
30
|
};
|
|
31
|
+
placeholder: {
|
|
32
|
+
type: import('vue').PropType<string>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
35
|
maxlength: {
|
|
36
36
|
type: import('vue').PropType<string>;
|
|
37
37
|
default: undefined;
|
|
@@ -72,10 +72,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
72
72
|
type: import('vue').PropType<boolean>;
|
|
73
73
|
default: boolean;
|
|
74
74
|
};
|
|
75
|
-
placeholder: {
|
|
76
|
-
type: import('vue').PropType<string>;
|
|
77
|
-
default: undefined;
|
|
78
|
-
};
|
|
79
75
|
inputName: {
|
|
80
76
|
type: import('vue').PropType<string>;
|
|
81
77
|
required: true;
|
|
@@ -84,6 +80,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
84
80
|
type: import('vue').PropType<boolean>;
|
|
85
81
|
default: boolean;
|
|
86
82
|
};
|
|
83
|
+
placeholder: {
|
|
84
|
+
type: import('vue').PropType<string>;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
87
87
|
maxlength: {
|
|
88
88
|
type: import('vue').PropType<string>;
|
|
89
89
|
default: undefined;
|
|
@@ -107,8 +107,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
107
107
|
pattern: string;
|
|
108
108
|
type: string;
|
|
109
109
|
required: boolean;
|
|
110
|
-
placeholder: string;
|
|
111
110
|
showLabel: boolean;
|
|
111
|
+
placeholder: string;
|
|
112
112
|
maxlength: string;
|
|
113
113
|
labelClass: string;
|
|
114
114
|
inputClass: string;
|
package/dist/src/constants.d.ts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PillDictionaryInterface } from './interfaces';
|
|
2
2
|
|
|
3
3
|
export declare const eduMetadataDictionary: PillDictionaryInterface;
|
|
4
|
-
|
|
4
|
+
interface contentTypeObject {
|
|
5
|
+
model: string;
|
|
6
|
+
label: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const contentTypes: contentTypeObject[];
|
|
9
|
+
interface contentAliasObject extends contentTypeObject {
|
|
10
|
+
interface?: string;
|
|
11
|
+
eskey?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const contentAliases: contentAliasObject[];
|
|
14
|
+
export {};
|
package/dist/src/interfaces.d.ts
CHANGED
|
@@ -76,16 +76,22 @@ export interface ElasticSearchPage {
|
|
|
76
76
|
content_type: string;
|
|
77
77
|
url: string;
|
|
78
78
|
type: string;
|
|
79
|
-
topic
|
|
80
|
-
image
|
|
81
|
-
date
|
|
82
|
-
startDate
|
|
83
|
-
endDate
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
79
|
+
topic?: string;
|
|
80
|
+
image?: string | any;
|
|
81
|
+
date?: string;
|
|
82
|
+
startDate?: string;
|
|
83
|
+
endDate?: string;
|
|
84
|
+
customDate?: string;
|
|
85
|
+
startTime?: string;
|
|
86
|
+
endTime?: string;
|
|
87
|
+
location?: string;
|
|
87
88
|
title: string;
|
|
88
|
-
summary
|
|
89
|
+
summary?: string;
|
|
90
|
+
eventType?: string;
|
|
91
|
+
ongoing?: boolean;
|
|
92
|
+
primarySubject?: string;
|
|
93
|
+
gradeLevels: string;
|
|
94
|
+
time: string;
|
|
89
95
|
}
|
|
90
96
|
export interface FormOption {
|
|
91
97
|
id: string;
|
|
@@ -121,6 +127,7 @@ export interface EventCardObject extends Card {
|
|
|
121
127
|
eventType?: string;
|
|
122
128
|
ongoing?: boolean;
|
|
123
129
|
isVirtualEvent?: boolean;
|
|
130
|
+
isInPersonEvent?: boolean;
|
|
124
131
|
locationName?: string;
|
|
125
132
|
location?: string;
|
|
126
133
|
locationLink?: string;
|