Skip to content

Commit

Permalink
chore: 🤖 release v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
phun-ky committed Dec 5, 2023
1 parent 9d70af1 commit 45ec98a
Show file tree
Hide file tree
Showing 12 changed files with 133 additions and 76 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.1.4](https://github.com/phun-ky/moebius/compare/0.1.3...0.1.4) (2023-12-05)


### Bug

* 🐛 Add missing `rgbFloat` and `hslFloat` ([127a407](https://github.com/phun-ky/moebius/commit/127a407ac17e4dc5b95472b6f527e4eeb78e8b29))
* 🐛 Guard against `NaN` ([c0cf948](https://github.com/phun-ky/moebius/commit/c0cf948c8446e6d07cbf8cb790b176ebb196e8bc))
* 🐛 Unique ([5b90bd4](https://github.com/phun-ky/moebius/commit/5b90bd4e4c9c951dfabe5a8ea08e28203c490ec7))

## [0.1.3](https://github.com/phun-ky/moebius/compare/0.1.2...0.1.3) (2023-11-27)


Expand Down
34 changes: 31 additions & 3 deletions api/classes/classes_MoebiusColor.MoebiusColor.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Will throw an error if init has not been run before creating an instance.

#### Defined in

[classes/MoebiusColor.ts:50](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L50)
[classes/MoebiusColor.ts:52](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L52)

## Properties

Expand Down Expand Up @@ -115,6 +115,20 @@ ___

___

### hslFloat

**hslFloat**: [`MoebiusHSLObjectType`](../modules/types.md#moebiushslobjecttype)

#### Implementation of

[MoebiusColorInterface](../interfaces/types.MoebiusColorInterface.md).[hslFloat](../interfaces/types.MoebiusColorInterface.md#hslfloat)

#### Defined in

[classes/MoebiusColor.ts:43](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L43)

___

### hsv

**hsv**: [`MoebiusHSVObjectType`](../modules/types.md#moebiushsvobjecttype)
Expand Down Expand Up @@ -227,6 +241,20 @@ ___

___

### rgbFloat

**rgbFloat**: [`MoebiusRGBObjectType`](../modules/types.md#moebiusrgbobjecttype)

#### Implementation of

[MoebiusColorInterface](../interfaces/types.MoebiusColorInterface.md).[rgbFloat](../interfaces/types.MoebiusColorInterface.md#rgbfloat)

#### Defined in

[classes/MoebiusColor.ts:42](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L42)

___

### xyz

**xyz**: [`MoebiusXYZObjectType`](../modules/types.md#moebiusxyzobjecttype)
Expand Down Expand Up @@ -261,7 +289,7 @@ The floating-point representation of the color in the specified color space.

#### Defined in

[classes/MoebiusColor.ts:80](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L80)
[classes/MoebiusColor.ts:87](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L87)

___

Expand All @@ -285,4 +313,4 @@ The color object in the specified color space.

#### Defined in

[classes/MoebiusColor.ts:72](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L72)
[classes/MoebiusColor.ts:79](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusColor.ts#L79)
22 changes: 11 additions & 11 deletions api/classes/classes_MoebiusPalettes.MoebiusPalettes.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ console.log(analogousPalette); // ['#3498db', '#75db34', '#dbd134', '#db7434', '

#### Defined in

[classes/MoebiusPalettes.ts:245](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L245)
[classes/MoebiusPalettes.ts:249](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L249)

___

Expand Down Expand Up @@ -194,7 +194,7 @@ console.log(complementPalette); // ['#3498db', '#db3434', '#75db34', '#dbd134',

#### Defined in

[classes/MoebiusPalettes.ts:89](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L89)
[classes/MoebiusPalettes.ts:93](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L93)

___

Expand Down Expand Up @@ -230,7 +230,7 @@ console.log(harmonizedPalette); // ['#3498db', '#75db34', '#dbd134', '#db7434',

#### Defined in

[classes/MoebiusPalettes.ts:364](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L364)
[classes/MoebiusPalettes.ts:368](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L368)

___

Expand Down Expand Up @@ -263,7 +263,7 @@ console.log(hexadicPalette); // ['#3498db', '#5d7f33', '#8473a9', '#ad7a95', '#d

#### Defined in

[classes/MoebiusPalettes.ts:219](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L219)
[classes/MoebiusPalettes.ts:223](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L223)

___

Expand Down Expand Up @@ -298,7 +298,7 @@ console.log(interpolatedPalette); // ['#3498db', '#5d6d7e', '#8473a9', '#ad7a95'

#### Defined in

[classes/MoebiusPalettes.ts:274](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L274)
[classes/MoebiusPalettes.ts:278](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L278)

___

Expand Down Expand Up @@ -333,7 +333,7 @@ console.log(luminanceShiftPalette); // ['#3498db', '#99db34', '#dbd134', '#db343

#### Defined in

[classes/MoebiusPalettes.ts:305](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L305)
[classes/MoebiusPalettes.ts:309](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L309)

___

Expand Down Expand Up @@ -376,7 +376,7 @@ console.log(monochromaticPalette);

#### Defined in

[classes/MoebiusPalettes.ts:338](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L338)
[classes/MoebiusPalettes.ts:342](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L342)

___

Expand Down Expand Up @@ -409,7 +409,7 @@ console.log(pentadicPalette); // ['#3498db', '#dbd134', '#db3434', '#34db99', '#

#### Defined in

[classes/MoebiusPalettes.ts:193](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L193)
[classes/MoebiusPalettes.ts:197](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L197)

___

Expand Down Expand Up @@ -442,7 +442,7 @@ console.log(splitPalette); // ['#3498db', '#99db34', '#dbd134', '#db3434', '#8f3

#### Defined in

[classes/MoebiusPalettes.ts:115](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L115)
[classes/MoebiusPalettes.ts:119](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L119)

___

Expand Down Expand Up @@ -475,7 +475,7 @@ console.log(tetradicPalette); // ['#3498db', '#db3434', '#34db99', '#dbd134', '#

#### Defined in

[classes/MoebiusPalettes.ts:167](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L167)
[classes/MoebiusPalettes.ts:171](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L171)

___

Expand Down Expand Up @@ -508,4 +508,4 @@ console.log(triadicPalette);

#### Defined in

[classes/MoebiusPalettes.ts:141](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L141)
[classes/MoebiusPalettes.ts:145](https://github.com/phun-ky/moebius/blob/main/src/classes/MoebiusPalettes.ts#L145)
38 changes: 29 additions & 9 deletions api/interfaces/types.MoebiusColorInterface.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Represents a color object with various color representations.

#### Defined in

[types/index.ts:18](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L18)
[types/index.ts:20](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L20)

___

Expand Down Expand Up @@ -48,7 +48,7 @@ ___

#### Defined in

[types/index.ts:16](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L16)
[types/index.ts:18](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L18)

___

Expand All @@ -62,13 +62,23 @@ ___

___

### hslFloat

**hslFloat**: [`MoebiusHSLObjectType`](../modules/types.md#moebiushslobjecttype)

#### Defined in

[types/index.ts:10](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L10)

___

### hsv

**hsv**: [`MoebiusHSVObjectType`](../modules/types.md#moebiushsvobjecttype)

#### Defined in

[types/index.ts:11](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L11)
[types/index.ts:13](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L13)

___

Expand All @@ -78,7 +88,7 @@ ___

#### Defined in

[types/index.ts:10](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L10)
[types/index.ts:12](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L12)

___

Expand All @@ -88,7 +98,7 @@ ___

#### Defined in

[types/index.ts:12](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L12)
[types/index.ts:14](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L14)

___

Expand All @@ -98,7 +108,7 @@ ___

#### Defined in

[types/index.ts:14](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L14)
[types/index.ts:16](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L16)

___

Expand All @@ -118,7 +128,7 @@ ___

#### Defined in

[types/index.ts:17](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L17)
[types/index.ts:19](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L19)

___

Expand All @@ -128,7 +138,7 @@ ___

#### Defined in

[types/index.ts:15](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L15)
[types/index.ts:17](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L17)

___

Expand All @@ -142,10 +152,20 @@ ___

___

### rgbFloat

**rgbFloat**: [`MoebiusRGBObjectType`](../modules/types.md#moebiusrgbobjecttype)

#### Defined in

[types/index.ts:11](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L11)

___

### xyz

**xyz**: [`MoebiusXYZObjectType`](../modules/types.md#moebiusxyzobjecttype)

#### Defined in

[types/index.ts:13](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L13)
[types/index.ts:15](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L15)
20 changes: 10 additions & 10 deletions api/interfaces/types.MoebiusPaletteAccentColorsInterface.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Represents a palette of accent colors with different schemes.

#### Defined in

[types/index.ts:60](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L60)
[types/index.ts:62](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L62)

___

Expand All @@ -28,7 +28,7 @@ ___

#### Defined in

[types/index.ts:54](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L54)
[types/index.ts:56](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L56)

___

Expand All @@ -38,7 +38,7 @@ ___

#### Defined in

[types/index.ts:59](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L59)
[types/index.ts:61](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L61)

___

Expand All @@ -48,7 +48,7 @@ ___

#### Defined in

[types/index.ts:51](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L51)
[types/index.ts:53](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L53)

___

Expand All @@ -58,7 +58,7 @@ ___

#### Defined in

[types/index.ts:52](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L52)
[types/index.ts:54](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L54)

___

Expand All @@ -68,7 +68,7 @@ ___

#### Defined in

[types/index.ts:53](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L53)
[types/index.ts:55](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L55)

___

Expand All @@ -78,7 +78,7 @@ ___

#### Defined in

[types/index.ts:58](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L58)
[types/index.ts:60](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L60)

___

Expand All @@ -88,7 +88,7 @@ ___

#### Defined in

[types/index.ts:55](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L55)
[types/index.ts:57](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L57)

___

Expand All @@ -98,7 +98,7 @@ ___

#### Defined in

[types/index.ts:57](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L57)
[types/index.ts:59](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L59)

___

Expand All @@ -108,4 +108,4 @@ ___

#### Defined in

[types/index.ts:56](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L56)
[types/index.ts:58](https://github.com/phun-ky/moebius/blob/main/src/types/index.ts#L58)
Loading

0 comments on commit 45ec98a

Please sign in to comment.