@@ -203,7 +203,7 @@ export class AppFeatures {
Developer Kit
- You rather like to code your presentation with HTML or Markdown? All public features used by our editor are available in a developer kit.
+ Would you rather prepare your presentation with HTML or Markdown? All public features used by our editor are available as a developer kit.
@@ -217,7 +217,7 @@ export class AppFeatures {
.
- We encourage enterprise to adopt this approach but we do understand if you rather like to keep your corporate templates private.
+ We encourage enterprise to adopt this approach but we do understand if you prefer to keep your corporate templates private.
From a6d6910939a39a164c044bd9ff573828f4e50fd4 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Mon, 29 Jun 2020 15:38:23 +0200
Subject: [PATCH 16/29] feat: as discussed, small text update
---
.../app/components/enterprise/app-features/app-features.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/studio/src/app/components/enterprise/app-features/app-features.tsx b/studio/src/app/components/enterprise/app-features/app-features.tsx
index bc04cd197..ac4171eb7 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.tsx
+++ b/studio/src/app/components/enterprise/app-features/app-features.tsx
@@ -21,7 +21,7 @@ export class AppFeatures {
Showcase everywhere
- Presentations work on phones, tablets, computers and more. They are published as standalone apps.
+ Presentations work on computers, phones, tablets and more. They are published as standalone apps.
@@ -33,7 +33,7 @@ export class AppFeatures {
Share standalone apps
- Your presentation are published as standalone Progressive Web Apps. Share them by sending your friends a link.
+ Your presentation are published as standalone Progressive Web Apps. Share them by sending your colleagues and friends a link.
From 34cbf52ea0a616da34029cfe3b09c375126902cb Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Thu, 2 Jul 2020 20:58:13 +0200
Subject: [PATCH 17/29] style: margin top for required fields
---
.../components/enterprise/app-contact-form/app-contact-form.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx b/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx
index 33700f2a0..9b86ff49a 100644
--- a/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx
+++ b/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx
@@ -71,7 +71,7 @@ export class AppContactForm {
)}
{this.status === 'ERROR' && Ooops! There was an error.
}
-
+
* required field
From 9c212e942ec69251b53562f04a9efbed8a5f4835 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Thu, 2 Jul 2020 21:07:03 +0200
Subject: [PATCH 18/29] style: opaque background and spacing
---
.../src/app/pages/core/app-enterprise/app-enterprise.scss | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
index 368d78064..c43b54b4c 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
@@ -66,7 +66,7 @@ app-enterprise {
section.hero {
height: calc(100vh - 56px);
- background: linear-gradient(45deg, var(--ion-color-dark) 5%, var(--ion-color-tertiary) 95%);
+ background: var(--ion-color-dark);
color: var(--ion-color-dark-contrast);
div.content {
@@ -75,6 +75,10 @@ app-enterprise {
height: 100%;
+ h1 {
+ margin-top: 0;
+ }
+
@media (max-width: 992px) {
grid-template-columns: 100%;
}
From 1b564afe4a9d4c0a602f87a803155612a19cc151 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Sun, 12 Jul 2020 16:17:23 +0200
Subject: [PATCH 19/29] feat: add address, support and improve title contrast
---
.../enterprise/app-contact-form/app-contact-form.scss | 8 ++++++++
.../enterprise/app-contact-form/app-contact-form.tsx | 7 +++++++
.../components/enterprise/app-features/app-features.scss | 2 --
.../components/enterprise/app-features/app-features.tsx | 8 ++++++++
4 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/studio/src/app/components/enterprise/app-contact-form/app-contact-form.scss b/studio/src/app/components/enterprise/app-contact-form/app-contact-form.scss
index 09e5cb2b6..26d60a903 100644
--- a/studio/src/app/components/enterprise/app-contact-form/app-contact-form.scss
+++ b/studio/src/app/components/enterprise/app-contact-form/app-contact-form.scss
@@ -20,6 +20,14 @@ section.contact {
p {
width: fit-content;
align-self: center;
+
+ &.address {
+ white-space: pre-wrap;
+ text-align: center;
+ margin: 64px 16px 0;
+ font-size: var(--font-size-normal);
+ line-height: calc(var(--font-size-normal) + 8px);
+ }
}
small {
diff --git a/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx b/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx
index 9b86ff49a..1e4f43ba0 100644
--- a/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx
+++ b/studio/src/app/components/enterprise/app-contact-form/app-contact-form.tsx
@@ -74,6 +74,13 @@ export class AppContactForm {
* required field
+
+
+ {`DeckDeckGo
+c/o The Hub Zürich Association
+Sihlquai 131
+8005 Zürich, Switzerland`}
+
diff --git a/studio/src/app/components/enterprise/app-features/app-features.scss b/studio/src/app/components/enterprise/app-features/app-features.scss
index 3a7fee21d..ea054a20a 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.scss
+++ b/studio/src/app/components/enterprise/app-features/app-features.scss
@@ -32,8 +32,6 @@ app-features {
}
> h2 {
- color: rgba(var(--ion-color-medium-rgb), 0.4);
-
&:not(:first-of-type) {
margin-top: 48px;
}
diff --git a/studio/src/app/components/enterprise/app-features/app-features.tsx b/studio/src/app/components/enterprise/app-features/app-features.tsx
index ac4171eb7..cd5750f47 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.tsx
+++ b/studio/src/app/components/enterprise/app-features/app-features.tsx
@@ -198,6 +198,14 @@ export class AppFeatures {
Organize your company's media library and share it with your teams.
+
+
+ Support
+
+
+ Your inquiries have the highest priorities.
+
+
Developers
From 6463ee771bd998930a1f4ced5769383f8a2318be Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Mon, 13 Jul 2020 16:23:59 +0200
Subject: [PATCH 20/29] feat: review text with inputs from test panel
---
.../enterprise/app-features/app-features.tsx | 10 +++++++++-
.../app/pages/core/app-enterprise/app-enterprise.scss | 4 ++++
.../app/pages/core/app-enterprise/app-enterprise.tsx | 11 ++++++-----
3 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/studio/src/app/components/enterprise/app-features/app-features.tsx b/studio/src/app/components/enterprise/app-features/app-features.tsx
index cd5750f47..9c91effca 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.tsx
+++ b/studio/src/app/components/enterprise/app-features/app-features.tsx
@@ -71,7 +71,7 @@ export class AppFeatures {
Unbreakable templates
- Keep your corporate identity and design up-to-date across all presentations and share them easily.
+ Apply your design, colors, fonts, styles and any other options to your templates. These are those used by your collaborators, period.
@@ -174,6 +174,14 @@ export class AppFeatures {
Publish your decks under your own domain name.
+
+
+ Always up-to-date
+
+
+ Spread your corporate design improvements to all your presentations.
+
+
Archive
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
index c43b54b4c..9d34b729d 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
@@ -137,6 +137,10 @@ app-enterprise {
margin: 0 16px;
color: var(--ion-color-medium);
font-style: italic;
+
+ &:last-of-type {
+ margin: 16px;
+ }
}
}
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
index 7b5f1ac2e..f0eeaa23d 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
@@ -26,7 +26,7 @@ export class AppEnterprise {
The unbreakable slides for your corporate communication.
-
Distribute and keep up-to-date your corporate identity and design across all your company's presentations.
+
Apply your corporate identity and design to your company's presentations.
this.scrollTo(this.formRef)} mode="md" color="tertiary">
Get in touch
@@ -42,15 +42,16 @@ export class AppEnterprise {
❝
Did you had a look to Bob's last presentation? He used our old logo and made it green, again.
+
+ - A sentence your marketing team wish to not hear anymore.
Templates and options that match your CI/CD.
-
- Unlike any other editor for presentations, DeckDeckGo assists you in applying your corporate identity to your company's presentations. The
- templates and set of options you are defining are those your collaborators are using.
-
+
Unlike any other editor for presentations, DeckDeckGo assists you in applying your corporate identity to your company's presentations.
+
+
The design, colors, fonts, styles and any other options you are defining in your templates are those your collaborators are using.
From efe5c27f61a50a56b9db59ad8d1df97c2edeec2c Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Mon, 13 Jul 2020 16:36:21 +0200
Subject: [PATCH 21/29] feat: always display menu entry discover
---
studio/src/app/components/core/app-menu/app-menu.tsx | 4 ----
1 file changed, 4 deletions(-)
diff --git a/studio/src/app/components/core/app-menu/app-menu.tsx b/studio/src/app/components/core/app-menu/app-menu.tsx
index df016c495..c63e72eb1 100644
--- a/studio/src/app/components/core/app-menu/app-menu.tsx
+++ b/studio/src/app/components/core/app-menu/app-menu.tsx
@@ -104,10 +104,6 @@ export class AppMenu {
}
private renderDiscover() {
- if (authStore.state.loggedIn) {
- return undefined;
- }
-
return (
From 5476b3be3052dd4c88ce0daf41936141cb2fab07 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Mon, 13 Jul 2020 19:08:02 +0200
Subject: [PATCH 22/29] feat: text review
---
.../app/components/enterprise/app-features/app-features.tsx | 4 ++--
studio/src/app/pages/core/app-enterprise/app-enterprise.scss | 4 ----
studio/src/app/pages/core/app-enterprise/app-enterprise.tsx | 4 +---
3 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/studio/src/app/components/enterprise/app-features/app-features.tsx b/studio/src/app/components/enterprise/app-features/app-features.tsx
index 9c91effca..a1e287f70 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.tsx
+++ b/studio/src/app/components/enterprise/app-features/app-features.tsx
@@ -71,7 +71,7 @@ export class AppFeatures {
Unbreakable templates
- Apply your design, colors, fonts, styles and any other options to your templates. These are those used by your collaborators, period.
+ Apply your design, colors, fonts, styles and any other options to your templates. Those will be used by all your collaborators.
@@ -179,7 +179,7 @@ export class AppFeatures {
Always up-to-date
- Spread your corporate design improvements to all your presentations.
+ Propagate your corporate design improvements to all your presentations.
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
index 9d34b729d..c43b54b4c 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
@@ -137,10 +137,6 @@ app-enterprise {
margin: 0 16px;
color: var(--ion-color-medium);
font-style: italic;
-
- &:last-of-type {
- margin: 16px;
- }
}
}
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
index f0eeaa23d..304ab99bc 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
@@ -41,9 +41,7 @@ export class AppEnterprise {
❝
- Did you had a look to Bob's last presentation? He used our old logo and made it green, again.
-
- - A sentence your marketing team wish to not hear anymore.
+ Did you have a look at Bob's presentation? He used the wrong logo, again.
Templates and options that match your CI/CD.
From dc8886075b1b0d41b4101fcd30bbe7617e38453e Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Tue, 21 Jul 2020 15:56:55 +0200
Subject: [PATCH 23/29] fix: we are using Tenor not Giphy
---
.../src/app/components/enterprise/app-features/app-features.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/studio/src/app/components/enterprise/app-features/app-features.tsx b/studio/src/app/components/enterprise/app-features/app-features.tsx
index a1e287f70..6ef80be3f 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.tsx
+++ b/studio/src/app/components/enterprise/app-features/app-features.tsx
@@ -99,7 +99,7 @@ export class AppFeatures {
- Unsplash and Giphy
+ Unsplash and Tenor
Search and integrate stock photos and gifs.
From 35eac96ac9db5757a154c3b6810401e656f1cf4f Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Tue, 28 Jul 2020 20:40:33 +0200
Subject: [PATCH 24/29] merge: from master
---
CHANGELOG.md | 14 +-
README.md | 2 +-
docs/CHANGELOG.md | 6 +
.../app-components-color.md | 27 ++-
docs/package-lock.json | 2 +-
docs/package.json | 2 +-
webcomponents/color/CHANGELOG.md | 12 ++
webcomponents/color/package-lock.json | 155 +++++++-----------
webcomponents/color/package.json | 8 +-
webcomponents/color/src/components.d.ts | 2 +-
.../src/components/color/deckdeckgo-color.tsx | 2 +-
11 files changed, 119 insertions(+), 113 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b3f70d5c3..60c7c3239 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,18 @@
+
+
+# [2.1.0](https://github.com/deckgo/deckdeckgo/compare/v2.0.0...v2.1.0) (In progress..)
+
+### Applications
+
+- docs: v1.7.1 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/docs/CHANGELOG.md))
+
+### Web Components
+
+- color: v2.1.1 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/webcomponents/color/CHANGELOG.md))
+
-# [2.0.0](https://github.com/deckgo/deckdeckgo/compare/v1.5.0...v1.6.0) (In progress...)
+# [2.0.0](https://github.com/deckgo/deckdeckgo/compare/v1.5.0...v2.0.0) (2020-07-23)
### Breaking Changes
diff --git a/README.md b/README.md
index 69437c8b9..1dbb7753e 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ Are you interested to contribute to our open source project? That would be aweso
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- | :--------------------------------------------------: | :--------------------------------: |
| **Studio** | [](https://deckdeckgo.com) | [https://deckdeckgo.com](https://deckdeckgo.com) | [`README`](studio/README.md) | [`CHANGELOG`](studio/CHANGELOG.md) |
| **Remote control** | [](https://deckdeckgo.app) | [https://deckdeckgo.app](https://deckdeckgo.app) | [`README`](remote/README.md) | [`CHANGELOG`](remote/CHANGELOG.md) |
-| **Documentation** | [](https://docs.deckdeckgo.com) | [https://docs.deckdeckgo.com](https://docs.deckdeckgo.com) | [`README`](docs/README.md) | [`CHANGELOG`](docs/CHANGELOG.md) |
+| **Documentation** | [](https://docs.deckdeckgo.com) | [https://docs.deckdeckgo.com](https://docs.deckdeckgo.com) | [`README`](docs/README.md) | [`CHANGELOG`](docs/CHANGELOG.md) |
| **Demo** | [](https://demo.deckdeckgo.com) | [https://demo.deckdeckgo.com](https://demo.deckdeckgo.com) | [`Repo`](https://github.com/deckgo/deckdeckgo-demo/) | |
## Web Components
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index a9430b16f..279802291 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 1.7.1 (2020-07-28)
+
+### Features
+
+- `part` option for `@deckdeckgo/color` component
+
# 1.7.0 (2020-07-11)
### Features
diff --git a/docs/docs/components/app-components-color/app-components-color.md b/docs/docs/components/app-components-color/app-components-color.md
index efd99754c..15d364988 100644
--- a/docs/docs/components/app-components-color/app-components-color.md
+++ b/docs/docs/components/app-components-color/app-components-color.md
@@ -6,14 +6,21 @@ It is fully configurable in terms of colors, you could define the set of colors
## Table of contents
-- [Showcase](#app-components-color-showcase)
-- [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)
-- [Usage](#app-components-color-usage)
- - [Slots](#app-components-color-slots)
- - [Attributes](#app-components-color-attributes)
- - [Theming](#app-components-color-theming)
- - [Methods](#app-components-color-methods)
-- [Trying it out](#app-components-color-trying-it-out)
+- [Color Picker](#color-picker)
+ - [Table of contents](#table-of-contents)
+ - [Showcase](#showcase)
+ - [Installation](#installation)
+ - [Using from a CDN](#using-from-a-cdn)
+ - [Install from NPM](#install-from-npm)
+ - [Framework integration](#framework-integration)
+ - [Import](#import)
+ - [Loader](#loader)
+ - [Usage](#usage)
+ - [Slots](#slots)
+ - [Attributes](#attributes)
+ - [Palette](#palette)
+ - [Theming](#theming)
+ - [Events](#events)
## Showcase
@@ -225,6 +232,10 @@ The following theming options will affect this component if set on its host or p
| --deckgo-color-label-text-align | center | Text alignment of the color description |
| --deckgo-color-label-color-font-weight | 300 | Font weight of the hexadecimal value of the color description |
+| Shadow-DOM part | Note |
+| --------------- | ------------------------------------------------------ |
+| container | Allows to style the container the color buttons are in |
+
### Events
To listen to the selected color you have to subscribe to the following event:
diff --git a/docs/package-lock.json b/docs/package-lock.json
index 6512a2f60..671403a72 100644
--- a/docs/package-lock.json
+++ b/docs/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "deckdeckgo-docs",
- "version": "1.7.0",
+ "version": "1.7.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/docs/package.json b/docs/package.json
index bb686c930..a92e55280 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "deckdeckgo-docs",
- "version": "1.7.0",
+ "version": "1.7.1",
"description": "The Progressive Web App alternative for simple presentations",
"license": "MIT",
"files": [
diff --git a/webcomponents/color/CHANGELOG.md b/webcomponents/color/CHANGELOG.md
index 354b585f5..00a6cad7c 100644
--- a/webcomponents/color/CHANGELOG.md
+++ b/webcomponents/color/CHANGELOG.md
@@ -1,3 +1,15 @@
+# 2.1.1 (2020-07-28)
+
+### Fix
+
+- bump for npmjs publishing
+
+# 2.1.0 (2020-07-28)
+
+### Features
+
+- allow container to be access via `part` ([#811](https://github.com/deckgo/deckdeckgo/pull/811))
+
# 2.0.0 (2020-05-15)
### Breaking
diff --git a/webcomponents/color/package-lock.json b/webcomponents/color/package-lock.json
index f95d90b5a..80a43a32c 100644
--- a/webcomponents/color/package-lock.json
+++ b/webcomponents/color/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@deckdeckgo/color",
- "version": "2.0.0",
+ "version": "2.1.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@@ -45,12 +45,12 @@
"integrity": "sha512-/bomB2gBlEuXmLSXCHujABB1EYDTrcK/IQaH9NFh6ZUB+dEfb3L3uCof8RyUvQcEzqhVJJa63ZBnDnitJSOWYg=="
},
"@stencil/core": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/@stencil/core/-/core-1.13.0.tgz",
- "integrity": "sha512-++kIXaEgmwm/vq+9QAVHPuLLddCKVdJyI8OfHxknkpu5udxZMYA/vaN/K9i+2NIiTLbGpvHNk9E+RyYzKxS0XQ==",
+ "version": "1.17.2",
+ "resolved": "https://registry.npmjs.org/@stencil/core/-/core-1.17.2.tgz",
+ "integrity": "sha512-jNEpBxoQFk6J1kSmm84AL/qgN0hySmKN5FZ0Pr16RAZU2TwKRLE1W2V8GcJXOFqd3yDVV+/4Fmyl1DD74/zbiQ==",
"dev": true,
"requires": {
- "typescript": "3.8.3"
+ "typescript": "3.9.7"
}
},
"@stencil/postcss": {
@@ -63,9 +63,9 @@
}
},
"@stencil/sass": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@stencil/sass/-/sass-1.3.1.tgz",
- "integrity": "sha512-5qsEyhLGTywpG4zlWv6eBhhj/z2Z37nbUGa87Ak0KqfsEiclJCYRA/AMM9FiN1jHfBvr968G4zE8rNlYmiPLsQ==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@stencil/sass/-/sass-1.3.2.tgz",
+ "integrity": "sha512-w6rkOsRIPY1rBa/13Wf+rMZrOzc6z86/Mkp3inzaYGsxBmLkf4PeP1rfaUB4SFDVRfMduP7FTd4ZJi/+FVrsMw==",
"dev": true
},
"@types/color-name": {
@@ -114,18 +114,31 @@
"dev": true
},
"autoprefixer": {
- "version": "9.7.6",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.6.tgz",
- "integrity": "sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ==",
+ "version": "9.8.5",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.5.tgz",
+ "integrity": "sha512-C2p5KkumJlsTHoNv9w31NrBRgXhf6eCMteJuHZi2xhkgC+5Vm40MEtCKPhc0qdgAOhox0YPy1SQHTAky05UoKg==",
"dev": true,
"requires": {
- "browserslist": "^4.11.1",
- "caniuse-lite": "^1.0.30001039",
- "chalk": "^2.4.2",
+ "browserslist": "^4.12.0",
+ "caniuse-lite": "^1.0.30001097",
+ "colorette": "^1.2.0",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
- "postcss": "^7.0.27",
- "postcss-value-parser": "^4.0.3"
+ "postcss": "^7.0.32",
+ "postcss-value-parser": "^4.1.0"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "7.0.32",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
+ "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.2",
+ "source-map": "^0.6.1",
+ "supports-color": "^6.1.0"
+ }
+ }
}
},
"balanced-match": {
@@ -145,15 +158,15 @@
}
},
"browserslist": {
- "version": "4.12.0",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
- "integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
+ "version": "4.13.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.13.0.tgz",
+ "integrity": "sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==",
"dev": true,
"requires": {
- "caniuse-lite": "^1.0.30001043",
- "electron-to-chromium": "^1.3.413",
- "node-releases": "^1.1.53",
- "pkg-up": "^2.0.0"
+ "caniuse-lite": "^1.0.30001093",
+ "electron-to-chromium": "^1.3.488",
+ "escalade": "^3.0.1",
+ "node-releases": "^1.1.58"
}
},
"callsites": {
@@ -163,9 +176,9 @@
"dev": true
},
"caniuse-lite": {
- "version": "1.0.30001055",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz",
- "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==",
+ "version": "1.0.30001107",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001107.tgz",
+ "integrity": "sha512-86rCH+G8onCmdN4VZzJet5uPELII59cUzDphko3thQFgAQG1RNa+sVLDoALIhRYmflo5iSIzWY3vu1XTWtNMQQ==",
"dev": true
},
"chalk": {
@@ -211,6 +224,12 @@
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
+ "colorette": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz",
+ "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==",
+ "dev": true
+ },
"compare-versions": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz",
@@ -248,9 +267,9 @@
}
},
"electron-to-chromium": {
- "version": "1.3.432",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz",
- "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==",
+ "version": "1.3.510",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.510.tgz",
+ "integrity": "sha512-sLtGB0znXdmo6lM8hy5wTVo+fLqvIuO8hEpgc0DvPmFZqvBu/WB7AarEwhxVKjf3rVbws/rC8Xf+AlsOb36lJQ==",
"dev": true
},
"end-of-stream": {
@@ -271,6 +290,12 @@
"is-arrayish": "^0.2.1"
}
},
+ "escalade": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz",
+ "integrity": "sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==",
+ "dev": true
+ },
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
@@ -500,9 +525,9 @@
}
},
"node-releases": {
- "version": "1.1.55",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.55.tgz",
- "integrity": "sha512-H3R3YR/8TjT5WPin/wOoHOUPHgvj8leuU/Keta/rwelEQN9pA/S2Dx8/se4pZ2LBxSd0nAGzsNzhqwa77v7F1w==",
+ "version": "1.1.60",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz",
+ "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==",
"dev": true
},
"normalize-range": {
@@ -628,66 +653,6 @@
"find-up": "^4.0.0"
}
},
- "pkg-up": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
- "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
- "dev": true,
- "requires": {
- "find-up": "^2.1.0"
- },
- "dependencies": {
- "find-up": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
- "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
- "dev": true,
- "requires": {
- "locate-path": "^2.0.0"
- }
- },
- "locate-path": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
- "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
- "dev": true,
- "requires": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- }
- },
- "p-limit": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
- "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
- "dev": true,
- "requires": {
- "p-try": "^1.0.0"
- }
- },
- "p-locate": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
- "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
- "dev": true,
- "requires": {
- "p-limit": "^1.1.0"
- }
- },
- "p-try": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
- "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
- "dev": true
- },
- "path-exists": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
- "dev": true
- }
- }
- },
"please-upgrade-node": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz",
@@ -817,9 +782,9 @@
}
},
"typescript": {
- "version": "3.8.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz",
- "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==",
+ "version": "3.9.7",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz",
+ "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==",
"dev": true
},
"which": {
diff --git a/webcomponents/color/package.json b/webcomponents/color/package.json
index 77df725ff..240a7dc37 100644
--- a/webcomponents/color/package.json
+++ b/webcomponents/color/package.json
@@ -1,6 +1,6 @@
{
"name": "@deckdeckgo/color",
- "version": "2.0.0",
+ "version": "2.1.1",
"description": "A color picker developed with Web Components",
"main": "dist/index.js",
"module": "dist/index.mjs",
@@ -23,10 +23,10 @@
"generate": "stencil generate"
},
"devDependencies": {
- "@stencil/core": "^1.13.0",
+ "@stencil/core": "^1.17.2",
"@stencil/postcss": "^1.0.1",
- "@stencil/sass": "^1.3.1",
- "autoprefixer": "^9.7.6",
+ "@stencil/sass": "^1.3.2",
+ "autoprefixer": "^9.8.5",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1"
diff --git a/webcomponents/color/src/components.d.ts b/webcomponents/color/src/components.d.ts
index 0574bb3a7..4d17491fa 100644
--- a/webcomponents/color/src/components.d.ts
+++ b/webcomponents/color/src/components.d.ts
@@ -5,7 +5,7 @@
* It contains typing information for all components that exist in this project.
*/
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
-import { DeckdeckgoPalette, DeckdeckgoPaletteColor, } from "./utils/deckdeckgo-palette";
+import { DeckdeckgoPalette, DeckdeckgoPaletteColor } from "./utils/deckdeckgo-palette";
export namespace Components {
interface DeckgoColor {
"colorHex": string;
diff --git a/webcomponents/color/src/components/color/deckdeckgo-color.tsx b/webcomponents/color/src/components/color/deckdeckgo-color.tsx
index 08b5c693e..7fe779843 100644
--- a/webcomponents/color/src/components/color/deckdeckgo-color.tsx
+++ b/webcomponents/color/src/components/color/deckdeckgo-color.tsx
@@ -237,7 +237,7 @@ export class DeckdeckgoColor {
render() {
return (
-
+
{this.renderPalette()}
{this.renderMore()}
From 0306166deb0e9224ddd344742fbaa739e4088561 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Tue, 28 Jul 2020 21:00:51 +0200
Subject: [PATCH 25/29] feat: Matt's inputs
---
.../enterprise/app-features/app-features.tsx | 2 +-
.../app/pages/core/app-enterprise/app-enterprise.scss | 4 ++--
.../app/pages/core/app-enterprise/app-enterprise.tsx | 10 ++++++----
3 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/studio/src/app/components/enterprise/app-features/app-features.tsx b/studio/src/app/components/enterprise/app-features/app-features.tsx
index 6ef80be3f..41af82524 100644
--- a/studio/src/app/components/enterprise/app-features/app-features.tsx
+++ b/studio/src/app/components/enterprise/app-features/app-features.tsx
@@ -163,7 +163,7 @@ export class AppFeatures {
In housing
- Integrate DeckDeckGo in your infrastructure and private network.
+ Integrate DeckDeckGo into your private infrastructure and networks.
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
index c43b54b4c..d693c0fd3 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.scss
@@ -26,7 +26,7 @@ app-enterprise {
}
h1 {
- font-size: 48px;
+ font-size: 42px;
font-weight: 700;
}
@@ -71,7 +71,7 @@ app-enterprise {
div.content {
display: grid;
- grid-template-columns: repeat(2, 50%);
+ grid-template-columns: 60% 40%;
height: 100%;
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
index 304ab99bc..5eb072957 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
@@ -25,8 +25,10 @@ export class AppEnterprise {
-
The unbreakable slides for your corporate communication.
-
Apply your corporate identity and design to your company's presentations.
+
Professional presentation building, custom tailored to your brand.
+
+ Easily apply your corporate identity and design across all your company’s presentations. Secure distribution and maintenance.
+
this.scrollTo(this.formRef)} mode="md" color="tertiary">
Get in touch
@@ -41,7 +43,7 @@ export class AppEnterprise {
❝
- Did you have a look at Bob's presentation? He used the wrong logo, again.
+ Did you see Bob’s presentation? He used the wrong logo, again.
Templates and options that match your CI/CD.
@@ -53,7 +55,7 @@ export class AppEnterprise {
-
Together with your designers, we create unbreakable slides.
+
Together with your designers, we create unbreakable slides for your design systems.
Moreover, rolling out new design and logo has never been so easy and DeckDeckGo can offer so much more.
From 4c8eae63866061c610a31b2dce54681a3bf1fb91 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Tue, 28 Jul 2020 21:07:19 +0200
Subject: [PATCH 26/29] feat: read
---
studio/src/app/pages/core/app-enterprise/app-enterprise.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
index 5eb072957..cfc8b297a 100644
--- a/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
+++ b/studio/src/app/pages/core/app-enterprise/app-enterprise.tsx
@@ -25,7 +25,7 @@ export class AppEnterprise {
-
Professional presentation building, custom tailored to your brand.
+ Professional presentation building, tailored to your brand.
Easily apply your corporate identity and design across all your company’s presentations. Secure distribution and maintenance.
@@ -55,7 +55,7 @@ export class AppEnterprise {
-
Together with your designers, we create unbreakable slides for your design systems.
+
Together with your designers, we create unbreakable slides that match your design systems.
Moreover, rolling out new design and logo has never been so easy and DeckDeckGo can offer so much more.
From 2728f001963fcc61983854739fb0b769efa58b9b Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Wed, 29 Jul 2020 18:05:51 +0200
Subject: [PATCH 27/29] feat: list press coverage
---
.../pages/core/about/app-press/app-press.scss | 9 +++
.../pages/core/about/app-press/app-press.tsx | 57 +++++++++++++++++--
2 files changed, 62 insertions(+), 4 deletions(-)
diff --git a/studio/src/app/pages/core/about/app-press/app-press.scss b/studio/src/app/pages/core/about/app-press/app-press.scss
index 141e3fdbd..1b7110fbe 100644
--- a/studio/src/app/pages/core/about/app-press/app-press.scss
+++ b/studio/src/app/pages/core/about/app-press/app-press.scss
@@ -1,5 +1,14 @@
app-press {
main {
background: white;
+
+ article {
+ display: flex;
+ flex-direction: column;
+
+ span {
+ color: var(--ion-color-medium);
+ }
+ }
}
}
diff --git a/studio/src/app/pages/core/about/app-press/app-press.tsx b/studio/src/app/pages/core/about/app-press/app-press.tsx
index 4bc226f7b..5c8f0f77e 100644
--- a/studio/src/app/pages/core/about/app-press/app-press.tsx
+++ b/studio/src/app/pages/core/about/app-press/app-press.tsx
@@ -2,7 +2,7 @@ import {Component, h} from '@stencil/core';
@Component({
tag: 'app-press',
- styleUrl: 'app-press.scss'
+ styleUrl: 'app-press.scss',
})
export class AppPress {
render() {
@@ -13,8 +13,8 @@ export class AppPress {
Press
- We don't provide any press kit yet but, as we are open source and open to any contributions, we would be happy to get your help to create such
- material 😄
+ We don't provide any press kit yet but, as we are open source and are welcoming any contributions, we would be happy to get your help to create such
+ material 😄.
@@ -28,8 +28,57 @@ export class AppPress {
{' '}
us for any inquiries.
+
+ Featured Stories
+
+
+
+ Why building presentations with web standards makes sense
+
+
+ 2020-05-06
+
+
+
+
+
+ ブラウザ上でスライド作ってプレゼンするDeckDeckGoをローカル環境で構築して脱パワポしてみた
+
+
+ 2019-10-06
+
+
+
+
+
+ Crea presentaciones con diapositivas rápidamente
+
+
+ 2019-09-25
+
+
+
+
+
+ Shortlisted for the DINAcon Awards 2019
+
+
+ 2019-09-24
+
+
+
+
+
+ リモートコントロールもできるPWAのHTMLスライド
+
+
+ 2019-09-01
+
+
-
+ ,
];
}
}
From 4a9c3fe4f430c731ce6fdcd45bb93a3331b1a4fc Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Wed, 29 Jul 2020 18:08:40 +0200
Subject: [PATCH 28/29] feat: text
---
studio/src/app/pages/core/about/app-press/app-press.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/studio/src/app/pages/core/about/app-press/app-press.tsx b/studio/src/app/pages/core/about/app-press/app-press.tsx
index 5c8f0f77e..5a481b3b4 100644
--- a/studio/src/app/pages/core/about/app-press/app-press.tsx
+++ b/studio/src/app/pages/core/about/app-press/app-press.tsx
@@ -13,12 +13,12 @@ export class AppPress {
Press
- We don't provide any press kit yet but, as we are open source and are welcoming any contributions, we would be happy to get your help to create such
- material 😄.
+ We don't provide unfortunately any press kit yet. We are open source and are welcoming any contributions, we would be happy to get your help to
+ create such material 😄.
- That being said, you could download our logo as a{' '}
+ That being said, you can download our logo as a{' '}
svg
{' '}
From 625aef33836b3f1e8c173876bf06577c51e55521 Mon Sep 17 00:00:00 2001
From: peterpeterparker
Date: Wed, 29 Jul 2020 18:19:10 +0200
Subject: [PATCH 29/29] merge: from master
---
CHANGELOG.md | 2 +-
webcomponents/color/CHANGELOG.md | 6 ++++++
webcomponents/color/package-lock.json | 2 +-
webcomponents/color/package.json | 2 +-
webcomponents/color/src/index.ts | 4 ++--
5 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 60c7c3239..5f821cf5b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,7 +8,7 @@
### Web Components
-- color: v2.1.1 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/webcomponents/color/CHANGELOG.md))
+- color: v2.1.2 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/webcomponents/color/CHANGELOG.md))
diff --git a/webcomponents/color/CHANGELOG.md b/webcomponents/color/CHANGELOG.md
index 00a6cad7c..70a154e77 100644
--- a/webcomponents/color/CHANGELOG.md
+++ b/webcomponents/color/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 2.1.2 (2020-07-29)
+
+### Fix
+
+- `Rollup: Unresolved Import Could not resolve './components' from ./node_modules/@deckdeckgo/color/dist/collection/index.js at error`
+
# 2.1.1 (2020-07-28)
### Fix
diff --git a/webcomponents/color/package-lock.json b/webcomponents/color/package-lock.json
index 80a43a32c..448755574 100644
--- a/webcomponents/color/package-lock.json
+++ b/webcomponents/color/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@deckdeckgo/color",
- "version": "2.1.1",
+ "version": "2.1.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/webcomponents/color/package.json b/webcomponents/color/package.json
index 240a7dc37..f754db55d 100644
--- a/webcomponents/color/package.json
+++ b/webcomponents/color/package.json
@@ -1,6 +1,6 @@
{
"name": "@deckdeckgo/color",
- "version": "2.1.1",
+ "version": "2.1.2",
"description": "A color picker developed with Web Components",
"main": "dist/index.js",
"module": "dist/index.mjs",
diff --git a/webcomponents/color/src/index.ts b/webcomponents/color/src/index.ts
index 4f5794296..3f42b019b 100644
--- a/webcomponents/color/src/index.ts
+++ b/webcomponents/color/src/index.ts
@@ -1,3 +1,3 @@
-export * from './components';
+export type {Components, JSX} from './components';
-export * from './utils/deckdeckgo-palette';
\ No newline at end of file
+export * from './utils/deckdeckgo-palette';