@ndla/ui 56.0.43-alpha.0 → 56.0.44-alpha.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/lib/index.d.ts +1 -0
- package/package.json +2 -2
- package/src/index.ts +2 -0
package/lib/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export { type ContentTypeBlockQuoteVariant } from "./ContentTypeBlockQuote/Conte
|
|
|
37
37
|
export { ContentTypeFramedContent } from "./ContentTypeFramedContent/ContentTypeFramedContent";
|
|
38
38
|
export { type ContentTypeFramedContentVariant } from "./ContentTypeFramedContent/ContentTypeFramedContent";
|
|
39
39
|
export { default as CopyParagraphButton } from "./CopyParagraphButton";
|
|
40
|
+
export type { TagSelectorControlProps, TagSelectorInputProps, TagSelectorRootProps } from "./TagSelector/TagSelector";
|
|
40
41
|
export { TagSelectorRoot, TagSelectorLabel, TagSelectorItemInput, TagSelectorTrigger, TagSelectorControl, TagSelectorClearTrigger, TagSelectorInputBase, TagSelectorInput, } from "./TagSelector/TagSelector";
|
|
41
42
|
export { BlogPostV2 } from "./BlogPost";
|
|
42
43
|
export { KeyFigure } from "./KeyFigure";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ndla/ui",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.44-alpha.0",
|
|
4
4
|
"description": "UI component library for NDLA",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "783a77ac565381846c0654a3bd2ccde659a4cef4"
|
|
62
62
|
}
|
package/src/index.ts
CHANGED
|
@@ -118,6 +118,8 @@ export { type ContentTypeFramedContentVariant } from "./ContentTypeFramedContent
|
|
|
118
118
|
|
|
119
119
|
export { default as CopyParagraphButton } from "./CopyParagraphButton";
|
|
120
120
|
|
|
121
|
+
export type { TagSelectorControlProps, TagSelectorInputProps, TagSelectorRootProps } from "./TagSelector/TagSelector";
|
|
122
|
+
|
|
121
123
|
export {
|
|
122
124
|
TagSelectorRoot,
|
|
123
125
|
TagSelectorLabel,
|