├── .classpath ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── issue_template.md └── workflows │ └── release.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .project ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.json ├── demo-snippets ├── App_Resources │ └── Android │ │ └── src │ │ └── main │ │ └── res │ │ └── values │ │ └── styles.xml ├── app.scss ├── ng │ ├── activity-indicator │ │ ├── activity-indicator.component.html │ │ ├── activity-indicator.component.ts │ │ └── activity-indicator.module.ts │ ├── bottom-navigation-bar │ │ ├── bottom-navigation-bar.component.html │ │ ├── bottom-navigation-bar.component.ts │ │ ├── bottom-navigation-bar.module.ts │ │ ├── first-tab │ │ │ ├── first-tab.component.html │ │ │ └── first-tab.component.ts │ │ └── third-tab │ │ │ ├── third-tab.component.html │ │ │ └── third-tab.component.ts │ ├── bottom-sheet │ │ ├── bottom-sheet.component.html │ │ ├── bottom-sheet.component.ts │ │ ├── bottom-sheet.module.ts │ │ ├── login-options.component.html │ │ └── login-options.component.ts │ ├── buttons │ │ ├── buttons.component.html │ │ ├── buttons.component.ts │ │ └── buttons.module.ts │ ├── cards │ │ ├── cards.component.html │ │ ├── cards.component.ts │ │ └── cards.module.ts │ ├── install.module.ts │ ├── progress │ │ ├── progress.component.html │ │ ├── progress.component.ts │ │ └── progress.module.ts │ ├── ripple │ │ ├── ripple.component.html │ │ ├── ripple.component.ts │ │ └── ripple.module.ts │ ├── slider │ │ ├── slider.component.html │ │ ├── slider.component.ts │ │ └── slider.module.ts │ ├── tabs │ │ ├── tabs.component.html │ │ ├── tabs.component.ts │ │ └── tabs.module.ts │ └── text-field │ │ ├── text-field.component.html │ │ ├── text-field.component.ts │ │ └── text-field.module.ts ├── package.json ├── postinstall.js ├── preuninstall.js ├── scripts │ └── after-prepare.js ├── svelte │ ├── Buttons.svelte │ └── install.ts ├── vue │ ├── ActivityIndicators.vue │ ├── BottomNavigation.vue │ ├── BottomNavigationBar.vue │ ├── BottomSheet.vue │ ├── BottomSheetInner.vue │ ├── BottomSheetInnerFrame.vue │ ├── BottomSheetInnerKeyboard.vue │ ├── ButtonIssue.vue │ ├── Buttons.vue │ ├── CardViews.vue │ ├── Dialogs.vue │ ├── Mixins.vue │ ├── ProgressBars.vue │ ├── Ripples.vue │ ├── Sliders.vue │ ├── SnackBar.vue │ ├── Speeddial.vue │ ├── Tabs.vue │ ├── TextFields.vue │ ├── TextView.vue │ └── install.ts ├── vue3 │ ├── ActivityIndicators.vue │ ├── BottomNavigation.vue │ ├── BottomNavigationBar.vue │ ├── BottomSheet.vue │ ├── BottomSheetInner.vue │ ├── BottomSheetInnerKeyboard.vue │ ├── ButtonIssue.vue │ ├── Buttons.vue │ ├── CardViews.vue │ ├── Dialogs.vue │ ├── Mixins.vue │ ├── ProgressBars.vue │ ├── Ripples.vue │ ├── Sliders.vue │ ├── SnackBar.vue │ ├── Speeddial.vue │ ├── TextFields.vue │ ├── TextView.vue │ └── install.ts ├── webpack.config.ng.js ├── webpack.config.svelte.js ├── webpack.config.vue.js └── webpack.config.vue3.js ├── docs ├── .nojekyll ├── assets │ ├── hierarchy.js │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── _nativescript-community_ui-material-activityindicator.ActivityIndicator.html │ ├── _nativescript-community_ui-material-bottom-navigation.BottomNavigation.html │ ├── _nativescript-community_ui-material-bottomnavigationbar.BottomNavigationBar.html │ ├── _nativescript-community_ui-material-bottomnavigationbar.BottomNavigationTab.html │ ├── _nativescript-community_ui-material-bottomsheet.ViewWithBottomSheetBase.html │ ├── _nativescript-community_ui-material-button.Button.html │ ├── _nativescript-community_ui-material-cardview.CardView.html │ ├── _nativescript-community_ui-material-core.Themer.html │ ├── _nativescript-community_ui-material-dialogs.AlertDialog.html │ ├── _nativescript-community_ui-material-floatingactionbutton.FloatingActionButton.html │ ├── _nativescript-community_ui-material-progress.Progress.html │ ├── _nativescript-community_ui-material-ripple.Ripple.html │ ├── _nativescript-community_ui-material-slider.Slider.html │ ├── _nativescript-community_ui-material-snackbar.SnackBar.html │ ├── _nativescript-community_ui-material-speedial.SpeedDial.html │ ├── _nativescript-community_ui-material-speedial.SpeedDialButton.html │ ├── _nativescript-community_ui-material-speedial.SpeedDialItem.html │ ├── _nativescript-community_ui-material-speedial.SpeedDialItemBase.html │ ├── _nativescript-community_ui-material-speedial.SpeedDialItemButton.html │ ├── _nativescript-community_ui-material-speedial.SpeedDialItemTitle.html │ ├── _nativescript-community_ui-material-switch.Switch.html │ ├── _nativescript-community_ui-material-tabs.Tabs.html │ ├── _nativescript-community_ui-material-textfield.TextField.html │ └── _nativescript-community_ui-material-textview.TextView.html ├── enums │ ├── _nativescript-community_ui-material-bottomnavigationbar.TitleVisibility.html │ ├── _nativescript-community_ui-material-core.CornerFamily.html │ ├── _nativescript-community_ui-material-snackbar.DismissReasons.html │ └── _nativescript-community_ui-material-snackbar.SnackBarAction.html ├── functions │ ├── _nativescript-community_ui-material-bottomsheet.install.html │ ├── _nativescript-community_ui-material-core.applyMixins.html │ ├── _nativescript-community_ui-material-core.cssProperty.html │ ├── _nativescript-community_ui-material-core.getRippleColor.html │ ├── _nativescript-community_ui-material-core.install.html │ ├── _nativescript-community_ui-material-core.installMixins.html │ ├── _nativescript-community_ui-material-core.mixin.html │ ├── _nativescript-community_ui-material-dialogs.action.html │ ├── _nativescript-community_ui-material-dialogs.alert.html │ ├── _nativescript-community_ui-material-dialogs.confirm.html │ ├── _nativescript-community_ui-material-dialogs.login.html │ ├── _nativescript-community_ui-material-dialogs.prompt.html │ ├── _nativescript-community_ui-material-snackbar.showSnack.html │ ├── _nativescript-community_ui-material-textfield.initTextInputEditText.html │ └── _nativescript-community_ui-material-textview.initTextInputEditText.html ├── hierarchy.html ├── index.html ├── interfaces │ ├── _nativescript-community_ui-material-bottom-navigation.SelectedIndexChangedEventData.html │ ├── _nativescript-community_ui-material-bottomnavigationbar.TabPressedEventData.html │ ├── _nativescript-community_ui-material-bottomnavigationbar.TabReselectedEventData.html │ ├── _nativescript-community_ui-material-bottomnavigationbar.TabSelectedEventData.html │ ├── _nativescript-community_ui-material-bottomsheet.BottomSheetOptions.html │ ├── _nativescript-community_ui-material-core.ShapeProperties.html │ ├── _nativescript-community_ui-material-core.TypographyOptions.html │ ├── _nativescript-community_ui-material-dialogs.LoginOptions.html │ ├── _nativescript-community_ui-material-dialogs.MDCAlertControlerOptions.html │ ├── _nativescript-community_ui-material-dialogs.PromptOptions.html │ └── _nativescript-community_ui-material-snackbar.SnackBarOptions.html ├── media │ └── CHANGELOG.md ├── modules.html ├── modules │ ├── _nativescript-community_ui-material-activityindicator.html │ ├── _nativescript-community_ui-material-bottom-navigation.html │ ├── _nativescript-community_ui-material-bottomnavigationbar.html │ ├── _nativescript-community_ui-material-bottomsheet.html │ ├── _nativescript-community_ui-material-button.html │ ├── _nativescript-community_ui-material-cardview.html │ ├── _nativescript-community_ui-material-core.html │ ├── _nativescript-community_ui-material-dialogs.html │ ├── _nativescript-community_ui-material-floatingactionbutton.html │ ├── _nativescript-community_ui-material-progress.html │ ├── _nativescript-community_ui-material-ripple.html │ ├── _nativescript-community_ui-material-slider.html │ ├── _nativescript-community_ui-material-snackbar.html │ ├── _nativescript-community_ui-material-speedial.html │ ├── _nativescript-community_ui-material-switch.html │ ├── _nativescript-community_ui-material-tabs.html │ ├── _nativescript-community_ui-material-textfield.html │ └── _nativescript-community_ui-material-textview.html ├── types │ ├── _nativescript-community_ui-material-tabs.IOSTabBarItemsAlignment.html │ ├── _nativescript-community_ui-material-textfield.PropType.html │ ├── _nativescript-community_ui-material-textfield.TextFieldProperties.html │ ├── _nativescript-community_ui-material-textview.PropType.html │ └── _nativescript-community_ui-material-textview.TextViewProperties.html └── variables │ ├── _nativescript-community_ui-material-bottom-navigation.TabContentItem.html │ ├── _nativescript-community_ui-material-bottom-navigation.itemsProperty.html │ ├── _nativescript-community_ui-material-bottom-navigation.selectedIndexProperty.html │ ├── _nativescript-community_ui-material-bottom-navigation.tabStripProperty.html │ ├── _nativescript-community_ui-material-core.dynamicElevationOffsetProperty.html │ ├── _nativescript-community_ui-material-core.elevationProperty.html │ ├── _nativescript-community_ui-material-core.rippleColorAlphaProperty.html │ ├── _nativescript-community_ui-material-core.rippleColorProperty.html │ ├── _nativescript-community_ui-material-core.shapeProperty.html │ ├── _nativescript-community_ui-material-core.themer-1.html │ ├── _nativescript-community_ui-material-core.variantProperty.html │ ├── _nativescript-community_ui-material-tabs.itemsProperty.html │ ├── _nativescript-community_ui-material-tabs.selectedIndexProperty.html │ └── _nativescript-community_ui-material-tabs.tabStripProperty.html ├── header.md ├── images ├── demo-activity-indicator.gif ├── demo-bottom-navigation.png ├── demo-bottom-sheet.png ├── demo-button.png ├── demo-cardview.png ├── demo-dialogs.png ├── demo-floatingactionbutton.png ├── demo-progress.gif ├── demo-ripple.gif ├── demo-slider.png ├── demo-snackbar.png ├── demo-speeddial.png ├── demo-tabs.png ├── demo-textfield.png └── demo-textview.png ├── info.md ├── lerna.json ├── package.json ├── packages ├── activityindicator │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── native-api-usage.json │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── ns_material_circular_progress.xml │ │ │ │ └── values │ │ │ │ └── materialcircularprogressstyles.xml │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── bottom-navigation │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── bottomnavigationbar │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── bottomsheet │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── nativescript │ │ │ │ │ └── material │ │ │ │ │ └── bottomsheet │ │ │ │ │ ├── BottomSheetDialog.java │ │ │ │ │ └── BottomSheetDialogFragment.java │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── button │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── native-api-usage.json │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── ns_material_button.xml │ │ │ │ ├── ns_material_button_flat.xml │ │ │ │ ├── ns_material_button_flat_icon.xml │ │ │ │ ├── ns_material_button_icon.xml │ │ │ │ ├── ns_material_button_outline.xml │ │ │ │ ├── ns_material_button_outline_icon.xml │ │ │ │ ├── ns_material_button_text.xml │ │ │ │ └── ns_material_button_text_icon.xml │ │ │ │ └── values │ │ │ │ └── materialbuttonstyles.xml │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── cardview │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── core-tabs │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ └── android │ │ │ ├── AndroidManifest.xml │ │ │ ├── include.gradle │ │ │ └── java │ │ │ └── com │ │ │ └── nativescript │ │ │ └── material │ │ │ └── core │ │ │ ├── BottomNavigationBar.java │ │ │ ├── TabItemSpec.java │ │ │ ├── TabStrip.java │ │ │ └── TabsBar.java │ └── tsconfig.json ├── core │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── AndroidManifest.xml │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── nativescript │ │ │ │ │ └── material │ │ │ │ │ └── core │ │ │ │ │ └── Utils.java │ │ │ ├── native-api-usage.json │ │ │ └── res │ │ │ │ └── layout │ │ │ │ └── ns_material_page.xml │ │ └── ios │ │ │ └── Podfile │ ├── tsconfig.hooks.json │ └── tsconfig.json ├── dialogs │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── native-api-usage.json │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── dialogsstyle.xml │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── floatingactionbutton │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── progress │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── native-api-usage.json │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── ns_material_linear_progress.xml │ │ │ │ └── values │ │ │ │ └── materialprogressstyles.xml │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── ripple │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── slider │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── snackbar │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── nativescript │ │ │ │ │ └── material │ │ │ │ │ └── snackbar │ │ │ │ │ └── SnackCallback.java │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── speeddial │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── tsconfig.json ├── switch │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── tabs │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── native-api-usage.json │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json ├── textfield │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── nativescript │ │ │ │ │ └── material │ │ │ │ │ └── textfield │ │ │ │ │ └── TextInputEditText.java │ │ │ ├── native-api-usage.json │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── ns_material_text_field.xml │ │ │ │ ├── ns_material_text_field_filled.xml │ │ │ │ └── ns_material_text_field_outline.xml │ │ │ │ └── values │ │ │ │ └── textfieldstyles.xml │ │ └── ios │ │ │ └── Podfile │ └── tsconfig.json └── textview │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── platforms │ ├── android │ │ ├── include.gradle │ │ ├── java │ │ │ └── com │ │ │ │ └── nativescript │ │ │ │ └── material │ │ │ │ └── textview │ │ │ │ └── TextViewInputEditText.java │ │ ├── native-api-usage.json │ │ └── res │ │ │ ├── layout │ │ │ ├── ns_material_text_view.xml │ │ │ ├── ns_material_text_view_filled.xml │ │ │ └── ns_material_text_view_outline.xml │ │ │ └── values │ │ │ └── textviewstyles.xml │ └── ios │ │ └── Podfile │ └── tsconfig.json ├── pnpm-workspace.yaml ├── references.d.ts ├── schema └── tns.xsd ├── src ├── activityindicator │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── index-common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ └── vue │ │ └── index.ts ├── appbar │ ├── angular │ │ ├── app-bar.ts │ │ ├── appbar.directive.ts │ │ ├── material-components.module.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── references.d.ts │ │ └── tsconfig.json │ ├── appbar-common.ts │ ├── appbar.d.ts │ └── appbar.ios.ts ├── bottom-navigation │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── react │ │ └── index.ts │ └── vue │ │ ├── component.ts │ │ └── index.ts ├── bottomnavigationbar │ ├── angular │ │ ├── directives.ts │ │ ├── index.ts │ │ ├── module.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── bottomnavigationbar-common.ts │ ├── bottomnavigationbar.android.ts │ ├── bottomnavigationbar.d.ts │ ├── bottomnavigationbar.ios.ts │ └── vue │ │ └── index.ts ├── bottomsheet │ ├── angular │ │ ├── bottomsheet.module.ts │ │ ├── bottomsheet.service.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── bottomsheet-common.ts │ ├── bottomsheet.android.ts │ ├── bottomsheet.d.ts │ ├── bottomsheet.ios.ts │ ├── svelte │ │ └── index.ts │ ├── vue │ │ └── index.ts │ └── vue3 │ │ └── index.ts ├── button │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── button-common.ts │ ├── button.android.ts │ ├── button.d.ts │ ├── button.ios.ts │ ├── svelte │ │ └── index.ts │ └── vue │ │ └── index.ts ├── cardview │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── cardview-common.ts │ ├── cardview.android.ts │ ├── cardview.d.ts │ ├── cardview.ios.ts │ └── vue │ │ └── index.ts ├── core-tabs │ ├── react │ │ └── index.ts │ ├── tab-content-item │ │ ├── index.android.ts │ │ ├── index.d.ts │ │ ├── index.ios.ts │ │ └── tab-content-item-common.ts │ ├── tab-navigation-base │ │ └── index.ts │ ├── tab-navigation │ │ ├── index-common.ts │ │ ├── index.android.ts │ │ ├── index.d.ts │ │ └── index.ios.ts │ ├── tab-strip-item │ │ └── index.ts │ └── tab-strip │ │ └── index.ts ├── core │ ├── android │ │ └── utils.ts │ ├── cssproperties.ts │ ├── index.android.ts │ ├── index.common.ts │ ├── index.d.ts │ ├── index.ios.ts │ └── textbase │ │ └── cssproperties.ts ├── dialogs │ ├── dialogs-common.ts │ ├── dialogs.android.ts │ ├── dialogs.d.ts │ └── dialogs.ios.ts ├── floatingactionbutton │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── floatingactionbutton-common.ts │ ├── floatingactionbutton.android.ts │ ├── floatingactionbutton.d.ts │ ├── floatingactionbutton.ios.ts │ └── vue │ │ └── index.ts ├── page │ ├── page.android.ts │ ├── page.d.ts │ └── page.ios.ts ├── progress │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── progress-common.ts │ ├── progress.android.ts │ ├── progress.d.ts │ ├── progress.ios.ts │ └── vue │ │ └── index.ts ├── references.d.ts ├── ripple │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── ripple-common.ts │ ├── ripple.android.ts │ ├── ripple.d.ts │ ├── ripple.ios.ts │ └── vue │ │ └── index.ts ├── slider │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── cssproperties.ts │ ├── slider-common.ts │ ├── slider.android.ts │ ├── slider.d.ts │ ├── slider.ios.ts │ └── vue │ │ └── index.ts ├── snackbar │ ├── snackbar-common.ts │ ├── snackbar.android.ts │ ├── snackbar.d.ts │ └── snackbar.ios.ts ├── speeddial │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── index.ts │ └── vue │ │ └── index.ts ├── switch │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── index-common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ └── vue │ │ └── index.ts ├── tabs │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── react │ │ └── index.ts │ └── vue │ │ ├── component.ts │ │ └── index.ts ├── textfield │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── textvalue-accessor.ts │ │ └── tsconfig.json │ ├── textfield.android.ts │ ├── textfield.common.ts │ ├── textfield.d.ts │ ├── textfield.ios.old │ ├── textfield.ios.ts │ └── vue │ │ └── index.ts ├── textview │ ├── angular │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── textvalue-accessor.ts │ │ └── tsconfig.json │ ├── textview.android.ts │ ├── textview.common.ts │ ├── textview.d.ts │ ├── textview.ios.ts │ └── vue │ │ └── index.ts └── typings │ ├── MaterialComponents.ios.d.ts │ ├── MaterialTextField.ios.d.ts │ ├── extensions.android.d.ts │ ├── mdc.android.d.ts │ └── mdc.ios.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.vue3.json └── yarn.lock /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.classpath -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: './tools/.eslintrc.js' 3 | }; 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [farfromrefug] 2 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | plugin/ 4 | docs/ 5 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.project -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/config.json -------------------------------------------------------------------------------- /demo-snippets/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo-snippets/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/app.scss -------------------------------------------------------------------------------- /demo-snippets/ng/activity-indicator/activity-indicator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/activity-indicator/activity-indicator.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/activity-indicator/activity-indicator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/activity-indicator/activity-indicator.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/activity-indicator/activity-indicator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/activity-indicator/activity-indicator.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/first-tab/first-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/first-tab/first-tab.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/first-tab/first-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/first-tab/first-tab.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/third-tab/third-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/third-tab/third-tab.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-navigation-bar/third-tab/third-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-navigation-bar/third-tab/third-tab.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-sheet/bottom-sheet.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-sheet/bottom-sheet.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-sheet/bottom-sheet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-sheet/bottom-sheet.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-sheet/bottom-sheet.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-sheet/bottom-sheet.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-sheet/login-options.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-sheet/login-options.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/bottom-sheet/login-options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/bottom-sheet/login-options.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/buttons/buttons.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/buttons/buttons.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/buttons/buttons.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/buttons/buttons.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/buttons/buttons.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/buttons/buttons.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/cards/cards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/cards/cards.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/cards/cards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/cards/cards.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/cards/cards.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/cards/cards.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/install.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/install.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/progress/progress.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/progress/progress.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/progress/progress.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/progress/progress.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/progress/progress.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/progress/progress.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/ripple/ripple.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/ripple/ripple.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/ripple/ripple.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/ripple/ripple.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/ripple/ripple.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/ripple/ripple.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/slider/slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/slider/slider.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/slider/slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/slider/slider.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/slider/slider.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/slider/slider.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/tabs/tabs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/tabs/tabs.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/tabs/tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/tabs/tabs.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/tabs/tabs.module.ts -------------------------------------------------------------------------------- /demo-snippets/ng/text-field/text-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/text-field/text-field.component.html -------------------------------------------------------------------------------- /demo-snippets/ng/text-field/text-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/text-field/text-field.component.ts -------------------------------------------------------------------------------- /demo-snippets/ng/text-field/text-field.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/ng/text-field/text-field.module.ts -------------------------------------------------------------------------------- /demo-snippets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/package.json -------------------------------------------------------------------------------- /demo-snippets/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/postinstall.js -------------------------------------------------------------------------------- /demo-snippets/preuninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/preuninstall.js -------------------------------------------------------------------------------- /demo-snippets/scripts/after-prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/scripts/after-prepare.js -------------------------------------------------------------------------------- /demo-snippets/svelte/Buttons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/svelte/Buttons.svelte -------------------------------------------------------------------------------- /demo-snippets/svelte/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/svelte/install.ts -------------------------------------------------------------------------------- /demo-snippets/vue/ActivityIndicators.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/ActivityIndicators.vue -------------------------------------------------------------------------------- /demo-snippets/vue/BottomNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/BottomNavigation.vue -------------------------------------------------------------------------------- /demo-snippets/vue/BottomNavigationBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/BottomNavigationBar.vue -------------------------------------------------------------------------------- /demo-snippets/vue/BottomSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/BottomSheet.vue -------------------------------------------------------------------------------- /demo-snippets/vue/BottomSheetInner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/BottomSheetInner.vue -------------------------------------------------------------------------------- /demo-snippets/vue/BottomSheetInnerFrame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/BottomSheetInnerFrame.vue -------------------------------------------------------------------------------- /demo-snippets/vue/BottomSheetInnerKeyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/BottomSheetInnerKeyboard.vue -------------------------------------------------------------------------------- /demo-snippets/vue/ButtonIssue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/ButtonIssue.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Buttons.vue -------------------------------------------------------------------------------- /demo-snippets/vue/CardViews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/CardViews.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Dialogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Dialogs.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Mixins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Mixins.vue -------------------------------------------------------------------------------- /demo-snippets/vue/ProgressBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/ProgressBars.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Ripples.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Ripples.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Sliders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Sliders.vue -------------------------------------------------------------------------------- /demo-snippets/vue/SnackBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/SnackBar.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Speeddial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Speeddial.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/Tabs.vue -------------------------------------------------------------------------------- /demo-snippets/vue/TextFields.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/TextFields.vue -------------------------------------------------------------------------------- /demo-snippets/vue/TextView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/TextView.vue -------------------------------------------------------------------------------- /demo-snippets/vue/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue/install.ts -------------------------------------------------------------------------------- /demo-snippets/vue3/ActivityIndicators.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/ActivityIndicators.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/BottomNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/BottomNavigation.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/BottomNavigationBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/BottomNavigationBar.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/BottomSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/BottomSheet.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/BottomSheetInner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/BottomSheetInner.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/BottomSheetInnerKeyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/BottomSheetInnerKeyboard.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/ButtonIssue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/ButtonIssue.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/Buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/Buttons.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/CardViews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/CardViews.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/Dialogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/Dialogs.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/Mixins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/Mixins.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/ProgressBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/ProgressBars.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/Ripples.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/Ripples.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/Sliders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/Sliders.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/SnackBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/SnackBar.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/Speeddial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/Speeddial.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/TextFields.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/TextFields.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/TextView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/TextView.vue -------------------------------------------------------------------------------- /demo-snippets/vue3/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/vue3/install.ts -------------------------------------------------------------------------------- /demo-snippets/webpack.config.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/webpack.config.ng.js -------------------------------------------------------------------------------- /demo-snippets/webpack.config.svelte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/webpack.config.svelte.js -------------------------------------------------------------------------------- /demo-snippets/webpack.config.vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/webpack.config.vue.js -------------------------------------------------------------------------------- /demo-snippets/webpack.config.vue3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/demo-snippets/webpack.config.vue3.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/hierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/hierarchy.js -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-activityindicator.ActivityIndicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-activityindicator.ActivityIndicator.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-bottom-navigation.BottomNavigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-bottom-navigation.BottomNavigation.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-bottomnavigationbar.BottomNavigationBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-bottomnavigationbar.BottomNavigationBar.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-bottomnavigationbar.BottomNavigationTab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-bottomnavigationbar.BottomNavigationTab.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-bottomsheet.ViewWithBottomSheetBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-bottomsheet.ViewWithBottomSheetBase.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-button.Button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-button.Button.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-cardview.CardView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-cardview.CardView.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-core.Themer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-core.Themer.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-dialogs.AlertDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-dialogs.AlertDialog.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-floatingactionbutton.FloatingActionButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-floatingactionbutton.FloatingActionButton.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-progress.Progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-progress.Progress.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-ripple.Ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-ripple.Ripple.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-slider.Slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-slider.Slider.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-snackbar.SnackBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-snackbar.SnackBar.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-speedial.SpeedDial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-speedial.SpeedDial.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-speedial.SpeedDialButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-speedial.SpeedDialButton.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItem.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItemBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItemBase.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItemButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItemButton.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItemTitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-speedial.SpeedDialItemTitle.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-switch.Switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-switch.Switch.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-tabs.Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-tabs.Tabs.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-textfield.TextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-textfield.TextField.html -------------------------------------------------------------------------------- /docs/classes/_nativescript-community_ui-material-textview.TextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/classes/_nativescript-community_ui-material-textview.TextView.html -------------------------------------------------------------------------------- /docs/enums/_nativescript-community_ui-material-bottomnavigationbar.TitleVisibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/enums/_nativescript-community_ui-material-bottomnavigationbar.TitleVisibility.html -------------------------------------------------------------------------------- /docs/enums/_nativescript-community_ui-material-core.CornerFamily.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/enums/_nativescript-community_ui-material-core.CornerFamily.html -------------------------------------------------------------------------------- /docs/enums/_nativescript-community_ui-material-snackbar.DismissReasons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/enums/_nativescript-community_ui-material-snackbar.DismissReasons.html -------------------------------------------------------------------------------- /docs/enums/_nativescript-community_ui-material-snackbar.SnackBarAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/enums/_nativescript-community_ui-material-snackbar.SnackBarAction.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-bottomsheet.install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-bottomsheet.install.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-core.applyMixins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-core.applyMixins.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-core.cssProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-core.cssProperty.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-core.getRippleColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-core.getRippleColor.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-core.install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-core.install.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-core.installMixins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-core.installMixins.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-core.mixin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-core.mixin.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-dialogs.action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-dialogs.action.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-dialogs.alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-dialogs.alert.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-dialogs.confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-dialogs.confirm.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-dialogs.login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-dialogs.login.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-dialogs.prompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-dialogs.prompt.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-snackbar.showSnack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-snackbar.showSnack.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-textfield.initTextInputEditText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-textfield.initTextInputEditText.html -------------------------------------------------------------------------------- /docs/functions/_nativescript-community_ui-material-textview.initTextInputEditText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/functions/_nativescript-community_ui-material-textview.initTextInputEditText.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-bottom-navigation.SelectedIndexChangedEventData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-bottom-navigation.SelectedIndexChangedEventData.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-bottomnavigationbar.TabPressedEventData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-bottomnavigationbar.TabPressedEventData.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-bottomnavigationbar.TabReselectedEventData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-bottomnavigationbar.TabReselectedEventData.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-bottomnavigationbar.TabSelectedEventData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-bottomnavigationbar.TabSelectedEventData.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-bottomsheet.BottomSheetOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-bottomsheet.BottomSheetOptions.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-core.ShapeProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-core.ShapeProperties.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-core.TypographyOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-core.TypographyOptions.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-dialogs.LoginOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-dialogs.LoginOptions.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-dialogs.MDCAlertControlerOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-dialogs.MDCAlertControlerOptions.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-dialogs.PromptOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-dialogs.PromptOptions.html -------------------------------------------------------------------------------- /docs/interfaces/_nativescript-community_ui-material-snackbar.SnackBarOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/interfaces/_nativescript-community_ui-material-snackbar.SnackBarOptions.html -------------------------------------------------------------------------------- /docs/media/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/media/CHANGELOG.md -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-activityindicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-activityindicator.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-bottom-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-bottom-navigation.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-bottomnavigationbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-bottomnavigationbar.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-bottomsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-bottomsheet.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-button.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-cardview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-cardview.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-core.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-dialogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-dialogs.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-floatingactionbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-floatingactionbutton.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-progress.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-ripple.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-slider.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-snackbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-snackbar.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-speedial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-speedial.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-switch.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-tabs.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-textfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-textfield.html -------------------------------------------------------------------------------- /docs/modules/_nativescript-community_ui-material-textview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/modules/_nativescript-community_ui-material-textview.html -------------------------------------------------------------------------------- /docs/types/_nativescript-community_ui-material-tabs.IOSTabBarItemsAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/types/_nativescript-community_ui-material-tabs.IOSTabBarItemsAlignment.html -------------------------------------------------------------------------------- /docs/types/_nativescript-community_ui-material-textfield.PropType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/types/_nativescript-community_ui-material-textfield.PropType.html -------------------------------------------------------------------------------- /docs/types/_nativescript-community_ui-material-textfield.TextFieldProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/types/_nativescript-community_ui-material-textfield.TextFieldProperties.html -------------------------------------------------------------------------------- /docs/types/_nativescript-community_ui-material-textview.PropType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/types/_nativescript-community_ui-material-textview.PropType.html -------------------------------------------------------------------------------- /docs/types/_nativescript-community_ui-material-textview.TextViewProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/types/_nativescript-community_ui-material-textview.TextViewProperties.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-bottom-navigation.TabContentItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-bottom-navigation.TabContentItem.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-bottom-navigation.itemsProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-bottom-navigation.itemsProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-bottom-navigation.selectedIndexProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-bottom-navigation.selectedIndexProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-bottom-navigation.tabStripProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-bottom-navigation.tabStripProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.dynamicElevationOffsetProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.dynamicElevationOffsetProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.elevationProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.elevationProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.rippleColorAlphaProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.rippleColorAlphaProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.rippleColorProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.rippleColorProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.shapeProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.shapeProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.themer-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.themer-1.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-core.variantProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-core.variantProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-tabs.itemsProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-tabs.itemsProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-tabs.selectedIndexProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-tabs.selectedIndexProperty.html -------------------------------------------------------------------------------- /docs/variables/_nativescript-community_ui-material-tabs.tabStripProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/docs/variables/_nativescript-community_ui-material-tabs.tabStripProperty.html -------------------------------------------------------------------------------- /header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/header.md -------------------------------------------------------------------------------- /images/demo-activity-indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-activity-indicator.gif -------------------------------------------------------------------------------- /images/demo-bottom-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-bottom-navigation.png -------------------------------------------------------------------------------- /images/demo-bottom-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-bottom-sheet.png -------------------------------------------------------------------------------- /images/demo-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-button.png -------------------------------------------------------------------------------- /images/demo-cardview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-cardview.png -------------------------------------------------------------------------------- /images/demo-dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-dialogs.png -------------------------------------------------------------------------------- /images/demo-floatingactionbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-floatingactionbutton.png -------------------------------------------------------------------------------- /images/demo-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-progress.gif -------------------------------------------------------------------------------- /images/demo-ripple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-ripple.gif -------------------------------------------------------------------------------- /images/demo-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-slider.png -------------------------------------------------------------------------------- /images/demo-snackbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-snackbar.png -------------------------------------------------------------------------------- /images/demo-speeddial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-speeddial.png -------------------------------------------------------------------------------- /images/demo-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-tabs.png -------------------------------------------------------------------------------- /images/demo-textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-textfield.png -------------------------------------------------------------------------------- /images/demo-textview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/images/demo-textview.png -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/info.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/package.json -------------------------------------------------------------------------------- /packages/activityindicator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/.npmignore -------------------------------------------------------------------------------- /packages/activityindicator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/CHANGELOG.md -------------------------------------------------------------------------------- /packages/activityindicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/README.md -------------------------------------------------------------------------------- /packages/activityindicator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/package.json -------------------------------------------------------------------------------- /packages/activityindicator/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/activityindicator/platforms/android/res/layout/ns_material_circular_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/platforms/android/res/layout/ns_material_circular_progress.xml -------------------------------------------------------------------------------- /packages/activityindicator/platforms/android/res/values/materialcircularprogressstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/platforms/android/res/values/materialcircularprogressstyles.xml -------------------------------------------------------------------------------- /packages/activityindicator/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/ActivityIndicator' -------------------------------------------------------------------------------- /packages/activityindicator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/activityindicator/tsconfig.json -------------------------------------------------------------------------------- /packages/bottom-navigation/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottom-navigation/.npmignore -------------------------------------------------------------------------------- /packages/bottom-navigation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottom-navigation/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bottom-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottom-navigation/README.md -------------------------------------------------------------------------------- /packages/bottom-navigation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottom-navigation/package.json -------------------------------------------------------------------------------- /packages/bottom-navigation/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/BottomNavigation+Theming' -------------------------------------------------------------------------------- /packages/bottom-navigation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottom-navigation/tsconfig.json -------------------------------------------------------------------------------- /packages/bottomnavigationbar/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomnavigationbar/.npmignore -------------------------------------------------------------------------------- /packages/bottomnavigationbar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomnavigationbar/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bottomnavigationbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomnavigationbar/README.md -------------------------------------------------------------------------------- /packages/bottomnavigationbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomnavigationbar/package.json -------------------------------------------------------------------------------- /packages/bottomnavigationbar/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/BottomNavigation+Theming' -------------------------------------------------------------------------------- /packages/bottomnavigationbar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomnavigationbar/tsconfig.json -------------------------------------------------------------------------------- /packages/bottomsheet/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/.npmignore -------------------------------------------------------------------------------- /packages/bottomsheet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bottomsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/README.md -------------------------------------------------------------------------------- /packages/bottomsheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/package.json -------------------------------------------------------------------------------- /packages/bottomsheet/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/bottomsheet/platforms/android/java/com/nativescript/material/bottomsheet/BottomSheetDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/platforms/android/java/com/nativescript/material/bottomsheet/BottomSheetDialog.java -------------------------------------------------------------------------------- /packages/bottomsheet/platforms/android/java/com/nativescript/material/bottomsheet/BottomSheetDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/platforms/android/java/com/nativescript/material/bottomsheet/BottomSheetDialogFragment.java -------------------------------------------------------------------------------- /packages/bottomsheet/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/bottomsheet/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/BottomSheet+ShapeThemer' 2 | -------------------------------------------------------------------------------- /packages/bottomsheet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/bottomsheet/tsconfig.json -------------------------------------------------------------------------------- /packages/button/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/.npmignore -------------------------------------------------------------------------------- /packages/button/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/CHANGELOG.md -------------------------------------------------------------------------------- /packages/button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/README.md -------------------------------------------------------------------------------- /packages/button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/package.json -------------------------------------------------------------------------------- /packages/button/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/button/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_flat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_flat.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_flat_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_flat_icon.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_icon.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_outline.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_outline_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_outline_icon.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_text.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/layout/ns_material_button_text_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/layout/ns_material_button_text_icon.xml -------------------------------------------------------------------------------- /packages/button/platforms/android/res/values/materialbuttonstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/platforms/android/res/values/materialbuttonstyles.xml -------------------------------------------------------------------------------- /packages/button/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Buttons+Theming' -------------------------------------------------------------------------------- /packages/button/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/button/tsconfig.json -------------------------------------------------------------------------------- /packages/cardview/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/cardview/.npmignore -------------------------------------------------------------------------------- /packages/cardview/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/cardview/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cardview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/cardview/README.md -------------------------------------------------------------------------------- /packages/cardview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/cardview/package.json -------------------------------------------------------------------------------- /packages/cardview/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/cardview/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/cardview/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Cards+Theming' 2 | -------------------------------------------------------------------------------- /packages/cardview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/cardview/tsconfig.json -------------------------------------------------------------------------------- /packages/core-tabs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/.npmignore -------------------------------------------------------------------------------- /packages/core-tabs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core-tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/README.md -------------------------------------------------------------------------------- /packages/core-tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/package.json -------------------------------------------------------------------------------- /packages/core-tabs/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/core-tabs/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/core-tabs/platforms/android/java/com/nativescript/material/core/BottomNavigationBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/platforms/android/java/com/nativescript/material/core/BottomNavigationBar.java -------------------------------------------------------------------------------- /packages/core-tabs/platforms/android/java/com/nativescript/material/core/TabItemSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/platforms/android/java/com/nativescript/material/core/TabItemSpec.java -------------------------------------------------------------------------------- /packages/core-tabs/platforms/android/java/com/nativescript/material/core/TabStrip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/platforms/android/java/com/nativescript/material/core/TabStrip.java -------------------------------------------------------------------------------- /packages/core-tabs/platforms/android/java/com/nativescript/material/core/TabsBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/platforms/android/java/com/nativescript/material/core/TabsBar.java -------------------------------------------------------------------------------- /packages/core-tabs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core-tabs/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/.npmignore -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/core/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/core/platforms/android/java/com/nativescript/material/core/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/platforms/android/java/com/nativescript/material/core/Utils.java -------------------------------------------------------------------------------- /packages/core/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/core/platforms/android/res/layout/ns_material_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/platforms/android/res/layout/ns_material_page.xml -------------------------------------------------------------------------------- /packages/core/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/core/tsconfig.hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/tsconfig.hooks.json -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/dialogs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/.npmignore -------------------------------------------------------------------------------- /packages/dialogs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dialogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/README.md -------------------------------------------------------------------------------- /packages/dialogs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/package.json -------------------------------------------------------------------------------- /packages/dialogs/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/dialogs/platforms/android/res/values/dialogsstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/platforms/android/res/values/dialogsstyle.xml -------------------------------------------------------------------------------- /packages/dialogs/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Dialogs+Theming' -------------------------------------------------------------------------------- /packages/dialogs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/dialogs/tsconfig.json -------------------------------------------------------------------------------- /packages/floatingactionbutton/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/floatingactionbutton/.npmignore -------------------------------------------------------------------------------- /packages/floatingactionbutton/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/floatingactionbutton/CHANGELOG.md -------------------------------------------------------------------------------- /packages/floatingactionbutton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/floatingactionbutton/README.md -------------------------------------------------------------------------------- /packages/floatingactionbutton/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/floatingactionbutton/package.json -------------------------------------------------------------------------------- /packages/floatingactionbutton/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/floatingactionbutton/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/floatingactionbutton/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Buttons+Theming' -------------------------------------------------------------------------------- /packages/floatingactionbutton/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/floatingactionbutton/tsconfig.json -------------------------------------------------------------------------------- /packages/progress/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/.npmignore -------------------------------------------------------------------------------- /packages/progress/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/CHANGELOG.md -------------------------------------------------------------------------------- /packages/progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/README.md -------------------------------------------------------------------------------- /packages/progress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/package.json -------------------------------------------------------------------------------- /packages/progress/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/progress/platforms/android/res/layout/ns_material_linear_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/platforms/android/res/layout/ns_material_linear_progress.xml -------------------------------------------------------------------------------- /packages/progress/platforms/android/res/values/materialprogressstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/platforms/android/res/values/materialprogressstyles.xml -------------------------------------------------------------------------------- /packages/progress/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/ProgressView+Theming' 2 | -------------------------------------------------------------------------------- /packages/progress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/progress/tsconfig.json -------------------------------------------------------------------------------- /packages/ripple/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/ripple/.npmignore -------------------------------------------------------------------------------- /packages/ripple/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/ripple/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ripple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/ripple/README.md -------------------------------------------------------------------------------- /packages/ripple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/ripple/package.json -------------------------------------------------------------------------------- /packages/ripple/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/ripple/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/ripple/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Ripple' -------------------------------------------------------------------------------- /packages/ripple/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/ripple/tsconfig.json -------------------------------------------------------------------------------- /packages/slider/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/slider/.npmignore -------------------------------------------------------------------------------- /packages/slider/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/slider/CHANGELOG.md -------------------------------------------------------------------------------- /packages/slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/slider/README.md -------------------------------------------------------------------------------- /packages/slider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/slider/package.json -------------------------------------------------------------------------------- /packages/slider/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/slider/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/slider/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Slider+ColorThemer' -------------------------------------------------------------------------------- /packages/slider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/slider/tsconfig.json -------------------------------------------------------------------------------- /packages/snackbar/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/.npmignore -------------------------------------------------------------------------------- /packages/snackbar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/CHANGELOG.md -------------------------------------------------------------------------------- /packages/snackbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/README.md -------------------------------------------------------------------------------- /packages/snackbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/package.json -------------------------------------------------------------------------------- /packages/snackbar/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/snackbar/platforms/android/java/com/nativescript/material/snackbar/SnackCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/platforms/android/java/com/nativescript/material/snackbar/SnackCallback.java -------------------------------------------------------------------------------- /packages/snackbar/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/snackbar/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/Snackbar' -------------------------------------------------------------------------------- /packages/snackbar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/snackbar/tsconfig.json -------------------------------------------------------------------------------- /packages/speeddial/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/speeddial/.npmignore -------------------------------------------------------------------------------- /packages/speeddial/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/speeddial/CHANGELOG.md -------------------------------------------------------------------------------- /packages/speeddial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/speeddial/README.md -------------------------------------------------------------------------------- /packages/speeddial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/speeddial/package.json -------------------------------------------------------------------------------- /packages/speeddial/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/speeddial/tsconfig.json -------------------------------------------------------------------------------- /packages/switch/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/switch/.npmignore -------------------------------------------------------------------------------- /packages/switch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/switch/CHANGELOG.md -------------------------------------------------------------------------------- /packages/switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/switch/README.md -------------------------------------------------------------------------------- /packages/switch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/switch/package.json -------------------------------------------------------------------------------- /packages/switch/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/switch/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/switch/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MaterialComponents/ProgressView+Theming' 2 | -------------------------------------------------------------------------------- /packages/switch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/switch/tsconfig.json -------------------------------------------------------------------------------- /packages/tabs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/.npmignore -------------------------------------------------------------------------------- /packages/tabs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/README.md -------------------------------------------------------------------------------- /packages/tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/package.json -------------------------------------------------------------------------------- /packages/tabs/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/tabs/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/tabs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/tabs/tsconfig.json -------------------------------------------------------------------------------- /packages/textfield/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/.npmignore -------------------------------------------------------------------------------- /packages/textfield/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/CHANGELOG.md -------------------------------------------------------------------------------- /packages/textfield/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/README.md -------------------------------------------------------------------------------- /packages/textfield/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/package.json -------------------------------------------------------------------------------- /packages/textfield/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/textfield/platforms/android/java/com/nativescript/material/textfield/TextInputEditText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/java/com/nativescript/material/textfield/TextInputEditText.java -------------------------------------------------------------------------------- /packages/textfield/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/textfield/platforms/android/res/layout/ns_material_text_field.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/res/layout/ns_material_text_field.xml -------------------------------------------------------------------------------- /packages/textfield/platforms/android/res/layout/ns_material_text_field_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/res/layout/ns_material_text_field_filled.xml -------------------------------------------------------------------------------- /packages/textfield/platforms/android/res/layout/ns_material_text_field_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/res/layout/ns_material_text_field_outline.xml -------------------------------------------------------------------------------- /packages/textfield/platforms/android/res/values/textfieldstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/android/res/values/textfieldstyles.xml -------------------------------------------------------------------------------- /packages/textfield/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/textfield/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textfield/tsconfig.json -------------------------------------------------------------------------------- /packages/textview/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/.npmignore -------------------------------------------------------------------------------- /packages/textview/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/CHANGELOG.md -------------------------------------------------------------------------------- /packages/textview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/README.md -------------------------------------------------------------------------------- /packages/textview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/package.json -------------------------------------------------------------------------------- /packages/textview/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/textview/platforms/android/java/com/nativescript/material/textview/TextViewInputEditText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/java/com/nativescript/material/textview/TextViewInputEditText.java -------------------------------------------------------------------------------- /packages/textview/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/textview/platforms/android/res/layout/ns_material_text_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/res/layout/ns_material_text_view.xml -------------------------------------------------------------------------------- /packages/textview/platforms/android/res/layout/ns_material_text_view_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/res/layout/ns_material_text_view_filled.xml -------------------------------------------------------------------------------- /packages/textview/platforms/android/res/layout/ns_material_text_view_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/res/layout/ns_material_text_view_outline.xml -------------------------------------------------------------------------------- /packages/textview/platforms/android/res/values/textviewstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/android/res/values/textviewstyles.xml -------------------------------------------------------------------------------- /packages/textview/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/textview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/packages/textview/tsconfig.json -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schema/tns.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/schema/tns.xsd -------------------------------------------------------------------------------- /src/activityindicator/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/angular/index.ts -------------------------------------------------------------------------------- /src/activityindicator/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/angular/ng-package.json -------------------------------------------------------------------------------- /src/activityindicator/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/angular/package.json -------------------------------------------------------------------------------- /src/activityindicator/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/angular/tsconfig.json -------------------------------------------------------------------------------- /src/activityindicator/index-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/index-common.ts -------------------------------------------------------------------------------- /src/activityindicator/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/index.android.ts -------------------------------------------------------------------------------- /src/activityindicator/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/index.d.ts -------------------------------------------------------------------------------- /src/activityindicator/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/index.ios.ts -------------------------------------------------------------------------------- /src/activityindicator/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/activityindicator/vue/index.ts -------------------------------------------------------------------------------- /src/appbar/angular/app-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/app-bar.ts -------------------------------------------------------------------------------- /src/appbar/angular/appbar.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/appbar.directive.ts -------------------------------------------------------------------------------- /src/appbar/angular/material-components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/material-components.module.ts -------------------------------------------------------------------------------- /src/appbar/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/ng-package.json -------------------------------------------------------------------------------- /src/appbar/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/package.json -------------------------------------------------------------------------------- /src/appbar/angular/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/references.d.ts -------------------------------------------------------------------------------- /src/appbar/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/angular/tsconfig.json -------------------------------------------------------------------------------- /src/appbar/appbar-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/appbar-common.ts -------------------------------------------------------------------------------- /src/appbar/appbar.d.ts: -------------------------------------------------------------------------------- 1 | export * from './appbar.ios'; 2 | -------------------------------------------------------------------------------- /src/appbar/appbar.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/appbar/appbar.ios.ts -------------------------------------------------------------------------------- /src/bottom-navigation/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/angular/index.ts -------------------------------------------------------------------------------- /src/bottom-navigation/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/angular/ng-package.json -------------------------------------------------------------------------------- /src/bottom-navigation/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/angular/package.json -------------------------------------------------------------------------------- /src/bottom-navigation/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/angular/tsconfig.json -------------------------------------------------------------------------------- /src/bottom-navigation/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/index.android.ts -------------------------------------------------------------------------------- /src/bottom-navigation/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/index.d.ts -------------------------------------------------------------------------------- /src/bottom-navigation/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/index.ios.ts -------------------------------------------------------------------------------- /src/bottom-navigation/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/react/index.ts -------------------------------------------------------------------------------- /src/bottom-navigation/vue/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/vue/component.ts -------------------------------------------------------------------------------- /src/bottom-navigation/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottom-navigation/vue/index.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/angular/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/angular/directives.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/angular/index.ts: -------------------------------------------------------------------------------- 1 | export * from './module'; 2 | -------------------------------------------------------------------------------- /src/bottomnavigationbar/angular/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/angular/module.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/angular/ng-package.json -------------------------------------------------------------------------------- /src/bottomnavigationbar/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/angular/package.json -------------------------------------------------------------------------------- /src/bottomnavigationbar/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/angular/tsconfig.json -------------------------------------------------------------------------------- /src/bottomnavigationbar/bottomnavigationbar-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/bottomnavigationbar-common.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/bottomnavigationbar.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/bottomnavigationbar.android.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/bottomnavigationbar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/bottomnavigationbar.d.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/bottomnavigationbar.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/bottomnavigationbar.ios.ts -------------------------------------------------------------------------------- /src/bottomnavigationbar/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomnavigationbar/vue/index.ts -------------------------------------------------------------------------------- /src/bottomsheet/angular/bottomsheet.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/angular/bottomsheet.module.ts -------------------------------------------------------------------------------- /src/bottomsheet/angular/bottomsheet.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/angular/bottomsheet.service.ts -------------------------------------------------------------------------------- /src/bottomsheet/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/angular/index.ts -------------------------------------------------------------------------------- /src/bottomsheet/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/angular/ng-package.json -------------------------------------------------------------------------------- /src/bottomsheet/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/angular/package.json -------------------------------------------------------------------------------- /src/bottomsheet/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/angular/tsconfig.json -------------------------------------------------------------------------------- /src/bottomsheet/bottomsheet-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/bottomsheet-common.ts -------------------------------------------------------------------------------- /src/bottomsheet/bottomsheet.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/bottomsheet.android.ts -------------------------------------------------------------------------------- /src/bottomsheet/bottomsheet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/bottomsheet.d.ts -------------------------------------------------------------------------------- /src/bottomsheet/bottomsheet.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/bottomsheet.ios.ts -------------------------------------------------------------------------------- /src/bottomsheet/svelte/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/svelte/index.ts -------------------------------------------------------------------------------- /src/bottomsheet/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/vue/index.ts -------------------------------------------------------------------------------- /src/bottomsheet/vue3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/bottomsheet/vue3/index.ts -------------------------------------------------------------------------------- /src/button/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/angular/index.ts -------------------------------------------------------------------------------- /src/button/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/angular/ng-package.json -------------------------------------------------------------------------------- /src/button/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/angular/package.json -------------------------------------------------------------------------------- /src/button/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/angular/tsconfig.json -------------------------------------------------------------------------------- /src/button/button-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/button-common.ts -------------------------------------------------------------------------------- /src/button/button.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/button.android.ts -------------------------------------------------------------------------------- /src/button/button.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/button.d.ts -------------------------------------------------------------------------------- /src/button/button.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/button.ios.ts -------------------------------------------------------------------------------- /src/button/svelte/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/svelte/index.ts -------------------------------------------------------------------------------- /src/button/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/button/vue/index.ts -------------------------------------------------------------------------------- /src/cardview/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/angular/index.ts -------------------------------------------------------------------------------- /src/cardview/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/angular/ng-package.json -------------------------------------------------------------------------------- /src/cardview/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/angular/package.json -------------------------------------------------------------------------------- /src/cardview/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/angular/tsconfig.json -------------------------------------------------------------------------------- /src/cardview/cardview-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/cardview-common.ts -------------------------------------------------------------------------------- /src/cardview/cardview.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/cardview.android.ts -------------------------------------------------------------------------------- /src/cardview/cardview.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/cardview.d.ts -------------------------------------------------------------------------------- /src/cardview/cardview.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/cardview.ios.ts -------------------------------------------------------------------------------- /src/cardview/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/cardview/vue/index.ts -------------------------------------------------------------------------------- /src/core-tabs/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/react/index.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-content-item/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-content-item/index.android.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-content-item/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-content-item/index.d.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-content-item/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-content-item/index.ios.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-content-item/tab-content-item-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-content-item/tab-content-item-common.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-navigation-base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-navigation-base/index.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-navigation/index-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-navigation/index-common.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-navigation/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-navigation/index.android.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-navigation/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-navigation/index.d.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-navigation/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-navigation/index.ios.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-strip-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-strip-item/index.ts -------------------------------------------------------------------------------- /src/core-tabs/tab-strip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core-tabs/tab-strip/index.ts -------------------------------------------------------------------------------- /src/core/android/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/android/utils.ts -------------------------------------------------------------------------------- /src/core/cssproperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/cssproperties.ts -------------------------------------------------------------------------------- /src/core/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/index.android.ts -------------------------------------------------------------------------------- /src/core/index.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/index.common.ts -------------------------------------------------------------------------------- /src/core/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/index.d.ts -------------------------------------------------------------------------------- /src/core/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/index.ios.ts -------------------------------------------------------------------------------- /src/core/textbase/cssproperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/core/textbase/cssproperties.ts -------------------------------------------------------------------------------- /src/dialogs/dialogs-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/dialogs/dialogs-common.ts -------------------------------------------------------------------------------- /src/dialogs/dialogs.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/dialogs/dialogs.android.ts -------------------------------------------------------------------------------- /src/dialogs/dialogs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/dialogs/dialogs.d.ts -------------------------------------------------------------------------------- /src/dialogs/dialogs.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/dialogs/dialogs.ios.ts -------------------------------------------------------------------------------- /src/floatingactionbutton/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/angular/index.ts -------------------------------------------------------------------------------- /src/floatingactionbutton/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/angular/ng-package.json -------------------------------------------------------------------------------- /src/floatingactionbutton/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/angular/package.json -------------------------------------------------------------------------------- /src/floatingactionbutton/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/angular/tsconfig.json -------------------------------------------------------------------------------- /src/floatingactionbutton/floatingactionbutton-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/floatingactionbutton-common.ts -------------------------------------------------------------------------------- /src/floatingactionbutton/floatingactionbutton.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/floatingactionbutton.android.ts -------------------------------------------------------------------------------- /src/floatingactionbutton/floatingactionbutton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/floatingactionbutton.d.ts -------------------------------------------------------------------------------- /src/floatingactionbutton/floatingactionbutton.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/floatingactionbutton.ios.ts -------------------------------------------------------------------------------- /src/floatingactionbutton/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/floatingactionbutton/vue/index.ts -------------------------------------------------------------------------------- /src/page/page.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/page/page.android.ts -------------------------------------------------------------------------------- /src/page/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/page/page.d.ts -------------------------------------------------------------------------------- /src/page/page.ios.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/progress/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/angular/index.ts -------------------------------------------------------------------------------- /src/progress/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/angular/ng-package.json -------------------------------------------------------------------------------- /src/progress/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/angular/package.json -------------------------------------------------------------------------------- /src/progress/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/angular/tsconfig.json -------------------------------------------------------------------------------- /src/progress/progress-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/progress-common.ts -------------------------------------------------------------------------------- /src/progress/progress.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/progress.android.ts -------------------------------------------------------------------------------- /src/progress/progress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/progress.d.ts -------------------------------------------------------------------------------- /src/progress/progress.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/progress.ios.ts -------------------------------------------------------------------------------- /src/progress/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/progress/vue/index.ts -------------------------------------------------------------------------------- /src/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/references.d.ts -------------------------------------------------------------------------------- /src/ripple/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/angular/index.ts -------------------------------------------------------------------------------- /src/ripple/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/angular/ng-package.json -------------------------------------------------------------------------------- /src/ripple/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/angular/package.json -------------------------------------------------------------------------------- /src/ripple/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/angular/tsconfig.json -------------------------------------------------------------------------------- /src/ripple/ripple-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/ripple-common.ts -------------------------------------------------------------------------------- /src/ripple/ripple.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/ripple.android.ts -------------------------------------------------------------------------------- /src/ripple/ripple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/ripple.d.ts -------------------------------------------------------------------------------- /src/ripple/ripple.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/ripple.ios.ts -------------------------------------------------------------------------------- /src/ripple/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/ripple/vue/index.ts -------------------------------------------------------------------------------- /src/slider/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/angular/index.ts -------------------------------------------------------------------------------- /src/slider/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/angular/ng-package.json -------------------------------------------------------------------------------- /src/slider/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/angular/package.json -------------------------------------------------------------------------------- /src/slider/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/angular/tsconfig.json -------------------------------------------------------------------------------- /src/slider/cssproperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/cssproperties.ts -------------------------------------------------------------------------------- /src/slider/slider-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/slider-common.ts -------------------------------------------------------------------------------- /src/slider/slider.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/slider.android.ts -------------------------------------------------------------------------------- /src/slider/slider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/slider.d.ts -------------------------------------------------------------------------------- /src/slider/slider.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/slider.ios.ts -------------------------------------------------------------------------------- /src/slider/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/slider/vue/index.ts -------------------------------------------------------------------------------- /src/snackbar/snackbar-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/snackbar/snackbar-common.ts -------------------------------------------------------------------------------- /src/snackbar/snackbar.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/snackbar/snackbar.android.ts -------------------------------------------------------------------------------- /src/snackbar/snackbar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/snackbar/snackbar.d.ts -------------------------------------------------------------------------------- /src/snackbar/snackbar.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/snackbar/snackbar.ios.ts -------------------------------------------------------------------------------- /src/speeddial/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/speeddial/angular/index.ts -------------------------------------------------------------------------------- /src/speeddial/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/speeddial/angular/ng-package.json -------------------------------------------------------------------------------- /src/speeddial/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/speeddial/angular/package.json -------------------------------------------------------------------------------- /src/speeddial/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/speeddial/angular/tsconfig.json -------------------------------------------------------------------------------- /src/speeddial/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/speeddial/index.ts -------------------------------------------------------------------------------- /src/speeddial/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/speeddial/vue/index.ts -------------------------------------------------------------------------------- /src/switch/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/angular/index.ts -------------------------------------------------------------------------------- /src/switch/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/angular/ng-package.json -------------------------------------------------------------------------------- /src/switch/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/angular/package.json -------------------------------------------------------------------------------- /src/switch/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/angular/tsconfig.json -------------------------------------------------------------------------------- /src/switch/index-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/index-common.ts -------------------------------------------------------------------------------- /src/switch/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/index.android.ts -------------------------------------------------------------------------------- /src/switch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/index.d.ts -------------------------------------------------------------------------------- /src/switch/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/index.ios.ts -------------------------------------------------------------------------------- /src/switch/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/switch/vue/index.ts -------------------------------------------------------------------------------- /src/tabs/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/angular/index.ts -------------------------------------------------------------------------------- /src/tabs/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/angular/ng-package.json -------------------------------------------------------------------------------- /src/tabs/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/angular/package.json -------------------------------------------------------------------------------- /src/tabs/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/angular/tsconfig.json -------------------------------------------------------------------------------- /src/tabs/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/index.android.ts -------------------------------------------------------------------------------- /src/tabs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/index.d.ts -------------------------------------------------------------------------------- /src/tabs/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/index.ios.ts -------------------------------------------------------------------------------- /src/tabs/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/react/index.ts -------------------------------------------------------------------------------- /src/tabs/vue/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/vue/component.ts -------------------------------------------------------------------------------- /src/tabs/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/tabs/vue/index.ts -------------------------------------------------------------------------------- /src/textfield/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/angular/index.ts -------------------------------------------------------------------------------- /src/textfield/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/angular/ng-package.json -------------------------------------------------------------------------------- /src/textfield/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/angular/package.json -------------------------------------------------------------------------------- /src/textfield/angular/textvalue-accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/angular/textvalue-accessor.ts -------------------------------------------------------------------------------- /src/textfield/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/angular/tsconfig.json -------------------------------------------------------------------------------- /src/textfield/textfield.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/textfield.android.ts -------------------------------------------------------------------------------- /src/textfield/textfield.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/textfield.common.ts -------------------------------------------------------------------------------- /src/textfield/textfield.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/textfield.d.ts -------------------------------------------------------------------------------- /src/textfield/textfield.ios.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/textfield.ios.old -------------------------------------------------------------------------------- /src/textfield/textfield.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/textfield.ios.ts -------------------------------------------------------------------------------- /src/textfield/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textfield/vue/index.ts -------------------------------------------------------------------------------- /src/textview/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/angular/index.ts -------------------------------------------------------------------------------- /src/textview/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/angular/ng-package.json -------------------------------------------------------------------------------- /src/textview/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/angular/package.json -------------------------------------------------------------------------------- /src/textview/angular/textvalue-accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/angular/textvalue-accessor.ts -------------------------------------------------------------------------------- /src/textview/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/angular/tsconfig.json -------------------------------------------------------------------------------- /src/textview/textview.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/textview.android.ts -------------------------------------------------------------------------------- /src/textview/textview.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/textview.common.ts -------------------------------------------------------------------------------- /src/textview/textview.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/textview.d.ts -------------------------------------------------------------------------------- /src/textview/textview.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/textview.ios.ts -------------------------------------------------------------------------------- /src/textview/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/textview/vue/index.ts -------------------------------------------------------------------------------- /src/typings/MaterialComponents.ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/typings/MaterialComponents.ios.d.ts -------------------------------------------------------------------------------- /src/typings/MaterialTextField.ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/typings/MaterialTextField.ios.d.ts -------------------------------------------------------------------------------- /src/typings/extensions.android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/typings/extensions.android.d.ts -------------------------------------------------------------------------------- /src/typings/mdc.android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/typings/mdc.android.d.ts -------------------------------------------------------------------------------- /src/typings/mdc.ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/src/typings/mdc.ios.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.vue3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/tsconfig.vue3.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-material-components/HEAD/yarn.lock --------------------------------------------------------------------------------