@ndla/ui 45.0.15 → 45.0.16

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/Embed/index.js CHANGED
@@ -19,4 +19,4 @@ export { default as ConceptEmbed } from './ConceptEmbed';
19
19
  export { ConceptNotionV2 } from './conceptComponents';
20
20
  export { default as ConceptListEmbed } from './ConceptListEmbed';
21
21
  export { default as UnknownEmbed } from './UnknownEmbed';
22
- export { InlineConcept } from './ConceptEmbed';
22
+ export { InlineConcept, BlockConcept } from './ConceptEmbed';
package/es/index.js CHANGED
@@ -10,7 +10,7 @@
10
10
  // Move components to this file when they are migrated to typescript
11
11
 
12
12
  export { default as SectionHeading } from './SectionHeading';
13
- export { ConceptNotionV2, ImageEmbed, AudioEmbed, H5pEmbed, ExternalEmbed, IframeEmbed, FootnoteEmbed, BrightcoveEmbed, ContentLinkEmbed, RelatedContentEmbed, ConceptEmbed, ConceptListEmbed, UnknownEmbed, InlineConcept } from './Embed';
13
+ export { ConceptNotionV2, ImageEmbed, AudioEmbed, H5pEmbed, ExternalEmbed, IframeEmbed, FootnoteEmbed, BrightcoveEmbed, ContentLinkEmbed, RelatedContentEmbed, ConceptEmbed, ConceptListEmbed, UnknownEmbed, InlineConcept, BlockConcept } from './Embed';
14
14
  export { ArticleByline, ArticleFootNotes, ArticleIntroduction, ArticleTitle, ArticleWrapper, ArticleHeaderWrapper, default as Article } from './Article';
15
15
  export { default as Table, TableStyling } from './Table';
16
16
  export { default as ResourcesWrapper, ResourcesTopicTitle } from './ResourcesWrapper';
@@ -18,5 +18,5 @@ export { default as ConceptEmbed } from './ConceptEmbed';
18
18
  export { ConceptNotionV2 } from './conceptComponents';
19
19
  export { default as ConceptListEmbed } from './ConceptListEmbed';
20
20
  export { default as UnknownEmbed } from './UnknownEmbed';
21
- export { InlineConcept } from './ConceptEmbed';
21
+ export { InlineConcept, BlockConcept } from './ConceptEmbed';
22
22
  export type { HeartButtonType } from './types';
@@ -10,6 +10,12 @@ Object.defineProperty(exports, "AudioEmbed", {
10
10
  return _AudioEmbed.default;
11
11
  }
12
12
  });
13
+ Object.defineProperty(exports, "BlockConcept", {
14
+ enumerable: true,
15
+ get: function get() {
16
+ return _ConceptEmbed.BlockConcept;
17
+ }
18
+ });
13
19
  Object.defineProperty(exports, "BrightcoveEmbed", {
14
20
  enumerable: true,
15
21
  get: function get() {
package/lib/index.d.ts CHANGED
@@ -6,7 +6,7 @@
6
6
  *
7
7
  */
8
8
  export { default as SectionHeading } from './SectionHeading';
9
- export { ConceptNotionV2, ImageEmbed, AudioEmbed, H5pEmbed, ExternalEmbed, IframeEmbed, FootnoteEmbed, BrightcoveEmbed, ContentLinkEmbed, RelatedContentEmbed, ConceptEmbed, ConceptListEmbed, UnknownEmbed, InlineConcept, } from './Embed';
9
+ export { ConceptNotionV2, ImageEmbed, AudioEmbed, H5pEmbed, ExternalEmbed, IframeEmbed, FootnoteEmbed, BrightcoveEmbed, ContentLinkEmbed, RelatedContentEmbed, ConceptEmbed, ConceptListEmbed, UnknownEmbed, InlineConcept, BlockConcept, } from './Embed';
10
10
  export { ArticleByline, ArticleFootNotes, ArticleIntroduction, ArticleTitle, ArticleWrapper, ArticleHeaderWrapper, default as Article, } from './Article';
11
11
  export { default as Table, TableStyling } from './Table';
12
12
  export { default as ResourcesWrapper, ResourcesTopicTitle } from './ResourcesWrapper';
package/lib/index.js CHANGED
@@ -106,6 +106,12 @@ Object.defineProperty(exports, "BaseSnack", {
106
106
  return _SnackBar.BaseSnack;
107
107
  }
108
108
  });
109
+ Object.defineProperty(exports, "BlockConcept", {
110
+ enumerable: true,
111
+ get: function get() {
112
+ return _Embed.BlockConcept;
113
+ }
114
+ });
109
115
  Object.defineProperty(exports, "BlockResource", {
110
116
  enumerable: true,
111
117
  get: function get() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ndla/ui",
3
- "version": "45.0.15",
3
+ "version": "45.0.16",
4
4
  "description": "UI component library for NDLA.",
5
5
  "license": "GPL-3.0",
6
6
  "main": "lib/index.js",
@@ -84,5 +84,5 @@
84
84
  "publishConfig": {
85
85
  "access": "public"
86
86
  },
87
- "gitHead": "00d70afe163dcf81cd7154743319ae3fe6f6fdff"
87
+ "gitHead": "7f859ccc955408674bce9b7a8422b076034811b4"
88
88
  }
@@ -19,5 +19,5 @@ export { default as ConceptEmbed } from './ConceptEmbed';
19
19
  export { ConceptNotionV2 } from './conceptComponents';
20
20
  export { default as ConceptListEmbed } from './ConceptListEmbed';
21
21
  export { default as UnknownEmbed } from './UnknownEmbed';
22
- export { InlineConcept } from './ConceptEmbed';
22
+ export { InlineConcept, BlockConcept } from './ConceptEmbed';
23
23
  export type { HeartButtonType } from './types';
package/src/index.ts CHANGED
@@ -25,6 +25,7 @@ export {
25
25
  ConceptListEmbed,
26
26
  UnknownEmbed,
27
27
  InlineConcept,
28
+ BlockConcept,
28
29
  } from './Embed';
29
30
 
30
31
  export {