From 5415ea7ae6d35b2cf6e71006e21ea4f5d183ee4d Mon Sep 17 00:00:00 2001 From: Damien Seguin Date: Thu, 4 Jan 2024 10:04:32 +0000 Subject: [PATCH] chore(release): 1.0.2 --- CHANGELOG.md | 4 ++++ docs/assets/style.css | 11 +++++++++++ docs/functions/index.load.html | 4 ++-- docs/functions/theme.getSchemeProperties.html | 2 +- docs/functions/theme.getSurfaceProperties.html | 2 +- docs/functions/theme.getThemeCSSProperties.html | 4 ++-- docs/modules/index.html | 2 +- docs/modules/theme.html | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 10 files changed, 26 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d16fc94..871e4b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## [1.0.2](https://github.com/dmnsgn/typedoc-material-theme/compare/v1.0.1...v1.0.2) (2024-01-04) + + + ## [1.0.1](https://github.com/dmnsgn/typedoc-material-theme/compare/v1.0.0...v1.0.1) (2023-11-24) diff --git a/docs/assets/style.css b/docs/assets/style.css index 108428c..07a385b 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -11,6 +11,7 @@ --light-color-text-aside: #6e6e6e; --light-color-link: #1f70c2; + --light-color-ts-keyword: #056bd6; --light-color-ts-project: #b111c9; --light-color-ts-module: var(--light-color-ts-project); --light-color-ts-namespace: var(--light-color-ts-project); @@ -50,6 +51,7 @@ --dark-color-text-aside: #dddddd; --dark-color-link: #00aff4; + --dark-color-ts-keyword: #3399ff; --dark-color-ts-project: #e358ff; --dark-color-ts-module: var(--dark-color-ts-project); --dark-color-ts-namespace: var(--dark-color-ts-project); @@ -91,6 +93,7 @@ --color-text-aside: var(--light-color-text-aside); --color-link: var(--light-color-link); + --color-ts-keyword: var(--light-color-ts-keyword); --color-ts-module: var(--light-color-ts-module); --color-ts-namespace: var(--light-color-ts-namespace); --color-ts-enum: var(--light-color-ts-enum); @@ -132,6 +135,7 @@ --color-text-aside: var(--dark-color-text-aside); --color-link: var(--dark-color-link); + --color-ts-keyword: var(--dark-color-ts-keyword); --color-ts-module: var(--dark-color-ts-module); --color-ts-namespace: var(--dark-color-ts-namespace); --color-ts-enum: var(--dark-color-ts-enum); @@ -180,6 +184,7 @@ body { --color-text-aside: var(--light-color-text-aside); --color-link: var(--light-color-link); + --color-ts-keyword: var(--light-color-ts-keyword); --color-ts-module: var(--light-color-ts-module); --color-ts-namespace: var(--light-color-ts-namespace); --color-ts-enum: var(--light-color-ts-enum); @@ -219,6 +224,7 @@ body { --color-text-aside: var(--dark-color-text-aside); --color-link: var(--dark-color-link); + --color-ts-keyword: var(--dark-color-ts-keyword); --color-ts-module: var(--dark-color-ts-module); --color-ts-namespace: var(--dark-color-ts-namespace); --color-ts-enum: var(--dark-color-ts-enum); @@ -984,6 +990,11 @@ a.tsd-index-link { overflow-x: auto; } +.tsd-signature-keyword { + color: var(--color-ts-keyword); + font-weight: normal; +} + .tsd-signature-symbol { color: var(--color-text-aside); font-weight: normal; diff --git a/docs/functions/index.load.html b/docs/functions/index.load.html index d6da628..ba75336 100644 --- a/docs/functions/index.load.html +++ b/docs/functions/index.load.html @@ -156,8 +156,8 @@ --md-sys-color-surface-container-high: #efe7de; --md-sys-color-surface-container-highest: #e9e1d9 } -
  • Called by TypeDoc when loaded as a plugin.

    -

    Parameters

    • app: Application

    Returns void

Generated using TypeDoc

  • Called by TypeDoc when loaded as a plugin.

    +

    Parameters

    • app: Application

    Returns void

Generated using TypeDoc

  • Parameters

    • properties: object

    Returns string[]

Generated using TypeDoc

  • Parameters

    • properties: object

    Returns string[]

Generated using TypeDoc

  • Parameters

    • theme: Theme
    • dark: boolean

    Returns {
        [key: string]: ArgbColor;
    }

Generated using TypeDoc

  • Parameters

    • theme: Theme
    • dark: boolean

    Returns {
        [key: string]: ArgbColor;
    }

Generated using TypeDoc

  • Get the CSS properties from a single color using Material 3.

    +
    • Get the CSS properties from a single color using Material 3.

      Parameters

      • hex: string

      Returns string

      The CSS string with dark and light properties

      -

    Generated using TypeDoc

    Index

    Functions

    load +

    Index

    Functions

    Generated using TypeDoc

    Index

    Type Aliases

    ArgbColor +

    Index

    Type Aliases

    Functions

    getSchemeProperties getSurfaceProperties getThemeCSSProperties diff --git a/package-lock.json b/package-lock.json index 0b606ab..a6e47b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "typedoc-material-theme", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "typedoc-material-theme", - "version": "1.0.1", + "version": "1.0.2", "funding": [ { "type": "individual", diff --git a/package.json b/package.json index 6820527..56708a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typedoc-material-theme", - "version": "1.0.1", + "version": "1.0.2", "description": "A TypeDoc theme based on Material 3.", "keywords": [ "typedoc-theme",