Skip to content

Commit

Permalink
release: 3.0.0-next.23 (#251)
Browse files Browse the repository at this point in the history
* fix(docs): ssr rendering (#250)

* chore(root): update all deps (#248)

* fix(lib): MazPicker - timezone handling (#221)

* fix(lib): MazPicker - timezone handling

* fix(lib): maz-picker - timezone management

* fix(lib): maz-picker - timezone management

* refactor(lib): date filter - always use timeZone

* refactor(docs): maz-phone-number-input - remove commented code

* refactor(lib): maz-picker - use dayjs

* refactor(lib): maz-picker - use dayjs

* refactor(lib): maz-picker - use dayjs

* refactor(lib): maz-picker - use dayjs

* refactor(lib): maz-picker - use dayjs

* refactor(lib): maz-picker - is same date function

* refactor(lib): maz-picker - css binding colors

* refactor(lib): maz-picker - css binding colors

* refactor(lib): maz-picker - css binding colors

* test(lib): add test for maz-picker

* test(lib): add test for maz-picker

* test(lib): add test for maz-picker

* test(lib): add test for maz-picker

* test(lib): add test for maz-picker

* test(lib): add test for maz-picker

* chore(lib): remove extensions.json

* refactor(lib): config - vitest

* refactor(lib): maz-picker - range & double

* chore(root): codeclimate disabled eslint

* fix(root): codeclimate build

* test(unit): fix

* refactor(lib): maz-picker - time picker

* refactor(lib): maz-picker - time picker 12 format

* refactor(lib): maz-picker - time picker 12 format

* refactor(lib): maz-picker - time picker & disables dates hours

* refactor(lib): maz-picker - time picker & disables dates hours

* refactor(lib): maz-picker - documentation

* chore(release): bump version to 3.0.0-next.23
  • Loading branch information
LouisMazel authored May 2, 2022
1 parent b831bd5 commit ecfb3a8
Show file tree
Hide file tree
Showing 130 changed files with 7,459 additions and 33,151 deletions.
4 changes: 2 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ plugins:
- typescript
eslint:
enabled: false
# channel: "eslint-8"
# channel: "eslint-7"
# config:
# config: .package/lib/eslintrc.js
# config: ./packages/lib/eslintrc.js
# ignore_warnings: true
fixme:
enabled: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Lib Tests
name: Lib Build Test
on:
pull_request:
branches:
Expand All @@ -9,7 +9,7 @@ on:
- "packages/lib/**"

jobs:
lib-build-test:
lib-test-build:
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -24,7 +24,7 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
run: make install
run: npm ci

- name: Build lib
run: make build
run: npm run build
33 changes: 33 additions & 0 deletions .github/workflows/lib-test-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Lib Test Lint

on:
push:
branches: [master, next]
pull_request:
branches: [master, next]

jobs:
lib-test-lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/lib

steps:
- name: Checkout Actions
uses: actions/checkout@master

- uses: actions/setup-node@master
with:
node-version: "16"

- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Install modules
run: npm ci

- name: Run linters
run: npm run lint
4 changes: 2 additions & 2 deletions .github/workflows/lib-test-unit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests Units
name: Lib Tests Units

on:
push:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Install modules
run: make install
run: npm ci

- name: Test & Publish Code Coverage
uses: paambaati/codeclimate-action@v3.0.0
Expand Down
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["johnsoncodehk.vscode-typescript-vue-plugin"]
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
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.23](https://github.com/LouisMazel/maz-ui/compare/v2.3.13...3.0.0-next.23) (2022-05-02)

### Bug Fixes

- **docs:** aos implementation ([#218](https://github.com/LouisMazel/maz-ui/issues/218)) ([3849e05](https://github.com/LouisMazel/maz-ui/commit/3849e0566973906ae1a557d6dfa230429b550618))
- **docs:** aos installation on client side ([#217](https://github.com/LouisMazel/maz-ui/issues/217)) ([6790515](https://github.com/LouisMazel/maz-ui/commit/67905153973581418b4f807e531b1ee4f01b1331))
- **docs:** ssr rendering ([#250](https://github.com/LouisMazel/maz-ui/issues/250)) ([a6e0d5d](https://github.com/LouisMazel/maz-ui/commit/a6e0d5d176cbe2918ce373cf7e2d897a0886f790))
- **lib:** maz-radio-buttons - hover color ([#239](https://github.com/LouisMazel/maz-ui/issues/239)) ([8a945ab](https://github.com/LouisMazel/maz-ui/commit/8a945abe271d13a929a0def2966f566f3be20b73))
- **lib:** MazPicker - timezone handling ([#221](https://github.com/LouisMazel/maz-ui/issues/221)) ([2981a75](https://github.com/LouisMazel/maz-ui/commit/2981a750d7263bb81af4575115c3f4d2dc038a2f))
- **root:** codeclimate build ([283ab56](https://github.com/LouisMazel/maz-ui/commit/283ab566520921abfb7351409db1af9ea2c09a7d))

### Features

- **lib:** add helpers about user activity ([#238](https://github.com/LouisMazel/maz-ui/issues/238)) ([#240](https://github.com/LouisMazel/maz-ui/issues/240)) ([fcdbccb](https://github.com/LouisMazel/maz-ui/commit/fcdbccbed451aa38e771fb118c2834e55015d14b))
- **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:** aos - adding anchor option ([#219](https://github.com/LouisMazel/maz-ui/issues/219)) ([b1c8b02](https://github.com/LouisMazel/maz-ui/commit/b1c8b028286d2154b86c5bb52fa7208d0c347d3e))
- **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))
- **lib:** new component - maz-radio-buttons ([#232](https://github.com/LouisMazel/maz-ui/issues/232)) ([#233](https://github.com/LouisMazel/maz-ui/issues/233)) ([ece3d19](https://github.com/LouisMazel/maz-ui/commit/ece3d19bdf393cffc8e883c3b6362f21204bbfc8)), closes [#231](https://github.com/LouisMazel/maz-ui/issues/231)

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

### Bug Fixes
Expand Down
60 changes: 0 additions & 60 deletions documentation/assets/scss/_override-highlight.scss

This file was deleted.

34 changes: 0 additions & 34 deletions documentation/config/defaultMeta.js

This file was deleted.

94 changes: 0 additions & 94 deletions documentation/nuxt.config.js

This file was deleted.

Loading

0 comments on commit ecfb3a8

Please sign in to comment.