@toptal/picasso-query-builder 6.0.22 → 7.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +17 -18
- package/src/story/index.jsx +7 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@toptal/picasso-query-builder",
|
3
|
-
"version": "
|
3
|
+
"version": "7.0.1",
|
4
4
|
"description": "Picasso query builder",
|
5
5
|
"author": "Toptal",
|
6
6
|
"homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso-query-builder#readme",
|
@@ -24,27 +24,27 @@
|
|
24
24
|
"peerDependencies": {
|
25
25
|
"@toptal/picasso-provider": "*",
|
26
26
|
"react": ">=16.12.0 < 19.0.0",
|
27
|
-
"
|
27
|
+
"@toptal/picasso-tailwind": ">=2.7",
|
28
28
|
"react-dom": ">=16.12.0 < 19.0.0",
|
29
29
|
"typescript": "~4.7.0"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
32
|
"@material-ui/core": "4.12.4",
|
33
33
|
"@react-querybuilder/dnd": "6.5.4",
|
34
|
-
"@toptal/picasso-button": "
|
35
|
-
"@toptal/picasso-select": "
|
36
|
-
"@toptal/picasso-typography": "
|
37
|
-
"@toptal/picasso-container": "
|
38
|
-
"@toptal/picasso-radio": "
|
39
|
-
"@toptal/picasso-icons": "1.
|
40
|
-
"@toptal/picasso-tooltip": "1.1.
|
41
|
-
"@toptal/picasso-tagselector": "
|
42
|
-
"@toptal/picasso-input": "
|
43
|
-
"@toptal/picasso-list": "
|
44
|
-
"@toptal/picasso-loader": "
|
45
|
-
"@toptal/picasso-number-input": "
|
46
|
-
"@toptal/picasso-prompt-modal": "
|
47
|
-
"@toptal/picasso-notification": "
|
34
|
+
"@toptal/picasso-button": "3.0.1",
|
35
|
+
"@toptal/picasso-select": "2.0.1",
|
36
|
+
"@toptal/picasso-typography": "3.0.0",
|
37
|
+
"@toptal/picasso-container": "2.0.0",
|
38
|
+
"@toptal/picasso-radio": "3.0.1",
|
39
|
+
"@toptal/picasso-icons": "1.6.0",
|
40
|
+
"@toptal/picasso-tooltip": "1.1.4",
|
41
|
+
"@toptal/picasso-tagselector": "2.0.1",
|
42
|
+
"@toptal/picasso-input": "3.0.1",
|
43
|
+
"@toptal/picasso-list": "3.0.1",
|
44
|
+
"@toptal/picasso-loader": "2.0.0",
|
45
|
+
"@toptal/picasso-number-input": "2.0.1",
|
46
|
+
"@toptal/picasso-prompt-modal": "2.0.1",
|
47
|
+
"@toptal/picasso-notification": "3.0.1",
|
48
48
|
"@toptal/picasso-utils": "1.0.3",
|
49
49
|
"classnames": "^2.5.1",
|
50
50
|
"react-dnd": "^16.0.1",
|
@@ -55,8 +55,7 @@
|
|
55
55
|
"devDependencies": {
|
56
56
|
"@testing-library/react-hooks": "^8.0.1",
|
57
57
|
"@toptal/picasso-test-utils": "1.1.1",
|
58
|
-
"@types/classnames": "^2.3.1"
|
59
|
-
"storybook-readme": "^5.0.9"
|
58
|
+
"@types/classnames": "^2.3.1"
|
60
59
|
},
|
61
60
|
"sideEffects": false,
|
62
61
|
"exports": {
|
package/src/story/index.jsx
CHANGED
@@ -1,10 +1,13 @@
|
|
1
|
-
import { doc } from 'storybook-readme'
|
2
|
-
|
3
1
|
import PicassoBook from '~/.storybook/components/PicassoBook'
|
2
|
+
import { createMarkdownPage } from '~/.storybook/components/Markdown'
|
4
3
|
import README from '../../README.md'
|
5
4
|
import CHANGELOG from '../../CHANGELOG.md'
|
6
5
|
|
7
6
|
const section = PicassoBook.section('Picasso Query Builder')
|
8
7
|
|
9
|
-
section.createDocPage('README',
|
10
|
-
|
8
|
+
section.createDocPage('README', createMarkdownPage(README), {
|
9
|
+
alwaysOnTop: true,
|
10
|
+
})
|
11
|
+
section.createDocPage('CHANGELOG', createMarkdownPage(CHANGELOG), {
|
12
|
+
alwaysOnTop: true,
|
13
|
+
})
|