├── .gitignore ├── .prettierrc ├── .stylelintrc ├── LICENSE ├── README.md ├── com.mendix.charts.json ├── components.json ├── index-rtl.html ├── index.html ├── login-with-sso.html ├── login.html ├── logo.png ├── manifest-overrides.webmanifest ├── package.json ├── resources └── work-do-more.jpeg ├── robots.txt ├── scripts ├── bump-major.js ├── bump-minor.js ├── bump-patch.js └── lib │ ├── readFile.js │ └── writeFile.js ├── settings-native.json ├── settings.json ├── styles.js ├── styles ├── native │ ├── js │ │ ├── app │ │ │ ├── custom-variables.js │ │ │ └── custom.js │ │ ├── core │ │ │ ├── base │ │ │ │ ├── flex.js │ │ │ │ └── spacing.js │ │ │ ├── helpers │ │ │ │ ├── _functions │ │ │ │ │ ├── adjustfont.js │ │ │ │ │ ├── colorwords.js │ │ │ │ │ ├── convertcolors.js │ │ │ │ │ ├── device.js │ │ │ │ │ ├── mergeobjects.js │ │ │ │ │ └── shadeblendconvert.js │ │ │ │ ├── activityindicator.js │ │ │ │ ├── badge.js │ │ │ │ ├── barchart.js │ │ │ │ ├── buttons.js │ │ │ │ ├── floatingactionbutton.js │ │ │ │ ├── helperclasses.js │ │ │ │ ├── images.js │ │ │ │ ├── linechart.js │ │ │ │ ├── listviews.js │ │ │ │ ├── listviewswipe.js │ │ │ │ ├── maps.js │ │ │ │ ├── progressbar.js │ │ │ │ ├── progresscircle.js │ │ │ │ ├── rangeslider.js │ │ │ │ ├── slider.js │ │ │ │ ├── tabcontainer.js │ │ │ │ ├── textbox.js │ │ │ │ └── typography.js │ │ │ ├── manifest.json │ │ │ ├── variables.js │ │ │ └── widgets │ │ │ │ ├── activityindicator.js │ │ │ │ ├── animation.js │ │ │ │ ├── backgroundimage.js │ │ │ │ ├── badge.js │ │ │ │ ├── barchart.js │ │ │ │ ├── bottomsheet.js │ │ │ │ ├── buttons.js │ │ │ │ ├── carousel.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── container.js │ │ │ │ ├── datepicker.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── feedback.js │ │ │ │ ├── floatingactionbutton.js │ │ │ │ ├── images.js │ │ │ │ ├── introscreen.js │ │ │ │ ├── layoutgrid.js │ │ │ │ ├── linechart.js │ │ │ │ ├── listviews.js │ │ │ │ ├── listviewswipe.js │ │ │ │ ├── maps.js │ │ │ │ ├── navigation.js │ │ │ │ ├── pagetitle.js │ │ │ │ ├── popupmenu.js │ │ │ │ ├── progressbar.js │ │ │ │ ├── progresscircle.js │ │ │ │ ├── qrcode.js │ │ │ │ ├── rangeslider.js │ │ │ │ ├── rating.js │ │ │ │ ├── referenceselector.js │ │ │ │ ├── safeareaview.js │ │ │ │ ├── slider.js │ │ │ │ ├── tabcontainer.js │ │ │ │ ├── textarea.js │ │ │ │ ├── textbox.js │ │ │ │ ├── togglebuttons.js │ │ │ │ ├── typography.js │ │ │ │ ├── videoplayer.js │ │ │ │ └── webview.js │ │ ├── main.js │ │ └── ui_resources │ │ │ └── atlas_ui_resources │ │ │ ├── buildingblocks │ │ │ ├── card.js │ │ │ └── header.js │ │ │ ├── layouts │ │ │ └── layout.js │ │ │ └── pagetemplates │ │ │ ├── inspectiondetails.js │ │ │ ├── maps.js │ │ │ └── page.js │ └── ts │ │ ├── app │ │ ├── custom-variables.ts │ │ └── custom.ts │ │ ├── core │ │ ├── base │ │ │ ├── flex.ts │ │ │ └── spacing.ts │ │ ├── helpers │ │ │ ├── _functions │ │ │ │ ├── adjustfont.ts │ │ │ │ ├── colorwords.ts │ │ │ │ ├── convertcolors.ts │ │ │ │ ├── device.ts │ │ │ │ ├── mergeobjects.ts │ │ │ │ └── shadeblendconvert.ts │ │ │ ├── activityindicator.ts │ │ │ ├── badge.ts │ │ │ ├── barchart.ts │ │ │ ├── buttons.ts │ │ │ ├── floatingactionbutton.ts │ │ │ ├── helperclasses.ts │ │ │ ├── images.ts │ │ │ ├── linechart.ts │ │ │ ├── listviews.ts │ │ │ ├── listviewswipe.ts │ │ │ ├── maps.ts │ │ │ ├── progressbar.ts │ │ │ ├── progresscircle.ts │ │ │ ├── rangeslider.ts │ │ │ ├── slider.ts │ │ │ ├── tabcontainer.ts │ │ │ ├── textbox.ts │ │ │ └── typography.ts │ │ ├── manifest.json │ │ ├── variables.ts │ │ └── widgets │ │ │ ├── activityindicator.ts │ │ │ ├── animation.ts │ │ │ ├── backgroundimage.ts │ │ │ ├── badge.ts │ │ │ ├── barchart.ts │ │ │ ├── bottomsheet.ts │ │ │ ├── buttons.ts │ │ │ ├── carousel.ts │ │ │ ├── checkbox.ts │ │ │ ├── colorpicker.ts │ │ │ ├── container.ts │ │ │ ├── datepicker.ts │ │ │ ├── dropdown.ts │ │ │ ├── feedback.ts │ │ │ ├── floatingactionbutton.ts │ │ │ ├── images.ts │ │ │ ├── introscreen.ts │ │ │ ├── layoutgrid.ts │ │ │ ├── linechart.ts │ │ │ ├── listviews.ts │ │ │ ├── listviewswipe.ts │ │ │ ├── maps.ts │ │ │ ├── navigation.ts │ │ │ ├── pagetitle.ts │ │ │ ├── popupmenu.ts │ │ │ ├── progressbar.ts │ │ │ ├── progresscircle.ts │ │ │ ├── qrcode.ts │ │ │ ├── rangeslider.ts │ │ │ ├── rating.ts │ │ │ ├── referenceselector.ts │ │ │ ├── safeareaview.ts │ │ │ ├── slider.ts │ │ │ ├── tabcontainer.ts │ │ │ ├── textarea.ts │ │ │ ├── textbox.ts │ │ │ ├── togglebuttons.ts │ │ │ ├── typography.ts │ │ │ ├── videoplayer.ts │ │ │ └── webview.ts │ │ ├── main.ts │ │ ├── types │ │ ├── custom-variables.d.ts │ │ ├── helperclass.d.ts │ │ ├── rn.d.ts │ │ ├── variables.d.ts │ │ └── widgets.d.ts │ │ └── ui_resources │ │ └── atlas_ui_resources │ │ ├── buildingblocks │ │ ├── card.ts │ │ └── header.ts │ │ ├── layouts │ │ └── layout.ts │ │ └── pagetemplates │ │ ├── inspectiondetails.ts │ │ ├── maps.ts │ │ └── page.ts └── web │ ├── css │ ├── fonts │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── main.css │ └── main.css.map │ └── sass │ ├── app │ ├── _custom-variables.scss │ └── _custom.scss │ ├── core │ ├── _legacy │ │ ├── _mxui.scss │ │ └── bootstrap │ │ │ ├── _bootstrap-rtl.scss │ │ │ ├── _bootstrap.scss │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── _variables.scss │ ├── base │ │ ├── _animation.scss │ │ ├── _base.scss │ │ ├── _flex.scss │ │ ├── _login.scss │ │ ├── _reset.scss │ │ ├── _spacing.scss │ │ └── mixins │ │ │ ├── _animations.scss │ │ │ ├── _buttons.scss │ │ │ ├── _groupbox.scss │ │ │ ├── _layout-spacing.scss │ │ │ └── _spacing.scss │ ├── helpers │ │ ├── _alerts.scss │ │ ├── _backgrounds.scss │ │ ├── _buttons.scss │ │ ├── _datagrids.scss │ │ ├── _groupbox.scss │ │ ├── _helperclasses.scss │ │ ├── _images.scss │ │ ├── _labels.scss │ │ ├── _listview.scss │ │ ├── _navigationbar.scss │ │ ├── _navigationtree.scss │ │ ├── _simplemenubar.scss │ │ ├── _tabcontainer.scss │ │ ├── _tables.scss │ │ ├── _templategrids.scss │ │ └── _typography.scss │ ├── manifest.json │ ├── widgets │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _checkbox.scss │ │ ├── _datagrids.scss │ │ ├── _dataview.scss │ │ ├── _datepicker.scss │ │ ├── _glyphicons.scss │ │ ├── _grid.scss │ │ ├── _groupbox.scss │ │ ├── _header.scss │ │ ├── _inputs.scss │ │ ├── _labels.scss │ │ ├── _layoutgrid.scss │ │ ├── _listview.scss │ │ ├── _modals.scss │ │ ├── _navigationbar.scss │ │ ├── _navigationlist.scss │ │ ├── _navigationtree.scss │ │ ├── _popupmenu.scss │ │ ├── _progress.scss │ │ ├── _radiobuttons.scss │ │ ├── _simplemenubar.scss │ │ ├── _tabcontainer.scss │ │ ├── _tables.scss │ │ ├── _templategrids.scss │ │ ├── _timeline.scss │ │ └── _typography.scss │ └── widgetscustom │ │ ├── _dijit-widgets.scss │ │ ├── _progress-bar-theme.scss │ │ ├── _progress-circle-theme.scss │ │ ├── _range-slider-theme.scss │ │ ├── _slider-theme.scss │ │ ├── _star-rating-theme.scss │ │ └── _switchwidget.scss │ ├── main.scss │ └── ui_resources │ └── atlas_ui_resources │ ├── buildingblocks │ ├── _breadcrumb.scss │ ├── _card.scss │ ├── _chat.scss │ ├── _controlgroup.scss │ ├── _formblock.scss │ ├── _heroheader.scss │ ├── _master-detail.scss │ ├── _pageblocks.scss │ ├── _pageheader.scss │ ├── _timeline.scss │ ├── _userprofile.scss │ └── _wizard.scss │ └── layouts │ ├── _layout-atlas-phone.scss │ ├── _layout-atlas-responsive.scss │ ├── _layout-atlas-tablet.scss │ └── _layout-atlas.scss └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/README.md -------------------------------------------------------------------------------- /com.mendix.charts.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/components.json -------------------------------------------------------------------------------- /index-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/index-rtl.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/index.html -------------------------------------------------------------------------------- /login-with-sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/login-with-sso.html -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/login.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/logo.png -------------------------------------------------------------------------------- /manifest-overrides.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/manifest-overrides.webmanifest -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/package.json -------------------------------------------------------------------------------- /resources/work-do-more.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/resources/work-do-more.jpeg -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/robots.txt -------------------------------------------------------------------------------- /scripts/bump-major.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/scripts/bump-major.js -------------------------------------------------------------------------------- /scripts/bump-minor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/scripts/bump-minor.js -------------------------------------------------------------------------------- /scripts/bump-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/scripts/bump-patch.js -------------------------------------------------------------------------------- /scripts/lib/readFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/scripts/lib/readFile.js -------------------------------------------------------------------------------- /scripts/lib/writeFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/scripts/lib/writeFile.js -------------------------------------------------------------------------------- /settings-native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/settings-native.json -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/settings.json -------------------------------------------------------------------------------- /styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles.js -------------------------------------------------------------------------------- /styles/native/js/app/custom-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/app/custom-variables.js -------------------------------------------------------------------------------- /styles/native/js/app/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/native/js/core/base/flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/base/flex.js -------------------------------------------------------------------------------- /styles/native/js/core/base/spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/base/spacing.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/_functions/adjustfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/_functions/adjustfont.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/_functions/colorwords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/_functions/colorwords.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/_functions/convertcolors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/_functions/convertcolors.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/_functions/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/_functions/device.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/_functions/mergeobjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/_functions/mergeobjects.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/_functions/shadeblendconvert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/_functions/shadeblendconvert.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/activityindicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/activityindicator.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/badge.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/barchart.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/buttons.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/floatingactionbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/floatingactionbutton.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/helperclasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/helperclasses.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/images.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/linechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/linechart.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/listviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/listviews.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/listviewswipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/listviewswipe.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/maps.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/progressbar.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/progresscircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/progresscircle.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/rangeslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/rangeslider.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/slider.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/tabcontainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/tabcontainer.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/textbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/textbox.js -------------------------------------------------------------------------------- /styles/native/js/core/helpers/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/helpers/typography.js -------------------------------------------------------------------------------- /styles/native/js/core/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/manifest.json -------------------------------------------------------------------------------- /styles/native/js/core/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/variables.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/activityindicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/activityindicator.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/animation.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/backgroundimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/backgroundimage.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/badge.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/barchart.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/bottomsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/bottomsheet.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/buttons.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/carousel.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/checkbox.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/colorpicker.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/container.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/datepicker.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/dropdown.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/feedback.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/floatingactionbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/floatingactionbutton.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/images.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/introscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/introscreen.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/layoutgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/layoutgrid.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/linechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/linechart.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/listviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/listviews.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/listviewswipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/listviewswipe.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/maps.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/navigation.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/pagetitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/pagetitle.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/popupmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/popupmenu.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/progressbar.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/progresscircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/progresscircle.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/qrcode.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/rangeslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/rangeslider.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/rating.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/referenceselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/referenceselector.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/safeareaview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/safeareaview.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/slider.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/tabcontainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/tabcontainer.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/textarea.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/textbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/textbox.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/togglebuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/togglebuttons.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/typography.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/videoplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/videoplayer.js -------------------------------------------------------------------------------- /styles/native/js/core/widgets/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/core/widgets/webview.js -------------------------------------------------------------------------------- /styles/native/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/main.js -------------------------------------------------------------------------------- /styles/native/js/ui_resources/atlas_ui_resources/buildingblocks/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/ui_resources/atlas_ui_resources/buildingblocks/card.js -------------------------------------------------------------------------------- /styles/native/js/ui_resources/atlas_ui_resources/buildingblocks/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/ui_resources/atlas_ui_resources/buildingblocks/header.js -------------------------------------------------------------------------------- /styles/native/js/ui_resources/atlas_ui_resources/layouts/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/ui_resources/atlas_ui_resources/layouts/layout.js -------------------------------------------------------------------------------- /styles/native/js/ui_resources/atlas_ui_resources/pagetemplates/inspectiondetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/ui_resources/atlas_ui_resources/pagetemplates/inspectiondetails.js -------------------------------------------------------------------------------- /styles/native/js/ui_resources/atlas_ui_resources/pagetemplates/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/ui_resources/atlas_ui_resources/pagetemplates/maps.js -------------------------------------------------------------------------------- /styles/native/js/ui_resources/atlas_ui_resources/pagetemplates/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/js/ui_resources/atlas_ui_resources/pagetemplates/page.js -------------------------------------------------------------------------------- /styles/native/ts/app/custom-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/app/custom-variables.ts -------------------------------------------------------------------------------- /styles/native/ts/app/custom.ts: -------------------------------------------------------------------------------- 1 | import { } from "../core/variables"; 2 | -------------------------------------------------------------------------------- /styles/native/ts/core/base/flex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/base/flex.ts -------------------------------------------------------------------------------- /styles/native/ts/core/base/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/base/spacing.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/_functions/adjustfont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/_functions/adjustfont.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/_functions/colorwords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/_functions/colorwords.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/_functions/convertcolors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/_functions/convertcolors.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/_functions/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/_functions/device.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/_functions/mergeobjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/_functions/mergeobjects.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/_functions/shadeblendconvert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/_functions/shadeblendconvert.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/activityindicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/activityindicator.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/badge.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/barchart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/barchart.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/buttons.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/floatingactionbutton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/floatingactionbutton.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/helperclasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/helperclasses.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/images.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/linechart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/linechart.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/listviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/listviews.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/listviewswipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/listviewswipe.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/maps.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/progressbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/progressbar.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/progresscircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/progresscircle.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/rangeslider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/rangeslider.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/slider.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/tabcontainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/tabcontainer.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/textbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/textbox.ts -------------------------------------------------------------------------------- /styles/native/ts/core/helpers/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/helpers/typography.ts -------------------------------------------------------------------------------- /styles/native/ts/core/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/manifest.json -------------------------------------------------------------------------------- /styles/native/ts/core/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/variables.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/activityindicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/activityindicator.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/animation.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/backgroundimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/backgroundimage.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/badge.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/barchart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/barchart.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/bottomsheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/bottomsheet.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/buttons.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/carousel.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/checkbox.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/colorpicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/colorpicker.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/container.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/datepicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/datepicker.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/dropdown.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/feedback.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/floatingactionbutton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/floatingactionbutton.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/images.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/introscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/introscreen.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/layoutgrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/layoutgrid.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/linechart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/linechart.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/listviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/listviews.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/listviewswipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/listviewswipe.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/maps.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/navigation.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/pagetitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/pagetitle.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/popupmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/popupmenu.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/progressbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/progressbar.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/progresscircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/progresscircle.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/qrcode.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/rangeslider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/rangeslider.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/rating.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/referenceselector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/referenceselector.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/safeareaview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/safeareaview.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/slider.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/tabcontainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/tabcontainer.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/textarea.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/textbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/textbox.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/togglebuttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/togglebuttons.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/typography.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/videoplayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/videoplayer.ts -------------------------------------------------------------------------------- /styles/native/ts/core/widgets/webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/core/widgets/webview.ts -------------------------------------------------------------------------------- /styles/native/ts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/main.ts -------------------------------------------------------------------------------- /styles/native/ts/types/custom-variables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/types/custom-variables.d.ts -------------------------------------------------------------------------------- /styles/native/ts/types/helperclass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/types/helperclass.d.ts -------------------------------------------------------------------------------- /styles/native/ts/types/rn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/types/rn.d.ts -------------------------------------------------------------------------------- /styles/native/ts/types/variables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/types/variables.d.ts -------------------------------------------------------------------------------- /styles/native/ts/types/widgets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/types/widgets.d.ts -------------------------------------------------------------------------------- /styles/native/ts/ui_resources/atlas_ui_resources/buildingblocks/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/ui_resources/atlas_ui_resources/buildingblocks/card.ts -------------------------------------------------------------------------------- /styles/native/ts/ui_resources/atlas_ui_resources/buildingblocks/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/ui_resources/atlas_ui_resources/buildingblocks/header.ts -------------------------------------------------------------------------------- /styles/native/ts/ui_resources/atlas_ui_resources/layouts/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/ui_resources/atlas_ui_resources/layouts/layout.ts -------------------------------------------------------------------------------- /styles/native/ts/ui_resources/atlas_ui_resources/pagetemplates/inspectiondetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/ui_resources/atlas_ui_resources/pagetemplates/inspectiondetails.ts -------------------------------------------------------------------------------- /styles/native/ts/ui_resources/atlas_ui_resources/pagetemplates/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/ui_resources/atlas_ui_resources/pagetemplates/maps.ts -------------------------------------------------------------------------------- /styles/native/ts/ui_resources/atlas_ui_resources/pagetemplates/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/native/ts/ui_resources/atlas_ui_resources/pagetemplates/page.ts -------------------------------------------------------------------------------- /styles/web/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /styles/web/css/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/css/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /styles/web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/css/main.css -------------------------------------------------------------------------------- /styles/web/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/css/main.css.map -------------------------------------------------------------------------------- /styles/web/sass/app/_custom-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/app/_custom-variables.scss -------------------------------------------------------------------------------- /styles/web/sass/app/_custom.scss: -------------------------------------------------------------------------------- 1 | @import "custom-variables"; 2 | -------------------------------------------------------------------------------- /styles/web/sass/core/_legacy/_mxui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/_legacy/_mxui.scss -------------------------------------------------------------------------------- /styles/web/sass/core/_legacy/bootstrap/_bootstrap-rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/_legacy/bootstrap/_bootstrap-rtl.scss -------------------------------------------------------------------------------- /styles/web/sass/core/_legacy/bootstrap/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/_legacy/bootstrap/_bootstrap.scss -------------------------------------------------------------------------------- /styles/web/sass/core/_legacy/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/_legacy/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /styles/web/sass/core/_legacy/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/_legacy/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /styles/web/sass/core/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/_variables.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/_animation.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/_base.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/_flex.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/_login.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/_reset.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/_spacing.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/mixins/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/mixins/_animations.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/mixins/_buttons.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/mixins/_groupbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/mixins/_groupbox.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/mixins/_layout-spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/mixins/_layout-spacing.scss -------------------------------------------------------------------------------- /styles/web/sass/core/base/mixins/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/base/mixins/_spacing.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_alerts.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_backgrounds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_backgrounds.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_buttons.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_datagrids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_datagrids.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_groupbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_groupbox.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_helperclasses.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_helperclasses.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_images.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_labels.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_listview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_listview.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_navigationbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_navigationbar.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_navigationtree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_navigationtree.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_simplemenubar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_simplemenubar.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_tabcontainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_tabcontainer.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_tables.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_templategrids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_templategrids.scss -------------------------------------------------------------------------------- /styles/web/sass/core/helpers/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/helpers/_typography.scss -------------------------------------------------------------------------------- /styles/web/sass/core/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/manifest.json -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_alerts.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_buttons.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_checkbox.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_datagrids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_datagrids.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_dataview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_dataview.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_datepicker.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_glyphicons.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_grid.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_groupbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_groupbox.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_header.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_inputs.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_labels.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_layoutgrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_layoutgrid.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_listview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_listview.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_modals.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_navigationbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_navigationbar.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_navigationlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_navigationlist.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_navigationtree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_navigationtree.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_popupmenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_popupmenu.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_progress.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_radiobuttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_radiobuttons.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_simplemenubar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_simplemenubar.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_tabcontainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_tabcontainer.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_tables.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_templategrids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_templategrids.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_timeline.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgets/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgets/_typography.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_dijit-widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_dijit-widgets.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_progress-bar-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_progress-bar-theme.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_progress-circle-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_progress-circle-theme.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_range-slider-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_range-slider-theme.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_slider-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_slider-theme.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_star-rating-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_star-rating-theme.scss -------------------------------------------------------------------------------- /styles/web/sass/core/widgetscustom/_switchwidget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/core/widgetscustom/_switchwidget.scss -------------------------------------------------------------------------------- /styles/web/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/main.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_breadcrumb.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_card.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_chat.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_controlgroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_controlgroup.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_formblock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_formblock.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_heroheader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_heroheader.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_master-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_master-detail.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_pageblocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_pageblocks.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_pageheader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_pageheader.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_timeline.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_userprofile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_userprofile.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/buildingblocks/_wizard.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas-phone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas-phone.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas-responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas-responsive.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas-tablet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas-tablet.scss -------------------------------------------------------------------------------- /styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/styles/web/sass/ui_resources/atlas_ui_resources/layouts/_layout-atlas.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendix/Atlas-UI-Framework/HEAD/tsconfig.json --------------------------------------------------------------------------------