1.0.8 • Published 1 year ago

@applaudo/react-clapp-ui v1.0.8

Weekly downloads
-
License
Apache-2.0
Repository
bitbucket
Last release
1 year ago

Crates.io npm bundle size npm

The starting point of the Design System was Applaudo’s branding and core values, with every teammate in mind and covering products for the development community and customers alike.

:sparkles: Features

  • :recycle: Drop in replacement for ant design.
  • :rainbow: Function based components.
  • :package: A set of React components.
  • :nut_and_bolt: Written in TypeScript.
  • :art: Applaudo Studios' theme.

:package: Install

For stable versions

npm i @applaudo/react-clapp-ui
yarn add @applaudo/react-clapp-ui

For the latest beta version

npm i @applaudo/react-clapp-ui@beta
yarn add @applaudo/react-clapp-ui@beta

For the absolute latest unstable changes

npm i @applaudo/react-clapp-ui@dev

:hammer: Usage

Wrap the root component of your app in the layout to provide some necessary context and styles.

import React from 'react';
import ReactDOM from 'react-dom';
import { Button, Layout } from '@applaudo/react-clapp-ui';

function App() {
  return (
    <Layout>
      <div>
        <Button mode="primary">
          Click me!
        </Button>
      </div>
    </Layout>
  );
}

ReactDOM.render(<App />, document.querySelector('#app'));

TypeScript

react-clapp-ui is written in TypeScript.

:link: Links

Clapp Styleguide

Documentation

:scroll: Changelog

Version 1.0.8 (April 11, 2023)

  • Improvements:
    • Button: fix the display property when the button is a link
    • Dropdown: fix component dimensions
    • Layout: fix Content layer dimensions
  • Update component docs

Version 1.0.7 (April 10, 2023)

  • Improvements:
    • Button: support to use the button as a link
    • Menu: support to add a wrapper or link around a menu item
    • Upload: support to customize the text literals
  • Update component docs

Version 1.0.6 (January 17, 2023)

  • Fixes:
    • Upload: the button to remove the file is shown as expected
    • DataTable: export Column component + unify dataSource properties

Version 1.0.5 (January 2, 2023)

  • Fixes:
    • Pagination: fix overlap in PageJumper

Version 1.0.4 (December 29, 2022)

  • Improvements:
    • DataTable: support for config object in pagination prop

Version 1.0.3 (December 12, 2022)

  • Update brand docs

Version 1.0.2 (December 8, 2022)

  • Fixes:
    • Fix styles in RangePicker component

Version 1.0.1 (December 7, 2022)

  • Fixes:
    • Export Header, Content, Footer & RangePicker components
    • Mark Sider bottomElement prop as optional

Version 1.0.0 (December 6, 2022)

  • Long Term Support version

Version 0.3.7 (Archived)

  • Adding new components:
    • Range Picker
    • Layout Grid
    • Sider
    • Menu

Version 0.3.6 (October 14, 2022)

  • Adding new components:
    • Card

Version 0.3.5 (September 23, 2022)

  • Adding new components:
    • Radio Group
  • Improvements:
    • More form items and validations
  • Fixes:
    • Button: update font styles and css states
    • Modal: show an empty footer if no handlers are provided

Version 0.3.4 (August 31, 2022)

  • Adding new components:
    • Select
    • Sorter
    • Comment
  • Improvements:
    • More form items
  • Fixes:
    • Searchbar: container padding and font styles

Version 0.3.3 (August 10, 2022)

  • Fixes:
    • Fix some broken css imports in Upload & Skeleton components

Version 0.3.2 (August 9, 2022)

  • Adding new components:
    • Slider
  • Improvements:
    • Support for asynchronous form validations

Version 0.3.1 (Archived)

  • Adding new components:
    • Skeleton
    • Searchbar
    • Tags selector
    • Pop Confirm (Basic & Placement V1)
  • Improvements:
    • More form items and validations
  • Fixes:
    • TextArea: container height
    • TextInput: container height

Version 0.3.0 (Archived)

  • Adding new components:
    • InputNumber
    • Modal
    • Forms
    • Form items
  • remarks: Form validation only works with sync functions

Version 0.2.5 (Archived)

  • Adding new components:

    • Carousel
    • DataTable
    • Upload Drag and drop
    • Upload avatar

Version 0.2.0 (April 18, 2022)

  • Now all lib Icons are exported for reuse in the target project
  • Adding new components:
    • FilterGroup
    • Pagination
    • Upload button
  • Improvements:
    • Tags:
      • custom class and styles can be now applied
    • Update general documentation
  • Fixes:
    • Dropdown:
      • fix bug where updating the selected value did not update the UI
      • correct styles to better match other input in Filter group
      • styles and inherited properties from div are now applied
    • TextInput
      • Fix suffix prop typing, it was intersecting string coming from native HTML suffix
      • updating styles to match new Clapp specs

Special thanks to Danilo Rivera for his contributions as an early adopter

Version 0.1.6 (March 29, 2022)

  • Fixes
    • Storybook dependency leak removed, some projects having issues with babel deps

Version 0.1.5 (March 21, 2022)

  • CSS is now automatically import by every component, no need to add the global stylesheet
  • Font assets updated from Avenir Next Pro LT to Avenir Next and are now ship with the NPM package, they are no longer download from a third party server.
  • Adding new components:
    • Notification
    • Tooltip
    • Divider
    • Image
  • DropDown: rewrite implementation with rc-dropdown as the basis, API is the same
  • :boom: Changes
    • :wastebasket: Deprecating theme attribute in Clapp context, this will be remove in version 0.2.0

Version 0.1.0 (March 3, 2022)

  • Adding a default CJS module alongside the ESM for non ESM tools
  • Exporting various public types that were missing in previous versions
  • Adding data display component
    • Avatar
    • Image (alpha stage)
    • Tags
  • Adding navigation components
    • Breadcrumb and BreadcrumbItem
    • Tabs
  • Fixes:
    • Datepicker:
      • displays the calendar dropdown position correctly, so it does not jump to the beginning of the container.
    • DropDown:
      • Positions the menu relative to itself so if the parent container scrolls, the DropDown also scrolls with the parent instead of getting stuck in the static position
      • Correcting the type for the onChange callback function not to include the Div event type

Version 0.0.8 (February 8, 2022)

  • Improving documentation for components
  • Adding new components:
    • Datepicker
    • DropDown
    • Link

Version 0.0.4 (January 25, 2022)

  • Adding new components:
    • Button
    • Checkbox
    • Heading
    • Label
    • Radio Button
    • Switch
    • Text Area
    • Text Input
1.0.8

1 year ago

1.0.7

1 year ago

1.0.6-beta.77

1 year ago

1.0.6-beta.78

1 year ago

1.0.6-beta.79

1 year ago

1.0.6-beta.73

1 year ago

1.0.6-beta.74

1 year ago

1.0.6-beta.75

1 year ago

1.0.6-beta.76

1 year ago

1.0.6-beta.72

1 year ago

1.0.6-beta.80

1 year ago

1.0.4-beta.61

1 year ago

1.0.3-dev.4

1 year ago

1.0.5-beta.62

1 year ago

1.0.5-beta.63

1 year ago

1.0.5-beta.64

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3-beta.60

1 year ago

1.0.3-beta.59

1 year ago

1.0.3-beta.58

1 year ago

0.3.5-beta.44

2 years ago

0.3.5-beta.46

2 years ago

0.3.5-beta.45

2 years ago

1.0.0-beta.54

1 year ago

0.3.6

2 years ago

0.3.6-beta.47

2 years ago

0.3.6-beta.49

1 year ago

0.3.6-beta.48

1 year ago

1.0.1-beta.55

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.0.3

1 year ago

1.0.2-beta.56

1 year ago

0.3.6-beta.50

1 year ago

0.3.6-beta.52

1 year ago

0.3.6-beta.51

1 year ago

0.3.6-beta.53

1 year ago

1.0.3-beta.57

1 year ago

0.3.5-beta.43

2 years ago

0.3.5-beta.42

2 years ago

0.3.5

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.4-dev.4

2 years ago

0.3.3-beta.34

2 years ago

0.3.3-beta.35

2 years ago

0.3.3-beta.32

2 years ago

0.3.3-beta.33

2 years ago

0.3.3-beta.31

2 years ago

0.3.3-dev.80

2 years ago

0.3.3-dev.81

2 years ago

0.3.3-dev.82

2 years ago

0.3.3-dev.83

2 years ago

0.3.4-beta.41

2 years ago

0.3.2-dev.79

2 years ago

0.3.2-dev.78

2 years ago

0.3.4-beta.37

2 years ago

0.3.4-beta.36

2 years ago

0.3.3-dev.3

2 years ago

0.3.3-dev.2

2 years ago

0.3.3-dev.1

2 years ago

0.3.2-beta.30

2 years ago

0.3.2

2 years ago

0.3.1-dev.49

2 years ago

0.3.1-dev.67

2 years ago

0.3.0-dev.45

2 years ago

0.3.1-dev.66

2 years ago

0.3.0-dev.46

2 years ago

0.3.1-dev.65

2 years ago

0.3.0-dev.47

2 years ago

0.3.1-dev.64

2 years ago

0.3.1-dev.63

2 years ago

0.3.1-dev.62

2 years ago

0.3.1-dev.61

2 years ago

0.3.1-dev.60

2 years ago

0.3.0-dev.42

2 years ago

0.3.1-dev.69

2 years ago

0.3.0-dev.43

2 years ago

0.3.1-dev.68

2 years ago

0.3.0-dev.44

2 years ago

0.3.1-dev.56

2 years ago

0.3.1-dev.55

2 years ago

0.3.1-dev.54

2 years ago

0.3.1-dev.52

2 years ago

0.3.1-dev.51

2 years ago

0.3.1-beta.28

2 years ago

0.3.1-beta.27

2 years ago

0.3.1-beta.29

2 years ago

0.3.1-dev.59

2 years ago

0.3.2-dev.77

2 years ago

0.3.1-dev.76

2 years ago

0.3.1-dev.75

2 years ago

0.3.1-dev.74

2 years ago

0.3.1-dev.73

2 years ago

0.3.1-dev.72

2 years ago

0.3.1-dev.71

2 years ago

0.3.1-dev.70

2 years ago

0.2.5-beta.26

2 years ago

0.2.5-beta.24

2 years ago

0.2.5-beta.25

2 years ago

0.2.5-beta.22

2 years ago

0.2.5-beta.23

2 years ago

0.2.5-dev.38

2 years ago

0.2.5-dev.33

2 years ago

0.2.5-dev.37

2 years ago

0.2.5-dev.36

2 years ago

0.2.5-dev.35

2 years ago

0.3.0-dev.39

2 years ago

0.1.5-beta.10

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.5-beta.9

2 years ago

0.1.5-beta.8

2 years ago

0.1.5-beta.7

2 years ago

0.2.0-beta.20

2 years ago

0.1.5-dev.20

2 years ago

0.2.5-dev.30

2 years ago

0.2.0-dev.23

2 years ago

0.2.0-dev.22

2 years ago

0.1.5-dev.19

2 years ago

0.2.0-dev.25

2 years ago

0.2.0-dev.24

2 years ago

0.2.0-dev.27

2 years ago

0.1.5-dev.16

2 years ago

0.2.0-dev.26

2 years ago

0.1.5-dev.15

2 years ago

0.1.5-dev.18

2 years ago

0.2.0-dev.28

2 years ago

0.1.5-dev.17

2 years ago

0.2.0

2 years ago

0.2.0-dev.21

2 years ago

0.2.0-beta.11

2 years ago

0.2.0-beta.12

2 years ago

0.2.0-beta.13

2 years ago

0.2.0-beta.14

2 years ago

0.2.0-beta.19

2 years ago

0.1.0-dev.78

2 years ago

0.1.0

2 years ago

0.1.0-dev.13

2 years ago

0.1.0-dev.12

2 years ago

0.1.0-dev.11

2 years ago

0.1.0-dev.10

2 years ago

0.1.0-dev.7

2 years ago

0.1.0-dev.8

2 years ago

0.1.0-dev.5

2 years ago

0.1.0-dev.6

2 years ago

0.1.0-dev.9

2 years ago

0.1.0-beta.198

2 years ago

0.1.0-beta.194

2 years ago

0.1.0-beta.191

2 years ago

0.1.0-beta.185

2 years ago

0.1.0-dev.183

2 years ago

0.1.0-dev.180

2 years ago

0.1.0-dev.175

2 years ago

0.1.0-dev.171

2 years ago

0.1.0-dev.168

2 years ago

0.1.0-dev.156

2 years ago

0.1.0-dev.148

2 years ago

0.1.0-dev.144

2 years ago

0.0.8

2 years ago

0.0.8-beta.139

2 years ago

0.0.8-beta.137

2 years ago

0.0.8-beta.135

2 years ago

0.0.8-beta.133

2 years ago

0.0.8-beta.127

2 years ago

0.0.8-beta.123

2 years ago

0.0.8-beta.122

2 years ago

0.0.8-beta.117

2 years ago

0.0.8-beta.115

2 years ago

0.0.8-dev.112

2 years ago

0.0.8-dev.106

2 years ago

0.0.8-dev.90

2 years ago

0.0.8-dev.87

2 years ago

0.0.4

2 years ago

0.0.4-beta.82

2 years ago

0.0.4-dev.80

2 years ago

0.0.4-dev.69

2 years ago

0.0.4-dev.67

2 years ago

0.0.4-beta.63

2 years ago

0.0.4-dev.62

2 years ago

0.0.4-dev.56

2 years ago

0.0.4-dev.53

2 years ago

0.0.4-dev.51

2 years ago

0.0.4-dev.46

2 years ago

0.0.4-dev.38

2 years ago

0.0.4-dev.24

2 years ago

0.0.4-dev.23

2 years ago

0.0.3-dev.17

2 years ago