Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:heyjul3s/artifak into fix/docs-t…
Browse files Browse the repository at this point in the history
…ypes
  • Loading branch information
heyjul3s committed Jan 12, 2021
2 parents d777d4a + 2b17c93 commit 454aef3
Show file tree
Hide file tree
Showing 26 changed files with 151 additions and 29 deletions.
25 changes: 25 additions & 0 deletions packages/artifak/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# artifak

## 2.0.0

### Major Changes

- New breaking API changes for Generator package
- New breaking API changes to Typography package
- Moved fluidSizing as independent package from typography package
- Additional useMatchMedia hook for media queries
- Additional useWindowSize hook for querying window sizes
- Additional Media package utility for media queries

### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0
- @artifak/typography@2.0.0
- @artifak/fluidsizing@1.0.1
- @artifak/media@1.0.1
- @artifak/usematchmedia@1.0.1
- @artifak/usewindowsize@1.0.1
- @artifak/block@1.1.5
- @artifak/flex@1.1.5
- @artifak/grid@1.1.5
- @artifak/imagery@1.0.7

## 1.1.5

### Patch Changes
Expand Down
22 changes: 11 additions & 11 deletions packages/artifak/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "artifak",
"version": "1.1.5",
"version": "2.0.0",
"description": "A set of React UI primitives to help you build your component UI system",
"author": "Julian Low",
"homepage": "https://github.com/heyjul3s/artifak#readme",
Expand Down Expand Up @@ -43,16 +43,16 @@
"url": "https://github.com/heyjul3s/artifak/issues"
},
"dependencies": {
"@artifak/block": "^1.1.4",
"@artifak/component-generator": "^1.1.4",
"@artifak/flex": "^1.1.4",
"@artifak/fluidsizing": "^1.0.0",
"@artifak/grid": "^1.1.4",
"@artifak/imagery": "^1.0.6",
"@artifak/media": "^1.0.0",
"@artifak/typography": "^1.1.5",
"@artifak/usematchmedia": "^1.0.0",
"@artifak/usewindowsize": "^1.0.0"
"@artifak/block": "^1.1.5",
"@artifak/component-generator": "^2.0.0",
"@artifak/flex": "^1.1.5",
"@artifak/fluidsizing": "^1.0.1",
"@artifak/grid": "^1.1.5",
"@artifak/imagery": "^1.0.7",
"@artifak/media": "^1.0.1",
"@artifak/typography": "^2.0.0",
"@artifak/usematchmedia": "^1.0.1",
"@artifak/usewindowsize": "^1.0.1"
},
"devDependencies": {
"@artifak/bundler": "^1.1.3"
Expand Down
7 changes: 6 additions & 1 deletion packages/artifak/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
export {
createStyledComponent,
createComponents
createComponents,
Settings,
BaseConfig,
ScalableCSS,
BaseProps,
ComponentsRecord
} from '@artifak/component-generator';

export { BlockBase, createBlocks } from '@artifak/block';
Expand Down
7 changes: 7 additions & 0 deletions packages/block/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @artifak/block

## 1.1.5

### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0

## 1.1.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/block/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/block",
"version": "1.1.4",
"version": "1.1.5",
"description": "Basic React component primitive for handling spacing",
"author": "Julian Low",
"homepage": "https://github.com/heyjul3s/artifak#readme",
Expand Down Expand Up @@ -58,6 +58,6 @@
"styled-components": ">=5.2.1"
},
"dependencies": {
"@artifak/component-generator": "^1.1.4"
"@artifak/component-generator": "^2.0.0"
}
}
10 changes: 10 additions & 0 deletions packages/component-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @artifak/component-generator

## 2.0.0

### Major Changes

## Breaking Changes

- createBaseComponents is now createComponents which accepts 2 arguments eg. base and settings.
- createStyledComponent now accepts a settings object.
- new typings introduced: BaseConfig, Settings, ScalableCSS, ComponentsRecord.

## 1.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/component-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/component-generator",
"version": "1.1.4",
"version": "2.0.0",
"description": "Component generator utility for Artifak",
"author": "Julian Low",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions packages/component-generator/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export {
createStyledComponent,
extractStylePseudos
} from './createStyledComponent';

export {
Attrs,
BaseProps,
Expand Down
7 changes: 7 additions & 0 deletions packages/flex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @artifak/flex

## 1.1.5

### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0

## 1.1.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/flex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/flex",
"version": "1.1.4",
"version": "1.1.5",
"description": "A styled-component Flex grid component for your layout needs.",
"keywords": [
"react",
Expand Down Expand Up @@ -59,6 +59,6 @@
"styled-components": ">=5.2.1"
},
"dependencies": {
"@artifak/component-generator": "^1.1.4"
"@artifak/component-generator": "^2.0.0"
}
}
9 changes: 9 additions & 0 deletions packages/fluidsizing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @artifak/fluidsizing

## 1.0.1

### Patch Changes

- Moved to own independent package
- Fix units for fluidSizing functionality
- Additional "unit" parameter required
2 changes: 1 addition & 1 deletion packages/fluidsizing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/fluidsizing",
"version": "1.0.0",
"version": "1.0.1",
"description": "A utility function to compute fluid sizing based on max and min inputs for CSS styles.",
"keywords": [],
"author": "Julian Low",
Expand Down
7 changes: 7 additions & 0 deletions packages/grid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @artifak/grid

## 1.1.5

### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0

## 1.1.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/grid",
"version": "1.1.4",
"version": "1.1.5",
"description": "Basic React grid component for helping with building grid layout components",
"author": "Julian Low",
"homepage": "https://github.com/heyjul3s/artifak#readme",
Expand Down Expand Up @@ -57,6 +57,6 @@
"styled-components": ">=5.2.1"
},
"dependencies": {
"@artifak/component-generator": "^1.1.4"
"@artifak/component-generator": "^2.0.0"
}
}
7 changes: 7 additions & 0 deletions packages/imagery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @artifak/image

## 1.0.7

### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0

## 1.0.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/imagery/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/imagery",
"version": "1.0.6",
"version": "1.0.7",
"description": "A basic primitive, styled image component ",
"keywords": [
"react",
Expand Down Expand Up @@ -55,6 +55,6 @@
"styled-components": ">=5.2.1"
},
"dependencies": {
"@artifak/component-generator": "^1.1.4"
"@artifak/component-generator": "^2.0.0"
}
}
8 changes: 8 additions & 0 deletions packages/media/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @artifak/media

## 1.0.1

### Patch Changes

- media query utilities for querying within a Styled Component
- new available constants for media queries
2 changes: 1 addition & 1 deletion packages/media/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/media",
"version": "1.0.0",
"version": "1.0.1",
"description": "Artifak media query mixin",
"keywords": [],
"author": "Julian Low",
Expand Down
7 changes: 7 additions & 0 deletions packages/text-input/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @artifak/text-input

## 1.0.1
### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0
4 changes: 2 additions & 2 deletions packages/text-input/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/text-input",
"version": "1.0.0",
"version": "1.0.1",
"description": "Text input components which comprises typeos of text, tel, url, email, search and password.",
"keywords": [],
"author": "Julian Low",
Expand Down Expand Up @@ -43,6 +43,6 @@
"styled-system": "^5.1.5"
},
"dependencies": {
"@artifak/component-generator": "^1.1.4"
"@artifak/component-generator": "^2.0.0"
}
}
15 changes: 15 additions & 0 deletions packages/typography/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @artifak/typography

## 2.0.0

### Major Changes

## Breaking Changes

-createTypographyComponents is now createTypography and accepts 2 arguments namely base and settings.

- fluidSizing has been removed from Typography and is now an independent package.

### Patch Changes

- Updated dependencies [undefined]
- @artifak/component-generator@2.0.0

## 1.1.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/typography/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/typography",
"version": "1.1.5",
"version": "2.0.0",
"description": "Typography utilities to assist in scaffolding your React project's Typography components",
"keywords": [
"react",
Expand Down Expand Up @@ -51,7 +51,7 @@
"styled-system": "^5.1.5"
},
"dependencies": {
"@artifak/component-generator": "^1.1.4"
"@artifak/component-generator": "^2.0.0"
},
"peerDependencies": {
"react": ">=17.0.1",
Expand Down
7 changes: 7 additions & 0 deletions packages/usematchmedia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @artifak/usematchmedia

## 1.0.1

### Patch Changes

- useMatchMedia hook is available for media queries.
2 changes: 1 addition & 1 deletion packages/usematchmedia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/usematchmedia",
"version": "1.0.0",
"version": "1.0.1",
"description": "A React hook for matching media queries.",
"keywords": [],
"author": "Julian Low",
Expand Down
7 changes: 7 additions & 0 deletions packages/usewindowsize/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @artifak/usewindowsize

## 1.0.1

### Patch Changes

- useWindowSize hook is available for window size queries
2 changes: 1 addition & 1 deletion packages/usewindowsize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/usewindowsize",
"version": "1.0.0",
"version": "1.0.1",
"description": "A React hook that returns the window size on resize.",
"keywords": [],
"author": "Julian Low",
Expand Down

0 comments on commit 454aef3

Please sign in to comment.