@life-cockpit/angular-ui-kit 1.0.2 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@life-cockpit/angular-ui-kit",
3
- "version": "1.0.2",
3
+ "version": "1.1.0",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -1,10 +1,147 @@
1
1
  /**
2
2
  * Reset and Normalize Styles
3
- * Uses normalize.css for cross-browser consistency
3
+ * Inline normalize rules for cross-browser consistency (no external dependency)
4
4
  */
5
5
 
6
- // Import normalize.css for CSS reset
7
- @use 'normalize.css';
6
+ // Inline normalize essentials
7
+ html {
8
+ line-height: 1.15;
9
+ -webkit-text-size-adjust: 100%;
10
+ }
11
+
12
+ main {
13
+ display: block;
14
+ }
15
+
16
+ hr {
17
+ box-sizing: content-box;
18
+ height: 0;
19
+ overflow: visible;
20
+ }
21
+
22
+ pre {
23
+ font-family: monospace, monospace;
24
+ font-size: 1em;
25
+ }
26
+
27
+ abbr[title] {
28
+ border-bottom: none;
29
+ text-decoration: underline dotted;
30
+ }
31
+
32
+ b,
33
+ strong {
34
+ font-weight: bolder;
35
+ }
36
+
37
+ code,
38
+ kbd,
39
+ samp {
40
+ font-family: monospace, monospace;
41
+ font-size: 1em;
42
+ }
43
+
44
+ small {
45
+ font-size: 80%;
46
+ }
47
+
48
+ sub,
49
+ sup {
50
+ font-size: 75%;
51
+ line-height: 0;
52
+ position: relative;
53
+ vertical-align: baseline;
54
+ }
55
+
56
+ sub {
57
+ bottom: -0.25em;
58
+ }
59
+
60
+ sup {
61
+ top: -0.5em;
62
+ }
63
+
64
+ img {
65
+ border-style: none;
66
+ }
67
+
68
+ button,
69
+ input,
70
+ optgroup,
71
+ select,
72
+ textarea {
73
+ font-family: inherit;
74
+ font-size: 100%;
75
+ line-height: 1.15;
76
+ margin: 0;
77
+ }
78
+
79
+ button,
80
+ input {
81
+ overflow: visible;
82
+ }
83
+
84
+ button,
85
+ select {
86
+ text-transform: none;
87
+ }
88
+
89
+ button,
90
+ [type='button'],
91
+ [type='reset'],
92
+ [type='submit'] {
93
+ -webkit-appearance: button;
94
+ }
95
+
96
+ fieldset {
97
+ padding: 0.35em 0.75em 0.625em;
98
+ }
99
+
100
+ legend {
101
+ box-sizing: border-box;
102
+ color: inherit;
103
+ display: table;
104
+ max-width: 100%;
105
+ padding: 0;
106
+ white-space: normal;
107
+ }
108
+
109
+ progress {
110
+ vertical-align: baseline;
111
+ }
112
+
113
+ textarea {
114
+ overflow: auto;
115
+ }
116
+
117
+ [type='checkbox'],
118
+ [type='radio'] {
119
+ box-sizing: border-box;
120
+ padding: 0;
121
+ }
122
+
123
+ [type='number']::-webkit-inner-spin-button,
124
+ [type='number']::-webkit-outer-spin-button {
125
+ height: auto;
126
+ }
127
+
128
+ [type='search'] {
129
+ -webkit-appearance: textfield;
130
+ outline-offset: -2px;
131
+ }
132
+
133
+ [type='search']::-webkit-search-decoration {
134
+ -webkit-appearance: none;
135
+ }
136
+
137
+ ::-webkit-file-upload-button {
138
+ -webkit-appearance: button;
139
+ font: inherit;
140
+ }
141
+
142
+ summary {
143
+ display: list-item;
144
+ }
8
145
 
9
146
  // Additional resets
10
147
  *,