diff --git a/CHANGELOG.md b/CHANGELOG.md index 10e9ebe..01329bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +0.28.3 +------ +- chore: export inputs + 0.28.2 ------ - chore: export guillotina types diff --git a/package.json b/package.json index 67987f7..244798f 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.28.2", + "version": "0.28.3", "repository": { "type": "git", "url": "git@github.com:guillotinaweb/guillotina_react.git" diff --git a/src/guillo-gmi/components/index.ts b/src/guillo-gmi/components/index.ts index cd64220..d613e56 100644 --- a/src/guillo-gmi/components/index.ts +++ b/src/guillo-gmi/components/index.ts @@ -8,9 +8,11 @@ export * from './input/form' export * from './input/input' export * from './input/password' export * from './input/select' +export * from './input/select_vocabulary' export * from './input/upload' export * from './input/textarea' export * from './input/search_input' +export * from './input/search_input_list' export * from './input/input_list' export * from './input/dropdown' diff --git a/src/guillo-gmi/components/input/index.tsx b/src/guillo-gmi/components/input/index.tsx index 18efd28..dac7b3c 100644 --- a/src/guillo-gmi/components/input/index.tsx +++ b/src/guillo-gmi/components/input/index.tsx @@ -10,4 +10,7 @@ export * from './password' export * from './select' export * from './select_vocabulary' export * from './search_input' +export * from './search_input_list' export * from './input_list' +export * from './textarea' +export * from './upload'