@webiny/ui 0.0.0-unstable.5e7233243f → 0.0.0-unstable.615a930a68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Accordion/AccordionItem.js +1 -1
- package/Accordion/AccordionItem.js.map +1 -1
- package/Button/Button.js +2 -3
- package/Button/Button.js.map +1 -1
- package/CodeEditor/CodeEditor.d.ts +2 -0
- package/CodeEditor/CodeEditor.js +4 -0
- package/CodeEditor/CodeEditor.js.map +1 -1
- package/DataTable/DataTable.d.ts +20 -0
- package/DataTable/DataTable.js +157 -0
- package/DataTable/DataTable.js.map +1 -0
- package/DataTable/DataTable.stories.d.ts +1 -0
- package/DataTable/DataTable.stories.js +77 -0
- package/DataTable/DataTable.stories.js.map +1 -0
- package/DataTable/README.md +72 -0
- package/DataTable/index.d.ts +1 -0
- package/DataTable/index.js +18 -0
- package/DataTable/index.js.map +1 -0
- package/DataTable/styled.d.ts +1 -0
- package/DataTable/styled.js +18 -0
- package/DataTable/styled.js.map +1 -0
- package/DelayedOnChange/DelayedOnChange.d.ts +40 -0
- package/DelayedOnChange/DelayedOnChange.js +129 -0
- package/DelayedOnChange/DelayedOnChange.js.map +1 -0
- package/DelayedOnChange/index.d.ts +2 -0
- package/DelayedOnChange/index.js +23 -0
- package/DelayedOnChange/index.js.map +1 -0
- package/DelayedOnChange/withDelayedOnChange.d.ts +3 -0
- package/DelayedOnChange/withDelayedOnChange.js +37 -0
- package/DelayedOnChange/withDelayedOnChange.js.map +1 -0
- package/Image/Image.js +3 -1
- package/Image/Image.js.map +1 -1
- package/List/DataList/Loader.d.ts +2 -2
- package/List/DataList/Loader.js +35 -49
- package/List/DataList/Loader.js.map +1 -1
- package/Menu/Menu.js +5 -1
- package/Menu/Menu.js.map +1 -1
- package/Skeleton/README.md +21 -0
- package/Skeleton/Skeleton.d.ts +4 -0
- package/Skeleton/Skeleton.js +25 -0
- package/Skeleton/Skeleton.js.map +1 -0
- package/Skeleton/Skeleton.stories.d.ts +1 -0
- package/Skeleton/Skeleton.stories.js +28 -0
- package/Skeleton/Skeleton.stories.js.map +1 -0
- package/Skeleton/index.d.ts +1 -0
- package/Skeleton/index.js +18 -0
- package/Skeleton/index.js.map +1 -0
- package/package.json +18 -17
- package/styles.scss +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/ui",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.615a930a68",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,13 +14,14 @@
|
|
|
14
14
|
],
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@babel/runtime": "7.
|
|
17
|
+
"@babel/runtime": "7.19.0",
|
|
18
18
|
"@editorjs/editorjs": "2.25.0",
|
|
19
19
|
"@emotion/core": "10.3.1",
|
|
20
20
|
"@emotion/styled": "10.3.0",
|
|
21
21
|
"@rmwc/button": "7.0.3",
|
|
22
22
|
"@rmwc/checkbox": "7.0.3",
|
|
23
23
|
"@rmwc/chip": "7.0.3",
|
|
24
|
+
"@rmwc/data-table": "7.0.3",
|
|
24
25
|
"@rmwc/dialog": "7.0.3",
|
|
25
26
|
"@rmwc/drawer": "7.0.3",
|
|
26
27
|
"@rmwc/elevation": "7.0.3",
|
|
@@ -39,9 +40,10 @@
|
|
|
39
40
|
"@rmwc/textfield": "7.0.3",
|
|
40
41
|
"@rmwc/top-app-bar": "7.0.3",
|
|
41
42
|
"@rmwc/typography": "7.0.3",
|
|
42
|
-
"@svgr/webpack": "6.
|
|
43
|
+
"@svgr/webpack": "6.4.0",
|
|
44
|
+
"@tanstack/react-table": "8.5.22",
|
|
43
45
|
"brace": "0.11.1",
|
|
44
|
-
"classnames": "2.3.
|
|
46
|
+
"classnames": "2.3.2",
|
|
45
47
|
"cropperjs": "1.5.12",
|
|
46
48
|
"dot-prop-immutable": "2.1.1",
|
|
47
49
|
"downshift": "2.2.3",
|
|
@@ -58,33 +60,32 @@
|
|
|
58
60
|
"react-color": "2.19.3",
|
|
59
61
|
"react-columned": "1.1.3",
|
|
60
62
|
"react-custom-scrollbars": "4.2.1",
|
|
61
|
-
"react-loading-skeleton": "
|
|
63
|
+
"react-loading-skeleton": "3.1.0",
|
|
62
64
|
"react-spinner-material": "1.1.4",
|
|
63
65
|
"react-transition-group": "4.4.5",
|
|
64
66
|
"shortid": "2.2.16"
|
|
65
67
|
},
|
|
66
68
|
"devDependencies": {
|
|
67
|
-
"@babel/cli": "^7.
|
|
68
|
-
"@babel/core": "^7.
|
|
69
|
-
"@babel/plugin-proposal-class-properties": "^7.
|
|
70
|
-
"@babel/preset-env": "^7.
|
|
71
|
-
"@babel/preset-typescript": "^7.
|
|
69
|
+
"@babel/cli": "^7.19.3",
|
|
70
|
+
"@babel/core": "^7.19.3",
|
|
71
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
72
|
+
"@babel/preset-env": "^7.19.4",
|
|
73
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
72
74
|
"@storybook/addon-info": "^5.2.8",
|
|
73
75
|
"@storybook/addon-knobs": "^5.0.5",
|
|
74
76
|
"@storybook/addon-links": "^5.0.5",
|
|
75
77
|
"@storybook/react": "^5.2.8",
|
|
76
78
|
"@testing-library/react": "^12.1.2",
|
|
77
|
-
"@types/classnames": "^2.2.7",
|
|
78
79
|
"@types/nprogress": "^0.2.0",
|
|
79
80
|
"@types/rc-tooltip": "^3.7.2",
|
|
80
81
|
"@types/react-custom-scrollbars": "^4.0.10",
|
|
81
82
|
"@types/react-transition-group": "^4.4.4",
|
|
82
83
|
"@types/shortid": "^0.0.29",
|
|
83
|
-
"@webiny/cli": "^0.0.0-unstable.
|
|
84
|
-
"@webiny/form": "^0.0.0-unstable.
|
|
85
|
-
"@webiny/project-utils": "^0.0.0-unstable.
|
|
86
|
-
"@webiny/storybook-utils": "^0.0.0-unstable.
|
|
87
|
-
"@webiny/validation": "^0.0.0-unstable.
|
|
84
|
+
"@webiny/cli": "^0.0.0-unstable.615a930a68",
|
|
85
|
+
"@webiny/form": "^0.0.0-unstable.615a930a68",
|
|
86
|
+
"@webiny/project-utils": "^0.0.0-unstable.615a930a68",
|
|
87
|
+
"@webiny/storybook-utils": "^0.0.0-unstable.615a930a68",
|
|
88
|
+
"@webiny/validation": "^0.0.0-unstable.615a930a68",
|
|
88
89
|
"babel-loader": "^8.0.0-beta.6",
|
|
89
90
|
"babel-plugin-emotion": "^9.2.8",
|
|
90
91
|
"execa": "^5.0.0",
|
|
@@ -130,5 +131,5 @@
|
|
|
130
131
|
]
|
|
131
132
|
}
|
|
132
133
|
},
|
|
133
|
-
"gitHead": "
|
|
134
|
+
"gitHead": "615a930a68d692c832e4f100405eeb3f5a8874af"
|
|
134
135
|
}
|
package/styles.scss
CHANGED
|
@@ -11,9 +11,8 @@ $webiny-theme-light-text-primary-on-background: rgba(0, 0, 0, 0.87);
|
|
|
11
11
|
$webiny-theme-light-text-secondary-on-background: rgba(0, 0, 0, 0.54);
|
|
12
12
|
$webiny-theme-light-text-hint-on-dark: rgba(255, 255, 255, 0.5);
|
|
13
13
|
$webiny-theme-light-caret-down: url("data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.54%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E");
|
|
14
|
-
|
|
15
|
-
// webiny typography
|
|
16
14
|
$webiny-theme-typography-font-family: "Source Sans Pro" !default;
|
|
15
|
+
$webiny-theme-typography-subtitle2-font-weight: 600 !default;
|
|
17
16
|
|
|
18
17
|
$mdc-theme-primary: $webiny-theme-light-primary;
|
|
19
18
|
$mdc-theme-on-primary: $webiny-theme-light-on-primary;
|
|
@@ -29,7 +28,7 @@ $mdc-theme-text-hint-on-dark: $webiny-theme-light-text-hint-on-dark;
|
|
|
29
28
|
$mdc-typography-font-family: $webiny-theme-typography-font-family;
|
|
30
29
|
|
|
31
30
|
@import "material-components-web/material-components-web.scss";
|
|
32
|
-
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700");
|
|
31
|
+
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700|Open+Sans:300,400,600,700|Source+Code+Pro:400,700");
|
|
33
32
|
|
|
34
33
|
/*
|
|
35
34
|
Fix for select box appearance. For some reason browser prefix css attributes are striped away.
|