@guildofgleks/ui 21.3.0 → 21.3.2
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/AGENTS.md +1149 -0
- package/LICENSE +201 -21
- package/README.md +397 -320
- package/TOKENS.md +63 -0
- package/fesm2022/guildofgleks-ui.mjs +863 -120
- package/fesm2022/guildofgleks-ui.mjs.map +1 -1
- package/package.json +12 -5
- package/src/styles/index.css +17 -17
- package/src/styles/theme.css +1681 -1643
- package/styles/fonts.css +16 -0
- package/styles/index.css +17 -0
- package/styles/presets/one-dark.css +48 -0
- package/styles/presets/one-light.css +47 -0
- package/styles/presets/slate.css +55 -0
- package/styles/theme.css +1681 -0
- package/styles/typography.css +15 -0
- package/styles/utilities.css +170 -0
- package/types/guildofgleks-ui.d.ts +642 -54
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guildofgleks/ui",
|
|
3
|
-
"version": "21.3.
|
|
3
|
+
"version": "21.3.2",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.19.0"
|
|
6
6
|
},
|
|
@@ -16,19 +16,24 @@
|
|
|
16
16
|
"standalone",
|
|
17
17
|
"accessible"
|
|
18
18
|
],
|
|
19
|
-
"license": "
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@angular/common": "^21.2.0",
|
|
22
22
|
"@angular/core": "^21.2.0",
|
|
23
|
-
"@angular/forms": "^21.2.0"
|
|
23
|
+
"@angular/forms": "^21.2.0",
|
|
24
|
+
"@angular/platform-browser": "^21.2.0"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"tslib": "^2.3.0"
|
|
27
28
|
},
|
|
28
29
|
"sideEffects": false,
|
|
29
|
-
"module": "fesm2022/guildofgleks-ui.mjs",
|
|
30
|
-
"typings": "types/guildofgleks-ui.d.ts",
|
|
31
30
|
"exports": {
|
|
31
|
+
"./styles/*": {
|
|
32
|
+
"default": "./styles/*"
|
|
33
|
+
},
|
|
34
|
+
"./src/styles/*": {
|
|
35
|
+
"default": "./src/styles/*"
|
|
36
|
+
},
|
|
32
37
|
"./package.json": {
|
|
33
38
|
"default": "./package.json"
|
|
34
39
|
},
|
|
@@ -37,5 +42,7 @@
|
|
|
37
42
|
"default": "./fesm2022/guildofgleks-ui.mjs"
|
|
38
43
|
}
|
|
39
44
|
},
|
|
45
|
+
"module": "fesm2022/guildofgleks-ui.mjs",
|
|
46
|
+
"typings": "types/guildofgleks-ui.d.ts",
|
|
40
47
|
"type": "module"
|
|
41
48
|
}
|
package/src/styles/index.css
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* The single stylesheet a @guildofgleks/ui consumer needs:
|
|
3
|
-
*
|
|
4
|
-
* @import '@guildofgleks/ui/styles/index.css';
|
|
5
|
-
*
|
|
6
|
-
* It brings the baseline theme (every token the components read), the typography helpers
|
|
7
|
-
* and the utility classes that component templates rely on — `font-body`, `font-heading`
|
|
8
|
-
* and `gog-contained-layout` are applied inside the components themselves, so without
|
|
9
|
-
* this import they resolve to nothing.
|
|
10
|
-
*
|
|
11
|
-
* `fonts.css` is deliberately NOT included: it pulls three families from Google Fonts,
|
|
12
|
-
* which a library should not impose on its consumers. Import it explicitly if you want
|
|
13
|
-
* the showcase's typography.
|
|
14
|
-
*/
|
|
15
|
-
@import './theme.css';
|
|
16
|
-
@import './typography.css';
|
|
17
|
-
@import './utilities.css';
|
|
1
|
+
/*
|
|
2
|
+
* The single stylesheet a @guildofgleks/ui consumer needs:
|
|
3
|
+
*
|
|
4
|
+
* @import '@guildofgleks/ui/styles/index.css';
|
|
5
|
+
*
|
|
6
|
+
* It brings the baseline theme (every token the components read), the typography helpers
|
|
7
|
+
* and the utility classes that component templates rely on — `font-body`, `font-heading`
|
|
8
|
+
* and `gog-contained-layout` are applied inside the components themselves, so without
|
|
9
|
+
* this import they resolve to nothing.
|
|
10
|
+
*
|
|
11
|
+
* `fonts.css` is deliberately NOT included: it pulls three families from Google Fonts,
|
|
12
|
+
* which a library should not impose on its consumers. Import it explicitly if you want
|
|
13
|
+
* the showcase's typography.
|
|
14
|
+
*/
|
|
15
|
+
@import './theme.css';
|
|
16
|
+
@import './typography.css';
|
|
17
|
+
@import './utilities.css';
|