@ndla/ui 13.2.2 → 15.1.0
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/es/Article/Article.js +22 -3
- package/es/Article/ArticleFavoritesButton.js +38 -0
- package/es/Article/index.js +2 -1
- package/es/Breadcrumb/ActionBreadcrumb.js +57 -0
- package/es/Breadcrumb/index.js +1 -0
- package/es/Footer/FooterAuth.js +15 -22
- package/es/InfoBlock/InfoBlock.js +55 -0
- package/es/InfoBlock/index.js +1 -0
- package/es/LearningPaths/LearningPathMenu.js +3 -4
- package/es/Masthead/MastheadAuthModal.js +2 -2
- package/es/MyNdla/Navigation/VerticalNavigation.js +51 -0
- package/es/MyNdla/Navigation/index.js +2 -0
- package/es/MyNdla/Resource/Folder.js +86 -0
- package/es/MyNdla/Resource/FolderInput.js +96 -0
- package/{lib/MyNdla/ResourceDash/ResourcesView.d.ts → es/MyNdla/Resource/index.js} +3 -3
- package/es/MyNdla/index.js +4 -4
- package/es/Resource/BlockResource.js +73 -0
- package/es/Resource/ListResource.js +66 -0
- package/es/Resource/index.js +10 -0
- package/es/Resource/resourceComponents.js +97 -0
- package/es/ResourceGroup/ResourceGroup.js +7 -5
- package/es/ResourceGroup/ResourceItem.js +28 -30
- package/es/ResourceGroup/ResourceList.js +18 -6
- package/es/Search/ActiveFilters.js +6 -7
- package/es/Search/ContentTypeResult.js +6 -8
- package/es/SearchTypeResult/ActiveFilters.js +6 -10
- package/es/SnackBar/SnackBar.js +117 -0
- package/es/SnackBar/index.js +9 -0
- package/es/TagSelector/SuggestionInput.js +240 -0
- package/es/TagSelector/Suggestions.js +93 -0
- package/es/TagSelector/TagSelector.js +137 -0
- package/es/TagSelector/index.js +9 -0
- package/es/TopicIntroductionList/TopicIntroduction.js +2 -4
- package/es/TopicIntroductionList/TopicShortcutItem.js +1 -3
- package/es/TreeStructure/FolderItem.js +130 -0
- package/es/TreeStructure/FolderItems.js +123 -0
- package/es/TreeStructure/FolderNameInput.js +112 -0
- package/es/TreeStructure/TreeStructure.js +254 -0
- package/es/TreeStructure/TreeStructure.types.js +0 -0
- package/es/TreeStructure/TreeStructureWrapper.js +13 -0
- package/es/TreeStructure/helperFunctions.js +92 -0
- package/es/TreeStructure/index.js +9 -0
- package/es/TreeStructure/keyboardNavigation/keyboardNavigation.js +182 -0
- package/es/TreeStructure/keyboardNavigation/keyboardNavigation.types.js +0 -0
- package/es/User/AuthModal.js +15 -24
- package/es/User/UserInfo.js +70 -0
- package/es/User/apiTypes.js +0 -0
- package/es/User/index.js +2 -0
- package/es/User/parseUserObject.js +102 -0
- package/es/all.css +90 -0
- package/es/index.js +9 -3
- package/es/locale/messages-en.js +71 -4
- package/es/locale/messages-nb.js +70 -3
- package/es/locale/messages-nn.js +70 -3
- package/es/locale/messages-se.js +70 -3
- package/es/locale/messages-sma.js +70 -3
- package/lib/Article/Article.d.ts +3 -1
- package/lib/Article/Article.js +43 -23
- package/lib/Article/ArticleFavoritesButton.d.ts +15 -0
- package/lib/Article/ArticleFavoritesButton.js +56 -0
- package/lib/Article/index.d.ts +2 -1
- package/lib/Article/index.js +8 -0
- package/lib/Breadcrumb/ActionBreadcrumb.d.ts +16 -0
- package/lib/Breadcrumb/ActionBreadcrumb.js +72 -0
- package/lib/Breadcrumb/index.d.ts +1 -0
- package/lib/Breadcrumb/index.js +8 -0
- package/lib/Footer/FooterAuth.d.ts +1 -1
- package/lib/Footer/FooterAuth.js +17 -17
- package/lib/InfoBlock/InfoBlock.d.ts +8 -0
- package/lib/InfoBlock/InfoBlock.js +58 -0
- package/lib/InfoBlock/index.d.ts +1 -0
- package/lib/InfoBlock/index.js +13 -0
- package/lib/LearningPaths/LearningPathMenu.js +3 -4
- package/lib/Masthead/MastheadAuthModal.d.ts +3 -3
- package/lib/Masthead/MastheadAuthModal.js +3 -3
- package/lib/MyNdla/Navigation/VerticalNavigation.d.ts +10 -0
- package/lib/MyNdla/Navigation/VerticalNavigation.js +61 -0
- package/lib/MyNdla/Navigation/index.d.ts +2 -0
- package/lib/MyNdla/Navigation/index.js +15 -0
- package/lib/MyNdla/Resource/Folder.d.ts +20 -0
- package/lib/MyNdla/Resource/Folder.js +100 -0
- package/lib/MyNdla/Resource/FolderInput.d.ts +15 -0
- package/lib/MyNdla/Resource/FolderInput.js +116 -0
- package/lib/MyNdla/Resource/index.d.ts +10 -0
- package/lib/MyNdla/Resource/index.js +23 -0
- package/lib/MyNdla/index.d.ts +4 -4
- package/lib/MyNdla/index.js +13 -7
- package/lib/Resource/BlockResource.d.ts +20 -0
- package/lib/Resource/BlockResource.js +84 -0
- package/lib/Resource/ListResource.d.ts +20 -0
- package/lib/Resource/ListResource.js +78 -0
- package/lib/Resource/index.d.ts +11 -0
- package/lib/Resource/index.js +29 -0
- package/lib/Resource/resourceComponents.d.ts +24 -0
- package/lib/Resource/resourceComponents.js +106 -0
- package/lib/ResourceGroup/ResourceGroup.d.ts +2 -1
- package/lib/ResourceGroup/ResourceGroup.js +7 -5
- package/lib/ResourceGroup/ResourceItem.d.ts +5 -1
- package/lib/ResourceGroup/ResourceItem.js +29 -30
- package/lib/ResourceGroup/ResourceList.d.ts +3 -1
- package/lib/ResourceGroup/ResourceList.js +18 -6
- package/lib/Search/ActiveFilters.js +6 -7
- package/lib/Search/ContentTypeResult.js +6 -8
- package/lib/SearchTypeResult/ActiveFilters.js +6 -10
- package/lib/SnackBar/SnackBar.d.ts +23 -0
- package/lib/SnackBar/SnackBar.js +127 -0
- package/lib/SnackBar/index.d.ts +10 -0
- package/lib/SnackBar/index.js +15 -0
- package/lib/TagSelector/SuggestionInput.d.ts +19 -0
- package/lib/TagSelector/SuggestionInput.js +255 -0
- package/lib/TagSelector/Suggestions.d.ts +12 -0
- package/lib/TagSelector/Suggestions.js +96 -0
- package/lib/TagSelector/TagSelector.d.ts +16 -0
- package/lib/TagSelector/TagSelector.js +150 -0
- package/lib/TagSelector/index.d.ts +10 -0
- package/lib/TagSelector/index.js +19 -0
- package/lib/TopicIntroductionList/TopicIntroduction.js +2 -4
- package/lib/TopicIntroductionList/TopicShortcutItem.js +1 -3
- package/lib/TreeStructure/FolderItem.d.ts +27 -0
- package/lib/TreeStructure/FolderItem.js +140 -0
- package/lib/TreeStructure/FolderItems.d.ts +11 -0
- package/lib/TreeStructure/FolderItems.js +130 -0
- package/lib/TreeStructure/FolderNameInput.d.ts +15 -0
- package/lib/TreeStructure/FolderNameInput.js +125 -0
- package/lib/TreeStructure/TreeStructure.d.ts +12 -0
- package/lib/TreeStructure/TreeStructure.js +273 -0
- package/lib/TreeStructure/TreeStructure.types.d.ts +63 -0
- package/lib/TreeStructure/TreeStructure.types.js +1 -0
- package/lib/TreeStructure/TreeStructureWrapper.d.ts +12 -0
- package/lib/TreeStructure/TreeStructureWrapper.js +24 -0
- package/lib/TreeStructure/helperFunctions.d.ts +5 -0
- package/lib/TreeStructure/helperFunctions.js +103 -0
- package/lib/TreeStructure/index.d.ts +10 -0
- package/lib/TreeStructure/index.js +15 -0
- package/lib/TreeStructure/keyboardNavigation/keyboardNavigation.d.ts +11 -0
- package/lib/TreeStructure/keyboardNavigation/keyboardNavigation.js +186 -0
- package/lib/TreeStructure/keyboardNavigation/keyboardNavigation.types.d.ts +26 -0
- package/lib/TreeStructure/keyboardNavigation/keyboardNavigation.types.js +1 -0
- package/lib/User/AuthModal.d.ts +3 -3
- package/lib/User/AuthModal.js +16 -23
- package/lib/User/UserInfo.d.ts +13 -0
- package/lib/User/UserInfo.js +84 -0
- package/lib/User/apiTypes.d.ts +61 -0
- package/lib/User/apiTypes.js +1 -0
- package/lib/User/index.d.ts +4 -0
- package/lib/User/index.js +8 -0
- package/lib/User/parseUserObject.d.ts +32 -0
- package/lib/User/parseUserObject.js +105 -0
- package/lib/all.css +90 -0
- package/lib/index.d.ts +14 -3
- package/lib/index.js +83 -10
- package/lib/locale/messages-en.d.ts +67 -0
- package/lib/locale/messages-en.js +71 -4
- package/lib/locale/messages-nb.d.ts +67 -0
- package/lib/locale/messages-nb.js +70 -3
- package/lib/locale/messages-nn.d.ts +67 -0
- package/lib/locale/messages-nn.js +70 -3
- package/lib/locale/messages-se.d.ts +67 -0
- package/lib/locale/messages-se.js +70 -3
- package/lib/locale/messages-sma.d.ts +67 -0
- package/lib/locale/messages-sma.js +70 -3
- package/lib/types.d.ts +1 -1
- package/package.json +11 -11
- package/src/Article/Article.tsx +31 -0
- package/src/Article/ArticleFavoritesButton.tsx +40 -0
- package/src/Article/index.ts +2 -0
- package/src/Breadcrumb/ActionBreadcrumb.tsx +68 -0
- package/src/Breadcrumb/index.ts +2 -0
- package/src/Footer/FooterAuth.tsx +7 -9
- package/src/InfoBlock/InfoBlock.tsx +61 -0
- package/src/InfoBlock/index.ts +1 -0
- package/src/LearningPaths/LearningPathMenu.tsx +1 -1
- package/src/Masthead/MastheadAuthModal.tsx +4 -5
- package/src/MyNdla/Navigation/VerticalNavigation.tsx +93 -0
- package/src/MyNdla/Navigation/index.ts +2 -0
- package/src/MyNdla/Resource/Folder.tsx +145 -0
- package/src/MyNdla/Resource/FolderInput.tsx +104 -0
- package/src/MyNdla/Resource/index.ts +11 -0
- package/src/MyNdla/index.ts +4 -5
- package/src/Resource/BlockResource.tsx +101 -0
- package/src/Resource/ListResource.tsx +111 -0
- package/src/Resource/index.ts +12 -0
- package/src/Resource/resourceComponents.tsx +143 -0
- package/src/ResourceGroup/ResourceGroup.tsx +3 -0
- package/src/ResourceGroup/ResourceItem.tsx +20 -3
- package/src/ResourceGroup/ResourceList.tsx +16 -3
- package/src/Search/ActiveFilters.jsx +0 -1
- package/src/Search/ContentTypeResult.tsx +8 -9
- package/src/SearchTypeResult/ActiveFilters.tsx +1 -3
- package/src/SnackBar/SnackBar.tsx +183 -0
- package/src/SnackBar/index.ts +13 -0
- package/src/TagSelector/SuggestionInput.tsx +230 -0
- package/src/TagSelector/Suggestions.tsx +125 -0
- package/src/TagSelector/TagSelector.tsx +111 -0
- package/src/TagSelector/index.ts +13 -0
- package/src/TopicIntroductionList/TopicIntroduction.tsx +2 -2
- package/src/TopicIntroductionList/TopicShortcutItem.tsx +1 -5
- package/src/TreeStructure/FolderItem.tsx +160 -0
- package/src/TreeStructure/FolderItems.tsx +109 -0
- package/src/TreeStructure/FolderNameInput.tsx +109 -0
- package/src/TreeStructure/TreeStructure.tsx +184 -0
- package/src/TreeStructure/TreeStructure.types.ts +69 -0
- package/src/TreeStructure/TreeStructureWrapper.tsx +34 -0
- package/src/TreeStructure/helperFunctions.ts +52 -0
- package/src/TreeStructure/index.ts +11 -0
- package/src/TreeStructure/keyboardNavigation/keyboardNavigation.ts +161 -0
- package/src/TreeStructure/keyboardNavigation/keyboardNavigation.types.ts +28 -0
- package/src/User/AuthModal.tsx +5 -26
- package/src/User/UserInfo.tsx +80 -0
- package/src/User/__tests__/parseUserObject-test.ts +315 -0
- package/src/User/apiTypes.ts +74 -0
- package/src/User/index.ts +4 -0
- package/src/User/parseUserObject.ts +83 -0
- package/src/all.scss +2 -0
- package/src/index.ts +15 -4
- package/src/locale/messages-en.ts +65 -3
- package/src/locale/messages-nb.ts +64 -2
- package/src/locale/messages-nn.ts +64 -2
- package/src/locale/messages-se.ts +64 -2
- package/src/locale/messages-sma.ts +64 -2
- package/src/types.ts +1 -1
- package/es/MyNdla/ResourceDash/Breadcrumbs.js +0 -22
- package/es/MyNdla/ResourceDash/ResourceElement.js +0 -27
- package/es/MyNdla/ResourceDash/ResourcesView.js +0 -43
- package/es/MyNdla/ResourceDash/index.js +0 -4
- package/lib/MyNdla/ResourceDash/Breadcrumbs.d.ts +0 -15
- package/lib/MyNdla/ResourceDash/Breadcrumbs.js +0 -35
- package/lib/MyNdla/ResourceDash/ResourceElement.d.ts +0 -18
- package/lib/MyNdla/ResourceDash/ResourceElement.js +0 -38
- package/lib/MyNdla/ResourceDash/ResourcesView.js +0 -57
- package/lib/MyNdla/ResourceDash/index.d.ts +0 -4
- package/lib/MyNdla/ResourceDash/index.js +0 -31
- package/src/MyNdla/ResourceDash/Breadcrumbs.tsx +0 -31
- package/src/MyNdla/ResourceDash/ResourceElement.tsx +0 -50
- package/src/MyNdla/ResourceDash/ResourcesView.tsx +0 -42
- package/src/MyNdla/ResourceDash/index.ts +0 -5
package/lib/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
/** @ts-ignore */
|
|
9
9
|
export * from './index-javascript';
|
|
10
|
-
export { ArticleByline, ArticleContent, ArticleFootNotes, ArticleIntroduction, ArticleTitle, ArticleWrapper, ArticleHeaderWrapper, ArticleSideBar, default as Article, } from './Article';
|
|
10
|
+
export { ArticleByline, ArticleContent, ArticleFootNotes, ArticleIntroduction, ArticleTitle, ArticleWrapper, ArticleHeaderWrapper, ArticleSideBar, default as Article, ArticleFavoritesButton, } from './Article';
|
|
11
11
|
export { default as Table } from './Table';
|
|
12
12
|
export { default as ResourcesWrapper, ResourcesTitle, ResourcesTopicTitle } from './ResourcesWrapper';
|
|
13
13
|
export { createUniversalPortal } from './utils/createUniversalPortal';
|
|
@@ -37,7 +37,9 @@ export { default as ContentTypeResult } from './Search/ContentTypeResult';
|
|
|
37
37
|
export { SearchFieldForm } from './Search/SearchFieldForm';
|
|
38
38
|
export { default as MastheadSearchModal } from './Masthead/MastheadSearchModal';
|
|
39
39
|
export { default as MastheadAuthModal } from './Masthead/MastheadAuthModal';
|
|
40
|
+
export { UserInfo } from './User';
|
|
40
41
|
export { default as AuthModal } from './User';
|
|
42
|
+
export type { FeideGoGroup, FeideGroup, FeideOrg, FeideUserApiType, FeideMembershipType, FeideUser } from './User';
|
|
41
43
|
export { default as CreatedBy } from './CreatedBy';
|
|
42
44
|
export { default as Breadcrumblist } from './Breadcrumblist';
|
|
43
45
|
export { MessageBox, MessageBoxTag, MessageBoxType } from './MessageBox';
|
|
@@ -58,7 +60,7 @@ export { default as Topic } from './Topic';
|
|
|
58
60
|
export type { TopicProps } from './Topic';
|
|
59
61
|
export { default as Aside } from './Aside';
|
|
60
62
|
export { default as AuthorInfo } from './AuthorInfo';
|
|
61
|
-
export { default as Breadcrumb, HeaderBreadcrumb, HomeBreadcrumb } from './Breadcrumb';
|
|
63
|
+
export { default as Breadcrumb, HeaderBreadcrumb, HomeBreadcrumb, ActionBreadcrumb } from './Breadcrumb';
|
|
62
64
|
export type { SimpleBreadcrumbItem, IndexedBreadcrumbItem } from './Breadcrumb';
|
|
63
65
|
export type { BreadcrumbItemProps } from './Breadcrumblist/Breadcrumblist';
|
|
64
66
|
export { i18nInstance, formatNestedMessages, formatMessage } from './i18n';
|
|
@@ -74,4 +76,13 @@ export { default as CopyParagraphButton } from './CopyParagraphButton';
|
|
|
74
76
|
export { default as ContentPlaceholder } from './ContentPlaceholder';
|
|
75
77
|
export { Notion, ConceptNotion } from './Notion';
|
|
76
78
|
export { BannerCard } from './BannerCard';
|
|
77
|
-
export {
|
|
79
|
+
export { VerticalNavigation, Folder, FolderInput } from './MyNdla';
|
|
80
|
+
export { ListResource, BlockResource } from './Resource';
|
|
81
|
+
export type { ListResourceProps } from './Resource';
|
|
82
|
+
export type { TagType } from './TagSelector';
|
|
83
|
+
export { TagSelector } from './TagSelector';
|
|
84
|
+
export type { SnackBarItem } from './SnackBar';
|
|
85
|
+
export { SnackBar } from './SnackBar';
|
|
86
|
+
export { InfoBlock } from './InfoBlock';
|
|
87
|
+
export { TreeStructure } from './TreeStructure';
|
|
88
|
+
export type { FolderStructureProps, TreeStructureProps } from './TreeStructure';
|
package/lib/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var _exportNames = {
|
|
|
15
15
|
ArticleHeaderWrapper: true,
|
|
16
16
|
ArticleSideBar: true,
|
|
17
17
|
Article: true,
|
|
18
|
+
ArticleFavoritesButton: true,
|
|
18
19
|
Table: true,
|
|
19
20
|
ResourcesWrapper: true,
|
|
20
21
|
ResourcesTitle: true,
|
|
@@ -87,6 +88,7 @@ var _exportNames = {
|
|
|
87
88
|
SearchFieldForm: true,
|
|
88
89
|
MastheadSearchModal: true,
|
|
89
90
|
MastheadAuthModal: true,
|
|
91
|
+
UserInfo: true,
|
|
90
92
|
AuthModal: true,
|
|
91
93
|
CreatedBy: true,
|
|
92
94
|
Breadcrumblist: true,
|
|
@@ -121,6 +123,7 @@ var _exportNames = {
|
|
|
121
123
|
Breadcrumb: true,
|
|
122
124
|
HeaderBreadcrumb: true,
|
|
123
125
|
HomeBreadcrumb: true,
|
|
126
|
+
ActionBreadcrumb: true,
|
|
124
127
|
i18nInstance: true,
|
|
125
128
|
formatNestedMessages: true,
|
|
126
129
|
formatMessage: true,
|
|
@@ -175,9 +178,15 @@ var _exportNames = {
|
|
|
175
178
|
Notion: true,
|
|
176
179
|
ConceptNotion: true,
|
|
177
180
|
BannerCard: true,
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
+
VerticalNavigation: true,
|
|
182
|
+
Folder: true,
|
|
183
|
+
FolderInput: true,
|
|
184
|
+
ListResource: true,
|
|
185
|
+
BlockResource: true,
|
|
186
|
+
TagSelector: true,
|
|
187
|
+
SnackBar: true,
|
|
188
|
+
InfoBlock: true,
|
|
189
|
+
TreeStructure: true
|
|
181
190
|
};
|
|
182
191
|
Object.defineProperty(exports, "ArticleByline", {
|
|
183
192
|
enumerable: true,
|
|
@@ -233,6 +242,12 @@ Object.defineProperty(exports, "Article", {
|
|
|
233
242
|
return _Article["default"];
|
|
234
243
|
}
|
|
235
244
|
});
|
|
245
|
+
Object.defineProperty(exports, "ArticleFavoritesButton", {
|
|
246
|
+
enumerable: true,
|
|
247
|
+
get: function get() {
|
|
248
|
+
return _Article.ArticleFavoritesButton;
|
|
249
|
+
}
|
|
250
|
+
});
|
|
236
251
|
Object.defineProperty(exports, "Table", {
|
|
237
252
|
enumerable: true,
|
|
238
253
|
get: function get() {
|
|
@@ -665,6 +680,12 @@ Object.defineProperty(exports, "MastheadAuthModal", {
|
|
|
665
680
|
return _MastheadAuthModal["default"];
|
|
666
681
|
}
|
|
667
682
|
});
|
|
683
|
+
Object.defineProperty(exports, "UserInfo", {
|
|
684
|
+
enumerable: true,
|
|
685
|
+
get: function get() {
|
|
686
|
+
return _User.UserInfo;
|
|
687
|
+
}
|
|
688
|
+
});
|
|
668
689
|
Object.defineProperty(exports, "AuthModal", {
|
|
669
690
|
enumerable: true,
|
|
670
691
|
get: function get() {
|
|
@@ -869,6 +890,12 @@ Object.defineProperty(exports, "HomeBreadcrumb", {
|
|
|
869
890
|
return _Breadcrumb.HomeBreadcrumb;
|
|
870
891
|
}
|
|
871
892
|
});
|
|
893
|
+
Object.defineProperty(exports, "ActionBreadcrumb", {
|
|
894
|
+
enumerable: true,
|
|
895
|
+
get: function get() {
|
|
896
|
+
return _Breadcrumb.ActionBreadcrumb;
|
|
897
|
+
}
|
|
898
|
+
});
|
|
872
899
|
Object.defineProperty(exports, "i18nInstance", {
|
|
873
900
|
enumerable: true,
|
|
874
901
|
get: function get() {
|
|
@@ -1193,22 +1220,58 @@ Object.defineProperty(exports, "BannerCard", {
|
|
|
1193
1220
|
return _BannerCard.BannerCard;
|
|
1194
1221
|
}
|
|
1195
1222
|
});
|
|
1196
|
-
Object.defineProperty(exports, "
|
|
1223
|
+
Object.defineProperty(exports, "VerticalNavigation", {
|
|
1224
|
+
enumerable: true,
|
|
1225
|
+
get: function get() {
|
|
1226
|
+
return _MyNdla.VerticalNavigation;
|
|
1227
|
+
}
|
|
1228
|
+
});
|
|
1229
|
+
Object.defineProperty(exports, "Folder", {
|
|
1197
1230
|
enumerable: true,
|
|
1198
1231
|
get: function get() {
|
|
1199
|
-
return _MyNdla.
|
|
1232
|
+
return _MyNdla.Folder;
|
|
1200
1233
|
}
|
|
1201
1234
|
});
|
|
1202
|
-
Object.defineProperty(exports, "
|
|
1235
|
+
Object.defineProperty(exports, "FolderInput", {
|
|
1203
1236
|
enumerable: true,
|
|
1204
1237
|
get: function get() {
|
|
1205
|
-
return _MyNdla.
|
|
1238
|
+
return _MyNdla.FolderInput;
|
|
1206
1239
|
}
|
|
1207
1240
|
});
|
|
1208
|
-
Object.defineProperty(exports, "
|
|
1241
|
+
Object.defineProperty(exports, "ListResource", {
|
|
1209
1242
|
enumerable: true,
|
|
1210
1243
|
get: function get() {
|
|
1211
|
-
return
|
|
1244
|
+
return _Resource.ListResource;
|
|
1245
|
+
}
|
|
1246
|
+
});
|
|
1247
|
+
Object.defineProperty(exports, "BlockResource", {
|
|
1248
|
+
enumerable: true,
|
|
1249
|
+
get: function get() {
|
|
1250
|
+
return _Resource.BlockResource;
|
|
1251
|
+
}
|
|
1252
|
+
});
|
|
1253
|
+
Object.defineProperty(exports, "TagSelector", {
|
|
1254
|
+
enumerable: true,
|
|
1255
|
+
get: function get() {
|
|
1256
|
+
return _TagSelector.TagSelector;
|
|
1257
|
+
}
|
|
1258
|
+
});
|
|
1259
|
+
Object.defineProperty(exports, "SnackBar", {
|
|
1260
|
+
enumerable: true,
|
|
1261
|
+
get: function get() {
|
|
1262
|
+
return _SnackBar.SnackBar;
|
|
1263
|
+
}
|
|
1264
|
+
});
|
|
1265
|
+
Object.defineProperty(exports, "InfoBlock", {
|
|
1266
|
+
enumerable: true,
|
|
1267
|
+
get: function get() {
|
|
1268
|
+
return _InfoBlock.InfoBlock;
|
|
1269
|
+
}
|
|
1270
|
+
});
|
|
1271
|
+
Object.defineProperty(exports, "TreeStructure", {
|
|
1272
|
+
enumerable: true,
|
|
1273
|
+
get: function get() {
|
|
1274
|
+
return _TreeStructure.TreeStructure;
|
|
1212
1275
|
}
|
|
1213
1276
|
});
|
|
1214
1277
|
|
|
@@ -1285,7 +1348,7 @@ var _MastheadSearchModal = _interopRequireDefault(require("./Masthead/MastheadSe
|
|
|
1285
1348
|
|
|
1286
1349
|
var _MastheadAuthModal = _interopRequireDefault(require("./Masthead/MastheadAuthModal"));
|
|
1287
1350
|
|
|
1288
|
-
var _User =
|
|
1351
|
+
var _User = _interopRequireWildcard(require("./User"));
|
|
1289
1352
|
|
|
1290
1353
|
var _CreatedBy = _interopRequireDefault(require("./CreatedBy"));
|
|
1291
1354
|
|
|
@@ -1355,6 +1418,16 @@ var _BannerCard = require("./BannerCard");
|
|
|
1355
1418
|
|
|
1356
1419
|
var _MyNdla = require("./MyNdla");
|
|
1357
1420
|
|
|
1421
|
+
var _Resource = require("./Resource");
|
|
1422
|
+
|
|
1423
|
+
var _TagSelector = require("./TagSelector");
|
|
1424
|
+
|
|
1425
|
+
var _SnackBar = require("./SnackBar");
|
|
1426
|
+
|
|
1427
|
+
var _InfoBlock = require("./InfoBlock");
|
|
1428
|
+
|
|
1429
|
+
var _TreeStructure = require("./TreeStructure");
|
|
1430
|
+
|
|
1358
1431
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
1359
1432
|
|
|
1360
1433
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
|
@@ -33,6 +33,15 @@ declare const messages: {
|
|
|
33
33
|
resource: {
|
|
34
34
|
accessDenied: string;
|
|
35
35
|
};
|
|
36
|
+
primarySchool: string;
|
|
37
|
+
name: string;
|
|
38
|
+
mail: string;
|
|
39
|
+
username: string;
|
|
40
|
+
groupTypes: {
|
|
41
|
+
basic: string;
|
|
42
|
+
teaching: string;
|
|
43
|
+
other: string;
|
|
44
|
+
};
|
|
36
45
|
};
|
|
37
46
|
checkOutNewFeature: string;
|
|
38
47
|
slateBlockMenu: {
|
|
@@ -45,14 +54,59 @@ declare const messages: {
|
|
|
45
54
|
};
|
|
46
55
|
myNdla: {
|
|
47
56
|
resources: string;
|
|
57
|
+
resources_plural: string;
|
|
48
58
|
folders: string;
|
|
59
|
+
folders_plural: string;
|
|
49
60
|
folder: string;
|
|
50
61
|
myFolders: string;
|
|
51
62
|
myTags: string;
|
|
52
63
|
newFolder: string;
|
|
64
|
+
newFolderUnder: string;
|
|
53
65
|
myAccount: string;
|
|
54
66
|
favourites: string;
|
|
55
67
|
help: string;
|
|
68
|
+
more: string;
|
|
69
|
+
listView: string;
|
|
70
|
+
detailView: string;
|
|
71
|
+
shortView: string;
|
|
72
|
+
myPage: {
|
|
73
|
+
myPage: string;
|
|
74
|
+
logout: string;
|
|
75
|
+
deleteAccount: string;
|
|
76
|
+
welcome: string;
|
|
77
|
+
read: {
|
|
78
|
+
our: string;
|
|
79
|
+
ours: string;
|
|
80
|
+
};
|
|
81
|
+
privacy: string;
|
|
82
|
+
questions: {
|
|
83
|
+
question: string;
|
|
84
|
+
ask: string;
|
|
85
|
+
};
|
|
86
|
+
wishToDelete: string;
|
|
87
|
+
terms: string;
|
|
88
|
+
feide: string;
|
|
89
|
+
newFavourite: string;
|
|
90
|
+
resource: {
|
|
91
|
+
addToMyNdla: string;
|
|
92
|
+
addedToMyNdla: string;
|
|
93
|
+
};
|
|
94
|
+
storageInfo: {
|
|
95
|
+
title: string;
|
|
96
|
+
text: string;
|
|
97
|
+
};
|
|
98
|
+
folderInfo: {
|
|
99
|
+
title: string;
|
|
100
|
+
text: string;
|
|
101
|
+
};
|
|
102
|
+
tagInfo: {
|
|
103
|
+
title: string;
|
|
104
|
+
text: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
snackbar: {
|
|
109
|
+
close: string;
|
|
56
110
|
};
|
|
57
111
|
labels: {
|
|
58
112
|
category: string;
|
|
@@ -69,6 +123,19 @@ declare const messages: {
|
|
|
69
123
|
contact: string;
|
|
70
124
|
help: string;
|
|
71
125
|
};
|
|
126
|
+
treeStructure: {
|
|
127
|
+
createFolder: string;
|
|
128
|
+
newFolder: {
|
|
129
|
+
placeholder: string;
|
|
130
|
+
defaultName: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
tagSelector: {
|
|
134
|
+
placeholder: string;
|
|
135
|
+
removeTag: string;
|
|
136
|
+
hideAllTags: string;
|
|
137
|
+
showAllTags: string;
|
|
138
|
+
};
|
|
72
139
|
htmlTitles: {
|
|
73
140
|
titleTemplate: string;
|
|
74
141
|
welcomePage: string;
|
|
@@ -28,6 +28,19 @@ exports.contentTypes = contentTypes;
|
|
|
28
28
|
var titleTemplate = ' - NDLA';
|
|
29
29
|
|
|
30
30
|
var messages = _objectSpread(_objectSpread({
|
|
31
|
+
treeStructure: {
|
|
32
|
+
createFolder: 'Create folder',
|
|
33
|
+
newFolder: {
|
|
34
|
+
placeholder: 'Add foldername',
|
|
35
|
+
defaultName: 'New folder'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
tagSelector: {
|
|
39
|
+
placeholder: 'Add to tag',
|
|
40
|
+
removeTag: 'Remove tag {{name}}',
|
|
41
|
+
hideAllTags: 'Hide all tags',
|
|
42
|
+
showAllTags: 'Show all tags'
|
|
43
|
+
},
|
|
31
44
|
htmlTitles: {
|
|
32
45
|
titleTemplate: titleTemplate,
|
|
33
46
|
welcomePage: "Frontpage".concat(titleTemplate),
|
|
@@ -906,6 +919,15 @@ var messages = _objectSpread(_objectSpread({
|
|
|
906
919
|
},
|
|
907
920
|
resource: {
|
|
908
921
|
accessDenied: 'We are sorry, but this resource is only available to teachers who are logged in with Feide.'
|
|
922
|
+
},
|
|
923
|
+
primarySchool: 'Primary School',
|
|
924
|
+
name: 'Name',
|
|
925
|
+
mail: 'E-mail',
|
|
926
|
+
username: 'Username',
|
|
927
|
+
groupTypes: {
|
|
928
|
+
basic: 'Basic group',
|
|
929
|
+
teaching: 'Teaching group',
|
|
930
|
+
other: 'Other groups'
|
|
909
931
|
}
|
|
910
932
|
},
|
|
911
933
|
checkOutNewFeature: 'New feature',
|
|
@@ -918,15 +940,60 @@ var messages = _objectSpread(_objectSpread({
|
|
|
918
940
|
close: 'Close fact box'
|
|
919
941
|
},
|
|
920
942
|
myNdla: {
|
|
921
|
-
resources: '
|
|
922
|
-
|
|
923
|
-
|
|
943
|
+
resources: '{{count}} Resource',
|
|
944
|
+
resources_plural: '{{count}} Resources',
|
|
945
|
+
folders: '{{count}} Folder',
|
|
946
|
+
folders_plural: '{{count}} Folders',
|
|
947
|
+
folder: 'Folder',
|
|
924
948
|
myFolders: 'My folders',
|
|
925
949
|
myTags: 'My tags',
|
|
926
950
|
newFolder: 'New folder',
|
|
951
|
+
newFolderUnder: 'Create new folder under {{folderName}}',
|
|
927
952
|
myAccount: 'My account',
|
|
928
953
|
favourites: 'Favourites',
|
|
929
|
-
help: 'Help'
|
|
954
|
+
help: 'Help',
|
|
955
|
+
more: 'More options',
|
|
956
|
+
listView: 'List view',
|
|
957
|
+
detailView: 'Detailed listview',
|
|
958
|
+
shortView: 'Short view',
|
|
959
|
+
myPage: {
|
|
960
|
+
myPage: 'My page',
|
|
961
|
+
logout: 'Log out of My NDLA',
|
|
962
|
+
deleteAccount: 'Delete My NDLA',
|
|
963
|
+
welcome: 'Welcome to my NDLA! You can now save your favourite resources from NDLA and organise them in folders with tags',
|
|
964
|
+
read: {
|
|
965
|
+
our: 'Read our',
|
|
966
|
+
ours: 'Read our'
|
|
967
|
+
},
|
|
968
|
+
privacy: 'privacy statement',
|
|
969
|
+
questions: {
|
|
970
|
+
question: 'Any questions?',
|
|
971
|
+
ask: 'Ask us in the chat'
|
|
972
|
+
},
|
|
973
|
+
wishToDelete: 'Do you wish to delete your account?',
|
|
974
|
+
terms: 'terms of use',
|
|
975
|
+
feide: 'We have retrieved this information from Feide',
|
|
976
|
+
newFavourite: 'Recently favourited',
|
|
977
|
+
resource: {
|
|
978
|
+
addToMyNdla: 'Add to My NDLA',
|
|
979
|
+
addedToMyNdla: 'Added to My NDLA'
|
|
980
|
+
},
|
|
981
|
+
storageInfo: {
|
|
982
|
+
title: 'How to save your favourite resources from NDLA',
|
|
983
|
+
text: 'When you wish to save a resource, you can do so by clicking the heart on the top right corner of the page. You will then get an option to store the resource in a folder'
|
|
984
|
+
},
|
|
985
|
+
folderInfo: {
|
|
986
|
+
title: 'How to organise your favourite resources in folders',
|
|
987
|
+
text: 'You can get to the folder overview by clicking on my folders on the menu to the left. Here you can create new folders and subfolder. You can also create a new folder in the dialogue window that is activated when you click on the heart in a resource'
|
|
988
|
+
},
|
|
989
|
+
tagInfo: {
|
|
990
|
+
title: 'How to tag your favourite resources',
|
|
991
|
+
text: 'When you save a resource, you will have the option to tag it with a keyword. This tag can be used to find the resource across folders. By selecting my tags on the menu to the left, you will see all the tags your have used. You can also see which resources are tagget with which keyword.'
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
snackbar: {
|
|
996
|
+
close: 'Close notification'
|
|
930
997
|
},
|
|
931
998
|
labels: {
|
|
932
999
|
category: 'Category',
|
|
@@ -33,6 +33,15 @@ declare const messages: {
|
|
|
33
33
|
resource: {
|
|
34
34
|
accessDenied: string;
|
|
35
35
|
};
|
|
36
|
+
primarySchool: string;
|
|
37
|
+
name: string;
|
|
38
|
+
mail: string;
|
|
39
|
+
username: string;
|
|
40
|
+
groupTypes: {
|
|
41
|
+
basic: string;
|
|
42
|
+
teaching: string;
|
|
43
|
+
other: string;
|
|
44
|
+
};
|
|
36
45
|
};
|
|
37
46
|
checkOutNewFeature: string;
|
|
38
47
|
slateBlockMenu: {
|
|
@@ -45,14 +54,59 @@ declare const messages: {
|
|
|
45
54
|
};
|
|
46
55
|
myNdla: {
|
|
47
56
|
resources: string;
|
|
57
|
+
resources_plural: string;
|
|
48
58
|
folders: string;
|
|
59
|
+
folders_plural: string;
|
|
49
60
|
folder: string;
|
|
50
61
|
myFolders: string;
|
|
51
62
|
myTags: string;
|
|
52
63
|
newFolder: string;
|
|
64
|
+
newFolderUnder: string;
|
|
53
65
|
myAccount: string;
|
|
54
66
|
favourites: string;
|
|
55
67
|
help: string;
|
|
68
|
+
more: string;
|
|
69
|
+
listView: string;
|
|
70
|
+
detailView: string;
|
|
71
|
+
shortView: string;
|
|
72
|
+
myPage: {
|
|
73
|
+
myPage: string;
|
|
74
|
+
deleteAccount: string;
|
|
75
|
+
logout: string;
|
|
76
|
+
welcome: string;
|
|
77
|
+
read: {
|
|
78
|
+
our: string;
|
|
79
|
+
ours: string;
|
|
80
|
+
};
|
|
81
|
+
privacy: string;
|
|
82
|
+
questions: {
|
|
83
|
+
question: string;
|
|
84
|
+
ask: string;
|
|
85
|
+
};
|
|
86
|
+
wishToDelete: string;
|
|
87
|
+
terms: string;
|
|
88
|
+
newFavourite: string;
|
|
89
|
+
feide: string;
|
|
90
|
+
resource: {
|
|
91
|
+
addToMyNdla: string;
|
|
92
|
+
addedToMyNdla: string;
|
|
93
|
+
};
|
|
94
|
+
storageInfo: {
|
|
95
|
+
title: string;
|
|
96
|
+
text: string;
|
|
97
|
+
};
|
|
98
|
+
folderInfo: {
|
|
99
|
+
title: string;
|
|
100
|
+
text: string;
|
|
101
|
+
};
|
|
102
|
+
tagInfo: {
|
|
103
|
+
title: string;
|
|
104
|
+
text: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
snackbar: {
|
|
109
|
+
close: string;
|
|
56
110
|
};
|
|
57
111
|
labels: {
|
|
58
112
|
category: string;
|
|
@@ -69,6 +123,19 @@ declare const messages: {
|
|
|
69
123
|
contact: string;
|
|
70
124
|
help: string;
|
|
71
125
|
};
|
|
126
|
+
treeStructure: {
|
|
127
|
+
createFolder: string;
|
|
128
|
+
newFolder: {
|
|
129
|
+
placeholder: string;
|
|
130
|
+
defaultName: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
tagSelector: {
|
|
134
|
+
placeholder: string;
|
|
135
|
+
removeTag: string;
|
|
136
|
+
hideAllTags: string;
|
|
137
|
+
showAllTags: string;
|
|
138
|
+
};
|
|
72
139
|
htmlTitles: {
|
|
73
140
|
titleTemplate: string;
|
|
74
141
|
welcomePage: string;
|
|
@@ -28,6 +28,19 @@ exports.contentTypes = contentTypes;
|
|
|
28
28
|
var titleTemplate = ' - NDLA';
|
|
29
29
|
|
|
30
30
|
var messages = _objectSpread(_objectSpread({
|
|
31
|
+
treeStructure: {
|
|
32
|
+
createFolder: 'Lag mappe',
|
|
33
|
+
newFolder: {
|
|
34
|
+
placeholder: 'Skriv navn på mappe',
|
|
35
|
+
defaultName: 'Ny mappe'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
tagSelector: {
|
|
39
|
+
placeholder: 'Tilknytt tag',
|
|
40
|
+
removeTag: 'Ta vekk tilknytning til {{name}}',
|
|
41
|
+
hideAllTags: 'Skjul alle tagger',
|
|
42
|
+
showAllTags: 'Vis alle tagger'
|
|
43
|
+
},
|
|
31
44
|
htmlTitles: {
|
|
32
45
|
titleTemplate: titleTemplate,
|
|
33
46
|
welcomePage: "Forsiden".concat(titleTemplate),
|
|
@@ -906,6 +919,15 @@ var messages = _objectSpread(_objectSpread({
|
|
|
906
919
|
},
|
|
907
920
|
resource: {
|
|
908
921
|
accessDenied: 'Vi beklager, men denne ressursen er bare for lærere innlogget med Feide.'
|
|
922
|
+
},
|
|
923
|
+
primarySchool: 'Hovedskole',
|
|
924
|
+
name: 'Navn',
|
|
925
|
+
mail: 'E-post',
|
|
926
|
+
username: 'Brukernavn',
|
|
927
|
+
groupTypes: {
|
|
928
|
+
basic: 'Basisgruppe',
|
|
929
|
+
teaching: 'Undervisningsgruppe',
|
|
930
|
+
other: 'Andre grupper'
|
|
909
931
|
}
|
|
910
932
|
},
|
|
911
933
|
checkOutNewFeature: 'Sjekk ut ny funksjonalitet',
|
|
@@ -918,15 +940,60 @@ var messages = _objectSpread(_objectSpread({
|
|
|
918
940
|
close: 'Lukk faktaboks'
|
|
919
941
|
},
|
|
920
942
|
myNdla: {
|
|
921
|
-
resources: '
|
|
922
|
-
|
|
943
|
+
resources: '{{count}} ressurs',
|
|
944
|
+
resources_plural: '{{count}} ressurser',
|
|
945
|
+
folders: '{{count}} mappe',
|
|
946
|
+
folders_plural: '{{count}} mapper',
|
|
923
947
|
folder: 'Mappe',
|
|
924
948
|
myFolders: 'Mine mapper',
|
|
925
949
|
myTags: 'Mine tags',
|
|
926
950
|
newFolder: 'Ny mappe',
|
|
951
|
+
newFolderUnder: 'Lag ny mappe under {{folderName}}',
|
|
927
952
|
myAccount: 'Min konto',
|
|
928
953
|
favourites: 'Favoritter',
|
|
929
|
-
help: 'Hjelp'
|
|
954
|
+
help: 'Hjelp',
|
|
955
|
+
more: 'Flere valg',
|
|
956
|
+
listView: 'Listevisning',
|
|
957
|
+
detailView: 'Detaljrik listevisning',
|
|
958
|
+
shortView: 'Kort visning',
|
|
959
|
+
myPage: {
|
|
960
|
+
myPage: 'Min side',
|
|
961
|
+
deleteAccount: 'Slett Min NDLA',
|
|
962
|
+
logout: 'Logg ut av Min NDLA',
|
|
963
|
+
welcome: 'Velkommen til Min NDLA! Nå kan du lagre dine favorittressurser fra NDLA og organisere dem slik du ønsker i mapper og med tags.',
|
|
964
|
+
read: {
|
|
965
|
+
our: 'Les våre',
|
|
966
|
+
ours: 'Les vår'
|
|
967
|
+
},
|
|
968
|
+
privacy: 'personvernerklæring her',
|
|
969
|
+
questions: {
|
|
970
|
+
question: 'Lurer du på noe?',
|
|
971
|
+
ask: 'Spør oss i chatten'
|
|
972
|
+
},
|
|
973
|
+
wishToDelete: 'Ønsker du ikke ha brukerprofil hos oss lengre?',
|
|
974
|
+
terms: 'vilkår for bruk',
|
|
975
|
+
newFavourite: 'Nylig lagt til',
|
|
976
|
+
feide: 'Dette henter vi om deg fra Feide',
|
|
977
|
+
resource: {
|
|
978
|
+
addToMyNdla: 'Legg i Min NDLA',
|
|
979
|
+
addedToMyNdla: 'Lagt i Min NDLA'
|
|
980
|
+
},
|
|
981
|
+
storageInfo: {
|
|
982
|
+
title: 'Slik lagrer du dine favorittressurser fra NDLA',
|
|
983
|
+
text: 'Når du ønsker å lagre en ressurs, kan du gjøre dette ved å klikke på hjertet øverst til høyre på siden. Du vil da få mulighet til å lagre ressursen i en mappe.'
|
|
984
|
+
},
|
|
985
|
+
folderInfo: {
|
|
986
|
+
title: 'Slik organiserer du dine favorittressurser i mapper',
|
|
987
|
+
text: 'Du kommer til mappeoversikten din ved å klikke på mine mapper i menyen til venstre. Her kan du opprette nye mapper og undermapper. Du kan også opprette en ny mappe i dialogvinduet som kommer når du klikker på et hjerte i en ressurs.'
|
|
988
|
+
},
|
|
989
|
+
tagInfo: {
|
|
990
|
+
title: 'Slik tagger du dine favorittressurser',
|
|
991
|
+
text: 'Når du lagrer en ressurs får du mulighet til å tagge ressursen med et nøkkelord. Du kan senere bruke taggene til å finne tilbake til ressurser på tvers av mapper. Ved å velge mine tagger i venstremenyen får du oversikt over alle taggene du har brukt og du kan også her se hvilke ressurser som du har tagget med det bestemte nøkkelordet.'
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
snackbar: {
|
|
996
|
+
close: 'Lukk melding'
|
|
930
997
|
},
|
|
931
998
|
labels: {
|
|
932
999
|
category: 'Kategori',
|
|
@@ -33,6 +33,15 @@ declare const messages: {
|
|
|
33
33
|
resource: {
|
|
34
34
|
accessDenied: string;
|
|
35
35
|
};
|
|
36
|
+
primarySchool: string;
|
|
37
|
+
name: string;
|
|
38
|
+
mail: string;
|
|
39
|
+
username: string;
|
|
40
|
+
groupTypes: {
|
|
41
|
+
basic: string;
|
|
42
|
+
teaching: string;
|
|
43
|
+
other: string;
|
|
44
|
+
};
|
|
36
45
|
};
|
|
37
46
|
checkOutNewFeature: string;
|
|
38
47
|
slateBlockMenu: {
|
|
@@ -45,14 +54,59 @@ declare const messages: {
|
|
|
45
54
|
};
|
|
46
55
|
myNdla: {
|
|
47
56
|
resources: string;
|
|
57
|
+
resources_plural: string;
|
|
48
58
|
folders: string;
|
|
59
|
+
folders_plural: string;
|
|
49
60
|
folder: string;
|
|
50
61
|
myFolders: string;
|
|
51
62
|
myTags: string;
|
|
52
63
|
newFolder: string;
|
|
64
|
+
newFolderUnder: string;
|
|
53
65
|
myAccount: string;
|
|
54
66
|
favourites: string;
|
|
55
67
|
help: string;
|
|
68
|
+
more: string;
|
|
69
|
+
listView: string;
|
|
70
|
+
detailView: string;
|
|
71
|
+
shortView: string;
|
|
72
|
+
myPage: {
|
|
73
|
+
myPage: string;
|
|
74
|
+
deleteAccount: string;
|
|
75
|
+
logout: string;
|
|
76
|
+
welcome: string;
|
|
77
|
+
read: {
|
|
78
|
+
our: string;
|
|
79
|
+
ours: string;
|
|
80
|
+
};
|
|
81
|
+
privacy: string;
|
|
82
|
+
questions: {
|
|
83
|
+
question: string;
|
|
84
|
+
ask: string;
|
|
85
|
+
};
|
|
86
|
+
wishToDelete: string;
|
|
87
|
+
terms: string;
|
|
88
|
+
newFavourite: string;
|
|
89
|
+
feide: string;
|
|
90
|
+
resource: {
|
|
91
|
+
addToMyNdla: string;
|
|
92
|
+
addedToMyNdla: string;
|
|
93
|
+
};
|
|
94
|
+
storageInfo: {
|
|
95
|
+
title: string;
|
|
96
|
+
text: string;
|
|
97
|
+
};
|
|
98
|
+
folderInfo: {
|
|
99
|
+
title: string;
|
|
100
|
+
text: string;
|
|
101
|
+
};
|
|
102
|
+
tagInfo: {
|
|
103
|
+
title: string;
|
|
104
|
+
text: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
snackbar: {
|
|
109
|
+
close: string;
|
|
56
110
|
};
|
|
57
111
|
labels: {
|
|
58
112
|
category: string;
|
|
@@ -69,6 +123,19 @@ declare const messages: {
|
|
|
69
123
|
contact: string;
|
|
70
124
|
help: string;
|
|
71
125
|
};
|
|
126
|
+
treeStructure: {
|
|
127
|
+
createFolder: string;
|
|
128
|
+
newFolder: {
|
|
129
|
+
placeholder: string;
|
|
130
|
+
defaultName: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
tagSelector: {
|
|
134
|
+
placeholder: string;
|
|
135
|
+
removeTag: string;
|
|
136
|
+
hideAllTags: string;
|
|
137
|
+
showAllTags: string;
|
|
138
|
+
};
|
|
72
139
|
htmlTitles: {
|
|
73
140
|
titleTemplate: string;
|
|
74
141
|
welcomePage: string;
|