@hypermedia-components/core 0.1.1 → 0.1.2

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/index.d.ts CHANGED
@@ -29,6 +29,7 @@ export { installDatagrid } from "./datagrid.js";
29
29
  export { installValidation } from "./validation.js";
30
30
  export { installThemeToggle } from "./theme-toggle.js";
31
31
  export { installFieldErrors } from "./field-errors.js";
32
+ export { installCsrfHeader } from "./csrf-header.js";
32
33
  export { installChart } from "./chart.js";
33
- export const version: "0.1.1";
34
+ export const version: "0.1.2";
34
35
  export { setMessages, resetMessages, getMessages, hasMessage, DEFAULT_MESSAGES } from "./i18n.js";
package/dist/index.js CHANGED
@@ -35,6 +35,7 @@ export { installDatagrid } from './datagrid.js';
35
35
  export { installValidation } from './validation.js';
36
36
  export { installThemeToggle } from './theme-toggle.js';
37
37
  export { installFieldErrors } from './field-errors.js';
38
+ export { installCsrfHeader } from './csrf-header.js';
38
39
 
39
40
  // installChart is opt-in (not part of the auto-init `behaviors` entry): it
40
41
  // needs Observable Plot, an optional peer dependency you load yourself.
@@ -44,4 +45,4 @@ export { installChart } from './chart.js';
44
45
  // ARIA labels). Call setMessages() once at startup, before installing.
45
46
  export { setMessages, resetMessages, getMessages, hasMessage, DEFAULT_MESSAGES } from './i18n.js';
46
47
 
47
- export const version = '0.1.1';
48
+ export const version = '0.1.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypermedia-components/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Semantic components and recipes for hypermedia applications.",
5
5
  "license": "MIT",
6
6
  "repository": {