Skip to content

Commit

Permalink
feat(libraries): add data-source (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
DakEnviy authored Aug 2, 2024
1 parent 6a08d6f commit 49f07e2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 5 deletions.
3 changes: 2 additions & 1 deletion public/locales/en/libraries-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@
"description_stylelint-config": "Stylelint configuration preset for Gravity UI projects.",
"description_babel-preset": "Babel configuration preset for Gravity UI projects.",
"description_browserslist-config": "Browserslist confugiration preset used in our services.",
"description_markdown-editor": "A powerful tool for working with Markdown, which combines WYSIWYG and Markup modes."
"description_markdown-editor": "A powerful tool for working with Markdown, which combines WYSIWYG and Markup modes.",
"description_data-source": "A wrapper around data fetching."
}
3 changes: 2 additions & 1 deletion public/locales/ru/libraries-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@
"description_stylelint-config": "Пресет настройки Stylelint для проектов Gravity UI.",
"description_babel-preset": "Пресет настройки Babel для проектов Gravity UI.",
"description_browserslist-config": "Пресет настройки Browserslist для проектов Gravity UI.",
"description_markdown-editor": "Мощный инструмент для работы с Markdown, который сочетает в себе режимы WYSIWYG и разметки."
"description_markdown-editor": "Мощный инструмент для работы с Markdown, который сочетает в себе режимы WYSIWYG и разметки.",
"description_data-source": "Библиотека-обертка над загрузкой данных."
}
27 changes: 24 additions & 3 deletions src/libs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,18 @@ export const libs = [
title: 'Markdown editor',
primary: false,
landing: false,
tags: ['markdown', 'prosemirror', 'wysiwyg', 'codemirror', 'yfm', 'diplodoc', 'gfm', 'react'],
tags: [
'markdown',
'prosemirror',
'wysiwyg',
'codemirror',
'yfm',
'diplodoc',
'gfm',
'react',
],
storybookUrl: 'https://preview.gravity-ui.com/md-editor/',
readmeUrl:
'https://raw.githubusercontent.com/gravity-ui/markdown-editor/main/README.md',
readmeUrl: 'https://raw.githubusercontent.com/gravity-ui/markdown-editor/main/README.md',
changelogUrl:
'https://raw.githubusercontent.com/gravity-ui/markdown-editor/main/CHANGELOG.md',
mainBranch: 'main',
Expand Down Expand Up @@ -350,6 +358,19 @@ export const libs = [
changelogUrl: 'https://raw.githubusercontent.com/gravity-ui/i18n/main/CHANGELOG.md',
mainBranch: 'main',
},
{
id: 'data-source',
githubId: 'gravity-ui/data-source',
npmId: '@gravity-ui/data-source',
title: 'Data Source',
primary: false,
landing: false,
tags: ['ui'],
storybookUrl: '',
readmeUrl: 'https://raw.githubusercontent.com/gravity-ui/data-source/main/README.md',
changelogUrl: 'https://raw.githubusercontent.com/gravity-ui/data-source/main/CHANGELOG.md',
mainBranch: 'main',
},
{
id: 'eslint-config',
githubId: 'gravity-ui/eslint-config',
Expand Down

0 comments on commit 49f07e2

Please sign in to comment.