@things-factory/layout-ui 4.1.28 → 5.0.0-alpha.3
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/client/components/floating-overlay.js +1 -1
- package/client/components/resize-splitter.js +2 -2
- package/client/layouts/aside-bar.js +1 -1
- package/client/layouts/footer-bar.js +1 -1
- package/client/layouts/header-bar.js +1 -1
- package/client/layouts/nav-bar.js +1 -1
- package/client/layouts/snack-bar.js +1 -1
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit
|
|
1
|
+
import { LitElement, html, css } from 'lit'
|
|
2
2
|
|
|
3
3
|
export class ResizeSplitter extends LitElement {
|
|
4
4
|
static get dragImage() {
|
|
@@ -62,7 +62,7 @@ export class ResizeSplitter extends LitElement {
|
|
|
62
62
|
// TODO onDrag 이벤트가 계속 발생하므로 처리하는 성능 저하됨. 그래서 throttling 하도록 함
|
|
63
63
|
_throttled(delay, fn) {
|
|
64
64
|
let lastCall = 0
|
|
65
|
-
return function(...args) {
|
|
65
|
+
return function (...args) {
|
|
66
66
|
const now = new Date().getTime()
|
|
67
67
|
if (now - lastCall < delay) {
|
|
68
68
|
return
|
|
@@ -2,7 +2,7 @@ import '@material/mwc-button'
|
|
|
2
2
|
import '@material/mwc-icon'
|
|
3
3
|
import { CLOSE_SNACKBAR } from '@things-factory/layout-base'
|
|
4
4
|
import { store } from '@things-factory/shell'
|
|
5
|
-
import { css, html, LitElement } from 'lit
|
|
5
|
+
import { css, html, LitElement } from 'lit'
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
7
|
|
|
8
8
|
class SnackBar extends connect(store)(LitElement) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/layout-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.3",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@operato/help": "^0.3
|
|
28
|
-
"@things-factory/layout-base": "^
|
|
27
|
+
"@operato/help": "^0.4.3",
|
|
28
|
+
"@things-factory/layout-base": "^5.0.0-alpha.3"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "0584a36ba889ff0b426cc87c0d9c8f14ffa2f677"
|
|
31
31
|
}
|