Skip to content

Commit 7f482cd

Browse files
Merge pull request #2 from git-init-wesley/develop
3.2.7-b.190220230420
1 parent 047ec92 commit 7f482cd

44 files changed

Lines changed: 12646 additions & 42 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"

.github/workflows/publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
push:
55
branches: [ "main" ]
66

7-
workflow_dispatch:
8-
97
jobs:
108
publish:
119
runs-on: ubuntu-latest

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,32 @@
11
# Installation
22

3-
>`npm install --save tailwindcss-types`
4-
>
3+
> `npm install --save tailwindcss-types`
4+
>
55
> `npm install --save-dev tailwindcss-types`
66
77
# Summary
88

99
This package contains type definitions for `tailwindcss` (https://tailwindcss.com).
1010

11+
# Links
12+
13+
Refer to [Wiki](https://github.com/git-init-wesley/tailwindcss-types/wiki) -
14+
*[https://github.com/git-init-wesley/tailwindcss-types/wiki](https://github.com/git-init-wesley/tailwindcss-types/wiki)*
15+
16+
Refer to [Typedoc](https://git-init-wesley.github.io/tailwindcss-types/docsi) -
17+
*[https://git-init-wesley.github.io/tailwindcss-types/docs](https://git-init-wesley.github.io/tailwindcss-types/docs)*
18+
19+
Request [Issue](https://github.com/git-init-wesley/tailwindcss-types/issues) -
20+
*[https://github.com/git-init-wesley/tailwindcss-types/issues](https://github.com/git-init-wesley/tailwindcss-types/issues)*
21+
1122
# Details
1223

1324
Files were exported to
1425
[https://github.com/git-init-wesley/tailwindcss-types](https://github.com/git-init-wesley/tailwindcss-types)
1526

1627
### Additional Details
1728

18-
* Last updated: 18 Feb 2023 11:10 (UTC)
29+
* Last updated: 19 Feb 2023 04:20 (UTC)
1930
* Dependencies: none
2031
* Global values: none
2132

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-cayman

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/assets/highlight.css

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
:root {
2+
--light-hl-0: #0000FF;
3+
--dark-hl-0: #569CD6;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #001080;
7+
--dark-hl-2: #9CDCFE;
8+
--light-hl-3: #267F99;
9+
--dark-hl-3: #4EC9B0;
10+
--light-hl-4: #008000;
11+
--dark-hl-4: #6A9955;
12+
--light-hl-5: #800000;
13+
--dark-hl-5: #D7BA7D;
14+
--light-code-background: #FFFFFF;
15+
--dark-code-background: #1E1E1E;
16+
}
17+
18+
@media (prefers-color-scheme: light) {
19+
:root {
20+
--hl-0: var(--light-hl-0);
21+
--hl-1: var(--light-hl-1);
22+
--hl-2: var(--light-hl-2);
23+
--hl-3: var(--light-hl-3);
24+
--hl-4: var(--light-hl-4);
25+
--hl-5: var(--light-hl-5);
26+
--code-background: var(--light-code-background);
27+
}
28+
}
29+
30+
@media (prefers-color-scheme: dark) {
31+
:root {
32+
--hl-0: var(--dark-hl-0);
33+
--hl-1: var(--dark-hl-1);
34+
--hl-2: var(--dark-hl-2);
35+
--hl-3: var(--dark-hl-3);
36+
--hl-4: var(--dark-hl-4);
37+
--hl-5: var(--dark-hl-5);
38+
--code-background: var(--dark-code-background);
39+
}
40+
}
41+
42+
:root[data-theme='light'] {
43+
--hl-0: var(--light-hl-0);
44+
--hl-1: var(--light-hl-1);
45+
--hl-2: var(--light-hl-2);
46+
--hl-3: var(--light-hl-3);
47+
--hl-4: var(--light-hl-4);
48+
--hl-5: var(--light-hl-5);
49+
--code-background: var(--light-code-background);
50+
}
51+
52+
:root[data-theme='dark'] {
53+
--hl-0: var(--dark-hl-0);
54+
--hl-1: var(--dark-hl-1);
55+
--hl-2: var(--dark-hl-2);
56+
--hl-3: var(--dark-hl-3);
57+
--hl-4: var(--dark-hl-4);
58+
--hl-5: var(--dark-hl-5);
59+
--code-background: var(--dark-code-background);
60+
}
61+
62+
.hl-0 {
63+
color: var(--hl-0);
64+
}
65+
66+
.hl-1 {
67+
color: var(--hl-1);
68+
}
69+
70+
.hl-2 {
71+
color: var(--hl-2);
72+
}
73+
74+
.hl-3 {
75+
color: var(--hl-3);
76+
}
77+
78+
.hl-4 {
79+
color: var(--hl-4);
80+
}
81+
82+
.hl-5 {
83+
color: var(--hl-5);
84+
}
85+
86+
pre, code {
87+
background: var(--code-background);
88+
}

docs/assets/main.js

Lines changed: 58 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)