Browse Source

DOC,LICENCE: Added licence comment into every file

master
chris 6 months ago
parent
commit
5c9ed7bb23
  1. 7
      src/alignment.js
  2. 7
      src/arrangement.js
  3. 7
      src/baseComponents.js
  4. 7
      src/builder.js
  5. 7
      src/color.js
  6. 7
      src/commonEvents.js
  7. 8
      src/component.js
  8. 7
      src/context.js
  9. 14
      src/modifier.js
  10. 11
      src/sizeSide/border.js
  11. 7
      src/sizeSide/dimensions.js
  12. 10
      src/sizeSide/shapes.js
  13. 10
      src/sizeSide/siding.js

7
src/alignment.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* Enum providing common alignment rules * Enum providing common alignment rules
*/ */

7
src/arrangement.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* Enum providing common alignment rules * Enum providing common alignment rules
*/ */

7
src/baseComponents.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* Represents container Components. * Represents container Components.
* Some predefined modifications are applied on the child components. * Some predefined modifications are applied on the child components.

7
src/builder.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* Method Collection with predefined HTMLElements * Method Collection with predefined HTMLElements
*/ */

7
src/color.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* A simple Color class for rgb set color values. * A simple Color class for rgb set color values.
*/ */

7
src/commonEvents.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* Enum to access common events * Enum to access common events
*/ */

8
src/component.js

@ -1,3 +1,11 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* A chainable HTMLElement builder. * A chainable HTMLElement builder.
*/ */

7
src/context.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* The class provides overreaching options for building the website. * The class provides overreaching options for building the website.
*/ */

14
src/modifier.js

@ -1,7 +1,19 @@
/** /**
* A chained class that sets most of the stylings of an element. * This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/**
* A chained class that sets most of the stylings of an element
* Attributes:
* _modifications: {Object}
*/ */
class Modifier { class Modifier {
/**
* @property {Object} _modifications
*/
_modifications; _modifications;
constructor() { constructor() {

11
src/sizeSide/border.js

@ -1,4 +1,13 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/**
*
*/
const LineStyles = Object.freeze({ const LineStyles = Object.freeze({
dotted: "dotted", dotted: "dotted",
dashed: "dashed", dashed: "dashed",

7
src/sizeSide/dimensions.js

@ -1,3 +1,10 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/** /**
* Simple Dimensions container for the height and width in pixels. * Simple Dimensions container for the height and width in pixels.
*/ */

10
src/sizeSide/shapes.js

@ -1,3 +1,13 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/**
*
*/
class Shape extends DirectionUnitDependentAttribute { class Shape extends DirectionUnitDependentAttribute {
constructor(defaultValue = 0, defaultUnit = SizeUnits.PIXEL) { constructor(defaultValue = 0, defaultUnit = SizeUnits.PIXEL) {
super(defaultValue, defaultUnit); super(defaultValue, defaultUnit);

10
src/sizeSide/siding.js

@ -1,3 +1,13 @@
/**
* This file is part of the jps-like-websites lib
* URL: https://git.labos.goip.de/chris/jpc-like-websites
* COPYRIGHT and LICENCE are owned by its creator Christian Martin
* Copy, altering or distribution without the allowance of the owner are prohibited
*/
/**
*
*/
const SizeUnits = Object.freeze({ const SizeUnits = Object.freeze({
PIXEL: "px", PIXEL: "px",
PERCENT: "%" PERCENT: "%"

Loading…
Cancel
Save