Skip to content

Commit

Permalink
Updated component to version 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Oct 6, 2022
1 parent cc32be1 commit d34a4dc
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 2.5.0 - Oct 6, 2022

- **Theme** - Allow site's global site theme to be missing #6876 **Thanks @cruzdanillo**

### Version 2.4.0 - Sep 17, 2018

> `2.4.0` includes a new component `placeholder`. To use this component in your existing SUI site, be sure to add `@placeholder: 'default';` to your `theme.config`. You can see an example in `theme.config.example`
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"authors": [{
"name": "Jack Lukic",
"email": "[email protected]",
"web": "http://www.jacklukic.com",
"homepage": "http://www.jacklukic.com",
"role": "Creator"
}],
"keywords": ["semantic", "ui", "css", "framework"],
"license": "MIT",
"version": "2.4.1"
"version": "2.5.0"
}
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.4.1 - Site
* # Semantic UI 2.5.0 - Site
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-site",
"version": "2.4.1",
"version": "2.5.0",
"title": "Semantic UI - Site",
"description": "Single component release of site",
"homepage": "http://www.semantic-ui.com",
Expand Down
6 changes: 5 additions & 1 deletion site.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.4.1 - Site
* # Semantic UI 2.5.0 - Site
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -147,6 +147,10 @@ input::-moz-selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
textarea::-moz-selection, input::-moz-selection {
background-color: rgba(100, 100, 100, 0.4);
color: rgba(0, 0, 0, 0.87);
}
textarea::selection,
input::selection {
background-color: rgba(100, 100, 100, 0.4);
Expand Down
2 changes: 1 addition & 1 deletion site.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.4.1 - Site
* # Semantic UI 2.5.0 - Site
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
4 changes: 2 additions & 2 deletions site.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion site.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d34a4dc

Please sign in to comment.