@lumston/ds-angular 0.0.7 → 0.0.8
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/fesm2022/lumston-ds-angular-src-data-display.mjs +215 -0
- package/fesm2022/lumston-ds-angular-src-data-display.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-dropdown.mjs +94 -0
- package/fesm2022/lumston-ds-angular-src-dropdown.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-feedback.mjs +400 -0
- package/fesm2022/lumston-ds-angular-src-feedback.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-icon.mjs +148 -0
- package/fesm2022/lumston-ds-angular-src-icon.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-inputs.mjs +1132 -0
- package/fesm2022/lumston-ds-angular-src-inputs.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-navigation.mjs +473 -0
- package/fesm2022/lumston-ds-angular-src-navigation.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-overlay.mjs +1038 -0
- package/fesm2022/lumston-ds-angular-src-overlay.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular-src-typography.mjs +303 -0
- package/fesm2022/lumston-ds-angular-src-typography.mjs.map +1 -0
- package/fesm2022/lumston-ds-angular.mjs +90 -65
- package/fesm2022/lumston-ds-angular.mjs.map +1 -1
- package/package.json +58 -32
- package/styles/index.css +0 -24
- package/styles/ls-icons.css +482 -0
- package/types/lumston-ds-angular-src-data-display.d.ts +50 -0
- package/types/lumston-ds-angular-src-data-display.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-dropdown.d.ts +28 -0
- package/types/lumston-ds-angular-src-dropdown.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-feedback.d.ts +75 -0
- package/types/lumston-ds-angular-src-feedback.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-icon.d.ts +27 -0
- package/types/lumston-ds-angular-src-icon.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-inputs.d.ts +201 -0
- package/types/lumston-ds-angular-src-inputs.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-navigation.d.ts +186 -0
- package/types/lumston-ds-angular-src-navigation.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-overlay.d.ts +357 -0
- package/types/lumston-ds-angular-src-overlay.d.ts.map +1 -0
- package/types/lumston-ds-angular-src-typography.d.ts +51 -0
- package/types/lumston-ds-angular-src-typography.d.ts.map +1 -0
- package/types/lumston-ds-angular.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,34 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
2
|
+
"name": "@lumston/ds-angular",
|
|
3
|
+
"version": "0.0.8",
|
|
4
|
+
"description": "Lumston Design System for Angular applications",
|
|
5
|
+
"author": "tsanchez",
|
|
6
|
+
"peerDependencies": {
|
|
7
|
+
"@angular/common": ">=17.0.0",
|
|
8
|
+
"@angular/core": ">=17.0.0",
|
|
9
|
+
"@angular/platform-browser": ">=17.0.0"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"tslib": "^2.6.0"
|
|
13
|
+
},
|
|
14
|
+
"sideEffects": [
|
|
15
|
+
"*.css"
|
|
16
|
+
],
|
|
17
|
+
"module": "fesm2022/lumston-ds-angular.mjs",
|
|
18
|
+
"typings": "types/lumston-ds-angular.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
"./package.json": {
|
|
21
|
+
"default": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./types/lumston-ds-angular.d.ts",
|
|
25
|
+
"default": "./fesm2022/lumston-ds-angular.mjs"
|
|
26
|
+
},
|
|
27
|
+
"./src/data-display": {
|
|
28
|
+
"types": "./types/lumston-ds-angular-src-data-display.d.ts",
|
|
29
|
+
"default": "./fesm2022/lumston-ds-angular-src-data-display.mjs"
|
|
30
|
+
},
|
|
31
|
+
"./src/dropdown": {
|
|
32
|
+
"types": "./types/lumston-ds-angular-src-dropdown.d.ts",
|
|
33
|
+
"default": "./fesm2022/lumston-ds-angular-src-dropdown.mjs"
|
|
34
|
+
},
|
|
35
|
+
"./src/feedback": {
|
|
36
|
+
"types": "./types/lumston-ds-angular-src-feedback.d.ts",
|
|
37
|
+
"default": "./fesm2022/lumston-ds-angular-src-feedback.mjs"
|
|
38
|
+
},
|
|
39
|
+
"./src/icon": {
|
|
40
|
+
"types": "./types/lumston-ds-angular-src-icon.d.ts",
|
|
41
|
+
"default": "./fesm2022/lumston-ds-angular-src-icon.mjs"
|
|
42
|
+
},
|
|
43
|
+
"./src/inputs": {
|
|
44
|
+
"types": "./types/lumston-ds-angular-src-inputs.d.ts",
|
|
45
|
+
"default": "./fesm2022/lumston-ds-angular-src-inputs.mjs"
|
|
46
|
+
},
|
|
47
|
+
"./src/navigation": {
|
|
48
|
+
"types": "./types/lumston-ds-angular-src-navigation.d.ts",
|
|
49
|
+
"default": "./fesm2022/lumston-ds-angular-src-navigation.mjs"
|
|
50
|
+
},
|
|
51
|
+
"./src/overlay": {
|
|
52
|
+
"types": "./types/lumston-ds-angular-src-overlay.d.ts",
|
|
53
|
+
"default": "./fesm2022/lumston-ds-angular-src-overlay.mjs"
|
|
54
|
+
},
|
|
55
|
+
"./src/typography": {
|
|
56
|
+
"types": "./types/lumston-ds-angular-src-typography.d.ts",
|
|
57
|
+
"default": "./fesm2022/lumston-ds-angular-src-typography.mjs"
|
|
33
58
|
}
|
|
34
|
-
}
|
|
59
|
+
}
|
|
60
|
+
}
|
package/styles/index.css
CHANGED
|
@@ -2,27 +2,3 @@
|
|
|
2
2
|
|
|
3
3
|
@import './_tokens.css';
|
|
4
4
|
@import './_base.css';
|
|
5
|
-
/* @import "./inputs/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'; */
|