@operato/board
Advanced tools
Comparing version 0.2.30 to 0.2.31
@@ -6,2 +6,18 @@ # Change Log | ||
### [0.2.31](https://github.com/hatiolab/operato/compare/v0.2.30...v0.2.31) (2021-12-03) | ||
### :rocket: New Features | ||
* @operato/property-editor added ([77e9429](https://github.com/hatiolab/operato/commit/77e9429dd6bfe974a283ab192245d68407480659)) | ||
### :bug: Bug Fix | ||
* data-grist, board ([1fa8e53](https://github.com/hatiolab/operato/commit/1fa8e53a55e0f0ca65e9e8ce9891f27061f200c7)) | ||
* things-scene version up ([d5007a0](https://github.com/hatiolab/operato/commit/d5007a0c835e7dc9f8d24b491cba88ac90bc1b41)) | ||
* upgrade things-scene ([b539c39](https://github.com/hatiolab/operato/commit/b539c39e70d285481c8083b4540129e44580b158)) | ||
### [0.2.30](https://github.com/hatiolab/operato/compare/v0.2.29...v0.2.30) (2021-12-01) | ||
@@ -8,0 +24,0 @@ |
@@ -776,217 +776,2 @@ { | ||
"kind": "javascript-module", | ||
"path": "src/utils/fullscreen.ts", | ||
"declarations": [ | ||
{ | ||
"kind": "function", | ||
"name": "fullscreen", | ||
"parameters": [ | ||
{ | ||
"name": "element", | ||
"type": { | ||
"text": "HTMLElement" | ||
}, | ||
"description": "대상 엘리먼트" | ||
}, | ||
{ | ||
"name": "afterfull", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
}, | ||
"description": "풀스크린이 된 이후에 호출되는 콜백함수" | ||
}, | ||
{ | ||
"name": "afterfinish", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
}, | ||
"description": "풀스크린이 해제된 이후에 호출되는 콜백함수" | ||
} | ||
], | ||
"description": "엘리먼트를 풀스크린으로 표시되도록 한다." | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "exitfullscreen" | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "togglefullscreen", | ||
"parameters": [ | ||
{ | ||
"name": "element", | ||
"type": { | ||
"text": "HTMLElement" | ||
} | ||
}, | ||
{ | ||
"name": "afterfull", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
} | ||
}, | ||
{ | ||
"name": "afterfinish", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"exports": [ | ||
{ | ||
"kind": "js", | ||
"name": "fullscreen", | ||
"declaration": { | ||
"name": "fullscreen", | ||
"module": "src/utils/fullscreen.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "exitfullscreen", | ||
"declaration": { | ||
"name": "exitfullscreen", | ||
"module": "src/utils/fullscreen.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "togglefullscreen", | ||
"declaration": { | ||
"name": "togglefullscreen", | ||
"module": "src/utils/fullscreen.ts" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"kind": "javascript-module", | ||
"path": "src/utils/os.ts", | ||
"declarations": [ | ||
{ | ||
"kind": "function", | ||
"name": "getOS", | ||
"description": "method to get operating system of running browser", | ||
"return": { | ||
"type": { | ||
"text": "string" | ||
} | ||
} | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "isMobileDevice", | ||
"description": "method to tell if platform of running browser is kind of mobile device", | ||
"return": { | ||
"type": { | ||
"text": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "isIOS", | ||
"description": "method to tell if operating system of running browser is iOS", | ||
"return": { | ||
"type": { | ||
"text": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "isMacOS", | ||
"description": "method to tell if operating system of running browser is MacOS", | ||
"return": { | ||
"type": { | ||
"text": "boolean" | ||
} | ||
} | ||
} | ||
], | ||
"exports": [ | ||
{ | ||
"kind": "js", | ||
"name": "getOS", | ||
"declaration": { | ||
"name": "getOS", | ||
"module": "src/utils/os.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "isMobileDevice", | ||
"declaration": { | ||
"name": "isMobileDevice", | ||
"module": "src/utils/os.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "isIOS", | ||
"declaration": { | ||
"name": "isIOS", | ||
"module": "src/utils/os.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "isMacOS", | ||
"declaration": { | ||
"name": "isMacOS", | ||
"module": "src/utils/os.ts" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"kind": "javascript-module", | ||
"path": "src/utils/swipe-listener.ts", | ||
"declarations": [ | ||
{ | ||
"kind": "function", | ||
"name": "SwipeListener", | ||
"parameters": [ | ||
{ | ||
"name": "element", | ||
"type": { | ||
"text": "DOMElement" | ||
}, | ||
"description": "Element on which to listen for swipe gestures." | ||
}, | ||
{ | ||
"name": "options", | ||
"optional": true, | ||
"type": { | ||
"text": "Object" | ||
}, | ||
"description": "Optional: Options." | ||
} | ||
], | ||
"description": "Starts monitoring swipes on the given element and\nemits `swipe` event when a swipe gesture is performed.", | ||
"return": { | ||
"type": { | ||
"text": "Object" | ||
} | ||
} | ||
} | ||
], | ||
"exports": [ | ||
{ | ||
"kind": "js", | ||
"name": "SwipeListener", | ||
"declaration": { | ||
"name": "SwipeListener", | ||
"module": "src/utils/swipe-listener.ts" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"kind": "javascript-module", | ||
"path": "src/player/ox-board-player-carousel.ts", | ||
@@ -1368,4 +1153,219 @@ "declarations": [ | ||
] | ||
}, | ||
{ | ||
"kind": "javascript-module", | ||
"path": "src/utils/fullscreen.ts", | ||
"declarations": [ | ||
{ | ||
"kind": "function", | ||
"name": "fullscreen", | ||
"parameters": [ | ||
{ | ||
"name": "element", | ||
"type": { | ||
"text": "HTMLElement" | ||
}, | ||
"description": "대상 엘리먼트" | ||
}, | ||
{ | ||
"name": "afterfull", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
}, | ||
"description": "풀스크린이 된 이후에 호출되는 콜백함수" | ||
}, | ||
{ | ||
"name": "afterfinish", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
}, | ||
"description": "풀스크린이 해제된 이후에 호출되는 콜백함수" | ||
} | ||
], | ||
"description": "엘리먼트를 풀스크린으로 표시되도록 한다." | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "exitfullscreen" | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "togglefullscreen", | ||
"parameters": [ | ||
{ | ||
"name": "element", | ||
"type": { | ||
"text": "HTMLElement" | ||
} | ||
}, | ||
{ | ||
"name": "afterfull", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
} | ||
}, | ||
{ | ||
"name": "afterfinish", | ||
"optional": true, | ||
"type": { | ||
"text": "FullscreenCallback" | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"exports": [ | ||
{ | ||
"kind": "js", | ||
"name": "fullscreen", | ||
"declaration": { | ||
"name": "fullscreen", | ||
"module": "src/utils/fullscreen.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "exitfullscreen", | ||
"declaration": { | ||
"name": "exitfullscreen", | ||
"module": "src/utils/fullscreen.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "togglefullscreen", | ||
"declaration": { | ||
"name": "togglefullscreen", | ||
"module": "src/utils/fullscreen.ts" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"kind": "javascript-module", | ||
"path": "src/utils/os.ts", | ||
"declarations": [ | ||
{ | ||
"kind": "function", | ||
"name": "getOS", | ||
"description": "method to get operating system of running browser", | ||
"return": { | ||
"type": { | ||
"text": "string" | ||
} | ||
} | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "isMobileDevice", | ||
"description": "method to tell if platform of running browser is kind of mobile device", | ||
"return": { | ||
"type": { | ||
"text": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "isIOS", | ||
"description": "method to tell if operating system of running browser is iOS", | ||
"return": { | ||
"type": { | ||
"text": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"kind": "function", | ||
"name": "isMacOS", | ||
"description": "method to tell if operating system of running browser is MacOS", | ||
"return": { | ||
"type": { | ||
"text": "boolean" | ||
} | ||
} | ||
} | ||
], | ||
"exports": [ | ||
{ | ||
"kind": "js", | ||
"name": "getOS", | ||
"declaration": { | ||
"name": "getOS", | ||
"module": "src/utils/os.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "isMobileDevice", | ||
"declaration": { | ||
"name": "isMobileDevice", | ||
"module": "src/utils/os.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "isIOS", | ||
"declaration": { | ||
"name": "isIOS", | ||
"module": "src/utils/os.ts" | ||
} | ||
}, | ||
{ | ||
"kind": "js", | ||
"name": "isMacOS", | ||
"declaration": { | ||
"name": "isMacOS", | ||
"module": "src/utils/os.ts" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"kind": "javascript-module", | ||
"path": "src/utils/swipe-listener.ts", | ||
"declarations": [ | ||
{ | ||
"kind": "function", | ||
"name": "SwipeListener", | ||
"parameters": [ | ||
{ | ||
"name": "element", | ||
"type": { | ||
"text": "DOMElement" | ||
}, | ||
"description": "Element on which to listen for swipe gestures." | ||
}, | ||
{ | ||
"name": "options", | ||
"optional": true, | ||
"type": { | ||
"text": "Object" | ||
}, | ||
"description": "Optional: Options." | ||
} | ||
], | ||
"description": "Starts monitoring swipes on the given element and\nemits `swipe` event when a swipe gesture is performed.", | ||
"return": { | ||
"type": { | ||
"text": "Object" | ||
} | ||
} | ||
} | ||
], | ||
"exports": [ | ||
{ | ||
"kind": "js", | ||
"name": "SwipeListener", | ||
"declaration": { | ||
"name": "SwipeListener", | ||
"module": "src/utils/swipe-listener.ts" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
@@ -5,3 +5,3 @@ import { __decorate } from "tslib"; | ||
import { LitElement, css, html } from 'lit'; | ||
import { MODE_VIEW, create } from '@hatiolab/things-scene'; | ||
import { SCENE_MODE, create } from '@hatiolab/things-scene'; | ||
import { customElement, property, query, state } from 'lit/decorators.js'; | ||
@@ -103,3 +103,3 @@ import { isIOS } from './utils/os'; | ||
}, | ||
mode: MODE_VIEW, | ||
mode: SCENE_MODE.MODE_VIEW, | ||
refProvider: this.provider | ||
@@ -106,0 +106,0 @@ }); |
{ | ||
"name": "@operato/board", | ||
"version": "0.2.30", | ||
"version": "0.2.31", | ||
"description": "Webcomponent for board following open-wc recommendations", | ||
@@ -41,3 +41,3 @@ "author": "heartyoh", | ||
"@hatiolab/prettier-config": "^1.0.0", | ||
"@hatiolab/things-scene": "^2.7.14", | ||
"@hatiolab/things-scene": "^2.7.17", | ||
"@material/mwc-fab": "^0.25.3", | ||
@@ -76,3 +76,3 @@ "@material/mwc-icon": "^0.25.3", | ||
}, | ||
"gitHead": "b2dc6c6e96e4353186ef8abeddc2d536ca902f60" | ||
"gitHead": "4c8298637d97d099718623f4d52a2290e1318ec3" | ||
} |
@@ -5,3 +5,3 @@ import '@material/mwc-fab' | ||
import { LitElement, PropertyValues, css, html } from 'lit' | ||
import { MODE_VIEW, create } from '@hatiolab/things-scene' | ||
import { SCENE_MODE, create } from '@hatiolab/things-scene' | ||
import { customElement, property, query, state } from 'lit/decorators.js' | ||
@@ -218,3 +218,3 @@ | ||
}, | ||
mode: MODE_VIEW, | ||
mode: SCENE_MODE.MODE_VIEW, | ||
refProvider: this.provider | ||
@@ -221,0 +221,0 @@ }) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
283028