@k34a/blog 0.0.4 → 0.0.5

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/dist/main.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ArticleService, ArticleDetailsForListing } from './services/articles';
2
2
  import { articleQuerySchema } from './services/search-params';
3
- import { default as FilterSearchSortArticles } from './components/filter-search-sort';
4
- export { ArticleService, articleQuerySchema, FilterSearchSortArticles };
5
- export type { ArticleDetailsForListing };
3
+ import { default as FilterSearchSortArticles, Props as FilterSearchSortArticlesProps } from './components/filter-search-sort';
4
+ import { default as Article } from './components/articles';
5
+ export { ArticleService, articleQuerySchema, FilterSearchSortArticles, Article, };
6
+ export type { ArticleDetailsForListing, FilterSearchSortArticlesProps };
package/dist/main.js CHANGED
@@ -1,8 +1,10 @@
1
1
  import { ArticleService as t } from "./services/articles.js";
2
- import { articleQuerySchema as c } from "./services/search-params.js";
3
- import { default as i } from "./components/filter-search-sort.js";
2
+ import { articleQuerySchema as a } from "./services/search-params.js";
3
+ import { default as l } from "./components/filter-search-sort.js";
4
+ import { default as i } from "./components/articles/index.js";
4
5
  export {
6
+ i as Article,
5
7
  t as ArticleService,
6
- i as FilterSearchSortArticles,
7
- c as articleQuerySchema
8
+ l as FilterSearchSortArticles,
9
+ a as articleQuerySchema
8
10
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@k34a/blog",
3
3
  "description": "Create and share articles with your audience.",
4
4
  "private": false,
5
- "version": "0.0.4",
5
+ "version": "0.0.5",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": {
@@ -59,5 +59,9 @@
59
59
  },
60
60
  "sideEffects": [
61
61
  "**/*.css"
62
- ]
62
+ ],
63
+ "dependencies": {
64
+ "dom-serializer": "^2.0.0",
65
+ "htmlparser2": "^10.0.0"
66
+ }
63
67
  }