Skip to content

fix(skeleton-text): use component name for files #2523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions static/usage/skeleton-text/basic/angular/angular-ts.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
```ts
import { Component } from '@angular/core';

@Component({
selector: 'app-example',
templateUrl: 'example.component.html',
styleUrls: ['example.component.css']
})
export class ExampleComponent {
public loaded = false;
}

```
8 changes: 4 additions & 4 deletions static/usage/skeleton-text/basic/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';

<Playground
code={{
Expand All @@ -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
}
},
}}
Expand Down
12 changes: 6 additions & 6 deletions static/usage/skeleton-text/theming/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';

<Playground
code={{
Expand All @@ -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
}
},
}}
Expand Down