Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3 #157

Merged
merged 52 commits into from
Sep 18, 2023
Merged

V3 #157

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
3051dc5
chore: Remove outdated infrastructure
3y3 Sep 5, 2023
4353418
chore: Update outdated infrastructure
3y3 Sep 5, 2023
4b1c8c9
chore: Basic type and lint fixes
3y3 Sep 5, 2023
31c0ee5
chore: Add internal buildable styles
3y3 Sep 5, 2023
f2d15aa
feat!: Update react and uikit deps
3y3 Sep 5, 2023
2da870b
feat(deps)!: Migrate to uikit@5
3y3 Aug 25, 2023
c362b25
feat!: Replace icons with equal from uikit
3y3 Sep 5, 2023
fac39ab
feat!: Rebuild project with esbuild
3y3 Sep 5, 2023
a05549f
feat!: Remove direct dependency on @doc-tools/transform
3y3 Sep 5, 2023
7dcf5d7
feat: Add `configure` util
3y3 Sep 7, 2023
778caa4
feat!: Big v3 changes
3y3 Sep 11, 2023
dc124ed
chore: Update readme
3y3 Sep 11, 2023
c39f875
feat!: Removed public assets export
3y3 Sep 13, 2023
c9859fb
chore: Fix lint
3y3 Sep 13, 2023
3e007ef
fix: Fix i18n build for old webpack
3y3 Sep 13, 2023
aa0ba62
feat: Add common theme
3y3 Sep 14, 2023
f297194
feat!: Rename Vcs enum
3y3 Sep 14, 2023
d6ab2f3
Add reconstructed storybook
3y3 Sep 14, 2023
d33f098
fix: Small style changes
3y3 Sep 14, 2023
3ca2c21
chore: Fix lint again
3y3 Sep 14, 2023
e8e3482
fix: Fix package json exports and scripts
3y3 Sep 14, 2023
a670fe2
chore: Update package.json
3y3 Sep 14, 2023
667353e
chore: Fix linter config
3y3 Sep 14, 2023
b664526
chore: Fix lint
3y3 Sep 14, 2023
dfe694e
fix: Fix contributors popup paddings
3y3 Sep 15, 2023
5319ee5
fix: Replace link icon with equal from gravity-ui
3y3 Sep 15, 2023
ead1d61
chore: remove useless comments
3y3 Sep 15, 2023
78b2f78
feat: use button as toc item
Sep 12, 2023
91730eb
feat: use button for hidden avatars
Sep 12, 2023
e3a2e06
feat: add label and expanded state for control buttons
Sep 12, 2023
c2cd403
feat: fix typings, add labels for paginator buttons
Sep 12, 2023
b11e67b
feat: scrollspy sets aria-current=location
Sep 12, 2023
c4011ce
fix: use correct aria-current fpr the paginator
Sep 12, 2023
c0eb5d0
fix: use translation correctly in paginator
Sep 12, 2023
0843d41
fix: correct import
Sep 12, 2023
a3e1ddb
fix: Fix paginator icon
3y3 Sep 14, 2023
aee61e3
chore: Fix lint
3y3 Sep 14, 2023
10fb32f
fix: avatar styles
Sep 15, 2023
3610b21
feat: more focus styles for the links
Sep 15, 2023
423825e
feat: added focus styles for toc
Sep 15, 2023
020a42c
feat: added focus styles for avatars and mini-toc
Sep 15, 2023
f2ffab1
fix: return eslint
Sep 15, 2023
96872fb
fix: fixing bugs
Sep 15, 2023
b515980
feat: added focus styles for search item
Sep 15, 2023
30a7ca5
feat: settings with focus trap
Sep 15, 2023
52b70cb
feat: language control
Sep 15, 2023
76b493f
feat: settings and language controls with focus trap
Sep 15, 2023
6ba14a8
fix: margin styles
Sep 15, 2023
2c1a6c0
feat: prev next page links with focus styles
Sep 15, 2023
bc94e07
chore: Fix lint
3y3 Sep 17, 2023
2f42dd5
v3.0.0
3y3 Sep 18, 2023
5bed433
chore: Update uikit
3y3 Sep 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# System
.idea
.vscode
.history
.storybook

# Libs
node_modules

/build
/storybook-static
# Build
build
4 changes: 0 additions & 4 deletions .eslintrc

This file was deleted.

35 changes: 35 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = {
extends: [
'@gravity-ui/eslint-config',
process.env.npm_command && '@gravity-ui/eslint-config/prettier',
].filter(Boolean),
root: true,
rules: {
'no-param-reassign': 'off',
'import/order': [
'error',
{
alphabetize: {
order: 'asc',
},
'newlines-between': 'always',
groups: [['builtin', 'external'], 'internal', 'parent', 'sibling', 'index'],
warnOnUnassignedImports: true,
pathGroups: [
{
pattern: '*.s?css$',
group: 'index',
},
],
},
],
},
overrides: [
{
files: ['!src/**/*', '!demo/**/*'],
env: {
node: true,
},
},
],
};
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
18
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"@gravity-ui/prettier-config"
1 change: 0 additions & 1 deletion .prettierrc.js

This file was deleted.

3 changes: 0 additions & 3 deletions .storybook/addons.js

This file was deleted.

42 changes: 0 additions & 42 deletions .storybook/config.js

This file was deleted.

6 changes: 0 additions & 6 deletions .storybook/webpack-levels/index.js

This file was deleted.

108 changes: 0 additions & 108 deletions .storybook/webpack-levels/lib/ConfigBuilder.js

This file was deleted.

17 changes: 0 additions & 17 deletions .storybook/webpack-levels/lib/DevServer.js

This file was deleted.

49 changes: 0 additions & 49 deletions .storybook/webpack-levels/lib/Entry.js

This file was deleted.

18 changes: 0 additions & 18 deletions .storybook/webpack-levels/lib/Externals.js

This file was deleted.

28 changes: 0 additions & 28 deletions .storybook/webpack-levels/lib/Module.js

This file was deleted.

17 changes: 0 additions & 17 deletions .storybook/webpack-levels/lib/Node.js

This file was deleted.

24 changes: 0 additions & 24 deletions .storybook/webpack-levels/lib/Optimization.js

This file was deleted.

Loading