@lumston/ds-angular 0.0.3 → 0.0.4
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/package.json +7 -9
- package/styles/_base.css +0 -10
- package/styles/_tokens.css +0 -75
- package/styles/index.css +0 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumston/ds-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Lumston Design System for Angular",
|
|
5
5
|
"author": "tsanchez",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -14,23 +14,21 @@
|
|
|
14
14
|
"sideEffects": [
|
|
15
15
|
"*.css"
|
|
16
16
|
],
|
|
17
|
+
"module": "fesm2022/lumston-ds-angular.mjs",
|
|
18
|
+
"typings": "types/lumston-ds-angular.d.ts",
|
|
17
19
|
"exports": {
|
|
20
|
+
"./package.json": {
|
|
21
|
+
"default": "./package.json"
|
|
22
|
+
},
|
|
18
23
|
".": {
|
|
19
24
|
"types": "./types/lumston-ds-angular.d.ts",
|
|
20
|
-
"esm2022": "./esm2022/ds-angular.mjs",
|
|
21
|
-
"esm": "./esm2022/ds-angular.mjs",
|
|
22
25
|
"default": "./fesm2022/lumston-ds-angular.mjs"
|
|
23
26
|
},
|
|
24
27
|
"./styles": {
|
|
25
28
|
"default": "./src/styles/index.css"
|
|
26
29
|
},
|
|
27
|
-
"./package.json": {
|
|
28
|
-
"default": "./package.json"
|
|
29
|
-
},
|
|
30
30
|
"./styles/*": {
|
|
31
31
|
"default": "./src/styles/*"
|
|
32
32
|
}
|
|
33
|
-
}
|
|
34
|
-
"module": "fesm2022/lumston-ds-angular.mjs",
|
|
35
|
-
"typings": "types/lumston-ds-angular.d.ts"
|
|
33
|
+
}
|
|
36
34
|
}
|
package/styles/_base.css
DELETED
package/styles/_tokens.css
DELETED
|
@@ -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,27 +0,0 @@
|
|
|
1
|
-
/* Lumston Design System — All Styles */
|
|
2
|
-
|
|
3
|
-
@import './_tokens.css';
|
|
4
|
-
@import './_base.css';
|
|
5
|
-
/* @import '../inputs/button/button.styles.css';
|
|
6
|
-
@import '../inputs/checkbox/checkbox.styles.css';
|
|
7
|
-
@import '../inputs/icon-button/icon-button.styles.css';
|
|
8
|
-
@import '../inputs/radio-button/radio-button.styles.css';
|
|
9
|
-
@import '../inputs/slider/slider.styles.css';
|
|
10
|
-
@import '../inputs/switch/switch.styles.css';
|
|
11
|
-
@import '../typography/text/text.styles.css';
|
|
12
|
-
@import '../typography/tag/tag.styles.css';
|
|
13
|
-
@import '../typography/link/link.styles.css';
|
|
14
|
-
@import '../feedback/loader/loader.styles.css';
|
|
15
|
-
@import '../overlay/tooltip/tooltip.styles.css';
|
|
16
|
-
@import '../media/avatar/avatar.styles.css';
|
|
17
|
-
@import '../media/avatar-group/avatar-group.styles.css';
|
|
18
|
-
@import '../media/logo/logo.styles.css';
|
|
19
|
-
@import '../data-display/badge/badge.styles.css';
|
|
20
|
-
@import '../data-display/chip/chip.styles.css';
|
|
21
|
-
@import '../feedback/progress-bar/progress-bar.styles.css';
|
|
22
|
-
@import '../feedback/alert/alert.styles.css';
|
|
23
|
-
@import '../overlay/modal/modal.styles.css';
|
|
24
|
-
@import '../overlay/popover/popover.styles.css';
|
|
25
|
-
@import '../navigation/pagination/pagination.styles.css';
|
|
26
|
-
@import '../navigation/breadcrumb/breadcrumb.styles.css';
|
|
27
|
-
@import '../overlay/menu/menu.styles.css'; */
|