@lumston/ds-angular 0.0.5 → 0.0.6

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 (32) hide show
  1. package/package.json +1 -1
  2. package/styles/{components/styles → styles}/index.css +1 -1
  3. package/styles/components/styles/_base.css +0 -10
  4. package/styles/components/styles/_tokens.css +0 -75
  5. package/styles/index.css +0 -28
  6. /package/styles/{components/data-display → data-display}/badge/badge.styles.css +0 -0
  7. /package/styles/{components/data-display → data-display}/chip/chip.styles.css +0 -0
  8. /package/styles/{components/dropdown → dropdown}/dropdown.styles.css +0 -0
  9. /package/styles/{components/feedback → feedback}/alert/alert.styles.css +0 -0
  10. /package/styles/{components/feedback → feedback}/loader/loader.styles.css +0 -0
  11. /package/styles/{components/feedback → feedback}/progress-bar/progress-bar.styles.css +0 -0
  12. /package/styles/{components/icon → icon}/icon.styles.css +0 -0
  13. /package/styles/{components/inputs → inputs}/button/button.styles.css +0 -0
  14. /package/styles/{components/inputs → inputs}/checkbox/checkbox.styles.css +0 -0
  15. /package/styles/{components/inputs → inputs}/icon-button/icon-button.styles.css +0 -0
  16. /package/styles/{components/inputs → inputs}/radio-button/radio-button.styles.css +0 -0
  17. /package/styles/{components/inputs → inputs}/slider/slider.styles.css +0 -0
  18. /package/styles/{components/inputs → inputs}/switch/switch.styles.css +0 -0
  19. /package/styles/{components/media → media}/avatar/avatar.styles.css +0 -0
  20. /package/styles/{components/media → media}/avatar-group/avatar-group.styles.css +0 -0
  21. /package/styles/{components/media → media}/logo/logo.styles.css +0 -0
  22. /package/styles/{components/navigation → navigation}/breadcrumb/breadcrumb.styles.css +0 -0
  23. /package/styles/{components/navigation → navigation}/pagination/pagination.styles.css +0 -0
  24. /package/styles/{components/overlay → overlay}/menu/menu.styles.css +0 -0
  25. /package/styles/{components/overlay → overlay}/modal/modal.styles.css +0 -0
  26. /package/styles/{components/overlay → overlay}/popover/popover.styles.css +0 -0
  27. /package/styles/{components/overlay → overlay}/tooltip/tooltip.styles.css +0 -0
  28. /package/styles/{_base.css → styles/_base.css} +0 -0
  29. /package/styles/{_tokens.css → styles/_tokens.css} +0 -0
  30. /package/styles/{components/typography → typography}/link/link.styles.css +0 -0
  31. /package/styles/{components/typography → typography}/tag/tag.styles.css +0 -0
  32. /package/styles/{components/typography → typography}/text/text.styles.css +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumston/ds-angular",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Lumston Design System for Angular",
5
5
  "author": "tsanchez",
6
6
  "peerDependencies": {
@@ -2,7 +2,7 @@
2
2
 
3
3
  @import './_tokens.css';
4
4
  @import './_base.css';
5
- @import "./components/button/button.styles.css"
5
+ @import "./inputs/button/button.styles.css"
6
6
  /* @import '../inputs/button/button.styles.css';
7
7
  @import '../inputs/checkbox/checkbox.styles.css';
8
8
  @import '../inputs/icon-button/icon-button.styles.css';
@@ -1,10 +0,0 @@
1
- /* Lumston Design System — Base / Keyframes */
2
-
3
- @keyframes ls-spin {
4
- from {
5
- transform: rotate(0deg);
6
- }
7
- to {
8
- transform: rotate(360deg);
9
- }
10
- }
@@ -1,75 +0,0 @@
1
- /* Lumston Design System — Design Tokens */
2
-
3
- :root {
4
- /* Primary */
5
- --ls-color-primary: #4361ee;
6
- --ls-color-primary-light: #eaf1ff;
7
- --ls-color-primary-dark-light: rgba(67, 97, 238, 0.15);
8
-
9
- /* Secondary */
10
- --ls-color-secondary: #805dca;
11
- --ls-color-secondary-light: #ebe4f7;
12
- --ls-color-secondary-dark-light: rgb(128 93 202 / 15%);
13
-
14
- /* Success */
15
- --ls-color-success: #00ab55;
16
- --ls-color-success-light: #ddf5f0;
17
- --ls-color-success-dark-light: rgba(0, 171, 85, 0.15);
18
-
19
- /* Danger */
20
- --ls-color-danger: #e7515a;
21
- --ls-color-danger-light: #fff5f5;
22
- --ls-color-danger-dark-light: rgba(231, 81, 90, 0.15);
23
-
24
- /* Error (alias of Danger) */
25
- --ls-color-error: #e7515a;
26
- --ls-color-error-light: #fff5f5;
27
- --ls-color-error-dark-light: rgba(231, 81, 90, 0.15);
28
-
29
- /* Warning */
30
- --ls-color-warning: #e2a03f;
31
- --ls-color-warning-light: #fff9ed;
32
- --ls-color-warning-dark-light: rgba(226, 160, 63, 0.15);
33
-
34
- /* Info */
35
- --ls-color-info: #2196f3;
36
- --ls-color-info-light: #e7f7ff;
37
- --ls-color-info-dark-light: rgba(33, 150, 243, 0.15);
38
-
39
- /* Dark */
40
- --ls-color-dark: #3b3f5c;
41
- --ls-color-dark-light: #eaeaec;
42
- --ls-color-dark-dark-light: rgba(59, 63, 92, 0.15);
43
-
44
- /* Black */
45
- --ls-color-black: #0e1726;
46
- --ls-color-black-light: #e3e4eb;
47
- --ls-color-black-dark-light: rgba(14, 23, 38, 0.15);
48
-
49
- /* White */
50
- --ls-color-white: #ffffff;
51
- --ls-color-white-light: #e0e6ed;
52
- --ls-color-white-dark: #888ea8;
53
-
54
- /* Typography */
55
- --ls-font-family: 'Nunito', sans-serif;
56
-
57
- /* Transitions */
58
- --ls-transition-duration: 300ms;
59
-
60
- /* Border radius */
61
- --ls-border-radius-md: 0.375rem;
62
- --ls-border-radius-lg: 0.5rem;
63
- --ls-border-radius-full: 9999px;
64
-
65
- /* Modal */
66
- --ls-modal-z-index: 1000;
67
- --ls-modal-backdrop-bg: rgba(0, 0, 0, 0.5);
68
-
69
- /* Menu */
70
- --ls-menu-z-index: 1001;
71
-
72
- /* Gradient */
73
- --ls-gradient-start: #ef1262;
74
- --ls-gradient-end: #4361ee;
75
- }
package/styles/index.css DELETED
@@ -1,28 +0,0 @@
1
- /* Lumston Design System — All Styles */
2
-
3
- @import './_tokens.css';
4
- @import './_base.css';
5
- @import "./components/button/button.styles.css"
6
- /* @import '../inputs/button/button.styles.css';
7
- @import '../inputs/checkbox/checkbox.styles.css';
8
- @import '../inputs/icon-button/icon-button.styles.css';
9
- @import '../inputs/radio-button/radio-button.styles.css';
10
- @import '../inputs/slider/slider.styles.css';
11
- @import '../inputs/switch/switch.styles.css';
12
- @import '../typography/text/text.styles.css';
13
- @import '../typography/tag/tag.styles.css';
14
- @import '../typography/link/link.styles.css';
15
- @import '../feedback/loader/loader.styles.css';
16
- @import '../overlay/tooltip/tooltip.styles.css';
17
- @import '../media/avatar/avatar.styles.css';
18
- @import '../media/avatar-group/avatar-group.styles.css';
19
- @import '../media/logo/logo.styles.css';
20
- @import '../data-display/badge/badge.styles.css';
21
- @import '../data-display/chip/chip.styles.css';
22
- @import '../feedback/progress-bar/progress-bar.styles.css';
23
- @import '../feedback/alert/alert.styles.css';
24
- @import '../overlay/modal/modal.styles.css';
25
- @import '../overlay/popover/popover.styles.css';
26
- @import '../navigation/pagination/pagination.styles.css';
27
- @import '../navigation/breadcrumb/breadcrumb.styles.css';
28
- @import '../overlay/menu/menu.styles.css'; */
File without changes
File without changes