Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
CarcajadaArtificial committed Aug 7, 2023
1 parent 96d85c1 commit becb889
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 12 deletions.
16 changes: 6 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
# Changelog

## v0.2.2-beta.5
## v0.2.3

### Added an Input testing route
### Added an Gradient testing route

- `/fresh.gen.ts`
- `/routes/test/input.tsx`
- `/routes/test/gradient.tsx`

### Fixed Input component bugs
### Minor changes

- `/components/Input/index.tsx`
- `/components/Select/index.tsx`
- `/components/Select/setup.tsx`
- `/components/TextArea/index.tsx`
- `/components/TextArea/setup.tsx`
- `/mod.ts`

## Changes so far

- ✅ Markdown component
- Better task scripts.
- Added UI Component testing routes.

## Roadmap

Expand Down Expand Up @@ -55,7 +52,6 @@
- [ ] Minor updates
- [ ] Spread scss
- [ ] Add scss variables containing the css root variables.
- [ ] Optional don't use a label element in imput components if the label param is undefined.
- [x] Add a nostyleAll global parameter to all components that ignores all classes in the component's elements.
- [x] Ignore .md files in the .vscode settings for deno fmt.

Expand Down
6 changes: 4 additions & 2 deletions fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
import * as $0 from './routes/_app.tsx';
import * as $1 from './routes/index.tsx';
import * as $2 from './routes/md.tsx';
import * as $3 from './routes/test/input.tsx';
import * as $3 from './routes/test/gradient.tsx';
import * as $4 from './routes/test/input.tsx';

const manifest = {
routes: {
'./routes/_app.tsx': $0,
'./routes/index.tsx': $1,
'./routes/md.tsx': $2,
'./routes/test/input.tsx': $3,
'./routes/test/gradient.tsx': $3,
'./routes/test/input.tsx': $4,
},
islands: {},
baseUrl: import.meta.url,
Expand Down
1 change: 1 addition & 0 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export { default as Separator } from './components/Separator/index.tsx';
export { default as Linkmap } from './components/Linkmap/index.tsx';
export { default as Panel } from './components/Panel/index.tsx';
export { default as Markdown } from './components/Markdown/index.tsx';
export { default as Gradient } from './components/Gradient/index.tsx';
export * from './src/enums.ts';
export * from './src/types.ts';
export * from './src/utils.ts';
16 changes: 16 additions & 0 deletions routes/test/gradient.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Gradient, Main, Text } from '../../mod.ts';

export default function TestGradient() {
return (
<>
<Main layout_type='center'>
<Text type='subheading'>Cloud</Text>
<Gradient gradient_pattern='cloud' />
<Text type='subheading'>Wave</Text>
<Gradient gradient_pattern='wave' />
<Text type='subheading'>Zigzag</Text>
<Gradient gradient_pattern='zigzag' />
</Main>
</>
);
}

0 comments on commit becb889

Please sign in to comment.