2020-01-09 22:11:00 +00:00
|
|
|
import mustache from 'mustache';
|
2020-02-28 20:06:33 +00:00
|
|
|
import '../resources/skins.vector.styles/SearchBox.less';
|
2021-09-16 18:00:05 +00:00
|
|
|
|
2021-09-13 21:19:58 +00:00
|
|
|
import { searchBoxData, searchBoxDataWithCollapsing, searchBoxTemplate,
|
2021-09-03 19:00:45 +00:00
|
|
|
SEARCH_TEMPLATE_PARTIALS
|
|
|
|
} from './SearchBox.stories.data';
|
2020-01-09 22:11:00 +00:00
|
|
|
|
|
|
|
export default {
|
2020-02-28 22:17:31 +00:00
|
|
|
title: 'SearchBox'
|
2020-01-09 22:11:00 +00:00
|
|
|
};
|
|
|
|
|
2021-09-13 21:19:58 +00:00
|
|
|
export const searchBoxWithoutCollapsing = () => `
|
|
|
|
${mustache.render( searchBoxTemplate, searchBoxData, SEARCH_TEMPLATE_PARTIALS )}
|
2021-07-22 17:27:33 +00:00
|
|
|
`;
|
|
|
|
|
2021-09-13 21:19:58 +00:00
|
|
|
export const searchBoxWithCollapsing = () => `
|
|
|
|
${mustache.render( searchBoxTemplate, searchBoxDataWithCollapsing, SEARCH_TEMPLATE_PARTIALS )}
|
2021-07-22 17:27:33 +00:00
|
|
|
`;
|