@festo-ui/web-essentials 6.1.0-dev.253 → 6.1.0-dev.261
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/dist/css/festo-web-essentials.css +41 -37
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +2 -2
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_table.scss +20 -11
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +1 -1
- package/scss/_table.scss +20 -11
package/README.md
CHANGED
|
@@ -12,16 +12,17 @@ It is written in SCSS and brings you all the features you need to quickstart you
|
|
|
12
12
|
For example it contains a responsive grid layout, icons, form controls and many more.
|
|
13
13
|
This framework comes with no javascript at all so you can use it with the javascript framework of your choice.
|
|
14
14
|
|
|
15
|
-
We are also providing [examples](https://
|
|
15
|
+
We are also providing [examples](https://festo.gitlab-pages.festo.company/digital-styleguide/templates/) that you can use as a quickstart for your next Festo web application.
|
|
16
16
|
Let us know if you have a demand for a specific example and we will see what we can do.
|
|
17
17
|
|
|
18
18
|
### Angular & React
|
|
19
19
|
|
|
20
|
-
We love [
|
|
21
|
-
That's why we deliver component libraries for both frameworks based on the Web Essentials ([@festo-ui/angular](https://www.npmjs.com/package/@festo-ui/angular) and [@festo-ui/react](https://www.npmjs.com/package/@festo-ui/react)).
|
|
20
|
+
We love Angular and React at Festo. We deliver the component libraries for Angular and React based on the Web Essentials ([@festo-ui/angular](https://www.npmjs.com/package/@festo-ui/angular) and [@festo-ui/react](https://www.npmjs.com/package/@festo-ui/react)).
|
|
22
21
|
These libraries extend the basic HTML controls of the Web Essentials with enhanced (non-basic) features.
|
|
23
22
|
For example Checkboxes with indeterminate state or sortable table headings.
|
|
24
23
|
|
|
24
|
+
You can explore the current version of Web Essentials, Angular and React components at [https://storybook.festo.design](https://storybook.festo.design).
|
|
25
|
+
|
|
25
26
|
## Getting started
|
|
26
27
|
|
|
27
28
|
Festo Web Essentials comes as a NPM package.
|
|
@@ -61,7 +62,7 @@ background: $hero; // background is carul now
|
|
|
61
62
|
|
|
62
63
|
If you want to use Web Essentials in an __offline__ environment, you have to provide local files for the Festo font.
|
|
63
64
|
* Download the required fonts here: https://festo.sharepoint.com/sites/tggfw/SitePages/Font-Richtlinie.aspx
|
|
64
|
-
* Override the css variable for the font:
|
|
65
|
+
* Override the css variable for the font:
|
|
65
66
|
```scss
|
|
66
67
|
@font-face {
|
|
67
68
|
font-family: "localMeta";
|
|
@@ -71,4 +72,4 @@ If you want to use Web Essentials in an __offline__ environment, you have to pro
|
|
|
71
72
|
:root {
|
|
72
73
|
--fwe-font-family-sans-serif: "localMeta";
|
|
73
74
|
}
|
|
74
|
-
```
|
|
75
|
+
```
|