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

Jest fails all the time due to "Failed to cache transform results" on Windows #3630

Closed
hon2a opened this issue May 23, 2017 · 34 comments
Closed

Comments

@hon2a
Copy link

hon2a commented May 23, 2017

Do you want to request a feature or report a bug?

Bug

What is the current behavior?

Most of my calls to jest.runCLI (I run jest from a gulpfile) end up with the following error:

jest: failed to cache transform results at ...

for random files. The stack shows a crashed fs.openSync at the top. This is happening to me on Windows 7 Enterprise (64-bit) and not to my colleagues using MacOS. Sometimes it happens once, sometimes it's many consecutive runs. I checked that it's not caused by too long file paths (it's pretty close though).

Funny thing is, this happens even when I run jest --no-cache directly from the command-line.

What is the expected behavior?

If there's a problem with caching, Jest should maybe warn about it, but recover and complete the test without the cache.

The current behavior means I have to remove jest from the dev build, so that I can build reliably, which sucks.

Please provide your exact Jest configuration and mention your Jest, node, yarn/npm version and operating system.

OS: Windows 7 Enterprise 64-bit (SP1)
Node: 7.4.0
Npm: 4.0.5
Jest: 19.0.2

@thymikee
Copy link
Collaborator

Does it happen on Jest v20?

@hon2a
Copy link
Author

hon2a commented May 24, 2017

When I update Jest to 20.0.3, it crashes with

TypeError: Path must be a string. Received [ 'C:\\...' ]

(the path inside the Array points to the current directory). I guess I'd have to try updating Node as well, but I don't have time for that today. I'll try later.

@thymikee
Copy link
Collaborator

Reinstall node_modules and it should be fine

@hon2a
Copy link
Author

hon2a commented Jun 18, 2017

I haven't had time to upgrade Node and test with the new Jest, but after the quite long time of the problem happening often, now suddenly it doesn't anymore. So I'll close for now and reopen with more details if it starts happening again.

@hon2a hon2a closed this as completed Jun 18, 2017
@mborecki
Copy link

Hello.
Short note.

For me problems with "Failed to cache transform results" stops when I added --runInBand flag. (Win7)

@hon2a
Copy link
Author

hon2a commented Jun 30, 2017

@mborecki Thanks for the hint. I'll try that if/when the issue crops up again.

@vzaidman
Copy link

vzaidman commented Sep 13, 2017

--runInBand works for me but i dont want to run in band...

windows 10
node 8.4.0
npm 5.3.0
jest 21.0.2
babel-jest 21.0.2

@HipsterZipster
Copy link

HipsterZipster commented Sep 18, 2017

This is happening to me as well on Windows 7 with jest@21.1.0, --runInBand resolves it but that makes it run significantly slower. There should be an actual solution to this.

i'll create a new ticket

@PinkyJie
Copy link

I think we need to reopen this issue, I can still see the same error. --runInBand will resolve it but it is really too slow.

@cristian-eriomenco
Copy link

cristian-eriomenco commented Nov 5, 2017

Same issue here:
package.json

    "jest-cli": "^21.2.1",
    "my-module: "^1.5.0" // this one is npm link

.jest.json

{
    ...
    "transformIgnorePatterns": [
        "<rootDir>/node_modules/(?!my-module)"
    ],
   ...

Works only with --runInBand

@hon2a
Copy link
Author

hon2a commented Nov 5, 2017

I've come across this with the new Jest again as well (21.2.1). It looks like the parallelization is causing access errors on Windows.

@HipsterZipster: If you're creating a new issue, thanks. I'm hesitant to reopen this as I have no clear small reproducible scenario.

@SimenB
Copy link
Member

SimenB commented Nov 6, 2017

Does it happen with jest@test?

@hon2a
Copy link
Author

hon2a commented Nov 8, 2017

Does it happen with jest@test?

@SimenB: What do you mean by that, please?

@SimenB
Copy link
Member

SimenB commented Nov 8, 2017

if you do npm install --save-dev jest@test or yarn add --dev jest@test (which installs a beta version of jest), does the problem still occur?

@hon2a
Copy link
Author

hon2a commented Nov 8, 2017

Ah :) With jest@test (v21.3.0-beta.8) I can no longer reproduce the issue. Please bear in mind that the reproduction is problematic as the issue seemed non-deterministic. That said, on a package where the problem seemed to be happening almost every time, the new version works well.

@hon2a
Copy link
Author

hon2a commented Nov 9, 2017

@SimenB: ... and I've just had the issue happen even with jest@test.

@SimenB
Copy link
Member

SimenB commented Nov 9, 2017

Have you tried applying the fix here: isaacs/node-graceful-fs#119?

@hon2a
Copy link
Author

hon2a commented Nov 13, 2017

I'll try when I have a bit of time on my hands.

@goodbomb
Copy link

goodbomb commented Nov 23, 2017

We're experiencing this issue on Windows Server 2016 with our TeamCity builds. Jest @ ~21.2.1

@goodbomb
Copy link

@HipsterZipster Do you have a link to that new ticket you created so that we can follow it?

@HipsterZipster
Copy link

@goodbomb I did not create a new ticket since I can't put together a reproducible scenario. My suspicion is that the security software on my corporate machine is aggravating it. Using --runInBand for now, but trying to dig deeper....

@christianchown
Copy link

Adding this here in case anyone else experiences it. I was getting the "Failed to cache transform results" error, and, finding this thread, overcame it using jest@test (21.3.0-beta.8).

However, having reinstalled node_modules, for jest@21.3.0-beta.9 - jest@21.3.0-beta.11 I get a node.exe error: "src\node_file.cc:835: Assertion '(args.Length()) >= (2)' failed".

I am explicitly using npm i -D jest@21.3.0-beta.8, which runs without issue.

Windows 10 x64
Node: 9.2.0
NPM: 5.5.1

@SimenB
Copy link
Member

SimenB commented Dec 4, 2017

Interesting! Do you get that when running tests or installing?

@christianchown
Copy link

Running tests.

Let me know if there's anything I can provide debug-wise

@goodbomb
Copy link

goodbomb commented Dec 4, 2017

I can confirm that jest@21.3.0-beta.8 continues to have this problem. I'm still getting jest: failed to cache transform results in: errors.

@goodbomb
Copy link

goodbomb commented Dec 4, 2017

As a note, I was using v6.9.11 of node and an earlier version of npm 3.x.x I think. I decided to update node to v8.9.1 and npm to v5.5.1 and the issue seems to have been resolved in jest@21.3.0-beta.8.

@JoshuaKGoldberg
Copy link
Contributor

Likely dup of #4444

@goodbomb
Copy link

I can confirm that this issue is still occurring with v8.9.1 of Node and v5.5.1 of npm. We're still getting this error with TeamCity builds.

@janacm
Copy link

janacm commented Mar 5, 2018

Getting this issue on node v8.9.4 and npm v5.6.0 in typescript. Got it to work by running jest with -i switch.

@skhan75
Copy link

skhan75 commented Jun 29, 2018

Have you mocked 'fs' ? This happened to me when I was trying to mock fs.mkdirSync.

@jednano
Copy link

jednano commented Jul 13, 2018

Same issue here. Fixed it by updating all Jest dependencies to latest versions:

- "babel-jest": "23.0.0",
- "eslint-plugin-jest": "21.15.2",
- "jest": "23.0.0",
- "jest-cli": "23.0.0",
+ "babel-jest": "23.4.0",
+ "eslint-plugin-jest": "21.17.0",
+ "jest": "23.4.1",
+ "jest-cli": "23.4.1",

@mattsteve
Copy link

I'm running into this issue on Windows 7 with Jest 24.0.0.

dragosct pushed a commit to vuematerial/vue-material that referenced this issue Nov 14, 2019
fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630
dragosct pushed a commit to vuematerial/vue-material that referenced this issue Nov 14, 2019
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left
dragosct added a commit to vuematerial/vue-material that referenced this issue Nov 15, 2019
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)
dragosct added a commit to vuematerial/vue-material that referenced this issue Nov 25, 2019
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive
dragosct pushed a commit to vuematerial/vue-material that referenced this issue Nov 29, 2019
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)
dragosct added a commit to vuematerial/vue-material that referenced this issue Apr 30, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
dragosct added a commit to vuematerial/vue-material that referenced this issue Apr 30, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
@fluffynuts
Copy link

fluffynuts commented May 21, 2020

This is still an issue. I have my jest version set to "x" (meaning: always latest and greatest), my CI server does a git clean -fdx and npm install before build (and there is no package-lock.json in the project) and I still see stuff like this:

  jest: failed to read cache file: D:/phoenix/src/.jest-cache/jest-transform-cache-f691fb298581eda406946da746f68cf3-791c88db313af6e97cd5a90a918831b1/e6/order_e6d4e287214676f983806bccb2f628dc
    Failure message: ENOENT: no such file or directory, open 'D:/phoenix/src/.jest-cache/jest-transform-cache-f691fb298581eda406946da746f68cf3-791c88db313af6e97cd5a90a918831b1/e6/order_e6d4e287214676f983806bccb2f628dc'
      at readCacheFile (node_modules/jest-runtime/build/script_transformer.js:563:60)

(cache file went away?)

or this:

FAIL tests/components/tracking/tracking.vue.spec.ts
  â—� Test suite failed to run
    jest: failed to read cache file: D:/phoenix/src/.jest-cache/jest-transform-cache-f691fb298581eda406946da746f68cf3-791c88db313af6e97cd5a90a918831b1/f0/auto-completion-session_f0091c924a4ebc768da80b8fc8735194
    Failure message: EPERM: operation not permitted, open 'D:/phoenix/src/.jest-cache/jest-transform-cache-f691fb298581eda406946da746f68cf3-791c88db313af6e97cd5a90a918831b1/f0/auto-completion-session_f0091c924a4ebc768da80b8fc8735194'
      at readCacheFile (node_modules/jest-runtime/build/script_transformer.js:563:60)

(cache file still being generated?)

The caching mechanism needs to cater for this and other issues -- if it can't read the file it expects to, simply regenerate it with a new id. Which is worse: a small slowdown because a race condition made a cache file go away, or an entire build failing sporadically because of cache misses?

marqbeniamin added a commit to vuematerial/vue-material that referenced this issue May 27, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
dragosct added a commit to vuematerial/vue-material that referenced this issue May 27, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
dragosct added a commit to vuematerial/vue-material that referenced this issue May 27, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* Feature/add open collective (#2226)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* Feature/add open collective (#2228)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
dragosct added a commit to vuematerial/vue-material that referenced this issue Jun 11, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* Feature/add open collective (#2226)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* Feature/add open collective (#2228)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* Feature/add open collective (#2234)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
dragosct added a commit to vuematerial/vue-material that referenced this issue Jun 11, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* Feature/add open collective (#2226)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* Feature/add open collective (#2228)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* Feature/add open collective (#2234)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* Feature/readme add backer (#2236)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* feat(readme): add backers button

* Update README.md

* Update README.md

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
marqbeniamin added a commit to vuematerial/vue-material that referenced this issue Aug 13, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* Feature/add open collective (#2226)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* Feature/add open collective (#2228)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* Feature/add open collective (#2234)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* Feature/readme add backer (#2236)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* feat(readme): add backers button

* Update README.md

* Update README.md

* Update GettingStarted.vue (#2165)

If you don't add `import 'vue-material/dist/theme/default.css'` for full bundling, things can go wrong on the page. You won't get your component color right.

* Eslint rules to force existing code style (#2202)

* Added rules to force existing code style

* One more

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: Beniamin Marcu <marqbeniamin@yahoo.com>

* Fix selection when value is empty string (#2075)

Use single quote

* Refactor/change ads (#2245)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Fixed docs position and height (#2203)

* Fixed docs position and height

* Update MainNav.vue

fix comma in mainnav.vue

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>

* Fixing the label for inputs when we received an invalid value (#2108)

Co-authored-by: Beniamin Marcu <marqbeniamin@yahoo.com>

* fix(MdDatepicker): Pick text button (confirm and cancel) from locale configuration (#2078)

* fix(MdDatepicker): Pick text button (confirm and cancel) from locale

* fix(jest): Add jest-localstorage-mock to fix unit test issue

Co-authored-by: Travis <rom.lenzotti@zenika.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>

* Refactor/change ads (#2255)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor/change ads (#2256)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor(PageContainer): Change carbonads style

* build: 1.0.0-beta-15

* build: release

* build: changelog 1.0.0-beta-15

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: dragosct <dragos@creative-tim.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Dragos <dragosct10@gmail.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
Co-authored-by: yingshaoxo <yingshaoxo@users.noreply.github.com>
Co-authored-by: Thang Minh Vu <ittus@users.noreply.github.com>
Co-authored-by: Franklin Oliveira Da Veiga <Topinaqui@users.noreply.github.com>
Co-authored-by: Romain Lenzotti <rom.lenzotti@gmail.com>
Co-authored-by: Travis <rom.lenzotti@zenika.com>
marqbeniamin added a commit to vuematerial/vue-material that referenced this issue Aug 24, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* Feature/add open collective (#2226)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* Feature/add open collective (#2228)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* Feature/add open collective (#2234)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* Feature/readme add backer (#2236)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* feat(readme): add backers button

* Update README.md

* Update README.md

* Update GettingStarted.vue (#2165)

If you don't add `import 'vue-material/dist/theme/default.css'` for full bundling, things can go wrong on the page. You won't get your component color right.

* Eslint rules to force existing code style (#2202)

* Added rules to force existing code style

* One more

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: Beniamin Marcu <marqbeniamin@yahoo.com>

* Fix selection when value is empty string (#2075)

Use single quote

* Refactor/change ads (#2245)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Fixed docs position and height (#2203)

* Fixed docs position and height

* Update MainNav.vue

fix comma in mainnav.vue

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>

* Fixing the label for inputs when we received an invalid value (#2108)

Co-authored-by: Beniamin Marcu <marqbeniamin@yahoo.com>

* fix(MdDatepicker): Pick text button (confirm and cancel) from locale configuration (#2078)

* fix(MdDatepicker): Pick text button (confirm and cancel) from locale

* fix(jest): Add jest-localstorage-mock to fix unit test issue

Co-authored-by: Travis <rom.lenzotti@zenika.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>

* Refactor/change ads (#2255)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor/change ads (#2256)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor(PageContainer): Change carbonads style

* build: 1.0.0-beta-15

* build: release

* build: changelog 1.0.0-beta-15

* Refactor/change ads (#2263)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor(PageContainer): Change carbonads style

* Refactor(carbonads): Design changes

* Refactor(carbonads): Design changes

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: dragosct <dragos@creative-tim.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Dragos <dragosct10@gmail.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
Co-authored-by: yingshaoxo <yingshaoxo@users.noreply.github.com>
Co-authored-by: Thang Minh Vu <ittus@users.noreply.github.com>
Co-authored-by: Franklin Oliveira Da Veiga <Topinaqui@users.noreply.github.com>
Co-authored-by: Romain Lenzotti <rom.lenzotti@gmail.com>
Co-authored-by: Travis <rom.lenzotti@zenika.com>
dragosct added a commit to vuematerial/vue-material that referenced this issue Aug 24, 2020
* fix(MdRadio): internal radio not being checked (#2063)

* fix(MdMenu): unexpected close on item click (#2062)

* docs: add funding

* test: add a "testURL" field to jest config (#2082)

fixes the " SecurityError: localStorage is not available for opaque
origins"  error message that everyone seems to get on their PRs.

Using the solution provided here jestjs/jest#3630

* Docs/restyle (#2139)

* Changed 'roboto mono' to 'roboto'

* Changed code fund position to bottom right

* updates

Added ‘supported by Creative Tim’ in About page
Added open collective

* added links to header

* Removed disclaimer, added sponsors, changed footer

* Add premium-themes page and link to it from the footer

* Added products to premium themes page

* Finished premium page

* Finished installation/usage/premium-themes section

* Installed vue-github-buttons

* Added GitHub star button

* Added license, download and chat buttons

* Changed order in gh star button

* Changed page transition

* Added vue-toc

* Style modified for toc

* Added ids on getting started for vue-toc

* Added ids on themes-congifuration for vue-toc

* Added ids on layouts for vue-toc

* Added ids on typography

* Added ids on components->app for vue-toc

* Added ids on buttomBar for vue-toc

* Added ids on Button for vue-toc

* Added ids on Card for vue-toc

* Added ids on datepicker for vue-toc

* Added ids on Dialog for vue-toc

* Added ids on Drawer for vue-toc

* Added ids on autocomplete for vue-toc

* Added ids on Chips for vue-toc

* Added ids on Input for vue-toc

* Added ids on Icon for vue-toc

* Added ids on List for vue-toc

* Added ids on Menu for vue-toc

* Added ids on speedDial for vue-toc

* Added ids on steppers for vue-toc

* Added ids on table for vue-toc

* Added ids on Tabs for vue-toc

* Added ids on toolbar for vue-toc

* Added ids on Tooltip for vue-toc

* Updated license

* Added key to vue-toc

* Small change

* Changed codeinwp logo

* updates

* Css changes for logo and gh-button

* Added more space between buttons

* Removed arrow down & nabber buttons hidden on mobile

* style changes, added premium themes in navbar, centered premium themes

* Cards change

* toc style

* Changed style for code-fund

* restyle codefund

* Restyled home premium section

* Commented contribuitors section

* Changed Patreon text to Open Collective

* Changed home premium background color

* Removed open collective

* Added link to premium-themes from themes image

* Added target blank

* Restyled vue-toc

* added refs

* Responsive changes

* Changed margin on title

* Added custom development link

* Added links from sponsors

* lint fix

* add margin left

* Updated footer links (#2145)

* Docs/restyle (#2150)

* Added dropdown in nabber

* Added sponsors

* restyled codefund

* Codefund restyle

* Restyled footer

* Restyled footer

* Footer restyle on responsive

* Add "new" tag and modify logo in footer

* Cleaned console.log test texts

* Added arrow on dropdown

* Modified sponsors and dropdown

* Codefund on responsive

* Footer restyle on responsive

* Added tag manager (#2153)

* [MdTabs] fix mdActiveTab not selecting set tab on load (#2164)

content and indicator were not initializing to the set active tab

* [core] RTL support #80 (#2181)

added rtl support to tabs component with mdIsRtl prop

* update the work with Vue router page grammar (#2100)

* docs: fix typo (#2080)

* Update About.vue (#2117)

Fix typo

* docs(Tabs): add prop `md-is-rtl` to tabs table component (#2198)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* Fix typo (#1819)

* Fix typo

I'm pretty sure you meant to write here `md-alignment-[vertical]-[horizontal]`, but in the docs it says `md-alignment-[horizontal]-[vertical]`. That threw me off for a bit.

Overall, this is a super awesome package! I love working with it!!

* fix typo in api section

I noticed that at the bottom of the page, in the API section, the order also needs to be reversed. "x" should refer to horizontal, and "y" should refer to vertical.

Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Added index to "md-table-row" slot-scope (#2064)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Improved grammar in Table.vue (docs) (#2178)

* build: 1.0.0-beta-12

* build: release

* build: changelog 1.0.0-beta-12

* Moving observers to setTimeout (#2201)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix: Drawer detection (#1929)

* fix(MdDialog):change position principle from transform to flex wrapper (#2023)

* Changed dialog positioning to flex

* Revert to transition root element

Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fixed dialog transitions (#2021)

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: dragosct <17456857+dragosct10@users.noreply.github.com>

* Prevent tabs overflow inside dialog content (#2065)

Co-authored-by: hastom <aklyavlin@onvis.ru>

* fix(MdApp): remove height 100 to make md-app-content span content height (#1957)

* remove height 100 to make md-app-content span content height

* use min-height of 100 instead of height

Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>

* build: 1.0.0-beta-13

* build: release

* build: changelog 1.0.0-beta-13

* fix(MdDialog): position centered

* fix(MdDialog): revert

* Datepicker now emits the md-clear event when cleared, and has the option to not be clearable (#1967)

* fix(components,doc): fix the character counter not reseting when (#2081)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>

* Fix checking mouseevent in IE11 (#2091)

* fix undefined dom.contains in IE11 (#2090)

* Allow false as a value for an MdOption (#2183)

* Auto insert in MdChips after focusout (#2189)

* Implemented the function of automatically adding a value in the MdChips component, in case of loss of focus

* fixed code format

* Fix/md dialog position centered (#2211)

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): add prop `md-is-rtl` to tabs table component

* docs(Tabs): prop `md-is-rtl` move last item in table

* docs(Tabs): prop `md-is-rtl` move last item in table

* fix(MdDialog): position centered

* fix(MdStep): set tabindex for not active step (#2215)

* fix(MdStep): set tabindex for not active step

* feat(MdStep): add v-show to hide content

Co-authored-by: Samuell1 <samuell.patro@gmail.com>

* fix(components,doc): fix the character counter not reseting when (#2213)

reseting the form

fixes #2054

Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Fix checking mouseevent in IE11 (#2212)

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Revert "fix undefined dom.contains in IE11 (#2090)" (#2220)

This reverts commit 05649bb.

* Util to replace Node.contains (#2214)

* fix undefined dom.contains in IE11

* Added util to polyfill Node.contains

Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>

* Feature/add open collective (#2224)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* Feature/add open collective (#2226)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* Feature/add open collective (#2228)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* Feature/add open collective (#2234)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* Feature/readme add backer (#2236)

* feat: code-fund re-positioned

* refactor: remove patreon add opencollective

* feature: change active theme position on dropdown

* feature: fixed white spaces

* feature: fixed white spaces

* refactor: fixe color theme dropdown on main page disabled

* refactor: github button on main page visible

* feat: add new vars

* feat: add sponsors btn & badge backers

* feat: add contributors & become backer button

* feat: add vue github button plugin

* feat: add post install opencollective

* feat(readme): add contributors

* feat(readme): add backers button

* Update README.md

* Update README.md

* Update GettingStarted.vue (#2165)

If you don't add `import 'vue-material/dist/theme/default.css'` for full bundling, things can go wrong on the page. You won't get your component color right.

* Eslint rules to force existing code style (#2202)

* Added rules to force existing code style

* One more

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: Beniamin Marcu <marqbeniamin@yahoo.com>

* Fix selection when value is empty string (#2075)

Use single quote

* Refactor/change ads (#2245)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Fixed docs position and height (#2203)

* Fixed docs position and height

* Update MainNav.vue

fix comma in mainnav.vue

Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>

* Fixing the label for inputs when we received an invalid value (#2108)

Co-authored-by: Beniamin Marcu <marqbeniamin@yahoo.com>

* fix(MdDatepicker): Pick text button (confirm and cancel) from locale configuration (#2078)

* fix(MdDatepicker): Pick text button (confirm and cancel) from locale

* fix(jest): Add jest-localstorage-mock to fix unit test issue

Co-authored-by: Travis <rom.lenzotti@zenika.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>

* Refactor/change ads (#2255)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor/change ads (#2256)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor(PageContainer): Change carbonads style

* build: 1.0.0-beta-15

* build: release

* build: changelog 1.0.0-beta-15

* Refactor/change ads (#2263)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor(PageContainer): Change carbonads style

* Refactor(carbonads): Design changes

* Refactor(carbonads): Design changes

* Refactor/change ads (#2265)

* Refactor(ads): Change codefund with carbon ads

* Refactor(carbon ads): Add style for home page

* Refactor(docs): Add style for carbon ads

* Refactor(Home.vue): Change carbon ads css

* Refactor(PageContainer): Change carbonads style

* Refactor(carbonads): Design changes

* Refactor(carbonads): Design changes

* Refactor(ads): design changes

Co-authored-by: hastom <hastomit@gmail.com>
Co-authored-by: Marcos Moura <marcosvmmoura@gmail.com>
Co-authored-by: Adrien Boutigny <mounch-man@hotmail.fr>
Co-authored-by: rarestoma <tomairares@gmail.com>
Co-authored-by: gaby64 <gaby_64@live.ca>
Co-authored-by: tom dorofeyev <tomdorofey@gmail.com>
Co-authored-by: Brett Kinnamon <b.kinnamon@icloud.com>
Co-authored-by: Jason Cooke <Jason-Cooke@users.noreply.github.com>
Co-authored-by: Amit Gurbani <amit1994.gurbani@gmail.com>
Co-authored-by: Avraham Appel <33736292+avrahamappel@users.noreply.github.com>
Co-authored-by: hastom <aklyavlin@onvis.ru>
Co-authored-by: starsky135 <starsky135@gmail.com>
Co-authored-by: Marcu Beniamin <marqbeniamin@yahoo.com>
Co-authored-by: Hugome <Hugome@users.noreply.github.com>
Co-authored-by: Lemuel Flores <is101.lemuel@gmail.com>
Co-authored-by: xxRockOnxx <xxRockOnxx@users.noreply.github.com>
Co-authored-by: Shira Gold <shira14@gmail.com>
Co-authored-by: BOUTIGNY Adrien <adrien.boutigny@akka.eu>
Co-authored-by: kmsheng <kmsh3ng@gmail.com>
Co-authored-by: Jaryd Carolin <jaryd@upgear.com.au>
Co-authored-by: Konstantin Mohov <htmlmak@gmail.com>
Co-authored-by: Oliver Ni <oliver.ni@gmail.com>
Co-authored-by: Samuell1 <samuell.patro@gmail.com>
Co-authored-by: yingshaoxo <yingshaoxo@users.noreply.github.com>
Co-authored-by: Thang Minh Vu <ittus@users.noreply.github.com>
Co-authored-by: Franklin Oliveira Da Veiga <Topinaqui@users.noreply.github.com>
Co-authored-by: Romain Lenzotti <rom.lenzotti@gmail.com>
Co-authored-by: Travis <rom.lenzotti@zenika.com>
@github-actions
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 11, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests