Skip to content

Commit

Permalink
WRQ-30274: Merge feature/enact_v5 to develop branch (#804)
Browse files Browse the repository at this point in the history
* WRQ-22937: Updated storybook to version 8 (#791)

* updated storybook to version 8.1.5

* Fixed custom toolbars for acent, hightlight and default skin styles

* code review fixes

* removed parasite div

* code review fixes

* eslint fixes

* removed unneeded storybook ui props

* updated storybook to 8.1.6 and storybook-tils branch to enact_v5

* removed docs configuration and docs information in About story

* WRQ-25915: Added custom site icon for sampler app (#793)

* added custom site icon for storybook

* Apply suggestions from code review

* removed manager-head.html

---------

Co-authored-by: Stanca <[email protected]>

* WRQ-17541: Fix Marquee to not override marqueeDirection (#794)

* Fix Marquee to not override marqueeDirection

* modify travis.yml to verify

* remove null

* modify travis.yml to verify 2

* WRQ-29126: Updated storybook to 8.2 (#799)

* Updated storybook to 8.2 and applied latest patch version

* updatet storybook dependencies to use latest minor version

* changed package order

---------

Co-authored-by: Mikyung Kim <[email protected]>

* WRQ-30274: Prepare for merging `feature/enact_v5` to `develop` branch (#803)

* WRQ-7108: Remove unnecessary vendor prefixes (#784)

* WRQ-7108: Remove unnecessary vendor prefixes
Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* remove more vendor prefix

* remove more vendor prefix
Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* WRQ-25866: Update package dependencies to fix security vulnerabilities. (#795)

* Updated dependencies for agate library.

* Updated shrinkwrap

* WRP-26873: Fixed partial Panels' transition on horizontal (#757)

* Fixed partial transition

* Fixed lint warnings

* Added code was covered by tests

* Added CHANGELOG

* Review fixes

* Restored style changes

* Update CHANGELOG.md

* Fixed changelog

Enact-DCO-1.0-Signed-off-by: Mikyung Kim ([email protected])

* Review fixes

* Review fixes

* fix

Enact-DCO-1.0-Signed-off-by: Mikyung Kim ([email protected])

---------

Co-authored-by: Daniel Stoian <[email protected]>
Co-authored-by: Mikyung Kim <[email protected]>

* Update dependencies and sampler version to 2.0.11

* WRQ-29884: Change cli branch in travis.yml to master (#800)

Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* WRQ-29957: Fixed VirtualGridList story to load default values (#801)

* WRQ-29884: Change cli branch in travis.yml to master (#800)

Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* fixed virtualgridlist story to load default values

* minor fix

---------

Co-authored-by: Jiye Kim <[email protected]>

* Update a change log for 2.0.11

* Version value updating

* fix travis.yml
Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* change travis dist from focal to jammy
Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* remove empty options
Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* update enact dependencies in package.json
Enact-DCO-1.0-Signed-off-by: Jiye Kim ([email protected])

* Updated sampler's npm shrinkwrap

---------

Co-authored-by: alexandru-morariu-lgp <[email protected]>
Co-authored-by: ion-andrusciac-lgp <[email protected]>
Co-authored-by: Daniel Stoian <[email protected]>
Co-authored-by: Mikyung Kim <[email protected]>
Co-authored-by: taeyoung.hong <[email protected]>
Co-authored-by: Jenkins <[email protected]>

---------

Co-authored-by: Daniel Stoian <[email protected]>
Co-authored-by: Stanca <[email protected]>
Co-authored-by: taeyoung.hong <[email protected]>
Co-authored-by: taeyoung.hong <[email protected]>
Co-authored-by: Jiye Kim <[email protected]>
Co-authored-by: alexandru-morariu-lgp <[email protected]>
Co-authored-by: ion-andrusciac-lgp <[email protected]>
Co-authored-by: Jenkins <[email protected]>
  • Loading branch information
9 people authored Jul 25, 2024
1 parent 3919908 commit a4f380f
Show file tree
Hide file tree
Showing 39 changed files with 30,369 additions and 111,336 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist: focal
dist: jammy
language: node_js
node_js:
- lts/*
Expand Down
5 changes: 1 addition & 4 deletions Marquee/Marquee.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,13 @@

import hoc from '@enact/core/hoc';
import {I18nContextDecorator} from '@enact/i18n/I18nDecorator';
import {isRtlText} from '@enact/i18n/util';
import {
MarqueeBase,
MarqueeController,
MarqueeDecorator as UiMarqueeDecorator
} from '@enact/ui/Marquee';

const MarqueeDecorator = hoc({
marqueeDirection: (str) => isRtlText(str) ? 'rtl' : 'ltr'
}, (config, Wrapped) => {
const MarqueeDecorator = hoc((config, Wrapped) => {
return I18nContextDecorator(
{rtlProp: 'rtl', localeProp: 'locale'},
UiMarqueeDecorator(
Expand Down
2 changes: 1 addition & 1 deletion ThemeDecorator/ThemeDecorator.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const ThemeDecorator = hoc(defaultConfig, (config, Wrapped) => {
if (float) App = FloatingLayerDecorator({wrappedClassName: bgClassName}, App);
if (ri) App = ResolutionDecorator(ri, App);
if (i18n) App = I18nDecorator({sync: true}, App);
if (spotlight) App = SpotlightRootDecorator({noAutoFocus}, App);
if (spotlight) App = SpotlightRootDecorator({noAutoFocus, rootId}, App);
if (skin) App = Skinnable({defaultSkin}, App);

// add webOS-specific key maps
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"extends": "enact-proxy/strict"
},
"dependencies": {
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"classnames": "^2.5.1",
"color-convert": "^2.0.1",
"deep-freeze": "0.0.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/event-logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@reduxjs/toolkit": "^2.2.5",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/perf-scroller-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"classnames": "^2.5.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/perf-scroller-translate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"classnames": "^2.5.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/perf-virtualgridlist-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
Expand Down
8 changes: 4 additions & 4 deletions samples/perf-virtualgridlist-translate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
Expand Down
8 changes: 4 additions & 4 deletions samples/perf-virtuallist-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
Expand Down
8 changes: 4 additions & 4 deletions samples/perf-virtuallist-translate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
Expand Down
10 changes: 5 additions & 5 deletions samples/qa-a11y/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/webos": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@enact/webos": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
10 changes: 5 additions & 5 deletions samples/qa-drag-and-drop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/webos": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@enact/webos": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-dropdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-fonts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-i18n-async/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
10 changes: 5 additions & 5 deletions samples/qa-i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/webos": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@enact/webos": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-scroller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-virtualgridlist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@reduxjs/toolkit": "^2.2.5",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-virtualgridlistnative-preserve-focus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@reduxjs/toolkit": "^2.2.5",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
Expand Down
8 changes: 4 additions & 4 deletions samples/qa-virtuallist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
},
"dependencies": {
"@enact/agate": "../../",
"@enact/core": "^4.9.0",
"@enact/i18n": "^4.9.0",
"@enact/spotlight": "^4.9.0",
"@enact/ui": "^4.9.0",
"@enact/core": "^5.0.0-alpha.1",
"@enact/i18n": "^5.0.0-alpha.1",
"@enact/spotlight": "^5.0.0-alpha.1",
"@enact/ui": "^5.0.0-alpha.1",
"@reduxjs/toolkit": "^2.2.5",
"ilib": "^14.20.0",
"prop-types": "^15.8.1",
Expand Down
2 changes: 1 addition & 1 deletion samples/sampler/.qa-storybook/babel.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@enact/storybook-utils/configs/babel');
module.exports = require('@enact/storybook-utils/configs/babel');
24 changes: 21 additions & 3 deletions samples/sampler/.qa-storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,41 @@
/* global __dirname */

const webpack = require('@enact/storybook-utils/configs/webpack');
const {loadCsf} = require('@storybook/csf-tools');
const {readFileSync} = require('fs');

module.exports = {
core: {
builder: 'webpack5',
disableTelemetry: true
},
features: {
postcss: false,
warnOnLegacyHierarchySeparator: false
},
framework: '@storybook/react',
framework: {
name: '@storybook/react-webpack5'
},
experimental_indexers: (indexers) => { // eslint-disable-line camelcase
const createIndex = async (fileName, opts) => {
const code = readFileSync(fileName, {encoding: 'utf-8'});
return loadCsf(code, {...opts, fileName}).parse().indexInputs;
};

return [
{
test: /\.[tj]sx?$/,
createIndex
},
...(indexers || [])
];
},
stories: ['./../stories/qa/*.js'],
staticDirs: ['../public'],
addons: [
'@enact/storybook-utils/addons/actions',
'@enact/storybook-utils/addons/controls',
'@enact/storybook-utils/addons/docs',
'@enact/storybook-utils/addons/toolbars',
'@storybook/addon-docs',
'../custom-addon/manager.js'
],
webpackFinal: async (config, {configType}) => {
Expand Down
7 changes: 2 additions & 5 deletions samples/sampler/.qa-storybook/manager.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {addons} from '@storybook/addons';
import {addons} from '@storybook/manager-api';
import {create} from '@storybook/theming';

addons.setConfig({
Expand All @@ -8,8 +8,5 @@ addons.setConfig({
brandUrl: 'http://enactjs.com/',
brandImage: 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MDAiIGhlaWdodD0iNzAwIiB2aWV3Qm94PSIwIDAgNzAwIDcwMCI+PGRlZnM+PHN0eWxlPi5hLC5ie2ZpbGw6I2ZmZjt9LmJ7b3BhY2l0eTowLjg7fTwvc3R5bGU+PC9kZWZzPjxwb2x5Z29uIGNsYXNzPSJhIiBwb2ludHM9IjM0OS45IDUyNy44IDE5OS45IDQyOS44IDE5OS45IDM3NC40IDM1MC4xIDQ3Mi43IDM0OS45IDM0OC41IDE5OS45IDI2MS4xIDE5OS45IDIwOS4zIDM1MCAyOTMuNiAzNTAgMjkzLjYgMzUwLjIgMjkzLjcgMzQ5LjkgMTY5LjMgMTAyLjcgNDguNSAxMDIuNyA0NzIuNiAzNTAuMSA2NTEuNiAzNDkuOSA1MjcuOCIvPjxwb2x5Z29uIGNsYXNzPSJiIiBwb2ludHM9IjM1MC4xIDY1MS42IDU5Ny4zIDQ3Mi44IDU5Ny4zIDM2Ni4zIDM0OS45IDUyNy44IDM1MC4xIDY1MS42Ii8+PHBvbHlnb24gY2xhc3M9ImIiIHBvaW50cz0iMzUwLjEgNDcyLjcgNTIzLjUgMzU5LjMgNTIzLjUgMjQ3LjQgMzQ5LjkgMzQ4LjUgMzUwLjEgNDcyLjciLz48cG9seWdvbiBjbGFzcz0iYiIgcG9pbnRzPSIzNTAgMjkzLjYgMzUwIDI5My42IDM1MC4yIDI5My43IDU5Ny4zIDE1NC44IDU5Ny4zIDQ4LjQgMzQ5LjkgMTY5LjMgMzUwIDI5My42Ii8+PC9zdmc+'
}),
isFullscreen: false,
panelPosition: 'bottom',
showNav: true,
showPanel: true
panelPosition: 'bottom'
});
Loading

0 comments on commit a4f380f

Please sign in to comment.