Browse Source

DOC,LICENCE: Added licence comment into every file

master
chris 5 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
*/

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
*/

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.
* 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
*/

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.
*/

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
*/

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.
*/

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.
*/

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 {
/**
* @property {Object} _modifications
*/
_modifications;
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({
dotted: "dotted",
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.
*/

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 {
constructor(defaultValue = 0, defaultUnit = SizeUnits.PIXEL) {
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({
PIXEL: "px",
PERCENT: "%"

Loading…
Cancel
Save