@danarakca/keu-ui 0.0.1 → 1.0.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.
- package/README.md +187 -42
- package/fesm2022/danarakca-keu-ui.mjs +2 -2
- package/fesm2022/danarakca-keu-ui.mjs.map +1 -1
- package/package.json +5 -4
- package/src/lib/keu-ui.theme.scss +36 -0
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danarakca/keu-ui",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Keu Design System - Shared UI components library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
7
|
+
"ui",
|
|
7
8
|
"design-system",
|
|
8
|
-
"
|
|
9
|
-
"ui-components",
|
|
9
|
+
"components",
|
|
10
10
|
"danarakca"
|
|
11
11
|
],
|
|
12
|
+
"author": "CORE APBN Team",
|
|
12
13
|
"license": "MIT",
|
|
13
14
|
"peerDependencies": {
|
|
14
15
|
"@angular/common": "^21.1.0",
|
|
@@ -3,3 +3,39 @@
|
|
|
3
3
|
* Import this file in your root styles to enable all keu-* CSS variables.
|
|
4
4
|
* ========================================================================== */
|
|
5
5
|
@import './styles/tokens';
|
|
6
|
+
|
|
7
|
+
/* =============================================================================
|
|
8
|
+
* Global Styles
|
|
9
|
+
* ========================================================================== */
|
|
10
|
+
*,
|
|
11
|
+
*::before,
|
|
12
|
+
*::after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
body {
|
|
17
|
+
font-family: var(--keu-font-family);
|
|
18
|
+
font-size: var(--keu-font-size-md);
|
|
19
|
+
line-height: 1.5;
|
|
20
|
+
color: var(--keu-color-text);
|
|
21
|
+
-webkit-font-smoothing: antialiased;
|
|
22
|
+
-moz-osx-font-smoothing: grayscale;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* Apply font to all keu components */
|
|
26
|
+
[class^="keu-"],
|
|
27
|
+
[class*=" keu-"] {
|
|
28
|
+
font-family: var(--keu-font-family);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Reset default button styles */
|
|
32
|
+
button {
|
|
33
|
+
font-family: inherit;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/* Reset default input styles */
|
|
37
|
+
input,
|
|
38
|
+
textarea,
|
|
39
|
+
select {
|
|
40
|
+
font-family: inherit;
|
|
41
|
+
}
|