Improved documentation further.
This commit is contained in:
parent
0a6af3ad98
commit
fb99e9d240
10
README.md
10
README.md
@ -2,4 +2,12 @@
|
|||||||
|
|
||||||
A simple responsive javascript UI component framework.
|
A simple responsive javascript UI component framework.
|
||||||
|
|
||||||
[Documentation](docs.md)
|
[See Documentation](docs.md)
|
||||||
|
|
||||||
|
### Documentation build command
|
||||||
|
|
||||||
|
`
|
||||||
|
documentation build ignite-template.js ignite-html.js ignite-element.js -f md > docs.md
|
||||||
|
`
|
||||||
|
|
||||||
|
[Built using](https://github.com/documentationjs/documentation)
|
@ -50,19 +50,34 @@ class IgniteElement extends HTMLElement {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
/** @type {Boolean} */
|
/**
|
||||||
|
* @ignore
|
||||||
|
* @type {Boolean}
|
||||||
|
* */
|
||||||
this.elementConnected = false; //Used to know if the connectedCallback was already called.
|
this.elementConnected = false; //Used to know if the connectedCallback was already called.
|
||||||
|
|
||||||
/** @type {IgniteTemplate} */
|
/**
|
||||||
|
* The ignite html template used to construct this element.
|
||||||
|
* @type {IgniteTemplate}
|
||||||
|
* */
|
||||||
this.template = null;
|
this.template = null;
|
||||||
|
|
||||||
/** @type {HTMLElement[]} */
|
/**
|
||||||
|
* The child elements within this element upon creation.
|
||||||
|
* @type {HTMLElement[]}
|
||||||
|
* */
|
||||||
this.elements = [];
|
this.elements = [];
|
||||||
|
|
||||||
/** @type {IgniteCallback} */
|
/**
|
||||||
|
* @ignore
|
||||||
|
* @type {IgniteCallback}
|
||||||
|
* */
|
||||||
this.readyCallback = new IgniteCallback(() => this.ready());
|
this.readyCallback = new IgniteCallback(() => this.ready());
|
||||||
|
|
||||||
/** @type {IgniteCallback[]} */
|
/**
|
||||||
|
* @ignore
|
||||||
|
* @type {IgniteCallback[]}
|
||||||
|
* */
|
||||||
this.onDisconnectCallbacks = [];
|
this.onDisconnectCallbacks = [];
|
||||||
|
|
||||||
//Create the variables for this element.
|
//Create the variables for this element.
|
||||||
@ -82,7 +97,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
* Returns an object with all the variables for this ignite element. Variables
|
* Returns an object with all the variables for this ignite element. Variables
|
||||||
* unlike properties have no callbacks or events, they are just data.
|
* unlike properties have no callbacks or events, they are just data.
|
||||||
*
|
*
|
||||||
* @returns An object with properties that will be assigned to this ignite element as variables.
|
* @returns {Object} An object with properties that will be assigned to this ignite element as variables.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* get variables() {
|
* get variables() {
|
||||||
@ -100,7 +115,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
* Returns an object with all the properties for this ignite element. If null or empty
|
* Returns an object with all the properties for this ignite element. If null or empty
|
||||||
* then no properties will be created. To change a property and read it's current value see below.
|
* then no properties will be created. To change a property and read it's current value see below.
|
||||||
*
|
*
|
||||||
* @returns An object with properties that will be assigned to this ignite element.
|
* @returns {Object} An object with properties that will be assigned to this ignite element.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* get properties() {
|
* get properties() {
|
||||||
@ -127,7 +142,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
* value the CSS will auto be injected into the current HTML page once and reused for the life
|
* value the CSS will auto be injected into the current HTML page once and reused for the life
|
||||||
* of the ignite element.
|
* of the ignite element.
|
||||||
*
|
*
|
||||||
* @returns A string containing CSS code to be used with this ignite element.
|
* @returns {String} A string containing CSS code to be used with this ignite element.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* get styles() {
|
* get styles() {
|
||||||
@ -166,6 +181,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets all the property values from this element and returns it.
|
* Gets all the property values from this element and returns it.
|
||||||
|
* @returns {Object} An object with all of the property values for this ignite element.
|
||||||
*/
|
*/
|
||||||
getProperties() {
|
getProperties() {
|
||||||
var ret = {};
|
var ret = {};
|
||||||
@ -357,7 +373,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called wehn this ignite element is being initialized. When this is called
|
* Called when this ignite element is being initialized. When this is called
|
||||||
* the element has not been created. This is good for login checking code or special setup code.
|
* the element has not been created. This is good for login checking code or special setup code.
|
||||||
*/
|
*/
|
||||||
init() {
|
init() {
|
||||||
@ -384,6 +400,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a uuid and returns it.
|
* Generates a uuid and returns it.
|
||||||
|
* @returns {String} A unique string, for example: '1b23ec67-4d90-4992-9c5a-b5c0844deaef'
|
||||||
*/
|
*/
|
||||||
uuid() {
|
uuid() {
|
||||||
return ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c =>
|
return ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c =>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user