Skip to content

Commit

Permalink
feat(version): 3.7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
lubomirblazekcz committed Aug 18, 2024
1 parent 8bc5983 commit 55d8f2e
Show file tree
Hide file tree
Showing 123 changed files with 3,633 additions and 7,070 deletions.
12 changes: 0 additions & 12 deletions .eslintrc

This file was deleted.

60 changes: 60 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,63 @@
v3.7.4
* feat: updated to eslint v9 and neostandard
* feat: naja update
* feat: updated deps

v3.7.3
* feat: updated to naja 3.2
* feat: updated to swup 3.7

v3.7.2
* fix: ui-check validate method
* fix: lib-form example
* fix: ui-control, ui-check dynamic import
* feat: deps update

v3.7.1
* feat: updated to winduum 1.2.0
* feat(bc): removed tippy, added c-popover as alternative

v3.7.0
* feat(bc): added winduum c-drawer
* feat(bc): changed layout components from ids to classes
* feat(bc): removed l-default wrapper in Layout/Main.tpl
* feat(bc): removed browser detection script from Layout/Main.tpl
* feat(bc): c-cookieconsent renamed to c-dialog-cookieconsent
* feat(bc): added @newlogic-digital/cookieconsent-js
* feat(bc): added naja 3.1, now lazy loaded and with extensions
* feat(bc): removed stimulus lib-naja#makeRequest in favour of data-naja
* feat(bc): recaptcha submit removed, follow docs for more info
* feat(bc): removed most of utils in favour of @newlogic-digital/utils-js
* feat(bc): removed lib-script in favour of @newlogic-digital/utils-js
* feat(bc): removed lib-slider, use c-carousel from winduum instead
* feat(bc): removed ui-dot, use winduum dot utility class instead
* feat(bc): theme, removed rgb css properties
* feat(bc): removed styles/Utils/icons.css, use styles/Utils/config.css instead
* feat(bc): removed styles/Utils/print.css
* feat(bc): renamed styles/Utils/tailwind.css to styles/Utils/utilities.css
* feat(bc): updated to winduum 1.1.1
* feat: added toaster from winduum
* feat: added delegateController helper for access other controllers
* feat: added lib-reveal with ability to lazy-load controllers
* feat: added winduum c-form, lib-form stays
* feat: added initAfter util helper
* feat: removed has polyfill
* feat: removed lib-hint, use winduum c-popover
* feat: new modern favicons
* feat: updated to vite v5.2

v3.6.5
* feat: cookie consent update
* feat: manual chunks

v3.6.4
* feat: update winduum v1.0.0
* fix: swup transition and containers

v3.6.3
* feat: update winduum v0.9.0
* fix: swup scroll

v3.6.2
* feat: update winduum v0.7.0

Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ Lightweight, modern and modular CSS framework with the best principles
- ✨️ Progressive
- ⚡️ Fast

## Příprava projektu pro implementaci
1. nainstalovat node - `npm i`
2. nainstalovat cms - `newlogic init cms`
3. vytvořit si db na devlogic.cz a nastavit v `config/local.neon`
4. spustit `docker compose up` a `vite`
5. spustit `make prepare`
6. spustit `make phinx-seed`
7. nastavit `FTP_SERVER`, `DB_USERNAME` a `DB_PASSWORD` a vytvořit prostor na devlogic.cz
8. commitnout změny a pushnout

Newlogic UI is component framework with easy syntax for backend integration. Modern approach of CSS properties, enriched with utility classes from TailwindCSS and powered by Winduum.

Javascript implementation is only **28 kB** and mainly intended for use on backend rendered websites and applications with PHP framework Nette
Expand Down
13 changes: 13 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import neostandard, { plugins } from 'neostandard'

export default [
...neostandard({
env: ['browser'],
ignores: ['**/+.js']
}),
plugins['@stylistic'].configs.customize({
indent: 4,
commaDangle: 'never',
braceStyle: '1tbs'
})
]
Loading

0 comments on commit 55d8f2e

Please sign in to comment.