@nativescript-community/ui-material-core 7.0.34 → 7.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +21 -0
- package/package.json +2 -2
- package/platforms/android/native-api-usage.json +13 -12
package/index.d.ts
CHANGED
@@ -10,6 +10,27 @@ declare module '@nativescript/core/ui/core/view' {
|
|
10
10
|
_getRootFragmentManager(): androidx.fragment.app.FragmentManager;
|
11
11
|
clearFocus(): void;
|
12
12
|
requestFocus(): void;
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @nativescript-community/ui-material-core {@link installMixins}.
|
16
|
+
*
|
17
|
+
* Gets or sets the elevation of the view.
|
18
|
+
*/
|
19
|
+
elevation: number;
|
20
|
+
|
21
|
+
/**
|
22
|
+
* @nativescript-community/ui-material-core {@link installMixins}.
|
23
|
+
*
|
24
|
+
* Gets or sets the dynamic elevation offset of the view.
|
25
|
+
*/
|
26
|
+
dynamicElevationOffset: number;
|
27
|
+
|
28
|
+
/**
|
29
|
+
* @nativescript-community/ui-material-core {@link installMixins}.
|
30
|
+
*
|
31
|
+
* Gets or sets the ripple-color of the view.
|
32
|
+
*/
|
33
|
+
rippleColor: Color | string;
|
13
34
|
}
|
14
35
|
}
|
15
36
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-material-core",
|
3
|
-
"version": "7.0.
|
3
|
+
"version": "7.0.36",
|
4
4
|
"description": "Material Core component",
|
5
5
|
"main": "./index",
|
6
6
|
"sideEffects": false,
|
@@ -38,5 +38,5 @@
|
|
38
38
|
"homepage": "https://github.com/nativescript-community/ui-material-components",
|
39
39
|
"repository": "https://github.com/nativescript-community/ui-material-components",
|
40
40
|
"readmeFilename": "README.md",
|
41
|
-
"gitHead": "
|
41
|
+
"gitHead": "aad043ae2a45c79505da543aeca02074b05373e6"
|
42
42
|
}
|
@@ -1,16 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"uses": [
|
3
|
-
"com.nativescript.material.core:Utils
|
4
|
-
"android.graphics:Color
|
5
|
-
"android.graphics.drawable:RippleDrawable
|
6
|
-
"android.os:Build
|
7
|
-
"android.content.res:ColorStateList
|
8
|
-
"com.google.android.material.shape:ShapeAppearanceModel
|
9
|
-
"com.google.android.material.shape:
|
10
|
-
"com.google.android.material.shape:
|
11
|
-
"com.google.android.material.shape:
|
12
|
-
"com.google.android.material.shape:
|
13
|
-
"com.google.android.material.shape:
|
14
|
-
"android.
|
3
|
+
"com.nativescript.material.core:Utils",
|
4
|
+
"android.graphics:Color",
|
5
|
+
"android.graphics.drawable:RippleDrawable",
|
6
|
+
"android.os:Build",
|
7
|
+
"android.content.res:ColorStateList",
|
8
|
+
"com.google.android.material.shape:ShapeAppearanceModel",
|
9
|
+
"com.google.android.material.shape:ShapeAppearanceModel.Builder",
|
10
|
+
"com.google.android.material.shape:MaterialShapeDrawable",
|
11
|
+
"com.google.android.material.shape:CornerTreatment",
|
12
|
+
"com.google.android.material.shape:CutCornerTreatment",
|
13
|
+
"com.google.android.material.shape:RelativeCornerSize",
|
14
|
+
"com.google.android.material.shape:RoundedCornerTreatment",
|
15
|
+
"android.content.res:TypedArray"
|
15
16
|
]
|
16
17
|
}
|