@draftbit/core 46.8.2-d00b3c.2 → 46.8.2-deff12.2
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.
|
@@ -41,7 +41,7 @@ const SEED_DATA = {
|
|
|
41
41
|
scrollEnabled: (0, _types.createStaticBoolProp)({
|
|
42
42
|
label: "Scroll Enabled",
|
|
43
43
|
description: "Whether scrolling of tabs is enabled or not",
|
|
44
|
-
defaultValue:
|
|
44
|
+
defaultValue: false
|
|
45
45
|
}),
|
|
46
46
|
activeColor: (0, _types.createColorProp)({
|
|
47
47
|
label: "Active Color",
|
|
@@ -35,7 +35,7 @@ export const SEED_DATA = {
|
|
|
35
35
|
scrollEnabled: createStaticBoolProp({
|
|
36
36
|
label: "Scroll Enabled",
|
|
37
37
|
description: "Whether scrolling of tabs is enabled or not",
|
|
38
|
-
defaultValue:
|
|
38
|
+
defaultValue: false
|
|
39
39
|
}),
|
|
40
40
|
activeColor: createColorProp({
|
|
41
41
|
label: "Active Color",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/core",
|
|
3
|
-
"version": "46.8.2-
|
|
3
|
+
"version": "46.8.2-deff12.2+deff122",
|
|
4
4
|
"description": "Core (non-native) Components",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@date-io/date-fns": "^1.3.13",
|
|
43
43
|
"@draftbit/react-theme-provider": "^2.1.1",
|
|
44
|
-
"@draftbit/types": "^46.8.2-
|
|
44
|
+
"@draftbit/types": "^46.8.2-deff12.2+deff122",
|
|
45
45
|
"@material-ui/core": "^4.11.0",
|
|
46
46
|
"@material-ui/pickers": "^3.2.10",
|
|
47
47
|
"@react-native-community/slider": "4.2.3",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
]
|
|
95
95
|
]
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "deff1222ccbb8c708696a110ed25e4d6d0a90036"
|
|
98
98
|
}
|
package/src/mappings/TabView.js
CHANGED
|
@@ -38,7 +38,7 @@ export const SEED_DATA = {
|
|
|
38
38
|
scrollEnabled: createStaticBoolProp({
|
|
39
39
|
label: "Scroll Enabled",
|
|
40
40
|
description: "Whether scrolling of tabs is enabled or not",
|
|
41
|
-
defaultValue:
|
|
41
|
+
defaultValue: false,
|
|
42
42
|
}),
|
|
43
43
|
activeColor: createColorProp({
|
|
44
44
|
label: "Active Color",
|
package/src/mappings/TabView.ts
CHANGED
|
@@ -49,7 +49,7 @@ export const SEED_DATA = {
|
|
|
49
49
|
scrollEnabled: createStaticBoolProp({
|
|
50
50
|
label: "Scroll Enabled",
|
|
51
51
|
description: "Whether scrolling of tabs is enabled or not",
|
|
52
|
-
defaultValue:
|
|
52
|
+
defaultValue: false,
|
|
53
53
|
}),
|
|
54
54
|
activeColor: createColorProp({
|
|
55
55
|
label: "Active Color",
|