spiderly 19.3.0 → 19.4.0-preview.0

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.
Files changed (31) hide show
  1. package/README.md +17 -17
  2. package/fesm2022/spiderly.mjs +122 -85
  3. package/fesm2022/spiderly.mjs.map +1 -1
  4. package/lib/components/layout/layout.component.d.ts +5 -1
  5. package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +14 -1
  6. package/package.json +1 -1
  7. package/styles/components/info-card/info-card.component.scss +60 -60
  8. package/styles/components/layout/profile-avatar/profile-avatar.component.scss +8 -8
  9. package/styles/components/layout/topbar/topbar.component.scss +38 -38
  10. package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +48 -48
  11. package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +55 -55
  12. package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +8 -8
  13. package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +16 -16
  14. package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +87 -87
  15. package/styles/controls/base-controls.scss +16 -16
  16. package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +22 -22
  17. package/styles/styles/layout/_content.scss +14 -14
  18. package/styles/styles/layout/_footer.scss +11 -11
  19. package/styles/styles/layout/_main.scss +34 -34
  20. package/styles/styles/layout/_menu.scss +137 -137
  21. package/styles/styles/layout/_mixins.scss +13 -13
  22. package/styles/styles/layout/_preloading.scss +47 -47
  23. package/styles/styles/layout/_responsive.scss +102 -102
  24. package/styles/styles/layout/_spiderly-controls.scss +14 -14
  25. package/styles/styles/layout/_topbar.scss +235 -235
  26. package/styles/styles/layout/_typography.scss +63 -63
  27. package/styles/styles/layout/_utils.scss +19 -19
  28. package/styles/styles/layout/_variables.scss +908 -908
  29. package/styles/styles/layout/layout.scss +11 -11
  30. package/styles/styles/shared.scss +483 -483
  31. package/styles/styles/styles.scss +2 -2
package/README.md CHANGED
@@ -1,18 +1,18 @@
1
- <div align="right">
2
- <img src="https://github.com/filiptrivan/spiderly/blob/main/spiderly-logo.svg" alt="Spiderly Logo" width="60"/>
3
- </div>
4
-
5
- # Spiderly Angular
6
- Spiderly Angular is a library designed to work with Spiderly, but it can also be used independently. It utilizes the PrimeNG UI library.
7
-
8
- ## Sakai PrimeNG Theme
9
- Currently, Spiderly Angular uses and provides the layout of the free Sakai PrimeNG theme.
10
-
11
- ## Authentication
12
- Supports JWT-based login and registration, with optional Google sign-in.
13
-
14
- ## Loading Spinner Interceptor
15
- Displays a full-page loading spinner on every HTTP request. The spinner disappears when the request succeeds or fails.
16
-
17
- ## Publishing
1
+ <div align="right">
2
+ <img src="https://github.com/filiptrivan/spiderly/blob/main/spiderly-logo.svg" alt="Spiderly Logo" width="60"/>
3
+ </div>
4
+
5
+ # Spiderly Angular
6
+ Spiderly Angular is a library designed to work with Spiderly, but it can also be used independently. It utilizes the PrimeNG UI library.
7
+
8
+ ## Sakai PrimeNG Theme
9
+ Currently, Spiderly Angular uses and provides the layout of the free Sakai PrimeNG theme.
10
+
11
+ ## Authentication
12
+ Supports JWT-based login and registration, with optional Google sign-in.
13
+
14
+ ## Loading Spinner Interceptor
15
+ Displays a full-page loading spinner on every HTTP request. The spinner disappears when the request succeeds or fails.
16
+
17
+ ## Publishing
18
18
  After building with `ng build spiderly`, navigate to dist/spiderly with `cd dist/spiderly` and run `npm publish`.