0.3.2 • Published 2 months ago

@geops/geops-ui v0.3.2

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

geops-ui

npm code style: prettier

This library provides the geOps Styleguide with a material-ui theme, custom material-ui components, a stylesheet, and images.

Documentation and examples at https://ui.geops.de/.

Visit 404.html for a static "Not found" page and modify the back link at the bottom respectively.

Getting Started

Install the geops-ui package:

yarn add @geops/geops-ui

Import e.g. the theme, header, footer, an image, and the stylesheet (available as scss and css) in your project:

import { geopsTheme, Header, Footer, GeopsLogoLargeSVG } from '@geops/geops-ui';

import '@geops/geops-ui/geops-ui.scss';
// Alternatively
import '@geops/geops-ui/geops-ui.css';

Run demonstration (examples)

Clone the project and run:

yarn install
yarn start

Notes

SVGs (e.g. in the Header and Footer) may not load properly depending on the webpack configuration. This can be fixed by adding a loader rule in webpackConfig using file-loader:

{
  webpackConfig: {
    module: {
      rules: [
        {
          test: /^((?!url).)*\.svg$/,
          include: [
            path.resolve(__dirname, 'node_modules', '@geops', 'geops-ui'), // Load geops-ui SVGs using file-loader
          ],
          use: [
            {
              loader: 'file-loader',
              options: {
                jsx: true,
              },
            },
          ],
        },
      ]
    }
  }
}

More

0.3.0

2 months ago

0.3.2

2 months ago

0.3.1

2 months ago

0.2.2-beta.0

2 months ago

0.2.2-beta.2

2 months ago

0.2.2-beta.1

2 months ago

0.2.2-beta.4

2 months ago

0.2.1-beta.0

2 months ago

0.2.2-beta.3

2 months ago

0.2.1-beta.1

2 months ago

0.2.0

2 months ago

0.1.16

2 years ago

0.1.17

2 years ago

0.1.18

2 years ago

0.1.14

2 years ago

0.1.15

2 years ago

0.1.13

2 years ago

0.1.11

3 years ago

0.1.12

3 years ago

0.1.11-beta.2

3 years ago

0.1.11-beta.0

3 years ago

0.1.11-beta.1

3 years ago

0.1.9-beta.9

3 years ago

0.1.10-beta.1

3 years ago

0.1.10

3 years ago

0.1.9-beta.7

3 years ago

0.1.9-beta.8

3 years ago

0.1.9

3 years ago

0.1.9-beta.2

3 years ago

0.1.9-beta.5

3 years ago

0.1.9-beta.6

3 years ago

0.1.9-beta.3

3 years ago

0.1.9-beta.4

3 years ago

0.1.9-beta.1

3 years ago

0.1.9-beta.0

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

4 years ago

0.1.4-beta.2

4 years ago

0.1.4-beta.1

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.2-beta.2

4 years ago

0.1.2-beta.1

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago