Skip to content
This repository has been archived by the owner on Jul 14, 2020. It is now read-only.

Commit

Permalink
v1.1.0-rc.2 - Tab id fix
Browse files Browse the repository at this point in the history
ref #24
  • Loading branch information
Sneki committed Jun 26, 2018
1 parent 5bf2800 commit 5c2a7ef
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 43 deletions.
2 changes: 1 addition & 1 deletion dev/data/page.json
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@
"type": "button",
"label": "Save",
"color": "primary",
"theme": "light",
"theme": "dark",
"actions": {
"click": "save"
}
Expand Down
89 changes: 55 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,27 @@
"main": "dist/chameleon-vuetify.min.js",
"dependencies": {
"@nsoft/chameleon-notation": "^1.0.16",
"@nsoft/chameleon-sdk": "^1.0.53",
"@nsoft/chameleon-sdk": "^1.0.54",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"quill": "^1.3.6",
"uuid": "^3.2.1",
"validator": "^9.4.1",
"vue": "^2.5.16",
"vue-jsoneditor": "^1.0.13",
"vuetify": "^1.1.0-beta.3"
"vuetify": "^v1.1.0-rc.2"
},
"devDependencies": {
"@vue/test-utils": "1.0.0-beta.12",
"autoprefixer": "^7.2.6",
"axios": "^0.17.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-jest": "^23.0.1",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-lodash": "^3.3.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.26.0",
Expand All @@ -55,7 +55,7 @@
"chalk": "^2.4.1",
"codecov": "^3.0.2",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.6",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"dotenv": "^4.0.0",
Expand All @@ -65,7 +65,7 @@
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-import": "^2.13.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.0",
Expand Down Expand Up @@ -104,7 +104,7 @@
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.11.2",
"webpack-merge": "^4.1.2"
"webpack-merge": "^4.1.3"
},
"engines": {
"node": ">= 4.0.0",
Expand Down
6 changes: 5 additions & 1 deletion src/components/CTabItem/CTabItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ const getTabItemContent = (context, createElement) => {
export default {
extends: Element,
render(createElement) {
console.log(this.schema);
const data = {
key: this.schema.uid,
props: {
key: this.schema.uid,
id: this.schema.uid,
},
};

const children = getTabItemContent(this, createElement);
Expand Down

0 comments on commit 5c2a7ef

Please sign in to comment.