-
Notifications
You must be signed in to change notification settings - Fork 226
xem ho #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
xem ho #121
Changes from all commits
Commits
Show all changes
81 commits
Select commit
Hold shift + click to select a range
c6d19fb
Add ‘useFormClasses’ plugin option
chasegiunta e84f83f
Fix leftover
chasegiunta 2635e54
Merge branch 'master' of https://github.com/tailwindlabs/tailwindcss-…
chasegiunta 4231d49
Merge pull request #58 from tailwindlabs/add-license-1
adamwathan 1d8f79d
Update Tailwind, fix checkbox example
adamwathan 8304072
Add simple dev server
adamwathan 63c9664
Remove aggressive border override
adamwathan 0aa2921
Update changelog
adamwathan 571d9d7
0.2.1
adamwathan 810b807
Merge branch 'master' of https://github.com/tailwindlabs/tailwindcss-…
chasegiunta b221e81
Rename option to `strategy` with `base` & `class` options
chasegiunta 5ec6608
Use .form-multiselect & .form-file classes where applicable
chasegiunta fbfe0ee
Refactor for more a maintainable approach with selector strategy
chasegiunta 5f18069
Update README.md
chasegiunta 456cfd1
Update README.md
chasegiunta ab4790d
Add classes to kitchen sink for testing
adamwathan 3bfbd1a
Add default options
adamwathan 224e966
Use single addBase call
adamwathan 2626d3e
Don't add "undo" styles when using class strategy
adamwathan 2779a67
Update README
adamwathan 39f6a3d
Merge branch 'chasegiunta-master'
adamwathan 4b170dd
Update changelog
adamwathan 241613f
0.3.0
adamwathan 6abf160
Fix default strategy
Xenonym 630a9d6
Merge pull request #61 from Xenonym/patch-1
adamwathan c9e3218
Update changelog
adamwathan 48bd970
0.3.1
adamwathan b4c4e03
Filter null rules
adamwathan cf37807
Update 1.bug_report.yml
adamwathan 4c083b6
Update 1.bug_report.yml
RobinMalfait c6a2ff4
removing the `issue_body` key
simonswiss 7970ffd
Update 1.bug_report.yml
adamwathan 8ea3430
Update 1.bug_report.yml
adamwathan e8a287e
Fix :checked typo
chasegiunta 1f0a7c8
Merge pull request #72 from chasegiunta/master
adamwathan e88eda2
Update changelog
adamwathan 885034f
0.3.2
adamwathan d1613f9
Update CHANGELOG
adamwathan 6f951b2
0.3.3
adamwathan e926598
Update index.html
adamwathan 39946dd
Update kitchen-sink.html
adamwathan 241ac86
add default box shadow reset
RobinMalfait a7680e8
Remove duplicate variable declaration
adamwathan add1126
Merge pull request #81 from tailwindlabs/add-box-shadow-reset
adamwathan c3ea323
Update changelog
adamwathan 457b558
0.3.4
reinink 3d8b485
Update changelog
reinink 93857e1
Pull colors from tailwindcss/colors, not defaultTheme
adamwathan 61902f6
Merge pull request #83 from tailwindlabs/update-colors
adamwathan 12c53c3
Update demo to use v3
adamwathan a7705a9
0.4.0-alpha.1
adamwathan 1c926a2
add release-insiders build
RobinMalfait 491a834
Merge pull request #84 from tailwindlabs/release-insiders
RobinMalfait ce5386b
Remove dependency on old `outline.none` config value
reinink 2bd8f7e
Merge pull request #89 from tailwindlabs/outline-none-fix
reinink df8ac72
update changelog
RobinMalfait e8e01c3
0.4.0
RobinMalfait 533f0ce
Remove `dist` folder and related dependencies (#96)
RobinMalfait becd3b2
Update supported tailwind version in README (#99)
cornips e17d25f
Add autoprefixer and postcss as dev deps
thecrypticace bb5315c
Update LICENSE
adamwathan 807cd40
Use `addComponents` for class strategy (#91)
f15u d7b1a9a
update changelog
RobinMalfait 0b1e872
Update README.md
bradlc 1bd06b1
Update kitchen sink markup
adamwathan 99fbd47
Fix extra height on Safari date/time inputs (#109)
thecrypticace 2eb6f96
Update changelog
thecrypticace 9a0c0e4
0.4.1
thecrypticace 1871f90
Generate both global styles and classes by default (#71)
sanscheese c74eecc
Update changelog
thecrypticace 3103e33
0.5.0
thecrypticace 37912e9
Fix for multiple Select (#113)
labnol 01edbb6
Remove duplicate `outline` property (#116)
thecrypticace 203d454
Fix autoprefixer warning about `color-adjust` (#115)
thecrypticace 639211c
update changelog
thecrypticace 0894508
0.5.1
thecrypticace 7ef7a14
Dummy change to make insider builds happy
thecrypticace c763df9
Add type declaration (#118)
RobinMalfait 471c040
update changelog
RobinMalfait 88c2ba7
update changelog
RobinMalfait 19e4dda
0.5.2
RobinMalfait File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| name: Release Insiders | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| node-version: [12] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
|
|
||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v2 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| registry-url: 'https://registry.npmjs.org' | ||
|
|
||
| - name: Use cached node_modules | ||
| id: cache | ||
| uses: actions/cache@v2 | ||
| with: | ||
| path: node_modules | ||
| key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }} | ||
| restore-keys: | | ||
| nodeModules- | ||
|
|
||
| - name: Install dependencies | ||
| if: steps.cache.outputs.cache-hit != 'true' | ||
| run: npm install | ||
| env: | ||
| CI: true | ||
|
|
||
| - name: Resolve version | ||
| id: vars | ||
| run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
|
|
||
| - name: "Version based on commit: 0.0.0-insiders.${{ steps.vars.outputs.sha_short }}" | ||
| run: npm version 0.0.0-insiders.${{ steps.vars.outputs.sha_short }} --force --no-git-tag-version | ||
|
|
||
| - name: Publish | ||
| run: npm publish --tag insiders | ||
| env: | ||
| CI: true | ||
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
t thay may code cung hay lam chu bo