Skip to content

Commit d34a4dc

Browse files
Updated component to version 2.5.0
1 parent cc32be1 commit d34a4dc

8 files changed

+17
-9
lines changed

RELEASE-NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 2.5.0 - Oct 6, 2022
2+
3+
- **Theme** - Allow site's global site theme to be missing #6876 **Thanks @cruzdanillo**
4+
15
### Version 2.4.0 - Sep 17, 2018
26

37
> `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`

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"authors": [{
66
"name": "Jack Lukic",
77
"email": "[email protected]",
8-
"web": "http://www.jacklukic.com",
8+
"homepage": "http://www.jacklukic.com",
99
"role": "Creator"
1010
}],
1111
"keywords": ["semantic", "ui", "css", "framework"],
1212
"license": "MIT",
13-
"version": "2.4.1"
13+
"version": "2.5.0"
1414
}

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.4.1 - Site
2+
* # Semantic UI 2.5.0 - Site
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "semantic-ui-site",
3-
"version": "2.4.1",
3+
"version": "2.5.0",
44
"title": "Semantic UI - Site",
55
"description": "Single component release of site",
66
"homepage": "http://www.semantic-ui.com",

site.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.4.1 - Site
2+
* # Semantic UI 2.5.0 - Site
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -147,6 +147,10 @@ input::-moz-selection {
147147
background-color: rgba(100, 100, 100, 0.4);
148148
color: rgba(0, 0, 0, 0.87);
149149
}
150+
textarea::-moz-selection, input::-moz-selection {
151+
background-color: rgba(100, 100, 100, 0.4);
152+
color: rgba(0, 0, 0, 0.87);
153+
}
150154
textarea::selection,
151155
input::selection {
152156
background-color: rgba(100, 100, 100, 0.4);

site.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.4.1 - Site
2+
* # Semantic UI 2.5.0 - Site
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

site.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)