Skip to content
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

release: 3.0.0-next.13 #215

Merged
merged 5 commits into from
Mar 13, 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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0-next.13](https://github.com/LouisMazel/maz-ui/compare/v2.3.13...3.0.0-next.13) (2022-03-13)

### Features

- **lib:** add aos plugin to manage animations ([c247395](https://github.com/LouisMazel/maz-ui/commit/c247395be897b1d0c494ae9c9ec659df44b5c6b7))
- **lib:** add maz-picker component ([#197](https://github.com/LouisMazel/maz-ui/issues/197)) ([877515e](https://github.com/LouisMazel/maz-ui/commit/877515e585d1aa9a3febd83e222c12346e7401b5))
- **lib:** add wait plugin to manage loading state ([#214](https://github.com/LouisMazel/maz-ui/issues/214)) ([a6a1931](https://github.com/LouisMazel/maz-ui/commit/a6a1931ba7000c5e545cfc4808fe7205809629c4))
- **lib:** adding maz-input-number ([#195](https://github.com/LouisMazel/maz-ui/issues/195)) ([dfb835d](https://github.com/LouisMazel/maz-ui/commit/dfb835d796682955b53dfb82455aefc763895c86))
- **lib:** export tailwind config ([#201](https://github.com/LouisMazel/maz-ui/issues/201)) ([94fddb9](https://github.com/LouisMazel/maz-ui/commit/94fddb9d35e91a6f649bcb18ae7105048d048584))
- **lib:** MazInput - adding style color for autofill ([#208](https://github.com/LouisMazel/maz-ui/issues/208)) ([b3ae969](https://github.com/LouisMazel/maz-ui/commit/b3ae969584bda0e690179c1b6c9defdc1bbf0425))

# [3.0.0-next.12](https://github.com/LouisMazel/maz-ui/compare/v2.3.13...3.0.0-next.12) (2022-03-10)

### Features
Expand Down
17 changes: 16 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ build-watch-lib:
build-js-lib:
make --directory=packages/lib build-js

build-modules-lib:
make --directory=packages/lib build-modules

build-components-lib:
make --directory=packages/lib build-components

build-css-lib:
make --directory=packages/lib build-css

build-types-lib:
make --directory=packages/lib build-types

install:
make install-root install-lib install-docs

Expand All @@ -32,14 +44,17 @@ install-docs:
make --directory=packages/docs install

reinstall:
make reinstall-lib reinstall-docs
make reinstall-lib reinstall-docs reinstall-testing

reinstall-lib:
make --directory=packages/lib reinstall

reinstall-docs:
make --directory=packages/docs reinstall

reinstall-testing:
make --directory=packages/testing reinstall

lint-staged: ## lint-staged
npm run pre-commit

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packages": ["packages/*"],
"loglevel": "verbose",
"version": "3.0.0-next.12",
"version": "3.0.0-next.13",
"npmClientArgs": ["--production=false", "--no-progress"],
"yes": true,
"granularPathspec": false,
Expand Down
15 changes: 15 additions & 0 deletions packages/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0-next.13](https://github.com/LouisMazel/maz-ui/compare/v2.3.13...3.0.0-next.13) (2022-03-13)


### Features

* **lib:** add aos plugin to manage animations ([c247395](https://github.com/LouisMazel/maz-ui/commit/c247395be897b1d0c494ae9c9ec659df44b5c6b7))
* **lib:** add maz-picker component ([#197](https://github.com/LouisMazel/maz-ui/issues/197)) ([877515e](https://github.com/LouisMazel/maz-ui/commit/877515e585d1aa9a3febd83e222c12346e7401b5))
* **lib:** add wait plugin to manage loading state ([#214](https://github.com/LouisMazel/maz-ui/issues/214)) ([a6a1931](https://github.com/LouisMazel/maz-ui/commit/a6a1931ba7000c5e545cfc4808fe7205809629c4))
* **lib:** adding maz-input-number ([#195](https://github.com/LouisMazel/maz-ui/issues/195)) ([dfb835d](https://github.com/LouisMazel/maz-ui/commit/dfb835d796682955b53dfb82455aefc763895c86))
* **lib:** export tailwind config ([#201](https://github.com/LouisMazel/maz-ui/issues/201)) ([94fddb9](https://github.com/LouisMazel/maz-ui/commit/94fddb9d35e91a6f649bcb18ae7105048d048584))





# [3.0.0-next.12](https://github.com/LouisMazel/maz-ui/compare/v2.3.13...3.0.0-next.12) (2022-03-10)


Expand Down
1 change: 0 additions & 1 deletion packages/docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ install:

reinstall:
rm -rf ./node_modules
rm package-lock.json
npm i

15 changes: 13 additions & 2 deletions packages/docs/docs/.vuepress/clientAppEnhance.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { defineClientAppEnhance } from '@vuepress/client'
import 'maz-ui/css/main.css'
import 'maz-ui/css/aos.css'

const mazIconPath = process.env.NODE_ENV === 'production'
? '/maz-ui-3/icons'
: '/icons'

import { ToasterOptions, installToaster, installWait } from 'maz-ui'
import { ToasterOptions, installToaster, installWait, installAos, AosOptions } from 'maz-ui'
import components from 'maz-ui/components'

export default defineClientAppEnhance(async ({ app }) => {
export default defineClientAppEnhance(async ({ app, router }) => {
app.provide('mazIconPath', mazIconPath)

Object.entries(components).forEach(([componentName, component]) => {
Expand All @@ -21,6 +22,16 @@ export default defineClientAppEnhance(async ({ app }) => {
timeout: 10000,
}

const aosOptions: AosOptions = {
router,
delay: 500,
animation: {
duration: 400,
once: false
}
}

app.use(installToaster, toasterOptions)
app.use(installWait)
app.use(installAos, aosOptions)
})
1 change: 1 addition & 0 deletions packages/docs/docs/.vuepress/configs/plugins.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export const plugins = {
text: 'Plugins',
children: [
'/plugins/aos.md',
'/plugins/toaster.md',
'/plugins/wait.md',
]
Expand Down
4 changes: 4 additions & 0 deletions packages/docs/docs/.vuepress/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ code {
justify-content: start;
}

.items-start {
align-items: flex-start;
}

.justify-center {
justify-content: center;
}
Expand Down
Loading