Skip to content

Commit

Permalink
Merge pull request #56 from mendix/develop
Browse files Browse the repository at this point in the history
Merge develop into release
  • Loading branch information
wegiswes authored Apr 29, 2020
2 parents 1c016cb + 0476c85 commit 0bd5547
Show file tree
Hide file tree
Showing 177 changed files with 10,008 additions and 3,633 deletions.
30 changes: 16 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,22 @@ possibilities. Here you will find a basic overview of our framework.
theme/
├── styles/
| ├── native/
| ├── app/
| | ├── _custom-variables.js
| | └── _custom.js
| ├── core/
|     |   ├── base/
|     |   ├── helpers/
| | ├── widgets/
|    |  | _variables.js
|    |  └── manifest.json
| ├── ui_resources/
|     |   └── atlas_ui_resources/
|     |   ├── buildingblocks/
|     |   └── layouts/
| └── main.js
| | ├── ts/ // Will not be in the Atlas UI Resources module
| | ├── js/
| | ├── app/
| | | ├── _custom-variables.js
| | | └── _custom.js
| | ├── core/
| |     |   ├── base/
| |     |   ├── helpers/
| | | ├── widgets/
| |    |  | _variables.js
| |    |  └── manifest.json
| | ├── ui_resources/
| |     |   └── atlas_ui_resources/
| |     |   ├── buildingblocks/
| |     |   └── layouts/
| | └── main.js
| └── web/
| ├── css/
| │ ├── * all output files
Expand Down
5 changes: 5 additions & 0 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atlas-ui-framework",
"version": "2.5.4",
"version": "2.5.5",
"description": "Mendix Atlas UI is the foundation of making beautiful apps with Mendix. For more information about the framework go to https://atlas.mendix.com.",
"main": "",
"scripts": {
Expand All @@ -17,5 +17,7 @@
"bugs": {
"url": "https://github.com/mendix/Atlas-UI-Framework/issues"
},
"homepage": "https://github.com/mendix/Atlas-UI-Framework#readme"
"homepage": "https://github.com/mendix/Atlas-UI-Framework#readme",
"devDependencies": {},
"dependencies": {}
}
2 changes: 1 addition & 1 deletion scripts/lib/readFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require("path");
module.exports.getVersionFilePaths = () => ({
pkg: path.join(process.cwd(), "package.json"),
manifest: {
js: path.join(process.cwd(), "styles", "native", "core", "manifest.json"),
js: path.join(process.cwd(), "styles", "native", "ts", "core", "manifest.json"),
sass: path.join(process.cwd(), "styles", "web", "sass", "core", "manifest.json"),
},
});
Expand Down
50 changes: 50 additions & 0 deletions settings-native.json
Original file line number Diff line number Diff line change
Expand Up @@ -1034,6 +1034,56 @@
"class": "tabContainerScroll"
}
],
"TextBox": [
{
"name": "Capitalize",
"type": "Dropdown",
"description": "Change the capitalization of the input.",
"options": [
{
"name": "None",
"class": "textInputCapitalizeNone"
},
{
"name": "Characters",
"class": "textInputCapitalizeCharacters"
},
{
"name": "Words",
"class": "textInputCapitalizeWords"
},
{
"name": "Sentences",
"class": "textInputCapitalizeSentences"
}
]
}
],
"TextArea": [
{
"name": "Capitalize",
"type": "Dropdown",
"description": "Change the capitalization of the input.",
"options": [
{
"name": "None",
"class": "textInputCapitalizeNone"
},
{
"name": "Characters",
"class": "textInputCapitalizeCharacters"
},
{
"name": "Words",
"class": "textInputCapitalizeWords"
},
{
"name": "Sentences",
"class": "textInputCapitalizeSentences"
}
]
}
],
"com.mendix.widget.native.activityindicator.ActivityIndicator": [
{
"name": "Activity indicator style",
Expand Down
6 changes: 3 additions & 3 deletions styles.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as main from './styles/native/main';
import * as custom from './styles/native/app/custom';
import mergeobjects from './styles/native/core/helpers/_functions/mergeobjects';
import * as custom from "./styles/native/js/app/custom";
import mergeobjects from "./styles/native/js/core/helpers/_functions/mergeobjects";
import * as main from "./styles/native/js/main";

Object.keys(custom).forEach(key => {
if (main[key]) {
Expand Down
1 change: 0 additions & 1 deletion styles/native/app/custom.js

This file was deleted.

16 changes: 0 additions & 16 deletions styles/native/core/widgets/animation.js

This file was deleted.

21 changes: 0 additions & 21 deletions styles/native/core/widgets/colorpicker.js

This file was deleted.

24 changes: 0 additions & 24 deletions styles/native/core/widgets/container.js

This file was deleted.

21 changes: 0 additions & 21 deletions styles/native/core/widgets/listviews.js

This file was deleted.

26 changes: 0 additions & 26 deletions styles/native/core/widgets/pagetitle.js

This file was deleted.

20 changes: 0 additions & 20 deletions styles/native/core/widgets/qrcode.js

This file was deleted.

16 changes: 0 additions & 16 deletions styles/native/core/widgets/rangeslider.js

This file was deleted.

23 changes: 0 additions & 23 deletions styles/native/core/widgets/rating.js

This file was deleted.

18 changes: 0 additions & 18 deletions styles/native/core/widgets/safeareaview.js

This file was deleted.

53 changes: 0 additions & 53 deletions styles/native/core/widgets/tabcontainer.js

This file was deleted.

Loading

0 comments on commit 0bd5547

Please sign in to comment.