0.1.0-beta.25 • Published 2 months ago

@vue-patternfly/core v0.1.0-beta.25

Weekly downloads
-
License
-
Repository
-
Last release
2 months ago

Vue PatternFly

LICENSE NPM Download Issues

PatternFly 5 components for Vue 3.

The components are mostly a straight-forward port of the PatternFly 5 components to Vue 3 with some differences where it makes sense to improve ergonomics or add new features.

Common differences from patternfly-react

Component names are prefixed with pf-

This is done to conform to the custom element specification that requires component names to include an hyphen and to avoid conflicts with other components.

Boolean props "is/has" prefixes removed

This makes it easier to use the components and matches the naming convention of native elements. E.g. <pf-text-input disabled /> just like <input disabled> instead of <pf-text-input is-disabled />.

By doing this we can also omit to declare some props that are automatically inherited by the underlying native element.

Get started

Install the library with the package management tool of your choice:

npm install --save @vue-patternfly/core
# or
yarn add @vue-patternfly/core

Then you can import the components you need or use the whole library of components like this:

import '@patternfly/patternfly/patternfly.css';
import '@patternfly/patternfly/patternfly-addons.css';
// alternatively include them in your html as a <style> tag

import { createApp } from 'vue';
import VuePatternFly from '@vue-patternfly/core';

const app = createApp({
  setup() {
    return {};
  },
});
app.use(VuePatternFly);
app.mount('#app');

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Documentation

See the storybook for usage instructions and other documentation.

Security

If you discover any security related issues, please email massimiliano.torromeo@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

0.1.0-beta.25

2 months ago

0.1.0-beta.24

2 months ago

0.1.0-beta.23

3 months ago

0.1.0-beta.21

3 months ago

0.1.0-beta.22

3 months ago

0.1.0-beta.20

4 months ago

0.1.0-beta.19

5 months ago

0.1.0-beta.18

5 months ago

0.1.0-beta.17

5 months ago

0.1.0-beta.12

10 months ago

0.1.0-beta.14

6 months ago

0.1.0-beta.13

7 months ago

0.1.0-beta.16

6 months ago

0.1.0-beta.15

6 months ago

0.1.0-beta.5

12 months ago

0.1.0-beta.10

11 months ago

0.1.0-beta.11

11 months ago

0.1.0-beta.7

12 months ago

0.1.0-beta.6

12 months ago

0.1.0-beta.9

11 months ago

0.1.0-beta.8

11 months ago

0.1.0-beta.3

2 years ago

0.1.0-beta.4

2 years ago

0.1.0-beta.2

2 years ago

0.1.0-beta.1

2 years ago

0.1.0-alpha.13

2 years ago

0.1.0-alpha.12

3 years ago

0.1.0-alpha.11

3 years ago

0.1.0-alpha.10

3 years ago

0.1.0-alpha.9

3 years ago

0.1.0-alpha.8

3 years ago

0.1.0-alpha.7

3 years ago

0.1.0-alpha.6

3 years ago

0.1.0-alpha.5

3 years ago

0.1.0-alpha.4

3 years ago

0.1.0-alpha.3

3 years ago

0.1.0-alpha.2

3 years ago

0.1.0-alpha.1

3 years ago

0.1.0-alpha.0

3 years ago