Skip to content
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

chore/2.6.4 release #247

Merged
merged 36 commits into from
Nov 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
38a95b1
chore: add vscode folder into .gitignore
prudho Oct 18, 2018
81e3934
fix(dimmer): make dimmer text more readable
lubber-de Oct 22, 2018
7828b2f
fix(popup): correct module.supports.svg method
lubber-de Oct 23, 2018
de7134d
fix(dropdown): prevent multiselection dropdown being pushed down
lubber-de Oct 24, 2018
6ed8db1
fix(dropdown): prevents close/open bubbling
lubber-de Oct 24, 2018
b9551d8
fix(dimmer): stop events when outside scope
lubber-de Oct 24, 2018
22a25fa
fix(dropdown): showOnFocus will not prevent dropdown opening
lubber-de Oct 24, 2018
63bc9a8
fix(dropdown): IE11 got focus on submenu selection again
lubber-de Oct 24, 2018
78dece2
feat(progress): inverted colors text will black instead of white
lubber-de Oct 24, 2018
2f05013
feat(calendar): add timegap setting to expand time selector
prudho Oct 24, 2018
108c1ec
revert: add timegap setting to expand time selector
Oct 24, 2018
dd957bc
feat(calendar): add `disabledDaysOfWeek` setting
prudho Oct 24, 2018
e85b8e5
feat(dimmer): add support for using dimmers only partially on top,cen…
lubber-de Oct 24, 2018
627e808
fix(dropdown): remove top margin from simple dropdown items to preven…
lubber-de Oct 26, 2018
c7cd36a
fix(segment): increase specificity of raised segment
ColinFrick Oct 26, 2018
ad2f57e
fix(menu): make the pointing tips in inverted menu reflecting menu ba…
Oct 26, 2018
83aa9e2
fix(modal): image and content does not wrap
lubber-de Oct 28, 2018
f812030
fix(icon): corner icon size in header icon
Oct 28, 2018
216f03f
fix(menu): dropdown inside menu should not reflect menu styling
Oct 30, 2018
6af1487
fix(list): data-value on <div> list items is ignored
lubber-de Oct 30, 2018
c4c8037
fix(modal): basic modal and inverted modal on inverted dimmer had wro…
lubber-de Oct 30, 2018
e466d37
build: implement travis
prudho Oct 30, 2018
91ea667
fix(icon): icon group alignment
Nov 2, 2018
a52c665
feat(item): add inverted variant
lubber-de Nov 5, 2018
0fa3831
style: fixes some CSS lint issues
prudho Nov 5, 2018
dd04a90
feat(statistic): add stackable variation
prudho Nov 5, 2018
3f7bc5d
feat(calendar): add ability to disable specific date(s)
Nov 5, 2018
5b7ebae
fix(list): icon and wrapped image were not inline and wrapped or wron…
lubber-de Nov 11, 2018
c284ecd
feat(popup): add size modifiers to none javascript popup
prudho Nov 11, 2018
1c25272
fix(form): dropdown width in forms
Nov 11, 2018
92af851
feat(site): update and add brand colors
prudho Nov 11, 2018
cc7f428
fix(popup): old Fix was disturbing popup position calculations
lubber-de Nov 12, 2018
0620309
fix(dropdown): fix for menu bubbling
lubber-de Nov 12, 2018
6b39072
fix(dropdown): make sure to also clear filtered items when clearing
lubber-de Nov 12, 2018
40374b8
fix(dropdown): prevent user selection
lubber-de Nov 12, 2018
11150d4
chore(release): 2.6.4
Nov 14, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ nbproject
*.sublime-workspace
.build*
.idea
.vscode
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: node_js

node_js:
- 10

# Stop as soon as an error is trigerred
matrix:
fast_finish: true

# Caching node_modules folder for speed up build
cache: npm

before_install:
- sh preinstall.sh

env:
global:
- NODE_ENV=production
33 changes: 33 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
## RELEASE NOTES

### Version 2.6.4 - November 15, 2018

**Enhancements**
- **Progress** - Display dark text on inverted backgrounds **Thanks [@lubber-de](https://github.com/lubber-de)** [#196](https://github.com/fomantic/Fomantic-UI/pull/196)
- **Calendar** - Add ability to disable days of the week **Thanks [@prudho](https://github.com/prudho)** [#199](https://github.com/fomantic/Fomantic-UI/pull/199)
- **Calendar** - Added ability to disable specific date(s) **Thanks [@exoego](https://github.com/exoego)** [#211](https://github.com/fomantic/Fomantic-UI/pull/211)
- **Dimmer** - Added support for using dimmers partially on top, center and bottom **Thanks [@lubber-de](https://github.com/lubber-de)** [#186](https://github.com/fomantic/Fomantic-UI/pull/186)
- **Item** - Added inverted variant **Thanks [@lubber-de](https://github.com/lubber-de)** [#232](https://github.com/fomantic/Fomantic-UI/pull/232)
- **Statistic** - Added stackable variation **Thanks [@prudho](https://github.com/prudho)** [#237](https://github.com/fomantic/Fomantic-UI/pull/237)
- **Popup** - Add size and basic variation to none javascript popup **Thanks [@prudho](https://github.com/prudho)** [#202](https://github.com/fomantic/Fomantic-UI/pull/202)

**Bugs**
- **Dimmer** - Fixed inverted dimmer text color **Thanks [@lubber-de](https://github.com/lubber-de)** [#187](https://github.com/fomantic/Fomantic-UI/pull/187)
- **Popup** - Fixed the method used to check for svg support **Thanks [@lubber-de](https://github.com/lubber-de)** [#192](https://github.com/fomantic/Fomantic-UI/pull/192)
- **Dropdown** - Fixed issue causing multi select dropdowns being pushed down **Thanks [@lubber-de](https://github.com/lubber-de)** [#195](https://github.com/fomantic/Fomantic-UI/pull/195)
- **Dropdown** - Fixed issue making dropdowns open/close bubbling on key select **Thanks [@lubber-de](https://github.com/lubber-de)** [#190](https://github.com/fomantic/Fomantic-UI/pull/190)
- **Dropdown** - Fixed dropdown listening to events when not open **Thanks [@lubber-de](https://github.com/lubber-de)** [#188](https://github.com/fomantic/Fomantic-UI/pull/188)
- **Dropdown** - Fixed issue with `showOnFocus: false` preventing click to open dropdown **Thanks [@lubber-de](https://github.com/lubber-de)** [#193](https://github.com/fomantic/Fomantic-UI/pull/193)
- **Dropdown** - Fixed IE11 submenu selection triggered menu opening **Thanks [@lubber-de](https://github.com/lubber-de)** [#189](https://github.com/fomantic/Fomantic-UI/pull/189)
- **Dropdown** - Fixed issue with `simple dropdown` preventing submenu items from being clicked **Thanks [@lubber-de](https://github.com/lubber-de)** [#203](https://github.com/fomantic/Fomantic-UI/pull/203)
- **Dropdown** - Fixed issue preventing user additions from being cleared when using `clearable` **Thanks [@lubber-de](https://github.com/lubber-de)** [#244](https://github.com/fomantic/Fomantic-UI/pull/244)
- **Dropdown** - Fixed issue allowing users to select dropdown text incorrectly **Thanks [@lubber-de](https://github.com/lubber-de)** [#246](https://github.com/fomantic/Fomantic-UI/pull/246)
- **Segment** - Fixed issue with colored inverted segments not being raised **Thanks [@ColinFrick](https://github.com/ColinFrick)** [#206](https://github.com/fomantic/Fomantic-UI/pull/206)
- **Menu** - Fixed pointing menu arrows not being colored in inverted colored menus **Thanks [@exoego](https://github.com/exoego)** [#204](https://github.com/fomantic/Fomantic-UI/pull/204)
- **Menu** - Fixed dropdown inside menus not reflecting correct styling **Thanks [@exoego](https://github.com/exoego)** [#218](https://github.com/fomantic/Fomantic-UI/pull/218)
- **Modal** - Fixed issue making large content images from going out of the modal content **Thanks [@lubber-de](https://github.com/lubber-de)** [#209](https://github.com/fomantic/Fomantic-UI/pull/209)
- **Modal** - Fixed inverted modals having incorrect close icon color **Thanks [@lubber-de](https://github.com/lubber-de)** [#208](https://github.com/fomantic/Fomantic-UI/pull/208)
- **Icons** - Fixed corner icon size in icon headers **Thanks [@exoego](https://github.com/exoego)** [#212](https://github.com/fomantic/Fomantic-UI/pull/212)
- **Icons** - Fixed icon alignment **Thanks [@exoego](https://github.com/exoego)** [#229](https://github.com/fomantic/Fomantic-UI/pull/229)
- **List** - Fixed an issue making lists ignore `data-value` **Thanks [@lubber-de](https://github.com/lubber-de)** [#224](https://github.com/fomantic/Fomantic-UI/pull/224)
- **List** - Fixed issue with icons and wrapped images not being inline and wrapped or wrongly aligned **Thanks [@lubber-de](https://github.com/lubber-de)** [#242](https://github.com/fomantic/Fomantic-UI/pull/242)
- **Form** - Fixed dropdown widths being incorrect when inside a form **Thanks [@exoego](https://github.com/exoego)** [#238](https://github.com/fomantic/Fomantic-UI/pull/238)

### Version 2.6.3 - October 18, 2018

**Enhancements**
Expand Down
2 changes: 1 addition & 1 deletion dist/components/accordion.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - Accordion
* # Semantic UI 2.6.4 - Accordion
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/accordion.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - Accordion
* # Semantic UI 2.6.4 - Accordion
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/accordion.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 dist/components/ad.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - Ad
* # Semantic UI 2.6.4 - Ad
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/ad.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 dist/components/api.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - API
* # Semantic UI 2.6.4 - API
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/breadcrumb.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - Breadcrumb
* # Semantic UI 2.6.4 - Breadcrumb
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/breadcrumb.min.css

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

68 changes: 47 additions & 21 deletions dist/components/button.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - Button
* # Semantic UI 2.6.4 - Button
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -424,8 +424,8 @@
-ms-flex-align: center;
align-items: center;
margin: 0px 0px 0px -1px !important;
padding: '';
font-size: 1em;
padding: '';
border-color: rgba(34, 36, 38, 0.15);
}

Expand Down Expand Up @@ -482,20 +482,20 @@

/* Twitter */
.ui.twitter.button {
background-color: #55ACEE;
background-color: #1DA1F2;
color: #FFFFFF;
text-shadow: none;
background-image: none;
-webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}
.ui.twitter.button:hover {
background-color: #35a2f4;
background-color: #0298f3;
color: #FFFFFF;
text-shadow: none;
}
.ui.twitter.button:active {
background-color: #2795e9;
background-color: #0c85d0;
color: #FFFFFF;
text-shadow: none;
}
Expand All @@ -522,17 +522,17 @@

/* Linked In */
.ui.linkedin.button {
background-color: #1F88BE;
background-color: #0077B5;
color: #FFFFFF;
text-shadow: none;
}
.ui.linkedin.button:hover {
background-color: #147baf;
background-color: #00669c;
color: #FFFFFF;
text-shadow: none;
}
.ui.linkedin.button:active {
background-color: #186992;
background-color: #005582;
color: #FFFFFF;
text-shadow: none;
}
Expand Down Expand Up @@ -599,18 +599,52 @@

/* VK */
.ui.vk.button {
background-color: #4D7198;
background-color: #45668E;
color: #FFFFFF;
background-image: none;
-webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}
.ui.vk.button:hover {
background-color: #41648a;
background-color: #395980;
color: #FFFFFF;
}
.ui.vk.button:active {
background-color: #3c5876;
background-color: #344d6c;
color: #FFFFFF;
}

/* WhatsApp */
.ui.whatsapp.button {
background-color: #25D366;
color: #FFFFFF;
background-image: none;
-webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}
.ui.whatsapp.button:hover {
background-color: #19c55a;
color: #FFFFFF;
}
.ui.whatsapp.button:active {
background-color: #1da851;
color: #FFFFFF;
}

/* Telegram */
.ui.telegram.button {
background-color: #0088CC;
color: #FFFFFF;
background-image: none;
-webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}
.ui.telegram.button:hover {
background-color: #0077b3;
color: #FFFFFF;
}
.ui.telegram.button:active {
background-color: #006699;
color: #FFFFFF;
}

Expand Down Expand Up @@ -900,8 +934,6 @@
}
.ui.basic.vertical.buttons .button {
border-left: none;
}
.ui.basic.vertical.buttons .button {
border-left-width: 0px;
border-top: 1px solid rgba(34, 36, 38, 0.15);
}
Expand Down Expand Up @@ -965,6 +997,8 @@
.ui.labeled.icon.buttons > .button > .icon,
.ui.labeled.icon.button > .icon {
position: absolute;
top: 0em;
left: 0em;
height: 100%;
line-height: 1;
border-radius: 0px;
Expand All @@ -979,13 +1013,6 @@
box-shadow: -1px 0px 0px 0px transparent inset;
}

/* Left Labeled */
.ui.labeled.icon.buttons > .button > .icon,
.ui.labeled.icon.button > .icon {
top: 0em;
left: 0em;
}

/* Right Labeled */
.ui[class*="right labeled"].icon.button {
padding-right: 4.07142857em !important;
Expand Down Expand Up @@ -4439,7 +4466,6 @@
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
margin: 0em;
border-radius: 0em;
margin: 0px 0px 0px 0px;
}
Expand Down
4 changes: 2 additions & 2 deletions dist/components/button.min.css

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions dist/components/calendar.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.6.3 - Calendar
* # Semantic UI 2.6.4 - Calendar
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -75,9 +75,6 @@
.ui.calendar .ui.table tr th .icon {
margin: 0;
}
.ui.calendar .ui.table tr th .icon {
margin: 0;
}
.ui.calendar .ui.table tr:first-child th {
position: relative;
padding-left: 0;
Expand Down Expand Up @@ -108,7 +105,8 @@
right: 0;
}
.ui.calendar .ui.table tr .disabled {
pointer-events: none;
pointer-events: auto;
cursor: default;
color: rgba(40, 40, 40, 0.3);
}

Expand Down
Loading