Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 35eac96

Browse files
merge: from master
1 parent c65c9ab commit 35eac96

File tree

11 files changed

+119
-113
lines changed

11 files changed

+119
-113
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
<a name="2.1.0"></a>
2+
3+
# [2.1.0](https://github.com/deckgo/deckdeckgo/compare/v2.0.0...v2.1.0) (In progress..)
4+
5+
### Applications
6+
7+
- docs: v1.7.1 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/docs/CHANGELOG.md))
8+
9+
### Web Components
10+
11+
- color: v2.1.1 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/webcomponents/color/CHANGELOG.md))
12+
113
<a name="2.0.0"></a>
214

3-
# [2.0.0](https://github.com/deckgo/deckdeckgo/compare/v1.5.0...v1.6.0) (In progress...)
15+
# [2.0.0](https://github.com/deckgo/deckdeckgo/compare/v1.5.0...v2.0.0) (2020-07-23)
416

517
### Breaking Changes
618

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Are you interested to contribute to our open source project? That would be aweso
4747
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- | :--------------------------------------------------: | :--------------------------------: |
4848
| **Studio** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v2.0.0&color=success)](https://deckdeckgo.com) | [https://deckdeckgo.com](https://deckdeckgo.com) | [`README`](studio/README.md) | [`CHANGELOG`](studio/CHANGELOG.md) |
4949
| **Remote control** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.6.0&color=success)](https://deckdeckgo.app) | [https://deckdeckgo.app](https://deckdeckgo.app) | [`README`](remote/README.md) | [`CHANGELOG`](remote/CHANGELOG.md) |
50-
| **Documentation** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.7.0&color=success)](https://docs.deckdeckgo.com) | [https://docs.deckdeckgo.com](https://docs.deckdeckgo.com) | [`README`](docs/README.md) | [`CHANGELOG`](docs/CHANGELOG.md) |
50+
| **Documentation** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.7.1&color=success)](https://docs.deckdeckgo.com) | [https://docs.deckdeckgo.com](https://docs.deckdeckgo.com) | [`README`](docs/README.md) | [`CHANGELOG`](docs/CHANGELOG.md) |
5151
| **Demo** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v2.4.0&color=success)](https://demo.deckdeckgo.com) | [https://demo.deckdeckgo.com](https://demo.deckdeckgo.com) | [`Repo`](https://github.com/deckgo/deckdeckgo-demo/) | |
5252

5353
## Web Components

docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.7.1 (2020-07-28)
2+
3+
### Features
4+
5+
- `part` option for `@deckdeckgo/color` component
6+
17
# 1.7.0 (2020-07-11)
28

39
### Features

docs/docs/components/app-components-color/app-components-color.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@ It is fully configurable in terms of colors, you could define the set of colors
66

77
## Table of contents
88

9-
- [Showcase](#app-components-color-showcase)
10-
- [Installation](#app-components-color-installation) - [Using from a CDN](#app-components-color-from-a-cdn) - [Install from NPM](#app-components-color-from-npm) - [Framework integration](#app-components-color-framework-integration)
11-
- [Usage](#app-components-color-usage)
12-
- [Slots](#app-components-color-slots)
13-
- [Attributes](#app-components-color-attributes)
14-
- [Theming](#app-components-color-theming)
15-
- [Methods](#app-components-color-methods)
16-
- [Trying it out](#app-components-color-trying-it-out)
9+
- [Color Picker](#color-picker)
10+
- [Table of contents](#table-of-contents)
11+
- [Showcase](#showcase)
12+
- [Installation](#installation)
13+
- [Using from a CDN](#using-from-a-cdn)
14+
- [Install from NPM](#install-from-npm)
15+
- [Framework integration](#framework-integration)
16+
- [Import](#import)
17+
- [Loader](#loader)
18+
- [Usage](#usage)
19+
- [Slots](#slots)
20+
- [Attributes](#attributes)
21+
- [Palette](#palette)
22+
- [Theming](#theming)
23+
- [Events](#events)
1724

1825
## Showcase
1926

@@ -225,6 +232,10 @@ The following theming options will affect this component if set on its host or p
225232
| --deckgo-color-label-text-align | center | Text alignment of the color description |
226233
| --deckgo-color-label-color-font-weight | 300 | Font weight of the hexadecimal value of the color description |
227234

235+
| Shadow-DOM part | Note |
236+
| --------------- | ------------------------------------------------------ |
237+
| container | Allows to style the container the color buttons are in |
238+
228239
### Events
229240

230241
To listen to the selected color you have to subscribe to the following event:

docs/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckdeckgo-docs",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "The Progressive Web App alternative for simple presentations",
55
"license": "MIT",
66
"files": [

webcomponents/color/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 2.1.1 (2020-07-28)
2+
3+
### Fix
4+
5+
- bump for npmjs publishing
6+
7+
# 2.1.0 (2020-07-28)
8+
9+
### Features
10+
11+
- allow container to be access via `part` ([#811](https://github.com/deckgo/deckdeckgo/pull/811))
12+
113
# 2.0.0 (2020-05-15)
214

315
### Breaking

webcomponents/color/package-lock.json

Lines changed: 60 additions & 95 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webcomponents/color/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deckdeckgo/color",
3-
"version": "2.0.0",
3+
"version": "2.1.1",
44
"description": "A color picker developed with Web Components",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -23,10 +23,10 @@
2323
"generate": "stencil generate"
2424
},
2525
"devDependencies": {
26-
"@stencil/core": "^1.13.0",
26+
"@stencil/core": "^1.17.2",
2727
"@stencil/postcss": "^1.0.1",
28-
"@stencil/sass": "^1.3.1",
29-
"autoprefixer": "^9.7.6",
28+
"@stencil/sass": "^1.3.2",
29+
"autoprefixer": "^9.8.5",
3030
"husky": "^4.2.5",
3131
"prettier": "2.0.5",
3232
"pretty-quick": "^2.0.1"

webcomponents/color/src/components.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* It contains typing information for all components that exist in this project.
66
*/
77
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
8-
import { DeckdeckgoPalette, DeckdeckgoPaletteColor, } from "./utils/deckdeckgo-palette";
8+
import { DeckdeckgoPalette, DeckdeckgoPaletteColor } from "./utils/deckdeckgo-palette";
99
export namespace Components {
1010
interface DeckgoColor {
1111
"colorHex": string;

0 commit comments

Comments
 (0)