@kofile/gds-foundations 0.0.11 → 1.0.0-alpha

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 (80) hide show
  1. package/build/.DS_Store +0 -0
  2. package/build/css/.DS_Store +0 -0
  3. package/build/css/components/badge.module.css +82 -0
  4. package/build/css/components/button.module.css +309 -0
  5. package/build/css/components/checkbox.module.css +190 -0
  6. package/build/css/components/field-message.module.css +26 -0
  7. package/build/css/components/form-label.module.css +21 -0
  8. package/build/css/components/input.module.css +164 -0
  9. package/build/css/components/label.module.css +21 -0
  10. package/build/css/components/link.module.css +52 -0
  11. package/build/css/components/radio-group.module.css +151 -0
  12. package/build/css/components/select.module.css +235 -0
  13. package/build/css/components/switch.module.css +92 -0
  14. package/build/css/components/table.module.css +225 -0
  15. package/build/css/components/tabs.module.css +79 -0
  16. package/build/css/index.css +0 -1
  17. package/build/css/normalize.css +0 -10
  18. package/build/css/themes/badge/dark.css +12 -0
  19. package/build/css/themes/badge/index.css +2 -0
  20. package/build/css/themes/badge/light.css +12 -0
  21. package/build/css/themes/button/dark.css +42 -0
  22. package/build/css/themes/button/index.css +2 -0
  23. package/build/css/themes/button/light.css +42 -0
  24. package/build/css/themes/checkbox/dark.css +19 -0
  25. package/build/css/themes/checkbox/light.css +19 -0
  26. package/build/css/themes/checkbox-tile/dark.css +14 -0
  27. package/build/css/themes/checkbox-tile/light.css +18 -0
  28. package/build/css/themes/field-message/dark.css +6 -0
  29. package/build/css/themes/field-message/light.css +6 -0
  30. package/build/css/themes/form-label/dark.css +6 -0
  31. package/build/css/themes/form-label/light.css +6 -0
  32. package/build/css/themes/global.css +565 -0
  33. package/build/css/themes/index.css +30 -0
  34. package/build/css/themes/input/dark.css +19 -0
  35. package/build/css/themes/input/light.css +19 -0
  36. package/build/css/themes/label/dark.css +5 -0
  37. package/build/css/themes/label/light.css +5 -0
  38. package/build/css/themes/link/dark.css +7 -0
  39. package/build/css/themes/link/light.css +7 -0
  40. package/build/css/themes/output.css +2 -0
  41. package/build/css/themes/output.css.map +1 -0
  42. package/build/css/themes/output.json +1 -0
  43. package/build/css/themes/radio-group/dark.css +12 -0
  44. package/build/css/themes/radio-group/light.css +11 -0
  45. package/build/css/themes/radio-group-tile/dark.css +12 -0
  46. package/build/css/themes/radio-group-tile/light.css +18 -0
  47. package/build/css/themes/select/dark.css +31 -0
  48. package/build/css/themes/select/light.css +28 -0
  49. package/build/css/themes/switch/dark.css +12 -0
  50. package/build/css/themes/switch/light.css +14 -0
  51. package/build/css/themes/table/dark.css +20 -0
  52. package/build/css/themes/table/light.css +24 -0
  53. package/build/css/themes/tabs/dark.css +11 -0
  54. package/build/css/themes/tabs/light.css +13 -0
  55. package/build/css/tokens-global.css +4 -0
  56. package/build/css/utilities/background-color.css +284 -0
  57. package/build/css/utilities/border-color.css +284 -0
  58. package/build/css/utilities/border-radius.css +455 -0
  59. package/build/css/utilities/border-style.css +18 -0
  60. package/build/css/utilities/border-width.css +127 -0
  61. package/build/css/utilities/cursor.css +31 -0
  62. package/build/css/utilities/display.css +0 -2
  63. package/build/css/utilities/flex-shrink.css +6 -0
  64. package/build/css/utilities/grid-auto-columns.css +12 -0
  65. package/build/css/utilities/grid-template-columns.css +42 -0
  66. package/build/css/utilities/height.css +56 -56
  67. package/build/css/utilities/index.css +13 -0
  68. package/build/css/utilities/max-height.css +41 -41
  69. package/build/css/utilities/min-height.css +1 -1
  70. package/build/css/utilities/padding.css +23 -0
  71. package/build/css/utilities/text-overflow.css +13 -0
  72. package/build/css/utilities/text-transform.css +12 -0
  73. package/build/css/utilities/vertical-align.css +31 -0
  74. package/build/css/utilities/white-space.css +23 -0
  75. package/build/css/utilities/width.css +93 -93
  76. package/build/min/themes/Global.css +1 -0
  77. package/build/min/themes/dark.css +1 -0
  78. package/build/min/themes/light.css +1 -0
  79. package/build/minified/tokens-global.css +2 -2
  80. package/package.json +106 -8
@@ -1,168 +1,168 @@
1
1
  .h-0 {
2
- height: var(--primitive-0);
2
+ height: var(--primitive-0) !important;
3
3
  }
4
4
  .h-px {
5
- height: 1px;
5
+ height: 1px !important;
6
6
  }
7
7
  .h-0.5 {
8
- height: var(--primitive-2);
8
+ height: var(--primitive-2) !important;
9
9
  }
10
10
  .h-1 {
11
- height: var(--primitive-4);
11
+ height: var(--primitive-4) !important;
12
12
  }
13
13
  .h-1.5 {
14
- height: var(--primitive-6);
14
+ height: var(--primitive-6) !important;
15
15
  }
16
16
  .h-2 {
17
- height: var(--primitive-8);
17
+ height: var(--primitive-8) !important;
18
18
  }
19
19
  .h-2.5 {
20
- height: var(--primitive-10);
20
+ height: var(--primitive-10) !important;
21
21
  }
22
22
  .h-3 {
23
- height: var(--primitive-12);
23
+ height: var(--primitive-12) !important;
24
24
  }
25
25
  .h-3.5 {
26
- height: var(--primitive-14);
26
+ height: var(--primitive-14) !important;
27
27
  }
28
28
  .h-4 {
29
- height: var(--primitive-16);
29
+ height: var(--primitive-16) !important;
30
30
  }
31
31
  .h-5 {
32
- height: var(--primitive-20);
32
+ height: var(--primitive-20) !important;
33
33
  }
34
34
  .h-6 {
35
- height: var(--primitive-24);
35
+ height: var(--primitive-24) !important;
36
36
  }
37
37
  .h-7 {
38
- height: var(--primitive-28);
38
+ height: var(--primitive-28) !important;
39
39
  }
40
40
  .h-8 {
41
- height: var(--primitive-32);
41
+ height: var(--primitive-32) !important;
42
42
  }
43
43
  .h-9 {
44
- height: var(--primitive-36);
44
+ height: var(--primitive-36) !important;
45
45
  }
46
46
  .h-10 {
47
- height: var(--primitive-40);
47
+ height: var(--primitive-40) !important;
48
48
  }
49
49
  .h-11 {
50
- height: var(--primitive-44);
50
+ height: var(--primitive-44) !important;
51
51
  }
52
52
  .h-12 {
53
- height: var(--primitive-48);
53
+ height: var(--primitive-48) !important;
54
54
  }
55
55
  .h-14 {
56
- height: var(--primitive-56);
56
+ height: var(--primitive-56) !important;
57
57
  }
58
58
  .h-16 {
59
- height: var(--primitive-64);
59
+ height: var(--primitive-64) !important;
60
60
  }
61
61
  .h-20 {
62
- height: var(--primitive-80);
62
+ height: var(--primitive-80) !important;
63
63
  }
64
64
  .h-24 {
65
- height: var(--primitive-96);
65
+ height: var(--primitive-96) !important;
66
66
  }
67
67
  .h-28 {
68
- height: var(--primitive-112);
68
+ height: var(--primitive-112) !important;
69
69
  }
70
70
  .h-32 {
71
- height: var(--primitive-128);
71
+ height: var(--primitive-128) !important;
72
72
  }
73
73
  .h-36 {
74
- height: var(--primitive-144);
74
+ height: var(--primitive-144) !important;
75
75
  }
76
76
  .h-40 {
77
- height: var(--primitive-160);
77
+ height: var(--primitive-160) !important;
78
78
  }
79
79
  .h-44 {
80
- height: var(--primitive-176);
80
+ height: var(--primitive-176) !important;
81
81
  }
82
82
  .h-48 {
83
- height: var(--primitive-192);
83
+ height: var(--primitive-192) !important;
84
84
  }
85
85
  .h-52 {
86
- height: var(--primitive-208);
86
+ height: var(--primitive-208) !important;
87
87
  }
88
88
  .h-56 {
89
- height: var(--primitive-224);
89
+ height: var(--primitive-224) !important;
90
90
  }
91
91
  .h-60 {
92
- height: var(--primitive-240);
92
+ height: var(--primitive-240) !important;
93
93
  }
94
94
  .h-64 {
95
- height: var(--primitive-256);
95
+ height: var(--primitive-256) !important;
96
96
  }
97
97
  .h-72 {
98
- height: var(--primitive-288);
98
+ height: var(--primitive-288) !important;
99
99
  }
100
100
  .h-80 {
101
- height: var(--primitive-320);
101
+ height: var(--primitive-320) !important;
102
102
  }
103
103
  .h-96 {
104
- height: var(--primitive-384);
104
+ height: var(--primitive-384) !important;
105
105
  }
106
106
  .h-auto {
107
- height: auto;
107
+ height: auto !important;
108
108
  }
109
109
  .h-1/2 {
110
- height: 50%;
110
+ height: 50% !important;
111
111
  }
112
112
  .h-1/3 {
113
- height: 33.333333%;
113
+ height: 33.333333% !important;
114
114
  }
115
115
  .h-2/3 {
116
- height: 66.666667%;
116
+ height: 66.666667% !important;
117
117
  }
118
118
  .h-1/4 {
119
- height: 25%;
119
+ height: 25% !important;
120
120
  }
121
121
  .h-2/4 {
122
- height: 50%;
122
+ height: 50% !important;
123
123
  }
124
124
  .h-3/4 {
125
- height: 75%;
125
+ height: 75% !important;
126
126
  }
127
127
  .h-1/5 {
128
- height: 20%;
128
+ height: 20% !important;
129
129
  }
130
130
  .h-2/5 {
131
- height: 40%;
131
+ height: 40% !important;
132
132
  }
133
133
  .h-3/5 {
134
- height: 60%;
134
+ height: 60% !important;
135
135
  }
136
136
  .h-4/5 {
137
- height: 80%;
137
+ height: 80% !important;
138
138
  }
139
139
  .h-1/6 {
140
- height: 16.666667%;
140
+ height: 16.666667% !important;
141
141
  }
142
142
  .h-2/6 {
143
- height: 33.333333%;
143
+ height: 33.333333% !important;
144
144
  }
145
145
  .h-3/6 {
146
- height: 50%;
146
+ height: 50% !important;
147
147
  }
148
148
  .h-4/6 {
149
- height: 66.666667%;
149
+ height: 66.666667% !important;
150
150
  }
151
151
  .h-5/6 {
152
- height: 83.333333%;
152
+ height: 83.333333% !important;
153
153
  }
154
154
  .h-full {
155
- height: 100%;
155
+ height: 100% !important;
156
156
  }
157
157
  .h-screen {
158
- height: 100vh;
158
+ height: 100vh !important;
159
159
  }
160
160
  .h-min {
161
- height: min-content;
161
+ height: min-content !important;
162
162
  }
163
163
  .h-max {
164
- height: max-content;
164
+ height: max-content !important;
165
165
  }
166
166
  .h-fit {
167
- height: fit-content;
167
+ height: fit-content !important;
168
168
  }
@@ -1,8 +1,17 @@
1
+ @import "./background-color.css";
2
+ @import "./border-color.css";
3
+ @import "./border-radius.css";
4
+ @import "./border-style.css";
1
5
  @import "./box-sizing.css";
6
+ @import "./border-width.css";
7
+ @import "./cursor.css";
2
8
  @import "./display.css";
3
9
  @import "./flex.css";
10
+ @import "./flex-shrink.css";
4
11
  @import "./font.css";
5
12
  @import "./gap.css";
13
+ @import "./grid-auto-columns.css";
14
+ @import "./grid-template-columns.css";
6
15
  @import "./height.css";
7
16
  @import "./margin.css";
8
17
  @import "./max-height.css";
@@ -14,4 +23,8 @@
14
23
  @import "./overflow.css";
15
24
  @import "./position.css";
16
25
  @import "./padding.css";
26
+ @import "./text-overflow.css";
27
+ @import "./text-transform.css";
28
+ @import "./vertical-align.css";
29
+ @import "./white-space.css";
17
30
  @import "./width.css";
@@ -1,123 +1,123 @@
1
1
  .max-h-0 {
2
- max-height: var(--primitive-0);
2
+ max-height: var(--primitive-0) !important;
3
3
  }
4
4
  .max-h-px {
5
- max-height: 1px;
5
+ max-height: 1px !important;
6
6
  }
7
7
  .max-h-0.5 {
8
- max-height: var(--primitive-2);
8
+ max-height: var(--primitive-2) !important;
9
9
  }
10
10
  .max-h-1 {
11
- max-height: var(--primitive-4);
11
+ max-height: var(--primitive-4) !important;
12
12
  }
13
13
  .max-h-1.5 {
14
- max-height: var(--primitive-6);
14
+ max-height: var(--primitive-6) !important;
15
15
  }
16
16
  .max-h-2 {
17
- max-height: var(--primitive-8);
17
+ max-height: var(--primitive-8) !important;
18
18
  }
19
19
  .max-h-2.5 {
20
- max-height: var(--primitive-10);
20
+ max-height: var(--primitive-10) !important;
21
21
  }
22
22
  .max-h-3 {
23
- max-height: var(--primitive-12);
23
+ max-height: var(--primitive-12) !important;
24
24
  }
25
25
  .max-h-3.5 {
26
- max-height: var(--primitive-14);
26
+ max-height: var(--primitive-14) !important;
27
27
  }
28
28
  .max-h-4 {
29
- max-height: var(--primitive-16);
29
+ max-height: var(--primitive-16) !important;
30
30
  }
31
31
  .max-h-5 {
32
- max-height: var(--primitive-20);
32
+ max-height: var(--primitive-20) !important;
33
33
  }
34
34
  .max-h-6 {
35
- max-height: var(--primitive-24);
35
+ max-height: var(--primitive-24) !important;
36
36
  }
37
37
  .max-h-7 {
38
- max-height: var(--primitive-28);
38
+ max-height: var(--primitive-28) !important;
39
39
  }
40
40
  .max-h-8 {
41
- max-height: var(--primitive-32);
41
+ max-height: var(--primitive-32) !important;
42
42
  }
43
43
  .max-h-9 {
44
- max-height: var(--primitive-36);
44
+ max-height: var(--primitive-36) !important;
45
45
  }
46
46
  .max-h-10 {
47
- max-height: var(--primitive-40);
47
+ max-height: var(--primitive-40) !important;
48
48
  }
49
49
  .max-h-11 {
50
- max-height: var(--primitive-44);
50
+ max-height: var(--primitive-44) !important;
51
51
  }
52
52
  .max-h-12 {
53
- max-height: var(--primitive-48);
53
+ max-height: var(--primitive-48) !important;
54
54
  }
55
55
  .max-h-14 {
56
- max-height: var(--primitive-56);
56
+ max-height: var(--primitive-56) !important;
57
57
  }
58
58
  .max-h-16 {
59
- max-height: var(--primitive-64);
59
+ max-height: var(--primitive-64) !important;
60
60
  }
61
61
  .max-h-20 {
62
- max-height: var(--primitive-80);
62
+ max-height: var(--primitive-80) !important;
63
63
  }
64
64
  .max-h-24 {
65
- max-height: var(--primitive-96);
65
+ max-height: var(--primitive-96) !important;
66
66
  }
67
67
  .max-h-28 {
68
- max-height: var(--primitive-112);
68
+ max-height: var(--primitive-112) !important;
69
69
  }
70
70
  .max-h-32 {
71
- max-height: var(--primitive-128);
71
+ max-height: var(--primitive-128) !important;
72
72
  }
73
73
  .max-h-36 {
74
- max-height: var(--primitive-144);
74
+ max-height: var(--primitive-144) !important;
75
75
  }
76
76
  .max-h-40 {
77
- max-height: var(--primitive-160);
77
+ max-height: var(--primitive-160) !important;
78
78
  }
79
79
  .max-h-44 {
80
- max-height: var(--primitive-176);
80
+ max-height: var(--primitive-176) !important;
81
81
  }
82
82
  .max-h-48 {
83
- max-height: var(--primitive-192);
83
+ max-height: var(--primitive-192) !important;
84
84
  }
85
85
  .max-h-52 {
86
- max-height: var(--primitive-208);
86
+ max-height: var(--primitive-208) !important;
87
87
  }
88
88
  .max-h-56 {
89
- max-height: var(--primitive-224);
89
+ max-height: var(--primitive-224) !important;
90
90
  }
91
91
  .max-h-60 {
92
- max-height: var(--primitive-240);
92
+ max-height: var(--primitive-240) !important;
93
93
  }
94
94
  .max-h-64 {
95
- max-height: var(--primitive-256);
95
+ max-height: var(--primitive-256) !important;
96
96
  }
97
97
  .max-h-72 {
98
- max-height: var(--primitive-288);
98
+ max-height: var(--primitive-288) !important;
99
99
  }
100
100
  .max-h-80 {
101
- max-height: var(--primitive-320);
101
+ max-height: var(--primitive-320) !important;
102
102
  }
103
103
  .max-h-96 {
104
- max-height: var(--primitive-384);
104
+ max-height: var(--primitive-384) !important;
105
105
  }
106
106
  .max-h-none {
107
- max-height: none;
107
+ max-height: none !important;
108
108
  }
109
109
  .max-h-full {
110
- max-height: 100%;
110
+ max-height: 100% !important;
111
111
  }
112
112
  .max-h-screen {
113
- max-height: 100vh;
113
+ max-height: 100vh !important;
114
114
  }
115
115
  .max-h-min {
116
- max-height: min-content;
116
+ max-height: min-content !important;
117
117
  }
118
118
  .max-h-max {
119
- max-height: max-content;
119
+ max-height: max-content !important;
120
120
  }
121
121
  .max-h-fit {
122
- max-height: fit-content;
122
+ max-height: fit-content !important;
123
123
  }
@@ -11,7 +11,7 @@
11
11
  min-height: min-content;
12
12
  }
13
13
  .min-h-max {
14
- min-height: max-content;
14
+ min-height: max-content !important;
15
15
  }
16
16
  .min-h-fit {
17
17
  min-height: fit-content;
@@ -1,4 +1,7 @@
1
1
  /* padding-bottom */
2
+ .pt-none {
3
+ padding-top: 0 !important;
4
+ }
2
5
  .pt-4xs {
3
6
  padding-top: var(--spacing-4xs) !important;
4
7
  }
@@ -33,6 +36,9 @@
33
36
  padding-top: var(--spacing-4xl) !important;
34
37
  }
35
38
  /* padding-right */
39
+ .pr-none {
40
+ padding-right: 0 !important;
41
+ }
36
42
  .pr-4xs {
37
43
  padding-right: var(--spacing-4xs) !important;
38
44
  }
@@ -67,6 +73,9 @@
67
73
  padding-right: var(--spacing-4xl) !important;
68
74
  }
69
75
  /* padding-bottom */
76
+ .pb-none {
77
+ padding-bottom: 0 !important;
78
+ }
70
79
  .pb-4xs {
71
80
  padding-bottom: var(--spacing-4xs) !important;
72
81
  }
@@ -101,6 +110,9 @@
101
110
  padding-bottom: var(--spacing-4xl) !important;
102
111
  }
103
112
  /* padding-left */
113
+ .pl-none {
114
+ padding-left: 0 !important;
115
+ }
104
116
  .pl-4xs {
105
117
  padding-left: var(--spacing-4xs) !important;
106
118
  }
@@ -135,6 +147,10 @@
135
147
  padding-left: var(--spacing-4xl) !important;
136
148
  }
137
149
  /* horizontal padding */
150
+ .px-none {
151
+ padding-left: 0 !important;
152
+ padding-right: 0 !important;
153
+ }
138
154
  .px-4xs {
139
155
  padding-left: var(--spacing-4xs) !important;
140
156
  padding-right: var(--spacing-4xs) !important;
@@ -180,6 +196,10 @@
180
196
  padding-right: var(--spacing-4xl) !important;
181
197
  }
182
198
  /* vertical padding */
199
+ .py-none {
200
+ padding-top: 0 !important;
201
+ padding-bottom: 0 !important;
202
+ }
183
203
  .py-4xs {
184
204
  padding-top: var(--spacing-4xs) !important;
185
205
  padding-bottom: var(--spacing-4xs) !important;
@@ -225,6 +245,9 @@
225
245
  padding-bottom: var(--spacing-4xl) !important;
226
246
  }
227
247
  /* vertical and horizontal */
248
+ .p-none {
249
+ padding: 0 !important;
250
+ }
228
251
  .p-4xs {
229
252
  padding: var(--spacing-4xs) !important;
230
253
  }
@@ -0,0 +1,13 @@
1
+ .truncate {
2
+ overflow: hidden !important;
3
+ text-overflow: ellipsis !important;
4
+ white-space: nowrap !important;
5
+ }
6
+
7
+ .text-ellipsis {
8
+ text-overflow: ellipsis !important;
9
+ }
10
+
11
+ .text-clip {
12
+ text-overflow: clip !important;
13
+ }
@@ -0,0 +1,12 @@
1
+ .uppercase {
2
+ text-transform: uppercase !important;
3
+ }
4
+ .lowercase {
5
+ text-transform: lowercase !important;
6
+ }
7
+ .capitalize {
8
+ text-transform: capitalize !important;
9
+ }
10
+ .normal-case {
11
+ text-transform: none !important;
12
+ }
@@ -0,0 +1,31 @@
1
+ /* Vertical Align Utility Classes */
2
+ .align-baseline {
3
+ vertical-align: baseline;
4
+ }
5
+ .align-top {
6
+ vertical-align: top;
7
+ }
8
+ .align-middle {
9
+ vertical-align: middle;
10
+ }
11
+ .align-bottom {
12
+ vertical-align: bottom;
13
+ }
14
+ .align-text-top {
15
+ vertical-align: text-top;
16
+ }
17
+ .align-text-bottom {
18
+ vertical-align: text-bottom;
19
+ }
20
+ .align-sub {
21
+ vertical-align: sub;
22
+ }
23
+ .align-super {
24
+ vertical-align: super;
25
+ }
26
+ .align-inherit {
27
+ vertical-align: inherit;
28
+ }
29
+ .align-initial {
30
+ vertical-align: initial;
31
+ }
@@ -0,0 +1,23 @@
1
+ .whitespace-normal {
2
+ white-space: normal !important;
3
+ }
4
+
5
+ .whitespace-nowrap {
6
+ white-space: nowrap !important;
7
+ }
8
+
9
+ .whitespace-pre {
10
+ white-space: pre !important;
11
+ }
12
+
13
+ .whitespace-pre-line {
14
+ white-space: pre-line !important;
15
+ }
16
+
17
+ .whitespace-pre-wrap {
18
+ white-space: pre-wrap !important;
19
+ }
20
+
21
+ .whitespace-break-spaces {
22
+ white-space: break-spaces !important;
23
+ }