3
0
sxoinas12 преди 5 години
родител
ревизия
d7adf2602d
променени са 4 файла, в които са добавени 6 реда и са изтрити 7 реда
  1. 0 0
      dist/modules/Button.js
  2. 0 0
      dist/modules/Form.js
  3. 2 2
      modules/Button.js
  4. 4 5
      modules/Form.js

Файловите разлики са ограничени, защото са твърде много
+ 0 - 0
dist/modules/Button.js


Файловите разлики са ограничени, защото са твърде много
+ 0 - 0
dist/modules/Form.js


+ 2 - 2
modules/Button.js

@@ -19,7 +19,7 @@ export default class ButtonComp extends Module {
 					<Button
 					  onPress = {this.props.press || this.press}
 					  title={this.props.title}
-					  color={this.props.color ||  "#03DAC6"}
+					  color={this.props.color}
 					  accessibilityLabel="Learn more about this purple button"
 					/>
 				</View>)
@@ -29,7 +29,7 @@ export default class ButtonComp extends Module {
 
 ButtonComp.Inputs = {
 	title: new Types.Text().require().default('Submit'),
-	color: new Types.Text().require().color().default('#03DAC6')
+	color: new Types.Text().require().color().default('rgba(3, 218, 198, 1)')
 }
 
 

+ 4 - 5
modules/Form.js

@@ -38,7 +38,6 @@ export default class FormComp extends Module {
 		//Init
 		if(!inputs) inputs = Inp;
 		if(!inputsMargin) inputsMargin = 7
-		if(!backgroundColor) backgroundColor = "#f7e6ff"
 
 
 		let Inputs = Object.keys(inputs).map((key,indx) => {
@@ -66,8 +65,8 @@ export default class FormComp extends Module {
 					{Inputs}
 			        <Button
 				    onPress = {(e) => fn(e)}
-				    title={this.props.ButtonText || "Submit"}
-				    color={this.props.ButtonColor ||  "#008CBA"}
+				    title={this.props.ButtonText }
+				    color={this.props.ButtonColor}
 					accessibilityLabel="Learn more about this purple button"
 					/>
 				</View>)
@@ -97,8 +96,8 @@ FormComp.Inputs = {
 	],*/
 	inputs:new Types.Object().require(),
 	ButtonText:new Types.Text().require().default('Submit'),
-	ButtonColor: new Types.Text().require().color().default('#008CBA'),
-	backgroundColor: new Types.Text().require().color().default('#03DAC6'),
+	ButtonColor: new Types.Text().require().color().default('rgba(3, 218, 198, 1)'),
+	backgroundColor: new Types.Text().require().color().default('rgba(0, 140, 186, 1)'),
 	Formtitle: new Types.Text().require()
 }
 

Някои файлове не бяха показани, защото твърде много файлове са промени