* fix(item-sliding): fix item-sliding RTL
fix a bug that options disappear on RTL
* wrong class
* revert back ts changes
* create scss fixes
* correct order of rule set
* Right is right and left is left
unless we use start or end for rtl and ltr right should be placed right
and so does left.
* using multi-dir and ltr mixins
* Currect order on RTL using ltr and rtl specific mixins
* dupplicate the comment to disable PropertySpelling
* feat(svg-background-image): support flipped on rtl
* feat(svg-background-image): add rtl for needed icons
* revert(svg-background-image): no need to flip clear
* fix(svg-background-image): translate to place
* fix(svg-background-image): add support for line and polygon
* fix(menu): rtl fix for menu
* disable PropertySpelling in scss-lint for this special case
* Revert "disable PropertySpelling in scss-lint for this special case"
This reverts commit 87c3302fc2a533e1d926e0ed4ec768b467081a93.
* remove scss changes because of the conflict
* Fix left (default) menu position
* Revert "Fix left (default) menu position"
This reverts commit f657369540ac909d127bb9fb09f632af3a545de5.
* trim down ifs
* remove unnecessary this
* feat(rtl): add translate3d support for directions
* feat(rtl): add transform-origin support for directions
* fix(transform): add missing origins
* fix(transform): when given a percentage, calc on rtl
* fix(transform-origin): be same as before
* fix(translate3d): no double minus
* fix(translate3d): use transform instead of cloning code
* style(scss-lint): remove empty line
* fix(merge): fix bad merge
* refactor(transform-origin): nicer logic
* style(): add eof line
* fix(transform): remove unneeded mixin
* feat(rtl): add transform mixin and str-split function
* Merge remote-tracking branch 'remotes/upstream/rtl-transform' into transform-rtl
# Conflicts:
# src/themes/ionic.mixins.scss
* fix(transform): fix string comparison
* fix(select): make select with no options return undefined when OK is pressed (#10435)
* refactor(select): add early check for alert inputs
fixes#10435
* feat(background-position): add background position support for rtl
* fix(background-position): fix center
* refactor(background-position): make format more robust
* fix(lint): unused import
* feat(platform): enforce direction value
* style(platform): make sure not to change indentation
* refactor(platform): rename PageDirection to DocumentDirection
* refactor(item): replaced item-left with item-start
replaced item-right with item-end
* style(item): fix spacing
* fix(item): add backwards support for left/right in ng-content
* fix(item): deprecated old variables, not breaking change
* feat(rtl): padding mixin
* feat(rtl): change all padding variables to start/end
add support for old variable names
* feat(rtl): replace all padding-side with start/end
* revert(functions): remove mixins
* feat(scss): add padding-horizontal and rtl functions (thanks brandy)
* feat(padding): use padding horizontal mixin everywhere
* feat(padding): use padding horizontal mixin everywhere
* fix(lint): change properties order. tests passing
* fix(sass-functions): reorder functions to avoid warning
* fix(scss): fix variable name
* perf(rtl): add check if need rtl selector
* feat(scss): add full padding function
* feat(scss): add border-radius mixin
* fix(rtl): change border-radius to use mixin
* perf(scss): only override if has something to override
* feat(scss): add margin scss variables for sides
* feat(scss): add margin mixin
* fix(scss): fix wrong support for 2/3 args
* feat(rtl): spread margins/paddings
* feat(rtl): spread margins/paddings
* feat(position): add rtl support for absolute
* fix(rtl): add missing calls
* fix(item): old attributes deprecated support
* revert(changelog): not intended to be changed
* fix(sass-functions): and not &&
* fix(padding): merge + missing padding
* style(): remove newline
* refactor(mixins): move mixins to mixins file
* style(): fix alignment
* fix(item): right padding should not be set
* fix(): incorrect defaults
* feat(scss-lint): disable some side variables
* fix(scss): lint passes
* feat(lint): disabled text-align
* fix(): correct variable name
* fix(fab): missed a comma
* fix(rtl): rtl method incorrect for multiple selectors
* fix(rtl): toolbar bad merge
* fix(rtl): icon-only is in px not em
* fix(rtl): toggle padding
* feat(rtl): correct notation for rtl custom
* Merge branch 'breaking-item' into start-end
# Conflicts:
# src/components/checkbox/checkbox.ios.scss
# src/components/checkbox/checkbox.md.scss
# src/components/checkbox/checkbox.wp.scss
# src/components/item/item.ios.scss
# src/components/item/item.md.scss
# src/components/item/item.wp.scss
# src/components/radio/radio.ios.scss
# src/components/radio/radio.md.scss
# src/components/radio/radio.wp.scss
# src/components/toggle/toggle.ios.scss
# src/components/toggle/toggle.md.scss
# src/components/toggle/toggle.wp.scss
* feat(rtl): optimize bundle result
* feat(float): use new standard
* feat(platform): gotta have direction on html
* fix(scss): add import + change code order
* fix(lint): passes
* fix(scss): fix for deprecated usages
* fix(scss): property use #{}
* fix(rtl): change css specificity, increase bundle size for multidirectional
* fix(scss): mixin manages priority
* fix(scss): select icon
* fix(scss): correct range variable
* fix(lint): unused import
* fix(multi-dir): things that ignore PropertySpelling must be under multi-dir
* fix(multi-dir): things that ignore PropertySpelling must be under multi-dir
* fix(include-rtl): change to app-direction, to be able to set rtl only apps
* fix(rtl): remove incorrect split-pane rtl behavior
* fix(menu): start needs position on rtl
* fix(float): renamed test file, add float mixin
* fix(scss-lint): lint excluded files
* fix(scss): add missing unit
* refactor(scss): change dir to direction, as the correct property name
* fix(app-direction): replace last usage of include-rtl
Closes: #11805#11914
Short description of what this resolves:
Allows our e2e tests to run on a Windows machine
Changes proposed in this pull request:
Normalize paths using path.join()
Add typeRoots to the root tsconfig file
Change the spawnedCommand based on the OS
Fixes: #11551