GithubHelp home page GithubHelp logo

robertmarney / oruga-table Goto Github PK

View Code? Open in Web Editor NEW

This project forked from oruga-ui/oruga

0.0 0.0 0.0 10.1 MB

๐Ÿ› Oruga is a lightweight library of UI components without CSS framework dependency

Home Page: https://oruga.io

License: MIT License

JavaScript 16.51% TypeScript 5.50% HTML 0.01% Vue 70.14% SCSS 7.72% Stylus 0.11%

oruga-table's Introduction

Oruga UI is like a caterpillar, minimal and yet functional. It's in your hands turning it into a butterfly

(๐Ÿ›) => ๐Ÿฆ‹

Oruga is a lightweight library of UI components for Vue.js without CSS framework dependency

Oruga Next version for Vue 3.x

Contact us ๐Ÿ‘พ

Support us โœŒ๐Ÿป

Donate using Ko-fi Donate using Liberapay

Features

  • CSS framework agnostic: No dependency on a specific CSS framework/library but you can easily integrate the components with one of them because they are fully customizable in different ways
  • Components with steroids: most of the components aren't a simple wrapper of native elements but they add new and custom features
  • Lightweight: no other internal dependency and import only components that you need

Oruga doesn't depend on any specific style or CSS framework (like Bootstrap, Bulma, TailwindCSS etc...) and it doesn't provide any grid system or CSS utility, it just offer a set of components easy to customize. Oruga wants you to focus only on UI/UX aspects of your application and be totally flexible to future changes without having to touch a line of JavaScript.

Documentation

Browse online documentation here.

๐Ÿ’… For more info about components customization, read carefully the "customization" section in the documentation.

๐Ÿ•น To see Oruga in action, go to the Example section in the documentation.

Note: the documentation source code is in the docs directory, it serves as the demo as well.

Browser support

๐ŸŒŽ Oruga has been tested in all major browsers

Chrome Firefox IE Opera Safari
Latest โœ” Latest โœ” 10+ โœ” Latest โœ” 6.1+ โœ”

Quick start

๐Ÿ› Oruga is available for Vue.js version 2.6+ or version 3.x

Setup Oruga

Vue 2

  1. Install Oruga.
npm install @oruga-ui/oruga
  1. Import the components:
  • To get started quickly, use Oruga to register all components:

    import Vue from 'vue';
    import Oruga from '@oruga-ui/oruga';
    import '@oruga-ui/oruga/dist/oruga.css';
    
    Vue.use(Oruga);
  • To use tree shaking, either register component manually:

    import Vue from 'vue';
    import { OField, OInput } from '@oruga-ui/oruga';
    import '@oruga-ui/oruga/dist/oruga.css';
    
    Vue.component(OField);
    Vue.component(OInput);
  • or import them in your SFC.

Vue 3

  1. Install Oruga.
npm install @oruga-ui/oruga-next
  1. Import the components:
  • To get started quickly, use Oruga to register all components:

    import { createApp } from 'vue'
    import Oruga from '@oruga-ui/oruga-next';
    import '@oruga-ui/oruga-next/dist/oruga.css';
    
    createApp(...).use(Oruga);
  • To use tree shaking, either register component manually:

    import { createApp } from 'vue'
    import { OField, OInput } from '@oruga-ui/oruga'
    import '@oruga-ui/oruga/dist/oruga.css'
    
    createApp(...)
      .component(OField)
      .component(OInput)
  • or import them in your SFC.

Customization

Please read carefully the "customization" section in Oruga documentation.

If you want to see an example with a fully customized registration form using Tailwind, Bulma, Bootstrap or Material CSS framework have a look at the official Oruga multiframework example(source code available here) or if you're more familiar with TailwindCSS 2 give our official TailwindCSS Demo a try (source code here)

Using Oruga with Nuxt

Oruga provides a Nuxt.js module to easily integrate the library in your Nuxt.js app.

Add @oruga-ui/oruga/nuxt to modules section of your nuxt.config.js file.

module.exports = {
  modules: ['@oruga-ui/oruga/nuxt']
}

You can also extend and/or override classes in this section (see how to add new classes or override existing classes in Oruga)

module.exports = {
  modules: [
    [
      '@oruga-ui/oruga/nuxt',
      {
        button: {
          override: true
        }
      }
    ]
  ]
}

Alternatively you can use Nuxt.js plugins system adding a file (e.g. oruga.js) in your plugins folder containing

import Vue from 'vue'
import Oruga from '@oruga-ui/oruga'
import '@oruga-ui/oruga/dist/oruga.css'

Vue.use(Oruga)

To make this plugin available in your app, add this file to the plugins array in your nuxt.config.js

plugins: [{ src: '~plugins/oruga.js' }]

To understand how the plugins work with Nuxt.js, take a look at the NuxtJS plugin documentation.

Take a look at the official NuxtJS + Oruga example.

Contributing

Please see the contributing guidelines.

Versioning

Oruga uses Semantic Versioning 2.0.0 for package versions.

While it's still in beta, versions will follow this pattern: v0.Y.Z, where:

  • Y: Major (breaking changes)
  • Z: Minor or patch

Roadmap

Core Team


Walter Tommasi


Andrea Stagi

Contributors

Thank you to everyone involved for improving this project, day by day ๐Ÿ’š

Complete list.

Credits

Oruga logo designed by Matteo Guadagnini

Oruga svg images for Checkbox and Radio components and Holidays assets created by Fabrizio Masini

License

Code released under MIT license.

oruga-table's People

Contributors

jtommy avatar astagi avatar dependabot[bot] avatar urkle avatar lsnow99 avatar bzd2000 avatar iqbaltawakkal avatar mattze avatar febrihidayan avatar rubjo avatar tradiff avatar area73 avatar mouadtaoussi avatar fabiiomiiguel avatar blm768 avatar stefanobartoletti avatar cimchd avatar ishitatsuyuki avatar re2005 avatar mmorainville avatar mlmoravek avatar j-a-m-l avatar didaquis avatar danielroe avatar amir20 avatar service-paradis avatar marcosme avatar mateuswetah avatar nbaasmf avatar nickyg91 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.