From 81f193a9608bd323bfa398cc02973c18785085be Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 1 Sep 2022 17:55:10 +0000 Subject: [PATCH 1/9] fix(skeleton-text): use component name for files --- static/usage/skeleton-text/basic/angular/angular-ts.md | 8 ++++---- static/usage/skeleton-text/basic/index.md | 4 ++-- static/usage/skeleton-text/theming/index.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/static/usage/skeleton-text/basic/angular/angular-ts.md b/static/usage/skeleton-text/basic/angular/angular-ts.md index 1931197e875..8b30337848c 100644 --- a/static/usage/skeleton-text/basic/angular/angular-ts.md +++ b/static/usage/skeleton-text/basic/angular/angular-ts.md @@ -2,11 +2,11 @@ import { Component } from '@angular/core'; @Component({ - selector: 'app-root', - templateUrl: 'app.component.html', - styleUrls: ['app.component.css'] + selector: 'app-example', + templateUrl: 'example.component.html', + styleUrls: ['example.component.css'] }) -export class AppComponent { +export class ExampleComponent { public loaded = false; } diff --git a/static/usage/skeleton-text/basic/index.md b/static/usage/skeleton-text/basic/index.md index a605ef2462f..f8020e180a4 100644 --- a/static/usage/skeleton-text/basic/index.md +++ b/static/usage/skeleton-text/basic/index.md @@ -14,8 +14,8 @@ import angularTS from './angular/angular-ts.md'; vue, angular: { files: { - 'src/app/app.component.html': angularHTML, - 'src/app/app.component.ts': angularTS + 'src/app/example.component.html': angularHTML, + 'src/app/example.component.ts': angularTS } }, }} diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index 7f7cde7b91d..b6d29b41248 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -22,8 +22,8 @@ import angularCSS from './angular/angular-css.md'; vue, angular: { files: { - 'src/app/app.component.html': angularHTML, - 'src/app/app.component.css': angularCSS + 'src/app/example.component.html': angularHTML, + 'src/app/example.component.css': angularCSS } }, }} From aab0cbeee43536284965aba01de1751390cc2177 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 1 Sep 2022 18:43:52 +0000 Subject: [PATCH 2/9] chore(): force deploy again --- static/usage/skeleton-text/theming/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index b6d29b41248..881db12b5ca 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -27,6 +27,6 @@ import angularCSS from './angular/angular-css.md'; } }, }} - src="usage/skeleton-text/theming/demo.html" + src="usage/skeleton-text/theming/demo.html" size="250px" /> From c413a250053cfe5897c6862d62da7acd782a8642 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 1 Sep 2022 14:43:59 -0400 Subject: [PATCH 3/9] Revert "chore(): force deploy again" This reverts commit aab0cbeee43536284965aba01de1751390cc2177. --- static/usage/skeleton-text/theming/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index 881db12b5ca..b6d29b41248 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -27,6 +27,6 @@ import angularCSS from './angular/angular-css.md'; } }, }} - src="usage/skeleton-text/theming/demo.html" + src="usage/skeleton-text/theming/demo.html" size="250px" /> From c8e0eaab8405eef7c94a7c152f07c9c98bd015fe Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 1 Sep 2022 18:44:49 +0000 Subject: [PATCH 4/9] chore(): fix react naming --- .../skeleton-text/theming/react/{react-css.md => main-css.md} | 0 .../skeleton-text/theming/react/{react-tsx.md => main-tsx.md} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename static/usage/skeleton-text/theming/react/{react-css.md => main-css.md} (100%) rename static/usage/skeleton-text/theming/react/{react-tsx.md => main-tsx.md} (100%) diff --git a/static/usage/skeleton-text/theming/react/react-css.md b/static/usage/skeleton-text/theming/react/main-css.md similarity index 100% rename from static/usage/skeleton-text/theming/react/react-css.md rename to static/usage/skeleton-text/theming/react/main-css.md diff --git a/static/usage/skeleton-text/theming/react/react-tsx.md b/static/usage/skeleton-text/theming/react/main-tsx.md similarity index 100% rename from static/usage/skeleton-text/theming/react/react-tsx.md rename to static/usage/skeleton-text/theming/react/main-tsx.md From 0cf3c4743970a84b84d43e29a17d5c9daeeb5480 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 1 Sep 2022 18:45:51 +0000 Subject: [PATCH 5/9] chore(): fix angular naming --- .../{angular-html.md => example_component_html.md} | 0 .../angular/{angular-ts.md => example_component_ts.md} | 0 .../angular/{angular-css.md => example_component_css.md} | 0 .../{angular-html.md => example_component_html.md} | 0 static/usage/skeleton-text/theming/index.md | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename static/usage/skeleton-text/basic/angular/{angular-html.md => example_component_html.md} (100%) rename static/usage/skeleton-text/basic/angular/{angular-ts.md => example_component_ts.md} (100%) rename static/usage/skeleton-text/theming/angular/{angular-css.md => example_component_css.md} (100%) rename static/usage/skeleton-text/theming/angular/{angular-html.md => example_component_html.md} (100%) diff --git a/static/usage/skeleton-text/basic/angular/angular-html.md b/static/usage/skeleton-text/basic/angular/example_component_html.md similarity index 100% rename from static/usage/skeleton-text/basic/angular/angular-html.md rename to static/usage/skeleton-text/basic/angular/example_component_html.md diff --git a/static/usage/skeleton-text/basic/angular/angular-ts.md b/static/usage/skeleton-text/basic/angular/example_component_ts.md similarity index 100% rename from static/usage/skeleton-text/basic/angular/angular-ts.md rename to static/usage/skeleton-text/basic/angular/example_component_ts.md diff --git a/static/usage/skeleton-text/theming/angular/angular-css.md b/static/usage/skeleton-text/theming/angular/example_component_css.md similarity index 100% rename from static/usage/skeleton-text/theming/angular/angular-css.md rename to static/usage/skeleton-text/theming/angular/example_component_css.md diff --git a/static/usage/skeleton-text/theming/angular/angular-html.md b/static/usage/skeleton-text/theming/angular/example_component_html.md similarity index 100% rename from static/usage/skeleton-text/theming/angular/angular-html.md rename to static/usage/skeleton-text/theming/angular/example_component_html.md diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index b6d29b41248..339f7879b81 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -2,13 +2,13 @@ import Playground from '@site/src/components/global/Playground'; import javascript from './javascript.md'; -import reactTSX from './react/react-tsx.md'; -import reactCSS from './react/react-css.md'; +import reactTSX from './react/main-tsx.md'; +import reactCSS from './react/main-css.md'; import vue from './vue.md'; -import angularHTML from './angular/angular-html.md'; -import angularCSS from './angular/angular-css.md'; +import angularHTML from './angular/example_component-html.md'; +import angularCSS from './angular/example_component-css.md'; Date: Thu, 1 Sep 2022 14:47:56 -0400 Subject: [PATCH 6/9] Update static/usage/skeleton-text/theming/index.md Co-authored-by: Brandy Carney --- static/usage/skeleton-text/theming/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index 339f7879b81..c17ec1cb5a1 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -8,7 +8,7 @@ import reactCSS from './react/main-css.md'; import vue from './vue.md'; import angularHTML from './angular/example_component-html.md'; -import angularCSS from './angular/example_component-css.md'; +import angularCSS from './angular/example_component_css.md'; Date: Thu, 1 Sep 2022 14:48:08 -0400 Subject: [PATCH 7/9] Update static/usage/skeleton-text/theming/index.md Co-authored-by: Brandy Carney --- static/usage/skeleton-text/theming/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index c17ec1cb5a1..652d66dc4e1 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -7,7 +7,7 @@ import reactCSS from './react/main-css.md'; import vue from './vue.md'; -import angularHTML from './angular/example_component-html.md'; +import angularHTML from './angular/example_component_html.md'; import angularCSS from './angular/example_component_css.md'; Date: Thu, 1 Sep 2022 18:49:35 +0000 Subject: [PATCH 8/9] chore(): underscores --- static/usage/skeleton-text/theming/index.md | 4 ++-- .../skeleton-text/theming/react/{main-css.md => main_css.md} | 0 .../skeleton-text/theming/react/{main-tsx.md => main_tsx.md} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename static/usage/skeleton-text/theming/react/{main-css.md => main_css.md} (100%) rename static/usage/skeleton-text/theming/react/{main-tsx.md => main_tsx.md} (100%) diff --git a/static/usage/skeleton-text/theming/index.md b/static/usage/skeleton-text/theming/index.md index 652d66dc4e1..a79907b63b6 100644 --- a/static/usage/skeleton-text/theming/index.md +++ b/static/usage/skeleton-text/theming/index.md @@ -2,8 +2,8 @@ import Playground from '@site/src/components/global/Playground'; import javascript from './javascript.md'; -import reactTSX from './react/main-tsx.md'; -import reactCSS from './react/main-css.md'; +import reactTSX from './react/main_tsx.md'; +import reactCSS from './react/main_css.md'; import vue from './vue.md'; diff --git a/static/usage/skeleton-text/theming/react/main-css.md b/static/usage/skeleton-text/theming/react/main_css.md similarity index 100% rename from static/usage/skeleton-text/theming/react/main-css.md rename to static/usage/skeleton-text/theming/react/main_css.md diff --git a/static/usage/skeleton-text/theming/react/main-tsx.md b/static/usage/skeleton-text/theming/react/main_tsx.md similarity index 100% rename from static/usage/skeleton-text/theming/react/main-tsx.md rename to static/usage/skeleton-text/theming/react/main_tsx.md From 7e5f2e3ae75dcdfa09ff98cacb167f1a46f2a789 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 1 Sep 2022 18:55:11 +0000 Subject: [PATCH 9/9] chore(): fix path --- static/usage/skeleton-text/basic/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/usage/skeleton-text/basic/index.md b/static/usage/skeleton-text/basic/index.md index f8020e180a4..33b4f57ee26 100644 --- a/static/usage/skeleton-text/basic/index.md +++ b/static/usage/skeleton-text/basic/index.md @@ -4,8 +4,8 @@ import javascript from './javascript.md'; import react from './react.md'; import vue from './vue.md'; -import angularHTML from './angular/angular-html.md'; -import angularTS from './angular/angular-ts.md'; +import angularHTML from './angular/example_component_html.md'; +import angularTS from './angular/example_component_ts.md';