Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ClearC2/grid-form-builder into ma…
Browse files Browse the repository at this point in the history
…ster
  • Loading branch information
Jacob-Allen committed Feb 20, 2025
2 parents 824086b + 6d4155b commit 8d9177e
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [3.112.0](https://github.com/ClearC2/grid-form-builder/compare/v3.111.1...v3.112.0) (2025-02-17)


### Bug Fixes

* **native-select-indicator:** increase the margin in native select indicator ([#234](https://github.com/ClearC2/grid-form-builder/issues/234)) ([7c28b67](https://github.com/ClearC2/grid-form-builder/commit/7c28b673b46a70514520d2bca3315c0f28bf22ac))


### Features

* **reporting:** last quarter ([#235](https://github.com/ClearC2/grid-form-builder/issues/235)) ([c53a5ed](https://github.com/ClearC2/grid-form-builder/commit/c53a5ed1e97d3884ab044f3f18456ff9e4889afd))

## [3.111.1](https://github.com/ClearC2/grid-form-builder/compare/v3.111.0...v3.111.1) (2025-02-11)


Expand Down
5 changes: 5 additions & 0 deletions dist/cjs/Inputs/SearchUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ var CONDITIONS = {
minFields: 0,
invalidInputTypes: (0, _toConsumableArray2.default)(ALL_BUT_DATES)
},
'last quarter': {
maxFields: 0,
minFields: 0,
invalidInputTypes: (0, _toConsumableArray2.default)(ALL_BUT_DATES)
},
'quarter to date': {
maxFields: 0,
minFields: 0,
Expand Down
6 changes: 3 additions & 3 deletions dist/cjs/styles/native-select.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
.gfb-native-select-ios-down-indicator {
margin-right: 6px !important;
margin-top: 5px;
margin-top: 10px;
height: 14px !important;
width: 14px !important;
color: rgb(204, 204, 204);
}

.gfb-native-select-android-down-indicator {
margin-right: 6px;
margin-top: 4px;
margin-top: 10px;
height: 14px;
width: 14px;
color: rgb(204, 204, 204);
}

.gfb-native-select-web-down-indicator {
margin-right: 6px;
margin-top: 4px;
margin-top: 10px;
height: 14px;
width: 14px;
color: rgb(204, 204, 204);
Expand Down
5 changes: 5 additions & 0 deletions dist/es/Inputs/SearchUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,11 @@ export var CONDITIONS = {
minFields: 0,
invalidInputTypes: _toConsumableArray(ALL_BUT_DATES)
},
'last quarter': {
maxFields: 0,
minFields: 0,
invalidInputTypes: _toConsumableArray(ALL_BUT_DATES)
},
'quarter to date': {
maxFields: 0,
minFields: 0,
Expand Down
6 changes: 3 additions & 3 deletions dist/es/styles/native-select.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
.gfb-native-select-ios-down-indicator {
margin-right: 6px !important;
margin-top: 5px;
margin-top: 10px;
height: 14px !important;
width: 14px !important;
color: rgb(204, 204, 204);
}

.gfb-native-select-android-down-indicator {
margin-right: 6px;
margin-top: 4px;
margin-top: 10px;
height: 14px;
width: 14px;
color: rgb(204, 204, 204);
}

.gfb-native-select-web-down-indicator {
margin-right: 6px;
margin-top: 4px;
margin-top: 10px;
height: 14px;
width: 14px;
color: rgb(204, 204, 204);
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": "grid-form-builder",
"version": "3.111.1",
"version": "3.112.0",
"description": "Form Builder built on top of React Grid Layout",
"repository": {
"type": "git",
Expand Down
5 changes: 5 additions & 0 deletions src/Inputs/SearchUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ export const CONDITIONS = {
minFields: 0,
invalidInputTypes: [...ALL_BUT_DATES]
},
'last quarter': {
maxFields: 0,
minFields: 0,
invalidInputTypes: [...ALL_BUT_DATES]
},
'quarter to date': {
maxFields: 0,
minFields: 0,
Expand Down
6 changes: 3 additions & 3 deletions src/styles/native-select.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
.gfb-native-select-ios-down-indicator {
margin-right: 6px !important;
margin-top: 5px;
margin-top: 10px;
height: 14px !important;
width: 14px !important;
color: rgb(204, 204, 204);
}

.gfb-native-select-android-down-indicator {
margin-right: 6px;
margin-top: 4px;
margin-top: 10px;
height: 14px;
width: 14px;
color: rgb(204, 204, 204);
}

.gfb-native-select-web-down-indicator {
margin-right: 6px;
margin-top: 4px;
margin-top: 10px;
height: 14px;
width: 14px;
color: rgb(204, 204, 204);
Expand Down

0 comments on commit 8d9177e

Please sign in to comment.