0.4.7 • Published 1 month ago

hsrp-components v0.4.7

Weekly downloads
233
License
-
Repository
-
Last release
1 month ago

Netlify Status

HSRP Components

Shared component library for HSRP apps using Vue and documented via VuePress.

Full Documentation

View component demos and documentation here

Setup

# install dependencies
npm install

# start the VuePress instance for documentation, including live component demos
npm run docs:dev

# build the component library, bundled into dist directory
npm run build

# build the VuePress document site, bundled into docs/.vuepress/dist
npm run docs:build

How it works

Components

The library is a Vue plugin. Its install function in install.js imports all components from components folder, registers them to Vue and automatically call itself. You can also import components individually, either in main.js and register globally, or within specific single-file components. This method may be preferred so that IDEs are able to recognize component metadata.

<template>
  <Alert text="This is an alert message" />
  <Button label="Click me" />
</template>
<script>
import { Alert, Button } from 'hsrp-components';

export default {
  components: { Alert, Button },
}
</script>

Third-party libraries

The components within this library currently rely on uswds (U.S. Web Design System), lodash (for computing methods within Table component), and vue-select (for special text input/select functionality)

Tree-shaking

To ensure the smallest bundle size, import specific functions from dependencies. For example, lodash is used in the Table component. Use import sort from 'lodash/sort' to ensure the full lodash library is not bundled with this component library. Do NOT use import {sort} from 'lodash', otherwise the full library will be bundled.

0.4.7

1 month ago

0.4.5

1 month ago

0.4.6

1 month ago

0.4.4

3 months ago

0.4.1

4 months ago

0.4.3

4 months ago

0.4.2

4 months ago

0.4.0

5 months ago

0.3.14

5 months ago

0.3.13

5 months ago

0.3.12

8 months ago

0.3.9

11 months ago

0.3.11

9 months ago

0.3.10

9 months ago

0.3.8

1 year ago

0.3.6

1 year ago

0.3.5

1 year ago

0.3.7

1 year ago

0.3.4

1 year ago

0.3.3

1 year ago

0.3.0

2 years ago

0.3.2

1 year ago

0.3.1

1 year ago

0.1.79

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.78

2 years ago

0.1.76

2 years ago

0.1.77

2 years ago

0.1.74

2 years ago

0.1.75

2 years ago

0.1.71

2 years ago

0.1.72

2 years ago

0.1.73

2 years ago

0.1.70

3 years ago

0.1.69

3 years ago

0.1.68

3 years ago

0.1.67

3 years ago

0.1.64

3 years ago

0.1.65

3 years ago

0.1.66

3 years ago

0.1.63

3 years ago

0.1.61

3 years ago

0.1.62

3 years ago

0.1.57

3 years ago

0.1.58

3 years ago

0.1.59

3 years ago

0.1.60

3 years ago

0.1.56

3 years ago

0.1.55

3 years ago

0.1.54

3 years ago

0.1.53

3 years ago

0.1.52

3 years ago

0.1.50

3 years ago

0.1.51

3 years ago

0.1.49

3 years ago

0.1.48

3 years ago

0.1.42

3 years ago

0.1.43

3 years ago

0.1.44

3 years ago

0.1.45

3 years ago

0.1.46

3 years ago

0.1.47

3 years ago

0.1.41

3 years ago

0.1.40

3 years ago

0.1.39

3 years ago

0.1.38

3 years ago

0.1.37

3 years ago

0.1.35

3 years ago

0.1.36

3 years ago

0.1.34

3 years ago

0.1.33

3 years ago

0.1.32

3 years ago

0.1.31

3 years ago

0.1.30

3 years ago

0.1.28

3 years ago

0.1.29

3 years ago

0.1.27

4 years ago

0.1.26

4 years ago

0.1.23

4 years ago

0.1.24

4 years ago

0.1.25

4 years ago

0.1.22

4 years ago

0.1.21

4 years ago

0.1.20

4 years ago

0.1.19

4 years ago

0.1.17

4 years ago

0.1.18

4 years ago

0.1.16

4 years ago

0.1.15

4 years ago

0.1.14

4 years ago

0.1.12

4 years ago

0.1.13

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.2

4 years ago

0.1.3

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago