@sparkle-learning/core 0.0.28 → 0.0.29

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 (54) hide show
  1. package/dist/cjs/{PrivateRoute-cee9b061.js → PrivateRoute-81e20cbf.js} +4 -38
  2. package/dist/cjs/feed.service-032c2ecc.js +124 -0
  3. package/dist/cjs/header-mobile-collapse_60.cjs.entry.js +5 -3
  4. package/dist/cjs/index.cjs.js +2 -1
  5. package/dist/cjs/{index.es-baef3314.js → index.es-11437480.js} +5 -3
  6. package/dist/cjs/loader.cjs.js +1 -1
  7. package/dist/cjs/localstorage.service-6346a41d.js +40 -0
  8. package/dist/cjs/{purify-596fc2d6.js → purify-a443f0eb.js} +1 -1
  9. package/dist/cjs/sparkle-animation-player.cjs.entry.js +55 -49
  10. package/dist/cjs/sparkle-character-intro.cjs.entry.js +1 -1
  11. package/dist/cjs/sparkle-core.cjs.js +1 -1
  12. package/dist/cjs/sparkle-goal-form.cjs.entry.js +9 -8
  13. package/dist/cjs/{feed.service-518d18fd.js → util-b0e2ec9f.js} +1 -121
  14. package/dist/collection/components/sparkle-animation-player/sparkle-animation-player.js +78 -66
  15. package/dist/collection/components/sparkle-character-intro/sparkle-character-intro.js +2 -2
  16. package/dist/collection/components/sparkle-course-root/sparkle-course-root.js +48 -43
  17. package/dist/collection/util.js +1 -0
  18. package/dist/esm/{PrivateRoute-9f0973bb.js → PrivateRoute-df0d1e6b.js} +1 -35
  19. package/dist/esm/feed.service-694d3d54.js +119 -0
  20. package/dist/esm/header-mobile-collapse_60.entry.js +5 -3
  21. package/dist/esm/{index.es-a5bf9a49.js → index.es-1d452836.js} +5 -3
  22. package/dist/esm/index.js +2 -1
  23. package/dist/esm/loader.js +1 -1
  24. package/dist/esm/localstorage.service-4bf408c8.js +36 -0
  25. package/dist/esm/{purify-4247e2d0.js → purify-7e29b899.js} +1 -1
  26. package/dist/esm/sparkle-animation-player.entry.js +55 -49
  27. package/dist/esm/sparkle-character-intro.entry.js +1 -1
  28. package/dist/esm/sparkle-core.js +1 -1
  29. package/dist/esm/sparkle-goal-form.entry.js +2 -1
  30. package/dist/esm/{feed.service-0fda1e36.js → util-042b5fee.js} +2 -118
  31. package/dist/sparkle-core/index.esm.js +1 -1
  32. package/dist/sparkle-core/p-0312758b.js +1 -0
  33. package/dist/sparkle-core/p-396a9849.js +1 -0
  34. package/dist/sparkle-core/p-4328af62.js +1 -0
  35. package/dist/sparkle-core/{p-ad1ddf1f.js → p-522733aa.js} +4 -4
  36. package/dist/sparkle-core/p-5b4938ce.entry.js +1 -0
  37. package/dist/sparkle-core/p-5d409601.js +1 -0
  38. package/dist/sparkle-core/p-62a62b6e.entry.js +1 -0
  39. package/dist/sparkle-core/p-7ecad3fb.entry.js +1 -0
  40. package/dist/sparkle-core/p-8490f1bc.js +1 -0
  41. package/dist/sparkle-core/{p-bfb55f1d.js → p-e23bd285.js} +1 -1
  42. package/dist/sparkle-core/p-e4f41e16.entry.js +1 -0
  43. package/dist/sparkle-core/sparkle-core.esm.js +1 -1
  44. package/dist/types/components/sparkle-animation-player/sparkle-animation-player.d.ts +1 -0
  45. package/dist/types/components/sparkle-course-root/sparkle-course-root.d.ts +2 -2
  46. package/dist/types/util.d.ts +1 -0
  47. package/package.json +2 -2
  48. package/dist/sparkle-core/p-090f2624.js +0 -1
  49. package/dist/sparkle-core/p-34ea6639.entry.js +0 -1
  50. package/dist/sparkle-core/p-38307b31.js +0 -1
  51. package/dist/sparkle-core/p-82d95fcd.entry.js +0 -1
  52. package/dist/sparkle-core/p-b080c1e3.entry.js +0 -1
  53. package/dist/sparkle-core/p-bc568dcb.js +0 -1
  54. package/dist/sparkle-core/p-c122c559.entry.js +0 -1
@@ -1,6 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const index = require('./index-fbf4d3bf.js');
4
+ const localstorage_service = require('./localstorage.service-6346a41d.js');
4
5
  const auth_store = require('./auth.store-aba3d22f.js');
5
6
 
6
7
  //import * as abpTypings from '../lib/abp';
@@ -119,41 +120,6 @@ async function initSetupConfig(config) {
119
120
  await setupConfig(config);
120
121
  }
121
122
 
122
- const storage = window.localStorage;
123
- function set(key, value) {
124
- return new Promise((resolve, reject) => {
125
- try {
126
- storage && storage.setItem(key, JSON.stringify(value));
127
- resolve();
128
- }
129
- catch (err) {
130
- reject(`Couldnt store object ${err}`);
131
- }
132
- });
133
- }
134
- function remove(key) {
135
- return new Promise((resolve, reject) => {
136
- try {
137
- storage && storage.removeItem(key);
138
- resolve();
139
- }
140
- catch (err) {
141
- reject(`Couldnt remove object ${err}`);
142
- }
143
- });
144
- }
145
- function get(key) {
146
- try {
147
- if (storage) {
148
- const item = storage.getItem(key);
149
- return JSON.parse(item);
150
- }
151
- }
152
- catch (err) {
153
- return null;
154
- }
155
- }
156
-
157
123
  const AppConsts = {
158
124
  AUTH_USER_LOCALSTORAGE: "CurrentUser",
159
125
  userManagement: {
@@ -204,7 +170,7 @@ class AuthService {
204
170
  sparkle.auth.setToken(authUser.JWToken, expireDate);
205
171
  //TODO: change authUser.JWToken to encrypted
206
172
  sparkle.utils.setCookieValue(AppConsts.authorization.encrptedAuthTokenName, authUser.JWToken, expireDate, sparkle.appPath);
207
- await set(AppConsts.AUTH_USER_LOCALSTORAGE, authUser);
173
+ await localstorage_service.set(AppConsts.AUTH_USER_LOCALSTORAGE, authUser);
208
174
  auth_store.AuthStore.state.authUser = Object.assign({}, authUser);
209
175
  auth_store.AuthStore.state.loading = false;
210
176
  return authUser;
@@ -216,14 +182,14 @@ class AuthService {
216
182
  }
217
183
  }
218
184
  async signOut() {
219
- await remove(AppConsts.AUTH_USER_LOCALSTORAGE);
185
+ await localstorage_service.remove(AppConsts.AUTH_USER_LOCALSTORAGE);
220
186
  sessionStorage.clear();
221
187
  sparkle.auth.clearToken();
222
188
  auth_store.AuthStore.state.authUser = null;
223
189
  auth_store.AuthStore.state.isAuthenticated = false;
224
190
  }
225
191
  async getLocalAuthUser() {
226
- return get(AppConsts.AUTH_USER_LOCALSTORAGE);
192
+ return localstorage_service.get(AppConsts.AUTH_USER_LOCALSTORAGE);
227
193
  }
228
194
  }
229
195
 
@@ -0,0 +1,124 @@
1
+ 'use strict';
2
+
3
+ const auth_store = require('./auth.store-aba3d22f.js');
4
+ const util = require('./util-b0e2ec9f.js');
5
+
6
+ const { state, onChange } = auth_store.createStore({
7
+ goals: [],
8
+ goalsLoading: false,
9
+ goalLoading: false
10
+ });
11
+ const goalStore = { state, onChange };
12
+
13
+ class AppDataService {
14
+ constructor() { }
15
+ static getInstance() {
16
+ if (!AppDataService.instance) {
17
+ AppDataService.instance = new AppDataService();
18
+ }
19
+ return AppDataService.instance;
20
+ }
21
+ async getAllAppData(appId) {
22
+ let result = await auth_store.HttpService.http.get(`api/v1/AppData/${appId}`);
23
+ return result;
24
+ }
25
+ async createAppData(payload) {
26
+ let result = await auth_store.HttpService.http.post(`api/v1/AppData/`, payload);
27
+ return result;
28
+ }
29
+ async updateAppData(payload) {
30
+ let result = await auth_store.HttpService.http.put(`api/v1/AppData/${payload.Id}`, payload);
31
+ return result;
32
+ }
33
+ async getAllGoals() {
34
+ goalStore.state.goalsLoading = true;
35
+ let result = await this.getAllAppData(util.SparkleGlobal.MY_GOALS_APP_ID);
36
+ if (result) {
37
+ goalStore.state.goals = result.Data.map(item => {
38
+ return Object.assign(Object.assign({}, item), { AppData: JSON.parse(item.AppJsonData) });
39
+ });
40
+ goalStore.state.goalsLoading = false;
41
+ }
42
+ return result;
43
+ }
44
+ async createGoal(payload) {
45
+ goalStore.state.goalLoading = true;
46
+ let result = await this.createAppData(payload);
47
+ if (result) {
48
+ result.Data.AppData = JSON.parse(result.Data.AppJsonData);
49
+ goalStore.state.goals = [...goalStore.state.goals, result.Data];
50
+ goalStore.state.goalLoading = false;
51
+ }
52
+ return result;
53
+ }
54
+ async updateGoal(payload) {
55
+ goalStore.state.goalLoading = true;
56
+ let result = await this.updateAppData(payload);
57
+ if (result) {
58
+ result.Data.AppData = JSON.parse(result.Data.AppJsonData);
59
+ goalStore.state.goals = goalStore.state.goals.map(item => {
60
+ if (item.Id == result.Data.Id) {
61
+ return Object.assign(Object.assign({}, result.Data), { AppData: JSON.parse(result.Data.AppJsonData) });
62
+ }
63
+ return item;
64
+ });
65
+ goalStore.state.goalLoading = false;
66
+ }
67
+ return result;
68
+ }
69
+ }
70
+
71
+ const { state: state$1, reset } = auth_store.createStore({
72
+ posts: [],
73
+ postsLoading: false,
74
+ createPostLoading: false,
75
+ postIdLoading: null
76
+ });
77
+ const feedStore = { state: state$1, reset };
78
+
79
+ class FeedService {
80
+ constructor() { }
81
+ static getInstance() {
82
+ if (!FeedService.instance) {
83
+ FeedService.instance = new FeedService();
84
+ }
85
+ return FeedService.instance;
86
+ }
87
+ async getAllPosts() {
88
+ feedStore.state.postsLoading = true;
89
+ let result = await auth_store.HttpService.http.get(`api/v1/Feed/GetAll`);
90
+ if (result) {
91
+ feedStore.state.posts = result.Data;
92
+ feedStore.state.postsLoading = false;
93
+ }
94
+ return result;
95
+ }
96
+ async createPost(payload) {
97
+ feedStore.state.createPostLoading = true;
98
+ let result = await auth_store.HttpService.http.post(`api/v1/Feed/PostFeed`, payload);
99
+ if (result) {
100
+ feedStore.state.posts = [result.Data, ...feedStore.state.posts];
101
+ feedStore.state.createPostLoading = false;
102
+ }
103
+ return result;
104
+ }
105
+ async createPostComment(payload) {
106
+ feedStore.state.postIdLoading = payload.PostId;
107
+ let result = await auth_store.HttpService.http.post(`api/v1/Feed/Comment`, payload);
108
+ if (result) {
109
+ feedStore.state.posts = feedStore.state.posts.map((item) => {
110
+ if (item.Id == result.Data.ClassFeedPostId) {
111
+ return Object.assign(Object.assign({}, item), { Comments: [...item.Comments, result.Data] });
112
+ }
113
+ return item;
114
+ });
115
+ feedStore.state.postIdLoading = null;
116
+ }
117
+ return result;
118
+ }
119
+ }
120
+
121
+ exports.AppDataService = AppDataService;
122
+ exports.FeedService = FeedService;
123
+ exports.feedStore = feedStore;
124
+ exports.goalStore = goalStore;
@@ -4,11 +4,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  require('./index-fbf4d3bf.js');
6
6
  require('./ionic-global-4930d319.js');
7
- require('./PrivateRoute-cee9b061.js');
7
+ require('./PrivateRoute-81e20cbf.js');
8
8
  require('./environment-config.service-0e02b049.js');
9
9
  require('./assets.service-0c759d51.js');
10
+ require('./localstorage.service-6346a41d.js');
10
11
  require('./auth.store-aba3d22f.js');
11
- const headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry = require('./header-mobile-collapse.ion-avatar.ion-button.ion-card.ion-card-content.ion-checkbox.ion-col.ion-grid.ion-icon.ion-input.ion-item.ion-label.ion-list.ion-list-header.ion-radio.ion-radio-group.ion-range.ion-ripple-effect.ion-row.ion-spinner.ion-text.sparkle-button.sparkle-card.sparkle-cards.sparkle-course-root.sparkle-dropdown.sparkle-export-lessons.sparkle-facilitator-dashboard.sparkle-facilitator-header.sparkle-facilitator-notes.sparkle-facilitator-page.sparkle-forgot-password.sparkle-goal-item.sparkle-goal-progress.sparkle-goals.sparkle-gww.sparkle-gww-item.sparkle-header.sparkle-health.sparkle-login.sparkle-menu.sparkle-menu-toggle.sparkle-mood.sparkle-nav.sparkle-online-students.sparkle-page.sparkle-page-footer.sparkle-pagination.sparkle-reset-password.sparkle-root.sparkle-signup.sparkle-unauthorized.sparkle-user-enrollment.sparkle-user-profile.sparkle-validation-error.stencil-route.stencil-route-link.stencil-route-switch.stencil-router.stencil-router-redirect-bda2d9ae.js');
12
+ const headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry = require('./header-mobile-collapse.ion-avatar.ion-button.ion-card.ion-card-content.ion-checkbox.ion-col.ion-grid.ion-icon.ion-input.ion-item.ion-label.ion-list.ion-list-header.ion-radio.ion-radio-group.ion-range.ion-ripple-effect.ion-row.ion-spinner.ion-text.sparkle-button.sparkle-card.sparkle-cards.sparkle-course-root.sparkle-dropdown.sparkle-export-lessons.sparkle-facilitator-dashboard.sparkle-facilitator-header.sparkle-facilitator-notes.sparkle-facilitator-page.sparkle-forgot-password.sparkle-goal-item.sparkle-goal-progress.sparkle-goals.sparkle-gww.sparkle-gww-item.sparkle-header.sparkle-health.sparkle-login.sparkle-menu.sparkle-menu-toggle.sparkle-mood.sparkle-nav.sparkle-online-students.sparkle-page.sparkle-page-footer.sparkle-pagination.sparkle-reset-password.sparkle-root.sparkle-signup.sparkle-unauthorized.sparkle-user-enrollment.sparkle-user-profile.sparkle-validation-error.stencil-route.stencil-route-link.stencil-route-switch.stencil-router.stencil-router-redirect-db6c963c.js');
12
13
  require('./helpers-26770c32.js');
13
14
  require('./animation-05337433.js');
14
15
  require('./hardware-back-button-ca468aae.js');
@@ -19,8 +20,9 @@ require('./theme-98ccfc24.js');
19
20
  require('./spinner-configs-559523fd.js');
20
21
  require('./active-router-3bd7b540.js');
21
22
  require('./student.service-41c7c78d.js');
22
- require('./feed.service-518d18fd.js');
23
+ require('./util-b0e2ec9f.js');
23
24
  require('./facilitator.service-e1e2f719.js');
25
+ require('./feed.service-032c2ecc.js');
24
26
 
25
27
 
26
28
 
@@ -4,9 +4,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  require('./index-fbf4d3bf.js');
6
6
  require('./ionic-global-4930d319.js');
7
- const PrivateRoute = require('./PrivateRoute-cee9b061.js');
7
+ const PrivateRoute = require('./PrivateRoute-81e20cbf.js');
8
8
  const environmentConfig_service = require('./environment-config.service-0e02b049.js');
9
9
  const assets_service = require('./assets.service-0c759d51.js');
10
+ require('./localstorage.service-6346a41d.js');
10
11
  const auth_store = require('./auth.store-aba3d22f.js');
11
12
  require('./helpers-26770c32.js');
12
13
  require('./hardware-back-button-ca468aae.js');
@@ -2,11 +2,12 @@
2
2
 
3
3
  require('./index-fbf4d3bf.js');
4
4
  require('./ionic-global-4930d319.js');
5
- require('./PrivateRoute-cee9b061.js');
5
+ require('./PrivateRoute-81e20cbf.js');
6
6
  require('./environment-config.service-0e02b049.js');
7
7
  require('./assets.service-0c759d51.js');
8
+ require('./localstorage.service-6346a41d.js');
8
9
  require('./auth.store-aba3d22f.js');
9
- const headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry = require('./header-mobile-collapse.ion-avatar.ion-button.ion-card.ion-card-content.ion-checkbox.ion-col.ion-grid.ion-icon.ion-input.ion-item.ion-label.ion-list.ion-list-header.ion-radio.ion-radio-group.ion-range.ion-ripple-effect.ion-row.ion-spinner.ion-text.sparkle-button.sparkle-card.sparkle-cards.sparkle-course-root.sparkle-dropdown.sparkle-export-lessons.sparkle-facilitator-dashboard.sparkle-facilitator-header.sparkle-facilitator-notes.sparkle-facilitator-page.sparkle-forgot-password.sparkle-goal-item.sparkle-goal-progress.sparkle-goals.sparkle-gww.sparkle-gww-item.sparkle-header.sparkle-health.sparkle-login.sparkle-menu.sparkle-menu-toggle.sparkle-mood.sparkle-nav.sparkle-online-students.sparkle-page.sparkle-page-footer.sparkle-pagination.sparkle-reset-password.sparkle-root.sparkle-signup.sparkle-unauthorized.sparkle-user-enrollment.sparkle-user-profile.sparkle-validation-error.stencil-route.stencil-route-link.stencil-route-switch.stencil-router.stencil-router-redirect-bda2d9ae.js');
10
+ const headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry = require('./header-mobile-collapse.ion-avatar.ion-button.ion-card.ion-card-content.ion-checkbox.ion-col.ion-grid.ion-icon.ion-input.ion-item.ion-label.ion-list.ion-list-header.ion-radio.ion-radio-group.ion-range.ion-ripple-effect.ion-row.ion-spinner.ion-text.sparkle-button.sparkle-card.sparkle-cards.sparkle-course-root.sparkle-dropdown.sparkle-export-lessons.sparkle-facilitator-dashboard.sparkle-facilitator-header.sparkle-facilitator-notes.sparkle-facilitator-page.sparkle-forgot-password.sparkle-goal-item.sparkle-goal-progress.sparkle-goals.sparkle-gww.sparkle-gww-item.sparkle-header.sparkle-health.sparkle-login.sparkle-menu.sparkle-menu-toggle.sparkle-mood.sparkle-nav.sparkle-online-students.sparkle-page.sparkle-page-footer.sparkle-pagination.sparkle-reset-password.sparkle-root.sparkle-signup.sparkle-unauthorized.sparkle-user-enrollment.sparkle-user-profile.sparkle-validation-error.stencil-route.stencil-route-link.stencil-route-switch.stencil-router.stencil-router-redirect-db6c963c.js');
10
11
  require('./helpers-26770c32.js');
11
12
  require('./animation-05337433.js');
12
13
  require('./hardware-back-button-ca468aae.js');
@@ -17,8 +18,9 @@ require('./theme-98ccfc24.js');
17
18
  require('./spinner-configs-559523fd.js');
18
19
  require('./active-router-3bd7b540.js');
19
20
  require('./student.service-41c7c78d.js');
20
- require('./feed.service-518d18fd.js');
21
+ require('./util-b0e2ec9f.js');
21
22
  require('./facilitator.service-e1e2f719.js');
23
+ require('./feed.service-032c2ecc.js');
22
24
 
23
25
  var check = function (it) {
24
26
  return it && it.Math == Math && it;
@@ -17,7 +17,7 @@ const defineCustomElements = (win, options) => {
17
17
  if (typeof window === 'undefined') return Promise.resolve();
18
18
  return patchEsm().then(() => {
19
19
  appGlobals.globalScripts();
20
- return index.bootstrapLazy(JSON.parse("[[\"sparkle-goal-form.cjs\",[[0,\"sparkle-goal-form\",{\"appData\":[16],\"name\":[32],\"description\":[32],\"category\":[32],\"progress\":[32],\"public\":[32],\"goalUpdateText\":[32],\"submitted\":[32]}]]],[\"sparkle-feedback.cjs\",[[0,\"sparkle-feedback\",{\"formControls\":[32],\"submitted\":[32]}]]],[\"sparkle-quiz-container.cjs\",[[0,\"sparkle-quiz-container\",{\"questionIds\":[1,\"question-ids\"],\"showInstantResult\":[4,\"show-instant-result\"],\"submitted\":[32]},[[4,\"pageDidLoad\",\"pageDidLoadHandler\"],[16,\"quizAnswerChanged\",\"updateQuizAnswerModelHandler\"]]]]],[\"sparkle-gww-comment-list.cjs\",[[0,\"sparkle-gww-comment-list\",{\"comments\":[16]}]]],[\"ion-select-popover.cjs\",[[2,\"ion-select-popover\",{\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"message\":[1],\"options\":[16]},[[0,\"ionChange\",\"onSelect\"]]]]],[\"sparkle-compass-post.cjs\",[[0,\"sparkle-compass-post\",{\"errorMessage\":[32],\"successMessage\":[32],\"resiliance\":[32],\"care\":[32],\"compassData\":[32],\"renderCompass\":[64]}]]],[\"sparkle-facilitator-notes-form.cjs\",[[0,\"sparkle-facilitator-notes-form\",{\"initialValues\":[16],\"formControls\":[32],\"submitted\":[32]}]]],[\"sparkle-animation-player.cjs\",[[0,\"sparkle-animation-player\",{\"src\":[1],\"composition\":[1],\"initialClassMode\":[4,\"initial-class-mode\"],\"classMode\":[32],\"showCaption\":[32],\"paused\":[32],\"sizeOfCanvas\":[32],\"sizeofProgressBar\":[32],\"dataLoaded\":[32],\"currentProgressWidth\":[32],\"captionText\":[32],\"isBusy\":[32],\"playAnimation\":[64],\"pauseAnimation\":[64],\"classRoomModeChanged\":[64],\"destroyAnimation\":[64]},[[0,\"ionChange\",\"closedCaptionChange\"]]]]],[\"sparkle-sidebar.cjs\",[[4,\"sparkle-sidebar\",{\"position\":[1],\"size\":[1],\"headerText\":[1,\"header-text\"],\"isShowing\":[32],\"hide\":[64],\"show\":[64]}]]],[\"ion-action-sheet.cjs\",[[34,\"ion-action-sheet\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"buttons\":[16],\"cssClass\":[1,\"css-class\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"course-select.cjs\",[[0,\"course-select\",{\"toggleClickFn\":[16]}]]],[\"ion-alert.cjs\",[[34,\"ion-alert\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"cssClass\":[1,\"css-class\"],\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"message\":[1],\"buttons\":[16],\"inputs\":[1040],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]},[[4,\"keydown\",\"onKeydown\"]]]]],[\"ion-fab-button.cjs\",[[33,\"ion-fab-button\",{\"color\":[1],\"activated\":[4],\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"target\":[1],\"show\":[4],\"translucent\":[4],\"type\":[1],\"size\":[1],\"closeIcon\":[1,\"close-icon\"]}]]],[\"ion-loading.cjs\",[[34,\"ion-loading\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"message\":[1],\"cssClass\":[1,\"css-class\"],\"duration\":[2],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"showBackdrop\":[4,\"show-backdrop\"],\"spinner\":[1025],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-menu-button.cjs\",[[33,\"ion-menu-button\",{\"color\":[1],\"disabled\":[4],\"menu\":[1],\"autoHide\":[4,\"auto-hide\"],\"type\":[1],\"visible\":[32]},[[16,\"ionMenuChange\",\"visibilityChanged\"],[16,\"ionSplitPaneVisible\",\"visibilityChanged\"]]]]],[\"ion-picker.cjs\",[[34,\"ion-picker\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"buttons\":[16],\"columns\":[16],\"cssClass\":[1,\"css-class\"],\"duration\":[2],\"showBackdrop\":[4,\"show-backdrop\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"animated\":[4],\"presented\":[32],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64],\"getColumn\":[64]}]]],[\"ion-refresher-content.cjs\",[[0,\"ion-refresher-content\",{\"pullingIcon\":[1025,\"pulling-icon\"],\"pullingText\":[1,\"pulling-text\"],\"refreshingSpinner\":[1025,\"refreshing-spinner\"],\"refreshingText\":[1,\"refreshing-text\"]}]]],[\"ion-toast.cjs\",[[33,\"ion-toast\",{\"overlayIndex\":[2,\"overlay-index\"],\"color\":[1],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"cssClass\":[1,\"css-class\"],\"duration\":[2],\"header\":[1],\"message\":[1],\"keyboardClose\":[4,\"keyboard-close\"],\"position\":[1],\"buttons\":[16],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-chip.cjs\",[[33,\"ion-chip\",{\"color\":[1],\"outline\":[4],\"disabled\":[4]}]]],[\"ion-infinite-scroll-content.cjs\",[[32,\"ion-infinite-scroll-content\",{\"loadingSpinner\":[1025,\"loading-spinner\"],\"loadingText\":[1,\"loading-text\"]}]]],[\"ion-item-option.cjs\",[[33,\"ion-item-option\",{\"color\":[1],\"disabled\":[4],\"download\":[1],\"expandable\":[4],\"href\":[1],\"rel\":[1],\"target\":[1],\"type\":[1]}]]],[\"ion-menu.cjs\",[[33,\"ion-menu\",{\"contentId\":[513,\"content-id\"],\"menuId\":[513,\"menu-id\"],\"type\":[1025],\"disabled\":[1028],\"side\":[513],\"swipeGesture\":[4,\"swipe-gesture\"],\"maxEdgeStart\":[2,\"max-edge-start\"],\"isPaneVisible\":[32],\"isEndSide\":[32],\"isOpen\":[64],\"isActive\":[64],\"open\":[64],\"close\":[64],\"toggle\":[64],\"setOpen\":[64]},[[16,\"ionSplitPaneVisible\",\"onSplitPaneChanged\"],[2,\"click\",\"onBackdropClick\"]]]]],[\"ion-modal.cjs\",[[34,\"ion-modal\",{\"overlayIndex\":[2,\"overlay-index\"],\"delegate\":[16],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"component\":[1],\"componentProps\":[16],\"cssClass\":[1,\"css-class\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"showBackdrop\":[4,\"show-backdrop\"],\"animated\":[4],\"swipeToClose\":[4,\"swipe-to-close\"],\"presentingElement\":[16],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-popover.cjs\",[[34,\"ion-popover\",{\"delegate\":[16],\"overlayIndex\":[2,\"overlay-index\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"component\":[1],\"componentProps\":[16],\"keyboardClose\":[4,\"keyboard-close\"],\"cssClass\":[1,\"css-class\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"event\":[8],\"showBackdrop\":[4,\"show-backdrop\"],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-reorder.cjs\",[[33,\"ion-reorder\",null,[[2,\"click\",\"onClick\"]]]]],[\"ion-searchbar.cjs\",[[34,\"ion-searchbar\",{\"color\":[1],\"animated\":[4],\"autocomplete\":[1],\"autocorrect\":[1],\"cancelButtonIcon\":[1,\"cancel-button-icon\"],\"cancelButtonText\":[1,\"cancel-button-text\"],\"clearIcon\":[1,\"clear-icon\"],\"debounce\":[2],\"disabled\":[4],\"inputmode\":[1],\"enterkeyhint\":[1],\"placeholder\":[1],\"searchIcon\":[1,\"search-icon\"],\"showCancelButton\":[1,\"show-cancel-button\"],\"spellcheck\":[4],\"type\":[1],\"value\":[1025],\"focused\":[32],\"noAnimate\":[32],\"setFocus\":[64],\"getInputElement\":[64]}]]],[\"ion-segment-button.cjs\",[[33,\"ion-segment-button\",{\"disabled\":[4],\"layout\":[1],\"type\":[1],\"value\":[1],\"checked\":[32]}]]],[\"ion-tab-button.cjs\",[[33,\"ion-tab-button\",{\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"layout\":[1025],\"selected\":[1028],\"tab\":[1],\"target\":[1]},[[8,\"ionTabBarChanged\",\"onTabBarChanged\"]]]]],[\"sparkle-lower-content-nav.cjs\",[[0,\"sparkle-lower-content-nav\",{\"next\":[16],\"prev\":[16]}]]],[\"sparkle-notfound-page.cjs\",[[0,\"sparkle-notfound-page\"]]],[\"sparkle-table-of-contents.cjs\",[[0,\"sparkle-table-of-contents\",{\"links\":[16],\"label\":[1],\"basepath\":[1],\"itemOffsets\":[32],\"selectedId\":[32],\"pageWidth\":[32]},[[9,\"scroll\",\"function\"],[9,\"resize\",\"updateItemOffsets\"]]]]],[\"compass-svg.cjs\",[[0,\"compass-svg\"]]],[\"context-consumer.cjs\",[[0,\"context-consumer\",{\"context\":[16],\"renderer\":[16],\"subscribe\":[16],\"unsubscribe\":[32]}]]],[\"ion-app.cjs\",[[0,\"ion-app\"]]],[\"ion-badge.cjs\",[[33,\"ion-badge\",{\"color\":[1]}]]],[\"ion-card-header.cjs\",[[33,\"ion-card-header\",{\"color\":[1],\"translucent\":[4]}]]],[\"ion-card-subtitle.cjs\",[[33,\"ion-card-subtitle\",{\"color\":[1]}]]],[\"ion-card-title.cjs\",[[33,\"ion-card-title\",{\"color\":[1]}]]],[\"ion-datetime.cjs\",[[33,\"ion-datetime\",{\"name\":[1],\"disabled\":[4],\"readonly\":[4],\"min\":[1025],\"max\":[1025],\"displayFormat\":[1,\"display-format\"],\"displayTimezone\":[1,\"display-timezone\"],\"pickerFormat\":[1,\"picker-format\"],\"cancelText\":[1,\"cancel-text\"],\"doneText\":[1,\"done-text\"],\"yearValues\":[8,\"year-values\"],\"monthValues\":[8,\"month-values\"],\"dayValues\":[8,\"day-values\"],\"hourValues\":[8,\"hour-values\"],\"minuteValues\":[8,\"minute-values\"],\"monthNames\":[1,\"month-names\"],\"monthShortNames\":[1,\"month-short-names\"],\"dayNames\":[1,\"day-names\"],\"dayShortNames\":[1,\"day-short-names\"],\"pickerOptions\":[16],\"placeholder\":[1],\"value\":[1025],\"isExpanded\":[32],\"open\":[64]}]]],[\"ion-fab.cjs\",[[1,\"ion-fab\",{\"horizontal\":[1],\"vertical\":[1],\"edge\":[4],\"activated\":[1028],\"close\":[64]}]]],[\"ion-fab-list.cjs\",[[1,\"ion-fab-list\",{\"activated\":[4],\"side\":[1]}]]],[\"ion-footer.cjs\",[[36,\"ion-footer\",{\"translucent\":[4]}]]],[\"ion-img.cjs\",[[1,\"ion-img\",{\"alt\":[1],\"src\":[1],\"loadSrc\":[32],\"loadError\":[32]}]]],[\"ion-infinite-scroll.cjs\",[[0,\"ion-infinite-scroll\",{\"threshold\":[1],\"disabled\":[4],\"position\":[1],\"isLoading\":[32],\"complete\":[64]}]]],[\"ion-item-divider.cjs\",[[33,\"ion-item-divider\",{\"color\":[1],\"sticky\":[4]}]]],[\"ion-item-group.cjs\",[[32,\"ion-item-group\"]]],[\"ion-item-options.cjs\",[[32,\"ion-item-options\",{\"side\":[1],\"fireSwipeEvent\":[64]}]]],[\"ion-item-sliding.cjs\",[[0,\"ion-item-sliding\",{\"disabled\":[4],\"state\":[32],\"getOpenAmount\":[64],\"getSlidingRatio\":[64],\"open\":[64],\"close\":[64],\"closeOpened\":[64]}]]],[\"ion-menu-toggle.cjs\",[[1,\"ion-menu-toggle\",{\"menu\":[1],\"autoHide\":[4,\"auto-hide\"],\"visible\":[32]},[[16,\"ionMenuChange\",\"visibilityChanged\"],[16,\"ionSplitPaneVisible\",\"visibilityChanged\"]]]]],[\"ion-nav.cjs\",[[1,\"ion-nav\",{\"delegate\":[16],\"swipeGesture\":[1028,\"swipe-gesture\"],\"animated\":[4],\"animation\":[16],\"rootParams\":[16],\"root\":[1],\"push\":[64],\"insert\":[64],\"insertPages\":[64],\"pop\":[64],\"popTo\":[64],\"popToRoot\":[64],\"removeIndex\":[64],\"setRoot\":[64],\"setPages\":[64],\"setRouteId\":[64],\"getRouteId\":[64],\"getActive\":[64],\"getByIndex\":[64],\"canGoBack\":[64],\"getPrevious\":[64]}]]],[\"ion-nav-link.cjs\",[[0,\"ion-nav-link\",{\"component\":[1],\"componentProps\":[16],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16]}]]],[\"ion-note.cjs\",[[33,\"ion-note\",{\"color\":[1]}]]],[\"ion-progress-bar.cjs\",[[33,\"ion-progress-bar\",{\"type\":[1],\"reversed\":[4],\"value\":[2],\"buffer\":[2],\"color\":[1]}]]],[\"ion-refresher.cjs\",[[32,\"ion-refresher\",{\"pullMin\":[2,\"pull-min\"],\"pullMax\":[2,\"pull-max\"],\"closeDuration\":[1,\"close-duration\"],\"snapbackDuration\":[1,\"snapback-duration\"],\"pullFactor\":[2,\"pull-factor\"],\"disabled\":[4],\"nativeRefresher\":[32],\"state\":[32],\"complete\":[64],\"cancel\":[64],\"getProgress\":[64]}]]],[\"ion-reorder-group.cjs\",[[0,\"ion-reorder-group\",{\"disabled\":[4],\"state\":[32],\"complete\":[64]}]]],[\"ion-route.cjs\",[[0,\"ion-route\",{\"url\":[1],\"component\":[1],\"componentProps\":[16],\"beforeLeave\":[16],\"beforeEnter\":[16]}]]],[\"ion-route-redirect.cjs\",[[0,\"ion-route-redirect\",{\"from\":[1],\"to\":[1]}]]],[\"ion-router.cjs\",[[0,\"ion-router\",{\"root\":[1],\"useHash\":[4,\"use-hash\"],\"canTransition\":[64],\"push\":[64],\"back\":[64],\"printDebug\":[64],\"navChanged\":[64]},[[8,\"popstate\",\"onPopState\"],[4,\"ionBackButton\",\"onBackButton\"]]]]],[\"ion-router-link.cjs\",[[1,\"ion-router-link\",{\"color\":[1],\"href\":[1],\"rel\":[1],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"target\":[1]}]]],[\"ion-router-outlet.cjs\",[[1,\"ion-router-outlet\",{\"mode\":[1025],\"delegate\":[16],\"animated\":[4],\"animation\":[16],\"swipeHandler\":[16],\"commit\":[64],\"setRouteId\":[64],\"getRouteId\":[64]}]]],[\"ion-segment.cjs\",[[33,\"ion-segment\",{\"color\":[1],\"disabled\":[4],\"scrollable\":[4],\"swipeGesture\":[4,\"swipe-gesture\"],\"value\":[1025],\"activated\":[32]}]]],[\"ion-skeleton-text.cjs\",[[1,\"ion-skeleton-text\",{\"animated\":[4]}]]],[\"ion-slide.cjs\",[[0,\"ion-slide\"]]],[\"ion-slides.cjs\",[[36,\"ion-slides\",{\"options\":[8],\"pager\":[4],\"scrollbar\":[4],\"update\":[64],\"updateAutoHeight\":[64],\"slideTo\":[64],\"slideNext\":[64],\"slidePrev\":[64],\"getActiveIndex\":[64],\"getPreviousIndex\":[64],\"length\":[64],\"isEnd\":[64],\"isBeginning\":[64],\"startAutoplay\":[64],\"stopAutoplay\":[64],\"lockSwipeToNext\":[64],\"lockSwipeToPrev\":[64],\"lockSwipes\":[64],\"getSwiper\":[64]}]]],[\"ion-split-pane.cjs\",[[33,\"ion-split-pane\",{\"contentId\":[513,\"content-id\"],\"disabled\":[4],\"when\":[8],\"visible\":[32]}]]],[\"ion-tab.cjs\",[[1,\"ion-tab\",{\"active\":[1028],\"delegate\":[16],\"tab\":[1],\"component\":[1],\"setActive\":[64]}]]],[\"ion-tab-bar.cjs\",[[33,\"ion-tab-bar\",{\"color\":[1],\"selectedTab\":[1,\"selected-tab\"],\"translucent\":[4],\"keyboardVisible\":[32]},[[8,\"keyboardWillHide\",\"onKeyboardWillHide\"],[8,\"keyboardWillShow\",\"onKeyboardWillShow\"]]]]],[\"ion-tabs.cjs\",[[1,\"ion-tabs\",{\"useRouter\":[1028,\"use-router\"],\"selectedTab\":[32],\"select\":[64],\"getTab\":[64],\"getSelected\":[64],\"setRouteId\":[64],\"getRouteId\":[64]}]]],[\"ion-thumbnail.cjs\",[[1,\"ion-thumbnail\"]]],[\"ion-virtual-scroll.cjs\",[[0,\"ion-virtual-scroll\",{\"approxItemHeight\":[2,\"approx-item-height\"],\"approxHeaderHeight\":[2,\"approx-header-height\"],\"approxFooterHeight\":[2,\"approx-footer-height\"],\"headerFn\":[16],\"footerFn\":[16],\"items\":[16],\"itemHeight\":[16],\"headerHeight\":[16],\"footerHeight\":[16],\"renderItem\":[16],\"renderHeader\":[16],\"renderFooter\":[16],\"nodeRender\":[16],\"domRender\":[16],\"totalHeight\":[32],\"positionForItem\":[64],\"checkRange\":[64],\"checkEnd\":[64]},[[9,\"resize\",\"onResize\"]]]]],[\"sparkle-character-intro.cjs\",[[4,\"sparkle-character-intro\",{\"character\":[1],\"position\":[1]}]]],[\"sparkle-code.cjs\",[[0,\"sparkle-code\",{\"language\":[513],\"showCopyConfirmation\":[32]}]]],[\"sparkle-compass.cjs\",[[0,\"sparkle-compass\",{\"resiliance\":[514],\"care\":[514],\"organization\":[514],\"school\":[514],\"relationship\":[514],\"emotions\":[514],\"spirituality\":[514],\"rest\":[514],\"canvas\":[32],\"canvase_container\":[32],\"drawOnCompass\":[64]}]]],[\"sparkle-emoji.cjs\",[[1,\"sparkle-emoji\",{\"mood\":[1],\"size\":[1]}]]],[\"sparkle-feed-post.cjs\",[[4,\"sparkle-feed-post\"]]],[\"sparkle-gww-graph.cjs\",[[4,\"sparkle-gww-graph\"]]],[\"sparkle-menu-collapsible.cjs\",[[4,\"sparkle-menu-collapsible\",{\"heading\":[1],\"isOpen\":[32]}]]],[\"sparkle-modal-image.cjs\",[[1,\"sparkle-modal-image\",{\"src\":[1],\"alt\":[1],\"width\":[1],\"height\":[1],\"openDialog\":[1028,\"open-dialog\"],\"transparent\":[4]},[[0,\"keydown\",\"handleKeyDown\"],[2,\"click\",\"handleScroll\"]]]]],[\"sparkle-poll.cjs\",[[1,\"sparkle-poll\"]]],[\"sparkle-tab.cjs\",[[4,\"sparkle-tab\",{\"tab\":[513],\"selected\":[516]}]]],[\"sparkle-tabs.cjs\",[[4,\"sparkle-tabs\",{\"listenFor\":[1,\"listen-for\"],\"selected\":[32],\"tabs\":[32]},[[8,\"local-storage\",\"listenForFrameworkSelection\"]]]]],[\"sparkle-youtube.cjs\",[[0,\"sparkle-youtube\",{\"src\":[1],\"initialClassMode\":[4,\"initial-class-mode\"],\"classMode\":[32],\"video_thumbnail\":[32],\"classRoomModeChanged\":[64]}]]],[\"stencil-async-content.cjs\",[[0,\"stencil-async-content\",{\"documentLocation\":[1,\"document-location\"],\"content\":[32]}]]],[\"stencil-route-title.cjs\",[[0,\"stencil-route-title\",{\"titleSuffix\":[1,\"title-suffix\"],\"pageTitle\":[1,\"page-title\"]}]]],[\"stencil-router-prompt.cjs\",[[0,\"stencil-router-prompt\",{\"when\":[4],\"message\":[1],\"history\":[16],\"unblock\":[32]}]]],[\"header-mobile-collapse_60.cjs\",[[0,\"sparkle-course-root\",{\"isMenuToggled\":[32],\"tocData\":[32]}],[0,\"sparkle-login\",{\"history\":[16],\"notsignin\":[32],\"username\":[32],\"password\":[32],\"rememberMe\":[32],\"submitted\":[32]}],[0,\"sparkle-user-enrollment\",{\"enrollmentFormControls\":[32],\"enrollmentFormSubmitted\":[32]}],[0,\"sparkle-mood\",{\"history\":[16],\"loading\":[32],\"feeling\":[32],\"intensity\":[32],\"location\":[32],\"public\":[32],\"submitted\":[32],\"currentStep\":[32]}],[0,\"sparkle-signup\",{\"history\":[16],\"validationErrors\":[32],\"formControls\":[32],\"submitted\":[32]}],[0,\"sparkle-user-profile\",{\"profileFormControls\":[32],\"profileFormSubmitted\":[32]}],[0,\"sparkle-forgot-password\",{\"history\":[16],\"validationErrors\":[32],\"formControls\":[32],\"submitted\":[32]}],[0,\"sparkle-goals\"],[0,\"sparkle-health\",{\"history\":[16],\"uploadedImageUrl\":[32],\"heartRate\":[32],\"public\":[32],\"submitted\":[32]}],[0,\"sparkle-gww\"],[0,\"sparkle-reset-password\",{\"history\":[16],\"validationErrors\":[32],\"formControls\":[32],\"submitted\":[32]}],[0,\"sparkle-facilitator-page\",{\"path\":[1],\"notesPath\":[1,\"notes-path\"],\"badFetch\":[32],\"badFetchLessonNotes\":[32],\"isLesson\":[32],\"notesPage\":[32],\"lessonNotesPage\":[32],\"page\":[32],\"onlineStudents\":[32],\"activetab\":[32]}],[4,\"sparkle-header\",{\"authUser\":[8,\"auth-user\"],\"hideClassRoomToggle\":[4,\"hide-class-room-toggle\"],\"courseName\":[1,\"course-name\"],\"imageUrl\":[1,\"image-url\"],\"toggleClickFn\":[16],\"signoutClickFn\":[16],\"classRoomMode\":[32],\"hidden\":[32]},[[9,\"scroll\",\"handleScroll\"]]],[0,\"sparkle-menu\",{\"toggleClickFn\":[16],\"toc\":[16],\"config\":[16]}],[4,\"sparkle-facilitator-header\",{\"courseName\":[1,\"course-name\"],\"toggleStudentClickFn\":[16],\"hidden\":[32]},[[9,\"scroll\",\"handleScroll\"]]],[4,\"sparkle-page\",{\"history\":[16],\"path\":[1],\"presentation\":[4],\"badFetch\":[32],\"page\":[32],\"isLesson\":[32]}],[4,\"sparkle-root\",{\"config\":[16]}],[0,\"sparkle-unauthorized\"],[0,\"stencil-route\",{\"group\":[513],\"componentUpdated\":[16],\"match\":[1040],\"url\":[1],\"component\":[1],\"componentProps\":[16],\"exact\":[4],\"routeRender\":[16],\"scrollTopOffset\":[2,\"scroll-top-offset\"],\"routeViewsUpdated\":[16],\"location\":[16],\"history\":[16],\"historyType\":[1,\"history-type\"]}],[4,\"stencil-router\",{\"root\":[1],\"historyType\":[1,\"history-type\"],\"titleSuffix\":[1,\"title-suffix\"],\"scrollTopOffset\":[2,\"scroll-top-offset\"],\"location\":[32],\"history\":[32]}],[0,\"sparkle-gww-item\",{\"post\":[16],\"onPostComment\":[16],\"loading\":[4],\"comment\":[32]},[[16,\"commentPosted\",\"clearCommentField\"]]],[0,\"sparkle-goal-item\",{\"goal\":[16],\"onEditGoal\":[16]}],[0,\"sparkle-page-footer\",{\"page\":[16]}],[33,\"ion-card\",{\"color\":[1],\"button\":[4],\"type\":[1],\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"target\":[1]}],[0,\"sparkle-nav\",{\"toc\":[16],\"config\":[16],\"selectedParent\":[1040],\"moduleURLName\":[32],\"sessionURLName\":[32]},[[4,\"pageDidLoad\",\"pageDidLoadHandler\"]]],[32,\"ion-card-content\"],[1,\"ion-grid\",{\"fixed\":[4]}],[4,\"sparkle-cards\"],[0,\"sparkle-export-lessons\",{\"tocData\":[32],\"moduleContent\":[32],\"moduleName\":[32],\"page\":[32]}],[0,\"sparkle-facilitator-dashboard\",{\"tocData\":[32],\"selectedModule\":[32],\"selectedSession\":[32],\"selectedPage\":[32],\"showAllModules\":[32]}],[0,\"sparkle-facilitator-notes\"],[0,\"sparkle-online-students\",{\"path\":[1],\"onlineStudents\":[32]}],[4,\"stencil-route-switch\",{\"group\":[513],\"scrollTopOffset\":[2,\"scroll-top-offset\"],\"location\":[16],\"routeViewsUpdated\":[16]}],[0,\"stencil-router-redirect\",{\"history\":[16],\"root\":[1],\"url\":[1]}],[4,\"sparkle-card\",{\"href\":[1],\"header\":[1],\"icon\":[1],\"hoverIcon\":[1,\"hover-icon\"],\"iconset\":[1],\"ionicon\":[1],\"img\":[1],\"size\":[1],\"activeIndex\":[32]}],[4,\"sparkle-button\",{\"href\":[1],\"round\":[516],\"primary\":[516]}],[0,\"sparkle-pagination\",{\"page\":[16]}],[4,\"header-mobile-collapse\",{\"darkMode\":[4,\"dark-mode\"],\"mobileDropdownActive\":[32],\"stuck\":[32],\"queued\":[32]},[[16,\"pageChanged\",\"deactivate\"]]],[1,\"ion-col\",{\"offset\":[1],\"offsetXs\":[1,\"offset-xs\"],\"offsetSm\":[1,\"offset-sm\"],\"offsetMd\":[1,\"offset-md\"],\"offsetLg\":[1,\"offset-lg\"],\"offsetXl\":[1,\"offset-xl\"],\"pull\":[1],\"pullXs\":[1,\"pull-xs\"],\"pullSm\":[1,\"pull-sm\"],\"pullMd\":[1,\"pull-md\"],\"pullLg\":[1,\"pull-lg\"],\"pullXl\":[1,\"pull-xl\"],\"push\":[1],\"pushXs\":[1,\"push-xs\"],\"pushSm\":[1,\"push-sm\"],\"pushMd\":[1,\"push-md\"],\"pushLg\":[1,\"push-lg\"],\"pushXl\":[1,\"push-xl\"],\"size\":[1],\"sizeXs\":[1,\"size-xs\"],\"sizeSm\":[1,\"size-sm\"],\"sizeMd\":[1,\"size-md\"],\"sizeLg\":[1,\"size-lg\"],\"sizeXl\":[1,\"size-xl\"]},[[9,\"resize\",\"onResize\"]]],[1,\"ion-row\"],[0,\"sparkle-menu-toggle\"],[0,\"ion-radio-group\",{\"allowEmptySelection\":[4,\"allow-empty-selection\"],\"name\":[1],\"value\":[1032]},[[4,\"keydown\",\"onKeydown\"]]],[4,\"sparkle-dropdown\",{\"align\":[1],\"label\":[1],\"icon\":[16],\"image\":[1],\"isOpen\":[32],\"close\":[64],\"open\":[64],\"toggle\":[64]},[[8,\"click\",\"handleClick\"],[0,\"keyup\",\"handleKeyup\"]]],[0,\"sparkle-validation-error\",{\"errors\":[16]}],[33,\"ion-avatar\"],[33,\"ion-checkbox\",{\"color\":[1],\"name\":[1],\"checked\":[1028],\"indeterminate\":[1028],\"disabled\":[4],\"value\":[1]}],[33,\"ion-radio\",{\"color\":[1],\"name\":[1],\"disabled\":[4],\"value\":[8],\"checked\":[32],\"buttonTabindex\":[32],\"setFocus\":[64],\"setButtonTabindex\":[64]}],[0,\"sparkle-goal-progress\",{\"percentage\":[1]}],[33,\"ion-list-header\",{\"color\":[1],\"lines\":[1]}],[33,\"ion-range\",{\"color\":[1],\"debounce\":[2],\"name\":[1],\"dualKnobs\":[4,\"dual-knobs\"],\"min\":[2],\"max\":[2],\"pin\":[4],\"snaps\":[4],\"step\":[2],\"ticks\":[4],\"disabled\":[4],\"value\":[1026],\"ratioA\":[32],\"ratioB\":[32],\"pressedKnob\":[32]}],[1,\"ion-text\",{\"color\":[1]}],[34,\"ion-input\",{\"fireFocusEvents\":[4,\"fire-focus-events\"],\"color\":[1],\"accept\":[1],\"autocapitalize\":[1],\"autocomplete\":[1],\"autocorrect\":[1],\"autofocus\":[4],\"clearInput\":[4,\"clear-input\"],\"clearOnEdit\":[4,\"clear-on-edit\"],\"debounce\":[2],\"disabled\":[4],\"enterkeyhint\":[1],\"inputmode\":[1],\"max\":[1],\"maxlength\":[2],\"min\":[1],\"minlength\":[2],\"multiple\":[4],\"name\":[1],\"pattern\":[1],\"placeholder\":[1],\"readonly\":[4],\"required\":[4],\"spellcheck\":[4],\"step\":[1],\"size\":[2],\"type\":[1],\"value\":[1032],\"hasFocus\":[32],\"setFocus\":[64],\"setBlur\":[64],\"getInputElement\":[64]}],[32,\"ion-list\",{\"lines\":[1],\"inset\":[4],\"closeSlidingItems\":[64]}],[34,\"ion-label\",{\"color\":[1],\"position\":[1],\"noAnimate\":[32]}],[1,\"ion-spinner\",{\"color\":[1],\"duration\":[2],\"name\":[1],\"paused\":[4]}],[4,\"stencil-route-link\",{\"url\":[1],\"urlMatch\":[1,\"url-match\"],\"activeClass\":[1,\"active-class\"],\"exact\":[4],\"strict\":[4],\"custom\":[1],\"anchorClass\":[1,\"anchor-class\"],\"anchorRole\":[1,\"anchor-role\"],\"anchorTitle\":[1,\"anchor-title\"],\"anchorTabIndex\":[1,\"anchor-tab-index\"],\"anchorId\":[1,\"anchor-id\"],\"history\":[16],\"location\":[16],\"root\":[1],\"ariaHaspopup\":[1,\"aria-haspopup\"],\"ariaPosinset\":[1,\"aria-posinset\"],\"ariaSetsize\":[2,\"aria-setsize\"],\"ariaLabel\":[1,\"aria-label\"],\"match\":[32]}],[49,\"ion-item\",{\"color\":[1],\"button\":[4],\"detail\":[4],\"detailIcon\":[1,\"detail-icon\"],\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"lines\":[1],\"routerAnimation\":[16],\"routerDirection\":[1,\"router-direction\"],\"target\":[1],\"type\":[1],\"multipleInputs\":[32]},[[0,\"ionColor\",\"labelColorChanged\"],[0,\"ionStyle\",\"itemStyle\"]]],[33,\"ion-button\",{\"color\":[1],\"buttonType\":[1025,\"button-type\"],\"disabled\":[516],\"expand\":[513],\"fill\":[1537],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"download\":[1],\"href\":[1],\"rel\":[1],\"shape\":[513],\"size\":[513],\"strong\":[4],\"target\":[1],\"type\":[1]}],[1,\"ion-icon\",{\"mode\":[1025],\"color\":[1],\"ariaLabel\":[1537,\"aria-label\"],\"ariaHidden\":[513,\"aria-hidden\"],\"ios\":[1],\"md\":[1],\"flipRtl\":[4,\"flip-rtl\"],\"name\":[1],\"src\":[1],\"icon\":[8],\"size\":[1],\"lazy\":[4],\"sanitize\":[4],\"svgContent\":[32],\"isVisible\":[32]}],[1,\"ion-ripple-effect\",{\"type\":[1],\"addRipple\":[64]}]]],[\"sparkle-quiz.cjs\",[[0,\"sparkle-quiz\",{\"questionId\":[2,\"question-id\"],\"submitted\":[4],\"correct\":[4],\"showInstantResult\":[4,\"show-instant-result\"],\"question\":[32],\"quizData\":[32]},[[0,\"quizInputChange\",\"quizInputChangeHandler\"],[0,\"quizFeedbackChange\",\"quizFeedbackChangeHandler\"],[0,\"quizSelectChange\",\"quizSelectChangeHandler\"],[0,\"quizOpinionChange\",\"quizOpinionChangeHandler\"]]]]],[\"sparkle-select.cjs\",[[0,\"sparkle-select\",{\"options\":[1040],\"initializer\":[16],\"optionRenderer\":[16],\"selected\":[32]}]]],[\"ion-picker-column.cjs\",[[32,\"ion-picker-column\",{\"col\":[16]}]]],[\"ion-toggle.cjs\",[[33,\"ion-toggle\",{\"color\":[1],\"name\":[1],\"checked\":[1028],\"disabled\":[4],\"value\":[1],\"activated\":[32]}]]],[\"sparkle-overlay.cjs\",[[4,\"sparkle-overlay\",{\"titleId\":[1,\"title-id\"],\"absolute\":[4],\"theme\":[1],\"preventClose\":[4,\"prevent-close\"],\"focusIndex\":[32],\"isShowing\":[32],\"show\":[64],\"hide\":[64]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"ion-back-button.cjs\",[[33,\"ion-back-button\",{\"color\":[1],\"defaultHref\":[1025,\"default-href\"],\"disabled\":[516],\"icon\":[1],\"text\":[1],\"type\":[1],\"routerAnimation\":[16]}]]],[\"ion-select_2.cjs\",[[33,\"ion-select\",{\"disabled\":[4],\"cancelText\":[1,\"cancel-text\"],\"okText\":[1,\"ok-text\"],\"placeholder\":[1],\"name\":[1],\"selectedText\":[1,\"selected-text\"],\"multiple\":[4],\"interface\":[1],\"interfaceOptions\":[8,\"interface-options\"],\"compareWith\":[1,\"compare-with\"],\"value\":[1032],\"isExpanded\":[32],\"open\":[64]}],[1,\"ion-select-option\",{\"disabled\":[4],\"value\":[8]}]]],[\"ion-textarea.cjs\",[[34,\"ion-textarea\",{\"fireFocusEvents\":[4,\"fire-focus-events\"],\"color\":[1],\"autocapitalize\":[1],\"autofocus\":[4],\"clearOnEdit\":[1028,\"clear-on-edit\"],\"debounce\":[2],\"disabled\":[4],\"inputmode\":[1],\"enterkeyhint\":[1],\"maxlength\":[2],\"minlength\":[2],\"name\":[1],\"placeholder\":[1],\"readonly\":[4],\"required\":[4],\"spellcheck\":[4],\"cols\":[2],\"rows\":[2],\"wrap\":[1],\"autoGrow\":[4,\"auto-grow\"],\"value\":[1025],\"hasFocus\":[32],\"setFocus\":[64],\"setBlur\":[64],\"getInputElement\":[64]}]]],[\"ion-content_2.cjs\",[[36,\"ion-header\",{\"collapse\":[1],\"translucent\":[4]}],[1,\"ion-content\",{\"color\":[1],\"fullscreen\":[4],\"forceOverscroll\":[1028,\"force-overscroll\"],\"scrollX\":[4,\"scroll-x\"],\"scrollY\":[4,\"scroll-y\"],\"scrollEvents\":[4,\"scroll-events\"],\"getScrollElement\":[64],\"scrollToTop\":[64],\"scrollToBottom\":[64],\"scrollByPoint\":[64],\"scrollToPoint\":[64]},[[8,\"appload\",\"onAppLoad\"],[2,\"click\",\"onClick\"]]]]],[\"ion-backdrop.cjs\",[[33,\"ion-backdrop\",{\"visible\":[4],\"tappable\":[4],\"stopPropagation\":[4,\"stop-propagation\"]},[[2,\"click\",\"onMouseDown\"]]]]],[\"sparkle-quiz-feedback_5.cjs\",[[0,\"sparkle-quiz-opinion\",{\"question\":[16],\"selectedIndex\":[32]}],[0,\"sparkle-quiz-feedback\",{\"question\":[16]}],[0,\"sparkle-quiz-input\",{\"question\":[16]}],[0,\"sparkle-quiz-poll\",{\"question\":[16]}],[0,\"sparkle-quiz-select\",{\"question\":[16],\"allowMultiple\":[4,\"allow-multiple\"],\"values\":[32]}]]],[\"ion-buttons_3.cjs\",[[34,\"ion-buttons\",{\"collapse\":[4]}],[33,\"ion-title\",{\"color\":[1],\"size\":[1]}],[33,\"ion-toolbar\",{\"color\":[1]},[[0,\"ionStyle\",\"childrenStyle\"]]]]]]"), options);
20
+ return index.bootstrapLazy(JSON.parse("[[\"sparkle-goal-form.cjs\",[[0,\"sparkle-goal-form\",{\"appData\":[16],\"name\":[32],\"description\":[32],\"category\":[32],\"progress\":[32],\"public\":[32],\"goalUpdateText\":[32],\"submitted\":[32]}]]],[\"sparkle-feedback.cjs\",[[0,\"sparkle-feedback\",{\"formControls\":[32],\"submitted\":[32]}]]],[\"sparkle-quiz-container.cjs\",[[0,\"sparkle-quiz-container\",{\"questionIds\":[1,\"question-ids\"],\"showInstantResult\":[4,\"show-instant-result\"],\"submitted\":[32]},[[4,\"pageDidLoad\",\"pageDidLoadHandler\"],[16,\"quizAnswerChanged\",\"updateQuizAnswerModelHandler\"]]]]],[\"sparkle-gww-comment-list.cjs\",[[0,\"sparkle-gww-comment-list\",{\"comments\":[16]}]]],[\"ion-select-popover.cjs\",[[2,\"ion-select-popover\",{\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"message\":[1],\"options\":[16]},[[0,\"ionChange\",\"onSelect\"]]]]],[\"sparkle-compass-post.cjs\",[[0,\"sparkle-compass-post\",{\"errorMessage\":[32],\"successMessage\":[32],\"resiliance\":[32],\"care\":[32],\"compassData\":[32],\"renderCompass\":[64]}]]],[\"sparkle-facilitator-notes-form.cjs\",[[0,\"sparkle-facilitator-notes-form\",{\"initialValues\":[16],\"formControls\":[32],\"submitted\":[32]}]]],[\"sparkle-animation-player.cjs\",[[0,\"sparkle-animation-player\",{\"src\":[1],\"composition\":[1],\"initialClassMode\":[4,\"initial-class-mode\"],\"classMode\":[32],\"showCaption\":[32],\"paused\":[32],\"sizeOfCanvas\":[32],\"sizeofProgressBar\":[32],\"dataLoaded\":[32],\"currentProgressWidth\":[32],\"captionText\":[32],\"isBusy\":[32],\"playAnimation\":[64],\"pauseAnimation\":[64],\"classRoomModeChanged\":[64],\"destroyAnimation\":[64]},[[0,\"ionChange\",\"closedCaptionChange\"],[16,\"classRoomModeChanged\",\"onClassRoomModeChanged\"]]]]],[\"sparkle-sidebar.cjs\",[[4,\"sparkle-sidebar\",{\"position\":[1],\"size\":[1],\"headerText\":[1,\"header-text\"],\"isShowing\":[32],\"hide\":[64],\"show\":[64]}]]],[\"ion-action-sheet.cjs\",[[34,\"ion-action-sheet\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"buttons\":[16],\"cssClass\":[1,\"css-class\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"course-select.cjs\",[[0,\"course-select\",{\"toggleClickFn\":[16]}]]],[\"ion-alert.cjs\",[[34,\"ion-alert\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"cssClass\":[1,\"css-class\"],\"header\":[1],\"subHeader\":[1,\"sub-header\"],\"message\":[1],\"buttons\":[16],\"inputs\":[1040],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]},[[4,\"keydown\",\"onKeydown\"]]]]],[\"ion-fab-button.cjs\",[[33,\"ion-fab-button\",{\"color\":[1],\"activated\":[4],\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"target\":[1],\"show\":[4],\"translucent\":[4],\"type\":[1],\"size\":[1],\"closeIcon\":[1,\"close-icon\"]}]]],[\"ion-loading.cjs\",[[34,\"ion-loading\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"message\":[1],\"cssClass\":[1,\"css-class\"],\"duration\":[2],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"showBackdrop\":[4,\"show-backdrop\"],\"spinner\":[1025],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-menu-button.cjs\",[[33,\"ion-menu-button\",{\"color\":[1],\"disabled\":[4],\"menu\":[1],\"autoHide\":[4,\"auto-hide\"],\"type\":[1],\"visible\":[32]},[[16,\"ionMenuChange\",\"visibilityChanged\"],[16,\"ionSplitPaneVisible\",\"visibilityChanged\"]]]]],[\"ion-picker.cjs\",[[34,\"ion-picker\",{\"overlayIndex\":[2,\"overlay-index\"],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"buttons\":[16],\"columns\":[16],\"cssClass\":[1,\"css-class\"],\"duration\":[2],\"showBackdrop\":[4,\"show-backdrop\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"animated\":[4],\"presented\":[32],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64],\"getColumn\":[64]}]]],[\"ion-refresher-content.cjs\",[[0,\"ion-refresher-content\",{\"pullingIcon\":[1025,\"pulling-icon\"],\"pullingText\":[1,\"pulling-text\"],\"refreshingSpinner\":[1025,\"refreshing-spinner\"],\"refreshingText\":[1,\"refreshing-text\"]}]]],[\"ion-toast.cjs\",[[33,\"ion-toast\",{\"overlayIndex\":[2,\"overlay-index\"],\"color\":[1],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"cssClass\":[1,\"css-class\"],\"duration\":[2],\"header\":[1],\"message\":[1],\"keyboardClose\":[4,\"keyboard-close\"],\"position\":[1],\"buttons\":[16],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-chip.cjs\",[[33,\"ion-chip\",{\"color\":[1],\"outline\":[4],\"disabled\":[4]}]]],[\"ion-infinite-scroll-content.cjs\",[[32,\"ion-infinite-scroll-content\",{\"loadingSpinner\":[1025,\"loading-spinner\"],\"loadingText\":[1,\"loading-text\"]}]]],[\"ion-item-option.cjs\",[[33,\"ion-item-option\",{\"color\":[1],\"disabled\":[4],\"download\":[1],\"expandable\":[4],\"href\":[1],\"rel\":[1],\"target\":[1],\"type\":[1]}]]],[\"ion-menu.cjs\",[[33,\"ion-menu\",{\"contentId\":[513,\"content-id\"],\"menuId\":[513,\"menu-id\"],\"type\":[1025],\"disabled\":[1028],\"side\":[513],\"swipeGesture\":[4,\"swipe-gesture\"],\"maxEdgeStart\":[2,\"max-edge-start\"],\"isPaneVisible\":[32],\"isEndSide\":[32],\"isOpen\":[64],\"isActive\":[64],\"open\":[64],\"close\":[64],\"toggle\":[64],\"setOpen\":[64]},[[16,\"ionSplitPaneVisible\",\"onSplitPaneChanged\"],[2,\"click\",\"onBackdropClick\"]]]]],[\"ion-modal.cjs\",[[34,\"ion-modal\",{\"overlayIndex\":[2,\"overlay-index\"],\"delegate\":[16],\"keyboardClose\":[4,\"keyboard-close\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"component\":[1],\"componentProps\":[16],\"cssClass\":[1,\"css-class\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"showBackdrop\":[4,\"show-backdrop\"],\"animated\":[4],\"swipeToClose\":[4,\"swipe-to-close\"],\"presentingElement\":[16],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-popover.cjs\",[[34,\"ion-popover\",{\"delegate\":[16],\"overlayIndex\":[2,\"overlay-index\"],\"enterAnimation\":[16],\"leaveAnimation\":[16],\"component\":[1],\"componentProps\":[16],\"keyboardClose\":[4,\"keyboard-close\"],\"cssClass\":[1,\"css-class\"],\"backdropDismiss\":[4,\"backdrop-dismiss\"],\"event\":[8],\"showBackdrop\":[4,\"show-backdrop\"],\"translucent\":[4],\"animated\":[4],\"present\":[64],\"dismiss\":[64],\"onDidDismiss\":[64],\"onWillDismiss\":[64]}]]],[\"ion-reorder.cjs\",[[33,\"ion-reorder\",null,[[2,\"click\",\"onClick\"]]]]],[\"ion-searchbar.cjs\",[[34,\"ion-searchbar\",{\"color\":[1],\"animated\":[4],\"autocomplete\":[1],\"autocorrect\":[1],\"cancelButtonIcon\":[1,\"cancel-button-icon\"],\"cancelButtonText\":[1,\"cancel-button-text\"],\"clearIcon\":[1,\"clear-icon\"],\"debounce\":[2],\"disabled\":[4],\"inputmode\":[1],\"enterkeyhint\":[1],\"placeholder\":[1],\"searchIcon\":[1,\"search-icon\"],\"showCancelButton\":[1,\"show-cancel-button\"],\"spellcheck\":[4],\"type\":[1],\"value\":[1025],\"focused\":[32],\"noAnimate\":[32],\"setFocus\":[64],\"getInputElement\":[64]}]]],[\"ion-segment-button.cjs\",[[33,\"ion-segment-button\",{\"disabled\":[4],\"layout\":[1],\"type\":[1],\"value\":[1],\"checked\":[32]}]]],[\"ion-tab-button.cjs\",[[33,\"ion-tab-button\",{\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"layout\":[1025],\"selected\":[1028],\"tab\":[1],\"target\":[1]},[[8,\"ionTabBarChanged\",\"onTabBarChanged\"]]]]],[\"sparkle-lower-content-nav.cjs\",[[0,\"sparkle-lower-content-nav\",{\"next\":[16],\"prev\":[16]}]]],[\"sparkle-notfound-page.cjs\",[[0,\"sparkle-notfound-page\"]]],[\"sparkle-table-of-contents.cjs\",[[0,\"sparkle-table-of-contents\",{\"links\":[16],\"label\":[1],\"basepath\":[1],\"itemOffsets\":[32],\"selectedId\":[32],\"pageWidth\":[32]},[[9,\"scroll\",\"function\"],[9,\"resize\",\"updateItemOffsets\"]]]]],[\"compass-svg.cjs\",[[0,\"compass-svg\"]]],[\"context-consumer.cjs\",[[0,\"context-consumer\",{\"context\":[16],\"renderer\":[16],\"subscribe\":[16],\"unsubscribe\":[32]}]]],[\"ion-app.cjs\",[[0,\"ion-app\"]]],[\"ion-badge.cjs\",[[33,\"ion-badge\",{\"color\":[1]}]]],[\"ion-card-header.cjs\",[[33,\"ion-card-header\",{\"color\":[1],\"translucent\":[4]}]]],[\"ion-card-subtitle.cjs\",[[33,\"ion-card-subtitle\",{\"color\":[1]}]]],[\"ion-card-title.cjs\",[[33,\"ion-card-title\",{\"color\":[1]}]]],[\"ion-datetime.cjs\",[[33,\"ion-datetime\",{\"name\":[1],\"disabled\":[4],\"readonly\":[4],\"min\":[1025],\"max\":[1025],\"displayFormat\":[1,\"display-format\"],\"displayTimezone\":[1,\"display-timezone\"],\"pickerFormat\":[1,\"picker-format\"],\"cancelText\":[1,\"cancel-text\"],\"doneText\":[1,\"done-text\"],\"yearValues\":[8,\"year-values\"],\"monthValues\":[8,\"month-values\"],\"dayValues\":[8,\"day-values\"],\"hourValues\":[8,\"hour-values\"],\"minuteValues\":[8,\"minute-values\"],\"monthNames\":[1,\"month-names\"],\"monthShortNames\":[1,\"month-short-names\"],\"dayNames\":[1,\"day-names\"],\"dayShortNames\":[1,\"day-short-names\"],\"pickerOptions\":[16],\"placeholder\":[1],\"value\":[1025],\"isExpanded\":[32],\"open\":[64]}]]],[\"ion-fab.cjs\",[[1,\"ion-fab\",{\"horizontal\":[1],\"vertical\":[1],\"edge\":[4],\"activated\":[1028],\"close\":[64]}]]],[\"ion-fab-list.cjs\",[[1,\"ion-fab-list\",{\"activated\":[4],\"side\":[1]}]]],[\"ion-footer.cjs\",[[36,\"ion-footer\",{\"translucent\":[4]}]]],[\"ion-img.cjs\",[[1,\"ion-img\",{\"alt\":[1],\"src\":[1],\"loadSrc\":[32],\"loadError\":[32]}]]],[\"ion-infinite-scroll.cjs\",[[0,\"ion-infinite-scroll\",{\"threshold\":[1],\"disabled\":[4],\"position\":[1],\"isLoading\":[32],\"complete\":[64]}]]],[\"ion-item-divider.cjs\",[[33,\"ion-item-divider\",{\"color\":[1],\"sticky\":[4]}]]],[\"ion-item-group.cjs\",[[32,\"ion-item-group\"]]],[\"ion-item-options.cjs\",[[32,\"ion-item-options\",{\"side\":[1],\"fireSwipeEvent\":[64]}]]],[\"ion-item-sliding.cjs\",[[0,\"ion-item-sliding\",{\"disabled\":[4],\"state\":[32],\"getOpenAmount\":[64],\"getSlidingRatio\":[64],\"open\":[64],\"close\":[64],\"closeOpened\":[64]}]]],[\"ion-menu-toggle.cjs\",[[1,\"ion-menu-toggle\",{\"menu\":[1],\"autoHide\":[4,\"auto-hide\"],\"visible\":[32]},[[16,\"ionMenuChange\",\"visibilityChanged\"],[16,\"ionSplitPaneVisible\",\"visibilityChanged\"]]]]],[\"ion-nav.cjs\",[[1,\"ion-nav\",{\"delegate\":[16],\"swipeGesture\":[1028,\"swipe-gesture\"],\"animated\":[4],\"animation\":[16],\"rootParams\":[16],\"root\":[1],\"push\":[64],\"insert\":[64],\"insertPages\":[64],\"pop\":[64],\"popTo\":[64],\"popToRoot\":[64],\"removeIndex\":[64],\"setRoot\":[64],\"setPages\":[64],\"setRouteId\":[64],\"getRouteId\":[64],\"getActive\":[64],\"getByIndex\":[64],\"canGoBack\":[64],\"getPrevious\":[64]}]]],[\"ion-nav-link.cjs\",[[0,\"ion-nav-link\",{\"component\":[1],\"componentProps\":[16],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16]}]]],[\"ion-note.cjs\",[[33,\"ion-note\",{\"color\":[1]}]]],[\"ion-progress-bar.cjs\",[[33,\"ion-progress-bar\",{\"type\":[1],\"reversed\":[4],\"value\":[2],\"buffer\":[2],\"color\":[1]}]]],[\"ion-refresher.cjs\",[[32,\"ion-refresher\",{\"pullMin\":[2,\"pull-min\"],\"pullMax\":[2,\"pull-max\"],\"closeDuration\":[1,\"close-duration\"],\"snapbackDuration\":[1,\"snapback-duration\"],\"pullFactor\":[2,\"pull-factor\"],\"disabled\":[4],\"nativeRefresher\":[32],\"state\":[32],\"complete\":[64],\"cancel\":[64],\"getProgress\":[64]}]]],[\"ion-reorder-group.cjs\",[[0,\"ion-reorder-group\",{\"disabled\":[4],\"state\":[32],\"complete\":[64]}]]],[\"ion-route.cjs\",[[0,\"ion-route\",{\"url\":[1],\"component\":[1],\"componentProps\":[16],\"beforeLeave\":[16],\"beforeEnter\":[16]}]]],[\"ion-route-redirect.cjs\",[[0,\"ion-route-redirect\",{\"from\":[1],\"to\":[1]}]]],[\"ion-router.cjs\",[[0,\"ion-router\",{\"root\":[1],\"useHash\":[4,\"use-hash\"],\"canTransition\":[64],\"push\":[64],\"back\":[64],\"printDebug\":[64],\"navChanged\":[64]},[[8,\"popstate\",\"onPopState\"],[4,\"ionBackButton\",\"onBackButton\"]]]]],[\"ion-router-link.cjs\",[[1,\"ion-router-link\",{\"color\":[1],\"href\":[1],\"rel\":[1],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"target\":[1]}]]],[\"ion-router-outlet.cjs\",[[1,\"ion-router-outlet\",{\"mode\":[1025],\"delegate\":[16],\"animated\":[4],\"animation\":[16],\"swipeHandler\":[16],\"commit\":[64],\"setRouteId\":[64],\"getRouteId\":[64]}]]],[\"ion-segment.cjs\",[[33,\"ion-segment\",{\"color\":[1],\"disabled\":[4],\"scrollable\":[4],\"swipeGesture\":[4,\"swipe-gesture\"],\"value\":[1025],\"activated\":[32]}]]],[\"ion-skeleton-text.cjs\",[[1,\"ion-skeleton-text\",{\"animated\":[4]}]]],[\"ion-slide.cjs\",[[0,\"ion-slide\"]]],[\"ion-slides.cjs\",[[36,\"ion-slides\",{\"options\":[8],\"pager\":[4],\"scrollbar\":[4],\"update\":[64],\"updateAutoHeight\":[64],\"slideTo\":[64],\"slideNext\":[64],\"slidePrev\":[64],\"getActiveIndex\":[64],\"getPreviousIndex\":[64],\"length\":[64],\"isEnd\":[64],\"isBeginning\":[64],\"startAutoplay\":[64],\"stopAutoplay\":[64],\"lockSwipeToNext\":[64],\"lockSwipeToPrev\":[64],\"lockSwipes\":[64],\"getSwiper\":[64]}]]],[\"ion-split-pane.cjs\",[[33,\"ion-split-pane\",{\"contentId\":[513,\"content-id\"],\"disabled\":[4],\"when\":[8],\"visible\":[32]}]]],[\"ion-tab.cjs\",[[1,\"ion-tab\",{\"active\":[1028],\"delegate\":[16],\"tab\":[1],\"component\":[1],\"setActive\":[64]}]]],[\"ion-tab-bar.cjs\",[[33,\"ion-tab-bar\",{\"color\":[1],\"selectedTab\":[1,\"selected-tab\"],\"translucent\":[4],\"keyboardVisible\":[32]},[[8,\"keyboardWillHide\",\"onKeyboardWillHide\"],[8,\"keyboardWillShow\",\"onKeyboardWillShow\"]]]]],[\"ion-tabs.cjs\",[[1,\"ion-tabs\",{\"useRouter\":[1028,\"use-router\"],\"selectedTab\":[32],\"select\":[64],\"getTab\":[64],\"getSelected\":[64],\"setRouteId\":[64],\"getRouteId\":[64]}]]],[\"ion-thumbnail.cjs\",[[1,\"ion-thumbnail\"]]],[\"ion-virtual-scroll.cjs\",[[0,\"ion-virtual-scroll\",{\"approxItemHeight\":[2,\"approx-item-height\"],\"approxHeaderHeight\":[2,\"approx-header-height\"],\"approxFooterHeight\":[2,\"approx-footer-height\"],\"headerFn\":[16],\"footerFn\":[16],\"items\":[16],\"itemHeight\":[16],\"headerHeight\":[16],\"footerHeight\":[16],\"renderItem\":[16],\"renderHeader\":[16],\"renderFooter\":[16],\"nodeRender\":[16],\"domRender\":[16],\"totalHeight\":[32],\"positionForItem\":[64],\"checkRange\":[64],\"checkEnd\":[64]},[[9,\"resize\",\"onResize\"]]]]],[\"sparkle-character-intro.cjs\",[[4,\"sparkle-character-intro\",{\"character\":[1],\"position\":[1]}]]],[\"sparkle-code.cjs\",[[0,\"sparkle-code\",{\"language\":[513],\"showCopyConfirmation\":[32]}]]],[\"sparkle-compass.cjs\",[[0,\"sparkle-compass\",{\"resiliance\":[514],\"care\":[514],\"organization\":[514],\"school\":[514],\"relationship\":[514],\"emotions\":[514],\"spirituality\":[514],\"rest\":[514],\"canvas\":[32],\"canvase_container\":[32],\"drawOnCompass\":[64]}]]],[\"sparkle-emoji.cjs\",[[1,\"sparkle-emoji\",{\"mood\":[1],\"size\":[1]}]]],[\"sparkle-feed-post.cjs\",[[4,\"sparkle-feed-post\"]]],[\"sparkle-gww-graph.cjs\",[[4,\"sparkle-gww-graph\"]]],[\"sparkle-menu-collapsible.cjs\",[[4,\"sparkle-menu-collapsible\",{\"heading\":[1],\"isOpen\":[32]}]]],[\"sparkle-modal-image.cjs\",[[1,\"sparkle-modal-image\",{\"src\":[1],\"alt\":[1],\"width\":[1],\"height\":[1],\"openDialog\":[1028,\"open-dialog\"],\"transparent\":[4]},[[0,\"keydown\",\"handleKeyDown\"],[2,\"click\",\"handleScroll\"]]]]],[\"sparkle-poll.cjs\",[[1,\"sparkle-poll\"]]],[\"sparkle-tab.cjs\",[[4,\"sparkle-tab\",{\"tab\":[513],\"selected\":[516]}]]],[\"sparkle-tabs.cjs\",[[4,\"sparkle-tabs\",{\"listenFor\":[1,\"listen-for\"],\"selected\":[32],\"tabs\":[32]},[[8,\"local-storage\",\"listenForFrameworkSelection\"]]]]],[\"sparkle-youtube.cjs\",[[0,\"sparkle-youtube\",{\"src\":[1],\"initialClassMode\":[4,\"initial-class-mode\"],\"classMode\":[32],\"video_thumbnail\":[32],\"classRoomModeChanged\":[64]}]]],[\"stencil-async-content.cjs\",[[0,\"stencil-async-content\",{\"documentLocation\":[1,\"document-location\"],\"content\":[32]}]]],[\"stencil-route-title.cjs\",[[0,\"stencil-route-title\",{\"titleSuffix\":[1,\"title-suffix\"],\"pageTitle\":[1,\"page-title\"]}]]],[\"stencil-router-prompt.cjs\",[[0,\"stencil-router-prompt\",{\"when\":[4],\"message\":[1],\"history\":[16],\"unblock\":[32]}]]],[\"header-mobile-collapse_60.cjs\",[[0,\"sparkle-course-root\",{\"isMenuToggled\":[32],\"tocData\":[32]}],[0,\"sparkle-login\",{\"history\":[16],\"notsignin\":[32],\"username\":[32],\"password\":[32],\"rememberMe\":[32],\"submitted\":[32]}],[0,\"sparkle-user-enrollment\",{\"enrollmentFormControls\":[32],\"enrollmentFormSubmitted\":[32]}],[0,\"sparkle-mood\",{\"history\":[16],\"loading\":[32],\"feeling\":[32],\"intensity\":[32],\"location\":[32],\"public\":[32],\"submitted\":[32],\"currentStep\":[32]}],[0,\"sparkle-signup\",{\"history\":[16],\"validationErrors\":[32],\"formControls\":[32],\"submitted\":[32]}],[0,\"sparkle-user-profile\",{\"profileFormControls\":[32],\"profileFormSubmitted\":[32]}],[0,\"sparkle-forgot-password\",{\"history\":[16],\"validationErrors\":[32],\"formControls\":[32],\"submitted\":[32]}],[0,\"sparkle-goals\"],[0,\"sparkle-health\",{\"history\":[16],\"uploadedImageUrl\":[32],\"heartRate\":[32],\"public\":[32],\"submitted\":[32]}],[0,\"sparkle-gww\"],[0,\"sparkle-reset-password\",{\"history\":[16],\"validationErrors\":[32],\"formControls\":[32],\"submitted\":[32]}],[0,\"sparkle-facilitator-page\",{\"path\":[1],\"notesPath\":[1,\"notes-path\"],\"badFetch\":[32],\"badFetchLessonNotes\":[32],\"isLesson\":[32],\"notesPage\":[32],\"lessonNotesPage\":[32],\"page\":[32],\"onlineStudents\":[32],\"activetab\":[32]}],[4,\"sparkle-header\",{\"authUser\":[8,\"auth-user\"],\"hideClassRoomToggle\":[4,\"hide-class-room-toggle\"],\"courseName\":[1,\"course-name\"],\"imageUrl\":[1,\"image-url\"],\"toggleClickFn\":[16],\"signoutClickFn\":[16],\"classRoomMode\":[32],\"hidden\":[32]},[[9,\"scroll\",\"handleScroll\"]]],[0,\"sparkle-menu\",{\"toggleClickFn\":[16],\"toc\":[16],\"config\":[16]}],[4,\"sparkle-facilitator-header\",{\"courseName\":[1,\"course-name\"],\"toggleStudentClickFn\":[16],\"hidden\":[32]},[[9,\"scroll\",\"handleScroll\"]]],[4,\"sparkle-page\",{\"history\":[16],\"path\":[1],\"presentation\":[4],\"badFetch\":[32],\"page\":[32],\"isLesson\":[32]}],[4,\"sparkle-root\",{\"config\":[16]}],[0,\"sparkle-unauthorized\"],[0,\"stencil-route\",{\"group\":[513],\"componentUpdated\":[16],\"match\":[1040],\"url\":[1],\"component\":[1],\"componentProps\":[16],\"exact\":[4],\"routeRender\":[16],\"scrollTopOffset\":[2,\"scroll-top-offset\"],\"routeViewsUpdated\":[16],\"location\":[16],\"history\":[16],\"historyType\":[1,\"history-type\"]}],[4,\"stencil-router\",{\"root\":[1],\"historyType\":[1,\"history-type\"],\"titleSuffix\":[1,\"title-suffix\"],\"scrollTopOffset\":[2,\"scroll-top-offset\"],\"location\":[32],\"history\":[32]}],[0,\"sparkle-gww-item\",{\"post\":[16],\"onPostComment\":[16],\"loading\":[4],\"comment\":[32]},[[16,\"commentPosted\",\"clearCommentField\"]]],[0,\"sparkle-goal-item\",{\"goal\":[16],\"onEditGoal\":[16]}],[0,\"sparkle-page-footer\",{\"page\":[16]}],[33,\"ion-card\",{\"color\":[1],\"button\":[4],\"type\":[1],\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"target\":[1]}],[0,\"sparkle-nav\",{\"toc\":[16],\"config\":[16],\"selectedParent\":[1040],\"moduleURLName\":[32],\"sessionURLName\":[32]},[[4,\"pageDidLoad\",\"pageDidLoadHandler\"]]],[32,\"ion-card-content\"],[1,\"ion-grid\",{\"fixed\":[4]}],[4,\"sparkle-cards\"],[0,\"sparkle-export-lessons\",{\"tocData\":[32],\"moduleContent\":[32],\"moduleName\":[32],\"page\":[32]}],[0,\"sparkle-facilitator-dashboard\",{\"tocData\":[32],\"selectedModule\":[32],\"selectedSession\":[32],\"selectedPage\":[32],\"showAllModules\":[32]}],[0,\"sparkle-facilitator-notes\"],[0,\"sparkle-online-students\",{\"path\":[1],\"onlineStudents\":[32]}],[4,\"stencil-route-switch\",{\"group\":[513],\"scrollTopOffset\":[2,\"scroll-top-offset\"],\"location\":[16],\"routeViewsUpdated\":[16]}],[0,\"stencil-router-redirect\",{\"history\":[16],\"root\":[1],\"url\":[1]}],[4,\"sparkle-card\",{\"href\":[1],\"header\":[1],\"icon\":[1],\"hoverIcon\":[1,\"hover-icon\"],\"iconset\":[1],\"ionicon\":[1],\"img\":[1],\"size\":[1],\"activeIndex\":[32]}],[4,\"sparkle-button\",{\"href\":[1],\"round\":[516],\"primary\":[516]}],[0,\"sparkle-pagination\",{\"page\":[16]}],[4,\"header-mobile-collapse\",{\"darkMode\":[4,\"dark-mode\"],\"mobileDropdownActive\":[32],\"stuck\":[32],\"queued\":[32]},[[16,\"pageChanged\",\"deactivate\"]]],[1,\"ion-col\",{\"offset\":[1],\"offsetXs\":[1,\"offset-xs\"],\"offsetSm\":[1,\"offset-sm\"],\"offsetMd\":[1,\"offset-md\"],\"offsetLg\":[1,\"offset-lg\"],\"offsetXl\":[1,\"offset-xl\"],\"pull\":[1],\"pullXs\":[1,\"pull-xs\"],\"pullSm\":[1,\"pull-sm\"],\"pullMd\":[1,\"pull-md\"],\"pullLg\":[1,\"pull-lg\"],\"pullXl\":[1,\"pull-xl\"],\"push\":[1],\"pushXs\":[1,\"push-xs\"],\"pushSm\":[1,\"push-sm\"],\"pushMd\":[1,\"push-md\"],\"pushLg\":[1,\"push-lg\"],\"pushXl\":[1,\"push-xl\"],\"size\":[1],\"sizeXs\":[1,\"size-xs\"],\"sizeSm\":[1,\"size-sm\"],\"sizeMd\":[1,\"size-md\"],\"sizeLg\":[1,\"size-lg\"],\"sizeXl\":[1,\"size-xl\"]},[[9,\"resize\",\"onResize\"]]],[1,\"ion-row\"],[0,\"sparkle-menu-toggle\"],[0,\"ion-radio-group\",{\"allowEmptySelection\":[4,\"allow-empty-selection\"],\"name\":[1],\"value\":[1032]},[[4,\"keydown\",\"onKeydown\"]]],[4,\"sparkle-dropdown\",{\"align\":[1],\"label\":[1],\"icon\":[16],\"image\":[1],\"isOpen\":[32],\"close\":[64],\"open\":[64],\"toggle\":[64]},[[8,\"click\",\"handleClick\"],[0,\"keyup\",\"handleKeyup\"]]],[0,\"sparkle-validation-error\",{\"errors\":[16]}],[33,\"ion-avatar\"],[33,\"ion-checkbox\",{\"color\":[1],\"name\":[1],\"checked\":[1028],\"indeterminate\":[1028],\"disabled\":[4],\"value\":[1]}],[33,\"ion-radio\",{\"color\":[1],\"name\":[1],\"disabled\":[4],\"value\":[8],\"checked\":[32],\"buttonTabindex\":[32],\"setFocus\":[64],\"setButtonTabindex\":[64]}],[0,\"sparkle-goal-progress\",{\"percentage\":[1]}],[33,\"ion-list-header\",{\"color\":[1],\"lines\":[1]}],[33,\"ion-range\",{\"color\":[1],\"debounce\":[2],\"name\":[1],\"dualKnobs\":[4,\"dual-knobs\"],\"min\":[2],\"max\":[2],\"pin\":[4],\"snaps\":[4],\"step\":[2],\"ticks\":[4],\"disabled\":[4],\"value\":[1026],\"ratioA\":[32],\"ratioB\":[32],\"pressedKnob\":[32]}],[1,\"ion-text\",{\"color\":[1]}],[34,\"ion-input\",{\"fireFocusEvents\":[4,\"fire-focus-events\"],\"color\":[1],\"accept\":[1],\"autocapitalize\":[1],\"autocomplete\":[1],\"autocorrect\":[1],\"autofocus\":[4],\"clearInput\":[4,\"clear-input\"],\"clearOnEdit\":[4,\"clear-on-edit\"],\"debounce\":[2],\"disabled\":[4],\"enterkeyhint\":[1],\"inputmode\":[1],\"max\":[1],\"maxlength\":[2],\"min\":[1],\"minlength\":[2],\"multiple\":[4],\"name\":[1],\"pattern\":[1],\"placeholder\":[1],\"readonly\":[4],\"required\":[4],\"spellcheck\":[4],\"step\":[1],\"size\":[2],\"type\":[1],\"value\":[1032],\"hasFocus\":[32],\"setFocus\":[64],\"setBlur\":[64],\"getInputElement\":[64]}],[32,\"ion-list\",{\"lines\":[1],\"inset\":[4],\"closeSlidingItems\":[64]}],[34,\"ion-label\",{\"color\":[1],\"position\":[1],\"noAnimate\":[32]}],[1,\"ion-spinner\",{\"color\":[1],\"duration\":[2],\"name\":[1],\"paused\":[4]}],[4,\"stencil-route-link\",{\"url\":[1],\"urlMatch\":[1,\"url-match\"],\"activeClass\":[1,\"active-class\"],\"exact\":[4],\"strict\":[4],\"custom\":[1],\"anchorClass\":[1,\"anchor-class\"],\"anchorRole\":[1,\"anchor-role\"],\"anchorTitle\":[1,\"anchor-title\"],\"anchorTabIndex\":[1,\"anchor-tab-index\"],\"anchorId\":[1,\"anchor-id\"],\"history\":[16],\"location\":[16],\"root\":[1],\"ariaHaspopup\":[1,\"aria-haspopup\"],\"ariaPosinset\":[1,\"aria-posinset\"],\"ariaSetsize\":[2,\"aria-setsize\"],\"ariaLabel\":[1,\"aria-label\"],\"match\":[32]}],[49,\"ion-item\",{\"color\":[1],\"button\":[4],\"detail\":[4],\"detailIcon\":[1,\"detail-icon\"],\"disabled\":[4],\"download\":[1],\"href\":[1],\"rel\":[1],\"lines\":[1],\"routerAnimation\":[16],\"routerDirection\":[1,\"router-direction\"],\"target\":[1],\"type\":[1],\"multipleInputs\":[32]},[[0,\"ionColor\",\"labelColorChanged\"],[0,\"ionStyle\",\"itemStyle\"]]],[33,\"ion-button\",{\"color\":[1],\"buttonType\":[1025,\"button-type\"],\"disabled\":[516],\"expand\":[513],\"fill\":[1537],\"routerDirection\":[1,\"router-direction\"],\"routerAnimation\":[16],\"download\":[1],\"href\":[1],\"rel\":[1],\"shape\":[513],\"size\":[513],\"strong\":[4],\"target\":[1],\"type\":[1]}],[1,\"ion-icon\",{\"mode\":[1025],\"color\":[1],\"ariaLabel\":[1537,\"aria-label\"],\"ariaHidden\":[513,\"aria-hidden\"],\"ios\":[1],\"md\":[1],\"flipRtl\":[4,\"flip-rtl\"],\"name\":[1],\"src\":[1],\"icon\":[8],\"size\":[1],\"lazy\":[4],\"sanitize\":[4],\"svgContent\":[32],\"isVisible\":[32]}],[1,\"ion-ripple-effect\",{\"type\":[1],\"addRipple\":[64]}]]],[\"sparkle-quiz.cjs\",[[0,\"sparkle-quiz\",{\"questionId\":[2,\"question-id\"],\"submitted\":[4],\"correct\":[4],\"showInstantResult\":[4,\"show-instant-result\"],\"question\":[32],\"quizData\":[32]},[[0,\"quizInputChange\",\"quizInputChangeHandler\"],[0,\"quizFeedbackChange\",\"quizFeedbackChangeHandler\"],[0,\"quizSelectChange\",\"quizSelectChangeHandler\"],[0,\"quizOpinionChange\",\"quizOpinionChangeHandler\"]]]]],[\"sparkle-select.cjs\",[[0,\"sparkle-select\",{\"options\":[1040],\"initializer\":[16],\"optionRenderer\":[16],\"selected\":[32]}]]],[\"ion-picker-column.cjs\",[[32,\"ion-picker-column\",{\"col\":[16]}]]],[\"ion-toggle.cjs\",[[33,\"ion-toggle\",{\"color\":[1],\"name\":[1],\"checked\":[1028],\"disabled\":[4],\"value\":[1],\"activated\":[32]}]]],[\"sparkle-overlay.cjs\",[[4,\"sparkle-overlay\",{\"titleId\":[1,\"title-id\"],\"absolute\":[4],\"theme\":[1],\"preventClose\":[4,\"prevent-close\"],\"focusIndex\":[32],\"isShowing\":[32],\"show\":[64],\"hide\":[64]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"ion-back-button.cjs\",[[33,\"ion-back-button\",{\"color\":[1],\"defaultHref\":[1025,\"default-href\"],\"disabled\":[516],\"icon\":[1],\"text\":[1],\"type\":[1],\"routerAnimation\":[16]}]]],[\"ion-select_2.cjs\",[[33,\"ion-select\",{\"disabled\":[4],\"cancelText\":[1,\"cancel-text\"],\"okText\":[1,\"ok-text\"],\"placeholder\":[1],\"name\":[1],\"selectedText\":[1,\"selected-text\"],\"multiple\":[4],\"interface\":[1],\"interfaceOptions\":[8,\"interface-options\"],\"compareWith\":[1,\"compare-with\"],\"value\":[1032],\"isExpanded\":[32],\"open\":[64]}],[1,\"ion-select-option\",{\"disabled\":[4],\"value\":[8]}]]],[\"ion-textarea.cjs\",[[34,\"ion-textarea\",{\"fireFocusEvents\":[4,\"fire-focus-events\"],\"color\":[1],\"autocapitalize\":[1],\"autofocus\":[4],\"clearOnEdit\":[1028,\"clear-on-edit\"],\"debounce\":[2],\"disabled\":[4],\"inputmode\":[1],\"enterkeyhint\":[1],\"maxlength\":[2],\"minlength\":[2],\"name\":[1],\"placeholder\":[1],\"readonly\":[4],\"required\":[4],\"spellcheck\":[4],\"cols\":[2],\"rows\":[2],\"wrap\":[1],\"autoGrow\":[4,\"auto-grow\"],\"value\":[1025],\"hasFocus\":[32],\"setFocus\":[64],\"setBlur\":[64],\"getInputElement\":[64]}]]],[\"ion-content_2.cjs\",[[36,\"ion-header\",{\"collapse\":[1],\"translucent\":[4]}],[1,\"ion-content\",{\"color\":[1],\"fullscreen\":[4],\"forceOverscroll\":[1028,\"force-overscroll\"],\"scrollX\":[4,\"scroll-x\"],\"scrollY\":[4,\"scroll-y\"],\"scrollEvents\":[4,\"scroll-events\"],\"getScrollElement\":[64],\"scrollToTop\":[64],\"scrollToBottom\":[64],\"scrollByPoint\":[64],\"scrollToPoint\":[64]},[[8,\"appload\",\"onAppLoad\"],[2,\"click\",\"onClick\"]]]]],[\"ion-backdrop.cjs\",[[33,\"ion-backdrop\",{\"visible\":[4],\"tappable\":[4],\"stopPropagation\":[4,\"stop-propagation\"]},[[2,\"click\",\"onMouseDown\"]]]]],[\"sparkle-quiz-feedback_5.cjs\",[[0,\"sparkle-quiz-opinion\",{\"question\":[16],\"selectedIndex\":[32]}],[0,\"sparkle-quiz-feedback\",{\"question\":[16]}],[0,\"sparkle-quiz-input\",{\"question\":[16]}],[0,\"sparkle-quiz-poll\",{\"question\":[16]}],[0,\"sparkle-quiz-select\",{\"question\":[16],\"allowMultiple\":[4,\"allow-multiple\"],\"values\":[32]}]]],[\"ion-buttons_3.cjs\",[[34,\"ion-buttons\",{\"collapse\":[4]}],[33,\"ion-title\",{\"color\":[1],\"size\":[1]}],[33,\"ion-toolbar\",{\"color\":[1]},[[0,\"ionStyle\",\"childrenStyle\"]]]]]]"), options);
21
21
  });
22
22
  };
23
23
 
@@ -0,0 +1,40 @@
1
+ 'use strict';
2
+
3
+ const storage = window.localStorage;
4
+ function set(key, value) {
5
+ return new Promise((resolve, reject) => {
6
+ try {
7
+ storage && storage.setItem(key, JSON.stringify(value));
8
+ resolve();
9
+ }
10
+ catch (err) {
11
+ reject(`Couldnt store object ${err}`);
12
+ }
13
+ });
14
+ }
15
+ function remove(key) {
16
+ return new Promise((resolve, reject) => {
17
+ try {
18
+ storage && storage.removeItem(key);
19
+ resolve();
20
+ }
21
+ catch (err) {
22
+ reject(`Couldnt remove object ${err}`);
23
+ }
24
+ });
25
+ }
26
+ function get(key) {
27
+ try {
28
+ if (storage) {
29
+ const item = storage.getItem(key);
30
+ return JSON.parse(item);
31
+ }
32
+ }
33
+ catch (err) {
34
+ return null;
35
+ }
36
+ }
37
+
38
+ exports.get = get;
39
+ exports.remove = remove;
40
+ exports.set = set;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry = require('./header-mobile-collapse.ion-avatar.ion-button.ion-card.ion-card-content.ion-checkbox.ion-col.ion-grid.ion-icon.ion-input.ion-item.ion-label.ion-list.ion-list-header.ion-radio.ion-radio-group.ion-range.ion-ripple-effect.ion-row.ion-spinner.ion-text.sparkle-button.sparkle-card.sparkle-cards.sparkle-course-root.sparkle-dropdown.sparkle-export-lessons.sparkle-facilitator-dashboard.sparkle-facilitator-header.sparkle-facilitator-notes.sparkle-facilitator-page.sparkle-forgot-password.sparkle-goal-item.sparkle-goal-progress.sparkle-goals.sparkle-gww.sparkle-gww-item.sparkle-header.sparkle-health.sparkle-login.sparkle-menu.sparkle-menu-toggle.sparkle-mood.sparkle-nav.sparkle-online-students.sparkle-page.sparkle-page-footer.sparkle-pagination.sparkle-reset-password.sparkle-root.sparkle-signup.sparkle-unauthorized.sparkle-user-enrollment.sparkle-user-profile.sparkle-validation-error.stencil-route.stencil-route-link.stencil-route-switch.stencil-router.stencil-router-redirect-bda2d9ae.js');
3
+ const headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry = require('./header-mobile-collapse.ion-avatar.ion-button.ion-card.ion-card-content.ion-checkbox.ion-col.ion-grid.ion-icon.ion-input.ion-item.ion-label.ion-list.ion-list-header.ion-radio.ion-radio-group.ion-range.ion-ripple-effect.ion-row.ion-spinner.ion-text.sparkle-button.sparkle-card.sparkle-cards.sparkle-course-root.sparkle-dropdown.sparkle-export-lessons.sparkle-facilitator-dashboard.sparkle-facilitator-header.sparkle-facilitator-notes.sparkle-facilitator-page.sparkle-forgot-password.sparkle-goal-item.sparkle-goal-progress.sparkle-goals.sparkle-gww.sparkle-gww-item.sparkle-header.sparkle-health.sparkle-login.sparkle-menu.sparkle-menu-toggle.sparkle-mood.sparkle-nav.sparkle-online-students.sparkle-page.sparkle-page-footer.sparkle-pagination.sparkle-reset-password.sparkle-root.sparkle-signup.sparkle-unauthorized.sparkle-user-enrollment.sparkle-user-profile.sparkle-validation-error.stencil-route.stencil-route-link.stencil-route-switch.stencil-router.stencil-router-redirect-db6c963c.js');
4
4
 
5
5
  var purify = headerMobileCollapse_ionAvatar_ionButton_ionCard_ionCardContent_ionCheckbox_ionCol_ionGrid_ionIcon_ionInput_ionItem_ionLabel_ionList_ionListHeader_ionRadio_ionRadioGroup_ionRange_ionRippleEffect_ionRow_ionSpinner_ionText_sparkleButton_sparkleCard_sparkleCards_sparkleCourseRoot_sparkleDropdown_sparkleExportLessons_sparkleFacilitatorDashboard_sparkleFacilitatorHeader_sparkleFacilitatorNotes_sparkleFacilitatorPage_sparkleForgotPassword_sparkleGoalItem_sparkleGoalProgress_sparkleGoals_sparkleGww_sparkleGwwItem_sparkleHeader_sparkleHealth_sparkleLogin_sparkleMenu_sparkleMenuToggle_sparkleMood_sparkleNav_sparkleOnlineStudents_sparklePage_sparklePageFooter_sparklePagination_sparkleResetPassword_sparkleRoot_sparkleSignup_sparkleUnauthorized_sparkleUserEnrollment_sparkleUserProfile_sparkleValidationError_stencilRoute_stencilRouteLink_stencilRouteSwitch_stencilRouter_stencilRouterRedirect_entry.createCommonjsModule(function (module, exports) {
6
6
  /*! @license DOMPurify | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.2.2/LICENSE */