Skip to content

Commit

Permalink
basic implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
jogibear9988 committed Mar 4, 2024
1 parent 9269bd2 commit 22025bb
Show file tree
Hide file tree
Showing 14 changed files with 5,844 additions and 2,367 deletions.
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These are supported funding model platforms

github: jogibear9988
patreon: jogibear9988
1 change: 1 addition & 0 deletions assets/images/expander.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/images/expanderClose.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/images/file.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/images/folder.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 74 additions & 16 deletions custom-elements.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,50 +4,108 @@
"modules": [
{
"kind": "javascript-module",
"path": "dist/tab/TabWebcomponent.js",
"path": "dist/PropertyGrid.js",
"declarations": [
{
"kind": "class",
"description": "A Tab Control",
"name": "TabWebcomponent",
"name": "PropertyGrid",
"members": [
{
"kind": "field",
"name": "selectedIndex",
"name": "noCategory",
"type": {
"text": "number"
"text": "boolean"
}
},
{
"kind": "field",
"name": "hideProperties",
"type": {
"text": "string"
}
},
{
"kind": "field",
"name": "expanded",
"type": {
"text": "boolean"
}
},
{
"kind": "field",
"name": "selectedObject",
"type": {
"text": "object"
}
},
{
"kind": "field",
"name": "typeName",
"type": {
"text": "string"
}
},
{
"kind": "field",
"name": "getTypeInfo",
"type": {
"text": "object"
}
},
{
"kind": "field",
"name": "typeDefinitions",
"type": {
"text": "object"
}
}
],
"attributes": [
{
"name": "selected-index",
"fieldName": "selectedIndex"
"name": "no-category",
"fieldName": "noCategory"
},
{
"name": "hide-properties",
"fieldName": "hideProperties"
},
{
"name": "expanded",
"fieldName": "expanded"
},
{
"name": "selected-object",
"fieldName": "selectedObject"
},
{
"name": "type-name",
"fieldName": "typeName"
},
{
"name": "type-definitions",
"fieldName": "typeDefinitions"
}
],
"events": [
{
"name": "selected-index-changed",
"description": "Is raised when the selected index changes",
"type": {
"title": "String"
}
"name": "property-changed",
"description": "Is raised when a properties value changed",
}
],
"superclass": {
"name": "BaseCustomWebComponentConstructorAppend"
},
"tagName": "node-projects-tab",
"tagName": "node-projects-property-grid",
"customElement": true
}
],
"exports": [
{
"kind": "custom-element-definition",
"name": "node-projects-tab",
"name": "node-projects-property-grid",
"declaration": {
"name": "TabWebcomponent",
"module": "dist/tab/TabWebcomponent.js"
"name": "PropertyGrid",
"module": "dist/PropertyGrid.js"
}
}
]
Expand Down
Loading

0 comments on commit 22025bb

Please sign in to comment.