@ndla/ui 22.2.0 → 24.0.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/Animation/DisplayOnPageYOffset.js +1 -1
- package/es/Article/Article.js +3 -3
- package/es/Article/ArticleAuthorContent.js +2 -4
- package/es/Article/ArticleByline.js +5 -6
- package/es/AuthorInfo/AuthorInfo.js +29 -16
- package/es/Breadcrumb/ActionBreadcrumb.js +3 -3
- package/es/ContentCard/ContentCard.js +66 -25
- package/es/Figure/FigureOpenDialogButton.js +1 -2
- package/es/FileList/File.js +34 -8
- package/es/FileList/FileList.js +29 -3
- package/es/Filter/FilterListPhone.js +1 -1
- package/es/Frontpage/FrontpageProgramMenu.js +10 -11
- package/es/InfoBox/InfoBox.js +10 -3
- package/es/InfoWidget/InfoWidget.js +67 -22
- package/es/NDLAFilm/AllMoviesAlphabetically.js +12 -12
- package/es/Portrait/Portrait.js +19 -13
- package/es/ResourceBox/ResourceBox.js +7 -35
- package/es/ResourceGroup/ResourceItem.js +13 -13
- package/es/ResourceGroup/ResourceList.js +3 -3
- package/es/Search/ActiveFilterContent.js +4 -14
- package/es/Search/ActiveFilters.js +20 -31
- package/es/Search/SearchField.js +31 -52
- package/es/Search/SearchResult.js +113 -136
- package/es/Search/ToggleSearchButton.js +34 -43
- package/es/Search/index.js +2 -8
- package/es/SearchTypeResult/ActiveFilters.js +18 -18
- package/es/SearchTypeResult/SearchFieldHeader.js +5 -6
- package/es/TopicMenu/TopicMenu.js +1 -1
- package/es/all.css +1 -1
- package/es/index-javascript.js +0 -1
- package/es/index.js +2 -1
- package/es/locale/messages-en.js +2 -0
- package/es/locale/messages-nb.js +2 -0
- package/es/locale/messages-nn.js +2 -0
- package/es/locale/messages-se.js +2 -0
- package/es/locale/messages-sma.js +2 -0
- package/lib/Animation/DisplayOnPageYOffset.js +2 -2
- package/lib/Article/Article.js +4 -4
- package/lib/Article/ArticleAuthorContent.js +9 -4
- package/lib/Article/ArticleByline.js +4 -4
- package/lib/AuthorInfo/AuthorInfo.d.ts +1 -11
- package/lib/AuthorInfo/AuthorInfo.js +36 -20
- package/lib/Breadcrumb/ActionBreadcrumb.js +3 -3
- package/lib/ContentCard/ContentCard.d.ts +1 -15
- package/lib/ContentCard/ContentCard.js +60 -28
- package/lib/FileList/File.js +36 -12
- package/lib/FileList/FileList.js +28 -5
- package/lib/Filter/FilterListPhone.js +2 -2
- package/lib/Frontpage/FrontpageProgramMenu.js +9 -9
- package/lib/InfoBox/InfoBox.js +11 -4
- package/lib/InfoWidget/InfoWidget.js +61 -25
- package/lib/NDLAFilm/AllMoviesAlphabetically.js +13 -13
- package/lib/Portrait/Portrait.js +19 -14
- package/lib/ResourceBox/ResourceBox.d.ts +1 -4
- package/lib/ResourceBox/ResourceBox.js +15 -35
- package/lib/ResourceGroup/ResourceItem.js +12 -14
- package/lib/ResourceGroup/ResourceList.js +2 -4
- package/lib/Search/ActiveFilterContent.d.ts +13 -0
- package/lib/Search/ActiveFilterContent.js +4 -15
- package/lib/Search/ActiveFilters.d.ts +13 -0
- package/lib/Search/ActiveFilters.js +31 -45
- package/lib/Search/SearchField.d.ts +19 -0
- package/lib/Search/SearchField.js +32 -56
- package/lib/Search/SearchResult.d.ts +36 -0
- package/lib/Search/SearchResult.js +116 -159
- package/lib/Search/ToggleSearchButton.d.ts +16 -0
- package/lib/Search/ToggleSearchButton.js +36 -46
- package/lib/Search/index.d.ts +12 -0
- package/lib/Search/index.js +0 -54
- package/lib/SearchTypeResult/ActiveFilters.js +37 -39
- package/lib/SearchTypeResult/SearchFieldHeader.js +6 -6
- package/lib/SearchTypeResult/SearchTypeHeader.d.ts +1 -1
- package/lib/TopicMenu/TopicMenu.js +2 -2
- package/lib/all.css +1 -1
- package/lib/index-javascript.js +0 -74
- package/lib/index.d.ts +1 -0
- package/lib/index.js +38 -1
- package/lib/locale/messages-en.d.ts +2 -0
- package/lib/locale/messages-en.js +2 -0
- package/lib/locale/messages-nb.d.ts +2 -0
- package/lib/locale/messages-nb.js +2 -0
- package/lib/locale/messages-nn.d.ts +2 -0
- package/lib/locale/messages-nn.js +2 -0
- package/lib/locale/messages-se.d.ts +2 -0
- package/lib/locale/messages-se.js +2 -0
- package/lib/locale/messages-sma.d.ts +2 -0
- package/lib/locale/messages-sma.js +2 -0
- package/package.json +17 -16
- package/src/Animation/DisplayOnPageYOffset.tsx +1 -1
- package/src/Article/Article.tsx +1 -1
- package/src/Article/ArticleAuthorContent.tsx +1 -1
- package/src/Article/ArticleByline.tsx +1 -2
- package/src/AuthorInfo/AuthorInfo.tsx +53 -19
- package/src/Breadcrumb/ActionBreadcrumb.tsx +1 -2
- package/src/ContentCard/ContentCard.tsx +127 -35
- package/src/Figure/FigureOpenDialogButton.tsx +1 -2
- package/src/FileList/File.tsx +47 -17
- package/src/FileList/FileList.tsx +37 -8
- package/src/Filter/FilterListPhone.jsx +1 -1
- package/src/Frontpage/FrontpageProgramMenu.tsx +1 -2
- package/src/InfoBox/InfoBox.tsx +24 -4
- package/src/InfoWidget/InfoWidget.tsx +83 -34
- package/src/NDLAFilm/AllMoviesAlphabetically.tsx +1 -1
- package/src/Portrait/Portrait.tsx +25 -10
- package/src/ResourceBox/ResourceBox.tsx +1 -20
- package/src/ResourceGroup/ResourceItem.tsx +1 -1
- package/src/ResourceGroup/ResourceList.tsx +1 -1
- package/src/Search/{ActiveFilterContent.jsx → ActiveFilterContent.tsx} +11 -12
- package/src/Search/{ActiveFilters.jsx → ActiveFilters.tsx} +21 -18
- package/src/Search/{SearchField.jsx → SearchField.tsx} +58 -68
- package/src/Search/SearchResult.tsx +360 -0
- package/src/Search/ToggleSearchButton.tsx +73 -0
- package/src/Search/component.search.scss +0 -4
- package/src/Search/index.ts +16 -0
- package/src/SearchTypeResult/ActiveFilters.tsx +1 -1
- package/src/SearchTypeResult/SearchFieldHeader.tsx +1 -2
- package/src/TopicMenu/TopicMenu.jsx +1 -1
- package/src/all.scss +0 -1
- package/src/index-javascript.js +0 -15
- package/src/index.ts +2 -0
- package/src/locale/messages-en.ts +2 -0
- package/src/locale/messages-nb.ts +2 -0
- package/src/locale/messages-nn.ts +2 -0
- package/src/locale/messages-se.ts +2 -0
- package/src/locale/messages-sma.ts +2 -0
- package/src/main.scss +0 -7
- package/es/BackgroundImage/BackgroundImage.js +0 -27
- package/es/BackgroundImage/index.js +0 -2
- package/es/Search/SearchFilter.js +0 -72
- package/es/Search/SearchFilterList.js +0 -115
- package/es/Search/SearchOverlay.js +0 -39
- package/es/Search/SearchPage.js +0 -178
- package/es/Search/SearchPopoverFilter.js +0 -152
- package/es/Search/SearchResultAuthor.js +0 -51
- package/lib/BackgroundImage/BackgroundImage.d.ts +0 -12
- package/lib/BackgroundImage/BackgroundImage.js +0 -40
- package/lib/BackgroundImage/index.d.ts +0 -2
- package/lib/BackgroundImage/index.js +0 -13
- package/lib/Search/SearchFilter.js +0 -88
- package/lib/Search/SearchFilterList.js +0 -137
- package/lib/Search/SearchOverlay.js +0 -62
- package/lib/Search/SearchPage.js +0 -207
- package/lib/Search/SearchPopoverFilter.js +0 -172
- package/lib/Search/SearchResultAuthor.js +0 -60
- package/src/AuthorInfo/component.author-info.scss +0 -54
- package/src/BackgroundImage/BackgroundImage.tsx +0 -32
- package/src/BackgroundImage/component.background-image.scss +0 -52
- package/src/BackgroundImage/index.ts +0 -3
- package/src/ContentCard/component.content-card.scss +0 -109
- package/src/FileList/component.file-list.scss +0 -102
- package/src/InfoBox/component.info-box.scss +0 -21
- package/src/InfoWidget/component.info-widget.scss +0 -52
- package/src/Portrait/component.portrait.scss +0 -29
- package/src/Search/SearchFilter.jsx +0 -82
- package/src/Search/SearchFilterList.jsx +0 -110
- package/src/Search/SearchOverlay.jsx +0 -38
- package/src/Search/SearchPage.jsx +0 -178
- package/src/Search/SearchPopoverFilter.jsx +0 -109
- package/src/Search/SearchResult.jsx +0 -239
- package/src/Search/SearchResultAuthor.jsx +0 -54
- package/src/Search/ToggleSearchButton.jsx +0 -64
- package/src/Search/component.search-filter.scss +0 -67
- package/src/Search/component.search-overlay.scss +0 -103
- package/src/Search/component.search-page.scss +0 -125
- package/src/Search/component.search-result-author.scss +0 -65
- package/src/Search/index.js +0 -34
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
.c-search-filter {
|
|
2
|
-
@include mq(mobileWide) {
|
|
3
|
-
+ .c-search-filter {
|
|
4
|
-
margin-top: $spacing--medium;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
width: 100%;
|
|
9
|
-
text-align: left;
|
|
10
|
-
|
|
11
|
-
&--narrow-screen-only {
|
|
12
|
-
@include mq(desktop) {
|
|
13
|
-
display: none;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@include mq(desktop) {
|
|
18
|
-
padding: $spacing;
|
|
19
|
-
background: $white;
|
|
20
|
-
border: none;
|
|
21
|
-
margin-bottom: $spacing--small;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&--context-filter {
|
|
25
|
-
background: $brand-color--light;
|
|
26
|
-
padding: $spacing--medium;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&:first-child {
|
|
30
|
-
.c-filter__list {
|
|
31
|
-
border-top: 0;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@include mq($until: mobileWide) {
|
|
36
|
-
margin-bottom: $spacing;
|
|
37
|
-
|
|
38
|
-
.c-search-filter {
|
|
39
|
-
label {
|
|
40
|
-
padding-left: $spacing--large;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.c-filter__item {
|
|
45
|
-
width: 100%;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@include mq($from: mobileWide, $until: desktop) {
|
|
50
|
-
.c-search-filter {
|
|
51
|
-
+ .c-filter__item {
|
|
52
|
-
margin-top: $spacing;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.c-filter__item-wrapper {
|
|
56
|
-
padding-left: $spacing;
|
|
57
|
-
padding-top: $spacing--small;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@include mq(568px) {
|
|
63
|
-
.c-search-filter .c-filter__item {
|
|
64
|
-
width: 235px - $spacing;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
$overlay-height: 150px;
|
|
2
|
-
|
|
3
|
-
@keyframes searchAnimation {
|
|
4
|
-
0% {
|
|
5
|
-
display: none;
|
|
6
|
-
opacity: 0;
|
|
7
|
-
}
|
|
8
|
-
1% {
|
|
9
|
-
opacity: 0.3;
|
|
10
|
-
display: block;
|
|
11
|
-
top: 13px;
|
|
12
|
-
height: 58px;
|
|
13
|
-
left: calc(100% - 302px);
|
|
14
|
-
right: 302px;
|
|
15
|
-
}
|
|
16
|
-
100% {
|
|
17
|
-
opacity: 1;
|
|
18
|
-
height: $overlay-height;
|
|
19
|
-
top: 0;
|
|
20
|
-
left: 0;
|
|
21
|
-
right: 0;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@keyframes closeButton {
|
|
26
|
-
0% {
|
|
27
|
-
opacity: 0;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
70% {
|
|
31
|
-
opacity: 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
100% {
|
|
35
|
-
opacity: 1;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.c-search-overlay {
|
|
40
|
-
z-index: 1000;
|
|
41
|
-
height: $overlay-height;
|
|
42
|
-
background: $brand-grey--lighter;
|
|
43
|
-
position: fixed;
|
|
44
|
-
top: 0;
|
|
45
|
-
left: 0;
|
|
46
|
-
right: 0;
|
|
47
|
-
|
|
48
|
-
display: flex;
|
|
49
|
-
justify-content: space-between;
|
|
50
|
-
align-items: center;
|
|
51
|
-
|
|
52
|
-
&-enter {
|
|
53
|
-
opacity: 0.3;
|
|
54
|
-
top: 13px;
|
|
55
|
-
height: 58px;
|
|
56
|
-
left: calc(100% - 302px);
|
|
57
|
-
right: 302px;
|
|
58
|
-
|
|
59
|
-
transition: all 0.3s ease;
|
|
60
|
-
|
|
61
|
-
&-active {
|
|
62
|
-
opacity: 1;
|
|
63
|
-
height: $overlay-height;
|
|
64
|
-
top: 0;
|
|
65
|
-
left: 0;
|
|
66
|
-
right: 0;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
&-exit {
|
|
71
|
-
transition: all 0.3s ease;
|
|
72
|
-
|
|
73
|
-
&-active {
|
|
74
|
-
@extend .c-search-overlay-enter;
|
|
75
|
-
opacity: 0;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
&__container {
|
|
80
|
-
padding: 0;
|
|
81
|
-
position: relative;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
&__close-button {
|
|
85
|
-
position: absolute;
|
|
86
|
-
top: $spacing--small;
|
|
87
|
-
right: -($spacing--large + 36px);
|
|
88
|
-
width: 36px;
|
|
89
|
-
height: 36px;
|
|
90
|
-
color: $brand-color--dark;
|
|
91
|
-
background: none;
|
|
92
|
-
border: 0;
|
|
93
|
-
padding: 0;
|
|
94
|
-
cursor: pointer;
|
|
95
|
-
|
|
96
|
-
animation: closeButton 0.7s;
|
|
97
|
-
|
|
98
|
-
.c-icon {
|
|
99
|
-
width: 100%;
|
|
100
|
-
height: 100%;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
$filter-width: 250px;
|
|
2
|
-
$search-field-wrapper-margin: $filter-width;
|
|
3
|
-
.c-search-page {
|
|
4
|
-
&__close-button {
|
|
5
|
-
display: inline-flex;
|
|
6
|
-
align-items: center;
|
|
7
|
-
box-shadow: none;
|
|
8
|
-
position: absolute;
|
|
9
|
-
right: $spacing--small;
|
|
10
|
-
top: $spacing--small;
|
|
11
|
-
@include font-size(16px, 20px);
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
|
|
14
|
-
@include mq(desktop) {
|
|
15
|
-
display: none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
span {
|
|
19
|
-
box-shadow: $link;
|
|
20
|
-
color: $brand-color;
|
|
21
|
-
margin-right: $spacing--small;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.c-icon {
|
|
25
|
-
color: $brand-color--dark;
|
|
26
|
-
width: 24px;
|
|
27
|
-
height: 24px;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
&__toggle-filter {
|
|
32
|
-
@include mq(desktop) {
|
|
33
|
-
display: none;
|
|
34
|
-
}
|
|
35
|
-
margin-bottom: $spacing;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
&__filter-result-wrapper {
|
|
39
|
-
@include mq(desktop) {
|
|
40
|
-
display: flex;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&__search-field-wrapper {
|
|
45
|
-
padding: $spacing 0 $spacing 0;
|
|
46
|
-
@include mq(desktop) {
|
|
47
|
-
padding: $spacing--large 0 $spacing--large $spacing--small;
|
|
48
|
-
margin-left: $search-field-wrapper-margin;
|
|
49
|
-
}
|
|
50
|
-
.c-search-field__input-wrapper {
|
|
51
|
-
padding: 0;
|
|
52
|
-
margin: 0;
|
|
53
|
-
}
|
|
54
|
-
@include mq($until: desktop) {
|
|
55
|
-
.c-active-filters {
|
|
56
|
-
display: none;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
&__active-filters {
|
|
62
|
-
margin-bottom: $spacing;
|
|
63
|
-
|
|
64
|
-
@include mq(desktop) {
|
|
65
|
-
display: none;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&__filter-wrapper {
|
|
70
|
-
display: none;
|
|
71
|
-
|
|
72
|
-
@include mq($until: desktop) {
|
|
73
|
-
position: fixed;
|
|
74
|
-
top: 0;
|
|
75
|
-
left: 0;
|
|
76
|
-
bottom: 0;
|
|
77
|
-
right: 0;
|
|
78
|
-
overflow: auto;
|
|
79
|
-
background: $white;
|
|
80
|
-
margin-right: 0;
|
|
81
|
-
z-index: 100;
|
|
82
|
-
padding-top: $spacing * 3;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
flex-basis: $filter-width;
|
|
86
|
-
flex-shrink: 0;
|
|
87
|
-
margin-right: $spacing--small;
|
|
88
|
-
text-align: center;
|
|
89
|
-
|
|
90
|
-
&--expanded {
|
|
91
|
-
display: block;
|
|
92
|
-
position: fixed;
|
|
93
|
-
padding-bottom: $spacing--large;
|
|
94
|
-
animation: slideIn 0.5s;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
@include mq(desktop) {
|
|
98
|
-
display: block;
|
|
99
|
-
width: $filter-width;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
&__filter-heading {
|
|
104
|
-
text-align: left;
|
|
105
|
-
text-transform: uppercase;
|
|
106
|
-
display: none;
|
|
107
|
-
margin: 0;
|
|
108
|
-
font-weight: 600;
|
|
109
|
-
@include font-size(18px, 32px);
|
|
110
|
-
|
|
111
|
-
@include mq(desktop) {
|
|
112
|
-
display: block;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
&__filters {
|
|
117
|
-
& > button {
|
|
118
|
-
margin-top: $spacing;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
&__result-wrapper {
|
|
123
|
-
flex-grow: 1;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
.c-search-result-author {
|
|
2
|
-
background: $brand-grey--lighter;
|
|
3
|
-
padding: $spacing;
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: flex-start;
|
|
6
|
-
justify-content: space-between;
|
|
7
|
-
margin-bottom: $spacing;
|
|
8
|
-
&--desktop {
|
|
9
|
-
@include mq($until: desktop) {
|
|
10
|
-
display: none;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
&--tablet {
|
|
14
|
-
@include mq(desktop) {
|
|
15
|
-
display: none;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
@include mq($until: desktop) {
|
|
19
|
-
flex-direction: row-reverse;
|
|
20
|
-
background: none;
|
|
21
|
-
padding: 0 0 $spacing 0;
|
|
22
|
-
justify-content: flex-end;
|
|
23
|
-
align-items: center;
|
|
24
|
-
&__portrait-image {
|
|
25
|
-
margin-right: $spacing--medium;
|
|
26
|
-
}
|
|
27
|
-
&__url {
|
|
28
|
-
display: none;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
&__heading {
|
|
32
|
-
margin: 0 0 $spacing--small;
|
|
33
|
-
@include font-size(24px, 32px);
|
|
34
|
-
font-weight: $font-weight-bold;
|
|
35
|
-
@include mq($until: desktop) {
|
|
36
|
-
display: none;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
p {
|
|
40
|
-
margin: 0;
|
|
41
|
-
}
|
|
42
|
-
&__links {
|
|
43
|
-
display: flex;
|
|
44
|
-
&:empty {
|
|
45
|
-
display: none;
|
|
46
|
-
}
|
|
47
|
-
a:not(:last-child) {
|
|
48
|
-
margin-right: $spacing--large;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
@include mq($until: tablet) {
|
|
52
|
-
p, a {
|
|
53
|
-
@include font-size(16px, 24px);
|
|
54
|
-
}
|
|
55
|
-
&__portrait-image {
|
|
56
|
-
margin-right: $spacing;
|
|
57
|
-
width: 4rem;
|
|
58
|
-
height: 4rem;
|
|
59
|
-
span {
|
|
60
|
-
width: 4rem;
|
|
61
|
-
height: 4rem;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
package/src/Search/index.js
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2017-present, NDLA.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the GPLv3 license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
import SearchField from './SearchField';
|
|
10
|
-
import SearchOverlay from './SearchOverlay';
|
|
11
|
-
import SearchPage from './SearchPage';
|
|
12
|
-
|
|
13
|
-
import { SearchResult, SearchResultList, SearchResultItem } from './SearchResult';
|
|
14
|
-
|
|
15
|
-
import SearchFilter from './SearchFilter';
|
|
16
|
-
import SearchFilterList from './SearchFilterList';
|
|
17
|
-
import SearchPopoverFilter from './SearchPopoverFilter';
|
|
18
|
-
import SearchResultAuthor from './SearchResultAuthor';
|
|
19
|
-
import ActiveFilters from './ActiveFilters';
|
|
20
|
-
export { default as ToggleSearchButton } from './ToggleSearchButton';
|
|
21
|
-
|
|
22
|
-
export {
|
|
23
|
-
SearchField,
|
|
24
|
-
SearchOverlay,
|
|
25
|
-
SearchPage,
|
|
26
|
-
SearchResult,
|
|
27
|
-
SearchResultItem,
|
|
28
|
-
SearchResultList,
|
|
29
|
-
SearchFilter,
|
|
30
|
-
SearchFilterList,
|
|
31
|
-
SearchPopoverFilter,
|
|
32
|
-
SearchResultAuthor,
|
|
33
|
-
ActiveFilters,
|
|
34
|
-
};
|